开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (89)
标签 (83)
master
users/dichen/readelf-28873
users/mark/try-addr2line-C
users/mark/try-inline-lto-scopes
users/fche/try-lessC
users/mark/try-protocols_str
users/dichen/readelf-dynamic-symtab
users/marxin/try-zstd-support-v2
users/mark/try-non-relative-includes
main-mesa
users/fche/try-pr29472
0.187-mesa
0.187-msvc
users/rgoldber/try-metadata_query
users/mark/try-ar-N
users/marxin/try-PR29474-fix-debuginfod-concurrency
users/mark/try-dynamicsizehash_concurrent_coordinator_doc
users/mjw/try-Project-Id-Version
users/rgoldber/try-bz28204
users/mark/try-handle_dynamic_d_val
elfutils-0.188
0.187-mesa-v1
elfutils-0.187
elfutils-0.186
elfutils-0.185
elfutils-0.184
elfutils-0.183
dts-0.182
elfutils-0.182
elfutils-0.181
dts-0.180
elfutils-0.180
dts-0.178
dts-0.177
elfutils-0.179
elfutils-0.178
elfutils-0.177
dts-0.176
elfutils-0.176
dts-0.175
master
分支 (89)
标签 (83)
master
users/dichen/readelf-28873
users/mark/try-addr2line-C
users/mark/try-inline-lto-scopes
users/fche/try-lessC
users/mark/try-protocols_str
users/dichen/readelf-dynamic-symtab
users/marxin/try-zstd-support-v2
users/mark/try-non-relative-includes
main-mesa
users/fche/try-pr29472
0.187-mesa
0.187-msvc
users/rgoldber/try-metadata_query
users/mark/try-ar-N
users/marxin/try-PR29474-fix-debuginfod-concurrency
users/mark/try-dynamicsizehash_concurrent_coordinator_doc
users/mjw/try-Project-Id-Version
users/rgoldber/try-bz28204
users/mark/try-handle_dynamic_d_val
elfutils-0.188
0.187-mesa-v1
elfutils-0.187
elfutils-0.186
elfutils-0.185
elfutils-0.184
elfutils-0.183
dts-0.182
elfutils-0.182
elfutils-0.181
dts-0.180
elfutils-0.180
dts-0.178
dts-0.177
elfutils-0.179
elfutils-0.178
elfutils-0.177
dts-0.176
elfutils-0.176
dts-0.175
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (89)
标签 (83)
master
users/dichen/readelf-28873
users/mark/try-addr2line-C
users/mark/try-inline-lto-scopes
users/fche/try-lessC
users/mark/try-protocols_str
users/dichen/readelf-dynamic-symtab
users/marxin/try-zstd-support-v2
users/mark/try-non-relative-includes
main-mesa
users/fche/try-pr29472
0.187-mesa
0.187-msvc
users/rgoldber/try-metadata_query
users/mark/try-ar-N
users/marxin/try-PR29474-fix-debuginfod-concurrency
users/mark/try-dynamicsizehash_concurrent_coordinator_doc
users/mjw/try-Project-Id-Version
users/rgoldber/try-bz28204
users/mark/try-handle_dynamic_d_val
elfutils-0.188
0.187-mesa-v1
elfutils-0.187
elfutils-0.186
elfutils-0.185
elfutils-0.184
elfutils-0.183
dts-0.182
elfutils-0.182
elfutils-0.181
dts-0.180
elfutils-0.180
dts-0.178
dts-0.177
elfutils-0.179
elfutils-0.178
elfutils-0.177
dts-0.176
elfutils-0.176
dts-0.175
elfutils
/
src
/
nm.c
elfutils
/
src
/
nm.c
nm.c 42.21 KB
一键复制 编辑 原始数据 按行查看 历史
Sam James 提交于 2023年01月14日 06:16 +08:00 . Fix typos from codespell
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
/* Print symbol information from ELF file in human-readable form.
Copyright (C) 2000-2008, 2009, 2011, 2012, 2014, 2015, 2020 Red Hat, Inc.
This file is part of elfutils.
Written by Ulrich Drepper <drepper@redhat.com>, 2000.
This file is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
elfutils is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <ar.h>
#include <argp.h>
#include <assert.h>
#include <ctype.h>
#include <dwarf.h>
#include <errno.h>
#include <fcntl.h>
#include <gelf.h>
#include <inttypes.h>
#include <libdw.h>
#include <locale.h>
#include <obstack.h>
#include <search.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdio_ext.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <libeu.h>
#include <system.h>
#include <color.h>
#include <printversion.h>
#include "../libebl/libeblP.h"
#include "../libdwfl/libdwflP.h"
/* Name and version of program. */
ARGP_PROGRAM_VERSION_HOOK_DEF = print_version;
/* Bug report address. */
ARGP_PROGRAM_BUG_ADDRESS_DEF = PACKAGE_BUGREPORT;
/* Values for the parameters which have no short form. */
#define OPT_DEFINED 0x100
#define OPT_MARK_SPECIAL 0x101
/* Definitions of arguments for argp functions. */
static const struct argp_option options[] =
{
{ NULL, 0, NULL, 0, N_("Output selection:"), 0 },
{ "debug-syms", 'a', NULL, 0, N_("Display debugger-only symbols"), 0 },
{ "defined-only", OPT_DEFINED, NULL, 0, N_("Display only defined symbols"),
0 },
{ "dynamic", 'D', NULL, 0,
N_("Display dynamic symbols instead of normal symbols"), 0 },
{ "extern-only", 'g', NULL, 0, N_("Display only external symbols"), 0 },
{ "undefined-only", 'u', NULL, 0, N_("Display only undefined symbols"), 0 },
{ "print-armap", 's', NULL, 0,
N_("Include index for symbols from archive members"), 0 },
{ NULL, 0, NULL, 0, N_("Output format:"), 0 },
{ "print-file-name", 'A', NULL, 0,
N_("Print name of the input file before every symbol"), 0 },
{ NULL, 'o', NULL, OPTION_HIDDEN, "Same as -A", 0 },
{ "format", 'f', "FORMAT", 0,
N_("Use the output format FORMAT. FORMAT can be `bsd', `sysv' or `posix'. The default is `sysv'"),
0 },
{ NULL, 'B', NULL, 0, N_("Same as --format=bsd"), 0 },
{ "portability", 'P', NULL, 0, N_("Same as --format=posix"), 0 },
{ "radix", 't', "RADIX", 0, N_("Use RADIX for printing symbol values"), 0 },
{ "mark-special", OPT_MARK_SPECIAL, NULL, 0, N_("Mark special symbols"), 0 },
{ "mark-weak", OPT_MARK_SPECIAL, NULL, OPTION_HIDDEN, "", 0 },
{ "print-size", 'S', NULL, 0, N_("Print size of defined symbols"), 0 },
{ NULL, 0, NULL, 0, N_("Output options:"), 0 },
{ "numeric-sort", 'n', NULL, 0, N_("Sort symbols numerically by address"),
0 },
{ "no-sort", 'p', NULL, 0, N_("Do not sort the symbols"), 0 },
{ "reverse-sort", 'r', NULL, 0, N_("Reverse the sense of the sort"), 0 },
#ifdef USE_DEMANGLE
{ "demangle", 'C', NULL, 0,
N_("Decode low-level symbol names into source code names"), 0 },
#endif
{ NULL, 0, NULL, 0, N_("Miscellaneous:"), 0 },
{ NULL, 0, NULL, 0, NULL, 0 }
};
/* Short description of program. */
static const char doc[] = N_("List symbols from FILEs (a.out by default).");
/* Strings for arguments in help texts. */
static const char args_doc[] = N_("[FILE...]");
/* Prototype for option handler. */
static error_t parse_opt (int key, char *arg, struct argp_state *state);
/* Parser children. */
static struct argp_child argp_children[] =
{
{ &color_argp, 0, N_("Output formatting"), 2 },
{ NULL, 0, NULL, 0}
};
/* Data structure to communicate with argp functions. */
static struct argp argp =
{
options, parse_opt, args_doc, doc, argp_children, NULL, NULL
};
/* Print symbols in file named FNAME. */
static int process_file (const char *fname, bool more_than_one);
/* Handle content of archive. */
static int handle_ar (int fd, Elf *elf, const char *prefix, const char *fname,
const char *suffix);
/* Handle ELF file. */
static int handle_elf (int fd, Elf *elf, const char *prefix, const char *fname,
const char *suffix);
#define INTERNAL_ERROR(fname) \
error_exit (0, _("%s: INTERNAL ERROR %d (%s): %s"), \
fname, __LINE__, PACKAGE_VERSION, elf_errmsg (-1))
/* Internal representation of symbols. */
typedef struct GElf_SymX
{
GElf_Sym sym;
Elf32_Word xndx;
char *where;
} GElf_SymX;
/* User-selectable options. */
/* The selected output format. */
static enum
{
format_sysv = 0,
format_bsd,
format_posix
} format;
/* Print defined, undefined, or both? */
static bool hide_undefined;
static bool hide_defined;
/* Print local symbols also? */
static bool hide_local;
/* Nonzero if full filename should precede every symbol. */
static bool print_file_name;
/* If true print size of defined symbols in BSD format. */
static bool print_size;
/* If true print archive index. */
static bool print_armap;
/* If true reverse sorting. */
static bool reverse_sort;
#ifdef USE_DEMANGLE
/* If true demangle symbols. */
static bool demangle;
#endif
/* Type of the section we are printing. */
static GElf_Word symsec_type = SHT_SYMTAB;
/* Sorting selection. */
static enum
{
sort_name = 0,
sort_numeric,
sort_nosort
} sort;
/* Radix for printed numbers. */
static enum
{
radix_hex = 0,
radix_decimal,
radix_octal
} radix;
/* If nonzero mark special symbols:
- weak symbols are distinguished from global symbols by adding
a `*' after the identifying letter for the symbol class and type.
- TLS symbols are distinguished from normal symbols by adding
a '@' after the identifying letter for the symbol class and type. */
static bool mark_special;
int
main (int argc, char *argv[])
{
int remaining;
int result = 0;
/* We use no threads here which can interfere with handling a stream. */
(void) __fsetlocking (stdin, FSETLOCKING_BYCALLER);
(void) __fsetlocking (stdout, FSETLOCKING_BYCALLER);
(void) __fsetlocking (stderr, FSETLOCKING_BYCALLER);
/* Set locale. */
(void) setlocale (LC_ALL, "");
/* Make sure the message catalog can be found. */
(void) bindtextdomain (PACKAGE_TARNAME, LOCALEDIR);
/* Initialize the message catalog. */
(void) textdomain (PACKAGE_TARNAME);
/* Parse and process arguments. */
(void) argp_parse (&argp, argc, argv, 0, &remaining, NULL);
/* Tell the library which version we are expecting. */
(void) elf_version (EV_CURRENT);
if (remaining == argc)
/* The user didn't specify a name so we use a.out. */
result = process_file ("a.out", false);
else
{
/* Process all the remaining files. */
const bool more_than_one = remaining + 1 < argc;
do
result |= process_file (argv[remaining], more_than_one);
while (++remaining < argc);
}
return result;
}
/* Handle program arguments. */
static error_t
parse_opt (int key, char *arg,
struct argp_state *state __attribute__ ((unused)))
{
switch (key)
{
case 'a':
/* XXX */
break;
#ifdef USE_DEMANGLE
case 'C':
demangle = true;
break;
#endif
case 'f':
if (strcmp (arg, "bsd") == 0)
format = format_bsd;
else if (strcmp (arg, "posix") == 0)
format = format_posix;
else
/* Be bug compatible. The BFD implementation also defaulted to
using the SysV format if nothing else matches. */
format = format_sysv;
break;
case 'g':
hide_local = true;
break;
case 'n':
sort = sort_numeric;
break;
case 'p':
sort = sort_nosort;
break;
case 't':
if (strcmp (arg, "10") == 0 || strcmp (arg, "d") == 0)
radix = radix_decimal;
else if (strcmp (arg, "8") == 0 || strcmp (arg, "o") == 0)
radix = radix_octal;
else
radix = radix_hex;
break;
case 'u':
hide_undefined = false;
hide_defined = true;
break;
case 'A':
case 'o':
print_file_name = true;
break;
case 'B':
format = format_bsd;
break;
case 'D':
symsec_type = SHT_DYNSYM;
break;
case 'P':
format = format_posix;
break;
case OPT_DEFINED:
hide_undefined = true;
hide_defined = false;
break;
case OPT_MARK_SPECIAL:
mark_special = true;
break;
case 'S':
print_size = true;
break;
case 's':
print_armap = true;
break;
case 'r':
reverse_sort = true;
break;
default:
return ARGP_ERR_UNKNOWN;
}
return 0;
}
/* Open the file and determine the type. */
static int
process_file (const char *fname, bool more_than_one)
{
/* Open the file. */
int fd = open (fname, O_RDONLY);
if (fd == -1)
{
error (0, errno, _("cannot open '%s'"), fname);
return 1;
}
/* Now get the ELF descriptor. */
Elf *elf = elf_begin (fd, ELF_C_READ_MMAP, NULL);
if (elf != NULL)
{
if (elf_kind (elf) == ELF_K_ELF)
{
int result = handle_elf (fd, elf, more_than_one ? "" : NULL,
fname, NULL);
if (elf_end (elf) != 0)
INTERNAL_ERROR (fname);
if (close (fd) != 0)
error_exit (errno, _("while closing '%s'"), fname);
return result;
}
else if (elf_kind (elf) == ELF_K_AR)
{
int result = handle_ar (fd, elf, NULL, fname, NULL);
if (elf_end (elf) != 0)
INTERNAL_ERROR (fname);
if (close (fd) != 0)
error_exit (errno, _("while closing '%s'"), fname);
return result;
}
/* We cannot handle this type. Close the descriptor anyway. */
if (elf_end (elf) != 0)
INTERNAL_ERROR (fname);
}
error (0, 0, _("%s: File format not recognized"), fname);
return 1;
}
static int
handle_ar (int fd, Elf *elf, const char *prefix, const char *fname,
const char *suffix)
{
size_t fname_len = strlen (fname) + 1;
size_t prefix_len = prefix != NULL ? strlen (prefix) : 0;
char new_prefix[prefix_len + fname_len + 2];
size_t suffix_len = suffix != NULL ? strlen (suffix) : 0;
char new_suffix[suffix_len + 2];
Elf *subelf;
Elf_Cmd cmd = ELF_C_READ_MMAP;
int result = 0;
char *cp = new_prefix;
if (prefix != NULL)
cp = stpcpy (cp, prefix);
cp = stpcpy (cp, fname);
stpcpy (cp, "[");
cp = new_suffix;
if (suffix != NULL)
cp = stpcpy (cp, suffix);
stpcpy (cp, "]");
/* First print the archive index if this is wanted. */
if (print_armap)
{
Elf_Arsym *arsym = elf_getarsym (elf, NULL);
if (arsym != NULL)
{
Elf_Arhdr *arhdr = NULL;
size_t arhdr_off = 0; /* Note: 0 is no valid offset. */
fputs_unlocked (_("\nArchive index:\n"), stdout);
while (arsym->as_off != 0)
{
if (arhdr_off != arsym->as_off
&& (elf_rand (elf, arsym->as_off) != arsym->as_off
|| (subelf = elf_begin (fd, cmd, elf)) == NULL
|| (arhdr = elf_getarhdr (subelf)) == NULL))
{
error (0, 0, _("invalid offset %zu for symbol %s"),
arsym->as_off, arsym->as_name);
break;
}
printf (_("%s in %s\n"), arsym->as_name, arhdr->ar_name);
++arsym;
}
if (elf_rand (elf, SARMAG) != SARMAG)
{
error (0, 0,
_("cannot reset archive offset to beginning"));
return 1;
}
}
}
/* Process all the files contained in the archive. */
while ((subelf = elf_begin (fd, cmd, elf)) != NULL)
{
/* The the header for this element. */
Elf_Arhdr *arhdr = elf_getarhdr (subelf);
/* Skip over the index entries. */
if (strcmp (arhdr->ar_name, "/") != 0
&& strcmp (arhdr->ar_name, "//") != 0
&& strcmp (arhdr->ar_name, "/SYM64/") != 0)
{
if (elf_kind (subelf) == ELF_K_ELF)
result |= handle_elf (fd, subelf, new_prefix, arhdr->ar_name,
new_suffix);
else if (elf_kind (subelf) == ELF_K_AR)
result |= handle_ar (fd, subelf, new_prefix, arhdr->ar_name,
new_suffix);
else
{
error (0, 0, _("%s%s%s: file format not recognized"),
new_prefix, arhdr->ar_name, new_suffix);
result = 1;
}
}
/* Get next archive element. */
cmd = elf_next (subelf);
if (elf_end (subelf) != 0)
INTERNAL_ERROR (fname);
}
return result;
}
/* Mapping of radix and binary class to length. */
static const int length_map[2][3] =
{
[ELFCLASS32 - 1] =
{
[radix_hex] = 8,
[radix_decimal] = 10,
[radix_octal] = 11
},
[ELFCLASS64 - 1] =
{
[radix_hex] = 16,
[radix_decimal] = 20,
[radix_octal] = 22
}
};
static int
global_compare (const void *p1, const void *p2)
{
const Dwarf_Global *g1 = (const Dwarf_Global *) p1;
const Dwarf_Global *g2 = (const Dwarf_Global *) p2;
return strcmp (g1->name, g2->name);
}
static void *global_root;
static int
get_global (Dwarf *dbg __attribute__ ((unused)), Dwarf_Global *global,
void *arg __attribute__ ((unused)))
{
tsearch (memcpy (xmalloc (sizeof (Dwarf_Global)), global,
sizeof (Dwarf_Global)),
&global_root, global_compare);
return DWARF_CB_OK;
}
struct local_name
{
const char *name;
const char *file;
Dwarf_Word lineno;
Dwarf_Addr lowpc;
Dwarf_Addr highpc;
};
static int
local_compare (const void *p1, const void *p2)
{
struct local_name *g1 = (struct local_name *) p1;
struct local_name *g2 = (struct local_name *) p2;
int result;
result = strcmp (g1->name, g2->name);
if (result == 0)
{
if (g1->lowpc <= g2->lowpc && g1->highpc >= g2->highpc)
{
/* g2 is contained in g1. Update the data. */
g2->lowpc = g1->lowpc;
g2->highpc = g1->highpc;
result = 0;
}
else if (g2->lowpc <= g1->lowpc && g2->highpc >= g1->highpc)
{
/* g1 is contained in g2. Update the data. */
g1->lowpc = g2->lowpc;
g1->highpc = g2->highpc;
result = 0;
}
else
result = g1->lowpc < g2->lowpc ? -1 : 1;
}
return result;
}
static int
get_var_range (Dwarf_Die *die, Dwarf_Word *lowpc, Dwarf_Word *highpc)
{
Dwarf_Attribute locattr_mem;
Dwarf_Attribute *locattr = dwarf_attr (die, DW_AT_location, &locattr_mem);
if (locattr == NULL)
return 1;
Dwarf_Op *loc;
size_t nloc;
if (dwarf_getlocation (locattr, &loc, &nloc) != 0)
return 1;
/* Interpret the location expressions. */
// XXX For now just the simple one:
if (nloc == 1 && loc[0].atom == DW_OP_addr)
{
*lowpc = *highpc = loc[0].number;
return 0;
}
return 1;
}
static void *local_root;
static void
get_local_names (Dwarf *dbg)
{
Dwarf_Off offset = 0;
Dwarf_Off old_offset;
size_t hsize;
while (dwarf_nextcu (dbg, old_offset = offset, &offset, &hsize, NULL, NULL,
NULL) == 0)
{
Dwarf_Die cudie_mem;
Dwarf_Die *cudie = dwarf_offdie (dbg, old_offset + hsize, &cudie_mem);
/* If we cannot get the CU DIE there is no need to go on with
this CU. */
if (cudie == NULL)
continue;
/* This better be a CU DIE. */
if (dwarf_tag (cudie) != DW_TAG_compile_unit)
continue;
/* Get the line information. */
Dwarf_Files *files;
size_t nfiles;
if (dwarf_getsrcfiles (cudie, &files, &nfiles) != 0)
continue;
Dwarf_Die die_mem;
Dwarf_Die *die = &die_mem;
if (dwarf_child (cudie, die) == 0)
/* Iterate over all immediate children of the CU DIE. */
do
{
int tag = dwarf_tag (die);
if (tag != DW_TAG_subprogram && tag != DW_TAG_variable)
continue;
/* We are interested in five attributes: name, decl_file,
decl_line, low_pc, and high_pc. */
Dwarf_Attribute attr_mem;
Dwarf_Attribute *attr = dwarf_attr (die, DW_AT_name, &attr_mem);
const char *name = dwarf_formstring (attr);
if (name == NULL)
continue;
Dwarf_Word fileidx;
attr = dwarf_attr (die, DW_AT_decl_file, &attr_mem);
if (dwarf_formudata (attr, &fileidx) != 0 || fileidx >= nfiles)
continue;
Dwarf_Word lineno;
attr = dwarf_attr (die, DW_AT_decl_line, &attr_mem);
if (dwarf_formudata (attr, &lineno) != 0 || lineno == 0)
continue;
Dwarf_Addr lowpc;
Dwarf_Addr highpc;
if (tag == DW_TAG_subprogram)
{
if (dwarf_lowpc (die, &lowpc) != 0
|| dwarf_highpc (die, &highpc) != 0)
continue;
}
else
{
if (get_var_range (die, &lowpc, &highpc) != 0)
continue;
}
/* We have all the information. Create a record. */
struct local_name *newp = xmalloc (sizeof (*newp));
newp->name = name;
newp->file = dwarf_filesrc (files, fileidx, NULL, NULL);
newp->lineno = lineno;
newp->lowpc = lowpc;
newp->highpc = highpc;
/* Check whether a similar local_name is already in the
cache. That should not happen. But if it does, we
don't want to leak memory. */
struct local_name **tres = tsearch (newp, &local_root,
local_compare);
if (tres == NULL)
error_exit (errno, _("cannot create search tree"));
else if (*tres != newp)
free (newp);
}
while (dwarf_siblingof (die, die) == 0);
}
}
/* Do elf_strptr, but return a backup string and never NULL. */
static const char *
sym_name (Elf *elf, GElf_Word strndx, GElf_Word st_name, char buf[], size_t n)
{
const char *symstr = elf_strptr (elf, strndx, st_name);
if (symstr == NULL)
{
snprintf (buf, n, "[invalid st_name %#" PRIx32 "]", st_name);
symstr = buf;
}
return symstr;
}
/* Show symbols in SysV format. */
static void
show_symbols_sysv (Ebl *ebl, GElf_Word strndx, const char *fullname,
GElf_SymX *syms, size_t nsyms, int longest_name,
int longest_where)
{
size_t shnum;
if (elf_getshdrnum (ebl->elf, &shnum) < 0)
INTERNAL_ERROR (fullname);
bool scnnames_malloced = shnum * sizeof (const char *) > 128 * 1024;
const char **scnnames;
if (scnnames_malloced)
scnnames = xmalloc (sizeof (const char *) * shnum);
else
scnnames = (const char **) alloca (sizeof (const char *) * shnum);
/* Get the section header string table index. */
size_t shstrndx;
if (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0)
error_exit (0, _("cannot get section header string table index"));
/* Cache the section names. */
Elf_Scn *scn = NULL;
size_t cnt = 1;
while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
{
GElf_Shdr shdr_mem;
GElf_Shdr *shdr;
assert (elf_ndxscn (scn) == cnt);
cnt++;
char *name = NULL;
shdr = gelf_getshdr (scn, &shdr_mem);
if (shdr != NULL)
name = elf_strptr (ebl->elf, shstrndx, shdr->sh_name);
if (unlikely (name == NULL))
name = "[invalid section name]";
scnnames[elf_ndxscn (scn)] = name;
}
int digits = length_map[gelf_getclass (ebl->elf) - 1][radix];
/* We always print this prolog. */
printf (_("\n\nSymbols from %s:\n\n"), fullname);
/* The header line. */
printf (_("%*s%-*s %-*s Class Type %-*s %*s Section\n\n"),
print_file_name ? (int) strlen (fullname) + 1: 0, "",
longest_name, sgettext ("sysv|Name"),
/* TRANS: the "sysv|" parts makes the string unique. */
digits, sgettext ("sysv|Value"),
/* TRANS: the "sysv|" parts makes the string unique. */
digits, sgettext ("sysv|Size"),
/* TRANS: the "sysv|" parts makes the string unique. */
longest_where, sgettext ("sysv|Line"));
#ifdef USE_DEMANGLE
size_t demangle_buffer_len = 0;
char *demangle_buffer = NULL;
#endif
/* Iterate over all symbols. */
for (cnt = 0; cnt < nsyms; ++cnt)
{
/* In this format SECTION entries are not printed. */
if (GELF_ST_TYPE (syms[cnt].sym.st_info) == STT_SECTION)
continue;
char symstrbuf[50];
const char *symstr = sym_name (ebl->elf, strndx, syms[cnt].sym.st_name,
symstrbuf, sizeof symstrbuf);
/* Printing entries with a zero-length name makes the output
not very well parseable. Since these entries don't carry
much information we leave them out. */
if (symstr[0] == '0円')
continue;
/* We do not print the entries for files. */
if (GELF_ST_TYPE (syms[cnt].sym.st_info) == STT_FILE)
continue;
#ifdef USE_DEMANGLE
/* Demangle if necessary. Require GNU v3 ABI by the "_Z" prefix. */
if (demangle && symstr[0] == '_' && symstr[1] == 'Z')
{
int status = -1;
char *dmsymstr = __cxa_demangle (symstr, demangle_buffer,
&demangle_buffer_len, &status);
if (status == 0)
symstr = dmsymstr;
}
#endif
char symbindbuf[50];
char symtypebuf[50];
char secnamebuf[1024];
char addressbuf[(64 + 2) / 3 + 1];
char sizebuf[(64 + 2) / 3 + 1];
/* If we have to precede the line with the file name. */
if (print_file_name)
{
fputs_unlocked (fullname, stdout);
putchar_unlocked (':');
}
/* Convert the address. */
if (syms[cnt].sym.st_shndx == SHN_UNDEF)
{
sprintf (addressbuf, "%*c", digits, ' ');
sprintf (sizebuf, "%*c", digits, ' ');
}
else
{
snprintf (addressbuf, sizeof (addressbuf),
(radix == radix_hex ? "%0*" PRIx64
: (radix == radix_decimal ? "%0*" PRId64
: "%0*" PRIo64)),
digits, syms[cnt].sym.st_value);
snprintf (sizebuf, sizeof (sizebuf),
(radix == radix_hex ? "%0*" PRIx64
: (radix == radix_decimal ? "%0*" PRId64
: "%0*" PRIo64)),
digits, syms[cnt].sym.st_size);
}
/* Print the actual string. */
const char *bind;
bind = ebl_symbol_binding_name (ebl,
GELF_ST_BIND (syms[cnt].sym.st_info),
symbindbuf, sizeof (symbindbuf));
if (bind != NULL && startswith (bind, "GNU_"))
bind += strlen ("GNU_");
printf ("%-*s|%s|%-6s|%-8s|%s|%*s|%s\n",
longest_name, symstr, addressbuf, bind,
ebl_symbol_type_name (ebl, GELF_ST_TYPE (syms[cnt].sym.st_info),
symtypebuf, sizeof (symtypebuf)),
sizebuf, longest_where, syms[cnt].where,
ebl_section_name (ebl, syms[cnt].sym.st_shndx, syms[cnt].xndx,
secnamebuf, sizeof (secnamebuf), scnnames,
shnum));
}
#ifdef USE_DEMANGLE
free (demangle_buffer);
#endif
if (scnnames_malloced)
free (scnnames);
}
static char
class_type_char (Elf *elf, const GElf_Ehdr *ehdr, GElf_Sym *sym)
{
int local_p = GELF_ST_BIND (sym->st_info) == STB_LOCAL;
/* XXX Add support for architecture specific types and classes. */
if (sym->st_shndx == SHN_ABS)
return local_p ? 'a' : 'A';
if (sym->st_shndx == SHN_UNDEF)
/* Undefined symbols must be global. */
return 'U';
char result = "NDTSFBD "[GELF_ST_TYPE (sym->st_info)];
if (result == 'D')
{
/* Special handling: unique data symbols. */
if (ehdr->e_ident[EI_OSABI] == ELFOSABI_LINUX
&& GELF_ST_BIND (sym->st_info) == STB_GNU_UNIQUE)
result = 'u';
else if (GELF_ST_BIND (sym->st_info) == STB_WEAK)
result = 'V';
else if (sym->st_shndx == SHN_COMMON)
result = 'C';
else
{
GElf_Shdr shdr_mem;
GElf_Shdr *shdr = gelf_getshdr (elf_getscn (elf, sym->st_shndx),
&shdr_mem);
if (shdr != NULL)
{
if ((shdr->sh_flags & SHF_WRITE) == 0)
result = 'R';
else if (shdr->sh_type == SHT_NOBITS)
result = 'B';
}
}
}
else if (result == 'T')
{
if (GELF_ST_BIND (sym->st_info) == STB_WEAK)
result = 'W';
}
return local_p ? tolower (result) : result;
}
static void
show_symbols_bsd (Elf *elf, const GElf_Ehdr *ehdr, GElf_Word strndx,
const char *prefix, const char *fname, const char *fullname,
GElf_SymX *syms, size_t nsyms)
{
int digits = length_map[gelf_getclass (elf) - 1][radix];
if (prefix != NULL && ! print_file_name)
printf ("\n%s:\n", fname);
#ifdef USE_DEMANGLE
size_t demangle_buffer_len = 0;
char *demangle_buffer = NULL;
#endif
/* Iterate over all symbols. */
for (size_t cnt = 0; cnt < nsyms; ++cnt)
{
char symstrbuf[50];
const char *symstr = sym_name (elf, strndx, syms[cnt].sym.st_name,
symstrbuf, sizeof symstrbuf);
/* Printing entries with a zero-length name makes the output
not very well parseable. Since these entries don't carry
much information we leave them out. */
if (symstr[0] == '0円')
continue;
/* We do not print the entries for files. */
if (GELF_ST_TYPE (syms[cnt].sym.st_info) == STT_FILE)
continue;
#ifdef USE_DEMANGLE
/* Demangle if necessary. Require GNU v3 ABI by the "_Z" prefix. */
if (demangle && symstr[0] == '_' && symstr[1] == 'Z')
{
int status = -1;
char *dmsymstr = __cxa_demangle (symstr, demangle_buffer,
&demangle_buffer_len, &status);
if (status == 0)
symstr = dmsymstr;
}
#endif
/* If we have to precede the line with the file name. */
if (print_file_name)
{
fputs_unlocked (fullname, stdout);
putchar_unlocked (':');
}
bool is_tls = GELF_ST_TYPE (syms[cnt].sym.st_info) == STT_TLS;
bool is_weak = GELF_ST_BIND (syms[cnt].sym.st_info) == STB_WEAK;
const char *marker = (mark_special
? (is_tls ? "@" : (is_weak ? "*" : " ")) : "");
if (syms[cnt].sym.st_shndx == SHN_UNDEF)
{
const char *color = "";
if (color_mode)
{
if (is_tls)
color = color_undef_tls;
else if (is_weak)
color = color_undef_weak;
else
color = color_undef;
}
printf ("%*s %sU%s %s", digits, "", color, marker, symstr);
}
else
{
const char *color = "";
if (color_mode)
{
if (is_tls)
color = color_tls;
else if (is_weak)
color = color_weak;
else
color = color_symbol;
}
if (print_size && syms[cnt].sym.st_size != 0)
{
#define HEXFMT "%6$s%20ドル*1$" PRIx64 "%8$s %100ドル*9$" PRIx64 " %7$s%3$c%4$s %5$s"
#define DECFMT "%6$s%2$*1$" PRId64 "%8$s %10$*9$" PRId64 " %7$s%3$c%4$s %5$s"
#define OCTFMT "%6$s%20ドル*1$" PRIo64 "%8$s %100ドル*9$" PRIo64 " %7$s%3$c%4$s %5$s"
printf ((radix == radix_hex ? HEXFMT
: (radix == radix_decimal ? DECFMT : OCTFMT)),
digits, syms[cnt].sym.st_value,
class_type_char (elf, ehdr, &syms[cnt].sym), marker,
symstr,
color_mode ? color_address : "",
color,
color_mode ? color_off : "",
digits, (uint64_t) syms[cnt].sym.st_size);
#undef HEXFMT
#undef DECFMT
#undef OCTFMT
}
else
{
#define HEXFMT "%6$s%20ドル*1$" PRIx64 "%8$s %7$s%3$c%4$s %5$s"
#define DECFMT "%6$s%2$*1$" PRId64 "%8$s %7$s%3$c%4$s %5$s"
#define OCTFMT "%6$s%20ドル*1$" PRIo64 "%8$s %7$s%3$c%4$s %5$s"
printf ((radix == radix_hex ? HEXFMT
: (radix == radix_decimal ? DECFMT : OCTFMT)),
digits, syms[cnt].sym.st_value,
class_type_char (elf, ehdr, &syms[cnt].sym), marker,
symstr,
color_mode ? color_address : "",
color,
color_mode ? color_off : "");
#undef HEXFMT
#undef DECFMT
#undef OCTFMT
}
}
if (color_mode)
fputs_unlocked (color_off, stdout);
putchar_unlocked ('\n');
}
#ifdef USE_DEMANGLE
free (demangle_buffer);
#endif
}
static void
show_symbols_posix (Elf *elf, const GElf_Ehdr *ehdr, GElf_Word strndx,
const char *prefix, const char *fullname, GElf_SymX *syms,
size_t nsyms)
{
if (prefix != NULL && ! print_file_name)
printf ("%s:\n", fullname);
int digits = length_map[gelf_getclass (elf) - 1][radix];
#ifdef USE_DEMANGLE
size_t demangle_buffer_len = 0;
char *demangle_buffer = NULL;
#endif
/* Iterate over all symbols. */
for (size_t cnt = 0; cnt < nsyms; ++cnt)
{
char symstrbuf[50];
const char *symstr = sym_name (elf, strndx, syms[cnt].sym.st_name,
symstrbuf, sizeof symstrbuf);
/* Printing entries with a zero-length name makes the output
not very well parseable. Since these entries don't carry
much information we leave them out. */
if (symstr[0] == '0円')
continue;
/* We do not print the entries for files. */
if (GELF_ST_TYPE (syms[cnt].sym.st_info) == STT_FILE)
continue;
#ifdef USE_DEMANGLE
/* Demangle if necessary. Require GNU v3 ABI by the "_Z" prefix. */
if (demangle && symstr[0] == '_' && symstr[1] == 'Z')
{
int status = -1;
char *dmsymstr = __cxa_demangle (symstr, demangle_buffer,
&demangle_buffer_len, &status);
if (status == 0)
symstr = dmsymstr;
}
#endif
/* If we have to precede the line with the file name. */
if (print_file_name)
{
fputs_unlocked (fullname, stdout);
putchar_unlocked (':');
putchar_unlocked (' ');
}
printf ("%s %c%s", symstr,
class_type_char (elf, ehdr, &syms[cnt].sym),
mark_special
? (GELF_ST_TYPE (syms[cnt].sym.st_info) == STT_TLS
? "@"
: (GELF_ST_BIND (syms[cnt].sym.st_info) == STB_WEAK
? "*" : " "))
: "");
if (syms[cnt].sym.st_shndx != SHN_UNDEF)
printf ((radix == radix_hex
? " %0*" PRIx64 " %0*" PRIx64
: (radix == radix_decimal
? " %*" PRId64 " %*" PRId64
: " %0*" PRIo64 " %0*" PRIo64)),
digits, syms[cnt].sym.st_value,
digits, syms[cnt].sym.st_size);
putchar ('\n');
}
#ifdef USE_DEMANGLE
free (demangle_buffer);
#endif
}
/* Maximum size of memory we allocate on the stack. */
#define MAX_STACK_ALLOC 65536
static int
sort_by_address (const void *p1, const void *p2)
{
GElf_SymX *s1 = (GElf_SymX *) p1;
GElf_SymX *s2 = (GElf_SymX *) p2;
int result = (s1->sym.st_value < s2->sym.st_value
? -1 : (s1->sym.st_value == s2->sym.st_value ? 0 : 1));
return reverse_sort ? -result : result;
}
static Elf *sort_by_name_elf;
static size_t sort_by_name_ndx;
static int
sort_by_name (const void *p1, const void *p2)
{
GElf_SymX *s1 = (GElf_SymX *) p1;
GElf_SymX *s2 = (GElf_SymX *) p2;
const char *n1 = elf_strptr (sort_by_name_elf, sort_by_name_ndx,
s1->sym.st_name) ?: "";
const char *n2 = elf_strptr (sort_by_name_elf, sort_by_name_ndx,
s2->sym.st_name) ?: "";
int result = strcmp (n1, n2);
return reverse_sort ? -result : result;
}
/* Stub libdwfl callback, only the ELF handle already open is ever
used. Only used for finding the alternate debug file if the Dwarf
comes from the main file. We are not interested in separate
debuginfo. */
static int
find_no_debuginfo (Dwfl_Module *mod,
void **userdata,
const char *modname,
Dwarf_Addr base,
const char *file_name,
const char *debuglink_file,
GElf_Word debuglink_crc,
char **debuginfo_file_name)
{
Dwarf_Addr dwbias;
dwfl_module_info (mod, NULL, NULL, NULL, &dwbias, NULL, NULL, NULL);
/* We are only interested if the Dwarf has been setup on the main
elf file but is only missing the alternate debug link. If dwbias
hasn't even been setup, this is searching for separate debuginfo
for the main elf. We don't care in that case. */
if (dwbias == (Dwarf_Addr) -1)
return -1;
return dwfl_standard_find_debuginfo (mod, userdata, modname, base,
file_name, debuglink_file,
debuglink_crc, debuginfo_file_name);
}
/* Get the Dwarf for the module/file we want. */
struct getdbg
{
const char *name;
Dwarf **dbg;
};
static int
getdbg_dwflmod (Dwfl_Module *dwflmod,
void **userdata __attribute__ ((unused)),
const char *name,
Dwarf_Addr base __attribute__ ((unused)),
void *arg)
{
struct getdbg *get = (struct getdbg *) arg;
if (get != NULL && get->name != NULL && strcmp (get->name, name) == 0)
{
Dwarf_Addr bias;
*get->dbg = dwfl_module_getdwarf (dwflmod, &bias);
return DWARF_CB_ABORT;
}
return DWARF_CB_OK;
}
static void
show_symbols (int fd, Ebl *ebl, GElf_Ehdr *ehdr,
Elf_Scn *scn, Elf_Scn *xndxscn,
GElf_Shdr *shdr, const char *prefix, const char *fname,
const char *fullname)
{
/* Get the section header string table index. */
size_t shstrndx;
if (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0)
error_exit (0, _("cannot get section header string table index"));
/* The section is that large. */
size_t size = shdr->sh_size;
/* One entry is this large. */
size_t entsize = shdr->sh_entsize;
/* Consistency checks. */
if (entsize == 0
|| entsize != gelf_fsize (ebl->elf, ELF_T_SYM, 1, EV_CURRENT))
error (0, 0,
_("%s: entry size in section %zd `%s' is not what we expect"),
fullname, elf_ndxscn (scn),
elf_strptr (ebl->elf, shstrndx, shdr->sh_name));
else if (size % entsize != 0)
error (0, 0,
_("%s: size of section %zd `%s' is not multiple of entry size"),
fullname, elf_ndxscn (scn),
elf_strptr (ebl->elf, shstrndx, shdr->sh_name));
/* Compute number of entries. Handle buggy entsize values. */
size_t nentries = size / (entsize ?: 1);
#define obstack_chunk_alloc xmalloc
#define obstack_chunk_free free
struct obstack whereob;
obstack_init (&whereob);
/* Get a DWARF debugging descriptor. It's no problem if this isn't
possible. We just won't print any line number information. */
Dwarf *dbg = NULL;
Dwfl *dwfl = NULL;
if (format == format_sysv)
{
if (ehdr->e_type != ET_REL)
dbg = dwarf_begin_elf (ebl->elf, DWARF_C_READ, NULL);
else
{
/* Abuse libdwfl to do the relocations for us. This is just
for the ET_REL file containing Dwarf, so no need for
fancy lookups. */
/* Duplicate an fd for dwfl_report_offline to swallow. */
int dwfl_fd = dup (fd);
if (likely (dwfl_fd >= 0))
{
static const Dwfl_Callbacks callbacks =
{
.section_address = dwfl_offline_section_address,
.find_debuginfo = find_no_debuginfo
};
dwfl = dwfl_begin (&callbacks);
if (likely (dwfl != NULL))
{
/* Let 0 be the logical address of the file (or
first in archive). */
dwfl->offline_next_address = 0;
if (dwfl_report_offline (dwfl, fname, fname, dwfl_fd)
== NULL)
{
/* Consumed on success, not on failure. */
close (dwfl_fd);
}
else
{
dwfl_report_end (dwfl, NULL, NULL);
struct getdbg get = { .name = fname, .dbg = &dbg };
dwfl_getmodules (dwfl, &getdbg_dwflmod, &get, 0);
}
}
else
close (dwfl_fd);
}
}
if (dbg != NULL)
{
(void) dwarf_getpubnames (dbg, get_global, NULL, 0);
get_local_names (dbg);
}
}
/* Get the data of the section. */
Elf_Data *data = elf_getdata (scn, NULL);
Elf_Data *xndxdata = elf_getdata (xndxscn, NULL);
if (data == NULL || (xndxscn != NULL && xndxdata == NULL))
INTERNAL_ERROR (fullname);
/* Allocate the memory.
XXX We can use a dirty trick here. Since GElf_Sym == Elf64_Sym we
can use the data memory instead of copying again if what we read
is a 64 bit file. */
if (nentries > SIZE_MAX / sizeof (GElf_SymX))
error_exit (0, _("%s: entries (%zd) in section %zd `%s' is too large"),
fullname, nentries, elf_ndxscn (scn),
elf_strptr (ebl->elf, shstrndx, shdr->sh_name));
GElf_SymX *sym_mem;
if (nentries * sizeof (GElf_SymX) < MAX_STACK_ALLOC)
sym_mem = (GElf_SymX *) alloca (nentries * sizeof (GElf_SymX));
else
sym_mem = xmalloc (nentries * sizeof (GElf_SymX));
/* Iterate over all symbols. */
#ifdef USE_DEMANGLE
size_t demangle_buffer_len = 0;
char *demangle_buffer = NULL;
#endif
int longest_name = 4;
int longest_where = 4;
size_t nentries_used = 0;
for (size_t cnt = 0; cnt < nentries; ++cnt)
{
GElf_Sym *sym = gelf_getsymshndx (data, xndxdata, cnt,
&sym_mem[nentries_used].sym,
&sym_mem[nentries_used].xndx);
if (sym == NULL)
INTERNAL_ERROR (fullname);
/* Filter out administrative symbols without a name and those
deselected by the user with command line options. */
if ((hide_undefined && sym->st_shndx == SHN_UNDEF)
|| (hide_defined && sym->st_shndx != SHN_UNDEF)
|| (hide_local && GELF_ST_BIND (sym->st_info) == STB_LOCAL))
continue;
sym_mem[nentries_used].where = "";
if (format == format_sysv)
{
const char *symstr = elf_strptr (ebl->elf, shdr->sh_link,
sym->st_name);
if (symstr == NULL)
continue;
#ifdef USE_DEMANGLE
/* Demangle if necessary. Require GNU v3 ABI by the "_Z" prefix. */
if (demangle && symstr[0] == '_' && symstr[1] == 'Z')
{
int status = -1;
char *dmsymstr = __cxa_demangle (symstr, demangle_buffer,
&demangle_buffer_len, &status);
if (status == 0)
symstr = dmsymstr;
}
#endif
longest_name = MAX ((size_t) longest_name, strlen (symstr));
if (sym->st_shndx != SHN_UNDEF
&& GELF_ST_BIND (sym->st_info) != STB_LOCAL
&& global_root != NULL)
{
Dwarf_Global fake = { .name = symstr };
Dwarf_Global **found = tfind (&fake, &global_root,
global_compare);
if (found != NULL)
{
Dwarf_Die die_mem;
Dwarf_Die *die = dwarf_offdie (dbg, (*found)->die_offset,
&die_mem);
Dwarf_Die cudie_mem;
Dwarf_Die *cudie = NULL;
Dwarf_Addr lowpc;
Dwarf_Addr highpc;
if (die != NULL
&& dwarf_lowpc (die, &lowpc) == 0
&& lowpc <= sym->st_value
&& dwarf_highpc (die, &highpc) == 0
&& highpc > sym->st_value)
cudie = dwarf_offdie (dbg, (*found)->cu_offset,
&cudie_mem);
if (cudie != NULL)
{
Dwarf_Line *line = dwarf_getsrc_die (cudie,
sym->st_value);
if (line != NULL)
{
/* We found the line. */
int lineno;
(void) dwarf_lineno (line, &lineno);
const char *file = dwarf_linesrc (line, NULL, NULL);
file = (file != NULL) ? basename (file) : "???";
int n;
n = obstack_printf (&whereob, "%s:%d%c", file,
lineno, '0円');
sym_mem[nentries_used].where
= obstack_finish (&whereob);
/* The return value of obstack_print included the
NUL byte, so subtract one. */
if (--n > (int) longest_where)
longest_where = (size_t) n;
}
}
}
}
/* Try to find the symbol among the local symbols. */
if (sym_mem[nentries_used].where[0] == '0円')
{
struct local_name fake =
{
.name = symstr,
.lowpc = sym->st_value,
.highpc = sym->st_value,
};
struct local_name **found = tfind (&fake, &local_root,
local_compare);
if (found != NULL)
{
/* We found the line. */
int n = obstack_printf (&whereob, "%s:%" PRIu64 "%c",
basename ((*found)->file),
(*found)->lineno,
'0円');
sym_mem[nentries_used].where = obstack_finish (&whereob);
/* The return value of obstack_print included the
NUL byte, so subtract one. */
if (--n > (int) longest_where)
longest_where = (size_t) n;
}
}
}
/* We use this entry. */
++nentries_used;
}
#ifdef USE_DEMANGLE
free (demangle_buffer);
#endif
/* Now we know the exact number. */
size_t nentries_orig = nentries;
nentries = nentries_used;
/* Sort the entries according to the users wishes. */
if (sort == sort_name)
{
sort_by_name_elf = ebl->elf;
sort_by_name_ndx = shdr->sh_link;
qsort (sym_mem, nentries, sizeof (GElf_SymX), sort_by_name);
}
else if (sort == sort_numeric)
qsort (sym_mem, nentries, sizeof (GElf_SymX), sort_by_address);
/* Finally print according to the users selection. */
switch (format)
{
case format_sysv:
show_symbols_sysv (ebl, shdr->sh_link, fullname, sym_mem, nentries,
longest_name, longest_where);
break;
case format_bsd:
show_symbols_bsd (ebl->elf, ehdr, shdr->sh_link, prefix, fname, fullname,
sym_mem, nentries);
break;
case format_posix:
default:
assert (format == format_posix);
show_symbols_posix (ebl->elf, ehdr, shdr->sh_link, prefix, fullname,
sym_mem, nentries);
break;
}
/* Free all memory. */
if (nentries_orig * sizeof (sym_mem[0]) >= MAX_STACK_ALLOC)
free (sym_mem);
obstack_free (&whereob, NULL);
if (dbg != NULL)
{
tdestroy (global_root, free);
global_root = NULL;
tdestroy (local_root, free);
local_root = NULL;
if (dwfl == NULL)
(void) dwarf_end (dbg);
}
if (dwfl != NULL)
dwfl_end (dwfl);
}
static int
handle_elf (int fd, Elf *elf, const char *prefix, const char *fname,
const char *suffix)
{
size_t prefix_len = prefix == NULL ? 0 : strlen (prefix);
size_t suffix_len = suffix == NULL ? 0 : strlen (suffix);
size_t fname_len = strlen (fname) + 1;
char fullname[prefix_len + 1 + fname_len + suffix_len];
char *cp = fullname;
Elf_Scn *scn = NULL;
int any = 0;
int result = 0;
GElf_Ehdr ehdr_mem;
GElf_Ehdr *ehdr;
Ebl *ebl;
/* Create the full name of the file. */
if (prefix != NULL)
cp = mempcpy (cp, prefix, prefix_len);
cp = mempcpy (cp, fname, fname_len);
if (suffix != NULL)
memcpy (cp - 1, suffix, suffix_len + 1);
/* Get the backend for this object file type. */
ebl = ebl_openbackend (elf);
if (ebl == NULL)
INTERNAL_ERROR (fullname);
/* We need the ELF header in a few places. */
ehdr = gelf_getehdr (elf, &ehdr_mem);
if (ehdr == NULL)
INTERNAL_ERROR (fullname);
/* If we are asked to print the dynamic symbol table and this is
executable or dynamic executable, fail. */
if (symsec_type == SHT_DYNSYM
&& ehdr->e_type != ET_EXEC && ehdr->e_type != ET_DYN)
{
/* XXX Add machine specific object file types. */
error (0, 0, _("%s%s%s%s: Invalid operation"),
prefix ?: "", prefix ? "(" : "", fname, prefix ? ")" : "");
result = 1;
goto out;
}
/* Find the symbol table.
XXX Can there be more than one? Do we print all? Currently we do. */
while ((scn = elf_nextscn (elf, scn)) != NULL)
{
GElf_Shdr shdr_mem;
GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
if (shdr == NULL)
INTERNAL_ERROR (fullname);
if (shdr->sh_type == symsec_type)
{
Elf_Scn *xndxscn = NULL;
/* We have a symbol table. First make sure we remember this. */
any = 1;
/* Look for an extended section index table for this section. */
if (symsec_type == SHT_SYMTAB)
{
size_t scnndx = elf_ndxscn (scn);
while ((xndxscn = elf_nextscn (elf, xndxscn)) != NULL)
{
GElf_Shdr xndxshdr_mem;
GElf_Shdr *xndxshdr = gelf_getshdr (xndxscn, &xndxshdr_mem);
if (xndxshdr == NULL)
INTERNAL_ERROR (fullname);
if (xndxshdr->sh_type == SHT_SYMTAB_SHNDX
&& xndxshdr->sh_link == scnndx)
break;
}
}
show_symbols (fd, ebl, ehdr, scn, xndxscn, shdr, prefix, fname,
fullname);
}
}
if (! any)
{
error (0, 0, _("%s%s%s: no symbols"),
prefix ?: "", prefix ? ":" : "", fname);
result = 1;
}
out:
/* Close the ELF backend library descriptor. */
ebl_closebackend (ebl);
return result;
}
#include "debugpred.h"
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

fork from https://github.com/sourceware-org/elfutils.git
暂无标签
GPL-2.0
使用 GPL-2.0 开源许可协议
, LGPL-3.0
使用 LGPL-3.0 开源许可协议
, GPL-3.0
使用 GPL-3.0 开源许可协议
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/source-code-sync/elfutils.git
git@gitee.com:source-code-sync/elfutils.git
source-code-sync
elfutils
elfutils
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /