libctf, bfd: fix ctf_bfdopen_ctfsect opening symbol and string sections
[deliverable/binutils-gdb.git] / libctf / ctf-open.c
CommitLineData
72f33921
NA
1/* Opening CTF files.
2 Copyright (C) 2019 Free Software Foundation, Inc.
3
4 This file is part of libctf.
5
6 libctf is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
10
11 This program is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14 See the GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; see the file COPYING. If not see
18 <http://www.gnu.org/licenses/>. */
19
20#include <ctf-impl.h>
21#include <stddef.h>
22#include <string.h>
23#include <sys/types.h>
24#include <elf.h>
25#include <assert.h>
26#include "swap.h"
27#include <bfd.h>
28#include <zlib.h>
29
30#include "elf-bfd.h"
31
32static const ctf_dmodel_t _libctf_models[] = {
33 {"ILP32", CTF_MODEL_ILP32, 4, 1, 2, 4, 4},
34 {"LP64", CTF_MODEL_LP64, 8, 1, 2, 4, 8},
35 {NULL, 0, 0, 0, 0, 0, 0}
36};
37
38const char _CTF_SECTION[] = ".ctf";
39const char _CTF_NULLSTR[] = "";
40
41/* Version-sensitive accessors. */
42
43static uint32_t
44get_kind_v1 (uint32_t info)
45{
46 return (CTF_V1_INFO_KIND (info));
47}
48
49static uint32_t
50get_root_v1 (uint32_t info)
51{
52 return (CTF_V1_INFO_ISROOT (info));
53}
54
55static uint32_t
56get_vlen_v1 (uint32_t info)
57{
58 return (CTF_V1_INFO_VLEN (info));
59}
60
61static uint32_t
62get_kind_v2 (uint32_t info)
63{
64 return (CTF_V2_INFO_KIND (info));
65}
66
67static uint32_t
68get_root_v2 (uint32_t info)
69{
70 return (CTF_V2_INFO_ISROOT (info));
71}
72
73static uint32_t
74get_vlen_v2 (uint32_t info)
75{
76 return (CTF_V2_INFO_VLEN (info));
77}
78
79static inline ssize_t
80get_ctt_size_common (const ctf_file_t *fp _libctf_unused_,
81 const ctf_type_t *tp _libctf_unused_,
82 ssize_t *sizep, ssize_t *incrementp, size_t lsize,
83 size_t csize, size_t ctf_type_size,
84 size_t ctf_stype_size, size_t ctf_lsize_sent)
85{
86 ssize_t size, increment;
87
88 if (csize == ctf_lsize_sent)
89 {
90 size = lsize;
91 increment = ctf_type_size;
92 }
93 else
94 {
95 size = csize;
96 increment = ctf_stype_size;
97 }
98
99 if (sizep)
100 *sizep = size;
101 if (incrementp)
102 *incrementp = increment;
103
104 return size;
105}
106
107static ssize_t
108get_ctt_size_v1 (const ctf_file_t *fp, const ctf_type_t *tp,
109 ssize_t *sizep, ssize_t *incrementp)
110{
111 ctf_type_v1_t *t1p = (ctf_type_v1_t *) tp;
112
113 return (get_ctt_size_common (fp, tp, sizep, incrementp,
114 CTF_TYPE_LSIZE (t1p), t1p->ctt_size,
115 sizeof (ctf_type_v1_t), sizeof (ctf_stype_v1_t),
116 CTF_LSIZE_SENT_V1));
117}
118
119/* Return the size that a v1 will be once it is converted to v2. */
120
121static ssize_t
122get_ctt_size_v2_unconverted (const ctf_file_t *fp, const ctf_type_t *tp,
123 ssize_t *sizep, ssize_t *incrementp)
124{
125 ctf_type_v1_t *t1p = (ctf_type_v1_t *) tp;
126
127 return (get_ctt_size_common (fp, tp, sizep, incrementp,
128 CTF_TYPE_LSIZE (t1p), t1p->ctt_size,
129 sizeof (ctf_type_t), sizeof (ctf_stype_t),
130 CTF_LSIZE_SENT));
131}
132
133static ssize_t
134get_ctt_size_v2 (const ctf_file_t *fp, const ctf_type_t *tp,
135 ssize_t *sizep, ssize_t *incrementp)
136{
137 return (get_ctt_size_common (fp, tp, sizep, incrementp,
138 CTF_TYPE_LSIZE (tp), tp->ctt_size,
139 sizeof (ctf_type_t), sizeof (ctf_stype_t),
140 CTF_LSIZE_SENT));
141}
142
143static ssize_t
144get_vbytes_common (unsigned short kind, ssize_t size _libctf_unused_,
145 size_t vlen)
146{
147 switch (kind)
148 {
149 case CTF_K_INTEGER:
150 case CTF_K_FLOAT:
151 return (sizeof (uint32_t));
152 case CTF_K_SLICE:
7cee1826 153 return (sizeof (ctf_slice_t));
72f33921
NA
154 case CTF_K_ENUM:
155 return (sizeof (ctf_enum_t) * vlen);
156 case CTF_K_FORWARD:
157 case CTF_K_UNKNOWN:
158 case CTF_K_POINTER:
159 case CTF_K_TYPEDEF:
160 case CTF_K_VOLATILE:
161 case CTF_K_CONST:
162 case CTF_K_RESTRICT:
163 return 0;
164 default:
165 ctf_dprintf ("detected invalid CTF kind -- %x\n", kind);
166 return ECTF_CORRUPT;
167 }
168}
169
170static ssize_t
171get_vbytes_v1 (unsigned short kind, ssize_t size, size_t vlen)
172{
173 switch (kind)
174 {
175 case CTF_K_ARRAY:
176 return (sizeof (ctf_array_v1_t));
177 case CTF_K_FUNCTION:
178 return (sizeof (unsigned short) * (vlen + (vlen & 1)));
179 case CTF_K_STRUCT:
180 case CTF_K_UNION:
181 if (size < CTF_LSTRUCT_THRESH_V1)
182 return (sizeof (ctf_member_v1_t) * vlen);
183 else
184 return (sizeof (ctf_lmember_v1_t) * vlen);
185 }
186
187 return (get_vbytes_common (kind, size, vlen));
188}
189
190static ssize_t
191get_vbytes_v2 (unsigned short kind, ssize_t size, size_t vlen)
192{
193 switch (kind)
194 {
195 case CTF_K_ARRAY:
196 return (sizeof (ctf_array_t));
197 case CTF_K_FUNCTION:
198 return (sizeof (uint32_t) * (vlen + (vlen & 1)));
199 case CTF_K_STRUCT:
200 case CTF_K_UNION:
201 if (size < CTF_LSTRUCT_THRESH)
202 return (sizeof (ctf_member_t) * vlen);
203 else
204 return (sizeof (ctf_lmember_t) * vlen);
205 }
206
207 return (get_vbytes_common (kind, size, vlen));
208}
209
210static const ctf_fileops_t ctf_fileops[] = {
211 {NULL, NULL, NULL, NULL, NULL},
212 /* CTF_VERSION_1 */
213 {get_kind_v1, get_root_v1, get_vlen_v1, get_ctt_size_v1, get_vbytes_v1},
214 /* CTF_VERSION_1_UPGRADED_3 */
215 {get_kind_v2, get_root_v2, get_vlen_v2, get_ctt_size_v2, get_vbytes_v2},
216 /* CTF_VERSION_2 */
217 {get_kind_v2, get_root_v2, get_vlen_v2, get_ctt_size_v2, get_vbytes_v2},
218 /* CTF_VERSION_3, identical to 2: only new type kinds */
219 {get_kind_v2, get_root_v2, get_vlen_v2, get_ctt_size_v2, get_vbytes_v2},
220};
221
222/* Initialize the symtab translation table by filling each entry with the
223 offset of the CTF type or function data corresponding to each STT_FUNC or
224 STT_OBJECT entry in the symbol table. */
225
226static int
227init_symtab (ctf_file_t *fp, const ctf_header_t *hp,
228 const ctf_sect_t *sp, const ctf_sect_t *strp)
229{
230 const unsigned char *symp = sp->cts_data;
231 uint32_t *xp = fp->ctf_sxlate;
232 uint32_t *xend = xp + fp->ctf_nsyms;
233
234 uint32_t objtoff = hp->cth_objtoff;
235 uint32_t funcoff = hp->cth_funcoff;
236
237 uint32_t info, vlen;
238 Elf64_Sym sym, *gsp;
239 const char *name;
240
241 /* The CTF data object and function type sections are ordered to match
242 the relative order of the respective symbol types in the symtab.
243 If no type information is available for a symbol table entry, a
244 pad is inserted in the CTF section. As a further optimization,
245 anonymous or undefined symbols are omitted from the CTF data. */
246
247 for (; xp < xend; xp++, symp += sp->cts_entsize)
248 {
249 if (sp->cts_entsize == sizeof (Elf32_Sym))
250 gsp = ctf_sym_to_elf64 ((Elf32_Sym *) (uintptr_t) symp, &sym);
251 else
252 gsp = (Elf64_Sym *) (uintptr_t) symp;
253
254 if (gsp->st_name < strp->cts_size)
255 name = (const char *) strp->cts_data + gsp->st_name;
256 else
257 name = _CTF_NULLSTR;
258
259 if (gsp->st_name == 0 || gsp->st_shndx == SHN_UNDEF
260 || strcmp (name, "_START_") == 0 || strcmp (name, "_END_") == 0)
261 {
262 *xp = -1u;
263 continue;
264 }
265
266 switch (ELF64_ST_TYPE (gsp->st_info))
267 {
268 case STT_OBJECT:
269 if (objtoff >= hp->cth_funcoff
270 || (gsp->st_shndx == SHN_EXTABS && gsp->st_value == 0))
271 {
272 *xp = -1u;
273 break;
274 }
275
276 *xp = objtoff;
277 objtoff += sizeof (uint32_t);
278 break;
279
280 case STT_FUNC:
281 if (funcoff >= hp->cth_typeoff)
282 {
283 *xp = -1u;
284 break;
285 }
286
287 *xp = funcoff;
288
289 info = *(uint32_t *) ((uintptr_t) fp->ctf_buf + funcoff);
290 vlen = LCTF_INFO_VLEN (fp, info);
291
292 /* If we encounter a zero pad at the end, just skip it. Otherwise
293 skip over the function and its return type (+2) and the argument
294 list (vlen).
295 */
296 if (LCTF_INFO_KIND (fp, info) == CTF_K_UNKNOWN && vlen == 0)
297 funcoff += sizeof (uint32_t); /* Skip pad. */
298 else
299 funcoff += sizeof (uint32_t) * (vlen + 2);
300 break;
301
302 default:
303 *xp = -1u;
304 break;
305 }
306 }
307
308 ctf_dprintf ("loaded %lu symtab entries\n", fp->ctf_nsyms);
309 return 0;
310}
311
fd55eae8
NA
312/* Reset the CTF base pointer and derive the buf pointer from it, initializing
313 everything in the ctf_file that depends on the base or buf pointers.
314
315 The original gap between the buf and base pointers, if any -- the original,
316 unconverted CTF header -- is kept, but its contents are not specified and are
317 never used. */
72f33921
NA
318
319static void
fd55eae8 320ctf_set_base (ctf_file_t *fp, const ctf_header_t *hp, unsigned char *base)
72f33921 321{
fd55eae8 322 fp->ctf_buf = base + (fp->ctf_buf - fp->ctf_base);
72f33921 323 fp->ctf_base = base;
72f33921
NA
324 fp->ctf_vars = (ctf_varent_t *) ((const char *) fp->ctf_buf +
325 hp->cth_varoff);
326 fp->ctf_nvars = (hp->cth_typeoff - hp->cth_varoff) / sizeof (ctf_varent_t);
327
328 fp->ctf_str[CTF_STRTAB_0].cts_strs = (const char *) fp->ctf_buf
329 + hp->cth_stroff;
330 fp->ctf_str[CTF_STRTAB_0].cts_len = hp->cth_strlen;
331
332 /* If we have a parent container name and label, store the relocated
333 string pointers in the CTF container for easy access later. */
334
335 /* Note: before conversion, these will be set to values that will be
336 immediately invalidated by the conversion process, but the conversion
337 process will call ctf_set_base() again to fix things up. */
338
339 if (hp->cth_parlabel != 0)
340 fp->ctf_parlabel = ctf_strptr (fp, hp->cth_parlabel);
341 if (hp->cth_parname != 0)
342 fp->ctf_parname = ctf_strptr (fp, hp->cth_parname);
fd55eae8
NA
343 if (hp->cth_cuname != 0)
344 fp->ctf_cuname = ctf_strptr (fp, hp->cth_cuname);
345
346 if (fp->ctf_cuname)
347 ctf_dprintf ("ctf_set_base: CU name %s\n", fp->ctf_cuname);
348 if (fp->ctf_parname)
349 ctf_dprintf ("ctf_set_base: parent name %s (label %s)\n",
350 fp->ctf_parname,
72f33921
NA
351 fp->ctf_parlabel ? fp->ctf_parlabel : "<NULL>");
352}
353
72f33921
NA
354/* Set the version of the CTF file. */
355
356/* When this is reset, LCTF_* changes behaviour, but there is no guarantee that
357 the variable data list associated with each type has been upgraded: the
358 caller must ensure this has been done in advance. */
359
360static void
fd55eae8 361ctf_set_version (ctf_file_t *fp, ctf_header_t *cth, int ctf_version)
72f33921
NA
362{
363 fp->ctf_version = ctf_version;
364 cth->cth_version = ctf_version;
365 fp->ctf_fileops = &ctf_fileops[ctf_version];
366}
367
fd55eae8
NA
368
369/* Upgrade the header to CTF_VERSION_3. The upgrade is done in-place. */
370static void
371upgrade_header (ctf_header_t *hp)
372{
373 ctf_header_v2_t *oldhp = (ctf_header_v2_t *) hp;
374
375 hp->cth_strlen = oldhp->cth_strlen;
376 hp->cth_stroff = oldhp->cth_stroff;
377 hp->cth_typeoff = oldhp->cth_typeoff;
378 hp->cth_varoff = oldhp->cth_varoff;
379 hp->cth_funcoff = oldhp->cth_funcoff;
380 hp->cth_objtoff = oldhp->cth_objtoff;
381 hp->cth_lbloff = oldhp->cth_lbloff;
382 hp->cth_cuname = 0; /* No CU name. */
383}
384
385/* Upgrade the type table to CTF_VERSION_3 (really CTF_VERSION_1_UPGRADED_3)
386 from CTF_VERSION_1.
72f33921
NA
387
388 The upgrade is not done in-place: the ctf_base is moved. ctf_strptr() must
389 not be called before reallocation is complete.
390
391 Type kinds not checked here due to nonexistence in older formats:
392 CTF_K_SLICE. */
393static int
fd55eae8 394upgrade_types_v1 (ctf_file_t *fp, ctf_header_t *cth)
72f33921
NA
395{
396 const ctf_type_v1_t *tbuf;
397 const ctf_type_v1_t *tend;
fd55eae8 398 unsigned char *ctf_base, *old_ctf_base = (unsigned char *) fp->ctf_dynbase;
72f33921
NA
399 ctf_type_t *t2buf;
400
401 ssize_t increase = 0, size, increment, v2increment, vbytes, v2bytes;
402 const ctf_type_v1_t *tp;
403 ctf_type_t *t2p;
72f33921
NA
404
405 tbuf = (ctf_type_v1_t *) (fp->ctf_buf + cth->cth_typeoff);
406 tend = (ctf_type_v1_t *) (fp->ctf_buf + cth->cth_stroff);
407
408 /* Much like init_types(), this is a two-pass process.
409
410 First, figure out the new type-section size needed. (It is possible,
411 in theory, for it to be less than the old size, but this is very
412 unlikely. It cannot be so small that cth_typeoff ends up of negative
413 size. We validate this with an assertion below.)
414
415 We must cater not only for changes in vlen and types sizes but also
416 for changes in 'increment', which happen because v2 places some types
417 into ctf_stype_t where v1 would be forced to use the larger non-stype. */
418
419 for (tp = tbuf; tp < tend;
420 tp = (ctf_type_v1_t *) ((uintptr_t) tp + increment + vbytes))
421 {
422 unsigned short kind = CTF_V1_INFO_KIND (tp->ctt_info);
423 unsigned long vlen = CTF_V1_INFO_VLEN (tp->ctt_info);
424
425 size = get_ctt_size_v1 (fp, (const ctf_type_t *) tp, NULL, &increment);
426 vbytes = get_vbytes_v1 (kind, size, vlen);
427
428 get_ctt_size_v2_unconverted (fp, (const ctf_type_t *) tp, NULL,
429 &v2increment);
430 v2bytes = get_vbytes_v2 (kind, size, vlen);
431
432 if ((vbytes < 0) || (size < 0))
433 return ECTF_CORRUPT;
434
435 increase += v2increment - increment; /* May be negative. */
436 increase += v2bytes - vbytes;
437 }
438
fd55eae8
NA
439 /* Allocate enough room for the new buffer, then copy everything but the type
440 section into place, and reset the base accordingly. Leave the version
441 number unchanged, so that LCTF_INFO_* still works on the
72f33921
NA
442 as-yet-untranslated type info. */
443
65365aa8 444 if ((ctf_base = ctf_alloc (fp->ctf_size + increase)) == NULL)
72f33921
NA
445 return ECTF_ZALLOC;
446
fd55eae8
NA
447 /* Start at ctf_buf, not ctf_base, to squeeze out the original header: we
448 never use it and it is unconverted. */
72f33921 449
fd55eae8
NA
450 memcpy (ctf_base, fp->ctf_buf, cth->cth_typeoff);
451 memcpy (ctf_base + cth->cth_stroff + increase,
452 fp->ctf_buf + cth->cth_stroff, cth->cth_strlen);
72f33921 453
fd55eae8
NA
454 memset (ctf_base + cth->cth_typeoff, 0, cth->cth_stroff - cth->cth_typeoff
455 + increase);
72f33921 456
fd55eae8 457 cth->cth_stroff += increase;
72f33921 458 fp->ctf_size += increase;
fd55eae8
NA
459 assert (cth->cth_stroff >= cth->cth_typeoff);
460 fp->ctf_base = ctf_base;
461 fp->ctf_buf = ctf_base;
462 fp->ctf_dynbase = ctf_base;
463 ctf_set_base (fp, cth, ctf_base);
72f33921 464
fd55eae8 465 t2buf = (ctf_type_t *) (fp->ctf_buf + cth->cth_typeoff);
72f33921
NA
466
467 /* Iterate through all the types again, upgrading them.
468
469 Everything that hasn't changed can just be outright memcpy()ed.
470 Things that have changed need field-by-field consideration. */
471
472 for (tp = tbuf, t2p = t2buf; tp < tend;
473 tp = (ctf_type_v1_t *) ((uintptr_t) tp + increment + vbytes),
474 t2p = (ctf_type_t *) ((uintptr_t) t2p + v2increment + v2bytes))
475 {
476 unsigned short kind = CTF_V1_INFO_KIND (tp->ctt_info);
477 int isroot = CTF_V1_INFO_ISROOT (tp->ctt_info);
478 unsigned long vlen = CTF_V1_INFO_VLEN (tp->ctt_info);
479 ssize_t v2size;
480 void *vdata, *v2data;
481
482 size = get_ctt_size_v1 (fp, (const ctf_type_t *) tp, NULL, &increment);
483 vbytes = get_vbytes_v1 (kind, size, vlen);
484
485 t2p->ctt_name = tp->ctt_name;
486 t2p->ctt_info = CTF_TYPE_INFO (kind, isroot, vlen);
487
488 switch (kind)
489 {
490 case CTF_K_FUNCTION:
491 case CTF_K_FORWARD:
492 case CTF_K_TYPEDEF:
493 case CTF_K_POINTER:
494 case CTF_K_VOLATILE:
495 case CTF_K_CONST:
496 case CTF_K_RESTRICT:
497 t2p->ctt_type = tp->ctt_type;
498 break;
499 case CTF_K_INTEGER:
500 case CTF_K_FLOAT:
501 case CTF_K_ARRAY:
502 case CTF_K_STRUCT:
503 case CTF_K_UNION:
504 case CTF_K_ENUM:
505 case CTF_K_UNKNOWN:
a0486bac 506 if ((size_t) size <= CTF_MAX_SIZE)
72f33921
NA
507 t2p->ctt_size = size;
508 else
509 {
510 t2p->ctt_lsizehi = CTF_SIZE_TO_LSIZE_HI (size);
511 t2p->ctt_lsizelo = CTF_SIZE_TO_LSIZE_LO (size);
512 }
513 break;
514 }
515
516 v2size = get_ctt_size_v2 (fp, t2p, NULL, &v2increment);
517 v2bytes = get_vbytes_v2 (kind, v2size, vlen);
518
519 /* Catch out-of-sync get_ctt_size_*(). The count goes wrong if
520 these are not identical (and having them different makes no
521 sense semantically). */
522
523 assert (size == v2size);
524
525 /* Now the varlen info. */
526
527 vdata = (void *) ((uintptr_t) tp + increment);
528 v2data = (void *) ((uintptr_t) t2p + v2increment);
529
530 switch (kind)
531 {
532 case CTF_K_ARRAY:
533 {
534 const ctf_array_v1_t *ap = (const ctf_array_v1_t *) vdata;
535 ctf_array_t *a2p = (ctf_array_t *) v2data;
536
537 a2p->cta_contents = ap->cta_contents;
538 a2p->cta_index = ap->cta_index;
539 a2p->cta_nelems = ap->cta_nelems;
540 break;
541 }
542 case CTF_K_STRUCT:
543 case CTF_K_UNION:
544 {
545 ctf_member_t tmp;
546 const ctf_member_v1_t *m1 = (const ctf_member_v1_t *) vdata;
547 const ctf_lmember_v1_t *lm1 = (const ctf_lmember_v1_t *) m1;
548 ctf_member_t *m2 = (ctf_member_t *) v2data;
549 ctf_lmember_t *lm2 = (ctf_lmember_t *) m2;
550 unsigned long i;
551
552 /* We walk all four pointers forward, but only reference the two
553 that are valid for the given size, to avoid quadruplicating all
554 the code. */
555
556 for (i = vlen; i != 0; i--, m1++, lm1++, m2++, lm2++)
557 {
558 size_t offset;
559 if (size < CTF_LSTRUCT_THRESH_V1)
560 {
561 offset = m1->ctm_offset;
562 tmp.ctm_name = m1->ctm_name;
563 tmp.ctm_type = m1->ctm_type;
564 }
565 else
566 {
567 offset = CTF_LMEM_OFFSET (lm1);
568 tmp.ctm_name = lm1->ctlm_name;
569 tmp.ctm_type = lm1->ctlm_type;
570 }
571 if (size < CTF_LSTRUCT_THRESH)
572 {
573 m2->ctm_name = tmp.ctm_name;
574 m2->ctm_type = tmp.ctm_type;
575 m2->ctm_offset = offset;
576 }
577 else
578 {
579 lm2->ctlm_name = tmp.ctm_name;
580 lm2->ctlm_type = tmp.ctm_type;
581 lm2->ctlm_offsethi = CTF_OFFSET_TO_LMEMHI (offset);
582 lm2->ctlm_offsetlo = CTF_OFFSET_TO_LMEMLO (offset);
583 }
584 }
585 break;
586 }
587 case CTF_K_FUNCTION:
588 {
589 unsigned long i;
590 unsigned short *a1 = (unsigned short *) vdata;
591 uint32_t *a2 = (uint32_t *) v2data;
592
593 for (i = vlen; i != 0; i--, a1++, a2++)
594 *a2 = *a1;
595 }
596 /* FALLTHRU */
597 default:
598 /* Catch out-of-sync get_vbytes_*(). */
599 assert (vbytes == v2bytes);
600 memcpy (v2data, vdata, vbytes);
601 }
602 }
603
604 /* Verify that the entire region was converted. If not, we are either
605 converting too much, or too little (leading to a buffer overrun either here
606 or at read time, in init_types().) */
607
fd55eae8 608 assert ((size_t) t2p - (size_t) fp->ctf_buf == cth->cth_stroff);
72f33921 609
fd55eae8
NA
610 ctf_set_version (fp, cth, CTF_VERSION_1_UPGRADED_3);
611 ctf_free (old_ctf_base);
72f33921
NA
612
613 return 0;
614}
615
fd55eae8
NA
616/* Upgrade from any earlier version. */
617static int
618upgrade_types (ctf_file_t *fp, ctf_header_t *cth)
619{
620 switch (cth->cth_version)
621 {
622 /* v1 requires a full pass and reformatting. */
623 case CTF_VERSION_1:
624 upgrade_types_v1 (fp, cth);
625 /* FALLTHRU */
626 /* Already-converted v1 is just like later versions except that its
627 parent/child boundary is unchanged (and much lower). */
628
629 case CTF_VERSION_1_UPGRADED_3:
630 fp->ctf_parmax = CTF_MAX_PTYPE_V1;
631
632 /* v2 is just the same as v3 except for new types and sections:
633 no upgrading required. */
634 case CTF_VERSION_2: ;
635 /* FALLTHRU */
636 }
637 return 0;
638}
639
72f33921
NA
640/* Initialize the type ID translation table with the byte offset of each type,
641 and initialize the hash tables of each named type. Upgrade the type table to
642 the latest supported representation in the process, if needed, and if this
643 recension of libctf supports upgrading. */
644
645static int
646init_types (ctf_file_t *fp, ctf_header_t *cth)
647{
648 const ctf_type_t *tbuf;
649 const ctf_type_t *tend;
650
651 unsigned long pop[CTF_K_MAX + 1] = { 0 };
652 const ctf_type_t *tp;
653 ctf_hash_t *hp;
654 uint32_t id, dst;
655 uint32_t *xp;
656
657 /* We determine whether the container is a child or a parent based on
658 the value of cth_parname. */
659
660 int child = cth->cth_parname != 0;
661 int nlstructs = 0, nlunions = 0;
662 int err;
663
664 if (_libctf_unlikely_ (fp->ctf_version == CTF_VERSION_1))
665 {
666 int err;
667 if ((err = upgrade_types (fp, cth)) != 0)
668 return err; /* Upgrade failed. */
669 }
670
671 tbuf = (ctf_type_t *) (fp->ctf_buf + cth->cth_typeoff);
672 tend = (ctf_type_t *) (fp->ctf_buf + cth->cth_stroff);
673
674 /* We make two passes through the entire type section. In this first
675 pass, we count the number of each type and the total number of types. */
676
677 for (tp = tbuf; tp < tend; fp->ctf_typemax++)
678 {
679 unsigned short kind = LCTF_INFO_KIND (fp, tp->ctt_info);
680 unsigned long vlen = LCTF_INFO_VLEN (fp, tp->ctt_info);
681 ssize_t size, increment, vbytes;
682
683 (void) ctf_get_ctt_size (fp, tp, &size, &increment);
684 vbytes = LCTF_VBYTES (fp, kind, size, vlen);
685
686 if (vbytes < 0)
687 return ECTF_CORRUPT;
688
689 if (kind == CTF_K_FORWARD)
690 {
691 /* For forward declarations, ctt_type is the CTF_K_* kind for the tag,
692 so bump that population count too. If ctt_type is unknown, treat
693 the tag as a struct. */
694
695 if (tp->ctt_type == CTF_K_UNKNOWN || tp->ctt_type >= CTF_K_MAX)
696 pop[CTF_K_STRUCT]++;
697 else
698 pop[tp->ctt_type]++;
699 }
700 tp = (ctf_type_t *) ((uintptr_t) tp + increment + vbytes);
701 pop[kind]++;
702 }
703
704 if (child)
705 {
706 ctf_dprintf ("CTF container %p is a child\n", (void *) fp);
707 fp->ctf_flags |= LCTF_CHILD;
708 }
709 else
710 ctf_dprintf ("CTF container %p is a parent\n", (void *) fp);
711
712 /* Now that we've counted up the number of each type, we can allocate
713 the hash tables, type translation table, and pointer table. */
714
715 if ((fp->ctf_structs = ctf_hash_create (pop[CTF_K_STRUCT], ctf_hash_string,
716 ctf_hash_eq_string)) == NULL)
717 return ENOMEM;
718
719 if ((fp->ctf_unions = ctf_hash_create (pop[CTF_K_UNION], ctf_hash_string,
720 ctf_hash_eq_string)) == NULL)
721 return ENOMEM;
722
723 if ((fp->ctf_enums = ctf_hash_create (pop[CTF_K_ENUM], ctf_hash_string,
724 ctf_hash_eq_string)) == NULL)
725 return ENOMEM;
726
727 if ((fp->ctf_names = ctf_hash_create (pop[CTF_K_INTEGER] +
728 pop[CTF_K_FLOAT] +
729 pop[CTF_K_FUNCTION] +
730 pop[CTF_K_TYPEDEF] +
731 pop[CTF_K_POINTER] +
732 pop[CTF_K_VOLATILE] +
733 pop[CTF_K_CONST] +
734 pop[CTF_K_RESTRICT],
735 ctf_hash_string,
736 ctf_hash_eq_string)) == NULL)
737 return ENOMEM;
738
739 fp->ctf_txlate = ctf_alloc (sizeof (uint32_t) * (fp->ctf_typemax + 1));
740 fp->ctf_ptrtab = ctf_alloc (sizeof (uint32_t) * (fp->ctf_typemax + 1));
741
742 if (fp->ctf_txlate == NULL || fp->ctf_ptrtab == NULL)
743 return ENOMEM; /* Memory allocation failed. */
744
745 xp = fp->ctf_txlate;
746 *xp++ = 0; /* Type id 0 is used as a sentinel value. */
747
748 memset (fp->ctf_txlate, 0, sizeof (uint32_t) * (fp->ctf_typemax + 1));
749 memset (fp->ctf_ptrtab, 0, sizeof (uint32_t) * (fp->ctf_typemax + 1));
750
751 /* In the second pass through the types, we fill in each entry of the
752 type and pointer tables and add names to the appropriate hashes. */
753
754 for (id = 1, tp = tbuf; tp < tend; xp++, id++)
755 {
756 unsigned short kind = LCTF_INFO_KIND (fp, tp->ctt_info);
757 unsigned short flag = LCTF_INFO_ISROOT (fp, tp->ctt_info);
758 unsigned long vlen = LCTF_INFO_VLEN (fp, tp->ctt_info);
759 ssize_t size, increment, vbytes;
760
761 const char *name;
762
763 (void) ctf_get_ctt_size (fp, tp, &size, &increment);
764 name = ctf_strptr (fp, tp->ctt_name);
765 vbytes = LCTF_VBYTES (fp, kind, size, vlen);
766
767 switch (kind)
768 {
769 case CTF_K_INTEGER:
770 case CTF_K_FLOAT:
771 /* Names are reused by bit-fields, which are differentiated by their
772 encodings, and so typically we'd record only the first instance of
773 a given intrinsic. However, we replace an existing type with a
774 root-visible version so that we can be sure to find it when
775 checking for conflicting definitions in ctf_add_type(). */
776
777 if (((ctf_hash_lookup_type (fp->ctf_names, fp, name)) == 0)
778 || (flag & CTF_ADD_ROOT))
779 {
780 err = ctf_hash_define_type (fp->ctf_names, fp,
781 LCTF_INDEX_TO_TYPE (fp, id, child),
782 tp->ctt_name);
783 if (err != 0 && err != ECTF_STRTAB)
784 return err;
785 }
786 break;
787
788 /* These kinds have no name, so do not need interning into any
789 hashtables. */
790 case CTF_K_ARRAY:
791 case CTF_K_SLICE:
792 break;
793
794 case CTF_K_FUNCTION:
795 err = ctf_hash_insert_type (fp->ctf_names, fp,
796 LCTF_INDEX_TO_TYPE (fp, id, child),
797 tp->ctt_name);
798 if (err != 0 && err != ECTF_STRTAB)
799 return err;
800 break;
801
802 case CTF_K_STRUCT:
803 err = ctf_hash_define_type (fp->ctf_structs, fp,
804 LCTF_INDEX_TO_TYPE (fp, id, child),
805 tp->ctt_name);
806
807 if (err != 0 && err != ECTF_STRTAB)
808 return err;
809
810 if (size >= CTF_LSTRUCT_THRESH)
811 nlstructs++;
812 break;
813
814 case CTF_K_UNION:
815 err = ctf_hash_define_type (fp->ctf_unions, fp,
816 LCTF_INDEX_TO_TYPE (fp, id, child),
817 tp->ctt_name);
818
819 if (err != 0 && err != ECTF_STRTAB)
820 return err;
821
822 if (size >= CTF_LSTRUCT_THRESH)
823 nlunions++;
824 break;
825
826 case CTF_K_ENUM:
827 err = ctf_hash_define_type (fp->ctf_enums, fp,
828 LCTF_INDEX_TO_TYPE (fp, id, child),
829 tp->ctt_name);
830
831 if (err != 0 && err != ECTF_STRTAB)
832 return err;
833 break;
834
835 case CTF_K_TYPEDEF:
836 err = ctf_hash_insert_type (fp->ctf_names, fp,
837 LCTF_INDEX_TO_TYPE (fp, id, child),
838 tp->ctt_name);
839 if (err != 0 && err != ECTF_STRTAB)
840 return err;
841 break;
842
843 case CTF_K_FORWARD:
844 /* Only insert forward tags into the given hash if the type or tag
845 name is not already present. */
846 switch (tp->ctt_type)
847 {
848 case CTF_K_STRUCT:
849 hp = fp->ctf_structs;
850 break;
851 case CTF_K_UNION:
852 hp = fp->ctf_unions;
853 break;
854 case CTF_K_ENUM:
855 hp = fp->ctf_enums;
856 break;
857 default:
858 hp = fp->ctf_structs;
859 }
860
861 if (ctf_hash_lookup_type (hp, fp, name) == 0)
862 {
863 err = ctf_hash_insert_type (hp, fp,
864 LCTF_INDEX_TO_TYPE (fp, id, child),
865 tp->ctt_name);
866 if (err != 0 && err != ECTF_STRTAB)
867 return err;
868 }
869 break;
870
871 case CTF_K_POINTER:
872 /* If the type referenced by the pointer is in this CTF container,
873 then store the index of the pointer type in
874 fp->ctf_ptrtab[ index of referenced type ]. */
875
876 if (LCTF_TYPE_ISCHILD (fp, tp->ctt_type) == child
877 && LCTF_TYPE_TO_INDEX (fp, tp->ctt_type) <= fp->ctf_typemax)
878 fp->ctf_ptrtab[LCTF_TYPE_TO_INDEX (fp, tp->ctt_type)] = id;
879 /*FALLTHRU*/
880
881 case CTF_K_VOLATILE:
882 case CTF_K_CONST:
883 case CTF_K_RESTRICT:
884 err = ctf_hash_insert_type (fp->ctf_names, fp,
885 LCTF_INDEX_TO_TYPE (fp, id, child),
886 tp->ctt_name);
887 if (err != 0 && err != ECTF_STRTAB)
888 return err;
889 break;
0b4fa56e
NA
890 default:
891 ctf_dprintf ("unhandled CTF kind in endianness conversion -- %x\n",
892 kind);
893 return ECTF_CORRUPT;
72f33921
NA
894 }
895
896 *xp = (uint32_t) ((uintptr_t) tp - (uintptr_t) fp->ctf_buf);
897 tp = (ctf_type_t *) ((uintptr_t) tp + increment + vbytes);
898 }
899
900 ctf_dprintf ("%lu total types processed\n", fp->ctf_typemax);
901 ctf_dprintf ("%u enum names hashed\n", ctf_hash_size (fp->ctf_enums));
902 ctf_dprintf ("%u struct names hashed (%d long)\n",
903 ctf_hash_size (fp->ctf_structs), nlstructs);
904 ctf_dprintf ("%u union names hashed (%d long)\n",
905 ctf_hash_size (fp->ctf_unions), nlunions);
906 ctf_dprintf ("%u base type names hashed\n", ctf_hash_size (fp->ctf_names));
907
908 /* Make an additional pass through the pointer table to find pointers that
909 point to anonymous typedef nodes. If we find one, modify the pointer table
910 so that the pointer is also known to point to the node that is referenced
911 by the anonymous typedef node. */
912
913 for (id = 1; id <= fp->ctf_typemax; id++)
914 {
915 if ((dst = fp->ctf_ptrtab[id]) != 0)
916 {
917 tp = LCTF_INDEX_TO_TYPEPTR (fp, id);
918
919 if (LCTF_INFO_KIND (fp, tp->ctt_info) == CTF_K_TYPEDEF &&
920 strcmp (ctf_strptr (fp, tp->ctt_name), "") == 0 &&
921 LCTF_TYPE_ISCHILD (fp, tp->ctt_type) == child &&
922 LCTF_TYPE_TO_INDEX (fp, tp->ctt_type) <= fp->ctf_typemax)
923 fp->ctf_ptrtab[LCTF_TYPE_TO_INDEX (fp, tp->ctt_type)] = dst;
924 }
925 }
926
927 return 0;
928}
929
930/* Endianness-flipping routines.
931
932 We flip everything, mindlessly, even 1-byte entities, so that future
933 expansions do not require changes to this code. */
934
935/* < C11? define away static assertions. */
936
937#if !defined (__STDC_VERSION__) || __STDC_VERSION__ < 201112L
938#define _Static_assert(cond, err)
939#endif
940
941/* Swap the endianness of something. */
942
943#define swap_thing(x) \
944 do { \
945 _Static_assert (sizeof (x) == 1 || (sizeof (x) % 2 == 0 \
946 && sizeof (x) <= 8), \
947 "Invalid size, update endianness code"); \
948 switch (sizeof (x)) { \
949 case 2: x = bswap_16 (x); break; \
950 case 4: x = bswap_32 (x); break; \
951 case 8: x = bswap_64 (x); break; \
952 case 1: /* Nothing needs doing */ \
953 break; \
954 } \
955 } while (0);
956
957/* Flip the endianness of the CTF header. */
958
959static void
960flip_header (ctf_header_t *cth)
961{
962 swap_thing (cth->cth_preamble.ctp_magic);
963 swap_thing (cth->cth_preamble.ctp_version);
964 swap_thing (cth->cth_preamble.ctp_flags);
965 swap_thing (cth->cth_parlabel);
966 swap_thing (cth->cth_parname);
fd55eae8 967 swap_thing (cth->cth_cuname);
72f33921
NA
968 swap_thing (cth->cth_objtoff);
969 swap_thing (cth->cth_funcoff);
970 swap_thing (cth->cth_varoff);
971 swap_thing (cth->cth_typeoff);
972 swap_thing (cth->cth_stroff);
973 swap_thing (cth->cth_strlen);
974}
975
976/* Flip the endianness of the label section, an array of ctf_lblent_t. */
977
978static void
979flip_lbls (void *start, size_t len)
980{
981 ctf_lblent_t *lbl = start;
982
983 for (ssize_t i = len / sizeof (struct ctf_lblent); i > 0; lbl++, i--)
984 {
985 swap_thing (lbl->ctl_label);
986 swap_thing (lbl->ctl_type);
987 }
988}
989
990/* Flip the endianness of the data-object or function sections, an array of
991 uint32_t. (The function section has more internal structure, but that
992 structure is an array of uint32_t, so can be treated as one big array for
993 byte-swapping.) */
994
995static void
996flip_objts (void *start, size_t len)
997{
998 uint32_t *obj = start;
999
1000 for (ssize_t i = len / sizeof (uint32_t); i > 0; obj++, i--)
1001 swap_thing (*obj);
1002}
1003
1004/* Flip the endianness of the variable section, an array of ctf_varent_t. */
1005
1006static void
1007flip_vars (void *start, size_t len)
1008{
1009 ctf_varent_t *var = start;
1010
1011 for (ssize_t i = len / sizeof (struct ctf_varent); i > 0; var++, i--)
1012 {
1013 swap_thing (var->ctv_name);
1014 swap_thing (var->ctv_type);
1015 }
1016}
1017
1018/* Flip the endianness of the type section, a tagged array of ctf_type or
1019 ctf_stype followed by variable data. */
1020
1021static int
1022flip_types (void *start, size_t len)
1023{
1024 ctf_type_t *t = start;
1025
1026 while ((uintptr_t) t < ((uintptr_t) start) + len)
1027 {
1028 swap_thing (t->ctt_name);
1029 swap_thing (t->ctt_info);
1030 swap_thing (t->ctt_size);
1031
1032 uint32_t kind = CTF_V2_INFO_KIND (t->ctt_info);
1033 size_t size = t->ctt_size;
1034 uint32_t vlen = CTF_V2_INFO_VLEN (t->ctt_info);
1035 size_t vbytes = get_vbytes_v2 (kind, size, vlen);
1036
1037 if (_libctf_unlikely_ (size == CTF_LSIZE_SENT))
1038 {
1039 swap_thing (t->ctt_lsizehi);
1040 swap_thing (t->ctt_lsizelo);
1041 size = CTF_TYPE_LSIZE (t);
1042 t = (ctf_type_t *) ((uintptr_t) t + sizeof (ctf_type_t));
1043 }
1044 else
1045 t = (ctf_type_t *) ((uintptr_t) t + sizeof (ctf_stype_t));
1046
1047 switch (kind)
1048 {
1049 case CTF_K_FORWARD:
1050 case CTF_K_UNKNOWN:
1051 case CTF_K_POINTER:
1052 case CTF_K_TYPEDEF:
1053 case CTF_K_VOLATILE:
1054 case CTF_K_CONST:
1055 case CTF_K_RESTRICT:
1056 /* These types have no vlen data to swap. */
1057 assert (vbytes == 0);
1058 break;
1059
1060 case CTF_K_INTEGER:
1061 case CTF_K_FLOAT:
1062 {
1063 /* These types have a single uint32_t. */
1064
1065 uint32_t *item = (uint32_t *) t;
1066
1067 swap_thing (*item);
1068 break;
1069 }
1070
1071 case CTF_K_FUNCTION:
1072 {
1073 /* This type has a bunch of uint32_ts. */
1074
1075 uint32_t *item = (uint32_t *) t;
1076
1077 for (ssize_t i = vlen; i > 0; item++, i--)
1078 swap_thing (*item);
1079 break;
1080 }
1081
1082 case CTF_K_ARRAY:
1083 {
1084 /* This has a single ctf_array_t. */
1085
1086 ctf_array_t *a = (ctf_array_t *) t;
1087
1088 assert (vbytes == sizeof (ctf_array_t));
1089 swap_thing (a->cta_contents);
1090 swap_thing (a->cta_index);
1091 swap_thing (a->cta_nelems);
1092
1093 break;
1094 }
1095
1096 case CTF_K_SLICE:
1097 {
1098 /* This has a single ctf_slice_t. */
1099
1100 ctf_slice_t *s = (ctf_slice_t *) t;
1101
1102 assert (vbytes == sizeof (ctf_slice_t));
1103 swap_thing (s->cts_type);
1104 swap_thing (s->cts_offset);
1105 swap_thing (s->cts_bits);
1106
1107 break;
1108 }
1109
1110 case CTF_K_STRUCT:
1111 case CTF_K_UNION:
1112 {
1113 /* This has an array of ctf_member or ctf_lmember, depending on
1114 size. We could consider it to be a simple array of uint32_t,
1115 but for safety's sake in case these structures ever acquire
1116 non-uint32_t members, do it member by member. */
1117
1118 if (_libctf_unlikely_ (size >= CTF_LSTRUCT_THRESH))
1119 {
1120 ctf_lmember_t *lm = (ctf_lmember_t *) t;
1121 for (ssize_t i = vlen; i > 0; i--, lm++)
1122 {
1123 swap_thing (lm->ctlm_name);
1124 swap_thing (lm->ctlm_offsethi);
1125 swap_thing (lm->ctlm_type);
1126 swap_thing (lm->ctlm_offsetlo);
1127 }
1128 }
1129 else
1130 {
1131 ctf_member_t *m = (ctf_member_t *) t;
1132 for (ssize_t i = vlen; i > 0; i--, m++)
1133 {
1134 swap_thing (m->ctm_name);
1135 swap_thing (m->ctm_offset);
1136 swap_thing (m->ctm_type);
1137 }
1138 }
1139 break;
1140 }
1141
1142 case CTF_K_ENUM:
1143 {
1144 /* This has an array of ctf_enum_t. */
1145
1146 ctf_enum_t *item = (ctf_enum_t *) t;
1147
1148 for (ssize_t i = vlen; i > 0; item++, i--)
1149 {
1150 swap_thing (item->cte_name);
1151 swap_thing (item->cte_value);
1152 }
1153 break;
1154 }
1155 default:
1156 ctf_dprintf ("unhandled CTF kind in endianness conversion -- %x\n",
1157 kind);
1158 return ECTF_CORRUPT;
1159 }
1160
1161 t = (ctf_type_t *) ((uintptr_t) t + vbytes);
1162 }
1163
1164 return 0;
1165}
1166
fd55eae8 1167/* Flip the endianness of BUF, given the offsets in the (already endian-
72f33921
NA
1168 converted) CTH.
1169
1170 All of this stuff happens before the header is fully initialized, so the
1171 LCTF_*() macros cannot be used yet. Since we do not try to endian-convert v1
1172 data, this is no real loss. */
1173
1174static int
fd55eae8 1175flip_ctf (ctf_header_t *cth, unsigned char *buf)
72f33921 1176{
fd55eae8
NA
1177 flip_lbls (buf + cth->cth_lbloff, cth->cth_objtoff - cth->cth_lbloff);
1178 flip_objts (buf + cth->cth_objtoff, cth->cth_funcoff - cth->cth_objtoff);
1179 flip_objts (buf + cth->cth_funcoff, cth->cth_varoff - cth->cth_funcoff);
1180 flip_vars (buf + cth->cth_varoff, cth->cth_typeoff - cth->cth_varoff);
1181 return flip_types (buf + cth->cth_typeoff, cth->cth_stroff - cth->cth_typeoff);
72f33921
NA
1182}
1183
1184/* Open a CTF file, mocking up a suitable ctf_sect. */
1185ctf_file_t *ctf_simple_open (const char *ctfsect, size_t ctfsect_size,
1186 const char *symsect, size_t symsect_size,
1187 size_t symsect_entsize,
1188 const char *strsect, size_t strsect_size,
1189 int *errp)
1190{
1191 ctf_sect_t skeleton;
1192
1193 ctf_sect_t ctf_sect, sym_sect, str_sect;
1194 ctf_sect_t *ctfsectp = NULL;
1195 ctf_sect_t *symsectp = NULL;
1196 ctf_sect_t *strsectp = NULL;
1197
1198 skeleton.cts_name = _CTF_SECTION;
72f33921 1199 skeleton.cts_entsize = 1;
72f33921
NA
1200
1201 if (ctfsect)
1202 {
1203 memcpy (&ctf_sect, &skeleton, sizeof (struct ctf_sect));
1204 ctf_sect.cts_data = ctfsect;
1205 ctf_sect.cts_size = ctfsect_size;
1206 ctfsectp = &ctf_sect;
1207 }
1208
1209 if (symsect)
1210 {
1211 memcpy (&sym_sect, &skeleton, sizeof (struct ctf_sect));
1212 sym_sect.cts_data = symsect;
1213 sym_sect.cts_size = symsect_size;
1214 sym_sect.cts_entsize = symsect_entsize;
1215 symsectp = &sym_sect;
1216 }
1217
1218 if (strsect)
1219 {
1220 memcpy (&str_sect, &skeleton, sizeof (struct ctf_sect));
1221 str_sect.cts_data = strsect;
1222 str_sect.cts_size = strsect_size;
1223 strsectp = &str_sect;
1224 }
1225
1226 return ctf_bufopen (ctfsectp, symsectp, strsectp, errp);
1227}
1228
1229/* Decode the specified CTF buffer and optional symbol table, and create a new
1230 CTF container representing the symbolic debugging information. This code can
1231 be used directly by the debugger, or it can be used as the engine for
1232 ctf_fdopen() or ctf_open(), below. */
1233
1234ctf_file_t *
1235ctf_bufopen (const ctf_sect_t *ctfsect, const ctf_sect_t *symsect,
1236 const ctf_sect_t *strsect, int *errp)
1237{
1238 const ctf_preamble_t *pp;
fd55eae8
NA
1239 size_t hdrsz = sizeof (ctf_header_t);
1240 ctf_header_t *hp;
72f33921 1241 ctf_file_t *fp;
72f33921
NA
1242 int foreign_endian = 0;
1243 int err;
1244
1245 libctf_init_debug();
1246
6d5944fc 1247 if ((ctfsect == NULL) || ((symsect != NULL) && (strsect == NULL)))
72f33921
NA
1248 return (ctf_set_open_errno (errp, EINVAL));
1249
1250 if (symsect != NULL && symsect->cts_entsize != sizeof (Elf32_Sym) &&
1251 symsect->cts_entsize != sizeof (Elf64_Sym))
1252 return (ctf_set_open_errno (errp, ECTF_SYMTAB));
1253
1254 if (symsect != NULL && symsect->cts_data == NULL)
1255 return (ctf_set_open_errno (errp, ECTF_SYMBAD));
1256
1257 if (strsect != NULL && strsect->cts_data == NULL)
1258 return (ctf_set_open_errno (errp, ECTF_STRBAD));
1259
1260 if (ctfsect->cts_size < sizeof (ctf_preamble_t))
1261 return (ctf_set_open_errno (errp, ECTF_NOCTFBUF));
1262
1263 pp = (const ctf_preamble_t *) ctfsect->cts_data;
1264
1265 ctf_dprintf ("ctf_bufopen: magic=0x%x version=%u\n",
1266 pp->ctp_magic, pp->ctp_version);
1267
1268 /* Validate each part of the CTF header.
1269
1270 First, we validate the preamble (common to all versions). At that point,
1271 we know the endianness and specific header version, and can validate the
1272 version-specific parts including section offsets and alignments.
1273
1274 We specifically do not support foreign-endian old versions. */
1275
1276 if (_libctf_unlikely_ (pp->ctp_magic != CTF_MAGIC))
1277 {
1278 if (pp->ctp_magic == bswap_16 (CTF_MAGIC))
1279 {
1280 if (pp->ctp_version != CTF_VERSION_3)
1281 return (ctf_set_open_errno (errp, ECTF_CTFVERS));
1282 foreign_endian = 1;
1283 }
1284 else
1285 return (ctf_set_open_errno (errp, ECTF_NOCTFBUF));
1286 }
1287
1288 if (_libctf_unlikely_ ((pp->ctp_version < CTF_VERSION_1)
1289 || (pp->ctp_version > CTF_VERSION_3)))
1290 return (ctf_set_open_errno (errp, ECTF_CTFVERS));
1291
1292 if ((symsect != NULL) && (pp->ctp_version < CTF_VERSION_2))
1293 {
1294 /* The symtab can contain function entries which contain embedded ctf
1295 info. We do not support dynamically upgrading such entries (none
1296 should exist in any case, since dwarf2ctf does not create them). */
1297
1298 ctf_dprintf ("ctf_bufopen: CTF version %d symsect not "
1299 "supported\n", pp->ctp_version);
1300 return (ctf_set_open_errno (errp, ECTF_NOTSUP));
1301 }
1302
fd55eae8
NA
1303 if (pp->ctp_version < CTF_VERSION_3)
1304 hdrsz = sizeof (ctf_header_v2_t);
1305
1306 if (ctfsect->cts_size < hdrsz)
72f33921
NA
1307 return (ctf_set_open_errno (errp, ECTF_NOCTFBUF));
1308
fd55eae8
NA
1309 if ((fp = ctf_alloc (sizeof (ctf_file_t))) == NULL)
1310 return (ctf_set_open_errno (errp, ENOMEM));
1311
1312 memset (fp, 0, sizeof (ctf_file_t));
1313
1314 if ((fp->ctf_header = ctf_alloc (sizeof (struct ctf_header))) == NULL)
1315 {
1316 ctf_free (fp);
1317 return (ctf_set_open_errno (errp, ENOMEM));
1318 }
1319 hp = fp->ctf_header;
1320 memcpy (hp, ctfsect->cts_data, hdrsz);
1321 if (pp->ctp_version < CTF_VERSION_3)
1322 upgrade_header (hp);
72f33921
NA
1323
1324 if (foreign_endian)
fd55eae8 1325 flip_header (hp);
9b32cba4 1326 fp->ctf_openflags = hp->cth_flags;
fd55eae8 1327 fp->ctf_size = hp->cth_stroff + hp->cth_strlen;
72f33921 1328
fd55eae8
NA
1329 ctf_dprintf ("ctf_bufopen: uncompressed size=%lu\n",
1330 (unsigned long) fp->ctf_size);
72f33921 1331
fd55eae8
NA
1332 if (hp->cth_lbloff > fp->ctf_size || hp->cth_objtoff > fp->ctf_size
1333 || hp->cth_funcoff > fp->ctf_size || hp->cth_typeoff > fp->ctf_size
1334 || hp->cth_stroff > fp->ctf_size)
72f33921
NA
1335 return (ctf_set_open_errno (errp, ECTF_CORRUPT));
1336
fd55eae8
NA
1337 if (hp->cth_lbloff > hp->cth_objtoff
1338 || hp->cth_objtoff > hp->cth_funcoff
1339 || hp->cth_funcoff > hp->cth_typeoff
1340 || hp->cth_funcoff > hp->cth_varoff
1341 || hp->cth_varoff > hp->cth_typeoff || hp->cth_typeoff > hp->cth_stroff)
72f33921
NA
1342 return (ctf_set_open_errno (errp, ECTF_CORRUPT));
1343
fd55eae8
NA
1344 if ((hp->cth_lbloff & 3) || (hp->cth_objtoff & 2)
1345 || (hp->cth_funcoff & 2) || (hp->cth_varoff & 3)
1346 || (hp->cth_typeoff & 3))
72f33921
NA
1347 return (ctf_set_open_errno (errp, ECTF_CORRUPT));
1348
1349 /* Once everything is determined to be valid, attempt to decompress the CTF
1350 data buffer if it is compressed, or copy it into new storage if it is not
1351 compressed but needs endian-flipping. Otherwise we just put the data
1352 section's buffer pointer into ctf_buf, below. */
1353
1354 /* Note: if this is a v1 buffer, it will be reallocated and expanded by
1355 init_types(). */
1356
fd55eae8 1357 if (hp->cth_flags & CTF_F_COMPRESS)
72f33921 1358 {
a0486bac
JM
1359 size_t srclen;
1360 uLongf dstlen;
72f33921
NA
1361 const void *src;
1362 int rc = Z_OK;
1363
fd55eae8
NA
1364 /* We are allocating this ourselves, so we can drop the ctf header
1365 copy in favour of ctf->ctf_header. */
72f33921 1366
fd55eae8
NA
1367 if ((fp->ctf_base = ctf_alloc (fp->ctf_size)) == NULL)
1368 {
1369 err = ECTF_ZALLOC;
1370 goto bad;
1371 }
1372 fp->ctf_dynbase = fp->ctf_base;
1373 hp->cth_flags &= ~CTF_F_COMPRESS;
72f33921
NA
1374
1375 src = (unsigned char *) ctfsect->cts_data + hdrsz;
1376 srclen = ctfsect->cts_size - hdrsz;
fd55eae8
NA
1377 dstlen = fp->ctf_size;
1378 fp->ctf_buf = fp->ctf_base;
72f33921 1379
fd55eae8 1380 if ((rc = uncompress (fp->ctf_base, &dstlen, src, srclen)) != Z_OK)
72f33921
NA
1381 {
1382 ctf_dprintf ("zlib inflate err: %s\n", zError (rc));
fd55eae8
NA
1383 err = ECTF_DECOMPRESS;
1384 goto bad;
72f33921
NA
1385 }
1386
fd55eae8 1387 if ((size_t) dstlen != fp->ctf_size)
72f33921
NA
1388 {
1389 ctf_dprintf ("zlib inflate short -- got %lu of %lu "
fd55eae8
NA
1390 "bytes\n", (unsigned long) dstlen,
1391 (unsigned long) fp->ctf_size);
1392 err = ECTF_CORRUPT;
1393 goto bad;
72f33921 1394 }
72f33921
NA
1395 }
1396 else if (foreign_endian)
1397 {
fd55eae8
NA
1398 if ((fp->ctf_base = ctf_alloc (fp->ctf_size)) == NULL)
1399 {
1400 err = ECTF_ZALLOC;
1401 goto bad;
1402 }
1403 fp->ctf_dynbase = fp->ctf_base;
1404 memcpy (fp->ctf_base, ((unsigned char *) ctfsect->cts_data) + hdrsz,
1405 fp->ctf_size);
1406 fp->ctf_buf = fp->ctf_base;
72f33921
NA
1407 }
1408 else
fd55eae8
NA
1409 {
1410 /* We are just using the section passed in -- but its header may be an old
1411 version. Point ctf_buf past the old header, and never touch it
1412 again. */
1413 fp->ctf_base = (unsigned char *) ctfsect->cts_data;
1414 fp->ctf_dynbase = NULL;
1415 fp->ctf_buf = fp->ctf_base + hdrsz;
1416 }
72f33921
NA
1417
1418 /* Once we have uncompressed and validated the CTF data buffer, we can
fd55eae8 1419 proceed with initializing the ctf_file_t we allocated above.
72f33921
NA
1420
1421 Nothing that depends on buf or base should be set directly in this function
1422 before the init_types() call, because it may be reallocated during
1423 transparent upgrade if this recension of libctf is so configured: see
fd55eae8 1424 ctf_set_base(). */
72f33921 1425
fd55eae8 1426 ctf_set_version (fp, hp, hp->cth_version);
f5e9c9bd 1427 ctf_str_create_atoms (fp);
fd55eae8 1428 fp->ctf_parmax = CTF_MAX_PTYPE;
72f33921
NA
1429 memcpy (&fp->ctf_data, ctfsect, sizeof (ctf_sect_t));
1430
1431 if (symsect != NULL)
1432 {
1433 memcpy (&fp->ctf_symtab, symsect, sizeof (ctf_sect_t));
1434 memcpy (&fp->ctf_strtab, strsect, sizeof (ctf_sect_t));
1435 }
1436
1437 if (fp->ctf_data.cts_name != NULL)
1438 fp->ctf_data.cts_name = ctf_strdup (fp->ctf_data.cts_name);
1439 if (fp->ctf_symtab.cts_name != NULL)
1440 fp->ctf_symtab.cts_name = ctf_strdup (fp->ctf_symtab.cts_name);
1441 if (fp->ctf_strtab.cts_name != NULL)
1442 fp->ctf_strtab.cts_name = ctf_strdup (fp->ctf_strtab.cts_name);
1443
1444 if (fp->ctf_data.cts_name == NULL)
1445 fp->ctf_data.cts_name = _CTF_NULLSTR;
1446 if (fp->ctf_symtab.cts_name == NULL)
1447 fp->ctf_symtab.cts_name = _CTF_NULLSTR;
1448 if (fp->ctf_strtab.cts_name == NULL)
1449 fp->ctf_strtab.cts_name = _CTF_NULLSTR;
1450
1451 if (strsect != NULL)
1452 {
1453 fp->ctf_str[CTF_STRTAB_1].cts_strs = strsect->cts_data;
1454 fp->ctf_str[CTF_STRTAB_1].cts_len = strsect->cts_size;
1455 }
1456
1457 if (foreign_endian &&
fd55eae8 1458 (err = flip_ctf (hp, fp->ctf_buf)) != 0)
72f33921
NA
1459 {
1460 /* We can be certain that flip_ctf() will have endian-flipped everything
1461 other than the types table when we return. In particular the header
1462 is fine, so set it, to allow freeing to use the usual code path. */
1463
fd55eae8 1464 ctf_set_base (fp, hp, fp->ctf_base);
72f33921
NA
1465 goto bad;
1466 }
1467
fd55eae8 1468 ctf_set_base (fp, hp, fp->ctf_base);
72f33921 1469
fd55eae8
NA
1470 if ((err = init_types (fp, hp)) != 0)
1471 goto bad;
72f33921 1472
72f33921 1473 /* If we have a symbol table section, allocate and initialize
fd55eae8
NA
1474 the symtab translation table, pointed to by ctf_sxlate. This table may be
1475 too large for the actual size of the object and function info sections: if
1476 so, ctf_nsyms will be adjusted and the excess will never be used. */
72f33921
NA
1477
1478 if (symsect != NULL)
1479 {
1480 fp->ctf_nsyms = symsect->cts_size / symsect->cts_entsize;
1481 fp->ctf_sxlate = ctf_alloc (fp->ctf_nsyms * sizeof (uint32_t));
1482
1483 if (fp->ctf_sxlate == NULL)
1484 {
fd55eae8 1485 err = ENOMEM;
72f33921
NA
1486 goto bad;
1487 }
1488
fd55eae8
NA
1489 if ((err = init_symtab (fp, hp, symsect, strsect)) != 0)
1490 goto bad;
72f33921
NA
1491 }
1492
1493 /* Initialize the ctf_lookup_by_name top-level dictionary. We keep an
1494 array of type name prefixes and the corresponding ctf_hash to use.
1495 NOTE: This code must be kept in sync with the code in ctf_update(). */
1496 fp->ctf_lookups[0].ctl_prefix = "struct";
1497 fp->ctf_lookups[0].ctl_len = strlen (fp->ctf_lookups[0].ctl_prefix);
1498 fp->ctf_lookups[0].ctl_hash = fp->ctf_structs;
1499 fp->ctf_lookups[1].ctl_prefix = "union";
1500 fp->ctf_lookups[1].ctl_len = strlen (fp->ctf_lookups[1].ctl_prefix);
1501 fp->ctf_lookups[1].ctl_hash = fp->ctf_unions;
1502 fp->ctf_lookups[2].ctl_prefix = "enum";
1503 fp->ctf_lookups[2].ctl_len = strlen (fp->ctf_lookups[2].ctl_prefix);
1504 fp->ctf_lookups[2].ctl_hash = fp->ctf_enums;
1505 fp->ctf_lookups[3].ctl_prefix = _CTF_NULLSTR;
1506 fp->ctf_lookups[3].ctl_len = strlen (fp->ctf_lookups[3].ctl_prefix);
1507 fp->ctf_lookups[3].ctl_hash = fp->ctf_names;
1508 fp->ctf_lookups[4].ctl_prefix = NULL;
1509 fp->ctf_lookups[4].ctl_len = 0;
1510 fp->ctf_lookups[4].ctl_hash = NULL;
1511
1512 if (symsect != NULL)
1513 {
1514 if (symsect->cts_entsize == sizeof (Elf64_Sym))
1515 (void) ctf_setmodel (fp, CTF_MODEL_LP64);
1516 else
1517 (void) ctf_setmodel (fp, CTF_MODEL_ILP32);
1518 }
1519 else
1520 (void) ctf_setmodel (fp, CTF_MODEL_NATIVE);
1521
1522 fp->ctf_refcnt = 1;
1523 return fp;
1524
1525bad:
fd55eae8 1526 ctf_set_open_errno (errp, err);
72f33921
NA
1527 ctf_file_close (fp);
1528 return NULL;
1529}
1530
1531/* Close the specified CTF container and free associated data structures. Note
1532 that ctf_file_close() is a reference counted operation: if the specified file
1533 is the parent of other active containers, its reference count will be greater
1534 than one and it will be freed later when no active children exist. */
1535
1536void
1537ctf_file_close (ctf_file_t *fp)
1538{
1539 ctf_dtdef_t *dtd, *ntd;
1540 ctf_dvdef_t *dvd, *nvd;
1541
1542 if (fp == NULL)
1543 return; /* Allow ctf_file_close(NULL) to simplify caller code. */
1544
1545 ctf_dprintf ("ctf_file_close(%p) refcnt=%u\n", (void *) fp, fp->ctf_refcnt);
1546
1547 if (fp->ctf_refcnt > 1)
1548 {
1549 fp->ctf_refcnt--;
1550 return;
1551 }
1552
fd55eae8
NA
1553 ctf_free (fp->ctf_dyncuname);
1554 ctf_free (fp->ctf_dynparname);
1555 ctf_file_close (fp->ctf_parent);
72f33921
NA
1556
1557 for (dtd = ctf_list_next (&fp->ctf_dtdefs); dtd != NULL; dtd = ntd)
1558 {
1559 ntd = ctf_list_next (dtd);
1560 ctf_dtd_delete (fp, dtd);
1561 }
1562 ctf_dynhash_destroy (fp->ctf_dthash);
1563 ctf_dynhash_destroy (fp->ctf_dtbyname);
1564
1565 for (dvd = ctf_list_next (&fp->ctf_dvdefs); dvd != NULL; dvd = nvd)
1566 {
1567 nvd = ctf_list_next (dvd);
1568 ctf_dvd_delete (fp, dvd);
1569 }
1570 ctf_dynhash_destroy (fp->ctf_dvhash);
f5e9c9bd 1571 ctf_str_free_atoms (fp);
72f33921
NA
1572 ctf_free (fp->ctf_tmp_typeslice);
1573
fd55eae8 1574 if (fp->ctf_data.cts_name != _CTF_NULLSTR)
72f33921
NA
1575 ctf_free ((char *) fp->ctf_data.cts_name);
1576
fd55eae8 1577 if (fp->ctf_symtab.cts_name != _CTF_NULLSTR)
72f33921
NA
1578 ctf_free ((char *) fp->ctf_symtab.cts_name);
1579
fd55eae8 1580 if (fp->ctf_strtab.cts_name != _CTF_NULLSTR)
72f33921
NA
1581 ctf_free ((char *) fp->ctf_strtab.cts_name);
1582
1583 else if (fp->ctf_data_mmapped)
1584 ctf_munmap (fp->ctf_data_mmapped, fp->ctf_data_mmapped_len);
1585
fd55eae8 1586 ctf_free (fp->ctf_dynbase);
72f33921 1587
fd55eae8
NA
1588 ctf_free (fp->ctf_sxlate);
1589 ctf_free (fp->ctf_txlate);
1590 ctf_free (fp->ctf_ptrtab);
72f33921
NA
1591
1592 ctf_hash_destroy (fp->ctf_structs);
1593 ctf_hash_destroy (fp->ctf_unions);
1594 ctf_hash_destroy (fp->ctf_enums);
1595 ctf_hash_destroy (fp->ctf_names);
1596
fd55eae8 1597 ctf_free (fp->ctf_header);
72f33921
NA
1598 ctf_free (fp);
1599}
1600
143dce84
NA
1601/* The converse of ctf_open(). ctf_open() disguises whatever it opens as an
1602 archive, so closing one is just like closing an archive. */
1603void
1604ctf_close (ctf_archive_t *arc)
1605{
1606 ctf_arc_close (arc);
1607}
1608
9402cc59
NA
1609/* Get the CTF archive from which this ctf_file_t is derived. */
1610ctf_archive_t *
1611ctf_get_arc (const ctf_file_t *fp)
1612{
1613 return fp->ctf_archive;
1614}
1615
72f33921
NA
1616/* Return the ctfsect out of the core ctf_impl. Useful for freeing the
1617 ctfsect's data * after ctf_file_close(), which is why we return the actual
1618 structure, not a pointer to it, since that is likely to become a pointer to
1619 freed data before the return value is used under the expected use case of
1620 ctf_getsect()/ ctf_file_close()/free(). */
1621extern ctf_sect_t
1622ctf_getdatasect (const ctf_file_t *fp)
1623{
1624 return fp->ctf_data;
1625}
1626
1627/* Return the CTF handle for the parent CTF container, if one exists.
1628 Otherwise return NULL to indicate this container has no imported parent. */
1629ctf_file_t *
1630ctf_parent_file (ctf_file_t *fp)
1631{
1632 return fp->ctf_parent;
1633}
1634
1635/* Return the name of the parent CTF container, if one exists. Otherwise
1636 return NULL to indicate this container is a root container. */
1637const char *
1638ctf_parent_name (ctf_file_t *fp)
1639{
1640 return fp->ctf_parname;
1641}
1642
1643/* Set the parent name. It is an error to call this routine without calling
1644 ctf_import() at some point. */
1645void
1646ctf_parent_name_set (ctf_file_t *fp, const char *name)
1647{
1648 if (fp->ctf_dynparname != NULL)
1649 ctf_free (fp->ctf_dynparname);
1650
1651 fp->ctf_dynparname = ctf_strdup (name);
1652 fp->ctf_parname = fp->ctf_dynparname;
1653}
1654
fd55eae8
NA
1655/* Return the name of the compilation unit this CTF file applies to. Usually
1656 non-NULL only for non-parent containers. */
1657const char *
1658ctf_cuname (ctf_file_t *fp)
1659{
1660 return fp->ctf_cuname;
1661}
1662
1663/* Set the compilation unit name. */
1664void
1665ctf_cuname_set (ctf_file_t *fp, const char *name)
1666{
1667 if (fp->ctf_dyncuname != NULL)
1668 ctf_free (fp->ctf_dyncuname);
1669
1670 fp->ctf_dyncuname = ctf_strdup (name);
1671 fp->ctf_cuname = fp->ctf_dyncuname;
1672}
1673
72f33921
NA
1674/* Import the types from the specified parent container by storing a pointer
1675 to it in ctf_parent and incrementing its reference count. Only one parent
1676 is allowed: if a parent already exists, it is replaced by the new parent. */
1677int
1678ctf_import (ctf_file_t *fp, ctf_file_t *pfp)
1679{
1680 if (fp == NULL || fp == pfp || (pfp != NULL && pfp->ctf_refcnt == 0))
1681 return (ctf_set_errno (fp, EINVAL));
1682
1683 if (pfp != NULL && pfp->ctf_dmodel != fp->ctf_dmodel)
1684 return (ctf_set_errno (fp, ECTF_DMODEL));
1685
1686 if (fp->ctf_parent != NULL)
1687 ctf_file_close (fp->ctf_parent);
1688
1689 if (pfp != NULL)
1690 {
1691 fp->ctf_flags |= LCTF_CHILD;
1692 pfp->ctf_refcnt++;
1693
1694 if (fp->ctf_parname == NULL)
1695 ctf_parent_name_set (fp, "PARENT");
1696 }
1697 fp->ctf_parent = pfp;
1698 return 0;
1699}
1700
1701/* Set the data model constant for the CTF container. */
1702int
1703ctf_setmodel (ctf_file_t *fp, int model)
1704{
1705 const ctf_dmodel_t *dp;
1706
1707 for (dp = _libctf_models; dp->ctd_name != NULL; dp++)
1708 {
1709 if (dp->ctd_code == model)
1710 {
1711 fp->ctf_dmodel = dp;
1712 return 0;
1713 }
1714 }
1715
1716 return (ctf_set_errno (fp, EINVAL));
1717}
1718
1719/* Return the data model constant for the CTF container. */
1720int
1721ctf_getmodel (ctf_file_t *fp)
1722{
1723 return fp->ctf_dmodel->ctd_code;
1724}
1725
a0486bac
JM
1726/* The caller can hang an arbitrary pointer off each ctf_file_t using this
1727 function. */
72f33921
NA
1728void
1729ctf_setspecific (ctf_file_t *fp, void *data)
1730{
1731 fp->ctf_specific = data;
1732}
1733
a0486bac 1734/* Retrieve the arbitrary pointer again. */
72f33921
NA
1735void *
1736ctf_getspecific (ctf_file_t *fp)
1737{
1738 return fp->ctf_specific;
1739}
This page took 0.109652 seconds and 4 git commands to generate.