Branch data Line data Source code
1 : : /* Internal definitions for libdw.
2 : : Copyright (C) 2002-2011, 2013-2018 Red Hat, Inc.
3 : : This file is part of elfutils.
4 : :
5 : : This file is free software; you can redistribute it and/or modify
6 : : it under the terms of either
7 : :
8 : : * the GNU Lesser General Public License as published by the Free
9 : : Software Foundation; either version 3 of the License, or (at
10 : : your option) any later version
11 : :
12 : : or
13 : :
14 : : * the GNU General Public License as published by the Free
15 : : Software Foundation; either version 2 of the License, or (at
16 : : your option) any later version
17 : :
18 : : or both in parallel, as here.
19 : :
20 : : elfutils is distributed in the hope that it will be useful, but
21 : : WITHOUT ANY WARRANTY; without even the implied warranty of
22 : : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 : : General Public License for more details.
24 : :
25 : : You should have received copies of the GNU General Public License and
26 : : the GNU Lesser General Public License along with this program. If
27 : : not, see <http://www.gnu.org/licenses/>. */
28 : :
29 : : #ifndef _LIBDWP_H
30 : : #define _LIBDWP_H 1
31 : :
32 : : #include <stdbool.h>
33 : : #include <pthread.h>
34 : :
35 : : #include <libdw.h>
36 : : #include <dwarf.h>
37 : :
38 : :
39 : : /* Known location expressions already decoded. */
40 : : struct loc_s
41 : : {
42 : : void *addr;
43 : : Dwarf_Op *loc;
44 : : size_t nloc;
45 : : };
46 : :
47 : : /* Known DW_OP_implicit_value blocks already decoded.
48 : : This overlaps struct loc_s exactly, but only the
49 : : first member really has to match. */
50 : : struct loc_block_s
51 : : {
52 : : void *addr;
53 : : unsigned char *data;
54 : : size_t length;
55 : : };
56 : :
57 : : /* Already decoded .debug_line units. */
58 : : struct files_lines_s
59 : : {
60 : : Dwarf_Off debug_line_offset;
61 : : Dwarf_Files *files;
62 : : Dwarf_Lines *lines;
63 : : };
64 : :
65 : : /* Valid indices for the section data. */
66 : : enum
67 : : {
68 : : IDX_debug_info = 0,
69 : : IDX_debug_types,
70 : : IDX_debug_abbrev,
71 : : IDX_debug_aranges,
72 : : IDX_debug_addr,
73 : : IDX_debug_line,
74 : : IDX_debug_line_str,
75 : : IDX_debug_frame,
76 : : IDX_debug_loc,
77 : : IDX_debug_loclists,
78 : : IDX_debug_pubnames,
79 : : IDX_debug_str,
80 : : IDX_debug_str_offsets,
81 : : IDX_debug_macinfo,
82 : : IDX_debug_macro,
83 : : IDX_debug_ranges,
84 : : IDX_debug_rnglists,
85 : : IDX_debug_cu_index,
86 : : IDX_debug_tu_index,
87 : : IDX_gnu_debugaltlink,
88 : : IDX_last
89 : : };
90 : :
91 : : /* Valid indices for the string section's information. */
92 : : enum string_section_index
93 : : {
94 : : STR_SCN_IDX_debug_line_str,
95 : : STR_SCN_IDX_debug_str,
96 : : STR_SCN_IDX_last
97 : : };
98 : :
99 : : /* Error values. */
100 : : enum
101 : : {
102 : : DWARF_E_NOERROR = 0,
103 : : DWARF_E_UNKNOWN_ERROR,
104 : : DWARF_E_INVALID_ACCESS,
105 : : DWARF_E_NO_REGFILE,
106 : : DWARF_E_IO_ERROR,
107 : : DWARF_E_INVALID_ELF,
108 : : DWARF_E_NO_DWARF,
109 : : DWARF_E_COMPRESSED_ERROR,
110 : : DWARF_E_NOELF,
111 : : DWARF_E_GETEHDR_ERROR,
112 : : DWARF_E_NOMEM,
113 : : DWARF_E_UNIMPL,
114 : : DWARF_E_INVALID_CMD,
115 : : DWARF_E_INVALID_VERSION,
116 : : DWARF_E_INVALID_FILE,
117 : : DWARF_E_NO_ENTRY,
118 : : DWARF_E_INVALID_DWARF,
119 : : DWARF_E_NO_STRING,
120 : : DWARF_E_NO_DEBUG_STR,
121 : : DWARF_E_NO_DEBUG_LINE_STR,
122 : : DWARF_E_NO_STR_OFFSETS,
123 : : DWARF_E_NO_ADDR,
124 : : DWARF_E_NO_CONSTANT,
125 : : DWARF_E_NO_REFERENCE,
126 : : DWARF_E_INVALID_REFERENCE,
127 : : DWARF_E_NO_DEBUG_LINE,
128 : : DWARF_E_INVALID_DEBUG_LINE,
129 : : DWARF_E_TOO_BIG,
130 : : DWARF_E_VERSION,
131 : : DWARF_E_INVALID_DIR_IDX,
132 : : DWARF_E_ADDR_OUTOFRANGE,
133 : : DWARF_E_NO_DEBUG_LOC,
134 : : DWARF_E_NO_DEBUG_LOCLISTS,
135 : : DWARF_E_NO_LOC_VALUE,
136 : : DWARF_E_NO_BLOCK,
137 : : DWARF_E_INVALID_LINE_IDX,
138 : : DWARF_E_INVALID_ARANGE_IDX,
139 : : DWARF_E_NO_MATCH,
140 : : DWARF_E_NO_FLAG,
141 : : DWARF_E_INVALID_OFFSET,
142 : : DWARF_E_NO_DEBUG_RANGES,
143 : : DWARF_E_NO_DEBUG_RNGLISTS,
144 : : DWARF_E_INVALID_CFI,
145 : : DWARF_E_NO_ALT_DEBUGLINK,
146 : : DWARF_E_INVALID_OPCODE,
147 : : DWARF_E_NOT_CUDIE,
148 : : DWARF_E_UNKNOWN_LANGUAGE,
149 : : DWARF_E_NO_DEBUG_ADDR,
150 : : };
151 : :
152 : :
153 : : #include "dwarf_sig8_hash.h"
154 : :
155 : : /* The type of Dwarf object, sorted by preference
156 : : (if there is a higher order type, we pick that one over the others). */
157 : : enum dwarf_type
158 : : {
159 : : TYPE_UNKNOWN = 0,
160 : : TYPE_GNU_LTO = 16,
161 : : TYPE_DWO = 32,
162 : : TYPE_PLAIN = 64,
163 : : };
164 : :
165 : : /* This is the structure representing the debugging state. */
166 : : struct Dwarf
167 : : {
168 : : /* The underlying ELF file. */
169 : : Elf *elf;
170 : :
171 : : /* The (absolute) path to the ELF dir, if known. To help locating
172 : : alt and dwo files. */
173 : : char *debugdir;
174 : :
175 : : /* dwz alternate DWARF file. */
176 : : Dwarf *alt_dwarf;
177 : :
178 : : /* The section data. */
179 : : Elf_Data *sectiondata[IDX_last];
180 : :
181 : : /* Size of a prefix of string sections, where any string will be
182 : : null-terminated. */
183 : : size_t string_section_size[STR_SCN_IDX_last];
184 : :
185 : : /* True if the file has a byte order different from the host. */
186 : : bool other_byte_order;
187 : :
188 : : /* If true, we allocated the ELF descriptor ourselves. */
189 : : bool free_elf;
190 : :
191 : : /* If >= 0, we allocated the alt_dwarf ourselves and must end it and
192 : : close this file descriptor. */
193 : : int alt_fd;
194 : :
195 : : /* Information for traversing the .debug_pubnames section. This is
196 : : an array and separately allocated with malloc. */
197 : : struct pubnames_s
198 : : {
199 : : Dwarf_Off cu_offset;
200 : : Dwarf_Off set_start;
201 : : unsigned int cu_header_size;
202 : : int address_len;
203 : : } *pubnames_sets;
204 : : size_t pubnames_nsets;
205 : :
206 : : /* Search tree for the CUs. */
207 : : void *cu_tree;
208 : : Dwarf_Off next_cu_offset;
209 : :
210 : : /* Search tree and sig8 hash table for .debug_types type units. */
211 : : void *tu_tree;
212 : : Dwarf_Off next_tu_offset;
213 : : Dwarf_Sig8_Hash sig8_hash;
214 : :
215 : : /* Search tree for split Dwarf associated with CUs in this debug. */
216 : : void *split_tree;
217 : :
218 : : /* Search tree for .debug_macro operator tables. */
219 : : void *macro_ops;
220 : :
221 : : /* Search tree for decoded .debug_line units. */
222 : : void *files_lines;
223 : :
224 : : /* Address ranges. */
225 : : Dwarf_Aranges *aranges;
226 : :
227 : : /* Cached info from the CFI section. */
228 : : struct Dwarf_CFI_s *cfi;
229 : :
230 : : /* Fake loc CU. Used when synthesizing attributes for Dwarf_Ops that
231 : : came from a location list entry in dwarf_getlocation_attr.
232 : : Depending on version this is the .debug_loc or .debug_loclists
233 : : section (could be both if mixing CUs with different DWARF versions). */
234 : : struct Dwarf_CU *fake_loc_cu;
235 : : struct Dwarf_CU *fake_loclists_cu;
236 : :
237 : : /* Similar for addrx/constx, which will come from .debug_addr section. */
238 : : struct Dwarf_CU *fake_addr_cu;
239 : :
240 : : enum dwarf_type type;
241 : :
242 : : /* Supporting lock for internal memory handling. Ensures threads that have
243 : : an entry in the mem_tails array are not disturbed by new threads doing
244 : : allocations for this Dwarf. */
245 : : pthread_rwlock_t mem_rwl;
246 : :
247 : : /* Internal memory handling. This is basically a simplified thread-local
248 : : reimplementation of obstacks. Unfortunately the standard obstack
249 : : implementation is not usable in libraries. */
250 : : size_t mem_stacks;
251 : : struct libdw_memblock
252 : : {
253 : : size_t size;
254 : : size_t remaining;
255 : : struct libdw_memblock *prev;
256 : : char mem[0];
257 : : } **mem_tails;
258 : :
259 : : /* Default size of allocated memory blocks. */
260 : : size_t mem_default_size;
261 : :
262 : : /* Registered OOM handler. */
263 : : Dwarf_OOM oom_handler;
264 : : };
265 : :
266 : :
267 : : /* Abbreviation representation. */
268 : : struct Dwarf_Abbrev
269 : : {
270 : : Dwarf_Off offset; /* Offset to start of abbrev into .debug_abbrev. */
271 : : unsigned char *attrp; /* Pointer to start of attribute name/form pairs. */
272 : : bool has_children : 1; /* Whether or not the DIE has children. */
273 : : unsigned int code : 31; /* The (unique) abbrev code. */
274 : : unsigned int tag; /* The tag of the DIE. */
275 : : } attribute_packed;
276 : :
277 : : #include "dwarf_abbrev_hash.h"
278 : :
279 : :
280 : : /* Files in line information records. */
281 : : struct Dwarf_Files_s
282 : : {
283 : : unsigned int ndirs;
284 : : unsigned int nfiles;
285 : : struct Dwarf_Fileinfo_s
286 : : {
287 : : char *name;
288 : : Dwarf_Word mtime;
289 : : Dwarf_Word length;
290 : : } info[0];
291 : : /* nfiles of those, followed by char *[ndirs]. */
292 : : };
293 : : typedef struct Dwarf_Fileinfo_s Dwarf_Fileinfo;
294 : :
295 : :
296 : : /* Representation of a row in the line table. */
297 : :
298 : : struct Dwarf_Line_s
299 : : {
300 : : Dwarf_Files *files;
301 : :
302 : : Dwarf_Addr addr;
303 : : unsigned int file;
304 : : int line;
305 : : unsigned short int column;
306 : : unsigned int is_stmt:1;
307 : : unsigned int basic_block:1;
308 : : unsigned int end_sequence:1;
309 : : unsigned int prologue_end:1;
310 : : unsigned int epilogue_begin:1;
311 : : /* The remaining bit fields are not flags, but hold values presumed to be
312 : : small. All the flags and other bit fields should add up to 48 bits
313 : : to give the whole struct a nice round size. */
314 : : unsigned int op_index:8;
315 : : unsigned int isa:8;
316 : : unsigned int discriminator:24;
317 : : /* These are currently only used for the NVIDIA extensions. */
318 : : unsigned int context;
319 : : unsigned int function_name;
320 : : };
321 : :
322 : : struct Dwarf_Lines_s
323 : : {
324 : : size_t nlines;
325 : : struct Dwarf_Line_s info[0];
326 : : };
327 : :
328 : : /* Representation of address ranges. */
329 : : struct Dwarf_Aranges_s
330 : : {
331 : : Dwarf *dbg;
332 : : size_t naranges;
333 : :
334 : : struct Dwarf_Arange_s
335 : : {
336 : : Dwarf_Addr addr;
337 : : Dwarf_Word length;
338 : : Dwarf_Off offset;
339 : : } info[0];
340 : : };
341 : :
342 : :
343 : : /* CU representation. */
344 : : struct Dwarf_CU
345 : : {
346 : : Dwarf *dbg;
347 : : Dwarf_Off start;
348 : : Dwarf_Off end;
349 : : uint8_t address_size;
350 : : uint8_t offset_size;
351 : : uint16_t version;
352 : :
353 : : size_t sec_idx; /* Normally .debug_info, could be .debug_type or "fake". */
354 : :
355 : : /* The unit type if version >= 5. Otherwise 0 for normal CUs (from
356 : : .debug_info) or 1 for v4 type units (from .debug_types). */
357 : : uint8_t unit_type;
358 : :
359 : : /* Zero if the unit type doesn't support a die/type offset and/or id/sig.
360 : : Nonzero if it is a v4 type unit or for DWARFv5 units depending on
361 : : unit_type. */
362 : : size_t subdie_offset;
363 : : uint64_t unit_id8;
364 : :
365 : : /* If this is a skeleton unit this points to the split compile unit.
366 : : Or the other way around if this is a split compile unit. Set to -1
367 : : if not yet searched. Always use __libdw_find_split_unit to access
368 : : this field. */
369 : : struct Dwarf_CU *split;
370 : :
371 : : /* Hash table for the abbreviations. */
372 : : Dwarf_Abbrev_Hash abbrev_hash;
373 : : /* Offset of the first abbreviation. */
374 : : size_t orig_abbrev_offset;
375 : : /* Offset past last read abbreviation. */
376 : : size_t last_abbrev_offset;
377 : :
378 : : /* The srcline information. */
379 : : Dwarf_Lines *lines;
380 : :
381 : : /* The source file information. */
382 : : Dwarf_Files *files;
383 : :
384 : : /* Known location lists. */
385 : : void *locs;
386 : :
387 : : /* Base address for use with ranges and locs.
388 : : Don't access directly, call __libdw_cu_base_address. */
389 : : Dwarf_Addr base_address;
390 : :
391 : : /* The offset into the .debug_addr section where index zero begins.
392 : : Don't access directly, call __libdw_cu_addr_base. */
393 : : Dwarf_Off addr_base;
394 : :
395 : : /* The offset into the .debug_str_offsets section where index zero begins.
396 : : Don't access directly, call __libdw_cu_str_off_base. */
397 : : Dwarf_Off str_off_base;
398 : :
399 : : /* The offset into the .debug_ranges section to use for GNU
400 : : DebugFission split units. Don't access directly, call
401 : : __libdw_cu_ranges_base. */
402 : : Dwarf_Off ranges_base;
403 : :
404 : : /* The start of the offset table in .debug_loclists.
405 : : Don't access directly, call __libdw_cu_locs_base. */
406 : : Dwarf_Off locs_base;
407 : :
408 : : /* Memory boundaries of this CU. */
409 : : void *startp;
410 : : void *endp;
411 : : };
412 : :
413 : : #define ISV4TU(cu) ((cu)->version == 4 && (cu)->sec_idx == IDX_debug_types)
414 : :
415 : : /* Compute the offset of a CU's first DIE from the CU offset.
416 : : CU must be a valid/known version/unit_type. */
417 : : static inline Dwarf_Off
418 : 7481596 : __libdw_first_die_from_cu_start (Dwarf_Off cu_start,
419 : : uint8_t offset_size,
420 : : uint16_t version,
421 : : uint8_t unit_type)
422 : : {
423 : : /*
424 : : assert (offset_size == 4 || offset_size == 8);
425 : : assert (version >= 2 && version <= 5);
426 : : assert (unit_type == DW_UT_compile
427 : : || unit_type == DW_UT_partial
428 : : || unit_type == DW_UT_skeleton
429 : : || unit_type == DW_UT_split_compile
430 : : || unit_type == DW_UT_type
431 : : || unit_type == DW_UT_split_type);
432 : : */
433 : :
434 : 7481596 : Dwarf_Off off = cu_start;
435 [ + + ]: 7481596 : if (version < 5)
436 : : {
437 : : /*
438 : : LEN VER OFFSET ADDR
439 : : 4-bytes + 2-bytes + 4-bytes + 1-byte for 32-bit dwarf
440 : : 12-bytes + 2-bytes + 8-bytes + 1-byte for 64-bit dwarf
441 : : or in .debug_types, SIGNATURE TYPE-OFFSET
442 : : 4-bytes + 2-bytes + 4-bytes + 1-byte + 8-bytes + 4-bytes for 32-bit
443 : : 12-bytes + 2-bytes + 8-bytes + 1-byte + 8-bytes + 8-bytes for 64-bit
444 : :
445 : : Note the trick in the computation. If the offset_size is 4
446 : : the '- 4' term changes the '3 *' (or '4 *') into a '2 *' (or '3 *).
447 : : If the offset_size is 8 it accounts for the 4-byte escape value
448 : : used at the start of the length. */
449 [ + + ]: 206994 : if (unit_type != DW_UT_type)
450 : 206892 : off += 3 * offset_size - 4 + 3;
451 : : else
452 : 102 : off += 4 * offset_size - 4 + 3 + 8;
453 : : }
454 : : else
455 : : {
456 : : /*
457 : : LEN VER TYPE ADDR OFFSET SIGNATURE TYPE-OFFSET
458 : : 4-bytes + 2-bytes + 1-byte + 1-byte + 4-bytes + 8-bytes + 4-bytes 32-bit
459 : : 12-bytes + 2-bytes + 1-byte + 1-byte + 8-bytes + 8-bytes + 8-bytes 64-bit
460 : : Both signature and type offset are optional.
461 : :
462 : : Note same 4/8 offset size trick as above.
463 : : We explicitly ignore unknown unit types (see asserts above). */
464 : 7274602 : off += 3 * offset_size - 4 + 4;
465 : 7274602 : if (unit_type == DW_UT_skeleton || unit_type == DW_UT_split_compile
466 [ + + - + ]: 7274602 : || unit_type == DW_UT_type || unit_type == DW_UT_split_type)
467 : : {
468 : 1330 : off += 8;
469 [ - + ]: 1330 : if (unit_type == DW_UT_type || unit_type == DW_UT_split_type)
470 : 0 : off += offset_size;
471 : : }
472 : : }
473 : :
474 : 7481596 : return off;
475 : : }
476 : :
477 : : static inline Dwarf_Off
478 : 7355696 : __libdw_first_die_off_from_cu (struct Dwarf_CU *cu)
479 : : {
480 : 7355696 : return __libdw_first_die_from_cu_start (cu->start,
481 : 7355696 : cu->offset_size,
482 : 7355696 : cu->version,
483 : 7355696 : cu->unit_type);
484 : : }
485 : :
486 : : #define CUDIE(fromcu) \
487 : : ((Dwarf_Die) \
488 : : { \
489 : : .cu = (fromcu), \
490 : : .addr = ((char *) (fromcu)->dbg->sectiondata[cu_sec_idx (fromcu)]->d_buf \
491 : : + __libdw_first_die_off_from_cu (fromcu)) \
492 : : })
493 : :
494 : : #define SUBDIE(fromcu) \
495 : : ((Dwarf_Die) \
496 : : { \
497 : : .cu = (fromcu), \
498 : : .addr = ((char *) (fromcu)->dbg->sectiondata[cu_sec_idx (fromcu)]->d_buf \
499 : : + (fromcu)->start + (fromcu)->subdie_offset) \
500 : : })
501 : :
502 : :
503 : : /* Prototype of a single .debug_macro operator. */
504 : : typedef struct
505 : : {
506 : : Dwarf_Word nforms;
507 : : unsigned char const *forms;
508 : : } Dwarf_Macro_Op_Proto;
509 : :
510 : : /* Prototype table. */
511 : : typedef struct
512 : : {
513 : : Dwarf *dbg;
514 : :
515 : : /* Offset of .debug_macro section. */
516 : : Dwarf_Off offset;
517 : :
518 : : /* Offset of associated .debug_line section. */
519 : : Dwarf_Off line_offset;
520 : :
521 : : /* The source file information. */
522 : : Dwarf_Files *files;
523 : :
524 : : /* If this macro unit was opened through dwarf_getmacros or
525 : : dwarf_getmacros_die, this caches value of DW_AT_comp_dir, if
526 : : present. */
527 : : const char *comp_dir;
528 : :
529 : : /* Header length. */
530 : : Dwarf_Half header_len;
531 : :
532 : : uint16_t version;
533 : : uint8_t address_size;
534 : : uint8_t offset_size;
535 : : uint8_t sec_index; /* IDX_debug_macro or IDX_debug_macinfo. */
536 : :
537 : : /* Shows where in TABLE each opcode is defined. Since opcode 0 is
538 : : never used, it stores index of opcode X in X-1'th element. The
539 : : value of 0xff means not stored at all. */
540 : : unsigned char opcodes[255];
541 : :
542 : : /* Individual opcode prototypes. */
543 : : Dwarf_Macro_Op_Proto table[];
544 : : } Dwarf_Macro_Op_Table;
545 : :
546 : : struct Dwarf_Macro_s
547 : : {
548 : : Dwarf_Macro_Op_Table *table;
549 : : Dwarf_Attribute *attributes;
550 : : uint8_t opcode;
551 : : };
552 : :
553 : : static inline Dwarf_Word
554 : 1296 : libdw_macro_nforms (Dwarf_Macro *macro)
555 : : {
556 [ + - ]: 1296 : return macro->table->table[macro->table->opcodes[macro->opcode - 1]].nforms;
557 : : }
558 : :
559 : : /* Returns true for any allowed FORM in the opcode_operands_table as
560 : : mentioned in the DWARF5 spec (6.3.1 Macro Information Header).
561 : : Or those mentioned in DWARF5 spec (6.2.4.2 Vendor-defined Content
562 : : Descriptions) for the directory/file table (plus DW_FORM_strp_sup). */
563 : : static inline bool
564 : 129480 : libdw_valid_user_form (int form)
565 : : {
566 [ - + ]: 129480 : switch (form)
567 : : {
568 : : case DW_FORM_block:
569 : : case DW_FORM_block1:
570 : : case DW_FORM_block2:
571 : : case DW_FORM_block4:
572 : : case DW_FORM_data1:
573 : : case DW_FORM_data2:
574 : : case DW_FORM_data4:
575 : : case DW_FORM_data8:
576 : : case DW_FORM_data16:
577 : : case DW_FORM_flag:
578 : : case DW_FORM_line_strp:
579 : : case DW_FORM_sdata:
580 : : case DW_FORM_sec_offset:
581 : : case DW_FORM_string:
582 : : case DW_FORM_strp:
583 : : case DW_FORM_strp_sup:
584 : : case DW_FORM_strx:
585 : : case DW_FORM_strx1:
586 : : case DW_FORM_strx2:
587 : : case DW_FORM_strx3:
588 : : case DW_FORM_strx4:
589 : : case DW_FORM_udata:
590 : : return true;
591 : 0 : default:
592 : 0 : return false;
593 : : }
594 : : }
595 : :
596 : :
597 : : /* We have to include the file at this point because the inline
598 : : functions access internals of the Dwarf structure. */
599 : : #include "memory-access.h"
600 : :
601 : :
602 : : /* Set error value. */
603 : : extern void __libdw_seterrno (int value) internal_function;
604 : :
605 : :
606 : : /* Memory handling, the easy parts. */
607 : : #define libdw_alloc(dbg, type, tsize, cnt) \
608 : : ({ struct libdw_memblock *_tail = __libdw_alloc_tail(dbg); \
609 : : size_t _required = (tsize) * (cnt); \
610 : : type *_result = (type *) (_tail->mem + (_tail->size - _tail->remaining));\
611 : : size_t _padding = ((__alignof (type) \
612 : : - ((uintptr_t) _result & (__alignof (type) - 1))) \
613 : : & (__alignof (type) - 1)); \
614 : : if (unlikely (_tail->remaining < _required + _padding)) \
615 : : _result = (type *) __libdw_allocate (dbg, _required, __alignof (type));\
616 : : else \
617 : : { \
618 : : _required += _padding; \
619 : : _result = (type *) ((char *) _result + _padding); \
620 : : _tail->remaining -= _required; \
621 : : } \
622 : : _result; })
623 : :
624 : : #define libdw_typed_alloc(dbg, type) \
625 : : libdw_alloc (dbg, type, sizeof (type), 1)
626 : :
627 : : /* Can only be used to undo the last libdw_alloc. */
628 : : #define libdw_unalloc(dbg, type, tsize, cnt) \
629 : : ({ struct libdw_memblock *_tail = __libdw_thread_tail (dbg); \
630 : : size_t _required = (tsize) * (cnt); \
631 : : /* We cannot know the padding, it is lost. */ \
632 : : _tail->remaining += _required; }) \
633 : :
634 : : #define libdw_typed_unalloc(dbg, type) \
635 : : libdw_unalloc (dbg, type, sizeof (type), 1)
636 : :
637 : : /* Callback to choose a thread-local memory allocation stack. */
638 : : extern struct libdw_memblock *__libdw_alloc_tail (Dwarf* dbg)
639 : : __nonnull_attribute__ (1);
640 : :
641 : : extern struct libdw_memblock *__libdw_thread_tail (Dwarf* dbg)
642 : : __nonnull_attribute__ (1);
643 : :
644 : : /* Callback to allocate more. */
645 : : extern void *__libdw_allocate (Dwarf *dbg, size_t minsize, size_t align)
646 : : __attribute__ ((__malloc__)) __nonnull_attribute__ (1);
647 : :
648 : : /* Default OOM handler. */
649 : : extern void __libdw_oom (void) __attribute ((noreturn)) attribute_hidden;
650 : :
651 : : /* Read next unit (or v4 debug type) and return next offset. Doesn't
652 : : create an actual Dwarf_CU just provides necessary header fields. */
653 : : extern int
654 : : internal_function
655 : : __libdw_next_unit (Dwarf *dbg, bool v4_debug_types, Dwarf_Off off,
656 : : Dwarf_Off *next_off, size_t *header_sizep,
657 : : Dwarf_Half *versionp, uint8_t *unit_typep,
658 : : Dwarf_Off *abbrev_offsetp, uint8_t *address_sizep,
659 : : uint8_t *offset_sizep, uint64_t *unit_id8p,
660 : : Dwarf_Off *subdie_offsetp)
661 : : __nonnull_attribute__ (4) internal_function;
662 : :
663 : : /* Allocate the internal data for a unit not seen before. */
664 : : extern struct Dwarf_CU *__libdw_intern_next_unit (Dwarf *dbg, bool debug_types)
665 : : __nonnull_attribute__ (1) internal_function;
666 : :
667 : : /* Find CU for given offset. */
668 : : extern struct Dwarf_CU *__libdw_findcu (Dwarf *dbg, Dwarf_Off offset, bool tu)
669 : : __nonnull_attribute__ (1) internal_function;
670 : :
671 : : /* Find CU for given DIE address. */
672 : : extern struct Dwarf_CU *__libdw_findcu_addr (Dwarf *dbg, void *addr)
673 : : __nonnull_attribute__ (1) internal_function;
674 : :
675 : : /* Find split Dwarf for given DIE address. */
676 : : extern struct Dwarf *__libdw_find_split_dbg_addr (Dwarf *dbg, void *addr)
677 : : __nonnull_attribute__ (1) internal_function;
678 : :
679 : : /* Find the split (or skeleton) unit. */
680 : : extern struct Dwarf_CU *__libdw_find_split_unit (Dwarf_CU *cu)
681 : : internal_function;
682 : :
683 : : /* Get abbreviation with given code. */
684 : : extern Dwarf_Abbrev *__libdw_findabbrev (struct Dwarf_CU *cu,
685 : : unsigned int code)
686 : : __nonnull_attribute__ (1) internal_function;
687 : :
688 : : /* Get abbreviation at given offset. */
689 : : extern Dwarf_Abbrev *__libdw_getabbrev (Dwarf *dbg, struct Dwarf_CU *cu,
690 : : Dwarf_Off offset, size_t *lengthp,
691 : : Dwarf_Abbrev *result)
692 : : __nonnull_attribute__ (1) internal_function;
693 : :
694 : : /* Get abbreviation of given DIE, and optionally set *READP to the DIE memory
695 : : just past the abbreviation code. */
696 : : static inline Dwarf_Abbrev *
697 : : __nonnull_attribute__ (1)
698 : 131219848 : __libdw_dieabbrev (Dwarf_Die *die, const unsigned char **readp)
699 : : {
700 : : /* Do we need to get the abbreviation, or need to read after the code? */
701 [ + + + + ]: 131219848 : if (die->abbrev == NULL || readp != NULL)
702 : : {
703 : : /* Get the abbreviation code. */
704 : 71195530 : unsigned int code;
705 : 71195530 : const unsigned char *addr = die->addr;
706 [ + + - + ]: 71195530 : if (unlikely (die->cu == NULL
707 : : || addr >= (const unsigned char *) die->cu->endp))
708 : 22936 : return die->abbrev = DWARF_END_ABBREV;
709 : 71172594 : get_uleb128 (code, addr, die->cu->endp);
710 [ + + ]: 71172594 : if (readp != NULL)
711 : 46787650 : *readp = addr;
712 : :
713 : : /* Find the abbreviation. */
714 [ + + ]: 71172594 : if (die->abbrev == NULL)
715 : 31761272 : die->abbrev = __libdw_findabbrev (die->cu, code);
716 : : }
717 : 131196912 : return die->abbrev;
718 : : }
719 : :
720 : : /* Helper functions for form handling. */
721 : : extern size_t __libdw_form_val_compute_len (struct Dwarf_CU *cu,
722 : : unsigned int form,
723 : : const unsigned char *valp)
724 : : __nonnull_attribute__ (1, 3) internal_function;
725 : :
726 : : /* Find the length of a form attribute in DIE/info data. */
727 : : static inline size_t
728 : : __nonnull_attribute__ (1, 3)
729 : 183713362 : __libdw_form_val_len (struct Dwarf_CU *cu, unsigned int form,
730 : : const unsigned char *valp)
731 : : {
732 : : /* Small lookup table of forms with fixed lengths. Absent indexes are
733 : : initialized 0, so any truly desired 0 is set to 0x80 and masked. */
734 : 183713362 : static const uint8_t form_lengths[] =
735 : : {
736 : : [DW_FORM_flag_present] = 0x80,
737 : : [DW_FORM_implicit_const] = 0x80, /* Value is in abbrev, not in info. */
738 : :
739 : : [DW_FORM_flag] = 1,
740 : : [DW_FORM_data1] = 1, [DW_FORM_ref1] = 1,
741 : : [DW_FORM_addrx1] = 1, [DW_FORM_strx1] = 1,
742 : :
743 : : [DW_FORM_data2] = 2, [DW_FORM_ref2] = 2,
744 : : [DW_FORM_addrx2] = 2, [DW_FORM_strx2] = 2,
745 : :
746 : : [DW_FORM_addrx3] = 3, [DW_FORM_strx3] = 3,
747 : :
748 : : [DW_FORM_data4] = 4, [DW_FORM_ref4] = 4, [DW_FORM_ref_sup4] = 4,
749 : : [DW_FORM_addrx4] = 4, [DW_FORM_strx4] = 4,
750 : :
751 : : [DW_FORM_ref_sig8] = 8,
752 : : [DW_FORM_data8] = 8, [DW_FORM_ref8] = 8, [DW_FORM_ref_sup8] = 8,
753 : :
754 : : [DW_FORM_data16] = 16,
755 : : };
756 : :
757 : : /* Return immediately for forms with fixed lengths. */
758 [ + + ]: 183713362 : if (form < sizeof form_lengths / sizeof form_lengths[0])
759 : : {
760 : 183708022 : uint8_t len = form_lengths[form];
761 [ + + ]: 183708022 : if (len != 0)
762 : : {
763 : 132323952 : const unsigned char *endp = cu->endp;
764 : 132323952 : len &= 0x7f; /* Mask to allow 0x80 -> 0. */
765 [ - + ]: 132323952 : if (unlikely (len > (size_t) (endp - valp)))
766 : : {
767 : 0 : __libdw_seterrno (DWARF_E_INVALID_DWARF);
768 : 0 : return -1;
769 : : }
770 : : return len;
771 : : }
772 : : }
773 : :
774 : : /* Other forms require some computation. */
775 : 51389410 : return __libdw_form_val_compute_len (cu, form, valp);
776 : : }
777 : :
778 : : /* Helper function for DW_FORM_ref* handling. */
779 : : extern int __libdw_formref (Dwarf_Attribute *attr, Dwarf_Off *return_offset)
780 : : __nonnull_attribute__ (1, 2) internal_function;
781 : :
782 : :
783 : : /* Helper function to locate attribute. */
784 : : extern unsigned char *__libdw_find_attr (Dwarf_Die *die,
785 : : unsigned int search_name,
786 : : unsigned int *codep,
787 : : unsigned int *formp)
788 : : __nonnull_attribute__ (1) internal_function;
789 : :
790 : : /* Helper function to access integer attribute. */
791 : : extern int __libdw_attr_intval (Dwarf_Die *die, int *valp, int attval)
792 : : __nonnull_attribute__ (1, 2) internal_function;
793 : :
794 : : /* Helper function to walk scopes. */
795 : : struct Dwarf_Die_Chain
796 : : {
797 : : Dwarf_Die die;
798 : : struct Dwarf_Die_Chain *parent;
799 : : bool prune; /* The PREVISIT function can set this. */
800 : : };
801 : : extern int __libdw_visit_scopes (unsigned int depth,
802 : : struct Dwarf_Die_Chain *root,
803 : : struct Dwarf_Die_Chain *imports,
804 : : int (*previsit) (unsigned int depth,
805 : : struct Dwarf_Die_Chain *,
806 : : void *arg),
807 : : int (*postvisit) (unsigned int depth,
808 : : struct Dwarf_Die_Chain *,
809 : : void *arg),
810 : : void *arg)
811 : : __nonnull_attribute__ (2, 4) internal_function;
812 : :
813 : : /* Parse a DWARF Dwarf_Block into an array of Dwarf_Op's,
814 : : and cache the result (via tsearch). */
815 : : extern int __libdw_intern_expression (Dwarf *dbg,
816 : : bool other_byte_order,
817 : : unsigned int address_size,
818 : : unsigned int ref_size,
819 : : void **cache, const Dwarf_Block *block,
820 : : bool cfap, bool valuep,
821 : : Dwarf_Op **llbuf, size_t *listlen,
822 : : int sec_index)
823 : : __nonnull_attribute__ (5, 6, 9, 10) internal_function;
824 : :
825 : : extern Dwarf_Die *__libdw_offdie (Dwarf *dbg, Dwarf_Off offset,
826 : : Dwarf_Die *result, bool debug_types)
827 : : internal_function;
828 : :
829 : :
830 : : /* Return error code of last failing function call. This value is kept
831 : : separately for each thread. */
832 : : extern int __dwarf_errno_internal (void);
833 : :
834 : :
835 : : /* Reader hooks. */
836 : :
837 : : /* Relocation hooks return -1 on error (in that case the error code
838 : : must already have been set), 0 if there is no relocation and 1 if a
839 : : relocation was present.*/
840 : :
841 : : static inline int
842 : : __libdw_relocate_address (Dwarf *dbg __attribute__ ((unused)),
843 : : int sec_index __attribute__ ((unused)),
844 : : const void *addr __attribute__ ((unused)),
845 : : int width __attribute__ ((unused)),
846 : : Dwarf_Addr *val __attribute__ ((unused)))
847 : : {
848 : : return 0;
849 : : }
850 : :
851 : : static inline int
852 : : __libdw_relocate_offset (Dwarf *dbg __attribute__ ((unused)),
853 : : int sec_index __attribute__ ((unused)),
854 : : const void *addr __attribute__ ((unused)),
855 : : int width __attribute__ ((unused)),
856 : : Dwarf_Off *val __attribute__ ((unused)))
857 : : {
858 : : return 0;
859 : : }
860 : :
861 : : static inline Elf_Data *
862 : 9126670 : __libdw_checked_get_data (Dwarf *dbg, int sec_index)
863 : : {
864 : 9126670 : Elf_Data *data = dbg->sectiondata[sec_index];
865 [ + - ]: 9126670 : if (unlikely (data == NULL)
866 [ - + ]: 9126670 : || unlikely (data->d_buf == NULL))
867 : : {
868 : 0 : __libdw_seterrno (DWARF_E_INVALID_DWARF);
869 : 0 : return NULL;
870 : : }
871 : : return data;
872 : : }
873 : :
874 : : static inline int
875 : 4266518 : __libdw_offset_in_section (Dwarf *dbg, int sec_index,
876 : : Dwarf_Off offset, size_t size)
877 : : {
878 : 4266518 : Elf_Data *data = __libdw_checked_get_data (dbg, sec_index);
879 [ - + ]: 4266518 : if (data == NULL)
880 : : return -1;
881 [ + - ]: 4266518 : if (unlikely (offset > data->d_size)
882 [ + - ]: 4266518 : || unlikely (data->d_size < size)
883 [ - + ]: 4266518 : || unlikely (offset > data->d_size - size))
884 : : {
885 : 0 : __libdw_seterrno (DWARF_E_INVALID_OFFSET);
886 : 0 : return -1;
887 : : }
888 : :
889 : : return 0;
890 : : }
891 : :
892 : : static inline bool
893 : 4819340 : __libdw_in_section (Dwarf *dbg, int sec_index,
894 : : const void *addr, size_t size)
895 : : {
896 : 4819340 : Elf_Data *data = __libdw_checked_get_data (dbg, sec_index);
897 [ - + ]: 4819340 : if (data == NULL)
898 : : return false;
899 [ + - ]: 4819340 : if (unlikely (addr < data->d_buf)
900 [ + - ]: 4819340 : || unlikely (data->d_size < size)
901 [ - + ]: 4819340 : || unlikely ((size_t)(addr - data->d_buf) > data->d_size - size))
902 : : {
903 : 0 : __libdw_seterrno (DWARF_E_INVALID_OFFSET);
904 : 0 : return false;
905 : : }
906 : :
907 : : return true;
908 : : }
909 : :
910 : : #define READ_AND_RELOCATE(RELOC_HOOK, VAL) \
911 : : ({ \
912 : : if (!__libdw_in_section (dbg, sec_index, addr, width)) \
913 : : return -1; \
914 : : \
915 : : const unsigned char *orig_addr = addr; \
916 : : if (width == 4) \
917 : : VAL = read_4ubyte_unaligned_inc (dbg, addr); \
918 : : else \
919 : : VAL = read_8ubyte_unaligned_inc (dbg, addr); \
920 : : \
921 : : int status = RELOC_HOOK (dbg, sec_index, orig_addr, width, &VAL); \
922 : : if (status < 0) \
923 : : return status; \
924 : : status > 0; \
925 : : })
926 : :
927 : : static inline int
928 : 196272 : __libdw_read_address_inc (Dwarf *dbg,
929 : : int sec_index, const unsigned char **addrp,
930 : : int width, Dwarf_Addr *ret)
931 : : {
932 : 196272 : const unsigned char *addr = *addrp;
933 [ + - + + : 196272 : READ_AND_RELOCATE (__libdw_relocate_address, (*ret));
+ + + + ]
934 : 196272 : *addrp = addr;
935 : 196272 : return 0;
936 : : }
937 : :
938 : : static inline int
939 : 396722 : __libdw_read_address (Dwarf *dbg,
940 : : int sec_index, const unsigned char *addr,
941 : : int width, Dwarf_Addr *ret)
942 : : {
943 [ + - + + : 396722 : READ_AND_RELOCATE (__libdw_relocate_address, (*ret));
+ + + + ]
944 : : return 0;
945 : : }
946 : :
947 : : static inline int
948 : 133462 : __libdw_read_offset_inc (Dwarf *dbg,
949 : : int sec_index, const unsigned char **addrp,
950 : : int width, Dwarf_Off *ret, int sec_ret,
951 : : size_t size)
952 : : {
953 : 133462 : const unsigned char *addr = *addrp;
954 [ + - + - : 133462 : READ_AND_RELOCATE (__libdw_relocate_offset, (*ret));
+ + - - ]
955 : 133462 : *addrp = addr;
956 : 133462 : return __libdw_offset_in_section (dbg, sec_ret, *ret, size);
957 : : }
958 : :
959 : : static inline int
960 : 4092136 : __libdw_read_offset (Dwarf *dbg, Dwarf *dbg_ret,
961 : : int sec_index, const unsigned char *addr,
962 : : int width, Dwarf_Off *ret, int sec_ret,
963 : : size_t size)
964 : : {
965 [ + - + - : 4092136 : READ_AND_RELOCATE (__libdw_relocate_offset, (*ret));
+ + - - ]
966 : 4092136 : return __libdw_offset_in_section (dbg_ret, sec_ret, *ret, size);
967 : : }
968 : :
969 : : static inline size_t
970 : 11642270 : cu_sec_idx (struct Dwarf_CU *cu)
971 : : {
972 [ + + ]: 9895496 : return cu->sec_idx;
973 : : }
974 : :
975 : : static inline bool
976 : 5913726 : is_cudie (Dwarf_Die *cudie)
977 : : {
978 [ + + + + ]: 5913726 : return cudie->cu != NULL && CUDIE (cudie->cu).addr == cudie->addr;
979 : : }
980 : :
981 : : /* Read up begin/end pair and increment read pointer.
982 : : - If it's normal range record, set up *BEGINP and *ENDP and return 0.
983 : : - If it's base address selection record, set up *BASEP and return 1.
984 : : - If it's end of rangelist, don't set anything and return 2
985 : : - If an error occurs, don't set anything and return <0. */
986 : : int __libdw_read_begin_end_pair_inc (Dwarf_CU *cu, int sec_index,
987 : : const unsigned char **readp,
988 : : const unsigned char *readend,
989 : : int width,
990 : : Dwarf_Addr *beginp, Dwarf_Addr *endp,
991 : : Dwarf_Addr *basep)
992 : : internal_function;
993 : :
994 : : const unsigned char * __libdw_formptr (Dwarf_Attribute *attr, int sec_index,
995 : : int err_nodata,
996 : : const unsigned char **endpp,
997 : : Dwarf_Off *offsetp)
998 : : internal_function;
999 : :
1000 : : /* Fills in the given attribute to point at an empty location expression. */
1001 : : void __libdw_empty_loc_attr (Dwarf_Attribute *attr)
1002 : : internal_function;
1003 : :
1004 : : /* Load .debug_line unit at DEBUG_LINE_OFFSET. COMP_DIR is a value of
1005 : : DW_AT_comp_dir or NULL if that attribute is not available. Caches
1006 : : the loaded unit and optionally set *LINESP and/or *FILESP (if not
1007 : : NULL) with loaded information. Returns 0 for success or a negative
1008 : : value for failure. */
1009 : : int __libdw_getsrclines (Dwarf *dbg, Dwarf_Off debug_line_offset,
1010 : : const char *comp_dir, unsigned address_size,
1011 : : Dwarf_Lines **linesp, Dwarf_Files **filesp)
1012 : : internal_function
1013 : : __nonnull_attribute__ (1);
1014 : :
1015 : : /* Load and return value of DW_AT_comp_dir from CUDIE. */
1016 : : const char *__libdw_getcompdir (Dwarf_Die *cudie);
1017 : :
1018 : : /* Get the base address for the CU, fetches it when not yet set.
1019 : : This is used as initial base address for ranges and loclists. */
1020 : : Dwarf_Addr __libdw_cu_base_address (Dwarf_CU *cu);
1021 : :
1022 : : /* Get the address base for the CU, fetches it when not yet set. */
1023 : : static inline Dwarf_Off
1024 : 1270 : __libdw_cu_addr_base (Dwarf_CU *cu)
1025 : : {
1026 [ + + ]: 1270 : if (cu->addr_base == (Dwarf_Off) -1)
1027 : : {
1028 : 100 : Dwarf_Die cu_die = CUDIE(cu);
1029 : 100 : Dwarf_Attribute attr;
1030 : 100 : Dwarf_Off offset = 0;
1031 [ + + ]: 100 : if (dwarf_attr (&cu_die, DW_AT_GNU_addr_base, &attr) != NULL
1032 [ + - ]: 48 : || dwarf_attr (&cu_die, DW_AT_addr_base, &attr) != NULL)
1033 : : {
1034 : 100 : Dwarf_Word off;
1035 [ + - ]: 100 : if (dwarf_formudata (&attr, &off) == 0)
1036 : 100 : offset = off;
1037 : : }
1038 : 100 : cu->addr_base = offset;
1039 : : }
1040 : :
1041 : 1270 : return cu->addr_base;
1042 : : }
1043 : :
1044 : : /* Gets the .debug_str_offsets base offset to use. static inline to
1045 : : be shared between libdw and eu-readelf. */
1046 : : static inline Dwarf_Off
1047 : 5130 : str_offsets_base_off (Dwarf *dbg, Dwarf_CU *cu)
1048 : : {
1049 : : /* If we don't have a CU, then find and use the first one in the
1050 : : debug file (when we support .dwp files, we must actually find the
1051 : : one matching our "caller" - aka macro or line). If we (now) have
1052 : : a cu and str_offsets_base attribute, just use that. Otherwise
1053 : : use the first offset. But we might have to parse the header
1054 : : first, but only if this is version 5. Assume if all else fails,
1055 : : this is version 4, without header. */
1056 : :
1057 [ + + ]: 5130 : if (cu == NULL && dbg != NULL)
1058 : : {
1059 : 3762 : Dwarf_CU *first_cu;
1060 [ + + ]: 3762 : if (dwarf_get_units (dbg, NULL, &first_cu,
1061 : : NULL, NULL, NULL, NULL) == 0)
1062 : 3760 : cu = first_cu;
1063 : : }
1064 : :
1065 [ + + ]: 5130 : if (cu != NULL)
1066 : : {
1067 [ + + ]: 5128 : if (cu->str_off_base == (Dwarf_Off) -1)
1068 : : {
1069 : 180 : Dwarf_Die cu_die = CUDIE(cu);
1070 : 180 : Dwarf_Attribute attr;
1071 [ + + ]: 180 : if (dwarf_attr (&cu_die, DW_AT_str_offsets_base, &attr) != NULL)
1072 : : {
1073 : 4 : Dwarf_Word off;
1074 [ + - ]: 4 : if (dwarf_formudata (&attr, &off) == 0)
1075 : : {
1076 : 4 : cu->str_off_base = off;
1077 : 4 : return cu->str_off_base;
1078 : : }
1079 : : }
1080 : : /* For older DWARF simply assume zero (no header). */
1081 [ + + ]: 176 : if (cu->version < 5)
1082 : : {
1083 : 114 : cu->str_off_base = 0;
1084 : 114 : return cu->str_off_base;
1085 : : }
1086 : :
1087 [ + + ]: 62 : if (dbg == NULL)
1088 : 28 : dbg = cu->dbg;
1089 : : }
1090 : : else
1091 : : return cu->str_off_base;
1092 : : }
1093 : :
1094 : : /* No str_offsets_base attribute, we have to assume "zero".
1095 : : But there could be a header first. */
1096 : 64 : Dwarf_Off off = 0;
1097 [ - + ]: 64 : if (dbg == NULL)
1098 : 0 : goto no_header;
1099 : :
1100 : 64 : Elf_Data *data = dbg->sectiondata[IDX_debug_str_offsets];
1101 [ + + ]: 64 : if (data == NULL)
1102 : 36 : goto no_header;
1103 : :
1104 : 28 : const unsigned char *start;
1105 : 28 : const unsigned char *readp;
1106 : 28 : const unsigned char *readendp;
1107 : 28 : start = readp = (const unsigned char *) data->d_buf;
1108 : 28 : readendp = (const unsigned char *) data->d_buf + data->d_size;
1109 : :
1110 : 28 : uint64_t unit_length;
1111 : 28 : uint16_t version;
1112 : :
1113 [ - + ]: 28 : unit_length = read_4ubyte_unaligned_inc (dbg, readp);
1114 [ - + ]: 28 : if (unlikely (unit_length == 0xffffffff))
1115 : : {
1116 [ # # ]: 0 : if (unlikely (readendp - readp < 8))
1117 : 0 : goto no_header;
1118 [ # # ]: 0 : unit_length = read_8ubyte_unaligned_inc (dbg, readp);
1119 : : /* In theory the offset size could be different
1120 : : between CU and str_offsets unit. But we just
1121 : : ignore that here. */
1122 : : }
1123 : :
1124 : : /* We need at least 2-bytes (version) + 2-bytes (padding) =
1125 : : 4 bytes to complete the header. And this unit cannot go
1126 : : beyond the section data. */
1127 [ + - ]: 28 : if (readendp - readp < 4
1128 [ + - ]: 28 : || unit_length < 4
1129 [ - + ]: 28 : || (uint64_t) (readendp - readp) < unit_length)
1130 : 0 : goto no_header;
1131 : :
1132 [ - + ]: 28 : version = read_2ubyte_unaligned_inc (dbg, readp);
1133 [ - + ]: 28 : if (version != 5)
1134 : 0 : goto no_header;
1135 : : /* padding */
1136 : 28 : read_2ubyte_unaligned_inc (dbg, readp);
1137 : :
1138 : 28 : off = (Dwarf_Off) (readp - start);
1139 : :
1140 : 64 : no_header:
1141 [ + + ]: 64 : if (cu != NULL)
1142 : 62 : cu->str_off_base = off;
1143 : :
1144 : : return off;
1145 : : }
1146 : :
1147 : :
1148 : : /* Get the string offsets base for the CU, fetches it when not yet set. */
1149 : 300 : static inline Dwarf_Off __libdw_cu_str_off_base (Dwarf_CU *cu)
1150 : : {
1151 : 300 : return str_offsets_base_off (NULL, cu);
1152 : : }
1153 : :
1154 : :
1155 : : /* Either a direct offset into .debug_ranges for version < 5, or the
1156 : : start of the offset table in .debug_rnglists for version > 5. */
1157 : : static inline Dwarf_Off
1158 : 28 : __libdw_cu_ranges_base (Dwarf_CU *cu)
1159 : : {
1160 [ + + ]: 28 : if (cu->ranges_base == (Dwarf_Off) -1)
1161 : : {
1162 : 10 : Dwarf_Off offset = 0;
1163 : 10 : Dwarf_Die cu_die = CUDIE(cu);
1164 : 10 : Dwarf_Attribute attr;
1165 [ + + ]: 10 : if (cu->version < 5)
1166 : : {
1167 [ + - ]: 8 : if (dwarf_attr (&cu_die, DW_AT_GNU_ranges_base, &attr) != NULL)
1168 : : {
1169 : 8 : Dwarf_Word off;
1170 [ + - ]: 8 : if (dwarf_formudata (&attr, &off) == 0)
1171 : 8 : offset = off;
1172 : : }
1173 : : }
1174 : : else
1175 : : {
1176 [ + - ]: 2 : if (dwarf_attr (&cu_die, DW_AT_rnglists_base, &attr) != NULL)
1177 : : {
1178 : 2 : Dwarf_Word off;
1179 [ + - ]: 2 : if (dwarf_formudata (&attr, &off) == 0)
1180 : 2 : offset = off;
1181 : : }
1182 : :
1183 : : /* There wasn't an rnglists_base, if the Dwarf does have a
1184 : : .debug_rnglists section, then it might be we need the
1185 : : base after the first header. */
1186 : 2 : Elf_Data *data = cu->dbg->sectiondata[IDX_debug_rnglists];
1187 [ + - ]: 2 : if (offset == 0 && data != NULL)
1188 : : {
1189 : 0 : Dwarf *dbg = cu->dbg;
1190 : 0 : const unsigned char *readp = data->d_buf;
1191 : 0 : const unsigned char *const dataend
1192 : 0 : = (unsigned char *) data->d_buf + data->d_size;
1193 : :
1194 [ # # ]: 0 : uint64_t unit_length = read_4ubyte_unaligned_inc (dbg, readp);
1195 : 0 : unsigned int offset_size = 4;
1196 [ # # ]: 0 : if (unlikely (unit_length == 0xffffffff))
1197 : : {
1198 [ # # ]: 0 : if (unlikely (readp > dataend - 8))
1199 : 0 : goto no_header;
1200 : :
1201 [ # # ]: 0 : unit_length = read_8ubyte_unaligned_inc (dbg, readp);
1202 : 0 : offset_size = 8;
1203 : : }
1204 : :
1205 [ # # ]: 0 : if (readp > dataend - 8
1206 [ # # ]: 0 : || unit_length < 8
1207 [ # # ]: 0 : || unit_length > (uint64_t) (dataend - readp))
1208 : 0 : goto no_header;
1209 : :
1210 [ # # ]: 0 : uint16_t version = read_2ubyte_unaligned_inc (dbg, readp);
1211 [ # # ]: 0 : if (version != 5)
1212 : 0 : goto no_header;
1213 : :
1214 : 0 : uint8_t address_size = *readp++;
1215 [ # # ]: 0 : if (address_size != 4 && address_size != 8)
1216 : 0 : goto no_header;
1217 : :
1218 : 0 : uint8_t segment_size = *readp++;
1219 [ # # ]: 0 : if (segment_size != 0)
1220 : 0 : goto no_header;
1221 : :
1222 : 0 : uint32_t offset_entry_count;
1223 [ # # ]: 0 : offset_entry_count = read_4ubyte_unaligned_inc (dbg, readp);
1224 : :
1225 : 0 : const unsigned char *offset_array_start = readp;
1226 [ # # ]: 0 : if (offset_entry_count <= 0)
1227 : 0 : goto no_header;
1228 : :
1229 : 0 : uint64_t needed = offset_entry_count * offset_size;
1230 [ # # ]: 0 : if (unit_length - 8 < needed)
1231 : 0 : goto no_header;
1232 : :
1233 : 0 : offset = (Dwarf_Off) (offset_array_start
1234 : 0 : - (unsigned char *) data->d_buf);
1235 : : }
1236 : : }
1237 : 2 : no_header:
1238 : 10 : cu->ranges_base = offset;
1239 : : }
1240 : :
1241 : 28 : return cu->ranges_base;
1242 : : }
1243 : :
1244 : :
1245 : : /* The start of the offset table in .debug_loclists for DWARF5. */
1246 : : static inline Dwarf_Off
1247 : 134 : __libdw_cu_locs_base (Dwarf_CU *cu)
1248 : : {
1249 [ + + ]: 134 : if (cu->locs_base == (Dwarf_Off) -1)
1250 : : {
1251 : 4 : Dwarf_Off offset = 0;
1252 : 4 : Dwarf_Die cu_die = CUDIE(cu);
1253 : 4 : Dwarf_Attribute attr;
1254 [ + - ]: 4 : if (dwarf_attr (&cu_die, DW_AT_loclists_base, &attr) != NULL)
1255 : : {
1256 : 4 : Dwarf_Word off;
1257 [ + - ]: 4 : if (dwarf_formudata (&attr, &off) == 0)
1258 : 4 : offset = off;
1259 : : }
1260 : :
1261 : : /* There wasn't an loclists_base, if the Dwarf does have a
1262 : : .debug_loclists section, then it might be we need the
1263 : : base after the first header. */
1264 : 4 : Elf_Data *data = cu->dbg->sectiondata[IDX_debug_loclists];
1265 [ - + ]: 4 : if (offset == 0 && data != NULL)
1266 : : {
1267 : 4 : Dwarf *dbg = cu->dbg;
1268 : 4 : const unsigned char *readp = data->d_buf;
1269 : 4 : const unsigned char *const dataend
1270 : 4 : = (unsigned char *) data->d_buf + data->d_size;
1271 : :
1272 [ - + ]: 4 : uint64_t unit_length = read_4ubyte_unaligned_inc (dbg, readp);
1273 : 4 : unsigned int offset_size = 4;
1274 [ - + ]: 4 : if (unlikely (unit_length == 0xffffffff))
1275 : : {
1276 [ # # ]: 0 : if (unlikely (readp > dataend - 8))
1277 : 0 : goto no_header;
1278 : :
1279 [ # # ]: 0 : unit_length = read_8ubyte_unaligned_inc (dbg, readp);
1280 : 0 : offset_size = 8;
1281 : : }
1282 : :
1283 [ + - ]: 4 : if (readp > dataend - 8
1284 [ + - ]: 4 : || unit_length < 8
1285 [ - + ]: 4 : || unit_length > (uint64_t) (dataend - readp))
1286 : 0 : goto no_header;
1287 : :
1288 [ - + ]: 4 : uint16_t version = read_2ubyte_unaligned_inc (dbg, readp);
1289 [ - + ]: 4 : if (version != 5)
1290 : 0 : goto no_header;
1291 : :
1292 : 4 : uint8_t address_size = *readp++;
1293 [ - + ]: 4 : if (address_size != 4 && address_size != 8)
1294 : 0 : goto no_header;
1295 : :
1296 : 4 : uint8_t segment_size = *readp++;
1297 [ - + ]: 4 : if (segment_size != 0)
1298 : 0 : goto no_header;
1299 : :
1300 : 4 : uint32_t offset_entry_count;
1301 [ - + ]: 4 : offset_entry_count = read_4ubyte_unaligned_inc (dbg, readp);
1302 : :
1303 : 4 : const unsigned char *offset_array_start = readp;
1304 [ - + ]: 4 : if (offset_entry_count <= 0)
1305 : 0 : goto no_header;
1306 : :
1307 : 4 : uint64_t needed = offset_entry_count * offset_size;
1308 [ - + ]: 4 : if (unit_length - 8 < needed)
1309 : 0 : goto no_header;
1310 : :
1311 : 4 : offset = (Dwarf_Off) (offset_array_start
1312 : 4 : - (unsigned char *) data->d_buf);
1313 : : }
1314 : :
1315 : 0 : no_header:
1316 : 4 : cu->locs_base = offset;
1317 : : }
1318 : :
1319 : 134 : return cu->locs_base;
1320 : : }
1321 : :
1322 : : /* Helper function for tsearch/tfind split_tree Dwarf. */
1323 : : int __libdw_finddbg_cb (const void *arg1, const void *arg2);
1324 : :
1325 : : /* Link skeleton and split compile units. */
1326 : : static inline void
1327 : 96 : __libdw_link_skel_split (Dwarf_CU *skel, Dwarf_CU *split)
1328 : : {
1329 : 96 : skel->split = split;
1330 : 96 : split->split = skel;
1331 : :
1332 : : /* Get .debug_addr and addr_base greedy.
1333 : : We also need it for the fake addr cu.
1334 : : There is only one per split debug. */
1335 : 96 : Dwarf *dbg = skel->dbg;
1336 : 96 : Dwarf *sdbg = split->dbg;
1337 [ + - ]: 96 : if (sdbg->sectiondata[IDX_debug_addr] == NULL
1338 [ + - ]: 96 : && dbg->sectiondata[IDX_debug_addr] != NULL)
1339 : : {
1340 : 96 : sdbg->sectiondata[IDX_debug_addr]
1341 : 96 : = dbg->sectiondata[IDX_debug_addr];
1342 : 96 : split->addr_base = __libdw_cu_addr_base (skel);
1343 : 96 : sdbg->fake_addr_cu = dbg->fake_addr_cu;
1344 : : }
1345 : 96 : }
1346 : :
1347 : :
1348 : : /* Given an address index for a CU return the address.
1349 : : Returns -1 and sets libdw_errno if an error occurs. */
1350 : : int __libdw_addrx (Dwarf_CU *cu, Dwarf_Word idx, Dwarf_Addr *addr);
1351 : :
1352 : :
1353 : : /* Helper function to set debugdir field in Dwarf, used from dwarf_begin_elf
1354 : : and libdwfl process_file. */
1355 : : char * __libdw_debugdir (int fd);
1356 : :
1357 : :
1358 : : /* Given the directory of a debug file, an absolute or relative dir
1359 : : to look in, and file returns a full path.
1360 : :
1361 : : If the file is absolute (starts with a /) a copy of file is returned.
1362 : : the file isn't absolute, but dir is absolute, then a path that is
1363 : : the concatenation of dir and file is returned. If neither file,
1364 : : nor dir is absolute, the path will be constructed using dir (if not
1365 : : NULL) and file relative to the debugdir (if valid).
1366 : :
1367 : : The debugdir and the dir may be NULL (in which case they aren't used).
1368 : : If file is NULL, or no full path can be constructed NULL is returned.
1369 : :
1370 : : The caller is responsible for freeing the result if not NULL. */
1371 : : char * __libdw_filepath (const char *debugdir, const char *dir,
1372 : : const char *file)
1373 : : internal_function;
1374 : :
1375 : :
1376 : : /* Aliases to avoid PLTs. */
1377 : : INTDECL (dwarf_aggregate_size)
1378 : : INTDECL (dwarf_attr)
1379 : : INTDECL (dwarf_attr_integrate)
1380 : : INTDECL (dwarf_begin)
1381 : : INTDECL (dwarf_begin_elf)
1382 : : INTDECL (dwarf_child)
1383 : : INTDECL (dwarf_default_lower_bound)
1384 : : INTDECL (dwarf_dieoffset)
1385 : : INTDECL (dwarf_diename)
1386 : : INTDECL (dwarf_end)
1387 : : INTDECL (dwarf_entrypc)
1388 : : INTDECL (dwarf_errmsg)
1389 : : INTDECL (dwarf_formaddr)
1390 : : INTDECL (dwarf_formblock)
1391 : : INTDECL (dwarf_formref_die)
1392 : : INTDECL (dwarf_formsdata)
1393 : : INTDECL (dwarf_formstring)
1394 : : INTDECL (dwarf_formudata)
1395 : : INTDECL (dwarf_getabbrevattr_data)
1396 : : INTDECL (dwarf_getalt)
1397 : : INTDECL (dwarf_getarange_addr)
1398 : : INTDECL (dwarf_getarangeinfo)
1399 : : INTDECL (dwarf_getaranges)
1400 : : INTDECL (dwarf_getlocation_die)
1401 : : INTDECL (dwarf_getsrcfiles)
1402 : : INTDECL (dwarf_getsrclines)
1403 : : INTDECL (dwarf_hasattr)
1404 : : INTDECL (dwarf_haschildren)
1405 : : INTDECL (dwarf_haspc)
1406 : : INTDECL (dwarf_highpc)
1407 : : INTDECL (dwarf_lowpc)
1408 : : INTDECL (dwarf_nextcu)
1409 : : INTDECL (dwarf_next_unit)
1410 : : INTDECL (dwarf_offdie)
1411 : : INTDECL (dwarf_peel_type)
1412 : : INTDECL (dwarf_ranges)
1413 : : INTDECL (dwarf_setalt)
1414 : : INTDECL (dwarf_siblingof)
1415 : : INTDECL (dwarf_srclang)
1416 : : INTDECL (dwarf_tag)
1417 : :
1418 : : #endif /* libdwP.h */
|