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 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770
|
/*
Copyright (C) 2000,2003,2004,2005,2006 Silicon Graphics, Inc. All Rights Reserved.
Portions Copyright 2007 Sun Microsystems, Inc. All rights reserved.
Portions Copyright 2008 David Anderson. All rights reserved.
This program is free software; you can redistribute it and/or modify it
under the terms of version 2 of the GNU 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 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.
Contact information: Silicon Graphics, Inc., 1500 Crittenden Lane,
Mountain View, CA 94043, or:
http://www.sgi.com
For further information regarding this notice, see:
http://oss.sgi.com/projects/GenInfo/NoticeExplan
$Header: /plroot/cmplrs.src/v7.4.5m/.RCS/PL/dwarfdump/RCS/print_sections.c,v 1.69 2006/04/17 00:09:56 davea Exp $ */
#include "globals.h"
#include "dwarf_names.h"
#include "dwconf.h"
#include "print_frames.h"
/*
* Print line number information:
* filename
* new basic-block
* [line] [address] <new statement>
*/
static void
print_pubname_style_entry(Dwarf_Debug dbg,
char *line_title,
char *name,
Dwarf_Unsigned die_off,
Dwarf_Unsigned cu_off,
Dwarf_Unsigned global_cu_off,
Dwarf_Unsigned maxoff);
/* referred in dwarfdump.c */
Dwarf_Die current_cu_die_for_print_frames;
/* If an offset is bad, libdwarf will notice it and
return an error.
If it does the error checking in
print_pubname_style_entry()
will be useless as we give up here on an error.
This intended for checking pubnames-style call return
values (for all the pubnames-style interfaces).
In at least one gigantic executable die_off turned out wrong.
*/
static void
deal_with_name_offset_err(Dwarf_Debug dbg,
char *err_loc,
char *name, Dwarf_Unsigned die_off,
int nres, Dwarf_Error err)
{
if (nres == DW_DLV_ERROR) {
Dwarf_Unsigned myerr = dwarf_errno(err);
if (myerr == DW_DLE_OFFSET_BAD) {
printf("Error: bad offset %s, %s %lld (0x%llx)\n",
err_loc,
name,
(long long) die_off, (unsigned long long) die_off);
}
print_error(dbg, err_loc, nres, err);
}
}
static void
print_source_intro(Dwarf_Die cu_die)
{
Dwarf_Off off = 0;
int ores = dwarf_dieoffset(cu_die, &off, &err);
if (ores == DW_DLV_OK) {
printf
("Source lines (from CU-DIE at .debug_info offset %llu):\n",
(unsigned long long) off);
} else {
printf("Source lines (for the CU-DIE at unknown location):\n");
}
}
extern void
print_line_numbers_this_cu(Dwarf_Debug dbg, Dwarf_Die cu_die)
{
Dwarf_Signed linecount = 0;
Dwarf_Line *linebuf = NULL;
Dwarf_Signed i = 0;
Dwarf_Addr pc = 0;
Dwarf_Unsigned lineno = 0;
Dwarf_Signed column = 0;
string filename;
Dwarf_Bool newstatement = 0;
Dwarf_Bool lineendsequence = 0;
Dwarf_Bool new_basic_block = 0;
int lres = 0;
int sres = 0;
int ares = 0;
int lires = 0;
int cores = 0;
printf("\n.debug_line: line number info for a single cu\n");
if (verbose > 1) {
print_source_intro(cu_die);
print_one_die(dbg, cu_die, /* print_information= */ 1,
/* srcfiles= */ 0, /* cnt= */ 0);
lres = dwarf_print_lines(cu_die, &err);
if (lres == DW_DLV_ERROR) {
print_error(dbg, "dwarf_srclines details", lres, err);
}
return;
}
lres = dwarf_srclines(cu_die, &linebuf, &linecount, &err);
if (lres == DW_DLV_ERROR) {
print_error(dbg, "dwarf_srclines", lres, err);
} else if (lres == DW_DLV_NO_ENTRY) {
/* no line information is included */
} else {
print_source_intro(cu_die);
if (verbose) {
print_one_die(dbg, cu_die, /* print_information= */ 1,
/* srcfiles= */ 0, /* cnt= */ 0);
}
printf
("<source>\t[row,column]\t<pc>\t//<new statement or basic block\n");
for (i = 0; i < linecount; i++) {
Dwarf_Line line = linebuf[i];
int nsres;
sres = dwarf_linesrc(line, &filename, &err);
ares = dwarf_lineaddr(line, &pc, &err);
if (sres == DW_DLV_ERROR) {
print_error(dbg, "dwarf_linesrc", sres, err);
}
if (sres == DW_DLV_NO_ENTRY) {
filename = "<unknown>";
}
if (ares == DW_DLV_ERROR) {
print_error(dbg, "dwarf_lineaddr", ares, err);
}
if (ares == DW_DLV_NO_ENTRY) {
pc = 0;
}
lires = dwarf_lineno(line, &lineno, &err);
if (lires == DW_DLV_ERROR) {
print_error(dbg, "dwarf_lineno", lires, err);
}
if (lires == DW_DLV_NO_ENTRY) {
lineno = -1LL;
}
cores = dwarf_lineoff(line, &column, &err);
if (cores == DW_DLV_ERROR) {
print_error(dbg, "dwarf_lineoff", cores, err);
}
if (cores == DW_DLV_NO_ENTRY) {
column = -1LL;
}
printf("%s:\t[%3llu,%2lld]\t%#llx", filename, lineno,
column, pc);
if (sres == DW_DLV_OK)
dwarf_dealloc(dbg, filename, DW_DLA_STRING);
nsres = dwarf_linebeginstatement(line, &newstatement, &err);
if (nsres == DW_DLV_OK) {
if (newstatement) {
printf("\t// new statement");
}
} else if (nsres == DW_DLV_ERROR) {
print_error(dbg, "linebeginstatment failed", nsres,
err);
}
nsres = dwarf_lineblock(line, &new_basic_block, &err);
if (nsres == DW_DLV_OK) {
if (new_basic_block) {
printf("\t// new basic block");
}
} else if (nsres == DW_DLV_ERROR) {
print_error(dbg, "lineblock failed", nsres, err);
}
nsres = dwarf_lineendsequence(line, &lineendsequence, &err);
if (nsres == DW_DLV_OK) {
if (lineendsequence) {
printf("\t// end of text sequence");
}
} else if (nsres == DW_DLV_ERROR) {
print_error(dbg, "lineblock failed", nsres, err);
}
printf("\n");
}
dwarf_srclines_dealloc(dbg, linebuf, linecount);
}
}
/*
A strcpy which ensures NUL terminated string
and never overruns the output.
*/
static void
safe_strcpy(char *out, long outlen, char *in, long inlen)
{
if (inlen >= (outlen - 1)) {
strncpy(out, in, outlen - 1);
out[outlen - 1] = 0;
} else {
strcpy(out, in);
}
}
/*
Returns 1 if a proc with this low_pc found.
Else returns 0.
*/
static int
get_proc_name(Dwarf_Debug dbg, Dwarf_Die die, Dwarf_Addr low_pc,
char *proc_name_buf, int proc_name_buf_len)
{
Dwarf_Signed atcnt = 0;
Dwarf_Signed i = 0;
Dwarf_Attribute *atlist = NULL;
Dwarf_Addr low_pc_die = 0;
int atres = 0;
int funcres = 1;
int funcpcfound = 0;
int funcnamefound = 1;
proc_name_buf[0] = 0; /* always set to something */
atres = dwarf_attrlist(die, &atlist, &atcnt, &err);
if (atres == DW_DLV_ERROR) {
print_error(dbg, "dwarf_attrlist", atres, err);
return 0;
}
if (atres == DW_DLV_NO_ENTRY) {
return 0;
}
for (i = 0; i < atcnt; i++) {
Dwarf_Half attr;
int ares;
string temps;
int sres;
int dres;
if (funcnamefound == 1 && funcpcfound == 1) {
/* stop as soon as both found */
break;
}
ares = dwarf_whatattr(atlist[i], &attr, &err);
if (ares == DW_DLV_ERROR) {
print_error(dbg, "get_proc_name whatattr error", ares, err);
} else if (ares == DW_DLV_OK) {
switch (attr) {
case DW_AT_name:
sres = dwarf_formstring(atlist[i], &temps, &err);
if (sres == DW_DLV_ERROR) {
print_error(dbg,
"formstring in get_proc_name failed",
sres, err);
/* 50 is safe wrong length since is bigger than the
actual string */
safe_strcpy(proc_name_buf, proc_name_buf_len,
"ERROR in dwarf_formstring!", 50);
} else if (sres == DW_DLV_NO_ENTRY) {
/* 50 is safe wrong length since is bigger than the
actual string */
safe_strcpy(proc_name_buf, proc_name_buf_len,
"NO ENTRY on dwarf_formstring?!", 50);
} else {
long len = (long) strlen(temps);
safe_strcpy(proc_name_buf, proc_name_buf_len, temps,
len);
}
funcnamefound = 1; /* FOUND THE NAME */
break;
case DW_AT_low_pc:
dres = dwarf_formaddr(atlist[i], &low_pc_die, &err);
if (dres == DW_DLV_ERROR) {
print_error(dbg, "formaddr in get_proc_name failed",
dres, err);
low_pc_die = ~low_pc;
/* ensure no match */
}
funcpcfound = 1;
break;
default:
break;
}
}
}
for (i = 0; i < atcnt; i++) {
dwarf_dealloc(dbg, atlist[i], DW_DLA_ATTR);
}
dwarf_dealloc(dbg, atlist, DW_DLA_LIST);
if (funcnamefound == 0 || funcpcfound == 0 || low_pc != low_pc_die) {
funcres = 0;
}
return (funcres);
}
/*
Modified Depth First Search looking for the procedure:
a) only looks for children of subprogram.
b) With subprogram looks at current die *before* looking
for a child.
Needed since some languages, including MP Fortran,
have nested functions.
Return 0 on failure, 1 on success.
*/
static int
get_nested_proc_name(Dwarf_Debug dbg, Dwarf_Die die, Dwarf_Addr low_pc,
char *ret_name_buf, int ret_name_buf_len)
{
char name_buf[BUFSIZ];
Dwarf_Die curdie = die;
int die_locally_gotten = 0;
Dwarf_Die prev_child = 0;
Dwarf_Die newchild = 0;
Dwarf_Die newsibling = 0;
Dwarf_Half tag;
Dwarf_Error err = 0;
int chres = DW_DLV_OK;
ret_name_buf[0] = 0;
while (chres == DW_DLV_OK) {
int tres;
tres = dwarf_tag(curdie, &tag, &err);
newchild = 0;
err = 0;
if (tres == DW_DLV_OK) {
int lchres;
if (tag == DW_TAG_subprogram) {
int proc_name_v;
proc_name_v = get_proc_name(dbg, curdie, low_pc,
name_buf, BUFSIZ);
if (proc_name_v) {
/* this is it */
safe_strcpy(ret_name_buf, ret_name_buf_len,
name_buf, (long) strlen(name_buf));
if (die_locally_gotten) {
/* If we got this die from the parent, we do
not want to dealloc here! */
dwarf_dealloc(dbg, curdie, DW_DLA_DIE);
}
return 1;
}
/* check children of subprograms recursively should
this really be check children of anything? */
lchres = dwarf_child(curdie, &newchild, &err);
if (lchres == DW_DLV_OK) {
/* look for inner subprogram */
int newprog =
get_nested_proc_name(dbg, newchild, low_pc,
name_buf, BUFSIZ);
dwarf_dealloc(dbg, newchild, DW_DLA_DIE);
if (newprog) {
/* Found it. We could just take this name or
we could concatenate names together For now,
just take name */
if (die_locally_gotten) {
/* If we got this die from the parent, we
do not want to dealloc here! */
dwarf_dealloc(dbg, curdie, DW_DLA_DIE);
}
safe_strcpy(ret_name_buf, ret_name_buf_len,
name_buf, (long) strlen(name_buf));
return 1;
}
} else if (lchres == DW_DLV_NO_ENTRY) {
/* nothing to do */
} else {
print_error(dbg,
"get_nested_proc_name dwarf_child() failed ",
chres, err);
if (die_locally_gotten) {
/* If we got this die from the parent, we do
not want to dealloc here! */
dwarf_dealloc(dbg, curdie, DW_DLA_DIE);
}
return 0;
}
} /* end if TAG_subprogram */
} else {
print_error(dbg, "no tag on child read ", tres, err);
if (die_locally_gotten) {
/* If we got this die from the parent, we do not want
to dealloc here! */
dwarf_dealloc(dbg, curdie, DW_DLA_DIE);
}
return 0;
}
/* try next sibling */
prev_child = curdie;
chres = dwarf_siblingof(dbg, curdie, &newsibling, &err);
if (chres == DW_DLV_ERROR) {
print_error(dbg, "dwarf_cu_header On Child read ", chres,
err);
if (die_locally_gotten) {
/* If we got this die from the parent, we do not want
to dealloc here! */
dwarf_dealloc(dbg, curdie, DW_DLA_DIE);
}
return 0;
} else if (chres == DW_DLV_NO_ENTRY) {
if (die_locally_gotten) {
/* If we got this die from the parent, we do not want
to dealloc here! */
dwarf_dealloc(dbg, prev_child, DW_DLA_DIE);
}
return 0; /* proc name not at this level */
} else { /* DW_DLV_OK */
curdie = newsibling;
if (die_locally_gotten) {
/* If we got this die from the parent, we do not want
to dealloc here! */
dwarf_dealloc(dbg, prev_child, DW_DLA_DIE);
}
prev_child = 0;
die_locally_gotten = 1;
}
}
if (die_locally_gotten) {
/* If we got this die from the parent, we do not want to
dealloc here! */
dwarf_dealloc(dbg, curdie, DW_DLA_DIE);
}
return 0;
}
/*
For MP Fortran and possibly other languages, functions
nest! As a result, we must dig thru all functions,
not just the top level.
This remembers the CU die and restarts each search at the start
of the current cu.
*/
string
get_fde_proc_name(Dwarf_Debug dbg, Dwarf_Addr low_pc)
{
static char proc_name[BUFSIZ];
Dwarf_Unsigned cu_header_length = 0;
Dwarf_Unsigned abbrev_offset = 0;
Dwarf_Half version_stamp = 0;
Dwarf_Half address_size = 0;
Dwarf_Unsigned next_cu_offset = 0;
int cures = DW_DLV_OK;
int dres = DW_DLV_OK;
int chres = DW_DLV_OK;
int looping = 0;
if (current_cu_die_for_print_frames == NULL) {
/* Call depends on dbg->cu_context to know what to do. */
cures = dwarf_next_cu_header(dbg, &cu_header_length,
&version_stamp, &abbrev_offset,
&address_size, &next_cu_offset,
&err);
if (cures == DW_DLV_ERROR) {
return NULL;
} else if (cures == DW_DLV_NO_ENTRY) {
/* loop thru the list again */
current_cu_die_for_print_frames = 0;
++looping;
} else { /* DW_DLV_OK */
dres = dwarf_siblingof(dbg, NULL,
¤t_cu_die_for_print_frames,
&err);
if (dres == DW_DLV_ERROR) {
return NULL;
}
}
}
if (dres == DW_DLV_OK) {
Dwarf_Die child = 0;
if (current_cu_die_for_print_frames == 0) {
/* no information. Possibly a stripped file */
return NULL;
}
chres =
dwarf_child(current_cu_die_for_print_frames, &child, &err);
if (chres == DW_DLV_ERROR) {
print_error(dbg, "dwarf_cu_header on child read ", chres,
err);
} else if (chres == DW_DLV_NO_ENTRY) {
} else { /* DW_DLV_OK */
int gotname =
get_nested_proc_name(dbg, child, low_pc, proc_name,
BUFSIZ);
dwarf_dealloc(dbg, child, DW_DLA_DIE);
if (gotname) {
return (proc_name);
}
child = 0;
}
}
for (;;) {
Dwarf_Die ldie;
cures = dwarf_next_cu_header(dbg, &cu_header_length,
&version_stamp, &abbrev_offset,
&address_size, &next_cu_offset,
&err);
if (cures != DW_DLV_OK) {
break;
}
dres = dwarf_siblingof(dbg, NULL, &ldie, &err);
if (current_cu_die_for_print_frames) {
dwarf_dealloc(dbg, current_cu_die_for_print_frames,
DW_DLA_DIE);
}
current_cu_die_for_print_frames = 0;
if (dres == DW_DLV_ERROR) {
print_error(dbg,
"dwarf_cu_header Child Read finding proc name for .debug_frame",
chres, err);
continue;
} else if (dres == DW_DLV_NO_ENTRY) {
++looping;
if (looping > 1) {
print_error(dbg, "looping on cu headers!", dres, err);
return NULL;
}
continue;
}
/* DW_DLV_OK */
current_cu_die_for_print_frames = ldie;
{
int chres;
Dwarf_Die child;
chres =
dwarf_child(current_cu_die_for_print_frames, &child,
&err);
if (chres == DW_DLV_ERROR) {
print_error(dbg, "dwarf Child Read ", chres, err);
} else if (chres == DW_DLV_NO_ENTRY) {
; /* do nothing, loop on cu */
} else { /* DW_DLV_OK) */
int gotname =
get_nested_proc_name(dbg, child, low_pc, proc_name,
BUFSIZ);
dwarf_dealloc(dbg, child, DW_DLA_DIE);
if (gotname) {
return (proc_name);
}
}
}
}
return (NULL);
}
/* get all the data in .debug_frame (or .eh_frame).
The '3' versions mean print using the dwarf3 new interfaces.
The non-3 mean use the old interfaces.
All combinations of requests are possible.
*/
extern void
print_frames(Dwarf_Debug dbg, int print_debug_frame, int print_eh_frame,
struct dwconf_s *config_data)
{
Dwarf_Cie *cie_data = NULL;
Dwarf_Signed cie_element_count = 0;
Dwarf_Fde *fde_data = NULL;
Dwarf_Signed fde_element_count = 0;
Dwarf_Signed i;
int fres = 0;
Dwarf_Half address_size = 0;
int framed = 0;
int frame_count = 0;
int cie_count = 0;
fres = dwarf_get_address_size(dbg, &address_size, &err);
if (fres != DW_DLV_OK) {
print_error(dbg, "dwarf_get_address_size", fres, err);
}
for (framed = 0; framed < 2; ++framed) {
char *framename = 0;
int silent_if_missing = 0;
int is_eh = 0;
if (framed == 0) {
if (!print_debug_frame) {
continue;
}
framename = ".debug_frame";
/*
* Big question here is how to print all the info?
* Can print the logical matrix, but that is huge,
* though could skip lines that don't change.
* Either that, or print the instruction statement program
* that describes the changes.
*/
fres =
dwarf_get_fde_list(dbg, &cie_data, &cie_element_count,
&fde_data, &fde_element_count, &err);
} else {
if (!print_eh_frame) {
continue;
}
is_eh = 1;
/* This is gnu g++ exceptions in a .eh_frame section. Which
is just like .debug_frame except that the empty, or
'special' CIE_id is 0, not -1 (to distinguish fde from
cie). And the augmentation is "eh". As of egcs-1.1.2
anyway. A non-zero cie_id is in a fde and is the
difference between the fde address and the beginning of
the cie it belongs to. This makes sense as this is
intended to be referenced at run time, and is part of
the running image. For more on augmentation strings, see
libdwarf/dwarf_frame.c. */
/*
* Big question here is how to print all the info?
* Can print the logical matrix, but that is huge,
* though could skip lines that don't change.
* Either that, or print the instruction statement program
* that describes the changes.
*/
silent_if_missing = 1;
framename = ".eh_frame";
fres =
dwarf_get_fde_list_eh(dbg, &cie_data,
&cie_element_count, &fde_data,
&fde_element_count, &err);
}
if (fres == DW_DLV_ERROR) {
printf("\n%s\n", framename);
print_error(dbg, "dwarf_get_fde_list", fres, err);
} else if (fres == DW_DLV_NO_ENTRY) {
if (!silent_if_missing)
printf("\n%s\n", framename);
/* no frame information */
} else { /* DW_DLV_OK */
printf("\n%s\n", framename);
printf("\nfde:\n");
for (i = 0; i < fde_element_count; i++) {
print_one_fde(dbg, fde_data[i],
i, cie_data, cie_element_count,
address_size, is_eh, config_data);
++frame_count;
if(frame_count >= break_after_n_units) {
break;
}
}
/*
Print the cie set. */
if (verbose) {
printf("\ncie:\n");
for (i = 0; i < cie_element_count; i++) {
print_one_cie(dbg, cie_data[i], i, address_size,
config_data);
++cie_count;
if(cie_count >= break_after_n_units) {
break;
}
}
}
dwarf_fde_cie_list_dealloc(dbg, cie_data, cie_element_count,
fde_data, fde_element_count);
}
}
if (current_cu_die_for_print_frames) {
dwarf_dealloc(dbg, current_cu_die_for_print_frames, DW_DLA_DIE);
current_cu_die_for_print_frames = 0;
}
}
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_pubtypes_size */ );
/* The new (April 2005) dwarf_get_section_max_offsets()
in libdwarf returns all max-offsets, but we only
want one of those offsets. This function returns
the one we want from that set,
making functions needing this offset as readable as possible.
(avoiding code duplication).
*/
static Dwarf_Unsigned
get_info_max_offset(Dwarf_Debug dbg)
{
Dwarf_Unsigned debug_info_size = 0;
Dwarf_Unsigned debug_abbrev_size = 0;
Dwarf_Unsigned debug_line_size = 0;
Dwarf_Unsigned debug_loc_size = 0;
Dwarf_Unsigned debug_aranges_size = 0;
Dwarf_Unsigned debug_macinfo_size = 0;
Dwarf_Unsigned debug_pubnames_size = 0;
Dwarf_Unsigned debug_str_size = 0;
Dwarf_Unsigned debug_frame_size = 0;
Dwarf_Unsigned debug_ranges_size = 0;
Dwarf_Unsigned debug_pubtypes_size = 0;
dwarf_get_section_max_offsets(dbg,
&debug_info_size,
&debug_abbrev_size,
&debug_line_size,
&debug_loc_size,
&debug_aranges_size,
&debug_macinfo_size,
&debug_pubnames_size,
&debug_str_size,
&debug_frame_size,
&debug_ranges_size,
&debug_pubtypes_size);
return debug_info_size;
}
/* This unifies the code for some error checks to
avoid code duplication.
*/
static void
check_info_offset_sanity(char *sec,
char *field,
char *global,
Dwarf_Unsigned offset, Dwarf_Unsigned maxoff)
{
if (maxoff == 0) {
/* Lets make a heuristic check. */
if (offset > 0xffffffff) {
printf("Warning: section %s %s %s offset 0x%llx "
"exceptionally large \n",
sec, field, global, (unsigned long long) offset);
}
}
if (offset >= maxoff) {
printf("Warning: section %s %s %s offset 0x%llx "
"larger than max of 0x%llx\n",
sec, field, global, (unsigned long long) offset,
(unsigned long long) maxoff);
}
}
/* Unified pubnames style output.
The error checking here against maxoff may be useless
(in that libdwarf may return an error if the offset is bad
and we will not get called here).
But we leave it in nonetheless as it looks sensible.
In at least one gigantic executable such offsets turned out wrong.
*/
static void
print_pubname_style_entry(Dwarf_Debug dbg,
char *line_title,
char *name,
Dwarf_Unsigned die_off,
Dwarf_Unsigned cu_off,
Dwarf_Unsigned global_cu_offset,
Dwarf_Unsigned maxoff)
{
Dwarf_Die die = NULL;
Dwarf_Die cu_die = NULL;
Dwarf_Off die_CU_off = 0;
int dres = 0;
int ddres = 0;
int cudres = 0;
/* get die at die_off */
dres = dwarf_offdie(dbg, die_off, &die, &err);
if (dres != DW_DLV_OK)
print_error(dbg, "dwarf_offdie", dres, err);
/* get offset of die from its cu-header */
ddres = dwarf_die_CU_offset(die, &die_CU_off, &err);
if (ddres != DW_DLV_OK) {
print_error(dbg, "dwarf_die_CU_offset", ddres, err);
}
/* get die at offset cu_off */
cudres = dwarf_offdie(dbg, cu_off, &cu_die, &err);
if (cudres != DW_DLV_OK) {
dwarf_dealloc(dbg, die, DW_DLA_DIE);
print_error(dbg, "dwarf_offdie", cudres, err);
}
printf("%s %-15s die-in-sect %lld, cu-in-sect %lld,"
" die-in-cu %lld, cu-header-in-sect %lld",
line_title, name, (long long) die_off, (long long) cu_off,
/* the cu die offset */
(long long) die_CU_off,
/* following is absolute offset of the ** beginning of the
cu */
(long long) (die_off - die_CU_off));
if ((die_off - die_CU_off) != global_cu_offset) {
printf(" error: real cuhdr %llu", global_cu_offset);
exit(1);
}
if (verbose) {
printf(" cuhdr %llu", global_cu_offset);
}
dwarf_dealloc(dbg, die, DW_DLA_DIE);
dwarf_dealloc(dbg, cu_die, DW_DLA_DIE);
printf("\n");
check_info_offset_sanity(line_title,
"die offset", name, die_off, maxoff);
check_info_offset_sanity(line_title,
"die cu offset", name, die_CU_off, maxoff);
check_info_offset_sanity(line_title,
"cu offset", name,
(die_off - die_CU_off), maxoff);
}
/* get all the data in .debug_pubnames */
extern void
print_pubnames(Dwarf_Debug dbg)
{
Dwarf_Global *globbuf = NULL;
Dwarf_Signed count = 0;
Dwarf_Signed i = 0;
Dwarf_Off die_off = 0;
Dwarf_Off cu_off = 0;
char *name = 0;
int res = 0;
printf("\n.debug_pubnames\n");
res = dwarf_get_globals(dbg, &globbuf, &count, &err);
if (res == DW_DLV_ERROR) {
print_error(dbg, "dwarf_get_globals", res, err);
} else if (res == DW_DLV_NO_ENTRY) {
/* (err == 0 && count == DW_DLV_NOCOUNT) means there are no
pubnames. */
} else {
Dwarf_Unsigned maxoff = get_info_max_offset(dbg);
for (i = 0; i < count; i++) {
int nres;
int cures3;
Dwarf_Off global_cu_off = 0;
nres = dwarf_global_name_offsets(globbuf[i],
&name, &die_off, &cu_off,
&err);
deal_with_name_offset_err(dbg, "dwarf_global_name_offsets",
name, die_off, nres, err);
cures3 = dwarf_global_cu_offset(globbuf[i],
&global_cu_off, &err);
if (cures3 != DW_DLV_OK) {
print_error(dbg, "dwarf_global_cu_offset", cures3, err);
}
print_pubname_style_entry(dbg,
"global",
name, die_off, cu_off,
global_cu_off, maxoff);
/* print associated die too? */
if (check_pubname_attr) {
Dwarf_Bool has_attr;
int ares;
int dres;
Dwarf_Die die;
/* get die at die_off */
dres = dwarf_offdie(dbg, die_off, &die, &err);
if (dres != DW_DLV_OK) {
print_error(dbg, "dwarf_offdie", dres, err);
}
ares =
dwarf_hasattr(die, DW_AT_external, &has_attr, &err);
if (ares == DW_DLV_ERROR) {
print_error(dbg, "hassattr on DW_AT_external", ares,
err);
}
pubname_attr_result.checks++;
if (ares == DW_DLV_OK && has_attr) {
/* Should the value of flag be examined? */
} else {
pubname_attr_result.errors++;
DWARF_CHECK_ERROR2(name,
"pubname does not have DW_AT_external")
}
dwarf_dealloc(dbg, die, DW_DLA_DIE);
}
}
dwarf_globals_dealloc(dbg, globbuf, count);
}
} /* print_pubnames() */
struct macro_counts_s {
long mc_start_file;
long mc_end_file;
long mc_define;
long mc_undef;
long mc_extension;
long mc_code_zero;
long mc_unknown;
};
static void
print_one_macro_entry_detail(long i,
char *type,
struct Dwarf_Macro_Details_s *mdp)
{
/* "DW_MACINFO_*: section-offset file-index [line] string\n" */
if (mdp->dmd_macro) {
printf("%3ld %s: %6llu %2lld [%4lld] \"%s\" \n",
i,
type,
mdp->dmd_offset,
mdp->dmd_fileindex, mdp->dmd_lineno, mdp->dmd_macro);
} else {
printf("%3ld %s: %6llu %2lld [%4lld] 0\n",
i,
type,
mdp->dmd_offset, mdp->dmd_fileindex, mdp->dmd_lineno);
}
}
static void
print_one_macro_entry(long i,
struct Dwarf_Macro_Details_s *mdp,
struct macro_counts_s *counts)
{
switch (mdp->dmd_type) {
case 0:
counts->mc_code_zero++;
print_one_macro_entry_detail(i, "DW_MACINFO_type-code-0", mdp);
break;
case DW_MACINFO_start_file:
counts->mc_start_file++;
print_one_macro_entry_detail(i, "DW_MACINFO_start_file", mdp);
break;
case DW_MACINFO_end_file:
counts->mc_end_file++;
print_one_macro_entry_detail(i, "DW_MACINFO_end_file ", mdp);
break;
case DW_MACINFO_vendor_ext:
counts->mc_extension++;
print_one_macro_entry_detail(i, "DW_MACINFO_vendor_ext", mdp);
break;
case DW_MACINFO_define:
counts->mc_define++;
print_one_macro_entry_detail(i, "DW_MACINFO_define ", mdp);
break;
case DW_MACINFO_undef:
counts->mc_undef++;
print_one_macro_entry_detail(i, "DW_MACINFO_undef ", mdp);
break;
default:
{
char create_type[50]; /* More than large enough. */
counts->mc_unknown++;
snprintf(create_type, sizeof(create_type),
"DW_MACINFO_0x%x", mdp->dmd_type);
print_one_macro_entry_detail(i, create_type, mdp);
}
break;
}
}
/* print data in .debug_macinfo */
/* FIXME: should print name of file whose index is in macro data
here -- somewhere.
*/
/*ARGSUSED*/ extern void
print_macinfo(Dwarf_Debug dbg)
{
Dwarf_Off offset = 0;
Dwarf_Unsigned max = 0;
Dwarf_Signed count = 0;
long group = 0;
Dwarf_Macro_Details *maclist = NULL;
int lres = 0;
printf("\n.debug_macinfo\n");
while ((lres = dwarf_get_macro_details(dbg, offset,
max, &count, &maclist,
&err)) == DW_DLV_OK) {
long i;
struct macro_counts_s counts;
memset(&counts, 0, sizeof(counts));
printf("\n");
printf("compilation-unit .debug_macinfo # %ld\n", group);
printf
("num name section-offset file-index [line] \"string\"\n");
for (i = 0; i < count; i++) {
struct Dwarf_Macro_Details_s *mdp = &maclist[i];
print_one_macro_entry(i, mdp, &counts);
}
if (counts.mc_start_file == 0) {
printf
("DW_MACINFO file count of zero is invalid DWARF2/3\n");
}
if (counts.mc_start_file != counts.mc_end_file) {
printf("Counts of DW_MACINFO file (%ld) end_file (%ld) "
"do not match!.\n",
counts.mc_start_file, counts.mc_end_file);
}
if (counts.mc_code_zero < 1) {
printf("Count of zeros in macro group should be non-zero "
"(1 preferred), count is %ld\n",
counts.mc_code_zero);
}
printf("Macro counts: start file %ld, "
"end file %ld, "
"define %ld, "
"undef %ld "
"ext %ld, "
"code-zero %ld, "
"unknown %ld\n",
counts.mc_start_file,
counts.mc_end_file,
counts.mc_define,
counts.mc_undef,
counts.mc_extension,
counts.mc_code_zero, counts.mc_unknown);
/* int type= maclist[count - 1].dmd_type; */
/* ASSERT: type is zero */
offset = maclist[count - 1].dmd_offset + 1;
dwarf_dealloc(dbg, maclist, DW_DLA_STRING);
++group;
}
if (lres == DW_DLV_ERROR) {
print_error(dbg, "dwarf_get_macro_details", lres, err);
}
}
/* print data in .debug_loc */
extern void
print_locs(Dwarf_Debug dbg)
{
Dwarf_Unsigned offset = 0;
Dwarf_Addr hipc_offset = 0;
Dwarf_Addr lopc_offset = 0;
Dwarf_Ptr data = 0;
Dwarf_Unsigned entry_len = 0;
Dwarf_Unsigned next_entry = 0;
int lres = 0;
printf("\n.debug_loc format <o b e l> means "
"section-offset begin-addr end-addr length-of-block-entry\n");
while ((lres = dwarf_get_loclist_entry(dbg, offset,
&hipc_offset, &lopc_offset,
&data, &entry_len,
&next_entry,
&err)) == DW_DLV_OK) {
printf("\t <obel> 0x%08llx 0x%09llx " "0x%08llx " "%8lld\n",
(long long) offset, (long long) lopc_offset,
(long long) hipc_offset, (long long) entry_len);
offset = next_entry;
}
if (lres == DW_DLV_ERROR) {
print_error(dbg, "dwarf_get_loclist_entry", lres, err);
}
}
/* print data in .debug_abbrev */
extern void
print_abbrevs(Dwarf_Debug dbg)
{
Dwarf_Abbrev ab;
Dwarf_Unsigned offset = 0;
Dwarf_Unsigned length = 0;
Dwarf_Unsigned attr_count = 0;
/* Maximum defined tag is 0xffff, DW_TAG_hi_user. */
Dwarf_Half tag = 0;
Dwarf_Half attr = 0;
Dwarf_Signed form = 0;
Dwarf_Off off = 0;
Dwarf_Unsigned i = 0;
string child_name;
Dwarf_Unsigned abbrev_num = 1;
Dwarf_Signed child_flag = 0;
int abres = 0;
int tres = 0;
int acres = 0;
Dwarf_Unsigned abbrev_code = 0;
printf("\n.debug_abbrev\n");
while ((abres = dwarf_get_abbrev(dbg, offset, &ab,
&length, &attr_count,
&err)) == DW_DLV_OK) {
if (attr_count == 0) {
/* Simple innocuous zero : null abbrev entry */
if (dense) {
printf("<%lld><%lld><%lld><%s>\n", abbrev_num, offset, (signed long long) /* abbrev_code
*/ 0,
"null .debug_abbrev entry");
} else {
printf("<%4lld><%5lld><code: %2lld> %-20s\n", abbrev_num, offset, (signed long long) /* abbrev_code
*/ 0,
"null .debug_abbrev entry");
}
offset += length;
++abbrev_num;
dwarf_dealloc(dbg, ab, DW_DLA_ABBREV);
continue;
}
tres = dwarf_get_abbrev_tag(ab, &tag, &err);
if (tres != DW_DLV_OK) {
dwarf_dealloc(dbg, ab, DW_DLA_ABBREV);
print_error(dbg, "dwarf_get_abbrev_tag", tres, err);
}
tres = dwarf_get_abbrev_code(ab, &abbrev_code, &err);
if (tres != DW_DLV_OK) {
dwarf_dealloc(dbg, ab, DW_DLA_ABBREV);
print_error(dbg, "dwarf_get_abbrev_code", tres, err);
}
if (dense)
printf("<%lld><%lld><%lld><%s>", abbrev_num,
offset, abbrev_code, get_TAG_name(dbg, tag));
else
printf("<%4lld><%5lld><code: %2lld> %-20s", abbrev_num,
offset, abbrev_code, get_TAG_name(dbg, tag));
++abbrev_num;
acres = dwarf_get_abbrev_children_flag(ab, &child_flag, &err);
if (acres == DW_DLV_ERROR) {
dwarf_dealloc(dbg, ab, DW_DLA_ABBREV);
print_error(dbg, "dwarf_get_abbrev_children_flag", acres,
err);
}
if (acres == DW_DLV_NO_ENTRY) {
child_flag = 0;
}
child_name = get_children_name(dbg, child_flag);
if (dense)
printf(" %s", child_name);
else
printf("%s\n", child_name);
/* Abbrev just contains the format of a die, which debug_info
then points to with the real data. So here we just print the
given format. */
for (i = 0; i < attr_count; i++) {
int aeres;
aeres =
dwarf_get_abbrev_entry(ab, i, &attr, &form, &off, &err);
if (aeres == DW_DLV_ERROR) {
dwarf_dealloc(dbg, ab, DW_DLA_ABBREV);
print_error(dbg, "dwarf_get_abbrev_entry", aeres, err);
}
if (aeres == DW_DLV_NO_ENTRY) {
attr = -1LL;
form = -1LL;
}
if (dense)
printf(" <%ld>%s<%s>", (unsigned long) off,
get_AT_name(dbg, attr),
get_FORM_name(dbg, (Dwarf_Half) form));
else
printf(" <%5ld>\t%-28s%s\n",
(unsigned long) off, get_AT_name(dbg, attr),
get_FORM_name(dbg, (Dwarf_Half) form));
}
dwarf_dealloc(dbg, ab, DW_DLA_ABBREV);
offset += length;
if (dense)
printf("\n");
}
if (abres == DW_DLV_ERROR) {
print_error(dbg, "dwarf_get_abbrev", abres, err);
}
}
/* print data in .debug_string */
extern void
print_strings(Dwarf_Debug dbg)
{
Dwarf_Signed length = 0;
string name;
Dwarf_Off offset = 0;
int sres = 0;
printf("\n.debug_string\n");
while ((sres = dwarf_get_str(dbg, offset, &name, &length, &err))
== DW_DLV_OK) {
printf("name at offset %lld, length %lld is %s\n",
offset, length, name);
offset += length + 1;
}
/* An inability to find the section is not necessarily
a real error, so do not report error unless we've
seen a real record. */
if(sres == DW_DLV_ERROR && offset != 0) {
print_error(dbg, "dwarf_get_str failure", sres, err);
}
}
/* get all the data in .debug_aranges */
extern void
print_aranges(Dwarf_Debug dbg)
{
Dwarf_Signed count = 0;
Dwarf_Signed i = 0;
Dwarf_Arange *arange_buf = NULL;
Dwarf_Addr start = 0;
Dwarf_Unsigned length = 0;
Dwarf_Off cu_die_offset = 0;
Dwarf_Die cu_die = NULL;
int ares = 0;
int aires = 0;
printf("\n.debug_aranges\n");
ares = dwarf_get_aranges(dbg, &arange_buf, &count, &err);
if (ares == DW_DLV_ERROR) {
print_error(dbg, "dwarf_get_aranges", ares, err);
} else if (ares == DW_DLV_NO_ENTRY) {
/* no arange is included */
} else {
for (i = 0; i < count; i++) {
aires = dwarf_get_arange_info(arange_buf[i],
&start, &length,
&cu_die_offset, &err);
if (aires != DW_DLV_OK) {
print_error(dbg, "dwarf_get_arange_info", aires, err);
} else {
int dres;
dres = dwarf_offdie(dbg, cu_die_offset, &cu_die, &err);
if (dres != DW_DLV_OK) {
print_error(dbg, "dwarf_offdie", dres, err);
} else {
if (cu_name_flag) {
Dwarf_Half tag;
Dwarf_Attribute attrib;
Dwarf_Half theform;
int tres;
int dares;
int fres;
tres = dwarf_tag(cu_die, &tag, &err);
if (tres != DW_DLV_OK) {
print_error(dbg, "dwarf_tag in aranges",
tres, err);
}
dares =
dwarf_attr(cu_die, DW_AT_name, &attrib,
&err);
if (dares != DW_DLV_OK) {
print_error(dbg, "dwarf_attr arange"
" derived die has no name",
dres, err);
}
fres = dwarf_whatform(attrib, &theform, &err);
if (fres == DW_DLV_OK) {
if (theform == DW_FORM_string
|| theform == DW_FORM_strp) {
string temps;
int sres;
sres =
dwarf_formstring(attrib, &temps,
&err);
if (sres == DW_DLV_OK) {
string p = temps;
if (cu_name[0] != '/') {
p = strrchr(temps, '/');
if (p == NULL) {
p = temps;
} else {
p++;
}
}
if (!strcmp(cu_name, p)) {
} else {
continue;
}
} else {
print_error(dbg,
"arange: string missing",
sres, err);
}
}
} else {
print_error(dbg,
"dwarf_whatform unexpected value",
fres, err);
}
dwarf_dealloc(dbg, attrib, DW_DLA_ATTR);
}
printf("\narange starts at %llx, "
"length of %lld, cu_die_offset = %lld",
start, length, cu_die_offset);
/* get the offset of the cu header itself in the
section */
{
Dwarf_Off off = 0;
int cures3 =
dwarf_get_arange_cu_header_offset(arange_buf
[i],
&off,
&err);
if (cures3 != DW_DLV_OK) {
print_error(dbg, "dwarf_get_cu_hdr_offset",
cures3, err);
}
if (verbose)
printf(" cuhdr %llu", off);
}
printf("\n");
print_one_die(dbg, cu_die, (boolean) TRUE,
/* srcfiles= */ 0,
/* cnt= */ 0);
dwarf_dealloc(dbg, cu_die, DW_DLA_DIE);
}
}
/* print associated die too? */
dwarf_dealloc(dbg, arange_buf[i], DW_DLA_ARANGE);
}
dwarf_dealloc(dbg, arange_buf, DW_DLA_LIST);
}
}
/* Get all the data in .debug_static_funcs
On error, this allows some dwarf memory leaks.
*/
extern void
print_static_funcs(Dwarf_Debug dbg)
{
Dwarf_Func *funcbuf = NULL;
Dwarf_Signed count = 0;
Dwarf_Signed i = 0;
Dwarf_Off die_off = 0;
Dwarf_Off cu_off = 0;
int gfres = 0;
printf("\n.debug_static_func\n");
gfres = dwarf_get_funcs(dbg, &funcbuf, &count, &err);
if (gfres == DW_DLV_ERROR) {
print_error(dbg, "dwarf_get_funcs", gfres, err);
} else if (gfres == DW_DLV_NO_ENTRY) {
/* no static funcs */
} else {
Dwarf_Unsigned maxoff = get_info_max_offset(dbg);
for (i = 0; i < count; i++) {
int fnres;
int cures3;
Dwarf_Unsigned global_cu_off = 0;
char *name = 0;
fnres =
dwarf_func_name_offsets(funcbuf[i], &name, &die_off,
&cu_off, &err);
deal_with_name_offset_err(dbg, "dwarf_func_name_offsets",
name, die_off, fnres, err);
cures3 = dwarf_func_cu_offset(funcbuf[i],
&global_cu_off, &err);
if (cures3 != DW_DLV_OK) {
print_error(dbg, "dwarf_global_cu_offset", cures3, err);
}
print_pubname_style_entry(dbg,
"static-func", name, die_off,
cu_off, global_cu_off, maxoff);
/* print associated die too? */
if (check_pubname_attr) {
Dwarf_Bool has_attr;
int ares;
int dres;
Dwarf_Die die;
/* get die at die_off */
dres = dwarf_offdie(dbg, die_off, &die, &err);
if (dres != DW_DLV_OK) {
print_error(dbg, "dwarf_offdie", dres, err);
}
ares =
dwarf_hasattr(die, DW_AT_external, &has_attr, &err);
if (ares == DW_DLV_ERROR) {
print_error(dbg, "hassattr on DW_AT_external", ares,
err);
}
pubname_attr_result.checks++;
if (ares == DW_DLV_OK && has_attr) {
/* Should the value of flag be examined? */
} else {
pubname_attr_result.errors++;
DWARF_CHECK_ERROR2(name,
"pubname does not have DW_AT_external")
}
dwarf_dealloc(dbg, die, DW_DLA_DIE);
}
}
dwarf_funcs_dealloc(dbg, funcbuf, count);
}
} /* print_static_funcs() */
/* get all the data in .debug_static_vars */
extern void
print_static_vars(Dwarf_Debug dbg)
{
Dwarf_Var *varbuf = NULL;
Dwarf_Signed count = 0;
Dwarf_Signed i = 0;
Dwarf_Off die_off = 0;
Dwarf_Off cu_off = 0;
char *name = 0;
int gvres = 0;
printf("\n.debug_static_vars\n");
gvres = dwarf_get_vars(dbg, &varbuf, &count, &err);
if (gvres == DW_DLV_ERROR) {
print_error(dbg, "dwarf_get_vars", gvres, err);
} else if (gvres == DW_DLV_NO_ENTRY) {
/* no static vars */
} else {
Dwarf_Unsigned maxoff = get_info_max_offset(dbg);
for (i = 0; i < count; i++) {
int vnres;
int cures3;
Dwarf_Off global_cu_off = 0;
vnres =
dwarf_var_name_offsets(varbuf[i], &name, &die_off,
&cu_off, &err);
deal_with_name_offset_err(dbg,
"dwarf_var_name_offsets",
name, die_off, vnres, err);
cures3 = dwarf_var_cu_offset(varbuf[i],
&global_cu_off, &err);
if (cures3 != DW_DLV_OK) {
print_error(dbg, "dwarf_global_cu_offset", cures3, err);
}
print_pubname_style_entry(dbg,
"static-var",
name, die_off, cu_off,
global_cu_off, maxoff);
/* print associated die too? */
}
dwarf_vars_dealloc(dbg, varbuf, count);
}
} /* print_static_vars */
/* get all the data in .debug_types */
extern void
print_types(Dwarf_Debug dbg, enum type_type_e type_type)
{
Dwarf_Type *typebuf = NULL;
Dwarf_Signed count = 0;
Dwarf_Signed i = 0;
Dwarf_Off die_off = 0;
Dwarf_Off cu_off = 0;
char *name = NULL;
int gtres = 0;
char *section_name = NULL;
char *offset_err_name = NULL;
char *section_open_name = NULL;
char *print_name_prefix = NULL;
int (*get_types) (Dwarf_Debug, Dwarf_Type **, Dwarf_Signed *,
Dwarf_Error *)
= 0;
int (*get_offset) (Dwarf_Type, char **, Dwarf_Off *, Dwarf_Off *,
Dwarf_Error *) = NULL;
int (*get_cu_offset) (Dwarf_Type, Dwarf_Off *, Dwarf_Error *) =
NULL;
void (*dealloctype) (Dwarf_Debug, Dwarf_Type *, Dwarf_Signed) =
NULL;
if (type_type == DWARF_PUBTYPES) {
section_name = ".debug_pubtypes";
offset_err_name = "dwarf_pubtype_name_offsets";
section_open_name = "dwarf_get_pubtypes";
print_name_prefix = "pubtype";
get_types = dwarf_get_pubtypes;
get_offset = dwarf_pubtype_name_offsets;
get_cu_offset = dwarf_pubtype_cu_offset;
dealloctype = dwarf_pubtypes_dealloc;
} else {
/* SGI_TYPENAME */
section_name = ".debug_typenames";
offset_err_name = "dwarf_type_name_offsets";
section_open_name = "dwarf_get_types";
print_name_prefix = "type";
get_types = dwarf_get_types;
get_offset = dwarf_type_name_offsets;
get_cu_offset = dwarf_type_cu_offset;
dealloctype = dwarf_types_dealloc;
}
gtres = get_types(dbg, &typebuf, &count, &err);
if (gtres == DW_DLV_ERROR) {
print_error(dbg, section_open_name, gtres, err);
} else if (gtres == DW_DLV_NO_ENTRY) {
/* no types */
} else {
Dwarf_Unsigned maxoff = get_info_max_offset(dbg);
/* Before July 2005, the section name was printed
unconditionally, now only prints if non-empty section really
exists. */
printf("\n%s\n", section_name);
for (i = 0; i < count; i++) {
int tnres;
int cures3;
Dwarf_Off global_cu_off = 0;
tnres =
get_offset(typebuf[i], &name, &die_off, &cu_off, &err);
deal_with_name_offset_err(dbg, offset_err_name, name,
die_off, tnres, err);
cures3 = get_cu_offset(typebuf[i], &global_cu_off, &err);
if (cures3 != DW_DLV_OK) {
print_error(dbg, "dwarf_var_cu_offset", cures3, err);
}
print_pubname_style_entry(dbg,
print_name_prefix,
name, die_off, cu_off,
global_cu_off, maxoff);
/* print associated die too? */
}
dealloctype(dbg, typebuf, count);
}
} /* print_types() */
/* get all the data in .debug_weaknames */
extern void
print_weaknames(Dwarf_Debug dbg)
{
Dwarf_Weak *weaknamebuf = NULL;
Dwarf_Signed count = 0;
Dwarf_Signed i = 0;
Dwarf_Off die_off = 0;
Dwarf_Off cu_off = 0;
char *name = NULL;
int wkres = 0;
printf("\n.debug_weaknames\n");
wkres = dwarf_get_weaks(dbg, &weaknamebuf, &count, &err);
if (wkres == DW_DLV_ERROR) {
print_error(dbg, "dwarf_get_weaks", wkres, err);
} else if (wkres == DW_DLV_NO_ENTRY) {
/* no weaknames */
} else {
Dwarf_Unsigned maxoff = get_info_max_offset(dbg);
for (i = 0; i < count; i++) {
int tnres;
int cures3;
Dwarf_Unsigned global_cu_off = 0;
tnres = dwarf_weak_name_offsets(weaknamebuf[i],
&name, &die_off, &cu_off,
&err);
deal_with_name_offset_err(dbg,
"dwarf_weak_name_offsets",
name, die_off, tnres, err);
cures3 = dwarf_weak_cu_offset(weaknamebuf[i],
&global_cu_off, &err);
if (cures3 != DW_DLV_OK) {
print_error(dbg, "dwarf_weakname_cu_offset",
cures3, err);
}
print_pubname_style_entry(dbg,
"weakname",
name, die_off, cu_off,
global_cu_off, maxoff);
/* print associated die too? */
}
dwarf_weaks_dealloc(dbg, weaknamebuf, count);
}
} /* print_weaknames() */
/*
decode ULEB
*/
Dwarf_Unsigned
local_dwarf_decode_u_leb128(unsigned char *leb128,
unsigned int *leb128_length)
{
unsigned char byte = 0;
Dwarf_Unsigned number = 0;
unsigned int shift = 0;
unsigned int byte_length = 1;
byte = *leb128;
for (;;) {
number |= (byte & 0x7f) << shift;
shift += 7;
if ((byte & 0x80) == 0) {
if (leb128_length != NULL)
*leb128_length = byte_length;
return (number);
}
byte_length++;
byte = *(++leb128);
}
}
#define BITSINBYTE 8
Dwarf_Signed
local_dwarf_decode_s_leb128(unsigned char *leb128,
unsigned int *leb128_length)
{
Dwarf_Signed number = 0;
Dwarf_Bool sign = 0;
Dwarf_Signed shift = 0;
unsigned char byte = *leb128;
Dwarf_Signed byte_length = 1;
/* byte_length being the number of bytes of data absorbed so far in
turning the leb into a Dwarf_Signed. */
for (;;) {
sign = byte & 0x40;
number |= ((Dwarf_Signed) ((byte & 0x7f))) << shift;
shift += 7;
if ((byte & 0x80) == 0) {
break;
}
++leb128;
byte = *leb128;
byte_length++;
}
if ((shift < sizeof(Dwarf_Signed) * BITSINBYTE) && sign) {
number |= -((Dwarf_Signed) 1 << shift);
}
if (leb128_length != NULL)
*leb128_length = byte_length;
return (number);
}
/* Dumping a dwarf-expression as a byte stream. */
void
dump_block(char *prefix, char *data, Dwarf_Signed len)
{
char *end_data = data + len;
char *cur = data;
int i = 0;
printf("%s", prefix);
for (; cur < end_data; ++cur, ++i) {
if (i > 0 && i % 4 == 0)
printf(" ");
printf("%02x", 0xff & *cur);
}
}
|