Automatic date update in version.in
[binutils-gdb.git] / binutils / addr2line.c
blob5b02a67567bea56d54fcdf665183686f9022312a
1 /* addr2line.c -- convert addresses to line number and function name
2 Copyright (C) 1997-2021 Free Software Foundation, Inc.
3 Contributed by Ulrich Lauther <Ulrich.Lauther@mchp.siemens.de>
5 This file is part of GNU Binutils.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
23 /* Derived from objdump.c and nm.c by Ulrich.Lauther@mchp.siemens.de
25 Usage:
26 addr2line [options] addr addr ...
28 addr2line [options]
30 both forms write results to stdout, the second form reads addresses
31 to be converted from stdin. */
33 #include "sysdep.h"
34 #include "bfd.h"
35 #include "getopt.h"
36 #include "libiberty.h"
37 #include "demangle.h"
38 #include "bucomm.h"
39 #include "elf-bfd.h"
41 static bool unwind_inlines; /* -i, unwind inlined functions. */
42 static bool with_addresses; /* -a, show addresses. */
43 static bool with_functions; /* -f, show function names. */
44 static bool do_demangle; /* -C, demangle names. */
45 static bool pretty_print; /* -p, print on one line. */
46 static bool base_names; /* -s, strip directory names. */
48 /* Flags passed to the name demangler. */
49 static int demangle_flags = DMGL_PARAMS | DMGL_ANSI;
51 static int naddr; /* Number of addresses to process. */
52 static char **addr; /* Hex addresses to process. */
54 static asymbol **syms; /* Symbol table. */
56 static struct option long_options[] =
58 {"addresses", no_argument, NULL, 'a'},
59 {"basenames", no_argument, NULL, 's'},
60 {"demangle", optional_argument, NULL, 'C'},
61 {"exe", required_argument, NULL, 'e'},
62 {"functions", no_argument, NULL, 'f'},
63 {"inlines", no_argument, NULL, 'i'},
64 {"pretty-print", no_argument, NULL, 'p'},
65 {"recurse-limit", no_argument, NULL, 'R'},
66 {"recursion-limit", no_argument, NULL, 'R'},
67 {"no-recurse-limit", no_argument, NULL, 'r'},
68 {"no-recursion-limit", no_argument, NULL, 'r'},
69 {"section", required_argument, NULL, 'j'},
70 {"target", required_argument, NULL, 'b'},
71 {"help", no_argument, NULL, 'H'},
72 {"version", no_argument, NULL, 'V'},
73 {0, no_argument, 0, 0}
76 static void usage (FILE *, int);
77 static void slurp_symtab (bfd *);
78 static void find_address_in_section (bfd *, asection *, void *);
79 static void find_offset_in_section (bfd *, asection *);
80 static void translate_addresses (bfd *, asection *);
82 /* Print a usage message to STREAM and exit with STATUS. */
84 static void
85 usage (FILE *stream, int status)
87 fprintf (stream, _("Usage: %s [option(s)] [addr(s)]\n"), program_name);
88 fprintf (stream, _(" Convert addresses into line number/file name pairs.\n"));
89 fprintf (stream, _(" If no addresses are specified on the command line, they will be read from stdin\n"));
90 fprintf (stream, _(" The options are:\n\
91 @<file> Read options from <file>\n\
92 -a --addresses Show addresses\n\
93 -b --target=<bfdname> Set the binary file format\n\
94 -e --exe=<executable> Set the input file name (default is a.out)\n\
95 -i --inlines Unwind inlined functions\n\
96 -j --section=<name> Read section-relative offsets instead of addresses\n\
97 -p --pretty-print Make the output easier to read for humans\n\
98 -s --basenames Strip directory names\n\
99 -f --functions Show function names\n\
100 -C --demangle[=style] Demangle function names\n\
101 -R --recurse-limit Enable a limit on recursion whilst demangling. [Default]\n\
102 -r --no-recurse-limit Disable a limit on recursion whilst demangling\n\
103 -h --help Display this information\n\
104 -v --version Display the program's version\n\
105 \n"));
107 list_supported_targets (program_name, stream);
108 if (REPORT_BUGS_TO[0] && status == 0)
109 fprintf (stream, _("Report bugs to %s\n"), REPORT_BUGS_TO);
110 exit (status);
113 /* Read in the symbol table. */
115 static void
116 slurp_symtab (bfd *abfd)
118 long storage;
119 long symcount;
120 bool dynamic = false;
122 if ((bfd_get_file_flags (abfd) & HAS_SYMS) == 0)
123 return;
125 storage = bfd_get_symtab_upper_bound (abfd);
126 if (storage == 0)
128 storage = bfd_get_dynamic_symtab_upper_bound (abfd);
129 dynamic = true;
131 if (storage < 0)
132 bfd_fatal (bfd_get_filename (abfd));
134 syms = (asymbol **) xmalloc (storage);
135 if (dynamic)
136 symcount = bfd_canonicalize_dynamic_symtab (abfd, syms);
137 else
138 symcount = bfd_canonicalize_symtab (abfd, syms);
139 if (symcount < 0)
140 bfd_fatal (bfd_get_filename (abfd));
142 /* If there are no symbols left after canonicalization and
143 we have not tried the dynamic symbols then give them a go. */
144 if (symcount == 0
145 && ! dynamic
146 && (storage = bfd_get_dynamic_symtab_upper_bound (abfd)) > 0)
148 free (syms);
149 syms = xmalloc (storage);
150 symcount = bfd_canonicalize_dynamic_symtab (abfd, syms);
153 /* PR 17512: file: 2a1d3b5b.
154 Do not pretend that we have some symbols when we don't. */
155 if (symcount <= 0)
157 free (syms);
158 syms = NULL;
162 /* These global variables are used to pass information between
163 translate_addresses and find_address_in_section. */
165 static bfd_vma pc;
166 static const char *filename;
167 static const char *functionname;
168 static unsigned int line;
169 static unsigned int discriminator;
170 static bool found;
172 /* Look for an address in a section. This is called via
173 bfd_map_over_sections. */
175 static void
176 find_address_in_section (bfd *abfd, asection *section,
177 void *data ATTRIBUTE_UNUSED)
179 bfd_vma vma;
180 bfd_size_type size;
182 if (found)
183 return;
185 if ((bfd_section_flags (section) & SEC_ALLOC) == 0)
186 return;
188 vma = bfd_section_vma (section);
189 if (pc < vma)
190 return;
192 size = bfd_section_size (section);
193 if (pc >= vma + size)
194 return;
196 found = bfd_find_nearest_line_discriminator (abfd, section, syms, pc - vma,
197 &filename, &functionname,
198 &line, &discriminator);
201 /* Look for an offset in a section. This is directly called. */
203 static void
204 find_offset_in_section (bfd *abfd, asection *section)
206 bfd_size_type size;
208 if (found)
209 return;
211 if ((bfd_section_flags (section) & SEC_ALLOC) == 0)
212 return;
214 size = bfd_section_size (section);
215 if (pc >= size)
216 return;
218 found = bfd_find_nearest_line_discriminator (abfd, section, syms, pc,
219 &filename, &functionname,
220 &line, &discriminator);
223 /* Read hexadecimal addresses from stdin, translate into
224 file_name:line_number and optionally function name. */
226 static void
227 translate_addresses (bfd *abfd, asection *section)
229 int read_stdin = (naddr == 0);
231 for (;;)
233 if (read_stdin)
235 char addr_hex[100];
237 if (fgets (addr_hex, sizeof addr_hex, stdin) == NULL)
238 break;
239 pc = bfd_scan_vma (addr_hex, NULL, 16);
241 else
243 if (naddr <= 0)
244 break;
245 --naddr;
246 pc = bfd_scan_vma (*addr++, NULL, 16);
249 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
251 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
252 bfd_vma sign = (bfd_vma) 1 << (bed->s->arch_size - 1);
254 pc &= (sign << 1) - 1;
255 if (bed->sign_extend_vma)
256 pc = (pc ^ sign) - sign;
259 if (with_addresses)
261 printf ("0x");
262 bfd_printf_vma (abfd, pc);
264 if (pretty_print)
265 printf (": ");
266 else
267 printf ("\n");
270 found = false;
271 if (section)
272 find_offset_in_section (abfd, section);
273 else
274 bfd_map_over_sections (abfd, find_address_in_section, NULL);
276 if (! found)
278 if (with_functions)
280 if (pretty_print)
281 printf ("?? ");
282 else
283 printf ("??\n");
285 printf ("??:0\n");
287 else
289 while (1)
291 if (with_functions)
293 const char *name;
294 char *alloc = NULL;
296 name = functionname;
297 if (name == NULL || *name == '\0')
298 name = "??";
299 else if (do_demangle)
301 alloc = bfd_demangle (abfd, name, demangle_flags);
302 if (alloc != NULL)
303 name = alloc;
306 printf ("%s", name);
307 if (pretty_print)
308 /* Note for translators: This printf is used to join the
309 function name just printed above to the line number/
310 file name pair that is about to be printed below. Eg:
312 foo at 123:bar.c */
313 printf (_(" at "));
314 else
315 printf ("\n");
317 free (alloc);
320 if (base_names && filename != NULL)
322 char *h;
324 h = strrchr (filename, '/');
325 if (h != NULL)
326 filename = h + 1;
329 printf ("%s:", filename ? filename : "??");
330 if (line != 0)
332 if (discriminator != 0)
333 printf ("%u (discriminator %u)\n", line, discriminator);
334 else
335 printf ("%u\n", line);
337 else
338 printf ("?\n");
339 if (!unwind_inlines)
340 found = false;
341 else
342 found = bfd_find_inliner_info (abfd, &filename, &functionname,
343 &line);
344 if (! found)
345 break;
346 if (pretty_print)
347 /* Note for translators: This printf is used to join the
348 line number/file name pair that has just been printed with
349 the line number/file name pair that is going to be printed
350 by the next iteration of the while loop. Eg:
352 123:bar.c (inlined by) 456:main.c */
353 printf (_(" (inlined by) "));
357 /* fflush() is essential for using this command as a server
358 child process that reads addresses from a pipe and responds
359 with line number information, processing one address at a
360 time. */
361 fflush (stdout);
365 /* Process a file. Returns an exit value for main(). */
367 static int
368 process_file (const char *file_name, const char *section_name,
369 const char *target)
371 bfd *abfd;
372 asection *section;
373 char **matching;
375 if (get_file_size (file_name) < 1)
376 return 1;
378 abfd = bfd_openr (file_name, target);
379 if (abfd == NULL)
380 bfd_fatal (file_name);
382 /* Decompress sections. */
383 abfd->flags |= BFD_DECOMPRESS;
385 if (bfd_check_format (abfd, bfd_archive))
386 fatal (_("%s: cannot get addresses from archive"), file_name);
388 if (! bfd_check_format_matches (abfd, bfd_object, &matching))
390 bfd_nonfatal (bfd_get_filename (abfd));
391 if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
393 list_matching_formats (matching);
394 free (matching);
396 xexit (1);
399 if (section_name != NULL)
401 section = bfd_get_section_by_name (abfd, section_name);
402 if (section == NULL)
403 fatal (_("%s: cannot find section %s"), file_name, section_name);
405 else
406 section = NULL;
408 slurp_symtab (abfd);
410 translate_addresses (abfd, section);
412 free (syms);
413 syms = NULL;
415 bfd_close (abfd);
417 return 0;
421 main (int argc, char **argv)
423 const char *file_name;
424 const char *section_name;
425 char *target;
426 int c;
428 #ifdef HAVE_LC_MESSAGES
429 setlocale (LC_MESSAGES, "");
430 #endif
431 setlocale (LC_CTYPE, "");
432 bindtextdomain (PACKAGE, LOCALEDIR);
433 textdomain (PACKAGE);
435 program_name = *argv;
436 xmalloc_set_program_name (program_name);
437 bfd_set_error_program_name (program_name);
439 expandargv (&argc, &argv);
441 if (bfd_init () != BFD_INIT_MAGIC)
442 fatal (_("fatal error: libbfd ABI mismatch"));
443 set_default_bfd_target ();
445 file_name = NULL;
446 section_name = NULL;
447 target = NULL;
448 while ((c = getopt_long (argc, argv, "ab:Ce:rRsfHhij:pVv", long_options, (int *) 0))
449 != EOF)
451 switch (c)
453 case 0:
454 break; /* We've been given a long option. */
455 case 'a':
456 with_addresses = true;
457 break;
458 case 'b':
459 target = optarg;
460 break;
461 case 'C':
462 do_demangle = true;
463 if (optarg != NULL)
465 enum demangling_styles style;
467 style = cplus_demangle_name_to_style (optarg);
468 if (style == unknown_demangling)
469 fatal (_("unknown demangling style `%s'"),
470 optarg);
472 cplus_demangle_set_style (style);
474 break;
475 case 'r':
476 demangle_flags |= DMGL_NO_RECURSE_LIMIT;
477 break;
478 case 'R':
479 demangle_flags &= ~ DMGL_NO_RECURSE_LIMIT;
480 break;
481 case 'e':
482 file_name = optarg;
483 break;
484 case 's':
485 base_names = true;
486 break;
487 case 'f':
488 with_functions = true;
489 break;
490 case 'p':
491 pretty_print = true;
492 break;
493 case 'v':
494 case 'V':
495 print_version ("addr2line");
496 break;
497 case 'h':
498 case 'H':
499 usage (stdout, 0);
500 break;
501 case 'i':
502 unwind_inlines = true;
503 break;
504 case 'j':
505 section_name = optarg;
506 break;
507 default:
508 usage (stderr, 1);
509 break;
513 if (file_name == NULL)
514 file_name = "a.out";
516 addr = argv + optind;
517 naddr = argc - optind;
519 return process_file (file_name, section_name, target);