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 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070
|
/*
Copyright (C) 2000,2002,2004,2005 Silicon Graphics, Inc. All Rights Reserved.
Portions Copyright 2007-2010 Sun Microsystems, Inc. All rights reserved.
Portions Copyright 2008-2020 David Anderson. All rights reserved.
Portions Copyright 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 <stdio.h>
#include "dwarf_incl.h"
#include "dwarf_alloc.h"
#include "dwarfstring.h"
#include "dwarf_error.h"
#include "dwarf_util.h"
#include "dwarf_die_deliv.h"
#include "dwarf_str_offsets.h"
#include "dwarfstring.h"
#define TRUE 1
#define FALSE 0
/* It is necessary at times to cause errors of this sort
in determining what we really have. So best to avoid
too much malloc and free, hence the static constructor
dwarfstring will use malloc if we guess too-small
for the size of mbuf. */
static void
generate_form_error(Dwarf_Debug dbg,
Dwarf_Error *error,
unsigned form,
int err_code,
const char *errname,
const char *funcname)
{
dwarfstring m;
char mbuf[DWARFSTRING_ALLOC_SIZE];
const char * defaultname = "<unknown form>";
dwarfstring_constructor_static(&m,mbuf,
sizeof(mbuf));
dwarfstring_append(&m,(char *)errname);
dwarfstring_append(&m,": In function ");
dwarfstring_append(&m,(char *)funcname);
dwarfstring_append_printf_u(&m,
" on seeing form 0x%x ",form);
dwarf_get_FORM_name(form,&defaultname);
dwarfstring_append_printf_s(&m,
" (%s)",(char *)defaultname);
_dwarf_error_string(dbg,error,err_code,
dwarfstring_string(&m));
dwarfstring_destructor(&m);
}
/* This code was repeated many times, now it
is all in one place. */
static int
get_attr_dbg(Dwarf_Debug *dbg,
Dwarf_CU_Context * cu_context,
Dwarf_Attribute attr,
Dwarf_Error *error)
{
Dwarf_CU_Context cup;
if (attr == NULL) {
_dwarf_error(NULL, error, DW_DLE_ATTR_NULL);
return (DW_DLV_ERROR);
}
cup = attr->ar_cu_context;
if (cup == NULL) {
_dwarf_error(NULL, error, DW_DLE_ATTR_NO_CU_CONTEXT);
return (DW_DLV_ERROR);
}
if (cup->cc_dbg == NULL) {
_dwarf_error(NULL, error, DW_DLE_ATTR_DBG_NULL);
return (DW_DLV_ERROR);
}
*cu_context = cup;
*dbg = cup->cc_dbg;
return DW_DLV_OK;
}
int
dwarf_hasform(Dwarf_Attribute attr,
Dwarf_Half form,
Dwarf_Bool * return_bool, Dwarf_Error * error)
{
Dwarf_Debug dbg = 0;
Dwarf_CU_Context cu_context = 0;
int res =get_attr_dbg(&dbg,&cu_context, attr,error);
if (res != DW_DLV_OK) {
return res;
}
*return_bool = (attr->ar_attribute_form == form);
return DW_DLV_OK;
}
/* Not often called, we do not worry about efficiency here.
The dwarf_whatform() call does the sanity checks for us.
*/
int
dwarf_whatform_direct(Dwarf_Attribute attr,
Dwarf_Half * return_form, Dwarf_Error * error)
{
int res = dwarf_whatform(attr, return_form, error);
if (res != DW_DLV_OK) {
return res;
}
*return_form = attr->ar_attribute_form_direct;
return (DW_DLV_OK);
}
/* Pass in the content of a block and the length of that
content. On success return DW_DLV_OK and set *value_count
to the size of the array returned through value_array. */
int
dwarf_uncompress_integer_block_a(Dwarf_Debug dbg,
Dwarf_Unsigned input_length_in_bytes,
void * input_block,
Dwarf_Unsigned * value_count,
Dwarf_Signed ** value_array,
Dwarf_Error * error)
{
Dwarf_Unsigned output_length_in_units = 0;
Dwarf_Signed * output_block = 0;
unsigned i = 0;
char * ptr = 0;
int remain = 0;
Dwarf_Signed * array = 0;
Dwarf_Byte_Ptr endptr = (Dwarf_Byte_Ptr)input_block+
input_length_in_bytes;
output_length_in_units = 0;
remain = input_length_in_bytes;
ptr = input_block;
while (remain > 0) {
Dwarf_Unsigned len = 0;
Dwarf_Signed value = 0;
int rres = 0;
rres = _dwarf_decode_s_leb128_chk((unsigned char *)ptr,
&len, &value,endptr);
if (rres != DW_DLV_OK) {
_dwarf_error(NULL, error, DW_DLE_LEB_IMPROPER);
return DW_DLV_ERROR;
}
ptr += len;
remain -= len;
output_length_in_units++;
}
if (remain != 0) {
_dwarf_error(NULL, error, DW_DLE_ALLOC_FAIL);
return DW_DLV_ERROR;
}
output_block = (Dwarf_Signed*)
_dwarf_get_alloc(dbg,
DW_DLA_STRING,
output_length_in_units * sizeof(Dwarf_Signed));
if (!output_block) {
_dwarf_error(dbg, error, DW_DLE_ALLOC_FAIL);
return DW_DLV_ERROR;
}
array = output_block;
remain = input_length_in_bytes;
ptr = input_block;
for (i=0; i<output_length_in_units && remain>0; i++) {
Dwarf_Signed num;
Dwarf_Unsigned len;
int sres = 0;
sres = _dwarf_decode_s_leb128_chk((unsigned char *)ptr,
&len, &num,endptr);
if (sres != DW_DLV_OK) {
dwarf_dealloc(dbg,output_block,DW_DLA_STRING);
_dwarf_error(NULL, error, DW_DLE_LEB_IMPROPER);
return DW_DLV_ERROR;
}
ptr += len;
remain -= len;
array[i] = num;
}
if (remain != 0) {
dwarf_dealloc(dbg, (unsigned char *)output_block,
DW_DLA_STRING);
_dwarf_error(dbg, error, DW_DLE_ALLOC_FAIL);
return DW_DLV_ERROR;
}
*value_count = output_length_in_units;
*value_array = output_block;
return DW_DLV_OK;
}
/* This code was contributed around 2007
and the return value is in the wrong form.
See dwarf_uncompress_integer_block_a() above.
As of 2019 it is not clear that Sun Sparc
compilers are in current use, nor whether
there is a reason to make reads of
this data format safe from corrupted object files.
*/
void *
dwarf_uncompress_integer_block(
Dwarf_Debug dbg,
Dwarf_Bool unit_is_signed,
Dwarf_Small unit_length_in_bits,
void* input_block,
Dwarf_Unsigned input_length_in_bytes,
Dwarf_Unsigned* output_length_in_units_ptr,
Dwarf_Error* error
)
{
Dwarf_Unsigned output_length_in_units = 0;
void * output_block = 0;
unsigned i = 0;
char * ptr = 0;
int remain = 0;
/* This only applies to Sun and there an unsigned
is 4 bytes so this works. As with
most linux. */
unsigned * array = 0;
Dwarf_Byte_Ptr endptr = (Dwarf_Byte_Ptr)input_block+
input_length_in_bytes;
if (dbg == NULL) {
_dwarf_error(NULL, error, DW_DLE_DBG_NULL);
return((void *)DW_DLV_BADADDR);
}
if (unit_is_signed == false ||
unit_length_in_bits != 32 ||
input_block == NULL ||
input_length_in_bytes == 0 ||
output_length_in_units_ptr == NULL) {
_dwarf_error(NULL, error, DW_DLE_BADBITC);
return ((void *) DW_DLV_BADADDR);
}
/* At this point we assume the format is: signed 32 bit */
/* first uncompress everything to find the total size. */
output_length_in_units = 0;
remain = input_length_in_bytes;
ptr = input_block;
while (remain > 0) {
Dwarf_Unsigned len = 0;
Dwarf_Signed value = 0;
int rres = 0;
rres = _dwarf_decode_s_leb128_chk((unsigned char *)ptr,
&len, &value,endptr);
if (rres != DW_DLV_OK) {
return ((void *)DW_DLV_BADADDR);
}
ptr += len;
remain -= len;
output_length_in_units++;
}
if (remain != 0) {
_dwarf_error(NULL, error, DW_DLE_ALLOC_FAIL);
return((void *)DW_DLV_BADADDR);
}
/* then alloc */
output_block = (void *)
_dwarf_get_alloc(dbg,
DW_DLA_STRING,
output_length_in_units * (unit_length_in_bits / 8));
if (output_block == NULL) {
_dwarf_error(dbg, error, DW_DLE_ALLOC_FAIL);
return((void*)DW_DLV_BADADDR);
}
/* then uncompress again and copy into new buffer */
array = (unsigned *) output_block;
remain = input_length_in_bytes;
ptr = input_block;
for (i=0; i<output_length_in_units && remain>0; i++) {
Dwarf_Signed num;
Dwarf_Unsigned len;
int sres = 0;
sres = _dwarf_decode_s_leb128_chk((unsigned char *)ptr,
&len, &num,endptr);
if (sres != DW_DLV_OK) {
dwarf_dealloc(dbg,output_block,DW_DLA_STRING);
return ((void *) DW_DLV_BADADDR);
}
ptr += len;
remain -= len;
array[i] = num;
}
if (remain != 0) {
dwarf_dealloc(dbg, (unsigned char *)output_block, DW_DLA_STRING);
_dwarf_error(dbg, error, DW_DLE_ALLOC_FAIL);
return((Dwarf_P_Attribute)DW_DLV_BADADDR);
}
*output_length_in_units_ptr = output_length_in_units;
return output_block;
}
void
dwarf_dealloc_uncompressed_block(Dwarf_Debug dbg, void * space)
{
dwarf_dealloc(dbg, space, DW_DLA_STRING);
}
int
dwarf_whatform(Dwarf_Attribute attr,
Dwarf_Half * return_form, Dwarf_Error * error)
{
Dwarf_CU_Context cu_context = 0;
Dwarf_Debug dbg = 0;
int res =get_attr_dbg(&dbg,&cu_context, attr,error);
if (res != DW_DLV_OK) {
return res;
}
*return_form = attr->ar_attribute_form;
return (DW_DLV_OK);
}
/*
This function is analogous to dwarf_whatform.
It returns the attribute in attr instead of
the form.
*/
int
dwarf_whatattr(Dwarf_Attribute attr,
Dwarf_Half * return_attr, Dwarf_Error * error)
{
Dwarf_CU_Context cu_context = 0;
Dwarf_Debug dbg = 0;
int res =get_attr_dbg(&dbg,&cu_context, attr,error);
if (res != DW_DLV_OK) {
return res;
}
*return_attr = (attr->ar_attribute);
return DW_DLV_OK;
}
/* Convert an offset within the local CU into a section-relative
debug_info (or debug_types) offset.
See dwarf_global_formref() and dwarf_formref()
for additional information on conversion rules.
*/
int
dwarf_convert_to_global_offset(Dwarf_Attribute attr,
Dwarf_Off offset, Dwarf_Off * ret_offset, Dwarf_Error * error)
{
Dwarf_Debug dbg = 0;
Dwarf_CU_Context cu_context = 0;
int res = 0;
res = get_attr_dbg(&dbg,&cu_context,attr,error);
if (res != DW_DLV_OK) {
return res;
}
switch (attr->ar_attribute_form) {
case DW_FORM_ref1:
case DW_FORM_ref2:
case DW_FORM_ref4:
case DW_FORM_ref8:
case DW_FORM_ref_udata:
/* It is a cu-local offset. Convert to section-global. */
/* It would be nice to put some code to check
legality of the offset */
/* cc_debug_offset always has any DWP Package File
offset included (when the cu_context created)
so there is no extra work for DWP.
Globalize the offset */
offset += cu_context->cc_debug_offset;
break;
case DW_FORM_ref_addr:
/* This offset is defined to be debug_info global already, so
use this value unaltered.
Since a DWP package file is not relocated there
is no way that this reference offset to an address in
any other CU can be correct for a DWP Package File offset
*/
break;
default: {
dwarfstring m;
dwarfstring_constructor(&m);
dwarfstring_append_printf_u(&m,
"DW_DLE_BAD_REF_FORM. The form "
"code is 0x%x which cannot be converted to a global "
" offset by "
"dwarf_convert_to_global_offset()",
attr->ar_attribute_form);
_dwarf_error_string(dbg, error, DW_DLE_BAD_REF_FORM,
dwarfstring_string(&m));
dwarfstring_destructor(&m);
return DW_DLV_ERROR;
}
}
*ret_offset = (offset);
return DW_DLV_OK;
}
/* A global offset cannot be returned by this interface:
see dwarf_global_formref().
DW_FORM_ref_addr is considered an incorrect form
for this call because DW_FORM_ref_addr is a global-offset into
the debug_info section.
For the same reason DW_FORM_data4/data8 are not returned
from this function.
For the same reason DW_FORM_sec_offset is not returned
from this function, DW_FORM_sec_offset is a global offset
(to various sections, not a CU relative offset.
DW_FORM_ref_addr has a value which was documented in
DWARF2 as address-size but which was always an offset
so should have always been offset size (wording
corrected in DWARF3).
The dwarfstd.org FAQ "How big is a DW_FORM_ref_addr?"
suggested all should use offset-size, but that suggestion
seems to have been ignored in favor of doing what the
DWARF2 and 3 standards actually say.
November, 2010: *ret_offset is always set now.
Even in case of error.
Set to zero for most errors, but for
DW_DLE_ATTR_FORM_OFFSET_BAD
*ret_offset is set to the bad offset.
DW_FORM_addrx
DW_FORM_strx
DW_FORM_rnglistx
DW_FORM_GNU_addr_index
DW_FORM_GNU_str_index
are not references to .debug_info/.debug_types,
so they are not allowed here. */
int
dwarf_formref(Dwarf_Attribute attr,
Dwarf_Off * ret_offset,
Dwarf_Error * error)
{
Dwarf_Debug dbg = 0;
Dwarf_Unsigned offset = 0;
Dwarf_CU_Context cu_context = 0;
Dwarf_Unsigned maximumoffset = 0;
int res = DW_DLV_ERROR;
Dwarf_Byte_Ptr section_end = 0;
*ret_offset = 0;
res = get_attr_dbg(&dbg,&cu_context,attr,error);
if (res != DW_DLV_OK) {
return res;
}
section_end =
_dwarf_calculate_info_section_end_ptr(cu_context);
switch (attr->ar_attribute_form) {
case DW_FORM_ref1:
offset = *(Dwarf_Small *) attr->ar_debug_ptr;
break;
case DW_FORM_ref2:
READ_UNALIGNED_CK(dbg, offset, Dwarf_Unsigned,
attr->ar_debug_ptr, DWARF_HALF_SIZE,
error,section_end);
break;
case DW_FORM_ref4:
READ_UNALIGNED_CK(dbg, offset, Dwarf_Unsigned,
attr->ar_debug_ptr, DWARF_32BIT_SIZE,
error,section_end);
break;
case DW_FORM_ref8:
READ_UNALIGNED_CK(dbg, offset, Dwarf_Unsigned,
attr->ar_debug_ptr, DWARF_64BIT_SIZE,
error,section_end);
break;
case DW_FORM_ref_udata: {
Dwarf_Byte_Ptr ptr = attr->ar_debug_ptr;
Dwarf_Unsigned localoffset = 0;
DECODE_LEB128_UWORD_CK(ptr,localoffset,
dbg,error,section_end);
offset = localoffset;
break;
}
case DW_FORM_ref_sig8:
/* We cannot handle this here.
The reference is to .debug_types
not a .debug_info CU local offset. */
_dwarf_error(dbg, error, DW_DLE_REF_SIG8_NOT_HANDLED);
return (DW_DLV_ERROR);
default: {
dwarfstring m;
dwarfstring_constructor(&m);
dwarfstring_append_printf_u(&m,
"DW_DLE_BAD_REF_FORM. The form "
"code is 0x%x which does not have an offset "
" for "
"dwarf_formref() to return.",
attr->ar_attribute_form);
_dwarf_error_string(dbg, error, DW_DLE_BAD_REF_FORM,
dwarfstring_string(&m));
dwarfstring_destructor(&m);
return DW_DLV_ERROR;
}
}
/* Check that offset is within current
cu portion of .debug_info. */
maximumoffset = cu_context->cc_length +
cu_context->cc_length_size +
cu_context->cc_extension_size;
if (offset >= maximumoffset) {
/* For the DW_TAG_compile_unit is legal to have the
DW_AT_sibling attribute outside the current cu portion of
.debug_info.
In other words, sibling points to the end of the CU.
It is used for precompiled headers.
The valid condition will be: 'offset == maximumoffset'. */
Dwarf_Half tag = 0;
int tres = dwarf_tag(attr->ar_die,&tag,error);
if (tres != DW_DLV_OK) {
if (tres == DW_DLV_NO_ENTRY) {
_dwarf_error(dbg, error, DW_DLE_NO_TAG_FOR_DIE);
return DW_DLV_ERROR;
}
return DW_DLV_ERROR;
}
if (DW_TAG_compile_unit != tag &&
DW_AT_sibling != attr->ar_attribute &&
offset > maximumoffset) {
_dwarf_error(dbg, error, DW_DLE_ATTR_FORM_OFFSET_BAD);
/* Return the incorrect offset for better error reporting */
*ret_offset = (offset);
return DW_DLV_ERROR;
}
}
*ret_offset = (offset);
return DW_DLV_OK;
}
static int
_dwarf_formsig8_internal(Dwarf_Attribute attr,
int formexpected,
int formerrnum,
Dwarf_Sig8 * returned_sig_bytes,
Dwarf_Error* error)
{
Dwarf_Debug dbg = 0;
Dwarf_CU_Context cu_context = 0;
Dwarf_Byte_Ptr field_end = 0;
Dwarf_Byte_Ptr section_end = 0;
int res = get_attr_dbg(&dbg,&cu_context,attr,error);
if (res != DW_DLV_OK) {
return res;
}
if (attr->ar_attribute_form != formexpected ) {
_dwarf_error(dbg, error, formerrnum);
return (DW_DLV_ERROR);
}
section_end =
_dwarf_calculate_info_section_end_ptr(cu_context);
field_end = attr->ar_debug_ptr + sizeof(Dwarf_Sig8);
if (field_end > section_end) {
_dwarf_error(dbg, error, DW_DLE_ATTR_FORM_OFFSET_BAD);
return (DW_DLV_ERROR);
}
memcpy(returned_sig_bytes, attr->ar_debug_ptr,
sizeof(Dwarf_Sig8));
return DW_DLV_OK;
}
int
dwarf_formsig8_const(Dwarf_Attribute attr,
Dwarf_Sig8 * returned_sig_bytes,
Dwarf_Error* error)
{
int res =_dwarf_formsig8_internal(attr, DW_FORM_data8,
DW_DLE_ATTR_FORM_NOT_DATA8,
returned_sig_bytes,error);
return res;
}
/* dwarf_formsig8 returns in the caller-provided 8 byte area
the 8 bytes of a DW_FORM_ref_sig8 (copying the bytes
directly to the caller). Not a string, an 8 byte
MD5 hash or a signature.
This function is new in DWARF4 libdwarf and used in
more places in DWARF5.
*/
int
dwarf_formsig8(Dwarf_Attribute attr,
Dwarf_Sig8 * returned_sig_bytes,
Dwarf_Error* error)
{
int res = _dwarf_formsig8_internal(attr, DW_FORM_ref_sig8,
DW_DLE_BAD_REF_SIG8_FORM,
returned_sig_bytes,error);
return res;
}
/* Since this returns section-relative debug_info offsets,
this can represent all REFERENCE forms correctly
and allows all applicable forms.
DW_FORM_ref_addr has a value which was documented in
DWARF2 as address-size but which was always an offset
so should have always been offset size (wording
corrected in DWARF3).
gcc and Go and libdwarf producer code
define the length of the value of DW_FORM_ref_addr
per the version. So for V2 it is address-size and V3 and later
it is offset-size.
See the DWARF4 document for the 3 cases fitting
reference forms. The caller must determine which section the
reference 'points' to. The function added in November 2009,
dwarf_get_form_class(), helps in this regard.
unlike dwarf_formref(), this allows references to
sections other than just .debug_info/.debug_types.
See case DW_FORM_sec_offset:
case DW_FORM_GNU_ref_alt: 2013 GNU extension
case DW_FORM_GNU_strp_alt: 2013 GNU extension
case DW_FORM_strp_sup: DWARF5, sup string section
case DW_FORM_line_strp: DWARF5, .debug_line_str section
*/
int
dwarf_global_formref(Dwarf_Attribute attr,
Dwarf_Off * ret_offset, Dwarf_Error * error)
{
Dwarf_Debug dbg = 0;
Dwarf_Unsigned offset = 0;
Dwarf_CU_Context cu_context = 0;
Dwarf_Half context_version = 0;
Dwarf_Byte_Ptr section_end = 0;
int res = get_attr_dbg(&dbg,&cu_context,attr,error);
if (res != DW_DLV_OK) {
return res;
}
section_end =
_dwarf_calculate_info_section_end_ptr(cu_context);
context_version = cu_context->cc_version_stamp;
switch (attr->ar_attribute_form) {
case DW_FORM_ref1:
offset = *(Dwarf_Small *) attr->ar_debug_ptr;
goto fixoffset;
case DW_FORM_ref2:
READ_UNALIGNED_CK(dbg, offset, Dwarf_Unsigned,
attr->ar_debug_ptr, DWARF_HALF_SIZE,
error,section_end);
goto fixoffset;
case DW_FORM_ref4:
READ_UNALIGNED_CK(dbg, offset, Dwarf_Unsigned,
attr->ar_debug_ptr, DWARF_32BIT_SIZE,
error,section_end);
goto fixoffset;
case DW_FORM_ref8:
READ_UNALIGNED_CK(dbg, offset, Dwarf_Unsigned,
attr->ar_debug_ptr, DWARF_64BIT_SIZE,
error,section_end);
goto fixoffset;
case DW_FORM_ref_udata:
{
Dwarf_Byte_Ptr ptr = attr->ar_debug_ptr;
Dwarf_Unsigned localoffset = 0;
DECODE_LEB128_UWORD_CK(ptr,localoffset,
dbg,error,section_end);
offset = localoffset;
fixoffset: /* we have a local offset, make it global */
/* check legality of offset */
if (offset >= cu_context->cc_length +
cu_context->cc_length_size +
cu_context->cc_extension_size) {
_dwarf_error(dbg, error, DW_DLE_ATTR_FORM_OFFSET_BAD);
return (DW_DLV_ERROR);
}
/* globalize the offset */
offset += cu_context->cc_debug_offset;
}
break;
/* The DWARF2 document did not make clear that
DW_FORM_data4( and 8) were references with
global offsets to some section.
That was first clearly documented in DWARF3.
In DWARF4 these two forms are no longer references. */
case DW_FORM_data4:
if (context_version >= DW_CU_VERSION4) {
_dwarf_error(dbg, error, DW_DLE_NOT_REF_FORM);
return (DW_DLV_ERROR);
}
READ_UNALIGNED_CK(dbg, offset, Dwarf_Unsigned,
attr->ar_debug_ptr, DWARF_32BIT_SIZE,
error, section_end);
/* The offset is global. */
break;
case DW_FORM_data8:
if (context_version >= DW_CU_VERSION4) {
_dwarf_error(dbg, error, DW_DLE_NOT_REF_FORM);
return (DW_DLV_ERROR);
}
READ_UNALIGNED_CK(dbg, offset, Dwarf_Unsigned,
attr->ar_debug_ptr, DWARF_64BIT_SIZE,
error,section_end);
/* The offset is global. */
break;
case DW_FORM_ref_addr:
{
/* In Dwarf V2 DW_FORM_ref_addr was defined
as address-size even though it is a .debug_info
offset. Fixed in Dwarf V3 to be offset-size.
*/
unsigned length_size = 0;
if (context_version == 2) {
length_size = cu_context->cc_address_size;
} else {
length_size = cu_context->cc_length_size;
}
if (length_size == 4) {
READ_UNALIGNED_CK(dbg, offset, Dwarf_Unsigned,
attr->ar_debug_ptr, DWARF_32BIT_SIZE,
error,section_end);
} else if (length_size == 8) {
READ_UNALIGNED_CK(dbg, offset, Dwarf_Unsigned,
attr->ar_debug_ptr, DWARF_64BIT_SIZE,
error,section_end);
} else {
_dwarf_error(dbg, error, DW_DLE_FORM_SEC_OFFSET_LENGTH_BAD);
return (DW_DLV_ERROR);
}
}
break;
/* Index into .debug_rnglists/.debug_loclists section.
Return the index itself. */
case DW_FORM_loclistx:
case DW_FORM_rnglistx: {
unsigned length_size = cu_context->cc_length_size;
READ_UNALIGNED_CK(dbg, offset, Dwarf_Unsigned,
attr->ar_debug_ptr, length_size,
error,section_end);
}
break;
case DW_FORM_sec_offset:
case DW_FORM_GNU_ref_alt: /* 2013 GNU extension */
case DW_FORM_GNU_strp_alt: /* 2013 GNU extension */
case DW_FORM_strp_sup: /* DWARF5, sup string section */
case DW_FORM_line_strp: /* DWARF5, .debug_line_str section */
{
/* DW_FORM_sec_offset first exists in DWARF4.*/
/* It is up to the caller to know what the offset
of DW_FORM_sec_offset, DW_FORM_strp_sup
or DW_FORM_GNU_strp_alt etc refer to,
the offset is not going to refer to .debug_info! */
unsigned length_size = cu_context->cc_length_size;
if (length_size == 4) {
READ_UNALIGNED_CK(dbg, offset, Dwarf_Unsigned,
attr->ar_debug_ptr, DWARF_32BIT_SIZE,
error,section_end);
} else if (length_size == 8) {
READ_UNALIGNED_CK(dbg, offset, Dwarf_Unsigned,
attr->ar_debug_ptr, DWARF_64BIT_SIZE,
error,section_end);
} else {
_dwarf_error(dbg, error, DW_DLE_FORM_SEC_OFFSET_LENGTH_BAD);
return (DW_DLV_ERROR);
}
}
break;
case DW_FORM_ref_sig8: /* FIXME */
/* We cannot handle this yet.
The reference is to .debug_types, and
this function only returns an offset in
.debug_info at this point. */
_dwarf_error(dbg, error, DW_DLE_REF_SIG8_NOT_HANDLED);
return (DW_DLV_ERROR);
default: {
dwarfstring m;
int formcode = attr->ar_attribute_form;
int fcres = 0;
const char *name = 0;
dwarfstring_constructor(&m);
dwarfstring_append_printf_u(&m,
"DW_DLE_BAD_REF_FORM: The form code is 0x%x ",
formcode);
fcres = dwarf_get_FORM_name (formcode,&name);
if (fcres != DW_DLV_OK) {
name="<UnknownFormCode>";
}
dwarfstring_append_printf_s(&m,
" %s.",(char *)name);
_dwarf_error_string(dbg, error, DW_DLE_BAD_REF_FORM,
dwarfstring_string(&m));
dwarfstring_destructor(&m);
return DW_DLV_ERROR;
}
}
/* We do not know what section the offset refers to, so
we have no way to check it for correctness. */
*ret_offset = offset;
return DW_DLV_OK;
}
/* Part of DebugFission. So a consumer can get the index when
the object with the actual debug_addr is
elsewhere. New May 2014*/
int
_dwarf_get_addr_index_itself(int theform,
Dwarf_Small *info_ptr,
Dwarf_Debug dbg,
Dwarf_CU_Context cu_context,
Dwarf_Unsigned *val_out,
Dwarf_Error * error)
{
Dwarf_Unsigned index = 0;
Dwarf_Byte_Ptr section_end = 0;
section_end =
_dwarf_calculate_info_section_end_ptr(cu_context);
switch(theform){
case DW_FORM_GNU_addr_index:
case DW_FORM_addrx:
DECODE_LEB128_UWORD_CK(info_ptr,index,
dbg,error,section_end);
break;
case DW_FORM_addrx1:
READ_UNALIGNED_CK(dbg, index, Dwarf_Unsigned,
info_ptr, 1,
error,section_end);
break;
case DW_FORM_addrx2:
READ_UNALIGNED_CK(dbg, index, Dwarf_Unsigned,
info_ptr, 2,
error,section_end);
break;
case DW_FORM_addrx3:
READ_UNALIGNED_CK(dbg, index, Dwarf_Unsigned,
info_ptr, 3,
error,section_end);
break;
case DW_FORM_addrx4:
READ_UNALIGNED_CK(dbg, index, Dwarf_Unsigned,
info_ptr, 4,
error,section_end);
break;
default:
_dwarf_error(dbg, error, DW_DLE_ATTR_FORM_NOT_ADDR_INDEX);
return DW_DLV_ERROR;
}
*val_out = index;
return DW_DLV_OK;
}
int
dwarf_get_debug_addr_index(Dwarf_Attribute attr,
Dwarf_Unsigned * return_index,
Dwarf_Error * error)
{
int theform = 0;
Dwarf_CU_Context cu_context = 0;
Dwarf_Debug dbg = 0;
int res = get_attr_dbg(&dbg,&cu_context,attr,error);
if (res != DW_DLV_OK) {
return res;
}
theform = attr->ar_attribute_form;
if (dwarf_addr_form_is_indexed(theform)) {
Dwarf_Unsigned index = 0;
res = _dwarf_get_addr_index_itself(theform,
attr->ar_debug_ptr,dbg,cu_context,&index,error);
*return_index = index;
return res;
}
_dwarf_error(dbg, error, DW_DLE_ATTR_FORM_NOT_ADDR_INDEX);
return DW_DLV_ERROR;
}
static int
dw_read_index_val_itself(Dwarf_Debug dbg,
unsigned theform,
Dwarf_Small *info_ptr,
Dwarf_Small *section_end,
Dwarf_Unsigned *return_index,
Dwarf_Error *error)
{
Dwarf_Unsigned index = 0;
switch(theform) {
case DW_FORM_strx:
case DW_FORM_GNU_str_index:
DECODE_LEB128_UWORD_CK(info_ptr,index,
dbg,error,section_end);
break;
case DW_FORM_strx1:
READ_UNALIGNED_CK(dbg, index, Dwarf_Unsigned,
info_ptr, 1,
error,section_end);
break;
case DW_FORM_strx2:
READ_UNALIGNED_CK(dbg, index, Dwarf_Unsigned,
info_ptr, 2,
error,section_end);
break;
case DW_FORM_strx3:
READ_UNALIGNED_CK(dbg, index, Dwarf_Unsigned,
info_ptr, 3,
error,section_end);
break;
case DW_FORM_strx4:
READ_UNALIGNED_CK(dbg, index, Dwarf_Unsigned,
info_ptr, 4,
error,section_end);
break;
default:
_dwarf_error(dbg, error, DW_DLE_ATTR_FORM_NOT_STR_INDEX);
return DW_DLV_ERROR;
}
*return_index = index;
return DW_DLV_OK;
}
/* Part of DebugFission. So a dwarf dumper application
can get the index and print it for the user.
A convenience function. New May 2014
Also used with DWARF5 forms. */
int
dwarf_get_debug_str_index(Dwarf_Attribute attr,
Dwarf_Unsigned *return_index,
Dwarf_Error *error)
{
int theform = attr->ar_attribute_form;
Dwarf_CU_Context cu_context = 0;
Dwarf_Debug dbg = 0;
int res = 0;
Dwarf_Byte_Ptr section_end = 0;
Dwarf_Unsigned index = 0;
Dwarf_Small *info_ptr = 0;
int indxres = 0;
res = get_attr_dbg(&dbg,&cu_context,attr,error);
if (res != DW_DLV_OK) {
return res;
}
section_end =
_dwarf_calculate_info_section_end_ptr(cu_context);
info_ptr = attr->ar_debug_ptr;
indxres = dw_read_index_val_itself(dbg, theform, info_ptr,
section_end, &index,error);
if (indxres == DW_DLV_OK) {
*return_index = index;
return indxres;
}
return indxres;
}
int
_dwarf_extract_data16(Dwarf_Debug dbg,
Dwarf_Small *data,
Dwarf_Small *section_start,
Dwarf_Small *section_end,
Dwarf_Form_Data16 * returned_val,
Dwarf_Error *error)
{
Dwarf_Small *data16end = 0;
data16end = data + sizeof(Dwarf_Form_Data16);
if (data < section_start ||
section_end < data16end) {
_dwarf_error(dbg, error,DW_DLE_DATA16_OUTSIDE_SECTION);
return DW_DLV_ERROR;
}
memcpy(returned_val, data, sizeof(Dwarf_Form_Data16));
return DW_DLV_OK;
}
int
dwarf_formdata16(Dwarf_Attribute attr,
Dwarf_Form_Data16 * returned_val,
Dwarf_Error* error)
{
Dwarf_Half attrform = 0;
Dwarf_CU_Context cu_context = 0;
Dwarf_Debug dbg = 0;
int res = 0;
Dwarf_Small *section_end = 0;
Dwarf_Unsigned section_length = 0;
Dwarf_Small *section_start = 0;
if (attr == NULL) {
_dwarf_error(NULL, error, DW_DLE_ATTR_NULL);
return DW_DLV_ERROR;
}
if (returned_val == NULL) {
_dwarf_error(NULL, error, DW_DLE_ATTR_NULL);
return DW_DLV_ERROR;
}
attrform = attr->ar_attribute_form;
if (attrform != DW_FORM_data16) {
generate_form_error(dbg,error,attrform,
DW_DLE_ATTR_FORM_BAD,
"DW_DLE_ATTR_FORM_BAD",
"dwarf_formdata16");
return DW_DLV_ERROR;
}
res = get_attr_dbg(&dbg,&cu_context,attr,error);
if (res != DW_DLV_OK) {
return res;
}
section_start = _dwarf_calculate_info_section_start_ptr(
cu_context,§ion_length);
section_end = section_start + section_length;
res = _dwarf_extract_data16(dbg, attr->ar_debug_ptr,
section_start, section_end,
returned_val, error);
return res;
}
/* The *addrx are DWARF5 standard.
The GNU form was non-standard gcc DWARF4 */
Dwarf_Bool
dwarf_addr_form_is_indexed(int form)
{
if (form == DW_FORM_addrx ||
form == DW_FORM_addrx1 ||
form == DW_FORM_addrx2 ||
form == DW_FORM_addrx3 ||
form == DW_FORM_addrx4 ||
form == DW_FORM_GNU_addr_index) {
return TRUE;
}
return FALSE;
}
int
dwarf_formaddr(Dwarf_Attribute attr,
Dwarf_Addr * return_addr, Dwarf_Error * error)
{
Dwarf_Debug dbg = 0;
Dwarf_Addr ret_addr = 0;
Dwarf_CU_Context cu_context = 0;
Dwarf_Half attrform = 0;
int res = 0;
res = get_attr_dbg(&dbg,&cu_context,attr,error);
if (res != DW_DLV_OK) {
return res;
}
attrform = attr->ar_attribute_form;
if (dwarf_addr_form_is_indexed(attrform)) {
res = _dwarf_look_in_local_and_tied(
attrform,
cu_context,
attr->ar_debug_ptr,
return_addr,
error);
return res;
}
if (attrform == DW_FORM_addr
/* || attrform == DW_FORM_ref_addr Allowance of
DW_FORM_ref_addr was a mistake. The value returned in that
case is NOT an address it is a global debug_info offset (ie,
not CU-relative offset within the CU in debug_info). The
DWARF2 document refers to it as an address (misleadingly) in
sec 6.5.4 where it describes the reference form. It is
address-sized so that the linker can easily update it, but
it is a reference inside the debug_info section. No longer
allowed. */
) {
Dwarf_Small *section_end =
_dwarf_calculate_info_section_end_ptr(cu_context);
READ_UNALIGNED_CK(dbg, ret_addr, Dwarf_Addr,
attr->ar_debug_ptr,
cu_context->cc_address_size,
error,section_end);
*return_addr = ret_addr;
return (DW_DLV_OK);
}
generate_form_error(dbg,error,attrform,
DW_DLE_ATTR_FORM_BAD,
"DW_DLE_ATTR_FORM_BAD",
"dwarf_formaddr");
return DW_DLV_ERROR;
}
int
dwarf_formflag(Dwarf_Attribute attr,
Dwarf_Bool * ret_bool, Dwarf_Error * error)
{
Dwarf_CU_Context cu_context = 0;
Dwarf_Debug dbg = 0;
if (attr == NULL) {
_dwarf_error(NULL, error, DW_DLE_ATTR_NULL);
return (DW_DLV_ERROR);
}
cu_context = attr->ar_cu_context;
if (cu_context == NULL) {
_dwarf_error(NULL, error, DW_DLE_ATTR_NO_CU_CONTEXT);
return (DW_DLV_ERROR);
}
dbg = cu_context->cc_dbg;
if (dbg == NULL) {
_dwarf_error(NULL, error, DW_DLE_ATTR_DBG_NULL);
return (DW_DLV_ERROR);
}
if (attr->ar_attribute_form == DW_FORM_flag_present) {
/* Implicit means we don't read any data at all. Just
the existence of the Form does it. DWARF4. */
*ret_bool = 1;
return (DW_DLV_OK);
}
if (attr->ar_attribute_form == DW_FORM_flag) {
*ret_bool = *(Dwarf_Small *)(attr->ar_debug_ptr);
return (DW_DLV_OK);
}
generate_form_error(dbg,error,attr->ar_attribute_form,
DW_DLE_ATTR_FORM_BAD,
"DW_DLE_ATTR_FORM_BAD",
"dwarf_formflat");
return (DW_DLV_ERROR);
}
Dwarf_Bool
_dwarf_allow_formudata(unsigned form)
{
switch(form) {
case DW_FORM_data1:
case DW_FORM_data2:
case DW_FORM_data4:
case DW_FORM_data8:
case DW_FORM_udata:
case DW_FORM_loclistx:
case DW_FORM_rnglistx:
return TRUE;
}
return FALSE;
}
/* If the form is DW_FORM_constx and the .debug_addr section
is missing, this returns DW_DLV_ERROR and the error number
in the Dwarf_Error is DW_DLE_MISSING_NEEDED_DEBUG_ADDR_SECTION.
When that arises, a consumer should call
dwarf_get_debug_addr_index() and use that on the appropriate
.debug_addr section in the executable or another object. */
int
_dwarf_formudata_internal(Dwarf_Debug dbg,
unsigned form,
Dwarf_Byte_Ptr data,
Dwarf_Byte_Ptr section_end,
Dwarf_Unsigned *return_uval,
Dwarf_Unsigned *bytes_read,
Dwarf_Error *error)
{
Dwarf_Unsigned ret_value = 0;
switch (form) {
case DW_FORM_data1:
READ_UNALIGNED_CK(dbg, ret_value, Dwarf_Unsigned,
data, sizeof(Dwarf_Small),
error,section_end);
*return_uval = ret_value;
*bytes_read = 1;
return DW_DLV_OK;
/* READ_UNALIGNED does the right thing as it reads
the right number bits and generates host order.
So we can just assign to *return_uval. */
case DW_FORM_data2:{
READ_UNALIGNED_CK(dbg, ret_value, Dwarf_Unsigned,
data, DWARF_HALF_SIZE,
error,section_end);
*return_uval = ret_value;
*bytes_read = 2;
return DW_DLV_OK;
}
case DW_FORM_data4:{
READ_UNALIGNED_CK(dbg, ret_value, Dwarf_Unsigned,
data,
DWARF_32BIT_SIZE,
error,section_end);
*return_uval = ret_value;
*bytes_read = DWARF_32BIT_SIZE;;
return DW_DLV_OK;
}
case DW_FORM_data8:{
READ_UNALIGNED_CK(dbg, ret_value, Dwarf_Unsigned,
data,
DWARF_64BIT_SIZE,
error,section_end);
*return_uval = ret_value;
*bytes_read = DWARF_64BIT_SIZE;
return DW_DLV_OK;
}
break;
/* real udata */
case DW_FORM_loclistx:
case DW_FORM_rnglistx:
case DW_FORM_udata: {
Dwarf_Unsigned leblen = 0;
DECODE_LEB128_UWORD_LEN_CK(data, ret_value,leblen,
dbg,error,section_end);
*return_uval = ret_value;
*bytes_read = leblen;
return DW_DLV_OK;
}
/* IRIX bug 583450. We do not allow reading
sdata from a udata
value. Caller can retry, calling sdata */
default:
break;
}
generate_form_error(dbg,error,form,
DW_DLE_ATTR_FORM_BAD,
"DW_DLE_ATTR_FORM_BAD",
"formudata (internal function)");
return (DW_DLV_ERROR);
}
int
dwarf_formudata(Dwarf_Attribute attr,
Dwarf_Unsigned * return_uval, Dwarf_Error * error)
{
Dwarf_Debug dbg = 0;
Dwarf_CU_Context cu_context = 0;
Dwarf_Byte_Ptr section_end = 0;
Dwarf_Unsigned bytes_read = 0;
Dwarf_Byte_Ptr data = attr->ar_debug_ptr;
unsigned form = 0;
int res = get_attr_dbg(&dbg,&cu_context,attr,error);
if (res != DW_DLV_OK) {
return res;
}
section_end =
_dwarf_calculate_info_section_end_ptr(cu_context);
form = attr->ar_attribute_form;
res = _dwarf_formudata_internal(dbg,
form, data, section_end, return_uval,
&bytes_read, error);
return res;
}
int
dwarf_formsdata(Dwarf_Attribute attr,
Dwarf_Signed * return_sval, Dwarf_Error * error)
{
Dwarf_Signed ret_value = 0;
Dwarf_Debug dbg = 0;
Dwarf_CU_Context cu_context = 0;
Dwarf_Byte_Ptr section_end = 0;
int res = get_attr_dbg(&dbg,&cu_context,attr,error);
if (res != DW_DLV_OK) {
return res;
}
section_end =
_dwarf_calculate_info_section_end_ptr(cu_context);
switch (attr->ar_attribute_form) {
case DW_FORM_data1:
if ( attr->ar_debug_ptr >= section_end) {
_dwarf_error(dbg, error, DW_DLE_DIE_BAD);
return DW_DLV_ERROR;
}
*return_sval = (*(Dwarf_Sbyte *) attr->ar_debug_ptr);
return DW_DLV_OK;
/* READ_UNALIGNED does not sign extend.
So we have to use a cast to get the
value sign extended in the right way for each case. */
case DW_FORM_data2:{
READ_UNALIGNED_CK(dbg, ret_value, Dwarf_Signed,
attr->ar_debug_ptr,
DWARF_HALF_SIZE,
error,section_end);
*return_sval = (Dwarf_Shalf) ret_value;
return DW_DLV_OK;
}
case DW_FORM_data4:{
READ_UNALIGNED_CK(dbg, ret_value, Dwarf_Signed,
attr->ar_debug_ptr,
DWARF_32BIT_SIZE,
error,section_end);
SIGN_EXTEND(ret_value,DWARF_32BIT_SIZE);
*return_sval = (Dwarf_Signed) ret_value;
return DW_DLV_OK;
}
case DW_FORM_data8:{
READ_UNALIGNED_CK(dbg, ret_value, Dwarf_Signed,
attr->ar_debug_ptr,
DWARF_64BIT_SIZE,
error,section_end);
/* No SIGN_EXTEND needed, we are filling all bytes already.*/
*return_sval = (Dwarf_Signed) ret_value;
return DW_DLV_OK;
}
/* DW_FORM_implicit_const is a value in the
abbreviations, not in the DIEs. */
case DW_FORM_implicit_const:
*return_sval = attr->ar_implicit_const;
return DW_DLV_OK;
case DW_FORM_sdata: {
Dwarf_Byte_Ptr tmp = attr->ar_debug_ptr;
DECODE_LEB128_SWORD_CK(tmp, ret_value,
dbg,error,section_end);
*return_sval = ret_value;
return DW_DLV_OK;
}
/* IRIX bug 583450. We do not allow reading sdata from a udata
value. Caller can retry, calling udata */
default:
break;
}
generate_form_error(dbg,error,attr->ar_attribute_form,
DW_DLE_ATTR_FORM_BAD,
"DW_DLE_ATTR_FORM_BAD",
"dwarf_formsdata");
return DW_DLV_ERROR;
}
int
_dwarf_formblock_internal(Dwarf_Debug dbg,
Dwarf_Attribute attr,
Dwarf_CU_Context cu_context,
Dwarf_Block * return_block,
Dwarf_Error * error)
{
Dwarf_Small *section_start = 0;
Dwarf_Small *section_end = 0;
Dwarf_Unsigned section_length = 0;
Dwarf_Unsigned length = 0;
Dwarf_Small *data = 0;
section_end =
_dwarf_calculate_info_section_end_ptr(cu_context);
section_start =
_dwarf_calculate_info_section_start_ptr(cu_context,
§ion_length);
switch (attr->ar_attribute_form) {
case DW_FORM_block1:
length = *(Dwarf_Small *) attr->ar_debug_ptr;
data = attr->ar_debug_ptr + sizeof(Dwarf_Small);
break;
case DW_FORM_block2:
READ_UNALIGNED_CK(dbg, length, Dwarf_Unsigned,
attr->ar_debug_ptr, DWARF_HALF_SIZE,
error,section_end);
data = attr->ar_debug_ptr + DWARF_HALF_SIZE;
break;
case DW_FORM_block4:
READ_UNALIGNED_CK(dbg, length, Dwarf_Unsigned,
attr->ar_debug_ptr, DWARF_32BIT_SIZE,
error,section_end);
data = attr->ar_debug_ptr + DWARF_32BIT_SIZE;
break;
case DW_FORM_block: {
Dwarf_Byte_Ptr tmp = attr->ar_debug_ptr;
Dwarf_Unsigned leblen = 0;
DECODE_LEB128_UWORD_LEN_CK(tmp, length, leblen,
dbg,error,section_end);
data = attr->ar_debug_ptr + leblen;
break;
}
default:
generate_form_error(dbg,error,attr->ar_attribute_form,
DW_DLE_ATTR_FORM_BAD,
"DW_DLE_ATTR_FORM_BAD",
"dwarf_formblock");
return DW_DLV_ERROR;
}
/* We have the data. Check for errors. */
if (length >= section_length) {
/* Sanity test looking for wraparound:
when length actually added in
it would not be caught.
Test could be just >, but >= ok here too.*/
_dwarf_error_string(dbg, error,
DW_DLE_FORM_BLOCK_LENGTH_ERROR,
"DW_DLE_FORM_BLOCK_LENGTH_ERROR: "
"The length of the block is greater "
"than the section length! Corrupt Dwarf.");
return DW_DLV_ERROR;
}
if ((attr->ar_debug_ptr + length) > section_end) {
_dwarf_error_string(dbg, error,
DW_DLE_FORM_BLOCK_LENGTH_ERROR,
"DW_DLE_FORM_BLOCK_LENGTH_ERROR: "
"The block length means the block "
"runs off the end of the section length!"
" Corrupt Dwarf.");
return DW_DLV_ERROR;
}
if (data > section_end) {
_dwarf_error_string(dbg, error,
DW_DLE_FORM_BLOCK_LENGTH_ERROR,
"DW_DLE_FORM_BLOCK_LENGTH_ERROR: "
"The block content is "
"past the end of the section!"
" Corrupt Dwarf.");
_dwarf_error(dbg, error, DW_DLE_FORM_BLOCK_LENGTH_ERROR);
return DW_DLV_ERROR;
}
if ((data + length) > section_end) {
_dwarf_error_string(dbg, error,
DW_DLE_FORM_BLOCK_LENGTH_ERROR,
"DW_DLE_FORM_BLOCK_LENGTH_ERROR: "
"The end of the block content is "
"past the end of the section!"
" Corrupt Dwarf.");
return DW_DLV_ERROR;
}
return_block->bl_len = length;
return_block->bl_data = data;
/* This struct is public so use the old name instead
of what we now would call it: bl_kind */
return_block->bl_from_loclist = DW_LKIND_expression;
return_block->bl_section_offset = data - section_start;
return DW_DLV_OK;
}
int
dwarf_formblock(Dwarf_Attribute attr,
Dwarf_Block ** return_block, Dwarf_Error * error)
{
Dwarf_CU_Context cu_context = 0;
Dwarf_Debug dbg = 0;
Dwarf_Block local_block;
Dwarf_Block *out_block = 0;
int res = 0;
memset(&local_block,0,sizeof(local_block));
res = get_attr_dbg(&dbg,&cu_context,attr,error);
if (res != DW_DLV_OK) {
return res;
}
res = _dwarf_formblock_internal(dbg,attr,
cu_context, &local_block, error);
if (res != DW_DLV_OK) {
return res;
}
out_block = (Dwarf_Block *)
_dwarf_get_alloc(dbg, DW_DLA_BLOCK, 1);
if (out_block == NULL) {
_dwarf_error(dbg, error, DW_DLE_ALLOC_FAIL);
return DW_DLV_ERROR;
}
*out_block = local_block;
*return_block = out_block;
return DW_DLV_OK;
}
int
_dwarf_extract_string_offset_via_str_offsets(Dwarf_Debug dbg,
Dwarf_Small *data_ptr,
Dwarf_Small *end_data_ptr,
UNUSEDARG Dwarf_Half attrnum,
Dwarf_Half attrform,
Dwarf_CU_Context cu_context,
Dwarf_Unsigned *str_sect_offset_out,
Dwarf_Error *error)
{
Dwarf_Unsigned index_to_offset_entry = 0;
Dwarf_Unsigned offsetintable = 0;
Dwarf_Unsigned end_offsetintable = 0;
Dwarf_Unsigned indexoffset = 0;
Dwarf_Unsigned baseoffset = 0;
int res = 0;
int idxres = 0;
Dwarf_Small *sof_start = 0;
Dwarf_Unsigned sof_len = 0;
Dwarf_Small *sof_end = 0;
res = _dwarf_load_section(dbg, &dbg->de_debug_str_offsets,error);
if (res != DW_DLV_OK) {
return res;
}
/* If this is a dwp we look there, but I suppose
we could also look for the section in the tied
file it is not here. */
sof_start = dbg->de_debug_str_offsets.dss_data;
sof_len = dbg->de_debug_str_offsets.dss_size;
sof_end = sof_start+sof_len;
idxres = dw_read_index_val_itself(dbg,
attrform,data_ptr,end_data_ptr,&index_to_offset_entry,error);
if ( idxres != DW_DLV_OK) {
return idxres;
}
if (cu_context->cc_str_offsets_base_present) {
baseoffset = cu_context->cc_str_offsets_base;
}
indexoffset = index_to_offset_entry*
cu_context->cc_length_size;
baseoffset = cu_context->cc_str_offsets_base;
if (!baseoffset) {
if (cu_context->cc_version_stamp == DW_CU_VERSION5 ) {
/* A base offset of 0 isnormally never correct for
DWARF5. but some early GNU compilers emitted
DWARF4 .debug_str_offsets, so lets check
the first table. */
Dwarf_Small * ststart =
dbg->de_debug_str_offsets.dss_data;
Dwarf_Small * stend = 0;
Dwarf_Unsigned stsize =
dbg->de_debug_str_offsets.dss_size;
Dwarf_Unsigned length = 0;
Dwarf_Half local_offset_size = 0;
Dwarf_Half local_extension_size = 0;
Dwarf_Half version = 0;
Dwarf_Half padding = 0;
stend = ststart + stsize;
res = _dwarf_trial_read_dwarf_five_hdr(dbg,
ststart,stsize,stend,
&length, &local_offset_size,
&local_extension_size,
&version,
&padding,
error);
if (res == DW_DLV_OK) {
baseoffset = local_extension_size +
local_offset_size +
2*DWARF_HALF_SIZE;
} else {
if (res == DW_DLV_ERROR) {
dwarf_dealloc_error(dbg,*error);
*error = 0;
}
}
}
}
offsetintable = baseoffset +indexoffset;
end_offsetintable = offsetintable +
cu_context->cc_str_offsets_offset_size;
/* The offsets table is a series of offset-size entries.
The == case in the test applies when we are at the last table
entry, so == is not an error, hence only test >
*/
if (end_offsetintable > dbg->de_debug_str_offsets.dss_size ) {
dwarfstring m;
dwarfstring_constructor(&m);
dwarfstring_append_printf_u(&m,
"DW_DLE_ATTR_FORM_SIZE_BAD: The end offset of "
"a .debug_str_offsets table is 0x%x ",
end_offsetintable);
dwarfstring_append_printf_u(&m,
"but the object section is just 0x%x "
"bytes long",
dbg->de_debug_str_offsets.dss_size);
_dwarf_error_string(dbg, error,
DW_DLE_ATTR_FORM_SIZE_BAD,
dwarfstring_string(&m));
dwarfstring_destructor(&m);
return (DW_DLV_ERROR);
}
{
Dwarf_Unsigned offsettostr = baseoffset+offsetintable;
/* Now read the string offset from the offset table. */
READ_UNALIGNED_CK(dbg,offsettostr,Dwarf_Unsigned,
sof_start+ offsetintable,
cu_context->cc_length_size,error,sof_end);
*str_sect_offset_out = offsettostr;
}
return DW_DLV_OK;
}
int
_dwarf_extract_local_debug_str_string_given_offset(Dwarf_Debug dbg,
unsigned attrform,
Dwarf_Unsigned offset,
char ** return_str,
Dwarf_Error * error)
{
if (attrform == DW_FORM_strp ||
attrform == DW_FORM_line_strp ||
attrform == DW_FORM_GNU_str_index ||
attrform == DW_FORM_strx1 ||
attrform == DW_FORM_strx2 ||
attrform == DW_FORM_strx3 ||
attrform == DW_FORM_strx4 ||
attrform == DW_FORM_strx) {
/* The 'offset' into .debug_str or .debug_line_str is given,
here we turn that into a pointer. */
Dwarf_Small *secend = 0;
Dwarf_Small *secbegin = 0;
Dwarf_Small *strbegin = 0;
Dwarf_Unsigned secsize = 0;
int errcode = 0;
const char *errname = 0;
int res = 0;
if(attrform == DW_FORM_line_strp) {
res = _dwarf_load_section(dbg, &dbg->de_debug_line_str,error);
if (res != DW_DLV_OK) {
return res;
}
errcode = DW_DLE_STRP_OFFSET_BAD;
errname = "DW_DLE_STRP_OFFSET_BAD";
secsize = dbg->de_debug_line_str.dss_size;
secbegin = dbg->de_debug_line_str.dss_data;
strbegin= dbg->de_debug_line_str.dss_data + offset;
} else {
/* DW_FORM_strp etc */
res = _dwarf_load_section(dbg, &dbg->de_debug_str,error);
if (res != DW_DLV_OK) {
return res;
}
errcode = DW_DLE_STRING_OFFSET_BAD;
errname = "DW_DLE_STRING_OFFSET_BAD";
secsize = dbg->de_debug_str.dss_size;
secbegin = dbg->de_debug_str.dss_data;
strbegin= dbg->de_debug_str.dss_data + offset;
secend = dbg->de_debug_str.dss_data + secsize;
}
if (offset >= secsize) {
dwarfstring m;
const char *name = "<unknownform>";
dwarf_get_FORM_name(attrform,&name);
dwarfstring_constructor(&m);
dwarfstring_append(&m,(char *)errname);
dwarfstring_append_printf_s(&m,
" Form %s ",(char *)name);
dwarfstring_append_printf_u(&m,
"string offset of 0x%" DW_PR_DUx " ",
offset);
dwarfstring_append_printf_u(&m,
"is larger than the string section "
"size of 0x%" DW_PR_DUx,
secsize);
_dwarf_error_string(dbg, error, errcode,
dwarfstring_string(&m));
dwarfstring_destructor(&m);
/* Badly damaged DWARF here. */
return DW_DLV_ERROR;
}
res= _dwarf_check_string_valid(dbg,secbegin,strbegin, secend,
errcode,error);
if (res != DW_DLV_OK) {
return res;
}
*return_str = (char *)strbegin;
return DW_DLV_OK;
}
generate_form_error(dbg,error,attrform,
DW_DLE_ATTR_FORM_BAD,
"DW_DLE_ATTR_FORM_BAD",
"extract debug_str string");
return (DW_DLV_ERROR);
}
/* Contrary to pre-2005 documentation,
The string pointer returned thru return_str must
never have dwarf_dealloc() applied to it.
Documentation fixed July 2005.
*/
int
dwarf_formstring(Dwarf_Attribute attr,
char **return_str, Dwarf_Error * error)
{
Dwarf_CU_Context cu_context = 0;
Dwarf_Debug dbg = 0;
Dwarf_Unsigned offset = 0;
int res = DW_DLV_ERROR;
Dwarf_Small *secdataptr = 0;
Dwarf_Small *secend = 0;
Dwarf_Unsigned secdatalen = 0;
Dwarf_Small *infoptr = attr->ar_debug_ptr;
Dwarf_Small *contextend = 0;
res = get_attr_dbg(&dbg,&cu_context,attr,error);
if (res != DW_DLV_OK) {
return res;
}
if (cu_context->cc_is_info) {
secdataptr = (Dwarf_Small *)dbg->de_debug_info.dss_data;
secdatalen = dbg->de_debug_info.dss_size;
} else {
secdataptr = (Dwarf_Small *)dbg->de_debug_types.dss_data;
secdatalen = dbg->de_debug_types.dss_size;
}
contextend = secdataptr +
cu_context->cc_debug_offset +
cu_context->cc_length +
cu_context->cc_length_size +
cu_context->cc_extension_size;
secend = secdataptr + secdatalen;
if (contextend < secend) {
secend = contextend;
}
switch(attr->ar_attribute_form) {
case DW_FORM_string: {
Dwarf_Small *begin = attr->ar_debug_ptr;
res= _dwarf_check_string_valid(dbg,secdataptr,begin, secend,
DW_DLE_FORM_STRING_BAD_STRING,error);
if (res != DW_DLV_OK) {
return res;
}
*return_str = (char *) (begin);
return DW_DLV_OK;
}
case DW_FORM_GNU_strp_alt:
case DW_FORM_strp_sup: {
Dwarf_Error alterr = 0;
/* See dwarfstd.org issue 120604.1
This is the offset in the .debug_str section
of another object file.
The 'tied' file notion should apply.
It is not clear whether both a supplementary
and a split object might be needed at the same time
(hence two 'tied' files simultaneously). */
Dwarf_Off soffset = 0;
res = dwarf_global_formref(attr, &soffset,error);
if (res != DW_DLV_OK) {
return res;
}
res = _dwarf_get_string_from_tied(dbg, soffset,
return_str, &alterr);
if (res == DW_DLV_ERROR) {
if (dwarf_errno(alterr) == DW_DLE_NO_TIED_FILE_AVAILABLE) {
dwarf_dealloc(dbg,alterr,DW_DLA_ERROR);
if( attr->ar_attribute_form == DW_FORM_GNU_strp_alt) {
*return_str =
(char *)"<DW_FORM_GNU_strp_alt-no-tied-file>";
} else {
*return_str =
(char *)"<DW_FORM_strp_sup-no-tied-file>";
}
return DW_DLV_OK;
}
if (error) {
*error = alterr;
}
return res;
}
if (res == DW_DLV_NO_ENTRY) {
if( attr->ar_attribute_form == DW_FORM_GNU_strp_alt) {
*return_str =
(char *)"<DW_FORM_GNU_strp_alt-no-tied-file>";
}else {
*return_str =
(char *)"<DW_FORM_strp_sup-no-tied-file>";
}
}
return res;
}
case DW_FORM_GNU_str_index:
case DW_FORM_strx:
case DW_FORM_strx1:
case DW_FORM_strx2:
case DW_FORM_strx3:
case DW_FORM_strx4: {
Dwarf_Unsigned offsettostr= 0;
res = _dwarf_extract_string_offset_via_str_offsets(dbg,
infoptr,
secend,
attr->ar_attribute,
attr->ar_attribute_form,
cu_context,
&offsettostr,
error);
if (res != DW_DLV_OK) {
return res;
}
offset = offsettostr;
break;
}
case DW_FORM_strp:
case DW_FORM_line_strp:{
READ_UNALIGNED_CK(dbg, offset, Dwarf_Unsigned,
infoptr,
cu_context->cc_length_size,error,secend);
break;
}
default:
_dwarf_error(dbg, error, DW_DLE_STRING_FORM_IMPROPER);
return DW_DLV_ERROR;
}
/* Now we have offset so read the string from
debug_str or debug_line_str. */
res = _dwarf_extract_local_debug_str_string_given_offset(dbg,
attr->ar_attribute_form,
offset,
return_str,
error);
return res;
}
int
_dwarf_get_string_from_tied(Dwarf_Debug dbg,
Dwarf_Unsigned offset,
char **return_str,
Dwarf_Error*error)
{
Dwarf_Debug tieddbg = 0;
Dwarf_Small *secend = 0;
Dwarf_Small *secbegin = 0;
Dwarf_Small *strbegin = 0;
int res = DW_DLV_ERROR;
Dwarf_Error localerror = 0;
/* Attach errors to dbg, not tieddbg. */
tieddbg = dbg->de_tied_data.td_tied_object;
if (!tieddbg) {
_dwarf_error(dbg, error, DW_DLE_NO_TIED_FILE_AVAILABLE);
return DW_DLV_ERROR;
}
/* The 'offset' into .debug_str is set. */
res = _dwarf_load_section(tieddbg, &tieddbg->de_debug_str,&localerror);
if (res == DW_DLV_ERROR) {
Dwarf_Unsigned lerrno = dwarf_errno(localerror);
dwarf_dealloc(tieddbg,localerror,DW_DLA_ERROR);
_dwarf_error(dbg,error,lerrno);
return res;
} else if (res == DW_DLV_NO_ENTRY) {
return res;
}
if (offset >= tieddbg->de_debug_str.dss_size) {
/* Badly damaged DWARF here. */
_dwarf_error(dbg, error, DW_DLE_NO_TIED_STRING_AVAILABLE);
return (DW_DLV_ERROR);
}
secbegin = tieddbg->de_debug_str.dss_data;
strbegin= tieddbg->de_debug_str.dss_data + offset;
secend = tieddbg->de_debug_str.dss_data +
tieddbg->de_debug_str.dss_size;
/* Ensure the offset lies within the .debug_str */
if (offset >= tieddbg->de_debug_str.dss_size) {
_dwarf_error(dbg, error, DW_DLE_NO_TIED_STRING_AVAILABLE);
return (DW_DLV_ERROR);
}
res= _dwarf_check_string_valid(tieddbg,secbegin,strbegin, secend,
DW_DLE_NO_TIED_STRING_AVAILABLE,
&localerror);
if (res == DW_DLV_ERROR) {
Dwarf_Unsigned lerrno = dwarf_errno(localerror);
dwarf_dealloc(tieddbg,localerror,DW_DLA_ERROR);
_dwarf_error(dbg,error,lerrno);
return res;
} else if (res == DW_DLV_NO_ENTRY) {
return res;
}
*return_str = (char *) (tieddbg->de_debug_str.dss_data + offset);
return DW_DLV_OK;
}
int
dwarf_formexprloc(Dwarf_Attribute attr,
Dwarf_Unsigned * return_exprlen,
Dwarf_Ptr * block_ptr,
Dwarf_Error * error)
{
Dwarf_Debug dbg = 0;
Dwarf_CU_Context cu_context = 0;
int res = get_attr_dbg(&dbg,&cu_context,attr,error);
if (res != DW_DLV_OK) {
return res;
}
if (dbg == NULL) {
_dwarf_error(NULL, error, DW_DLE_ATTR_DBG_NULL);
return (DW_DLV_ERROR);
}
if (attr->ar_attribute_form == DW_FORM_exprloc ) {
Dwarf_Die die = 0;
Dwarf_Unsigned leb_len = 0;
Dwarf_Byte_Ptr section_start = 0;
Dwarf_Unsigned section_len = 0;
Dwarf_Byte_Ptr section_end = 0;
Dwarf_Byte_Ptr info_ptr = 0;
Dwarf_Unsigned exprlen = 0;
Dwarf_Small * addr = attr->ar_debug_ptr;
info_ptr = addr;
section_start =
_dwarf_calculate_info_section_start_ptr(cu_context,
§ion_len);
section_end = section_start + section_len;
DECODE_LEB128_UWORD_LEN_CK(info_ptr, exprlen, leb_len,
dbg,error,section_end);
if (exprlen > section_len) {
/* Corrupted dwarf! */
dwarfstring m;
dwarfstring_constructor(&m);
dwarfstring_append_printf_u(&m,
"DW_DLE_ATTR_OUTSIDE_SECTION: "
"The expression length is %u,",exprlen);
dwarfstring_append_printf_u(&m,
" but the section length is just %u. "
"Corrupt Dwarf.",section_len);
_dwarf_error_string(dbg, error,
DW_DLE_ATTR_OUTSIDE_SECTION,
dwarfstring_string(&m));
dwarfstring_destructor(&m);
return DW_DLV_ERROR;
}
die = attr->ar_die;
/* Is the block entirely in the section, or is
there bug somewhere?
Here the final addr may be 1 past end of section. */
if (_dwarf_reference_outside_section(die,
(Dwarf_Small *)addr,
((Dwarf_Small *)addr)+exprlen +leb_len)) {
dwarfstring m;
dwarfstring_constructor(&m);
dwarfstring_append_printf_u(&m,
"DW_DLE_ATTR_OUTSIDE_SECTION: "
"The expression length %u,",exprlen);
dwarfstring_append_printf_u(&m,
" plus the leb value length of "
"%u ",leb_len);
dwarfstring_append(&m,
" runs past the end of the section. "
"Corrupt Dwarf.");
_dwarf_error_string(dbg, error,
DW_DLE_ATTR_OUTSIDE_SECTION,
dwarfstring_string(&m));
dwarfstring_destructor(&m);
return DW_DLV_ERROR;
}
*return_exprlen = exprlen;
*block_ptr = addr + leb_len;
return DW_DLV_OK;
}
{
dwarfstring m;
const char *name = "<name not known>";
unsigned mform = attr->ar_attribute_form;
dwarfstring_constructor(&m);
dwarf_get_FORM_name (mform,&name);
dwarfstring_append_printf_u(&m,
"DW_DLE_ATTR_EXPRLOC_FORM_BAD: "
"The form is 0x%x ", mform);
dwarfstring_append_printf_s(&m,
"(%s) but should be DW_FORM_exprloc. "
"Corrupt Dwarf.",(char *)name);
_dwarf_error_string(dbg, error, DW_DLE_ATTR_EXPRLOC_FORM_BAD,
dwarfstring_string(&m));
dwarfstring_destructor(&m);
}
return DW_DLV_ERROR;
}
|