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