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
|
/*
Copyright (C) 2000,2002,2003,2004,2005 Silicon Graphics, Inc. All Rights Reserved.
Portions Copyright (C) 2008-2010 Arxan Technologies, Inc. All Rights Reserved.
Portions Copyright (C) 2009-2016 David Anderson. All Rights Reserved.
Portions Copyright (C) 2010-2012 SN Systems Ltd. All Rights Reserved.
This program is free software; you can redistribute it and/or modify it
under the terms of version 2.1 of the GNU Lesser General Public License
as published by the Free Software Foundation.
This program is distributed in the hope that it would be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Further, this software is distributed without any warranty that it is
free of the rightful claim of any third person regarding infringement
or the like. Any license provided herein, whether implied or
otherwise, applies only to this software file. Patent licenses, if
any, provided herein do not apply to combinations of this program with
other software, or any other product whatsoever.
You should have received a copy of the GNU Lesser General Public
License along with this program; if not, write the Free Software
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston MA 02110-1301,
USA.
*/
#include "config.h"
#include "dwarf_incl.h"
#include <stdio.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <string.h>
#include <stdlib.h>
#include "dwarf_incl.h"
#include "dwarf_harmless.h"
/* For consistency, use the HAVE_LIBELF_H symbol */
#ifdef HAVE_ELF_H
#include <elf.h>
#endif
#ifdef HAVE_LIBELF_H
#include <libelf.h>
#else
#ifdef HAVE_LIBELF_LIBELF_H
#include <libelf/libelf.h>
#endif
#endif
#ifdef HAVE_ZLIB
#include "zlib.h"
#endif
#ifndef ELFCOMPRESS_ZLIB
#define ELFCOMPRESS_ZLIB 1
#endif
/* If your mingw elf.h is missing SHT_RELA and you do not
need SHT_RELA support
this define should work for you.
It is the elf value, hopefully it will
not cause trouble. If does not work, try -1
or something else
and let us know what works. */
#ifndef SHT_RELA
#define SHT_RELA 4
#endif
#define DWARF_DBG_ERROR(dbg,errval,retval) \
_dwarf_error(dbg, error, errval); return(retval);
#define FALSE 0
#define TRUE 1
/* Global definition of the function pointer type, typedef
in dwarf_opaque.h */
_dwarf_get_elf_flags_func_ptr_type _dwarf_get_elf_flags_func_ptr;
/* This static is copied to the dbg on dbg init
so that the static need not be referenced at
run time, preserving better locality of
reference.
Value is 0 means do the string check.
Value non-zero means do not do the check.
*/
static Dwarf_Small _dwarf_assume_string_in_bounds;
static Dwarf_Small _dwarf_apply_relocs = 1;
/* Call this after calling dwarf_init but before doing anything else.
It applies to all objects, not just the current object. */
int
dwarf_set_reloc_application(int apply)
{
int oldval = _dwarf_apply_relocs;
_dwarf_apply_relocs = apply;
return oldval;
}
int
dwarf_set_stringcheck(int newval)
{
int oldval = _dwarf_assume_string_in_bounds;
_dwarf_assume_string_in_bounds = newval;
return oldval;
}
/* Unifies the basic duplicate/empty testing and section
data setting to one place. */
static int
get_basic_section_data(Dwarf_Debug dbg,
struct Dwarf_Section_s *secdata,
struct Dwarf_Obj_Access_Section_s *doas,
Dwarf_Half section_index,
Dwarf_Error* error,
int duperr, int emptyerr )
{
/* There is an elf convention that section index 0 is reserved,
and that section is always empty.
Non-elf object formats must honor that by ensuring that
(when they assign numbers to 'sections' or 'section-like-things')
they never assign a real section section-number 0 to dss_index. */
if (secdata->dss_index != 0) {
DWARF_DBG_ERROR(dbg, duperr, DW_DLV_ERROR);
}
if (doas->size == 0) {
if (emptyerr == 0 ) {
/* Allow empty section. */
return DW_DLV_OK;
}
/* Know no reason to allow section */
DWARF_DBG_ERROR(dbg, emptyerr, DW_DLV_ERROR);
}
secdata->dss_index = section_index;
secdata->dss_size = doas->size;
secdata->dss_addr = doas->addr;
secdata->dss_link = doas->link;
secdata->dss_entrysize = doas->entrysize;
if (_dwarf_get_elf_flags_func_ptr) {
/* We do this so we do not need to update the public struct
Dwarf_Obj_Access_Section_s and thereby cause
binary and source incompatibility. */
Dwarf_Unsigned flags = 0;
Dwarf_Unsigned addralign = 0;
int res = 0;
int interr = 0;
struct Dwarf_Obj_Access_Interface_s *o = 0;
o = dbg->de_obj_file;
res = _dwarf_get_elf_flags_func_ptr(
o->object, section_index,
&flags,&addralign,
&interr);
if (res == DW_DLV_ERROR) {
/* Should never get here. */
DWARF_DBG_ERROR(dbg, interr, DW_DLV_ERROR);
}
if (res == DW_DLV_NO_ENTRY) {
return res;
}
secdata->dss_flags = flags;
secdata->dss_addralign = addralign;
if (flags & SHF_COMPRESSED) {
secdata->dss_requires_decompress = TRUE;
}
}
return DW_DLV_OK;
}
static void
add_rela_data( struct Dwarf_Section_s *secdata,
struct Dwarf_Obj_Access_Section_s *doas,
Dwarf_Half section_index)
{
secdata->dss_reloc_index = section_index;
secdata->dss_reloc_size = doas->size;
secdata->dss_reloc_entrysize = doas->entrysize;
secdata->dss_reloc_addr = doas->addr;
secdata->dss_reloc_symtab = doas->link;
secdata->dss_reloc_link = doas->link;
}
/* Used to add the specific information for a debug related section
Called on each section of interest by section name.
DWARF_MAX_DEBUG_SECTIONS must be large enough to allow
that all sections of interest fit in the table.
returns DW_DLV_ERROR or DW_DLV_OK.
*/
static int
add_debug_section_info(Dwarf_Debug dbg,
/* Name as seen in object file. */
const char *name,
unsigned obj_sec_num,
struct Dwarf_Section_s *secdata,
/* The have_dwarf flag is a somewhat imprecise
way to determine if there is at least one 'meaningful'
DWARF information section present in the object file.
If not set on some section we claim (later) that there
is no DWARF info present. see 'foundDwarf' in this file */
int duperr,int emptyerr,int have_dwarf,
int havezdebug,
int *err)
{
unsigned total_entries = dbg->de_debug_sections_total_entries;
if (secdata->dss_is_in_use) {
*err = duperr;
return DW_DLV_ERROR;
}
if (total_entries < DWARF_MAX_DEBUG_SECTIONS) {
struct Dwarf_dbg_sect_s *debug_section =
&dbg->de_debug_sections[total_entries];
secdata->dss_is_in_use = TRUE;
debug_section->ds_name = name;
debug_section->ds_number = obj_sec_num;
debug_section->ds_secdata = secdata;
secdata->dss_name = name;
secdata->dss_number = obj_sec_num;
secdata->dss_requires_decompress = havezdebug;
debug_section->ds_duperr = duperr;
debug_section->ds_emptyerr = emptyerr;
debug_section->ds_have_dwarf = have_dwarf;
debug_section->ds_have_zdebug = havezdebug;
++dbg->de_debug_sections_total_entries;
return DW_DLV_OK;
}
/* This represents a bug in libdwarf.
Mis-setup-DWARF_MAX_DEBUG_SECTIONS.
Or possibly a use of section groups that is
not supported. */
*err = DW_DLE_TOO_MANY_DEBUG;
return DW_DLV_ERROR;
}
#if 0 /* FOR DEBUGGING */
static void
dump_bytes(Dwarf_Small * start, long len)
{
Dwarf_Small *end = start + len;
Dwarf_Small *cur = start;
for (; cur < end; cur++) {
printf(" byte %d, data %02x\n", (int) (cur - start), *cur);
}
}
static int
all_sig8_bits_zero(Dwarf_Sig8 *val)
{
unsigned u = 0;
for( ; u < sizeof(*val); ++u) {
if (val->signature[u] != 0) {
return FALSE;
}
}
return TRUE;
}
#endif
/* Return DW_DLV_OK etc. */
static int
set_up_section(Dwarf_Debug dbg,
/* Section name from object format. */
const char *secname,
/* Section number from object format */
unsigned obj_sec_num,
/* The name associated with this secdata */
const char *targname,
struct Dwarf_Section_s *secdata,
int duperr,int emptyerr,int have_dwarf,
int *err)
{
/* Here accomodate the .debug or .zdebug version, (and of
course non- .debug too, but those never zlib) .
SECNAMEMAX should be a little bigger than any section
name we care about as possibly compressed. */
#define SECNAMEMAX 30
char buildsecname[SECNAMEMAX];
unsigned secnamelen = strlen(secname);
static const char *dprefix = ".debug_";
static const char *zprefix = ".zdebug_";
int havezdebug = FALSE;
unsigned targnamelen = strlen(targname);
const char *finalname = targname;
if(secnamelen < SECNAMEMAX && strncmp(secname,zprefix,8) == 0) {
strcpy(buildsecname,zprefix);
/* Now lets see if a targname updated with z matches
secname. */
/* 2 ensures NUL and added 'z' are ok */
if ((targnamelen+2) < SECNAMEMAX && strncmp(targname,dprefix,7) == 0 ){
strcat(buildsecname,targname+7);
/* We turned tarname .debug_info to .zdebug_info, for example. */
finalname = buildsecname;
if (strcmp(finalname,secname) == 0) {
havezdebug = TRUE;
}
}
}
if(!strcmp(secname,finalname)) {
/* The section name is a match with targname, or
the .zdebug version of targname. */
int sectionerr = add_debug_section_info(dbg,secname,
obj_sec_num,
secdata,
duperr,emptyerr, have_dwarf,
havezdebug,err);
if (sectionerr != DW_DLV_OK) {
/* *err is set already */
return sectionerr;
}
return DW_DLV_OK;
}
/* This is not the target section.
our caller will keep looking. */
return DW_DLV_NO_ENTRY;
}
#define SET_UP_SECTION(mdbg,mname,mtarg,minfo,me1,me2,mdw,mer) \
{ \
int lerr = 0; \
lerr = set_up_section(mdbg, mname, \
/* scn_number from macro use context */ \
scn_number,mtarg, \
minfo, \
me1,me2,mdw,mer); \
if (lerr != DW_DLV_NO_ENTRY) { \
return lerr; \
} /* else fall through. */ \
}
/* If running this long set of tests is slow
enough to matter one could set up a local
tsearch tree with all this content and search
it instead of this set of sequential tests.
Or use a switch(){} here with a search tree
to to turn name into index for the switch(). */
static int
enter_section_in_de_debug_sections_array(Dwarf_Debug dbg,
const char *scn_name,
/* This is the number of the section in the object file. */
unsigned scn_number,
int *err)
{
/* Setup the table that contains the basic information about the
sections that are DWARF related. The entries are very unlikely
to change very often. */
SET_UP_SECTION(dbg,scn_name,".debug_info",
&dbg->de_debug_info,
DW_DLE_DEBUG_INFO_DUPLICATE,DW_DLE_DEBUG_INFO_NULL,
TRUE,err);
SET_UP_SECTION(dbg,scn_name,".debug_info.dwo",
&dbg->de_debug_info,
DW_DLE_DEBUG_INFO_DUPLICATE,DW_DLE_DEBUG_INFO_NULL,
TRUE,err);
SET_UP_SECTION(dbg,scn_name,".debug_types",
&dbg->de_debug_types,
DW_DLE_DEBUG_TYPES_DUPLICATE,DW_DLE_DEBUG_TYPES_NULL,
TRUE,err);
SET_UP_SECTION(dbg,scn_name,".debug_types.dwo",
&dbg->de_debug_types,
DW_DLE_DEBUG_TYPES_DUPLICATE,DW_DLE_DEBUG_TYPES_NULL,
TRUE,err);
SET_UP_SECTION(dbg,scn_name,".debug_abbrev",
&dbg->de_debug_abbrev, /*03*/
DW_DLE_DEBUG_ABBREV_DUPLICATE,DW_DLE_DEBUG_ABBREV_NULL,
FALSE,err);
SET_UP_SECTION(dbg,scn_name,".debug_abbrev.dwo",
&dbg->de_debug_abbrev, /*03*/
DW_DLE_DEBUG_ABBREV_DUPLICATE,DW_DLE_DEBUG_ABBREV_NULL,
FALSE,err);
SET_UP_SECTION(dbg,scn_name,".debug_aranges",
&dbg->de_debug_aranges,
DW_DLE_DEBUG_ARANGES_DUPLICATE,0,
FALSE,err);
SET_UP_SECTION(dbg,scn_name,".debug_line",
&dbg->de_debug_line,
DW_DLE_DEBUG_LINE_DUPLICATE,0,
FALSE,err);
/* DWARF5 */
SET_UP_SECTION(dbg,scn_name,".debug_line_str",
&dbg->de_debug_line_str,
DW_DLE_DEBUG_LINE_DUPLICATE,0,
FALSE,err);
SET_UP_SECTION(dbg,scn_name,".debug_line.dwo",
&dbg->de_debug_line,
DW_DLE_DEBUG_LINE_DUPLICATE,0,
FALSE,err);
SET_UP_SECTION(dbg,scn_name,".debug_frame",
&dbg->de_debug_frame,
DW_DLE_DEBUG_FRAME_DUPLICATE,0,
TRUE,err);
/* gnu egcs-1.1.2 data */
SET_UP_SECTION(dbg,scn_name,".eh_frame",
&dbg->de_debug_frame_eh_gnu,
DW_DLE_DEBUG_FRAME_DUPLICATE,0,
TRUE,err);
SET_UP_SECTION(dbg,scn_name,".debug_loc",
&dbg->de_debug_loc,
DW_DLE_DEBUG_LOC_DUPLICATE,0,
FALSE,err);
SET_UP_SECTION(dbg,scn_name,".debug_loc.dwo",
&dbg->de_debug_loc,
DW_DLE_DEBUG_LOC_DUPLICATE,0,
FALSE,err);
SET_UP_SECTION(dbg,scn_name,".debug_pubnames",
&dbg->de_debug_pubnames,
DW_DLE_DEBUG_PUBNAMES_DUPLICATE,0,
FALSE,err);
SET_UP_SECTION(dbg,scn_name,".debug_str",
&dbg->de_debug_str,
DW_DLE_DEBUG_STR_DUPLICATE,0,
FALSE,err);
SET_UP_SECTION(dbg,scn_name,".debug_str.dwo",
&dbg->de_debug_str,
DW_DLE_DEBUG_STR_DUPLICATE,0,
FALSE,err);
/* Section new in DWARF3. */
SET_UP_SECTION(dbg,scn_name,".debug_pubtypes",
&dbg->de_debug_pubtypes,
/*13*/ DW_DLE_DEBUG_PUBTYPES_DUPLICATE,0,
FALSE,err);
/* DWARF5 */
SET_UP_SECTION(dbg,scn_name,".debug_names",
&dbg->de_debug_names,
/*13*/ DW_DLE_DEBUG_NAMES_DUPLICATE,0,
FALSE,err);
/* DWARF5 */
SET_UP_SECTION(dbg,scn_name,".debug_loclists",
&dbg->de_debug_loclists,
/*13*/ DW_DLE_DEBUG_LOClISTS_DUPLICATE,0,
FALSE,err);
/* DWARF5 */
SET_UP_SECTION(dbg,scn_name,".debug_loclists.dwo",
&dbg->de_debug_loclists,
/*13*/ DW_DLE_DEBUG_LOClISTS_DUPLICATE,0,
FALSE,err);
/* DWARF5 */
SET_UP_SECTION(dbg,scn_name,".debug_rnglists",
&dbg->de_debug_rnglists,
/*13*/ DW_DLE_DEBUG_RNGLISTS_DUPLICATE,0,
FALSE,err);
/* DWARF5 */
SET_UP_SECTION(dbg,scn_name,".debug_rnglists.dwo",
&dbg->de_debug_rnglists,
/*13*/ DW_DLE_DEBUG_RNGLISTS_DUPLICATE,0,
FALSE,err);
/* DWARF5 */
SET_UP_SECTION(dbg,scn_name,".debug_str_offsets",
&dbg->de_debug_str_offsets,
DW_DLE_DEBUG_STR_OFFSETS_DUPLICATE,0,
FALSE,err);
/* DWARF5 */
SET_UP_SECTION(dbg,scn_name,".debug_str_offsets.dwo",
&dbg->de_debug_str_offsets,
DW_DLE_DEBUG_STR_OFFSETS_DUPLICATE,0,
FALSE,err);
/* SGI IRIX-only. */
SET_UP_SECTION(dbg,scn_name,".debug_funcnames",
&dbg->de_debug_funcnames,
/*11*/ DW_DLE_DEBUG_FUNCNAMES_DUPLICATE,0,
FALSE,err);
/* SGI IRIX-only, created years before DWARF3. Content
essentially identical to .debug_pubtypes. */
SET_UP_SECTION(dbg,scn_name,".debug_typenames",
&dbg->de_debug_typenames,
/*12*/ DW_DLE_DEBUG_TYPENAMES_DUPLICATE,0,
FALSE,err);
/* SGI IRIX-only. */
SET_UP_SECTION(dbg,scn_name,".debug_varnames",
&dbg->de_debug_varnames,
DW_DLE_DEBUG_VARNAMES_DUPLICATE,0,
FALSE,err);
/* SGI IRIX-only. */
SET_UP_SECTION(dbg,scn_name,".debug_weaknames",
&dbg->de_debug_weaknames,
DW_DLE_DEBUG_WEAKNAMES_DUPLICATE,0,
FALSE,err);
SET_UP_SECTION(dbg,scn_name,".debug_macinfo",
&dbg->de_debug_macinfo,
DW_DLE_DEBUG_MACINFO_DUPLICATE,0,
TRUE,err);
/* ".debug_macinfo.dwo" is not allowed. */
/* DWARF5 */
SET_UP_SECTION(dbg,scn_name,".debug_macro",
&dbg->de_debug_macro,
DW_DLE_DEBUG_MACRO_DUPLICATE,0,
TRUE,err);
/* DWARF5 */
SET_UP_SECTION(dbg,scn_name,".debug_macro.dwo",
&dbg->de_debug_macro,
DW_DLE_DEBUG_MACRO_DUPLICATE,0,
TRUE,err);
SET_UP_SECTION(dbg,scn_name,".debug_ranges",
&dbg->de_debug_ranges,
DW_DLE_DEBUG_RANGES_DUPLICATE,0,
TRUE,err);
/* No .debug_ranges.dwo allowed. */
/* New DWARF5 */
SET_UP_SECTION(dbg,scn_name,".debug_sup",
&dbg->de_debug_sup,
DW_DLE_DEBUG_SUP_DUPLICATE,0,
TRUE,err);
/* No .debug_sup.dwo allowed. */
SET_UP_SECTION(dbg,scn_name,".symtab",
&dbg->de_elf_symtab,
DW_DLE_DEBUG_SYMTAB_ERR,0,
FALSE,err);
SET_UP_SECTION(dbg,scn_name,".strtab",
&dbg->de_elf_strtab,
DW_DLE_DEBUG_STRTAB_ERR,0,
FALSE,err);
/* New DWARF5 */
SET_UP_SECTION(dbg,scn_name,".debug_addr",
&dbg->de_debug_addr,
DW_DLE_DEBUG_ADDR_DUPLICATE,0,
TRUE,err);
/* No .debug_addr.dwo allowed. */
/* gdb added this. */
SET_UP_SECTION(dbg,scn_name,".gdb_index",
&dbg->de_debug_gdbindex,
DW_DLE_DUPLICATE_GDB_INDEX,0,
FALSE,err);
/* New DWARF5 */
SET_UP_SECTION(dbg,scn_name,".debug_names",
&dbg->de_debug_names,
DW_DLE_DEBUG_NAMES_DUPLICATE,0,
FALSE,err);
/* No .debug_names.dwo allowed. */
/* gdb added this in DW4. It is in standard DWARF5 */
SET_UP_SECTION(dbg,scn_name,".debug_cu_index",
&dbg->de_debug_cu_index,
DW_DLE_DUPLICATE_CU_INDEX,0,
FALSE,err);
/* gdb added this in DW4. It is in standard DWARF5 */
SET_UP_SECTION(dbg,scn_name,".debug_tu_index",
&dbg->de_debug_tu_index,
DW_DLE_DUPLICATE_TU_INDEX,0,
FALSE,err);
return DW_DLV_NO_ENTRY;
}
static int
is_section_known_already(Dwarf_Debug dbg,
const char *scn_name,
unsigned *found_section_number,
unsigned start_number,
UNUSEDARG int *err)
{
unsigned i = start_number;
for ( ; i < dbg->de_debug_sections_total_entries; ++i) {
struct Dwarf_dbg_sect_s *section = &dbg->de_debug_sections[i];
if (!strcmp(scn_name, section->ds_name)) {
*found_section_number = i;
return DW_DLV_OK;
}
}
return DW_DLV_NO_ENTRY;
}
/* Given an Elf ptr, set up dbg with pointers
to all the Dwarf data sections.
Return NULL on error.
This function is also responsible for determining
whether the given object contains Dwarf information
or not. The test currently used is that it contains
either a .debug_info or a .debug_frame section. If
not, it returns DW_DLV_NO_ENTRY causing dwarf_init() also to
return DW_DLV_NO_ENTRY. Earlier, we had thought of using only
the presence/absence of .debug_info to test, but we
added .debug_frame since there could be stripped objects
that have only a .debug_frame section for exception
processing.
DW_DLV_NO_ENTRY or DW_DLV_OK or DW_DLV_ERROR
This does not allow for section-groups in object files,
for which many .debug_info (and other DWARF) sections may exist.
We process. .rela (SHT_RELA) but not .rel (SHT_REL)
sections because with .rela the referencing section
offset value is zero whereas with .rel the
referencing section value is already correct for
the object itself. In other words, we do it because
of the definition of .rela relocations in Elf.
*/
static int
this_section_dwarf_relevant(const char *scn_name,int type)
{
/* A small helper function for _dwarf_setup(). */
if (0 ==strncmp(scn_name, ".zdebug_", 8) ||
0 == strncmp(scn_name, ".debug_", 7) ) {
return TRUE;
}
if( strcmp(scn_name, ".eh_frame")
&& strcmp(scn_name, ".symtab")
&& strcmp(scn_name, ".strtab")
&& strcmp(scn_name, ".gdb_index")
&& strncmp(scn_name, ".rela.",6)
/* For an object file with incorrect rela section name,
readelf prints correct debug information,
as the tool takes the section type instead
of the section name. Include the incorrect
section name, until this test uses the section type. */
&& type != SHT_RELA) {
/* Other sections should be ignored, they
are not relevant for DWARF data. */
return FALSE;
}
/* This is one of ours. */
return TRUE;
}
static int
_dwarf_setup(Dwarf_Debug dbg, Dwarf_Error * error)
{
const char *scn_name = 0;
int foundDwarf = 0;
struct Dwarf_Obj_Access_Interface_s * obj = 0;
Dwarf_Endianness endianness;
/* Table with pointers to debug sections */
struct Dwarf_Section_s **sections = 0;
Dwarf_Unsigned section_count = 0;
unsigned obj_section_index = 0;
foundDwarf = FALSE;
dbg->de_assume_string_in_bounds = _dwarf_assume_string_in_bounds;
dbg->de_same_endian = 1;
dbg->de_copy_word = memcpy;
obj = dbg->de_obj_file;
endianness = obj->methods->get_byte_order(obj->object);
#ifdef WORDS_BIGENDIAN
dbg->de_big_endian_object = 1;
if (endianness == DW_OBJECT_LSB ) {
dbg->de_same_endian = 0;
dbg->de_big_endian_object = 0;
dbg->de_copy_word = _dwarf_memcpy_swap_bytes;
}
#else /* little endian */
dbg->de_big_endian_object = 0;
if (endianness == DW_OBJECT_MSB ) {
dbg->de_same_endian = 0;
dbg->de_big_endian_object = 1;
dbg->de_copy_word = _dwarf_memcpy_swap_bytes;
}
#endif /* !WORDS_BIGENDIAN */
/* The following de_length_size is Not Too Significant. Only used
one calculation, and an approximate one at that. */
dbg->de_length_size = obj->methods->get_length_size(obj->object);
dbg->de_pointer_size = obj->methods->get_pointer_size(obj->object);
section_count = obj->methods->get_section_count(obj->object);
/* Allocate space to record references to debug sections, that can
be referenced by RELA sections in the 'sh_info' field. */
sections = (struct Dwarf_Section_s **)calloc(section_count + 1,
sizeof(struct Dwarf_Section_s *));
if (!sections) {
/* Impossible case, we hope. Give up. */
_dwarf_error(dbg, error, DW_DLE_SECTION_ERROR);
return DW_DLV_ERROR;
}
/* We can skip index 0 when considering ELF files, but not other
object types. Indeed regardless of the object type we should
skip section 0 here.
This is a convention. We depend on it.
Non-elf object access code should
(in itself) understand we will index beginning at 1 and adjust
itself to deal with this Elf convention. Without this
convention various parts of the code in this file won't work correctly.
A dss_index of 0 must not be used, even though we start at 0
here. So the get_section_info() must adapt to the situation
(the elf version does automatically as a result of Elf having
a section zero with zero length and an empty name). */
for (obj_section_index = 0; obj_section_index < section_count;
++obj_section_index) {
struct Dwarf_Obj_Access_Section_s doas;
int res = DW_DLV_ERROR;
int err = 0;
memset(&doas,0,sizeof(doas));
res = obj->methods->get_section_info(obj->object,
obj_section_index,
&doas, &err);
if (res == DW_DLV_NO_ENTRY){
free(sections);
return res;
} else if (res == DW_DLV_ERROR){
free(sections);
DWARF_DBG_ERROR(dbg, err, DW_DLV_ERROR);
}
scn_name = doas.name;
if (!this_section_dwarf_relevant(scn_name,doas.type) ) {
continue;
} else {
/* Build up the sections table and the
de_debug* etc pointers in Dwarf_Debug. */
struct Dwarf_dbg_sect_s *section;
int found_match = FALSE;
unsigned initial_start_number = 0;
unsigned dbg_section_number = 0;
res = is_section_known_already(dbg,scn_name,
&dbg_section_number,
initial_start_number,
&err);
if (res == DW_DLV_OK) {
/* DUPLICATE */
free(sections);
DWARF_DBG_ERROR(dbg, DW_DLE_SECTION_DUPLICATION,
DW_DLV_ERROR);
} else if (res == DW_DLV_ERROR) {
free(sections);
DWARF_DBG_ERROR(dbg, err, DW_DLV_ERROR);
}
/* No entry: new-to-us section, the normal case. */
res = enter_section_in_de_debug_sections_array(dbg,scn_name,
obj_section_index,&err);
if (res == DW_DLV_OK) {
/* We just added a new entry in the dbg
de_debug_sections array. So we know its number. */
unsigned real_start_number =
dbg->de_debug_sections_total_entries-1;
res = is_section_known_already(dbg,scn_name,
&dbg_section_number,
real_start_number,
&err);
if (res == DW_DLV_OK) {
section = &dbg->de_debug_sections[dbg_section_number];
res = get_basic_section_data(dbg,
section->ds_secdata, &doas,
obj_section_index, error,
section->ds_duperr,
section->ds_emptyerr);
if (res != DW_DLV_OK) {
free(sections);
return res;
}
sections[obj_section_index] = section->ds_secdata;
foundDwarf += section->ds_have_dwarf;
found_match = TRUE;
/* Normal section set up.
Fall through. */
}else if (res == DW_DLV_NO_ENTRY) {
/* Some sort of bug in the code here.
Should be impossible to get here. */
free(sections);
DWARF_DBG_ERROR(dbg, DW_DLE_SECTION_ERROR, DW_DLV_ERROR);
} else {
free(sections);
DWARF_DBG_ERROR(dbg, err, DW_DLV_ERROR);
}
} else if (res == DW_DLV_NO_ENTRY) {
/* We get here for relocation sections.
Fall through. */
} else {
free(sections);
DWARF_DBG_ERROR(dbg, err, DW_DLV_ERROR);
}
if (!found_match) {
/* For an object file with incorrect rela section name,
the 'readelf' tool, prints correct debug information,
as the tool takes the section type instead
of the section name. If the current section
is a RELA one and the 'sh_info'
refers to a debug section, add the relocation data. */
if (doas.type == SHT_RELA) {
if ( doas.info < section_count) {
if (sections[doas.info]) {
add_rela_data(sections[doas.info],&doas,
obj_section_index);
}
} else {
/* Something is wrong with the ELF file. */
free(sections);
DWARF_DBG_ERROR(dbg, DW_DLE_ELF_SECT_ERR, DW_DLV_ERROR);
}
}
}
/* Fetch next section */
}
}
/* Free table with section information. */
free(sections);
if (foundDwarf) {
return DW_DLV_OK;
}
return DW_DLV_NO_ENTRY;
}
/* There is one table per CU and one per TU, and each
table refers to the associated other DWARF data
for that CU or TU.
See DW_SECT_*
In DWARF4 the type units are in .debug_types
In DWARF5 the type units are in .debug_info.
*/
static int
load_debugfission_tables(Dwarf_Debug dbg,Dwarf_Error *error)
{
int i = 0;
if (dbg->de_debug_cu_index.dss_size ==0 &&
dbg->de_debug_tu_index.dss_size ==0) {
/* This is the normal case.
No debug fission. Not a .dwp object. */
return DW_DLV_NO_ENTRY;
}
for (i = 0; i < 2; ++i) {
Dwarf_Xu_Index_Header xuptr = 0;
struct Dwarf_Section_s* dwsect = 0;
Dwarf_Unsigned version = 0;
Dwarf_Unsigned number_of_cols /* L */ = 0;
Dwarf_Unsigned number_of_CUs /* N */ = 0;
Dwarf_Unsigned number_of_slots /* M */ = 0;
const char *secname = 0;
int res = 0;
const char *type = 0;
if (i == 0) {
dwsect = &dbg->de_debug_cu_index;
type = "cu";
} else {
dwsect = &dbg->de_debug_tu_index;
type = "tu";
}
if ( !dwsect->dss_size ) {
continue;
}
res = dwarf_get_xu_index_header(dbg,type,
&xuptr,&version,&number_of_cols,
&number_of_CUs,&number_of_slots,
&secname,error);
if (res == DW_DLV_NO_ENTRY) {
continue;
}
if (res != DW_DLV_OK) {
return res;
}
if (i == 0) {
dbg->de_cu_hashindex_data = xuptr;
} else {
dbg->de_tu_hashindex_data = xuptr;
}
}
return DW_DLV_OK;
}
/*
Use a Dwarf_Obj_Access_Interface to kick things off. All other
init routines eventually use this one.
The returned Dwarf_Debug contains a copy of *obj
the callers copy of *obj may be freed whenever the caller
wishes.
*/
int
dwarf_object_init(Dwarf_Obj_Access_Interface* obj, Dwarf_Handler errhand,
Dwarf_Ptr errarg, Dwarf_Debug* ret_dbg,
Dwarf_Error* error)
{
Dwarf_Debug dbg = 0;
int setup_result = DW_DLV_OK;
dbg = _dwarf_get_debug();
if (dbg == NULL) {
DWARF_DBG_ERROR(dbg, DW_DLE_DBG_ALLOC, DW_DLV_ERROR);
}
dbg->de_errhand = errhand;
dbg->de_errarg = errarg;
dbg->de_frame_rule_initial_value = DW_FRAME_REG_INITIAL_VALUE;
dbg->de_frame_reg_rules_entry_count = DW_FRAME_LAST_REG_NUM;
#ifdef HAVE_OLD_FRAME_CFA_COL
/* DW_FRAME_CFA_COL is really only suitable for old libdwarf frame
interfaces and its value of 0 there is only usable where
(as in MIPS) register 0 has no value other than 0 so
we can use the frame table column 0 for the CFA value
(and rely on client software to know when 'register 0'
is the cfa and when to just use a value 0 for register 0).
*/
dbg->de_frame_cfa_col_number = DW_FRAME_CFA_COL;
#else
dbg->de_frame_cfa_col_number = DW_FRAME_CFA_COL3;
#endif
dbg->de_frame_same_value_number = DW_FRAME_SAME_VAL;
dbg->de_frame_undefined_value_number = DW_FRAME_UNDEFINED_VAL;
dbg->de_obj_file = obj;
setup_result = _dwarf_setup(dbg, error);
if (setup_result == DW_DLV_OK) {
int fission_result = load_debugfission_tables(dbg,error);
/* In most cases we get
setup_result == DW_DLV_NO_ENTRY here
as having debugfission (.dwp objects)
is fairly rare. */
if (fission_result == DW_DLV_ERROR) {
/* Something is very wrong. */
setup_result = fission_result;
}
}
if (setup_result != DW_DLV_OK) {
int freeresult = 0;
/* We cannot use any _dwarf_setup()
error here as
we are freeing dbg, making that error (setup
as part of dbg) stale.
Hence we have to make a new error without a dbg.
But error might be NULL and the init call
error-handler function might be set.
*/
int myerr = 0;
if ( (setup_result == DW_DLV_ERROR) && error ) {
/* Preserve our _dwarf_setup error number, but
this does not apply if error NULL. */
myerr = dwarf_errno(*error);
/* deallocate the soon-stale error pointer. */
dwarf_dealloc(dbg,*error,DW_DLA_ERROR);
*error = 0;
}
/* The status we want to return here is of _dwarf_setup,
not of the _dwarf_free_all_of_one_debug(dbg) call.
So use a local status variable for the free. */
freeresult = _dwarf_free_all_of_one_debug(dbg);
dbg = 0;
/* DW_DLV_NO_ENTRY not possible in freeresult */
if (freeresult == DW_DLV_ERROR) {
/* Use the _dwarf_setup error number.
If error is NULL the following will issue
a message on stderr and abort(), as without
dbg there is no error-handler function.
*/
_dwarf_error(NULL,error,DW_DLE_DBG_ALLOC);
return DW_DLV_ERROR;
}
if (setup_result == DW_DLV_ERROR) {
/* Use the _dwarf_setup error number.
If error is NULL the following will issue
a message on stderr and abort(), as without
dbg there is no error-handler function.
*/
_dwarf_error(NULL,error,myerr);
}
return setup_result;
}
dwarf_harmless_init(&dbg->de_harmless_errors,
DW_HARMLESS_ERROR_CIRCULAR_LIST_DEFAULT_SIZE);
*ret_dbg = dbg;
return DW_DLV_OK;
}
/* A finish routine that is completely unaware of ELF.
Frees all memory that was not previously freed by
dwarf_dealloc.
Aside frmo certain categories. */
int
dwarf_object_finish(Dwarf_Debug dbg, Dwarf_Error * error)
{
int res = _dwarf_free_all_of_one_debug(dbg);
if (res == DW_DLV_ERROR) {
DWARF_DBG_ERROR(dbg, DW_DLE_DBG_ALLOC, DW_DLV_ERROR);
}
return res;
}
#ifdef HAVE_ZLIB
/* case 1:
The input stream is assumed to contain
the four letters
ZLIB
Followed by 8 bytes of the size of the
uncompressed stream. Presented as
a big-endian binary number.
Following that is the stream to decompress.
case 2:
The section flag bit SHF_COMPRESSED (1 << 11)
must be set.
we then do the eqivalent of reading a
Elf32_External_Chdr
or
Elf64_External_Chdr
to get the type (which must be 1)
and the decompressed_length.
Then what follows the implicit Chdr is decompressed.
*/
/* ALLOWED_ZLIB_INFLATION is a heuristic, not necessarily right.
The test case klingler2/compresseddebug.amd64 actually
inflates about 8 times. */
#define ALLOWED_ZLIB_INFLATION 16
static int
do_decompress_zlib(Dwarf_Debug dbg,
struct Dwarf_Section_s *section,
Dwarf_Error * error)
{
Bytef *basesrc = (Bytef *)section->dss_data;
Bytef *src = (Bytef *)basesrc;
uLong srclen = section->dss_size;
Dwarf_Unsigned flags = section->dss_flags;
Dwarf_Small *endsection = 0;
int res = 0;
Bytef *dest = 0;
uLongf destlen = 0;
Dwarf_Unsigned uncompressed_len = 0;
endsection = basesrc + srclen;
if ((src + 12) >endsection) {
DWARF_DBG_ERROR(dbg, DW_DLE_ZLIB_SECTION_SHORT, DW_DLV_ERROR);
}
if(!strncmp("ZLIB",(const char *)src,4)) {
unsigned i = 0;
unsigned l = 8;
unsigned char *c = src+4;
for( ; i < l; ++i,c++) {
uncompressed_len <<= 8;
uncompressed_len += *c;
}
src = src + 12;
srclen -= 12;
} else if (flags & SHF_COMPRESSED) {
/* The prefix is a struct:
unsigned int type; followed by pad if following are 64bit!
size-of-target-address size
size-of-target-address
*/
Dwarf_Small *ptr = (Dwarf_Small *)src;
Dwarf_Unsigned type = 0;
Dwarf_Unsigned size = 0;
/* Dwarf_Unsigned addralign = 0; */
unsigned fldsize = dbg->de_pointer_size;
unsigned structsize = 3* fldsize;
READ_UNALIGNED_CK(dbg,type,Dwarf_Unsigned,ptr,
sizeof(Dwarf_ufixed),
error,endsection);
ptr += fldsize;
READ_UNALIGNED_CK(dbg,size,Dwarf_Unsigned,ptr,fldsize,
error,endsection);
ptr += fldsize;
if (type != ELFCOMPRESS_ZLIB) {
DWARF_DBG_ERROR(dbg, DW_DLE_ZDEBUG_INPUT_FORMAT_ODD,
DW_DLV_ERROR);
}
uncompressed_len = size;
/* Not using addralign.
READ_UNALIGNED(dbg,addralign,Dwarf_Unsigned,ptr,fldsize); */
src += structsize;
srclen -= structsize;
} else {
DWARF_DBG_ERROR(dbg, DW_DLE_ZDEBUG_INPUT_FORMAT_ODD,
DW_DLV_ERROR);
}
{
/* According to zlib.net zlib essentially never expands
the data when compressing. There is no statement
about any effective limit in the compression factor
though we, here, assume such a limit to check
for sanity in the object file.
These tests are heuristics. */
Dwarf_Unsigned max_inflated_len = srclen*ALLOWED_ZLIB_INFLATION;
if (srclen > 50) {
/* If srclen not super tiny lets check the following. */
if (uncompressed_len < (srclen/2)) {
/* Violates the approximate invariant about
compression not actually inflating. */
DWARF_DBG_ERROR(dbg, DW_DLE_ZLIB_UNCOMPRESS_ERROR,
DW_DLV_ERROR);
}
}
if (max_inflated_len < srclen) {
/* The calculation overflowed. */
DWARF_DBG_ERROR(dbg, DW_DLE_ZLIB_UNCOMPRESS_ERROR, DW_DLV_ERROR);
}
if (uncompressed_len > max_inflated_len) {
DWARF_DBG_ERROR(dbg, DW_DLE_ZLIB_UNCOMPRESS_ERROR, DW_DLV_ERROR);
}
}
if( (src +srclen) > endsection) {
DWARF_DBG_ERROR(dbg, DW_DLE_ZLIB_SECTION_SHORT, DW_DLV_ERROR);
}
destlen = uncompressed_len;
dest = malloc(destlen);
if(!dest) {
DWARF_DBG_ERROR(dbg, DW_DLE_ALLOC_FAIL, DW_DLV_ERROR);
}
res = uncompress(dest,&destlen,src,srclen);
if (res == Z_BUF_ERROR) {
free(dest);
DWARF_DBG_ERROR(dbg, DW_DLE_ZLIB_BUF_ERROR, DW_DLV_ERROR);
} else if (res == Z_MEM_ERROR) {
free(dest);
DWARF_DBG_ERROR(dbg, DW_DLE_ALLOC_FAIL, DW_DLV_ERROR);
} else if (res != Z_OK) {
free(dest);
/* Probably Z_DATA_ERROR. */
DWARF_DBG_ERROR(dbg, DW_DLE_ZLIB_DATA_ERROR, DW_DLV_ERROR);
}
/* Z_OK */
section->dss_data = dest;
section->dss_size = destlen;
section->dss_data_was_malloc = TRUE;
section->dss_requires_decompress = FALSE;
return DW_DLV_OK;
}
#endif /* HAVE_ZLIB */
/* Load the ELF section with the specified index and set its
dss_data pointer to the memory where it was loaded. */
int
_dwarf_load_section(Dwarf_Debug dbg,
struct Dwarf_Section_s *section,
Dwarf_Error * error)
{
int res = DW_DLV_ERROR;
int err = 0;
struct Dwarf_Obj_Access_Interface_s *o = 0;
/* check to see if the section is already loaded */
if (section->dss_data != NULL) {
return DW_DLV_OK;
}
o = dbg->de_obj_file;
/* There is an elf convention that section index 0 is reserved,
and that section is always empty.
Non-elf object formats must honor that by ensuring that
(when they assign numbers to 'sections' or 'section-like-things')
they never assign a real section section-number 0 to dss_index.
There is also a convention for 'bss' that that section and its
like sections have no data but do have a size.
That is never true of DWARF sections */
res = o->methods->load_section(
o->object, section->dss_index,
§ion->dss_data, &err);
if (res == DW_DLV_ERROR) {
DWARF_DBG_ERROR(dbg, err, DW_DLV_ERROR);
}
if (res == DW_DLV_NO_ENTRY) {
/* Gets this for section->dss_index 0.
Which by ELF definition is a section index
which is not used (reserved by Elf to
mean no-section-index).
Otherwise NULL dss_data gets error.
BSS would legitimately have no data, but
no DWARF related section could possbly be bss. */
return res;
}
if (section->dss_requires_decompress) {
if (!section->dss_data) {
/* Impossible. This makes no sense.
Corrupt object. */
DWARF_DBG_ERROR(dbg, DW_DLE_COMPRESSED_EMPTY_SECTION, DW_DLV_ERROR);
}
#ifdef HAVE_ZLIB
res = do_decompress_zlib(dbg,section,error);
if (res != DW_DLV_OK) {
return res;
}
#else
DWARF_DBG_ERROR(dbg,DW_DLE_ZDEBUG_REQUIRES_ZLIB, DW_DLV_ERROR);
#endif
}
if (_dwarf_apply_relocs == 0) {
return res;
}
if (section->dss_reloc_size == 0) {
return res;
}
if (!o->methods->relocate_a_section) {
return res;
}
/*apply relocations */
res = o->methods->relocate_a_section( o->object, section->dss_index,
dbg, &err);
if (res == DW_DLV_ERROR) {
DWARF_DBG_ERROR(dbg, err, DW_DLV_ERROR);
}
return res;
}
/* This is a hack so clients can verify offsets.
Added April 2005 so that debugger can detect broken offsets
(which happened in an IRIX -64 executable larger than 2GB
using MIPSpro 7.3.1.3 compilers. A couple .debug_pubnames
offsets were wrong.).
*/
int
dwarf_get_section_max_offsets(Dwarf_Debug dbg,
Dwarf_Unsigned * debug_info_size,
Dwarf_Unsigned * debug_abbrev_size,
Dwarf_Unsigned * debug_line_size,
Dwarf_Unsigned * debug_loc_size,
Dwarf_Unsigned * debug_aranges_size,
Dwarf_Unsigned * debug_macinfo_size,
Dwarf_Unsigned * debug_pubnames_size,
Dwarf_Unsigned * debug_str_size,
Dwarf_Unsigned * debug_frame_size,
Dwarf_Unsigned * debug_ranges_size,
Dwarf_Unsigned * debug_typenames_size)
{
*debug_info_size = dbg->de_debug_info.dss_size;
*debug_abbrev_size = dbg->de_debug_abbrev.dss_size;
*debug_line_size = dbg->de_debug_line.dss_size;
*debug_loc_size = dbg->de_debug_loc.dss_size;
*debug_aranges_size = dbg->de_debug_aranges.dss_size;
*debug_macinfo_size = dbg->de_debug_macinfo.dss_size;
*debug_pubnames_size = dbg->de_debug_pubnames.dss_size;
*debug_str_size = dbg->de_debug_str.dss_size;
*debug_frame_size = dbg->de_debug_frame.dss_size;
*debug_ranges_size = dbg->de_debug_ranges.dss_size;
*debug_typenames_size = dbg->de_debug_typenames.dss_size;
return DW_DLV_OK;
}
/* This adds the new types size (new section) to the output data.
Oct 27, 2011. */
int
dwarf_get_section_max_offsets_b(Dwarf_Debug dbg,
Dwarf_Unsigned * debug_info_size,
Dwarf_Unsigned * debug_abbrev_size,
Dwarf_Unsigned * debug_line_size,
Dwarf_Unsigned * debug_loc_size,
Dwarf_Unsigned * debug_aranges_size,
Dwarf_Unsigned * debug_macinfo_size,
Dwarf_Unsigned * debug_pubnames_size,
Dwarf_Unsigned * debug_str_size,
Dwarf_Unsigned * debug_frame_size,
Dwarf_Unsigned * debug_ranges_size,
Dwarf_Unsigned * debug_typenames_size,
Dwarf_Unsigned * debug_types_size)
{
*debug_info_size = dbg->de_debug_info.dss_size;
*debug_abbrev_size = dbg->de_debug_abbrev.dss_size;
*debug_line_size = dbg->de_debug_line.dss_size;
*debug_loc_size = dbg->de_debug_loc.dss_size;
*debug_aranges_size = dbg->de_debug_aranges.dss_size;
*debug_macinfo_size = dbg->de_debug_macinfo.dss_size;
*debug_pubnames_size = dbg->de_debug_pubnames.dss_size;
*debug_str_size = dbg->de_debug_str.dss_size;
*debug_frame_size = dbg->de_debug_frame.dss_size;
*debug_ranges_size = dbg->de_debug_ranges.dss_size;
*debug_typenames_size = dbg->de_debug_typenames.dss_size;
*debug_types_size = dbg->de_debug_types.dss_size;
return DW_DLV_OK;
}
/* Now with sections new to DWARF5 (unofficial list,preliminary) */
int
dwarf_get_section_max_offsets_c(Dwarf_Debug dbg,
Dwarf_Unsigned * debug_info_size,
Dwarf_Unsigned * debug_abbrev_size,
Dwarf_Unsigned * debug_line_size,
Dwarf_Unsigned * debug_loc_size,
Dwarf_Unsigned * debug_aranges_size,
Dwarf_Unsigned * debug_macinfo_size,
Dwarf_Unsigned * debug_pubnames_size,
Dwarf_Unsigned * debug_str_size,
Dwarf_Unsigned * debug_frame_size,
Dwarf_Unsigned * debug_ranges_size,
Dwarf_Unsigned * debug_typenames_size,
Dwarf_Unsigned * debug_types_size,
Dwarf_Unsigned * debug_macro_size,
Dwarf_Unsigned * debug_str_offsets_size,
Dwarf_Unsigned * debug_sup_size,
Dwarf_Unsigned * debug_cu_index_size,
Dwarf_Unsigned * debug_tu_index_size)
{
*debug_info_size = dbg->de_debug_info.dss_size;
*debug_abbrev_size = dbg->de_debug_abbrev.dss_size;
*debug_line_size = dbg->de_debug_line.dss_size;
*debug_loc_size = dbg->de_debug_loc.dss_size;
*debug_aranges_size = dbg->de_debug_aranges.dss_size;
*debug_macinfo_size = dbg->de_debug_macinfo.dss_size;
*debug_pubnames_size = dbg->de_debug_pubnames.dss_size;
*debug_str_size = dbg->de_debug_str.dss_size;
*debug_frame_size = dbg->de_debug_frame.dss_size;
*debug_ranges_size = dbg->de_debug_ranges.dss_size;
*debug_typenames_size = dbg->de_debug_typenames.dss_size;
*debug_types_size = dbg->de_debug_types.dss_size;
*debug_macro_size = dbg->de_debug_macro.dss_size;
*debug_str_offsets_size = dbg->de_debug_str_offsets.dss_size;
*debug_sup_size = dbg->de_debug_sup.dss_size;
*debug_cu_index_size = dbg->de_debug_cu_index.dss_size;
*debug_tu_index_size = dbg->de_debug_tu_index.dss_size;
return DW_DLV_OK;
}
/* Now with final sections new to DWARF5 (final) */
int
dwarf_get_section_max_offsets_d(Dwarf_Debug dbg,
Dwarf_Unsigned * debug_info_size,
Dwarf_Unsigned * debug_abbrev_size,
Dwarf_Unsigned * debug_line_size,
Dwarf_Unsigned * debug_loc_size,
Dwarf_Unsigned * debug_aranges_size,
Dwarf_Unsigned * debug_macinfo_size,
Dwarf_Unsigned * debug_pubnames_size,
Dwarf_Unsigned * debug_str_size,
Dwarf_Unsigned * debug_frame_size,
Dwarf_Unsigned * debug_ranges_size,
Dwarf_Unsigned * debug_typenames_size,
Dwarf_Unsigned * debug_types_size,
Dwarf_Unsigned * debug_macro_size,
Dwarf_Unsigned * debug_str_offsets_size,
Dwarf_Unsigned * debug_sup_size,
Dwarf_Unsigned * debug_cu_index_size,
Dwarf_Unsigned * debug_tu_index_size,
Dwarf_Unsigned * debug_names_size,
Dwarf_Unsigned * debug_loclists_size,
Dwarf_Unsigned * debug_rnglists_size)
{
*debug_info_size = dbg->de_debug_info.dss_size;
*debug_abbrev_size = dbg->de_debug_abbrev.dss_size;
*debug_line_size = dbg->de_debug_line.dss_size;
*debug_loc_size = dbg->de_debug_loc.dss_size;
*debug_aranges_size = dbg->de_debug_aranges.dss_size;
*debug_macinfo_size = dbg->de_debug_macinfo.dss_size;
*debug_pubnames_size = dbg->de_debug_pubnames.dss_size;
*debug_str_size = dbg->de_debug_str.dss_size;
*debug_frame_size = dbg->de_debug_frame.dss_size;
*debug_ranges_size = dbg->de_debug_ranges.dss_size;
*debug_typenames_size = dbg->de_debug_typenames.dss_size;
*debug_types_size = dbg->de_debug_types.dss_size;
*debug_macro_size = dbg->de_debug_macro.dss_size;
*debug_str_offsets_size = dbg->de_debug_str_offsets.dss_size;
*debug_sup_size = dbg->de_debug_sup.dss_size;
*debug_cu_index_size = dbg->de_debug_cu_index.dss_size;
*debug_tu_index_size = dbg->de_debug_tu_index.dss_size;
*debug_names_size = dbg->de_debug_names.dss_size;
*debug_loclists_size = dbg->de_debug_loclists.dss_size;
*debug_rnglists_size = dbg->de_debug_rnglists.dss_size;
return DW_DLV_OK;
}
/* Given a section name, get its size and address */
int
dwarf_get_section_info_by_name(Dwarf_Debug dbg,
const char *section_name,
Dwarf_Addr *section_addr,
Dwarf_Unsigned *section_size,
Dwarf_Error * error)
{
struct Dwarf_Obj_Access_Section_s doas;
struct Dwarf_Obj_Access_Interface_s * obj = 0;
Dwarf_Unsigned section_count = 0;
Dwarf_Half section_index = 0;
*section_addr = 0;
*section_size = 0;
obj = dbg->de_obj_file;
if (NULL == obj) {
return DW_DLV_NO_ENTRY;
}
section_count = obj->methods->get_section_count(obj->object);
/* We can skip index 0 when considering ELF files, but not other
object types. */
for (section_index = 0; section_index < section_count;
++section_index) {
int err = 0;
int res = obj->methods->get_section_info(obj->object,
section_index, &doas, &err);
if (res == DW_DLV_ERROR) {
DWARF_DBG_ERROR(dbg, err, DW_DLV_ERROR);
}
if (!strcmp(section_name,doas.name)) {
*section_addr = doas.addr;
*section_size = doas.size;
return DW_DLV_OK;
}
}
return DW_DLV_NO_ENTRY;
}
/* Given a section index, get its size and address */
int
dwarf_get_section_info_by_index(Dwarf_Debug dbg,
int section_index,
const char **section_name,
Dwarf_Addr *section_addr,
Dwarf_Unsigned *section_size,
Dwarf_Error * error)
{
*section_addr = 0;
*section_size = 0;
*section_name = NULL;
/* Check if we have a valid section index */
if (section_index >= 0 && section_index < dwarf_get_section_count(dbg)) {
int res = 0;
int err = 0;
struct Dwarf_Obj_Access_Section_s doas;
struct Dwarf_Obj_Access_Interface_s * obj = dbg->de_obj_file;
if (NULL == obj) {
return DW_DLV_NO_ENTRY;
}
res = obj->methods->get_section_info(obj->object,
section_index, &doas, &err);
if (res == DW_DLV_ERROR){
DWARF_DBG_ERROR(dbg, err, DW_DLV_ERROR);
}
*section_addr = doas.addr;
*section_size = doas.size;
*section_name = doas.name;
return DW_DLV_OK;
}
return DW_DLV_NO_ENTRY;
}
/* Get section count */
int
dwarf_get_section_count(Dwarf_Debug dbg)
{
struct Dwarf_Obj_Access_Interface_s * obj = dbg->de_obj_file;
if (NULL == obj) {
return DW_DLV_NO_ENTRY;
}
return obj->methods->get_section_count(obj->object);
}
Dwarf_Cmdline_Options dwarf_cmdline_options = {
FALSE /* Use quiet mode by default. */
};
/* Lets libdwarf reflect a command line option, so we can get details
of some errors printed using libdwarf-internal information. */
void
dwarf_record_cmdline_options(Dwarf_Cmdline_Options options)
{
dwarf_cmdline_options = options;
}
|