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
|
/* Locate source files and line information for given addresses
Copyright (C) 2005 Red Hat, Inc.
Written by Ulrich Drepper <drepper@redhat.com>, 2005.
This program is Open Source software; you can redistribute it and/or
modify it under the terms of the Open Software License version 1.0 as
published by the Open Source Initiative.
You should have received a copy of the Open Software License along
with this program; if not, you may obtain a copy of the Open Software
License version 1.0 from http://www.opensource.org/licenses/osl.php or
by writing the Open Source Initiative c/o Lawrence Rosen, Esq.,
3001 King Ranch Road, Ukiah, CA 95482. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <argp.h>
#include <assert.h>
#include <errno.h>
#include <error.h>
#include <fcntl.h>
#include <gelf.h>
#include <inttypes.h>
#include <libdw.h>
#include <libintl.h>
#include <locale.h>
#include <mcheck.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdio_ext.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
/* Name and version of program. */
static void print_version (FILE *stream, struct argp_state *state);
void (*argp_program_version_hook) (FILE *, struct argp_state *) = print_version;
/* Bug report address. */
const char *argp_program_bug_address = PACKAGE_BUGREPORT;
/* Values for the parameters which have no short form. */
#define OPT_DEMANGLER 0x100
/* Definitions of arguments for argp functions. */
static const struct argp_option options[] =
{
{ NULL, 0, NULL, 0, N_("Input Selection:"), 0 },
{ "exe", 'e', "FILE", 0, N_("Find addresses in FILE"), 0 },
{ NULL, 0, NULL, 0, N_("Output Selection:"), 0 },
{ "basenames", 's', NULL, 0, N_("Show only base names of source files"), 0 },
{ "functions", 'f', NULL, 0, N_("Additional show function names"), 0 },
{ NULL, 0, NULL, 0, N_("Miscellaneous:"), 0 },
/* Unsupported options. */
{ "target", 'b', "ARG", OPTION_HIDDEN, NULL, 0 },
{ "demangle", 'C', "ARG", OPTION_HIDDEN | OPTION_ARG_OPTIONAL, NULL, 0 },
{ "demangler", OPT_DEMANGLER, "ARG", OPTION_HIDDEN, NULL, 0 },
{ NULL, 0, NULL, 0, NULL, 0 }
};
/* Short description of program. */
static const char doc[] = N_("\
Locate source files and line information for ADDRs (in a.out by default).");
/* Strings for arguments in help texts. */
static const char args_doc[] = N_("[ADDR...]");
/* Prototype for option handler. */
static error_t parse_opt (int key, char *arg, struct argp_state *state);
/* Data structure to communicate with argp functions. */
static struct argp argp =
{
options, parse_opt, args_doc, doc, NULL, NULL, NULL
};
/* Handle ADDR. */
static void handle_address (GElf_Addr addr, Elf *elf, Dwarf *dw);
/* Name of the executable. */
static const char *executable = "a.out";
/* True if only base names of files should be shown. */
static bool only_basenames;
/* True if function names should be shown. */
static bool show_functions;
int
main (int argc, char *argv[])
{
int remaining;
int result = 0;
/* Make memory leak detection possible. */
mtrace ();
/* We use no threads here which can interfere with handling a stream. */
(void) __fsetlocking (stdout, FSETLOCKING_BYCALLER);
/* Set locale. */
(void) setlocale (LC_ALL, "");
/* Make sure the message catalog can be found. */
(void) bindtextdomain (PACKAGE, LOCALEDIR);
/* Initialize the message catalog. */
(void) textdomain (PACKAGE);
/* Parse and process arguments. */
(void) argp_parse (&argp, argc, argv, 0, &remaining, NULL);
/* Tell the library which version we are expecting. */
elf_version (EV_CURRENT);
/* Open the file. */
int fd = open64 (executable, O_RDONLY);
if (fd == -1)
error (1, errno, gettext ("cannot open '%s'"), executable);
/* Create the ELF descriptor. */
Elf *elf = elf_begin (fd, ELF_C_READ_MMAP, NULL);
if (elf == NULL)
{
close (fd);
error (1, 0, gettext ("cannot create ELF descriptor: %s"),
elf_errmsg (-1));
}
/* Try to get a DWARF descriptor. If it fails, we try to locate the
debuginfo file. */
Dwarf *dw = dwarf_begin_elf (elf, DWARF_C_READ, NULL);
int fd2 = -1;
Elf *elf2 = NULL;
if (dw == NULL)
{
char *canon = canonicalize_file_name (executable);
GElf_Ehdr ehdr_mem;
GElf_Ehdr *ehdr = gelf_getehdr (elf, &ehdr_mem);
if (canon != NULL && ehdr != NULL)
{
const char *debuginfo_dir;
if (ehdr->e_ident[EI_CLASS] == ELFCLASS32
|| ehdr->e_machine == EM_IA_64 || ehdr->e_machine == EM_ALPHA)
debuginfo_dir = "/usr/lib/debug";
else
debuginfo_dir = "/usr/lib64/debug";
char *difname = alloca (strlen (debuginfo_dir) + strlen (canon) + 1);
strcpy (stpcpy (difname, debuginfo_dir), canon);
fd2 = open64 (difname, O_RDONLY);
if (fd2 != -1)
dw = dwarf_begin_elf (elf2, DWARF_C_READ, NULL);
}
free (canon);
}
/* Now handle the addresses. In case none are given on the command
line, read from stdin. */
if (remaining == argc)
{
/* We use no threads here which can interfere with handling a stream. */
(void) __fsetlocking (stdin, FSETLOCKING_BYCALLER);
char *buf = NULL;
size_t len = 0;
while (!feof_unlocked (stdin))
{
if (getline (&buf, &len, stdin) < 0)
break;
char *endp;
uintmax_t addr = strtoumax (buf, &endp, 0);
if (endp != buf)
handle_address (addr, elf2 ?: elf, dw);
else
result = 1;
}
free (buf);
}
else
{
do
{
char *endp;
uintmax_t addr = strtoumax (argv[remaining], &endp, 0);
if (endp != argv[remaining])
handle_address (addr, elf2 ?: elf, dw);
else
result = 1;
}
while (++remaining < argc);
}
return result;
}
/* Print the version information. */
static void
print_version (FILE *stream, struct argp_state *state __attribute__ ((unused)))
{
fprintf (stream, "addr2line (%s) %s\n", PACKAGE_NAME, VERSION);
fprintf (stream, gettext ("\
Copyright (C) %s Red Hat, Inc.\n\
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
"), "2005");
fprintf (stream, gettext ("Written by %s.\n"), "Ulrich Drepper");
}
/* Handle program arguments. */
static error_t
parse_opt (int key, char *arg,
struct argp_state *state __attribute__ ((unused)))
{
switch (key)
{
case 'b':
case 'C':
case OPT_DEMANGLER:
/* Ignored for compatibility. */
break;
case 'e':
executable = arg;
break;
case 's':
only_basenames = true;
break;
case 'f':
show_functions = true;
break;
default:
return ARGP_ERR_UNKNOWN;
}
return 0;
}
struct func_arg
{
GElf_Addr addr;
const char *name;
};
static int
match_func (Dwarf_Func *func, void *arg)
{
struct func_arg *func_arg = (struct func_arg *) arg;
Dwarf_Addr addr;
if (dwarf_func_lowpc (func, &addr) == 0 && addr <= func_arg->addr
&& dwarf_func_highpc (func, &addr) == 0 && func_arg->addr < addr)
{
func_arg->name = dwarf_func_name (func);
return DWARF_CB_ABORT;
}
return DWARF_CB_OK;
}
static const char *
elf_getname (GElf_Addr addr, Elf *elf)
{
/* The DWARF information is not available. Use the ELF
symbol table. */
Elf_Scn *scn = NULL;
Elf_Scn *dynscn = NULL;
while ((scn = elf_nextscn (elf, scn)) != NULL)
{
GElf_Shdr shdr_mem;
GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
if (shdr != NULL)
{
if (shdr->sh_type == SHT_SYMTAB)
break;
if (shdr->sh_type == SHT_DYNSYM)
dynscn = scn;
}
}
if (scn == NULL)
scn = dynscn;
if (scn != NULL)
{
/* Look through the symbol table for a matching symbol. */
GElf_Shdr shdr_mem;
GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
assert (shdr != NULL);
Elf_Data *data = elf_getdata (scn, NULL);
if (data != NULL)
for (int cnt = 1; cnt < (int) (shdr->sh_size / shdr->sh_entsize);
++cnt)
{
GElf_Sym sym_mem;
GElf_Sym *sym = gelf_getsym (data, cnt, &sym_mem);
if (sym != NULL
&& sym->st_value <= addr
&& addr < sym->st_value + sym->st_size)
return elf_strptr (elf, shdr->sh_link, sym->st_name);
}
}
return NULL;
}
static void
handle_address (GElf_Addr addr, Elf *elf, Dwarf *dw)
{
Dwarf_Die die_mem;
Dwarf_Die *die = dwarf_addrdie (dw, addr, &die_mem);
if (show_functions)
{
/* First determine the function name. Use the DWARF information if
possible. */
struct func_arg arg;
arg.addr = addr;
arg.name = NULL;
if (dwarf_getfuncs (die, match_func, &arg, 0) <= 0)
arg.name = elf_getname (addr, elf);
puts (arg.name ?: "??");
}
Dwarf_Line *line;
const char *src;
if ((line = dwarf_getsrc_die (die, addr)) != NULL
&& (src = dwarf_linesrc (line, NULL, NULL)) != NULL)
{
if (only_basenames)
src = basename (src);
int lineno;
if (dwarf_lineno (line, &lineno) != -1)
{
int linecol;
if (dwarf_linecol (line, &linecol) != -1 && linecol != 0)
printf ("%s:%d:%d\n", src, lineno, linecol);
else
printf ("%s:%d\n", src, lineno);
}
else
printf ("%s:0\n", src);
}
else
puts ("??:0");
}
|