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: #include "sysdep.h"
35: #include "bfd.h"
36: #include "getopt.h"
37: #include "libiberty.h"
38: #include "demangle.h"
39: #include "bucomm.h"
40:
41: static bfd_boolean unwind_inlines;
42: static bfd_boolean with_functions;
43: static bfd_boolean do_demangle;
44: static bfd_boolean base_names;
45:
46: static int naddr;
47: static char **addr;
48:
49: static asymbol **syms;
50:
51: static struct option long_options[] =
52: {
53: {"basenames", no_argument, NULL, 's'},
54: {"demangle", optional_argument, NULL, 'C'},
55: {"exe", required_argument, NULL, 'e'},
56: {"functions", no_argument, NULL, 'f'},
57: {"inlines", no_argument, NULL, 'i'},
58: {"section", required_argument, NULL, 'j'},
59: {"target", required_argument, NULL, 'b'},
60: {"help", no_argument, NULL, 'H'},
61: {"version", no_argument, NULL, 'V'},
62: {0, no_argument, 0, 0}
63: };
64:
65: static void usage (FILE *, int);
66: static void slurp_symtab (bfd *);
67: static void find_address_in_section (bfd *, asection *, void *);
68: static void find_offset_in_section (bfd *, asection *);
69: static void translate_addresses (bfd *, asection *);
70: ^L
71:
72:
73: static void
74: usage (FILE *stream, int status)
75: {
76: fprintf (stream, _("Usage: %s [option(s)] [addr(s)]\n"), program_name);
77: fprintf (stream, _(" Convert addresses into line number/file name pairs.\n"));
78: fprintf (stream, _(" If no addresses are specified on the command line, they will be read from stdin\n"));
79: fprintf (stream, _(" The options are:\n\
80: @<file> Read options from <file>\n\
81: -b --target=<bfdname> Set the binary file format\n\
82: -e --exe=<executable> Set the input file name (default is a.out)\n\
83: -i --inlines Unwind inlined functions\n\
84: -j --section=<name> Read section-relative offsets instead of addresses\n\
85: -s --basenames Strip directory names\n\
86: -f --functions Show function names\n\
87: -C --demangle[=style] Demangle function names\n\
88: -h --help Display this information\n\
89: -v --version Display the program's version\n\
90: \n"));
91:
92: list_supported_targets (program_name, stream);
93: if (REPORT_BUGS_TO[0] && status == 0)
94: fprintf (stream, _("Report bugs to %s\n"), REPORT_BUGS_TO);
95: exit (status);
96: }
97: ^L
98:
99:
100: static void
101: slurp_symtab (bfd *abfd)
102: {
103: long symcount;
104: unsigned int size;
105:
106: if ((bfd_get_file_flags (abfd) & HAS_SYMS) == 0)
107: return;
108:
109: symcount = bfd_read_minisymbols (abfd, FALSE, (void *) &syms, &size);
110: if (symcount == 0)
111: symcount = bfd_read_minisymbols (abfd, TRUE , (void *) &syms, &size);
112:
113: if (symcount < 0)
114: bfd_fatal (bfd_get_filename (abfd));
115: }
116: ^L
117:
118:
119:
120: static bfd_vma pc;
121: static const char *filename;
122: static const char *functionname;
123: static unsigned int line;
124: static bfd_boolean found;
125:
126:
127:
128:
129: static void
130: find_address_in_section (bfd *abfd, asection *section,
131: void *data ATTRIBUTE_UNUSED)
132: {
133: bfd_vma vma;
134: bfd_size_type size;
135:
136: if (found)
137: return;
138:
139: if ((bfd_get_section_flags (abfd, section) & SEC_ALLOC) == 0)
140: return;
141:
142: vma = bfd_get_section_vma (abfd, section);
143: if (pc < vma)
144: return;
145:
146: size = bfd_get_section_size (section);
147: if (pc >= vma + size)
148: return;
149:
150: found = bfd_find_nearest_line (abfd, section, syms, pc - vma,
151: &filename, &functionname, &line);
152: }
153:
154:
155:
156: static void
157: find_offset_in_section (bfd *abfd, asection *section)
158: {
159: bfd_size_type size;
160:
161: if (found)
162: return;
163:
164: if ((bfd_get_section_flags (abfd, section) & SEC_ALLOC) == 0)
165: return;
166:
167: size = bfd_get_section_size (section);
168: if (pc >= size)
169: return;
170:
171: found = bfd_find_nearest_line (abfd, section, syms, pc,
172: &filename, &functionname, &line);
173: }
174:
175:
176:
177:
178: static void
179: translate_addresses (bfd *abfd, asection *section)
180: {
181: int read_stdin = (naddr == 0);
182:
183: for (;;)
184: {
185: if (read_stdin)
186: {
187: char addr_hex[100];
188:
189: if (fgets (addr_hex, sizeof addr_hex, stdin) == NULL)
190: break;
191: pc = bfd_scan_vma (addr_hex, NULL, 16);
192: }
193: else
194: {
195: if (naddr <= 0)
196: break;
197: --naddr;
198: pc = bfd_scan_vma (*addr++, NULL, 16);
199: }
200:
201: found = FALSE;
202: if (section)
203: find_offset_in_section (abfd, section);
204: else
205: bfd_map_over_sections (abfd, find_address_in_section, NULL);
206:
207: if (! found)
208: {
209: if (with_functions)
210: printf ("??\n");
211: printf ("??:0\n");
212: }
213: else
214: {
215: do {
216: if (with_functions)
217: {
218: const char *name;
219: char *alloc = NULL;
220:
221: name = functionname;
222: if (name == NULL || *name == '\0')
223: name = "??";
224: else if (do_demangle)
225: {
226: alloc = bfd_demangle (abfd, name, DMGL_ANSI | DMGL_PARAMS);
227: if (alloc != NULL)
228: name = alloc;
229: }
230:
231: printf ("%s\n", name);
232:
233: if (alloc != NULL)
234: free (alloc);
235: }
236:
237: if (base_names && filename != NULL)
238: {
239: char *h;
240:
241: h = strrchr (filename, '/');
242: if (h != NULL)
243: filename = h + 1;
244: }
245:
246: printf ("%s:%u\n", filename ? filename : "??", line);
247: if (!unwind_inlines)
248: found = FALSE;
249: else
250: found = bfd_find_inliner_info (abfd, &filename, &functionname, &line);
251: } while (found);
252:
253: }
254:
255:
256:
257:
258:
259: fflush (stdout);
260: }
261: }
262:
263:
264:
265: static int
266: process_file (const char *file_name, const char *section_name,
267: const char *target)
268: {
269: bfd *abfd;
270: asection *section;
271: char **matching;
272:
273: if (get_file_size (file_name) < 1)
274: return 1;
275:
276: abfd = bfd_openr (file_name, target);
277: if (abfd == NULL)
278: bfd_fatal (file_name);
279:
280: if (bfd_check_format (abfd, bfd_archive))
281: fatal (_("%s: cannot get addresses from archive"), file_name);
282:
283: if (! bfd_check_format_matches (abfd, bfd_object, &matching))
284: {
285: bfd_nonfatal (bfd_get_filename (abfd));
286: if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
287: {
288: list_matching_formats (matching);
289: free (matching);
290: }
291: xexit (1);
292: }
293:
294: if (section_name != NULL)
295: {
296: section = bfd_get_section_by_name (abfd, section_name);
297: if (section == NULL)
298: fatal (_("%s: cannot find section %s"), file_name, section_name);
299: }
300: else
301: section = NULL;
302:
303: slurp_symtab (abfd);
304:
305: translate_addresses (abfd, section);
306:
307: if (syms != NULL)
308: {
309: free (syms);
310: syms = NULL;
311: }
312:
313: bfd_close (abfd);
314:
315: return 0;
316: }
317: ^L
318: int
319: main (int argc, char **argv)
320: {
321: const char *file_name;
322: const char *section_name;
323: char *target;
324: int c;
325:
326: #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
327: setlocale (LC_MESSAGES, "");
328: #endif
329: #if defined (HAVE_SETLOCALE)
330: setlocale (LC_CTYPE, "");
331: #endif
332: bindtextdomain (PACKAGE, LOCALEDIR);
333: textdomain (PACKAGE);
334:
335: program_name = *argv;
336: xmalloc_set_program_name (program_name);
337:
338: expandargv (&argc, &argv);
339:
340: bfd_init ();
341: set_default_bfd_target ();
342:
343: file_name = NULL;
344: section_name = NULL;
345: target = NULL;
346: while ((c = getopt_long (argc, argv, "b:Ce:sfHhij:Vv", long_options, (int *) 0))
347: != EOF)
348: {
349: switch (c)
350: {
351: case 0:
352: break;
353: case 'b':
354: target = optarg;
355: break;
356: case 'C':
357: do_demangle = TRUE;
358: if (optarg != NULL)
359: {
360: enum demangling_styles style;
361:
362: style = cplus_demangle_name_to_style (optarg);
363: if (style == unknown_demangling)
364: fatal (_("unknown demangling style `%s'"),
365: optarg);
366:
367: cplus_demangle_set_style (style);
368: }
369: break;
370: case 'e':
371: file_name = optarg;
372: break;
373: case 's':
374: base_names = TRUE;
375: break;
376: case 'f':
377: with_functions = TRUE;
378: break;
379: case 'v':
380: case 'V':
381: print_version ("addr2line");
382: break;
383: case 'h':
384: case 'H':
385: usage (stdout, 0);
386: break;
387: case 'i':
388: unwind_inlines = TRUE;
389: break;
390: case 'j':
391: section_name = optarg;
392: break;
393: default:
394: usage (stderr, 1);
395: break;
396: }
397: }
398:
399: if (file_name == NULL)
400: file_name = "a.out";
401:
402: addr = argv + optind;
403: naddr = argc - optind;
404:
405: return process_file (file_name, section_name, target);
406: }