1 /* size.c -- report size of various sections of an executable file.
2 Copyright (C) 1991-2023 Free Software Foundation, Inc.
4 This file is part of GNU Binutils.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
21 /* Extensions/incompatibilities:
22 o - BSD output has filenames at the end.
23 o - BSD output can appear in different radicies.
24 o - SysV output has less redundant whitespace. Filename comes at end.
25 o - SysV output doesn't show VMA which is always the same as the PMA.
26 o - We also handle core files.
27 o - We also handle archives.
28 If you write shell scripts which manipulate this info then you may be
29 out of luck; there's no --compatibility or --pedantic option. */
33 #include "libiberty.h"
41 /* Program options. */
49 /* Select the desired output format. */
56 static enum output_format selected_output_format
=
64 static int show_version
= 0;
65 static int show_help
= 0;
66 static int show_totals
= 0;
67 static int show_common
= 0;
69 static bfd_size_type common_size
;
70 static bfd_size_type total_bsssize
;
71 static bfd_size_type total_datasize
;
72 static bfd_size_type total_textsize
;
74 /* Program exit status. */
75 static int return_code
= 0;
77 static char *target
= NULL
;
79 /* Forward declarations. */
81 static void display_file (char *);
82 static void rprint_number (int, bfd_size_type
);
83 static void print_sizes (bfd
* file
);
86 usage (FILE *stream
, int status
)
88 fprintf (stream
, _("Usage: %s [option(s)] [file(s)]\n"), program_name
);
89 fprintf (stream
, _(" Displays the sizes of sections inside binary files\n"));
90 fprintf (stream
, _(" If no input file(s) are specified, a.out is assumed\n"));
91 fprintf (stream
, _(" The options are:\n\
92 -A|-B|-G --format={sysv|berkeley|gnu} Select output style (default is %s)\n\
93 -o|-d|-x --radix={8|10|16} Display numbers in octal, decimal or hex\n\
94 -t --totals Display the total sizes (Berkeley only)\n\
96 --common Display total size for *COM* syms\n\
97 --target=<bfdname> Set the binary file format\n\
98 @<file> Read options from <file>\n\
99 -h|-H|-? --help Display this information\n\
100 -v|-V --version Display the program's version\n\
108 list_supported_targets (program_name
, stream
);
109 if (REPORT_BUGS_TO
[0] && status
== 0)
110 fprintf (stream
, _("Report bugs to %s\n"), REPORT_BUGS_TO
);
114 #define OPTION_FORMAT (200)
115 #define OPTION_RADIX (OPTION_FORMAT + 1)
116 #define OPTION_TARGET (OPTION_RADIX + 1)
118 static struct option long_options
[] =
120 {"common", no_argument
, &show_common
, 1},
121 {"format", required_argument
, 0, OPTION_FORMAT
},
122 {"radix", required_argument
, 0, OPTION_RADIX
},
123 {"target", required_argument
, 0, OPTION_TARGET
},
124 {"totals", no_argument
, &show_totals
, 1},
125 {"version", no_argument
, &show_version
, 1},
126 {"help", no_argument
, &show_help
, 1},
127 {0, no_argument
, 0, 0}
130 int main (int, char **);
133 main (int argc
, char **argv
)
138 #ifdef HAVE_LC_MESSAGES
139 setlocale (LC_MESSAGES
, "");
141 setlocale (LC_CTYPE
, "");
142 bindtextdomain (PACKAGE
, LOCALEDIR
);
143 textdomain (PACKAGE
);
145 program_name
= *argv
;
146 xmalloc_set_program_name (program_name
);
147 bfd_set_error_program_name (program_name
);
149 expandargv (&argc
, &argv
);
151 if (bfd_init () != BFD_INIT_MAGIC
)
152 fatal (_("fatal error: libbfd ABI mismatch"));
153 set_default_bfd_target ();
155 while ((c
= getopt_long (argc
, argv
, "ABGHhVvdfotx", long_options
,
164 selected_output_format
= FORMAT_BERKLEY
;
168 selected_output_format
= FORMAT_SYSV
;
172 selected_output_format
= FORMAT_GNU
;
175 non_fatal (_("invalid argument to --format: %s"), optarg
);
185 #ifdef ANSI_LIBRARIES
186 temp
= strtol (optarg
, NULL
, 10);
188 temp
= atol (optarg
);
202 non_fatal (_("Invalid radix: %s\n"), optarg
);
208 selected_output_format
= FORMAT_SYSV
;
211 selected_output_format
= FORMAT_BERKLEY
;
214 selected_output_format
= FORMAT_GNU
;
232 case 'f': /* FIXME : For sysv68, `-f' means `full format', i.e.
233 `[fname:] M(.text) + N(.data) + O(.bss) + P(.comment) = Q'
234 where `fname: ' appears only if there are >= 2 input files,
235 and M, N, O, P, Q are expressed in decimal by default,
236 hexa or octal if requested by `-x' or `-o'.
237 Just to make things interesting, Solaris also accepts -f,
238 which prints out the size of each allocatable section, the
239 name of the section, and the total of the section sizes. */
240 /* For the moment, accept `-f' silently, and ignore it. */
251 print_version ("size");
256 display_file ("a.out");
258 for (; optind
< argc
;)
259 display_file (argv
[optind
++]);
261 if (show_totals
&& (selected_output_format
== FORMAT_BERKLEY
262 || selected_output_format
== FORMAT_GNU
))
264 bfd_size_type total
= total_textsize
+ total_datasize
+ total_bsssize
;
265 int col_width
= (selected_output_format
== FORMAT_BERKLEY
) ? 7 : 10;
266 char sep_char
= (selected_output_format
== FORMAT_BERKLEY
) ? '\t' : ' ';
268 rprint_number (col_width
, total_textsize
);
270 rprint_number (col_width
, total_datasize
);
272 rprint_number (col_width
, total_bsssize
);
274 if (selected_output_format
== FORMAT_BERKLEY
)
275 printf (((radix
== octal
) ? "%7lo\t%7lx" : "%7lu\t%7lx"),
276 (unsigned long) total
, (unsigned long) total
);
278 rprint_number (col_width
, total
);
280 fputs ("(TOTALS)\n", stdout
);
286 /* Total size required for common symbols in ABFD. */
289 calculate_common_size (bfd
*abfd
)
291 asymbol
**syms
= NULL
;
292 long storage
, symcount
;
295 if ((bfd_get_file_flags (abfd
) & (EXEC_P
| DYNAMIC
| HAS_SYMS
)) != HAS_SYMS
)
298 storage
= bfd_get_symtab_upper_bound (abfd
);
300 bfd_fatal (bfd_get_filename (abfd
));
302 syms
= (asymbol
**) xmalloc (storage
);
304 symcount
= bfd_canonicalize_symtab (abfd
, syms
);
306 bfd_fatal (bfd_get_filename (abfd
));
308 while (--symcount
>= 0)
310 asymbol
*sym
= syms
[symcount
];
312 if (bfd_is_com_section (sym
->section
)
313 && (sym
->flags
& BSF_SECTION_SYM
) == 0)
314 common_size
+= sym
->value
;
319 /* Display stats on file or archive member ABFD. */
322 display_bfd (bfd
*abfd
)
326 if (bfd_check_format (abfd
, bfd_archive
))
327 /* An archive within an archive. */
330 if (bfd_check_format_matches (abfd
, bfd_object
, &matching
))
337 if (bfd_get_error () == bfd_error_file_ambiguously_recognized
)
339 bfd_nonfatal (bfd_get_filename (abfd
));
340 list_matching_formats (matching
);
345 if (bfd_check_format_matches (abfd
, bfd_core
, &matching
))
347 const char *core_cmd
;
350 fputs (" (core file", stdout
);
352 core_cmd
= bfd_core_file_failing_command (abfd
);
354 printf (" invoked as %s", core_cmd
);
360 bfd_nonfatal (bfd_get_filename (abfd
));
362 if (bfd_get_error () == bfd_error_file_ambiguously_recognized
)
363 list_matching_formats (matching
);
369 display_archive (bfd
*file
)
371 bfd
*arfile
= (bfd
*) NULL
;
372 bfd
*last_arfile
= (bfd
*) NULL
;
376 bfd_set_error (bfd_error_no_error
);
378 arfile
= bfd_openr_next_archived_file (file
, arfile
);
381 if (bfd_get_error () != bfd_error_no_more_archived_files
)
383 bfd_nonfatal (bfd_get_filename (file
));
389 display_bfd (arfile
);
391 if (last_arfile
!= NULL
)
393 bfd_close (last_arfile
);
395 /* PR 17512: file: a244edbc. */
396 if (last_arfile
== arfile
)
400 last_arfile
= arfile
;
403 if (last_arfile
!= NULL
)
404 bfd_close (last_arfile
);
408 display_file (char *filename
)
412 if (get_file_size (filename
) < 1)
418 file
= bfd_openr (filename
, target
);
421 bfd_nonfatal (filename
);
426 if (bfd_check_format (file
, bfd_archive
))
427 display_archive (file
);
431 if (!bfd_close (file
))
433 bfd_nonfatal (filename
);
440 size_number (bfd_size_type num
)
444 return sprintf (buffer
, (radix
== decimal
? "%" PRIu64
445 : radix
== octal
? "0%" PRIo64
: "0x%" PRIx64
),
450 rprint_number (int width
, bfd_size_type num
)
454 sprintf (buffer
, (radix
== decimal
? "%" PRIu64
455 : radix
== octal
? "0%" PRIo64
: "0x%" PRIx64
),
458 printf ("%*s", width
, buffer
);
461 static bfd_size_type bsssize
;
462 static bfd_size_type datasize
;
463 static bfd_size_type textsize
;
466 berkeley_or_gnu_sum (bfd
*abfd ATTRIBUTE_UNUSED
, sec_ptr sec
,
467 void *ignore ATTRIBUTE_UNUSED
)
472 flags
= bfd_section_flags (sec
);
473 if ((flags
& SEC_ALLOC
) == 0)
476 size
= bfd_section_size (sec
);
477 if ((flags
& SEC_CODE
) != 0
478 || (selected_output_format
== FORMAT_BERKLEY
479 && (flags
& SEC_READONLY
) != 0))
481 else if ((flags
& SEC_HAS_CONTENTS
) != 0)
488 print_berkeley_or_gnu_format (bfd
*abfd
)
490 static int files_seen
= 0;
492 int col_width
= (selected_output_format
== FORMAT_BERKLEY
) ? 7 : 10;
493 char sep_char
= (selected_output_format
== FORMAT_BERKLEY
) ? '\t' : ' ';
499 bfd_map_over_sections (abfd
, berkeley_or_gnu_sum
, NULL
);
501 bsssize
+= common_size
;
502 if (files_seen
++ == 0)
504 if (selected_output_format
== FORMAT_BERKLEY
)
505 puts ((radix
== octal
) ? " text\t data\t bss\t oct\t hex\tfilename" :
506 " text\t data\t bss\t dec\t hex\tfilename");
508 puts (" text data bss total filename");
511 total
= textsize
+ datasize
+ bsssize
;
515 total_textsize
+= textsize
;
516 total_datasize
+= datasize
;
517 total_bsssize
+= bsssize
;
520 rprint_number (col_width
, textsize
);
522 rprint_number (col_width
, datasize
);
524 rprint_number (col_width
, bsssize
);
527 if (selected_output_format
== FORMAT_BERKLEY
)
528 printf (((radix
== octal
) ? "%7lo\t%7lx" : "%7lu\t%7lx"),
529 (unsigned long) total
, (unsigned long) total
);
531 rprint_number (col_width
, total
);
534 fputs (bfd_get_filename (abfd
), stdout
);
536 if (abfd
->my_archive
)
537 printf (" (ex %s)", bfd_get_filename (abfd
->my_archive
));
540 /* I REALLY miss lexical functions! */
541 bfd_size_type svi_total
= 0;
542 bfd_vma svi_maxvma
= 0;
548 sysv_internal_sizer (bfd
*file ATTRIBUTE_UNUSED
, sec_ptr sec
,
549 void *ignore ATTRIBUTE_UNUSED
)
551 flagword flags
= bfd_section_flags (sec
);
552 /* Exclude sections with no flags set. This is to omit som spaces. */
556 if ( ! bfd_is_abs_section (sec
)
557 && ! bfd_is_com_section (sec
)
558 && ! bfd_is_und_section (sec
))
560 bfd_size_type size
= bfd_section_size (sec
);
561 int namelen
= strlen (bfd_section_name (sec
));
563 if (namelen
> svi_namelen
)
564 svi_namelen
= namelen
;
568 if (bfd_section_vma (sec
) > svi_maxvma
)
569 svi_maxvma
= bfd_section_vma (sec
);
574 sysv_one_line (const char *name
, bfd_size_type size
, bfd_vma vma
)
576 printf ("%-*s ", svi_namelen
, name
);
577 rprint_number (svi_sizelen
, size
);
579 rprint_number (svi_vmalen
, vma
);
584 sysv_internal_printer (bfd
*file ATTRIBUTE_UNUSED
, sec_ptr sec
,
585 void *ignore ATTRIBUTE_UNUSED
)
587 flagword flags
= bfd_section_flags (sec
);
591 if ( ! bfd_is_abs_section (sec
)
592 && ! bfd_is_com_section (sec
)
593 && ! bfd_is_und_section (sec
))
595 bfd_size_type size
= bfd_section_size (sec
);
599 sysv_one_line (bfd_section_name (sec
),
601 bfd_section_vma (sec
));
606 print_sysv_format (bfd
*file
)
608 /* Size all of the columns. */
612 bfd_map_over_sections (file
, sysv_internal_sizer
, NULL
);
615 if (svi_namelen
< (int) sizeof ("*COM*") - 1)
616 svi_namelen
= sizeof ("*COM*") - 1;
617 svi_total
+= common_size
;
620 svi_vmalen
= size_number ((bfd_size_type
)svi_maxvma
);
622 if ((size_t) svi_vmalen
< sizeof ("addr") - 1)
623 svi_vmalen
= sizeof ("addr")-1;
625 svi_sizelen
= size_number (svi_total
);
626 if ((size_t) svi_sizelen
< sizeof ("size") - 1)
627 svi_sizelen
= sizeof ("size")-1;
630 printf ("%s ", bfd_get_filename (file
));
632 if (file
->my_archive
)
633 printf (" (ex %s)", bfd_get_filename (file
->my_archive
));
635 printf (":\n%-*s %*s %*s\n", svi_namelen
, "section",
636 svi_sizelen
, "size", svi_vmalen
, "addr");
638 bfd_map_over_sections (file
, sysv_internal_printer
, NULL
);
641 svi_total
+= common_size
;
642 sysv_one_line ("*COM*", common_size
, 0);
645 printf ("%-*s ", svi_namelen
, "Total");
646 rprint_number (svi_sizelen
, svi_total
);
651 print_sizes (bfd
*file
)
654 calculate_common_size (file
);
655 if (selected_output_format
== FORMAT_SYSV
)
656 print_sysv_format (file
);
658 print_berkeley_or_gnu_format (file
);