Updated translations for the bfd, binutils, gas, ld and opcodes directories
[binutils-gdb.git] / libctf / ctf-open.c
blob2ae0a696c3ab50f47f06530a1ad88067ee17bc47
1 /* Opening CTF files.
2 Copyright (C) 2019-2024 Free Software Foundation, Inc.
4 This file is part of libctf.
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.
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.
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/>. */
20 #include <ctf-impl.h>
21 #include <stddef.h>
22 #include <string.h>
23 #include <sys/types.h>
24 #include <elf.h>
25 #include "swap.h"
26 #include <bfd.h>
27 #include <zlib.h>
29 static const ctf_dmodel_t _libctf_models[] = {
30 {"ILP32", CTF_MODEL_ILP32, 4, 1, 2, 4, 4},
31 {"LP64", CTF_MODEL_LP64, 8, 1, 2, 4, 8},
32 {NULL, 0, 0, 0, 0, 0, 0}
35 const char _CTF_SECTION[] = ".ctf";
36 const char _CTF_NULLSTR[] = "";
38 /* Version-sensitive accessors. */
40 static uint32_t
41 get_kind_v1 (uint32_t info)
43 return (CTF_V1_INFO_KIND (info));
46 static uint32_t
47 get_root_v1 (uint32_t info)
49 return (CTF_V1_INFO_ISROOT (info));
52 static uint32_t
53 get_vlen_v1 (uint32_t info)
55 return (CTF_V1_INFO_VLEN (info));
58 static uint32_t
59 get_kind_v2 (uint32_t info)
61 return (CTF_V2_INFO_KIND (info));
64 static uint32_t
65 get_root_v2 (uint32_t info)
67 return (CTF_V2_INFO_ISROOT (info));
70 static uint32_t
71 get_vlen_v2 (uint32_t info)
73 return (CTF_V2_INFO_VLEN (info));
76 static inline ssize_t
77 get_ctt_size_common (const ctf_dict_t *fp _libctf_unused_,
78 const ctf_type_t *tp _libctf_unused_,
79 ssize_t *sizep, ssize_t *incrementp, size_t lsize,
80 size_t csize, size_t ctf_type_size,
81 size_t ctf_stype_size, size_t ctf_lsize_sent)
83 ssize_t size, increment;
85 if (csize == ctf_lsize_sent)
87 size = lsize;
88 increment = ctf_type_size;
90 else
92 size = csize;
93 increment = ctf_stype_size;
96 if (sizep)
97 *sizep = size;
98 if (incrementp)
99 *incrementp = increment;
101 return size;
104 static ssize_t
105 get_ctt_size_v1 (const ctf_dict_t *fp, const ctf_type_t *tp,
106 ssize_t *sizep, ssize_t *incrementp)
108 ctf_type_v1_t *t1p = (ctf_type_v1_t *) tp;
110 return (get_ctt_size_common (fp, tp, sizep, incrementp,
111 CTF_TYPE_LSIZE (t1p), t1p->ctt_size,
112 sizeof (ctf_type_v1_t), sizeof (ctf_stype_v1_t),
113 CTF_LSIZE_SENT_V1));
116 /* Return the size that a v1 will be once it is converted to v2. */
118 static ssize_t
119 get_ctt_size_v2_unconverted (const ctf_dict_t *fp, const ctf_type_t *tp,
120 ssize_t *sizep, ssize_t *incrementp)
122 ctf_type_v1_t *t1p = (ctf_type_v1_t *) tp;
124 return (get_ctt_size_common (fp, tp, sizep, incrementp,
125 CTF_TYPE_LSIZE (t1p), t1p->ctt_size,
126 sizeof (ctf_type_t), sizeof (ctf_stype_t),
127 CTF_LSIZE_SENT));
130 static ssize_t
131 get_ctt_size_v2 (const ctf_dict_t *fp, const ctf_type_t *tp,
132 ssize_t *sizep, ssize_t *incrementp)
134 return (get_ctt_size_common (fp, tp, sizep, incrementp,
135 CTF_TYPE_LSIZE (tp), tp->ctt_size,
136 sizeof (ctf_type_t), sizeof (ctf_stype_t),
137 CTF_LSIZE_SENT));
140 static ssize_t
141 get_vbytes_common (ctf_dict_t *fp, unsigned short kind,
142 ssize_t size _libctf_unused_, size_t vlen)
144 switch (kind)
146 case CTF_K_INTEGER:
147 case CTF_K_FLOAT:
148 return (sizeof (uint32_t));
149 case CTF_K_SLICE:
150 return (sizeof (ctf_slice_t));
151 case CTF_K_ENUM:
152 return (sizeof (ctf_enum_t) * vlen);
153 case CTF_K_FORWARD:
154 case CTF_K_UNKNOWN:
155 case CTF_K_POINTER:
156 case CTF_K_TYPEDEF:
157 case CTF_K_VOLATILE:
158 case CTF_K_CONST:
159 case CTF_K_RESTRICT:
160 return 0;
161 default:
162 ctf_set_errno (fp, ECTF_CORRUPT);
163 ctf_err_warn (fp, 0, 0, _("detected invalid CTF kind: %x"), kind);
164 return -1;
168 static ssize_t
169 get_vbytes_v1 (ctf_dict_t *fp, unsigned short kind, ssize_t size, size_t vlen)
171 switch (kind)
173 case CTF_K_ARRAY:
174 return (sizeof (ctf_array_v1_t));
175 case CTF_K_FUNCTION:
176 return (sizeof (unsigned short) * (vlen + (vlen & 1)));
177 case CTF_K_STRUCT:
178 case CTF_K_UNION:
179 if (size < CTF_LSTRUCT_THRESH_V1)
180 return (sizeof (ctf_member_v1_t) * vlen);
181 else
182 return (sizeof (ctf_lmember_v1_t) * vlen);
185 return (get_vbytes_common (fp, kind, size, vlen));
188 static ssize_t
189 get_vbytes_v2 (ctf_dict_t *fp, unsigned short kind, ssize_t size, size_t vlen)
191 switch (kind)
193 case CTF_K_ARRAY:
194 return (sizeof (ctf_array_t));
195 case CTF_K_FUNCTION:
196 return (sizeof (uint32_t) * (vlen + (vlen & 1)));
197 case CTF_K_STRUCT:
198 case CTF_K_UNION:
199 if (size < CTF_LSTRUCT_THRESH)
200 return (sizeof (ctf_member_t) * vlen);
201 else
202 return (sizeof (ctf_lmember_t) * vlen);
205 return (get_vbytes_common (fp, kind, size, vlen));
208 static const ctf_dictops_t ctf_dictops[] = {
209 {NULL, NULL, NULL, NULL, NULL},
210 /* CTF_VERSION_1 */
211 {get_kind_v1, get_root_v1, get_vlen_v1, get_ctt_size_v1, get_vbytes_v1},
212 /* CTF_VERSION_1_UPGRADED_3 */
213 {get_kind_v2, get_root_v2, get_vlen_v2, get_ctt_size_v2, get_vbytes_v2},
214 /* CTF_VERSION_2 */
215 {get_kind_v2, get_root_v2, get_vlen_v2, get_ctt_size_v2, get_vbytes_v2},
216 /* CTF_VERSION_3, identical to 2: only new type kinds */
217 {get_kind_v2, get_root_v2, get_vlen_v2, get_ctt_size_v2, get_vbytes_v2},
220 /* Initialize the symtab translation table as appropriate for its indexing
221 state. For unindexed symtypetabs, fill each entry with the offset of the CTF
222 type or function data corresponding to each STT_FUNC or STT_OBJECT entry in
223 the symbol table. For indexed symtypetabs, do nothing: the needed
224 initialization for indexed lookups may be quite expensive, so it is done only
225 as needed, when lookups happen. (In particular, the majority of indexed
226 symtypetabs come from the compiler, and all the linker does is iteration over
227 all entries, which doesn't need this initialization.)
229 The SP symbol table section may be NULL if there is no symtab.
231 If init_symtab works on one call, it cannot fail on future calls to the same
232 fp: ctf_symsect_endianness relies on this. */
234 static int
235 init_symtab (ctf_dict_t *fp, const ctf_header_t *hp, const ctf_sect_t *sp)
237 const unsigned char *symp;
238 int skip_func_info = 0;
239 int i;
240 uint32_t *xp = fp->ctf_sxlate;
241 uint32_t *xend = PTR_ADD (xp, fp->ctf_nsyms);
243 uint32_t objtoff = hp->cth_objtoff;
244 uint32_t funcoff = hp->cth_funcoff;
246 /* If the CTF_F_NEWFUNCINFO flag is not set, pretend the func info section
247 is empty: this compiler is too old to emit a function info section we
248 understand. */
250 if (!(hp->cth_flags & CTF_F_NEWFUNCINFO))
251 skip_func_info = 1;
253 if (hp->cth_objtidxoff < hp->cth_funcidxoff)
254 fp->ctf_objtidx_names = (uint32_t *) (fp->ctf_buf + hp->cth_objtidxoff);
255 if (hp->cth_funcidxoff < hp->cth_varoff && !skip_func_info)
256 fp->ctf_funcidx_names = (uint32_t *) (fp->ctf_buf + hp->cth_funcidxoff);
258 /* Don't bother doing the rest if everything is indexed, or if we don't have a
259 symbol table: we will never use it. */
260 if ((fp->ctf_objtidx_names && fp->ctf_funcidx_names) || !sp || !sp->cts_data)
261 return 0;
263 /* The CTF data object and function type sections are ordered to match the
264 relative order of the respective symbol types in the symtab, unless there
265 is an index section, in which case the order is arbitrary and the index
266 gives the mapping. If no type information is available for a symbol table
267 entry, a pad is inserted in the CTF section. As a further optimization,
268 anonymous or undefined symbols are omitted from the CTF data. If an
269 index is available for function symbols but not object symbols, or vice
270 versa, we populate the xslate table for the unindexed symbols only. */
272 for (i = 0, symp = sp->cts_data; xp < xend; xp++, symp += sp->cts_entsize,
273 i++)
275 ctf_link_sym_t sym;
277 switch (sp->cts_entsize)
279 case sizeof (Elf64_Sym):
281 const Elf64_Sym *symp64 = (Elf64_Sym *) (uintptr_t) symp;
282 ctf_elf64_to_link_sym (fp, &sym, symp64, i);
284 break;
285 case sizeof (Elf32_Sym):
287 const Elf32_Sym *symp32 = (Elf32_Sym *) (uintptr_t) symp;
288 ctf_elf32_to_link_sym (fp, &sym, symp32, i);
290 break;
291 default:
292 return ECTF_SYMTAB;
295 /* This call may be led astray if our idea of the symtab's endianness is
296 wrong, but when this is fixed by a call to ctf_symsect_endianness,
297 init_symtab will be called again with the right endianness in
298 force. */
299 if (ctf_symtab_skippable (&sym))
301 *xp = -1u;
302 continue;
305 switch (sym.st_type)
307 case STT_OBJECT:
308 if (fp->ctf_objtidx_names || objtoff >= hp->cth_funcoff)
310 *xp = -1u;
311 break;
314 *xp = objtoff;
315 objtoff += sizeof (uint32_t);
316 break;
318 case STT_FUNC:
319 if (fp->ctf_funcidx_names || funcoff >= hp->cth_objtidxoff
320 || skip_func_info)
322 *xp = -1u;
323 break;
326 *xp = funcoff;
327 funcoff += sizeof (uint32_t);
328 break;
330 default:
331 *xp = -1u;
332 break;
336 ctf_dprintf ("loaded %lu symtab entries\n", fp->ctf_nsyms);
337 return 0;
340 /* Reset the CTF base pointer and derive the buf pointer from it, initializing
341 everything in the ctf_dict that depends on the base or buf pointers.
343 The original gap between the buf and base pointers, if any -- the original,
344 unconverted CTF header -- is kept, but its contents are not specified and are
345 never used. */
347 static void
348 ctf_set_base (ctf_dict_t *fp, const ctf_header_t *hp, unsigned char *base)
350 fp->ctf_buf = base + (fp->ctf_buf - fp->ctf_base);
351 fp->ctf_base = base;
352 fp->ctf_vars = (ctf_varent_t *) ((const char *) fp->ctf_buf +
353 hp->cth_varoff);
354 fp->ctf_nvars = (hp->cth_typeoff - hp->cth_varoff) / sizeof (ctf_varent_t);
356 fp->ctf_str[CTF_STRTAB_0].cts_strs = (const char *) fp->ctf_buf
357 + hp->cth_stroff;
358 fp->ctf_str[CTF_STRTAB_0].cts_len = hp->cth_strlen;
360 /* If we have a parent dict name and label, store the relocated string
361 pointers in the CTF dict for easy access later. */
363 /* Note: before conversion, these will be set to values that will be
364 immediately invalidated by the conversion process, but the conversion
365 process will call ctf_set_base() again to fix things up. */
367 if (hp->cth_parlabel != 0)
368 fp->ctf_parlabel = ctf_strptr (fp, hp->cth_parlabel);
369 if (hp->cth_parname != 0)
370 fp->ctf_parname = ctf_strptr (fp, hp->cth_parname);
371 if (hp->cth_cuname != 0)
372 fp->ctf_cuname = ctf_strptr (fp, hp->cth_cuname);
374 if (fp->ctf_cuname)
375 ctf_dprintf ("ctf_set_base: CU name %s\n", fp->ctf_cuname);
376 if (fp->ctf_parname)
377 ctf_dprintf ("ctf_set_base: parent name %s (label %s)\n",
378 fp->ctf_parname,
379 fp->ctf_parlabel ? fp->ctf_parlabel : "<NULL>");
382 /* Set the version of the CTF file. */
384 /* When this is reset, LCTF_* changes behaviour, but there is no guarantee that
385 the variable data list associated with each type has been upgraded: the
386 caller must ensure this has been done in advance. */
388 static void
389 ctf_set_version (ctf_dict_t *fp, ctf_header_t *cth, int ctf_version)
391 fp->ctf_version = ctf_version;
392 cth->cth_version = ctf_version;
393 fp->ctf_dictops = &ctf_dictops[ctf_version];
397 /* Upgrade the header to CTF_VERSION_3. The upgrade is done in-place. */
398 static void
399 upgrade_header (ctf_header_t *hp)
401 ctf_header_v2_t *oldhp = (ctf_header_v2_t *) hp;
403 hp->cth_strlen = oldhp->cth_strlen;
404 hp->cth_stroff = oldhp->cth_stroff;
405 hp->cth_typeoff = oldhp->cth_typeoff;
406 hp->cth_varoff = oldhp->cth_varoff;
407 hp->cth_funcidxoff = hp->cth_varoff; /* No index sections. */
408 hp->cth_objtidxoff = hp->cth_funcidxoff;
409 hp->cth_funcoff = oldhp->cth_funcoff;
410 hp->cth_objtoff = oldhp->cth_objtoff;
411 hp->cth_lbloff = oldhp->cth_lbloff;
412 hp->cth_cuname = 0; /* No CU name. */
415 /* Upgrade the type table to CTF_VERSION_3 (really CTF_VERSION_1_UPGRADED_3)
416 from CTF_VERSION_1.
418 The upgrade is not done in-place: the ctf_base is moved. ctf_strptr() must
419 not be called before reallocation is complete.
421 Sections not checked here due to nonexistence or nonpopulated state in older
422 formats: objtidx, funcidx.
424 Type kinds not checked here due to nonexistence in older formats:
425 CTF_K_SLICE. */
426 static int
427 upgrade_types_v1 (ctf_dict_t *fp, ctf_header_t *cth)
429 const ctf_type_v1_t *tbuf;
430 const ctf_type_v1_t *tend;
431 unsigned char *ctf_base, *old_ctf_base = (unsigned char *) fp->ctf_dynbase;
432 ctf_type_t *t2buf;
434 ssize_t increase = 0, size, increment, v2increment, vbytes, v2bytes;
435 const ctf_type_v1_t *tp;
436 ctf_type_t *t2p;
438 tbuf = (ctf_type_v1_t *) (fp->ctf_buf + cth->cth_typeoff);
439 tend = (ctf_type_v1_t *) (fp->ctf_buf + cth->cth_stroff);
441 /* Much like init_static_types(), this is a two-pass process.
443 First, figure out the new type-section size needed. (It is possible,
444 in theory, for it to be less than the old size, but this is very
445 unlikely. It cannot be so small that cth_typeoff ends up of negative
446 size. We validate this with an assertion below.)
448 We must cater not only for changes in vlen and types sizes but also
449 for changes in 'increment', which happen because v2 places some types
450 into ctf_stype_t where v1 would be forced to use the larger non-stype. */
452 for (tp = tbuf; tp < tend;
453 tp = (ctf_type_v1_t *) ((uintptr_t) tp + increment + vbytes))
455 unsigned short kind = CTF_V1_INFO_KIND (tp->ctt_info);
456 unsigned long vlen = CTF_V1_INFO_VLEN (tp->ctt_info);
458 size = get_ctt_size_v1 (fp, (const ctf_type_t *) tp, NULL, &increment);
459 vbytes = get_vbytes_v1 (fp, kind, size, vlen);
461 get_ctt_size_v2_unconverted (fp, (const ctf_type_t *) tp, NULL,
462 &v2increment);
463 v2bytes = get_vbytes_v2 (fp, kind, size, vlen);
465 if ((vbytes < 0) || (size < 0))
466 return ECTF_CORRUPT;
468 increase += v2increment - increment; /* May be negative. */
469 increase += v2bytes - vbytes;
472 /* Allocate enough room for the new buffer, then copy everything but the type
473 section into place, and reset the base accordingly. Leave the version
474 number unchanged, so that LCTF_INFO_* still works on the
475 as-yet-untranslated type info. */
477 if ((ctf_base = malloc (fp->ctf_size + increase)) == NULL)
478 return ECTF_ZALLOC;
480 /* Start at ctf_buf, not ctf_base, to squeeze out the original header: we
481 never use it and it is unconverted. */
483 memcpy (ctf_base, fp->ctf_buf, cth->cth_typeoff);
484 memcpy (ctf_base + cth->cth_stroff + increase,
485 fp->ctf_buf + cth->cth_stroff, cth->cth_strlen);
487 memset (ctf_base + cth->cth_typeoff, 0, cth->cth_stroff - cth->cth_typeoff
488 + increase);
490 cth->cth_stroff += increase;
491 fp->ctf_size += increase;
492 assert (cth->cth_stroff >= cth->cth_typeoff);
493 fp->ctf_base = ctf_base;
494 fp->ctf_buf = ctf_base;
495 fp->ctf_dynbase = ctf_base;
496 ctf_set_base (fp, cth, ctf_base);
498 t2buf = (ctf_type_t *) (fp->ctf_buf + cth->cth_typeoff);
500 /* Iterate through all the types again, upgrading them.
502 Everything that hasn't changed can just be outright memcpy()ed.
503 Things that have changed need field-by-field consideration. */
505 for (tp = tbuf, t2p = t2buf; tp < tend;
506 tp = (ctf_type_v1_t *) ((uintptr_t) tp + increment + vbytes),
507 t2p = (ctf_type_t *) ((uintptr_t) t2p + v2increment + v2bytes))
509 unsigned short kind = CTF_V1_INFO_KIND (tp->ctt_info);
510 int isroot = CTF_V1_INFO_ISROOT (tp->ctt_info);
511 unsigned long vlen = CTF_V1_INFO_VLEN (tp->ctt_info);
512 ssize_t v2size;
513 void *vdata, *v2data;
515 size = get_ctt_size_v1 (fp, (const ctf_type_t *) tp, NULL, &increment);
516 vbytes = get_vbytes_v1 (fp, kind, size, vlen);
518 t2p->ctt_name = tp->ctt_name;
519 t2p->ctt_info = CTF_TYPE_INFO (kind, isroot, vlen);
521 switch (kind)
523 case CTF_K_FUNCTION:
524 case CTF_K_FORWARD:
525 case CTF_K_TYPEDEF:
526 case CTF_K_POINTER:
527 case CTF_K_VOLATILE:
528 case CTF_K_CONST:
529 case CTF_K_RESTRICT:
530 t2p->ctt_type = tp->ctt_type;
531 break;
532 case CTF_K_INTEGER:
533 case CTF_K_FLOAT:
534 case CTF_K_ARRAY:
535 case CTF_K_STRUCT:
536 case CTF_K_UNION:
537 case CTF_K_ENUM:
538 case CTF_K_UNKNOWN:
539 if ((size_t) size <= CTF_MAX_SIZE)
540 t2p->ctt_size = size;
541 else
543 t2p->ctt_lsizehi = CTF_SIZE_TO_LSIZE_HI (size);
544 t2p->ctt_lsizelo = CTF_SIZE_TO_LSIZE_LO (size);
546 break;
549 v2size = get_ctt_size_v2 (fp, t2p, NULL, &v2increment);
550 v2bytes = get_vbytes_v2 (fp, kind, v2size, vlen);
552 /* Catch out-of-sync get_ctt_size_*(). The count goes wrong if
553 these are not identical (and having them different makes no
554 sense semantically). */
556 assert (size == v2size);
558 /* Now the varlen info. */
560 vdata = (void *) ((uintptr_t) tp + increment);
561 v2data = (void *) ((uintptr_t) t2p + v2increment);
563 switch (kind)
565 case CTF_K_ARRAY:
567 const ctf_array_v1_t *ap = (const ctf_array_v1_t *) vdata;
568 ctf_array_t *a2p = (ctf_array_t *) v2data;
570 a2p->cta_contents = ap->cta_contents;
571 a2p->cta_index = ap->cta_index;
572 a2p->cta_nelems = ap->cta_nelems;
573 break;
575 case CTF_K_STRUCT:
576 case CTF_K_UNION:
578 ctf_member_t tmp;
579 const ctf_member_v1_t *m1 = (const ctf_member_v1_t *) vdata;
580 const ctf_lmember_v1_t *lm1 = (const ctf_lmember_v1_t *) m1;
581 ctf_member_t *m2 = (ctf_member_t *) v2data;
582 ctf_lmember_t *lm2 = (ctf_lmember_t *) m2;
583 unsigned long i;
585 /* We walk all four pointers forward, but only reference the two
586 that are valid for the given size, to avoid quadruplicating all
587 the code. */
589 for (i = vlen; i != 0; i--, m1++, lm1++, m2++, lm2++)
591 size_t offset;
592 if (size < CTF_LSTRUCT_THRESH_V1)
594 offset = m1->ctm_offset;
595 tmp.ctm_name = m1->ctm_name;
596 tmp.ctm_type = m1->ctm_type;
598 else
600 offset = CTF_LMEM_OFFSET (lm1);
601 tmp.ctm_name = lm1->ctlm_name;
602 tmp.ctm_type = lm1->ctlm_type;
604 if (size < CTF_LSTRUCT_THRESH)
606 m2->ctm_name = tmp.ctm_name;
607 m2->ctm_type = tmp.ctm_type;
608 m2->ctm_offset = offset;
610 else
612 lm2->ctlm_name = tmp.ctm_name;
613 lm2->ctlm_type = tmp.ctm_type;
614 lm2->ctlm_offsethi = CTF_OFFSET_TO_LMEMHI (offset);
615 lm2->ctlm_offsetlo = CTF_OFFSET_TO_LMEMLO (offset);
618 break;
620 case CTF_K_FUNCTION:
622 unsigned long i;
623 unsigned short *a1 = (unsigned short *) vdata;
624 uint32_t *a2 = (uint32_t *) v2data;
626 for (i = vlen; i != 0; i--, a1++, a2++)
627 *a2 = *a1;
629 /* FALLTHRU */
630 default:
631 /* Catch out-of-sync get_vbytes_*(). */
632 assert (vbytes == v2bytes);
633 memcpy (v2data, vdata, vbytes);
637 /* Verify that the entire region was converted. If not, we are either
638 converting too much, or too little (leading to a buffer overrun either here
639 or at read time, in init_static_types().) */
641 assert ((size_t) t2p - (size_t) fp->ctf_buf == cth->cth_stroff);
643 ctf_set_version (fp, cth, CTF_VERSION_1_UPGRADED_3);
644 free (old_ctf_base);
646 return 0;
649 /* Upgrade from any earlier version. */
650 static int
651 upgrade_types (ctf_dict_t *fp, ctf_header_t *cth)
653 switch (cth->cth_version)
655 /* v1 requires a full pass and reformatting. */
656 case CTF_VERSION_1:
657 upgrade_types_v1 (fp, cth);
658 /* FALLTHRU */
659 /* Already-converted v1 is just like later versions except that its
660 parent/child boundary is unchanged (and much lower). */
662 case CTF_VERSION_1_UPGRADED_3:
663 fp->ctf_parmax = CTF_MAX_PTYPE_V1;
665 /* v2 is just the same as v3 except for new types and sections:
666 no upgrading required. */
667 case CTF_VERSION_2: ;
668 /* FALLTHRU */
670 return 0;
673 static int
674 init_static_types_internal (ctf_dict_t *fp, ctf_header_t *cth,
675 ctf_dynset_t *all_enums);
677 /* Populate statically-defined types (those loaded from a saved buffer).
679 Initialize the type ID translation table with the byte offset of each type,
680 and initialize the hash tables of each named type. Upgrade the type table to
681 the latest supported representation in the process, if needed, and if this
682 recension of libctf supports upgrading.
684 This is a wrapper to simplify memory allocation on error in the _internal
685 function that does all the actual work. */
687 static int
688 init_static_types (ctf_dict_t *fp, ctf_header_t *cth)
690 ctf_dynset_t *all_enums;
691 int err;
693 if ((all_enums = ctf_dynset_create (htab_hash_pointer, htab_eq_pointer,
694 NULL)) == NULL)
695 return ENOMEM;
697 err = init_static_types_internal (fp, cth, all_enums);
698 ctf_dynset_destroy (all_enums);
699 return err;
702 static int
703 init_static_types_internal (ctf_dict_t *fp, ctf_header_t *cth,
704 ctf_dynset_t *all_enums)
706 const ctf_type_t *tbuf;
707 const ctf_type_t *tend;
709 unsigned long pop[CTF_K_MAX + 1] = { 0 };
710 int pop_enumerators = 0;
711 const ctf_type_t *tp;
712 uint32_t id;
713 uint32_t *xp;
714 unsigned long typemax = 0;
715 ctf_next_t *i = NULL;
716 void *k;
718 /* We determine whether the dict is a child or a parent based on the value of
719 cth_parname. */
721 int child = cth->cth_parname != 0;
722 int nlstructs = 0, nlunions = 0;
723 int err;
725 if (_libctf_unlikely_ (fp->ctf_version == CTF_VERSION_1))
727 int err;
728 if ((err = upgrade_types (fp, cth)) != 0)
729 return err; /* Upgrade failed. */
732 tbuf = (ctf_type_t *) (fp->ctf_buf + cth->cth_typeoff);
733 tend = (ctf_type_t *) (fp->ctf_buf + cth->cth_stroff);
735 /* We make two passes through the entire type section, and one third pass
736 through part of it. In this first pass, we count the number of each type
737 and type-like identifier (like enumerators) and the total number of
738 types. */
740 for (tp = tbuf; tp < tend; typemax++)
742 unsigned short kind = LCTF_INFO_KIND (fp, tp->ctt_info);
743 unsigned long vlen = LCTF_INFO_VLEN (fp, tp->ctt_info);
744 ssize_t size, increment, vbytes;
746 (void) ctf_get_ctt_size (fp, tp, &size, &increment);
747 vbytes = LCTF_VBYTES (fp, kind, size, vlen);
749 if (vbytes < 0)
750 return ECTF_CORRUPT;
752 /* For forward declarations, ctt_type is the CTF_K_* kind for the tag,
753 so bump that population count too. */
754 if (kind == CTF_K_FORWARD)
755 pop[tp->ctt_type]++;
757 tp = (ctf_type_t *) ((uintptr_t) tp + increment + vbytes);
758 pop[kind]++;
760 if (kind == CTF_K_ENUM)
761 pop_enumerators += vlen;
764 if (child)
766 ctf_dprintf ("CTF dict %p is a child\n", (void *) fp);
767 fp->ctf_flags |= LCTF_CHILD;
769 else
770 ctf_dprintf ("CTF dict %p is a parent\n", (void *) fp);
772 /* Now that we've counted up the number of each type, we can allocate
773 the hash tables, type translation table, and pointer table. */
775 if ((fp->ctf_structs
776 = ctf_dynhash_create_sized (pop[CTF_K_STRUCT], ctf_hash_string,
777 ctf_hash_eq_string, NULL, NULL)) == NULL)
778 return ENOMEM;
780 if ((fp->ctf_unions
781 = ctf_dynhash_create_sized (pop[CTF_K_UNION], ctf_hash_string,
782 ctf_hash_eq_string, NULL, NULL)) == NULL)
783 return ENOMEM;
785 if ((fp->ctf_enums
786 = ctf_dynhash_create_sized (pop[CTF_K_ENUM], ctf_hash_string,
787 ctf_hash_eq_string, NULL, NULL)) == NULL)
788 return ENOMEM;
790 if ((fp->ctf_names
791 = ctf_dynhash_create_sized (pop[CTF_K_UNKNOWN] +
792 pop[CTF_K_INTEGER] +
793 pop[CTF_K_FLOAT] +
794 pop[CTF_K_FUNCTION] +
795 pop[CTF_K_TYPEDEF] +
796 pop[CTF_K_POINTER] +
797 pop[CTF_K_VOLATILE] +
798 pop[CTF_K_CONST] +
799 pop[CTF_K_RESTRICT] +
800 pop_enumerators,
801 ctf_hash_string,
802 ctf_hash_eq_string, NULL, NULL)) == NULL)
803 return ENOMEM;
805 if ((fp->ctf_conflicting_enums
806 = ctf_dynset_create (htab_hash_string, htab_eq_string, NULL)) == NULL)
807 return ENOMEM;
809 /* The ptrtab and txlate can be appropriately sized for precisely this set
810 of types: the txlate because it is only used to look up static types,
811 so dynamic types added later will never go through it, and the ptrtab
812 because later-added types will call grow_ptrtab() automatically, as
813 needed. */
815 fp->ctf_txlate = malloc (sizeof (uint32_t) * (typemax + 1));
816 fp->ctf_ptrtab_len = typemax + 1;
817 fp->ctf_ptrtab = malloc (sizeof (uint32_t) * fp->ctf_ptrtab_len);
818 fp->ctf_stypes = typemax;
820 if (fp->ctf_txlate == NULL || fp->ctf_ptrtab == NULL)
821 return ENOMEM; /* Memory allocation failed. */
823 xp = fp->ctf_txlate;
824 *xp++ = 0; /* Type id 0 is used as a sentinel value. */
826 memset (fp->ctf_txlate, 0, sizeof (uint32_t) * (typemax + 1));
827 memset (fp->ctf_ptrtab, 0, sizeof (uint32_t) * (typemax + 1));
829 /* In the second pass through the types, we fill in each entry of the
830 type and pointer tables and add names to the appropriate hashes.
832 (Not all names are added in this pass, only type names. See below.)
834 Bump ctf_typemax as we go, but keep it one higher than normal, so that
835 the type being read in is considered a valid type and it is at least
836 barely possible to run simple lookups on it. */
838 for (id = 1, fp->ctf_typemax = 1, tp = tbuf; tp < tend; xp++, id++, fp->ctf_typemax++)
840 unsigned short kind = LCTF_INFO_KIND (fp, tp->ctt_info);
841 unsigned short isroot = LCTF_INFO_ISROOT (fp, tp->ctt_info);
842 unsigned long vlen = LCTF_INFO_VLEN (fp, tp->ctt_info);
843 ssize_t size, increment, vbytes;
845 const char *name;
847 (void) ctf_get_ctt_size (fp, tp, &size, &increment);
848 name = ctf_strptr (fp, tp->ctt_name);
849 /* Cannot fail: shielded by call in loop above. */
850 vbytes = LCTF_VBYTES (fp, kind, size, vlen);
852 *xp = (uint32_t) ((uintptr_t) tp - (uintptr_t) fp->ctf_buf);
854 switch (kind)
856 case CTF_K_UNKNOWN:
857 case CTF_K_INTEGER:
858 case CTF_K_FLOAT:
860 ctf_id_t existing;
861 ctf_encoding_t existing_en;
862 ctf_encoding_t this_en;
864 if (!isroot)
865 break;
867 /* Names are reused by bitfields, which are differentiated by
868 their encodings. So check for the type already existing, and
869 iff the new type is a root-visible non-bitfield, replace the
870 old one. It's a little hard to figure out whether a type is
871 a non-bitfield without already knowing that type's native
872 width, but we can converge on it by replacing an existing
873 type as long as the new type is zero-offset and has a
874 bit-width wider than the existing one, since the native type
875 must necessarily have a bit-width at least as wide as any
876 bitfield based on it. */
878 if (((existing = ctf_dynhash_lookup_type (fp->ctf_names, name)) == 0)
879 || ctf_type_encoding (fp, existing, &existing_en) != 0
880 || (ctf_type_encoding (fp, LCTF_INDEX_TO_TYPE (fp, id, child), &this_en) == 0
881 && this_en.cte_offset == 0
882 && (existing_en.cte_offset != 0
883 || existing_en.cte_bits < this_en.cte_bits)))
885 err = ctf_dynhash_insert_type (fp, fp->ctf_names,
886 LCTF_INDEX_TO_TYPE (fp, id, child),
887 tp->ctt_name);
888 if (err != 0)
889 return err;
891 break;
894 /* These kinds have no name, so do not need interning into any
895 hashtables. */
896 case CTF_K_ARRAY:
897 case CTF_K_SLICE:
898 break;
900 case CTF_K_FUNCTION:
901 if (!isroot)
902 break;
904 err = ctf_dynhash_insert_type (fp, fp->ctf_names,
905 LCTF_INDEX_TO_TYPE (fp, id, child),
906 tp->ctt_name);
907 if (err != 0)
908 return err;
909 break;
911 case CTF_K_STRUCT:
912 if (size >= CTF_LSTRUCT_THRESH)
913 nlstructs++;
915 if (!isroot)
916 break;
918 err = ctf_dynhash_insert_type (fp, fp->ctf_structs,
919 LCTF_INDEX_TO_TYPE (fp, id, child),
920 tp->ctt_name);
922 if (err != 0)
923 return err;
925 break;
927 case CTF_K_UNION:
928 if (size >= CTF_LSTRUCT_THRESH)
929 nlunions++;
931 if (!isroot)
932 break;
934 err = ctf_dynhash_insert_type (fp, fp->ctf_unions,
935 LCTF_INDEX_TO_TYPE (fp, id, child),
936 tp->ctt_name);
938 if (err != 0)
939 return err;
940 break;
942 case CTF_K_ENUM:
944 if (!isroot)
945 break;
947 err = ctf_dynhash_insert_type (fp, fp->ctf_enums,
948 LCTF_INDEX_TO_TYPE (fp, id, child),
949 tp->ctt_name);
951 if (err != 0)
952 return err;
954 /* Remember all enums for later rescanning. */
956 err = ctf_dynset_insert (all_enums, (void *) (ptrdiff_t)
957 LCTF_INDEX_TO_TYPE (fp, id, child));
958 if (err != 0)
959 return err;
960 break;
963 case CTF_K_TYPEDEF:
964 if (!isroot)
965 break;
967 err = ctf_dynhash_insert_type (fp, fp->ctf_names,
968 LCTF_INDEX_TO_TYPE (fp, id, child),
969 tp->ctt_name);
970 if (err != 0)
971 return err;
972 break;
974 case CTF_K_FORWARD:
976 ctf_dynhash_t *h = ctf_name_table (fp, tp->ctt_type);
978 if (!isroot)
979 break;
981 /* Only insert forward tags into the given hash if the type or tag
982 name is not already present. */
983 if (ctf_dynhash_lookup_type (h, name) == 0)
985 err = ctf_dynhash_insert_type (fp, h, LCTF_INDEX_TO_TYPE (fp, id, child),
986 tp->ctt_name);
987 if (err != 0)
988 return err;
990 break;
993 case CTF_K_POINTER:
994 /* If the type referenced by the pointer is in this CTF dict, then
995 store the index of the pointer type in fp->ctf_ptrtab[ index of
996 referenced type ]. */
998 if (LCTF_TYPE_ISCHILD (fp, tp->ctt_type) == child
999 && LCTF_TYPE_TO_INDEX (fp, tp->ctt_type) <= fp->ctf_typemax)
1000 fp->ctf_ptrtab[LCTF_TYPE_TO_INDEX (fp, tp->ctt_type)] = id;
1001 /*FALLTHRU*/
1003 case CTF_K_VOLATILE:
1004 case CTF_K_CONST:
1005 case CTF_K_RESTRICT:
1006 if (!isroot)
1007 break;
1009 err = ctf_dynhash_insert_type (fp, fp->ctf_names,
1010 LCTF_INDEX_TO_TYPE (fp, id, child),
1011 tp->ctt_name);
1012 if (err != 0)
1013 return err;
1014 break;
1015 default:
1016 ctf_err_warn (fp, 0, ECTF_CORRUPT,
1017 _("init_static_types(): unhandled CTF kind: %x"), kind);
1018 return ECTF_CORRUPT;
1020 tp = (ctf_type_t *) ((uintptr_t) tp + increment + vbytes);
1022 fp->ctf_typemax--;
1023 assert (fp->ctf_typemax == typemax);
1025 ctf_dprintf ("%lu total types processed\n", fp->ctf_typemax);
1027 /* In the third pass, we traverse the enums we spotted earlier and add all
1028 the enumeration constants therein either to the types table (if no
1029 type exists with that name) or to ctf_conflciting_enums (otherwise).
1031 Doing this in a third pass is necessary to avoid the case where an
1032 enum appears with a constant FOO, then later a type named FOO appears,
1033 too late to spot the conflict by checking the enum's constants. */
1035 while ((err = ctf_dynset_next (all_enums, &i, &k)) == 0)
1037 ctf_id_t enum_id = (uintptr_t) k;
1038 ctf_next_t *i_constants = NULL;
1039 const char *cte_name;
1041 while ((cte_name = ctf_enum_next (fp, enum_id, &i_constants, NULL)) != NULL)
1043 /* Add all the enumeration constants as identifiers. They all appear
1044 as types that cite the original enum.
1046 Constants that appear in more than one enum, or which are already
1047 the names of types, appear in ctf_conflicting_enums as well. */
1049 if (ctf_dynhash_lookup_type (fp->ctf_names, cte_name) == 0)
1051 uint32_t name = ctf_str_add (fp, cte_name);
1053 if (name == 0)
1054 goto enum_err;
1056 err = ctf_dynhash_insert_type (fp, fp->ctf_names, enum_id, name);
1058 else
1060 err = ctf_dynset_insert (fp->ctf_conflicting_enums, (void *)
1061 cte_name);
1063 if (err != 0)
1064 goto enum_err;
1066 continue;
1068 enum_err:
1069 ctf_next_destroy (i_constants);
1070 ctf_next_destroy (i);
1071 return ctf_errno (fp);
1073 if (ctf_errno (fp) != ECTF_NEXT_END)
1075 ctf_next_destroy (i);
1076 return ctf_errno (fp);
1079 if (err != ECTF_NEXT_END)
1080 return err;
1082 ctf_dprintf ("%zu enum names hashed\n",
1083 ctf_dynhash_elements (fp->ctf_enums));
1084 ctf_dprintf ("%zu conflicting enumerators identified\n",
1085 ctf_dynset_elements (fp->ctf_conflicting_enums));
1086 ctf_dprintf ("%zu struct names hashed (%d long)\n",
1087 ctf_dynhash_elements (fp->ctf_structs), nlstructs);
1088 ctf_dprintf ("%zu union names hashed (%d long)\n",
1089 ctf_dynhash_elements (fp->ctf_unions), nlunions);
1090 ctf_dprintf ("%zu base type names and identifiers hashed\n",
1091 ctf_dynhash_elements (fp->ctf_names));
1093 return 0;
1096 /* Endianness-flipping routines.
1098 We flip everything, mindlessly, even 1-byte entities, so that future
1099 expansions do not require changes to this code. */
1101 /* Flip the endianness of the CTF header. */
1103 void
1104 ctf_flip_header (ctf_header_t *cth)
1106 swap_thing (cth->cth_preamble.ctp_magic);
1107 swap_thing (cth->cth_preamble.ctp_version);
1108 swap_thing (cth->cth_preamble.ctp_flags);
1109 swap_thing (cth->cth_parlabel);
1110 swap_thing (cth->cth_parname);
1111 swap_thing (cth->cth_cuname);
1112 swap_thing (cth->cth_objtoff);
1113 swap_thing (cth->cth_funcoff);
1114 swap_thing (cth->cth_objtidxoff);
1115 swap_thing (cth->cth_funcidxoff);
1116 swap_thing (cth->cth_varoff);
1117 swap_thing (cth->cth_typeoff);
1118 swap_thing (cth->cth_stroff);
1119 swap_thing (cth->cth_strlen);
1122 /* Flip the endianness of the label section, an array of ctf_lblent_t. */
1124 static void
1125 flip_lbls (void *start, size_t len)
1127 ctf_lblent_t *lbl = start;
1128 ssize_t i;
1130 for (i = len / sizeof (struct ctf_lblent); i > 0; lbl++, i--)
1132 swap_thing (lbl->ctl_label);
1133 swap_thing (lbl->ctl_type);
1137 /* Flip the endianness of the data-object or function sections or their indexes,
1138 all arrays of uint32_t. */
1140 static void
1141 flip_objts (void *start, size_t len)
1143 uint32_t *obj = start;
1144 ssize_t i;
1146 for (i = len / sizeof (uint32_t); i > 0; obj++, i--)
1147 swap_thing (*obj);
1150 /* Flip the endianness of the variable section, an array of ctf_varent_t. */
1152 static void
1153 flip_vars (void *start, size_t len)
1155 ctf_varent_t *var = start;
1156 ssize_t i;
1158 for (i = len / sizeof (struct ctf_varent); i > 0; var++, i--)
1160 swap_thing (var->ctv_name);
1161 swap_thing (var->ctv_type);
1165 /* Flip the endianness of the type section, a tagged array of ctf_type or
1166 ctf_stype followed by variable data. */
1168 static int
1169 flip_types (ctf_dict_t *fp, void *start, size_t len, int to_foreign)
1171 ctf_type_t *t = start;
1173 while ((uintptr_t) t < ((uintptr_t) start) + len)
1175 uint32_t kind;
1176 size_t size;
1177 uint32_t vlen;
1178 size_t vbytes;
1180 if (to_foreign)
1182 kind = CTF_V2_INFO_KIND (t->ctt_info);
1183 size = t->ctt_size;
1184 vlen = CTF_V2_INFO_VLEN (t->ctt_info);
1185 vbytes = get_vbytes_v2 (fp, kind, size, vlen);
1188 swap_thing (t->ctt_name);
1189 swap_thing (t->ctt_info);
1190 swap_thing (t->ctt_size);
1192 if (!to_foreign)
1194 kind = CTF_V2_INFO_KIND (t->ctt_info);
1195 size = t->ctt_size;
1196 vlen = CTF_V2_INFO_VLEN (t->ctt_info);
1197 vbytes = get_vbytes_v2 (fp, kind, size, vlen);
1200 if (_libctf_unlikely_ (size == CTF_LSIZE_SENT))
1202 if (to_foreign)
1203 size = CTF_TYPE_LSIZE (t);
1205 swap_thing (t->ctt_lsizehi);
1206 swap_thing (t->ctt_lsizelo);
1208 if (!to_foreign)
1209 size = CTF_TYPE_LSIZE (t);
1211 t = (ctf_type_t *) ((uintptr_t) t + sizeof (ctf_type_t));
1213 else
1214 t = (ctf_type_t *) ((uintptr_t) t + sizeof (ctf_stype_t));
1216 switch (kind)
1218 case CTF_K_FORWARD:
1219 case CTF_K_UNKNOWN:
1220 case CTF_K_POINTER:
1221 case CTF_K_TYPEDEF:
1222 case CTF_K_VOLATILE:
1223 case CTF_K_CONST:
1224 case CTF_K_RESTRICT:
1225 /* These types have no vlen data to swap. */
1226 assert (vbytes == 0);
1227 break;
1229 case CTF_K_INTEGER:
1230 case CTF_K_FLOAT:
1232 /* These types have a single uint32_t. */
1234 uint32_t *item = (uint32_t *) t;
1236 swap_thing (*item);
1237 break;
1240 case CTF_K_FUNCTION:
1242 /* This type has a bunch of uint32_ts. */
1244 uint32_t *item = (uint32_t *) t;
1245 ssize_t i;
1247 for (i = vlen; i > 0; item++, i--)
1248 swap_thing (*item);
1249 break;
1252 case CTF_K_ARRAY:
1254 /* This has a single ctf_array_t. */
1256 ctf_array_t *a = (ctf_array_t *) t;
1258 assert (vbytes == sizeof (ctf_array_t));
1259 swap_thing (a->cta_contents);
1260 swap_thing (a->cta_index);
1261 swap_thing (a->cta_nelems);
1263 break;
1266 case CTF_K_SLICE:
1268 /* This has a single ctf_slice_t. */
1270 ctf_slice_t *s = (ctf_slice_t *) t;
1272 assert (vbytes == sizeof (ctf_slice_t));
1273 swap_thing (s->cts_type);
1274 swap_thing (s->cts_offset);
1275 swap_thing (s->cts_bits);
1277 break;
1280 case CTF_K_STRUCT:
1281 case CTF_K_UNION:
1283 /* This has an array of ctf_member or ctf_lmember, depending on
1284 size. We could consider it to be a simple array of uint32_t,
1285 but for safety's sake in case these structures ever acquire
1286 non-uint32_t members, do it member by member. */
1288 if (_libctf_unlikely_ (size >= CTF_LSTRUCT_THRESH))
1290 ctf_lmember_t *lm = (ctf_lmember_t *) t;
1291 ssize_t i;
1292 for (i = vlen; i > 0; i--, lm++)
1294 swap_thing (lm->ctlm_name);
1295 swap_thing (lm->ctlm_offsethi);
1296 swap_thing (lm->ctlm_type);
1297 swap_thing (lm->ctlm_offsetlo);
1300 else
1302 ctf_member_t *m = (ctf_member_t *) t;
1303 ssize_t i;
1304 for (i = vlen; i > 0; i--, m++)
1306 swap_thing (m->ctm_name);
1307 swap_thing (m->ctm_offset);
1308 swap_thing (m->ctm_type);
1311 break;
1314 case CTF_K_ENUM:
1316 /* This has an array of ctf_enum_t. */
1318 ctf_enum_t *item = (ctf_enum_t *) t;
1319 ssize_t i;
1321 for (i = vlen; i > 0; item++, i--)
1323 swap_thing (item->cte_name);
1324 swap_thing (item->cte_value);
1326 break;
1328 default:
1329 ctf_err_warn (fp, 0, ECTF_CORRUPT,
1330 _("unhandled CTF kind in endianness conversion: %x"),
1331 kind);
1332 return ECTF_CORRUPT;
1335 t = (ctf_type_t *) ((uintptr_t) t + vbytes);
1338 return 0;
1341 /* Flip the endianness of BUF, given the offsets in the (native-endianness) CTH.
1342 If TO_FOREIGN is set, flip to foreign-endianness; if not, flip away.
1344 All of this stuff happens before the header is fully initialized, so the
1345 LCTF_*() macros cannot be used yet. Since we do not try to endian-convert v1
1346 data, this is no real loss. */
1349 ctf_flip (ctf_dict_t *fp, ctf_header_t *cth, unsigned char *buf,
1350 int to_foreign)
1352 ctf_dprintf("flipping endianness\n");
1354 flip_lbls (buf + cth->cth_lbloff, cth->cth_objtoff - cth->cth_lbloff);
1355 flip_objts (buf + cth->cth_objtoff, cth->cth_funcoff - cth->cth_objtoff);
1356 flip_objts (buf + cth->cth_funcoff, cth->cth_objtidxoff - cth->cth_funcoff);
1357 flip_objts (buf + cth->cth_objtidxoff, cth->cth_funcidxoff - cth->cth_objtidxoff);
1358 flip_objts (buf + cth->cth_funcidxoff, cth->cth_varoff - cth->cth_funcidxoff);
1359 flip_vars (buf + cth->cth_varoff, cth->cth_typeoff - cth->cth_varoff);
1360 return flip_types (fp, buf + cth->cth_typeoff,
1361 cth->cth_stroff - cth->cth_typeoff, to_foreign);
1364 /* Set up the ctl hashes in a ctf_dict_t. Called by both writable and
1365 non-writable dictionary initialization. */
1366 void ctf_set_ctl_hashes (ctf_dict_t *fp)
1368 /* Initialize the ctf_lookup_by_name top-level dictionary. We keep an
1369 array of type name prefixes and the corresponding ctf_hash to use. */
1370 fp->ctf_lookups[0].ctl_prefix = "struct";
1371 fp->ctf_lookups[0].ctl_len = strlen (fp->ctf_lookups[0].ctl_prefix);
1372 fp->ctf_lookups[0].ctl_hash = fp->ctf_structs;
1373 fp->ctf_lookups[1].ctl_prefix = "union";
1374 fp->ctf_lookups[1].ctl_len = strlen (fp->ctf_lookups[1].ctl_prefix);
1375 fp->ctf_lookups[1].ctl_hash = fp->ctf_unions;
1376 fp->ctf_lookups[2].ctl_prefix = "enum";
1377 fp->ctf_lookups[2].ctl_len = strlen (fp->ctf_lookups[2].ctl_prefix);
1378 fp->ctf_lookups[2].ctl_hash = fp->ctf_enums;
1379 fp->ctf_lookups[3].ctl_prefix = _CTF_NULLSTR;
1380 fp->ctf_lookups[3].ctl_len = strlen (fp->ctf_lookups[3].ctl_prefix);
1381 fp->ctf_lookups[3].ctl_hash = fp->ctf_names;
1382 fp->ctf_lookups[4].ctl_prefix = NULL;
1383 fp->ctf_lookups[4].ctl_len = 0;
1384 fp->ctf_lookups[4].ctl_hash = NULL;
1387 /* Open a CTF file, mocking up a suitable ctf_sect. */
1389 ctf_dict_t *ctf_simple_open (const char *ctfsect, size_t ctfsect_size,
1390 const char *symsect, size_t symsect_size,
1391 size_t symsect_entsize,
1392 const char *strsect, size_t strsect_size,
1393 int *errp)
1395 ctf_sect_t skeleton;
1397 ctf_sect_t ctf_sect, sym_sect, str_sect;
1398 ctf_sect_t *ctfsectp = NULL;
1399 ctf_sect_t *symsectp = NULL;
1400 ctf_sect_t *strsectp = NULL;
1402 skeleton.cts_name = _CTF_SECTION;
1403 skeleton.cts_entsize = 1;
1405 if (ctfsect)
1407 memcpy (&ctf_sect, &skeleton, sizeof (struct ctf_sect));
1408 ctf_sect.cts_data = ctfsect;
1409 ctf_sect.cts_size = ctfsect_size;
1410 ctfsectp = &ctf_sect;
1413 if (symsect)
1415 memcpy (&sym_sect, &skeleton, sizeof (struct ctf_sect));
1416 sym_sect.cts_data = symsect;
1417 sym_sect.cts_size = symsect_size;
1418 sym_sect.cts_entsize = symsect_entsize;
1419 symsectp = &sym_sect;
1422 if (strsect)
1424 memcpy (&str_sect, &skeleton, sizeof (struct ctf_sect));
1425 str_sect.cts_data = strsect;
1426 str_sect.cts_size = strsect_size;
1427 strsectp = &str_sect;
1430 return ctf_bufopen (ctfsectp, symsectp, strsectp, errp);
1433 /* Decode the specified CTF buffer and optional symbol table, and create a new
1434 CTF dict representing the symbolic debugging information. This code can
1435 be used directly by the debugger, or it can be used as the engine for
1436 ctf_fdopen() or ctf_open(), below. */
1438 ctf_dict_t *
1439 ctf_bufopen (const ctf_sect_t *ctfsect, const ctf_sect_t *symsect,
1440 const ctf_sect_t *strsect, int *errp)
1442 const ctf_preamble_t *pp;
1443 size_t hdrsz = sizeof (ctf_header_t);
1444 ctf_header_t *hp;
1445 ctf_dict_t *fp;
1446 int foreign_endian = 0;
1447 int err;
1449 libctf_init_debug();
1451 if ((ctfsect == NULL) || ((symsect != NULL) && (strsect == NULL)))
1452 return (ctf_set_open_errno (errp, EINVAL));
1454 if (symsect != NULL && symsect->cts_entsize != sizeof (Elf32_Sym) &&
1455 symsect->cts_entsize != sizeof (Elf64_Sym))
1456 return (ctf_set_open_errno (errp, ECTF_SYMTAB));
1458 if (symsect != NULL && symsect->cts_data == NULL)
1459 return (ctf_set_open_errno (errp, ECTF_SYMBAD));
1461 if (strsect != NULL && strsect->cts_data == NULL)
1462 return (ctf_set_open_errno (errp, ECTF_STRBAD));
1464 if (ctfsect->cts_data == NULL
1465 || ctfsect->cts_size < sizeof (ctf_preamble_t))
1466 return (ctf_set_open_errno (errp, ECTF_NOCTFBUF));
1468 pp = (const ctf_preamble_t *) ctfsect->cts_data;
1470 ctf_dprintf ("ctf_bufopen: magic=0x%x version=%u\n",
1471 pp->ctp_magic, pp->ctp_version);
1473 /* Validate each part of the CTF header.
1475 First, we validate the preamble (common to all versions). At that point,
1476 we know the endianness and specific header version, and can validate the
1477 version-specific parts including section offsets and alignments.
1479 We specifically do not support foreign-endian old versions. */
1481 if (_libctf_unlikely_ (pp->ctp_magic != CTF_MAGIC))
1483 if (pp->ctp_magic == bswap_16 (CTF_MAGIC))
1485 if (pp->ctp_version != CTF_VERSION_3)
1486 return (ctf_set_open_errno (errp, ECTF_CTFVERS));
1487 foreign_endian = 1;
1489 else
1490 return (ctf_set_open_errno (errp, ECTF_NOCTFBUF));
1493 if (_libctf_unlikely_ ((pp->ctp_version < CTF_VERSION_1)
1494 || (pp->ctp_version > CTF_VERSION_3)))
1495 return (ctf_set_open_errno (errp, ECTF_CTFVERS));
1497 if ((symsect != NULL) && (pp->ctp_version < CTF_VERSION_2))
1499 /* The symtab can contain function entries which contain embedded ctf
1500 info. We do not support dynamically upgrading such entries (none
1501 should exist in any case, since dwarf2ctf does not create them). */
1503 ctf_err_warn (NULL, 0, ECTF_NOTSUP, _("ctf_bufopen: CTF version %d "
1504 "symsect not supported"),
1505 pp->ctp_version);
1506 return (ctf_set_open_errno (errp, ECTF_NOTSUP));
1509 if (pp->ctp_version < CTF_VERSION_3)
1510 hdrsz = sizeof (ctf_header_v2_t);
1512 if (_libctf_unlikely_ (pp->ctp_flags > CTF_F_MAX))
1514 ctf_err_warn (NULL, 0, ECTF_FLAGS, _("ctf_bufopen: invalid header "
1515 "flags: %x"),
1516 (unsigned int) pp->ctp_flags);
1517 return (ctf_set_open_errno (errp, ECTF_FLAGS));
1520 if (ctfsect->cts_size < hdrsz)
1521 return (ctf_set_open_errno (errp, ECTF_NOCTFBUF));
1523 if ((fp = malloc (sizeof (ctf_dict_t))) == NULL)
1524 return (ctf_set_open_errno (errp, ENOMEM));
1526 memset (fp, 0, sizeof (ctf_dict_t));
1528 if ((fp->ctf_header = malloc (sizeof (struct ctf_header))) == NULL)
1530 free (fp);
1531 return (ctf_set_open_errno (errp, ENOMEM));
1533 hp = fp->ctf_header;
1534 memcpy (hp, ctfsect->cts_data, hdrsz);
1535 if (pp->ctp_version < CTF_VERSION_3)
1536 upgrade_header (hp);
1538 if (foreign_endian)
1539 ctf_flip_header (hp);
1540 fp->ctf_openflags = hp->cth_flags;
1541 fp->ctf_size = hp->cth_stroff + hp->cth_strlen;
1543 ctf_dprintf ("ctf_bufopen: uncompressed size=%lu\n",
1544 (unsigned long) fp->ctf_size);
1546 if (hp->cth_lbloff > fp->ctf_size || hp->cth_objtoff > fp->ctf_size
1547 || hp->cth_funcoff > fp->ctf_size || hp->cth_objtidxoff > fp->ctf_size
1548 || hp->cth_funcidxoff > fp->ctf_size || hp->cth_typeoff > fp->ctf_size
1549 || hp->cth_stroff > fp->ctf_size)
1551 ctf_err_warn (NULL, 0, ECTF_CORRUPT, _("header offset exceeds CTF size"));
1552 return (ctf_set_open_errno (errp, ECTF_CORRUPT));
1555 if (hp->cth_lbloff > hp->cth_objtoff
1556 || hp->cth_objtoff > hp->cth_funcoff
1557 || hp->cth_funcoff > hp->cth_typeoff
1558 || hp->cth_funcoff > hp->cth_objtidxoff
1559 || hp->cth_objtidxoff > hp->cth_funcidxoff
1560 || hp->cth_funcidxoff > hp->cth_varoff
1561 || hp->cth_varoff > hp->cth_typeoff || hp->cth_typeoff > hp->cth_stroff)
1563 ctf_err_warn (NULL, 0, ECTF_CORRUPT, _("overlapping CTF sections"));
1564 return (ctf_set_open_errno (errp, ECTF_CORRUPT));
1567 if ((hp->cth_lbloff & 3) || (hp->cth_objtoff & 2)
1568 || (hp->cth_funcoff & 2) || (hp->cth_objtidxoff & 2)
1569 || (hp->cth_funcidxoff & 2) || (hp->cth_varoff & 3)
1570 || (hp->cth_typeoff & 3))
1572 ctf_err_warn (NULL, 0, ECTF_CORRUPT,
1573 _("CTF sections not properly aligned"));
1574 return (ctf_set_open_errno (errp, ECTF_CORRUPT));
1577 /* This invariant will be lifted in v4, but for now it is true. */
1579 if ((hp->cth_funcidxoff - hp->cth_objtidxoff != 0) &&
1580 (hp->cth_funcidxoff - hp->cth_objtidxoff
1581 != hp->cth_funcoff - hp->cth_objtoff))
1583 ctf_err_warn (NULL, 0, ECTF_CORRUPT,
1584 _("Object index section is neither empty nor the "
1585 "same length as the object section: %u versus %u "
1586 "bytes"), hp->cth_funcoff - hp->cth_objtoff,
1587 hp->cth_funcidxoff - hp->cth_objtidxoff);
1588 return (ctf_set_open_errno (errp, ECTF_CORRUPT));
1591 if ((hp->cth_varoff - hp->cth_funcidxoff != 0) &&
1592 (hp->cth_varoff - hp->cth_funcidxoff
1593 != hp->cth_objtidxoff - hp->cth_funcoff) &&
1594 (hp->cth_flags & CTF_F_NEWFUNCINFO))
1596 ctf_err_warn (NULL, 0, ECTF_CORRUPT,
1597 _("Function index section is neither empty nor the "
1598 "same length as the function section: %u versus %u "
1599 "bytes"), hp->cth_objtidxoff - hp->cth_funcoff,
1600 hp->cth_varoff - hp->cth_funcidxoff);
1601 return (ctf_set_open_errno (errp, ECTF_CORRUPT));
1604 /* Once everything is determined to be valid, attempt to decompress the CTF
1605 data buffer if it is compressed, or copy it into new storage if it is not
1606 compressed but needs endian-flipping. Otherwise we just put the data
1607 section's buffer pointer into ctf_buf, below. */
1609 /* Note: if this is a v1 buffer, it will be reallocated and expanded by
1610 init_static_types(). */
1612 if (hp->cth_flags & CTF_F_COMPRESS)
1614 size_t srclen;
1615 uLongf dstlen;
1616 const void *src;
1617 int rc = Z_OK;
1619 /* We are allocating this ourselves, so we can drop the ctf header
1620 copy in favour of ctf->ctf_header. */
1622 if ((fp->ctf_base = malloc (fp->ctf_size)) == NULL)
1624 err = ECTF_ZALLOC;
1625 goto bad;
1627 fp->ctf_dynbase = fp->ctf_base;
1628 hp->cth_flags &= ~CTF_F_COMPRESS;
1630 src = (unsigned char *) ctfsect->cts_data + hdrsz;
1631 srclen = ctfsect->cts_size - hdrsz;
1632 dstlen = fp->ctf_size;
1633 fp->ctf_buf = fp->ctf_base;
1635 if ((rc = uncompress (fp->ctf_base, &dstlen, src, srclen)) != Z_OK)
1637 ctf_err_warn (NULL, 0, ECTF_DECOMPRESS, _("zlib inflate err: %s"),
1638 zError (rc));
1639 err = ECTF_DECOMPRESS;
1640 goto bad;
1643 if ((size_t) dstlen != fp->ctf_size)
1645 ctf_err_warn (NULL, 0, ECTF_CORRUPT,
1646 _("zlib inflate short: got %lu of %lu bytes"),
1647 (unsigned long) dstlen, (unsigned long) fp->ctf_size);
1648 err = ECTF_CORRUPT;
1649 goto bad;
1652 else
1654 if (_libctf_unlikely_ (ctfsect->cts_size < hdrsz + fp->ctf_size))
1656 ctf_err_warn (NULL, 0, ECTF_CORRUPT,
1657 _("%lu byte long CTF dictionary overruns %lu byte long CTF section"),
1658 (unsigned long) ctfsect->cts_size,
1659 (unsigned long) (hdrsz + fp->ctf_size));
1660 err = ECTF_CORRUPT;
1661 goto bad;
1664 if (foreign_endian)
1666 if ((fp->ctf_base = malloc (fp->ctf_size)) == NULL)
1668 err = ECTF_ZALLOC;
1669 goto bad;
1671 fp->ctf_dynbase = fp->ctf_base;
1672 memcpy (fp->ctf_base, ((unsigned char *) ctfsect->cts_data) + hdrsz,
1673 fp->ctf_size);
1674 fp->ctf_buf = fp->ctf_base;
1676 else
1678 /* We are just using the section passed in -- but its header may
1679 be an old version. Point ctf_buf past the old header, and
1680 never touch it again. */
1681 fp->ctf_base = (unsigned char *) ctfsect->cts_data;
1682 fp->ctf_dynbase = NULL;
1683 fp->ctf_buf = fp->ctf_base + hdrsz;
1687 /* Once we have uncompressed and validated the CTF data buffer, we can
1688 proceed with initializing the ctf_dict_t we allocated above.
1690 Nothing that depends on buf or base should be set directly in this function
1691 before the init_static_types() call, because it may be reallocated during
1692 transparent upgrade if this recension of libctf is so configured: see
1693 ctf_set_base(). */
1695 ctf_set_version (fp, hp, hp->cth_version);
1697 /* Temporary assignment, just enough to be able to initialize
1698 the atoms table. */
1700 fp->ctf_str[CTF_STRTAB_0].cts_strs = (const char *) fp->ctf_buf
1701 + hp->cth_stroff;
1702 fp->ctf_str[CTF_STRTAB_0].cts_len = hp->cth_strlen;
1703 if (ctf_str_create_atoms (fp) < 0)
1705 err = ENOMEM;
1706 goto bad;
1709 fp->ctf_parmax = CTF_MAX_PTYPE;
1710 memcpy (&fp->ctf_data, ctfsect, sizeof (ctf_sect_t));
1712 if (symsect != NULL)
1714 memcpy (&fp->ctf_ext_symtab, symsect, sizeof (ctf_sect_t));
1715 memcpy (&fp->ctf_ext_strtab, strsect, sizeof (ctf_sect_t));
1718 if (fp->ctf_data.cts_name != NULL)
1719 if ((fp->ctf_data.cts_name = strdup (fp->ctf_data.cts_name)) == NULL)
1721 err = ENOMEM;
1722 goto bad;
1724 if (fp->ctf_ext_symtab.cts_name != NULL)
1725 if ((fp->ctf_ext_symtab.cts_name = strdup (fp->ctf_ext_symtab.cts_name)) == NULL)
1727 err = ENOMEM;
1728 goto bad;
1730 if (fp->ctf_ext_strtab.cts_name != NULL)
1731 if ((fp->ctf_ext_strtab.cts_name = strdup (fp->ctf_ext_strtab.cts_name)) == NULL)
1733 err = ENOMEM;
1734 goto bad;
1737 if (fp->ctf_data.cts_name == NULL)
1738 fp->ctf_data.cts_name = _CTF_NULLSTR;
1739 if (fp->ctf_ext_symtab.cts_name == NULL)
1740 fp->ctf_ext_symtab.cts_name = _CTF_NULLSTR;
1741 if (fp->ctf_ext_strtab.cts_name == NULL)
1742 fp->ctf_ext_strtab.cts_name = _CTF_NULLSTR;
1744 if (strsect != NULL)
1746 fp->ctf_str[CTF_STRTAB_1].cts_strs = strsect->cts_data;
1747 fp->ctf_str[CTF_STRTAB_1].cts_len = strsect->cts_size;
1750 /* Dynamic state, for dynamic addition to this dict after loading. */
1752 fp->ctf_dthash = ctf_dynhash_create (ctf_hash_integer, ctf_hash_eq_integer,
1753 NULL, NULL);
1754 fp->ctf_dvhash = ctf_dynhash_create (ctf_hash_string, ctf_hash_eq_string,
1755 NULL, NULL);
1756 fp->ctf_snapshots = 1;
1758 fp->ctf_objthash = ctf_dynhash_create (ctf_hash_string, ctf_hash_eq_string,
1759 free, NULL);
1760 fp->ctf_funchash = ctf_dynhash_create (ctf_hash_string, ctf_hash_eq_string,
1761 free, NULL);
1763 if (!fp->ctf_dthash || !fp->ctf_dvhash || !fp->ctf_snapshots ||
1764 !fp->ctf_objthash || !fp->ctf_funchash)
1766 err = ENOMEM;
1767 goto bad;
1770 if (foreign_endian &&
1771 (err = ctf_flip (fp, hp, fp->ctf_buf, 0)) != 0)
1773 /* We can be certain that ctf_flip() will have endian-flipped everything
1774 other than the types table when we return. In particular the header
1775 is fine, so set it, to allow freeing to use the usual code path. */
1777 ctf_set_base (fp, hp, fp->ctf_base);
1778 goto bad;
1781 ctf_set_base (fp, hp, fp->ctf_base);
1783 if ((err = init_static_types (fp, hp)) != 0)
1784 goto bad;
1786 /* Allocate and initialize the symtab translation table, pointed to by
1787 ctf_sxlate, and the corresponding index sections. This table may be too
1788 large for the actual size of the object and function info sections: if so,
1789 ctf_nsyms will be adjusted and the excess will never be used. It's
1790 possible to do indexed symbol lookups even without a symbol table, so check
1791 even in that case. Initially, we assume the symtab is native-endian: if it
1792 isn't, the caller will inform us later by calling ctf_symsect_endianness. */
1793 #ifdef WORDS_BIGENDIAN
1794 fp->ctf_symsect_little_endian = 0;
1795 #else
1796 fp->ctf_symsect_little_endian = 1;
1797 #endif
1799 if (symsect != NULL)
1801 fp->ctf_nsyms = symsect->cts_size / symsect->cts_entsize;
1802 fp->ctf_sxlate = malloc (fp->ctf_nsyms * sizeof (uint32_t));
1804 if (fp->ctf_sxlate == NULL)
1806 err = ENOMEM;
1807 goto bad;
1811 if ((err = init_symtab (fp, hp, symsect)) != 0)
1812 goto bad;
1814 ctf_set_ctl_hashes (fp);
1816 if (symsect != NULL)
1818 if (symsect->cts_entsize == sizeof (Elf64_Sym))
1819 (void) ctf_setmodel (fp, CTF_MODEL_LP64);
1820 else
1821 (void) ctf_setmodel (fp, CTF_MODEL_ILP32);
1823 else
1824 (void) ctf_setmodel (fp, CTF_MODEL_NATIVE);
1826 fp->ctf_refcnt = 1;
1827 return fp;
1829 bad:
1830 ctf_set_open_errno (errp, err);
1831 ctf_err_warn_to_open (fp);
1832 /* Without this, the refcnt is zero on entry and ctf_dict_close() won't
1833 actually do anything on the grounds that this is a recursive call via
1834 another dict being closed. */
1835 fp->ctf_refcnt = 1;
1836 ctf_dict_close (fp);
1837 return NULL;
1840 /* Bump the refcount on the specified CTF dict, to allow export of ctf_dict_t's
1841 from iterators that open and close the ctf_dict_t around the loop. (This
1842 does not extend their lifetime beyond that of the ctf_archive_t in which they
1843 are contained.) */
1845 void
1846 ctf_ref (ctf_dict_t *fp)
1848 fp->ctf_refcnt++;
1851 /* Close the specified CTF dict and free associated data structures. Note that
1852 ctf_dict_close() is a reference counted operation: if the specified file is
1853 the parent of other active dict, its reference count will be greater than one
1854 and it will be freed later when no active children exist. */
1856 void
1857 ctf_dict_close (ctf_dict_t *fp)
1859 ctf_dtdef_t *dtd, *ntd;
1860 ctf_dvdef_t *dvd, *nvd;
1861 ctf_in_flight_dynsym_t *did, *nid;
1862 ctf_err_warning_t *err, *nerr;
1864 if (fp == NULL)
1865 return; /* Allow ctf_dict_close(NULL) to simplify caller code. */
1867 ctf_dprintf ("ctf_dict_close(%p) refcnt=%u\n", (void *) fp, fp->ctf_refcnt);
1869 if (fp->ctf_refcnt > 1)
1871 fp->ctf_refcnt--;
1872 return;
1875 /* It is possible to recurse back in here, notably if dicts in the
1876 ctf_link_inputs or ctf_link_outputs cite this dict as a parent without
1877 using ctf_import_unref. Do nothing in that case. */
1878 if (fp->ctf_refcnt == 0)
1879 return;
1881 fp->ctf_refcnt--;
1882 free (fp->ctf_dyncuname);
1883 free (fp->ctf_dynparname);
1884 if (fp->ctf_parent && !fp->ctf_parent_unreffed)
1885 ctf_dict_close (fp->ctf_parent);
1887 for (dtd = ctf_list_next (&fp->ctf_dtdefs); dtd != NULL; dtd = ntd)
1889 ntd = ctf_list_next (dtd);
1890 ctf_dtd_delete (fp, dtd);
1892 ctf_dynhash_destroy (fp->ctf_dthash);
1894 ctf_dynset_destroy (fp->ctf_conflicting_enums);
1895 ctf_dynhash_destroy (fp->ctf_structs);
1896 ctf_dynhash_destroy (fp->ctf_unions);
1897 ctf_dynhash_destroy (fp->ctf_enums);
1898 ctf_dynhash_destroy (fp->ctf_names);
1900 for (dvd = ctf_list_next (&fp->ctf_dvdefs); dvd != NULL; dvd = nvd)
1902 nvd = ctf_list_next (dvd);
1903 ctf_dvd_delete (fp, dvd);
1905 ctf_dynhash_destroy (fp->ctf_dvhash);
1907 ctf_dynhash_destroy (fp->ctf_symhash_func);
1908 ctf_dynhash_destroy (fp->ctf_symhash_objt);
1909 free (fp->ctf_funcidx_sxlate);
1910 free (fp->ctf_objtidx_sxlate);
1911 ctf_dynhash_destroy (fp->ctf_objthash);
1912 ctf_dynhash_destroy (fp->ctf_funchash);
1913 free (fp->ctf_dynsymidx);
1914 ctf_dynhash_destroy (fp->ctf_dynsyms);
1915 for (did = ctf_list_next (&fp->ctf_in_flight_dynsyms); did != NULL; did = nid)
1917 nid = ctf_list_next (did);
1918 ctf_list_delete (&fp->ctf_in_flight_dynsyms, did);
1919 free (did);
1922 ctf_str_free_atoms (fp);
1923 free (fp->ctf_tmp_typeslice);
1925 if (fp->ctf_data.cts_name != _CTF_NULLSTR)
1926 free ((char *) fp->ctf_data.cts_name);
1928 if (fp->ctf_ext_symtab.cts_name != _CTF_NULLSTR)
1929 free ((char *) fp->ctf_ext_symtab.cts_name);
1931 if (fp->ctf_ext_strtab.cts_name != _CTF_NULLSTR)
1932 free ((char *) fp->ctf_ext_strtab.cts_name);
1933 else if (fp->ctf_data_mmapped)
1934 ctf_munmap (fp->ctf_data_mmapped, fp->ctf_data_mmapped_len);
1936 free (fp->ctf_dynbase);
1938 ctf_dynhash_destroy (fp->ctf_syn_ext_strtab);
1939 ctf_dynhash_destroy (fp->ctf_link_inputs);
1940 ctf_dynhash_destroy (fp->ctf_link_outputs);
1941 ctf_dynhash_destroy (fp->ctf_link_type_mapping);
1942 ctf_dynhash_destroy (fp->ctf_link_in_cu_mapping);
1943 ctf_dynhash_destroy (fp->ctf_link_out_cu_mapping);
1944 ctf_dynhash_destroy (fp->ctf_add_processing);
1945 ctf_dedup_fini (fp, NULL, 0);
1946 ctf_dynset_destroy (fp->ctf_dedup_atoms_alloc);
1948 for (err = ctf_list_next (&fp->ctf_errs_warnings); err != NULL; err = nerr)
1950 nerr = ctf_list_next (err);
1951 ctf_list_delete (&fp->ctf_errs_warnings, err);
1952 free (err->cew_text);
1953 free (err);
1956 free (fp->ctf_sxlate);
1957 free (fp->ctf_txlate);
1958 free (fp->ctf_ptrtab);
1959 free (fp->ctf_pptrtab);
1961 free (fp->ctf_header);
1962 free (fp);
1965 /* Backward compatibility. */
1966 void
1967 ctf_file_close (ctf_file_t *fp)
1969 ctf_dict_close (fp);
1972 /* The converse of ctf_open(). ctf_open() disguises whatever it opens as an
1973 archive, so closing one is just like closing an archive. */
1974 void
1975 ctf_close (ctf_archive_t *arc)
1977 ctf_arc_close (arc);
1980 /* Get the CTF archive from which this ctf_dict_t is derived. */
1981 ctf_archive_t *
1982 ctf_get_arc (const ctf_dict_t *fp)
1984 return fp->ctf_archive;
1987 /* Return the ctfsect out of the core ctf_impl. Useful for freeing the
1988 ctfsect's data * after ctf_dict_close(), which is why we return the actual
1989 structure, not a pointer to it, since that is likely to become a pointer to
1990 freed data before the return value is used under the expected use case of
1991 ctf_getsect()/ ctf_dict_close()/free(). */
1992 ctf_sect_t
1993 ctf_getdatasect (const ctf_dict_t *fp)
1995 return fp->ctf_data;
1998 ctf_sect_t
1999 ctf_getsymsect (const ctf_dict_t *fp)
2001 return fp->ctf_ext_symtab;
2004 ctf_sect_t
2005 ctf_getstrsect (const ctf_dict_t *fp)
2007 return fp->ctf_ext_strtab;
2010 /* Set the endianness of the symbol table attached to FP. */
2011 void
2012 ctf_symsect_endianness (ctf_dict_t *fp, int little_endian)
2014 int old_endianness = fp->ctf_symsect_little_endian;
2016 fp->ctf_symsect_little_endian = !!little_endian;
2018 /* If we already have a symtab translation table, we need to repopulate it if
2019 our idea of the endianness has changed. */
2021 if (old_endianness != fp->ctf_symsect_little_endian
2022 && fp->ctf_sxlate != NULL && fp->ctf_ext_symtab.cts_data != NULL)
2023 assert (init_symtab (fp, fp->ctf_header, &fp->ctf_ext_symtab) == 0);
2026 /* Return the CTF handle for the parent CTF dict, if one exists. Otherwise
2027 return NULL to indicate this dict has no imported parent. */
2028 ctf_dict_t *
2029 ctf_parent_dict (ctf_dict_t *fp)
2031 return fp->ctf_parent;
2034 /* Backward compatibility. */
2035 ctf_dict_t *
2036 ctf_parent_file (ctf_dict_t *fp)
2038 return ctf_parent_dict (fp);
2041 /* Return the name of the parent CTF dict, if one exists, or NULL otherwise. */
2042 const char *
2043 ctf_parent_name (ctf_dict_t *fp)
2045 return fp->ctf_parname;
2048 /* Set the parent name. It is an error to call this routine without calling
2049 ctf_import() at some point. */
2051 ctf_parent_name_set (ctf_dict_t *fp, const char *name)
2053 if (fp->ctf_dynparname != NULL)
2054 free (fp->ctf_dynparname);
2056 if ((fp->ctf_dynparname = strdup (name)) == NULL)
2057 return (ctf_set_errno (fp, ENOMEM));
2058 fp->ctf_parname = fp->ctf_dynparname;
2059 return 0;
2062 /* Return the name of the compilation unit this CTF file applies to. Usually
2063 non-NULL only for non-parent dicts. */
2064 const char *
2065 ctf_cuname (ctf_dict_t *fp)
2067 return fp->ctf_cuname;
2070 /* Set the compilation unit name. */
2072 ctf_cuname_set (ctf_dict_t *fp, const char *name)
2074 if (fp->ctf_dyncuname != NULL)
2075 free (fp->ctf_dyncuname);
2077 if ((fp->ctf_dyncuname = strdup (name)) == NULL)
2078 return (ctf_set_errno (fp, ENOMEM));
2079 fp->ctf_cuname = fp->ctf_dyncuname;
2080 return 0;
2083 /* Import the types from the specified parent dict by storing a pointer to it in
2084 ctf_parent and incrementing its reference count. Only one parent is allowed:
2085 if a parent already exists, it is replaced by the new parent. The pptrtab
2086 is wiped, and will be refreshed by the next ctf_lookup_by_name call. */
2088 ctf_import (ctf_dict_t *fp, ctf_dict_t *pfp)
2090 if (fp == NULL || fp == pfp || (pfp != NULL && pfp->ctf_refcnt == 0))
2091 return (ctf_set_errno (fp, EINVAL));
2093 if (pfp != NULL && pfp->ctf_dmodel != fp->ctf_dmodel)
2094 return (ctf_set_errno (fp, ECTF_DMODEL));
2096 if (fp->ctf_parent && !fp->ctf_parent_unreffed)
2097 ctf_dict_close (fp->ctf_parent);
2098 fp->ctf_parent = NULL;
2100 free (fp->ctf_pptrtab);
2101 fp->ctf_pptrtab = NULL;
2102 fp->ctf_pptrtab_len = 0;
2103 fp->ctf_pptrtab_typemax = 0;
2105 if (pfp != NULL)
2107 int err;
2109 if (fp->ctf_parname == NULL)
2110 if ((err = ctf_parent_name_set (fp, "PARENT")) < 0)
2111 return err;
2113 fp->ctf_flags |= LCTF_CHILD;
2114 pfp->ctf_refcnt++;
2115 fp->ctf_parent_unreffed = 0;
2118 fp->ctf_parent = pfp;
2119 return 0;
2122 /* Like ctf_import, but does not increment the refcount on the imported parent
2123 or close it at any point: as a result it can go away at any time and the
2124 caller must do all freeing itself. Used internally to avoid refcount
2125 loops. */
2127 ctf_import_unref (ctf_dict_t *fp, ctf_dict_t *pfp)
2129 if (fp == NULL || fp == pfp || (pfp != NULL && pfp->ctf_refcnt == 0))
2130 return (ctf_set_errno (fp, EINVAL));
2132 if (pfp != NULL && pfp->ctf_dmodel != fp->ctf_dmodel)
2133 return (ctf_set_errno (fp, ECTF_DMODEL));
2135 if (fp->ctf_parent && !fp->ctf_parent_unreffed)
2136 ctf_dict_close (fp->ctf_parent);
2137 fp->ctf_parent = NULL;
2139 free (fp->ctf_pptrtab);
2140 fp->ctf_pptrtab = NULL;
2141 fp->ctf_pptrtab_len = 0;
2142 fp->ctf_pptrtab_typemax = 0;
2143 if (pfp != NULL)
2145 int err;
2147 if (fp->ctf_parname == NULL)
2148 if ((err = ctf_parent_name_set (fp, "PARENT")) < 0)
2149 return err;
2151 fp->ctf_flags |= LCTF_CHILD;
2152 fp->ctf_parent_unreffed = 1;
2155 fp->ctf_parent = pfp;
2156 return 0;
2159 /* Set the data model constant for the CTF dict. */
2161 ctf_setmodel (ctf_dict_t *fp, int model)
2163 const ctf_dmodel_t *dp;
2165 for (dp = _libctf_models; dp->ctd_name != NULL; dp++)
2167 if (dp->ctd_code == model)
2169 fp->ctf_dmodel = dp;
2170 return 0;
2174 return (ctf_set_errno (fp, EINVAL));
2177 /* Return the data model constant for the CTF dict. */
2179 ctf_getmodel (ctf_dict_t *fp)
2181 return fp->ctf_dmodel->ctd_code;
2184 /* The caller can hang an arbitrary pointer off each ctf_dict_t using this
2185 function. */
2186 void
2187 ctf_setspecific (ctf_dict_t *fp, void *data)
2189 fp->ctf_specific = data;
2192 /* Retrieve the arbitrary pointer again. */
2193 void *
2194 ctf_getspecific (ctf_dict_t *fp)
2196 return fp->ctf_specific;