1 /* od -- dump files in octal and other formats
2 Copyright (C) 1992-2017 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Jim Meyering. */
24 #include <sys/types.h>
31 #include "stat-size.h"
32 #include "xbinary-io.h"
36 /* The official name of this program (e.g., no 'g' prefix). */
37 #define PROGRAM_NAME "od"
39 #define AUTHORS proper_name ("Jim Meyering")
41 /* The default number of input bytes per output line. */
42 #define DEFAULT_BYTES_PER_BLOCK 16
44 #if HAVE_UNSIGNED_LONG_LONG_INT
45 typedef unsigned long long int unsigned_long_long_int
;
47 /* This is just a place-holder to avoid a few '#if' directives.
48 In this case, the type isn't actually used. */
49 typedef unsigned long int unsigned_long_long_int
;
60 /* FIXME: add INTMAX support, too */
78 #define MAX_INTEGRAL_TYPE_SIZE sizeof (unsigned_long_long_int)
80 /* The maximum number of bytes needed for a format string, including
81 the trailing nul. Each format string expects a variable amount of
82 padding (guaranteed to be at least 1 plus the field width), then an
83 element that will be formatted in the field. */
95 /* Ensure that our choice for FMT_BYTES_ALLOCATED is reasonable. */
96 verify (MAX_INTEGRAL_TYPE_SIZE
* CHAR_BIT
/ 3 <= 99);
98 /* Each output format specification (from '-t spec' or from
99 old-style options) is represented by one of these structures. */
102 enum output_format fmt
;
103 enum size_spec size
; /* Type of input object. */
104 /* FIELDS is the number of fields per line, BLANK is the number of
105 fields to leave blank. WIDTH is width of one field, excluding
106 leading space, and PAD is total pad to divide among FIELDS.
107 PAD is at least as large as FIELDS. */
108 void (*print_function
) (size_t fields
, size_t blank
, void const *data
,
109 char const *fmt
, int width
, int pad
);
110 char fmt_string
[FMT_BYTES_ALLOCATED
]; /* Of the style "%*d". */
111 bool hexl_mode_trailer
;
112 int field_width
; /* Minimum width of a field, excluding leading space. */
113 int pad_width
; /* Total padding to be divided among fields. */
116 /* Convert the number of 8-bit bytes of a binary representation to
117 the number of characters (digits + sign if the type is signed)
118 required to represent the same quantity in the specified base/type.
119 For example, a 32-bit (4-byte) quantity may require a field width
120 as wide as the following for these types:
124 8 unsigned hexadecimal */
126 static unsigned int const bytes_to_oct_digits
[] =
127 {0, 3, 6, 8, 11, 14, 16, 19, 22, 25, 27, 30, 32, 35, 38, 41, 43};
129 static unsigned int const bytes_to_signed_dec_digits
[] =
130 {1, 4, 6, 8, 11, 13, 16, 18, 20, 23, 25, 28, 30, 33, 35, 37, 40};
132 static unsigned int const bytes_to_unsigned_dec_digits
[] =
133 {0, 3, 5, 8, 10, 13, 15, 17, 20, 22, 25, 27, 29, 32, 34, 37, 39};
135 static unsigned int const bytes_to_hex_digits
[] =
136 {0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32};
138 /* It'll be a while before we see integral types wider than 16 bytes,
139 but if/when it happens, this check will catch it. Without this check,
140 a wider type would provoke a buffer overrun. */
141 verify (MAX_INTEGRAL_TYPE_SIZE
< ARRAY_CARDINALITY (bytes_to_hex_digits
));
143 /* Make sure the other arrays have the same length. */
144 verify (sizeof bytes_to_oct_digits
== sizeof bytes_to_signed_dec_digits
);
145 verify (sizeof bytes_to_oct_digits
== sizeof bytes_to_unsigned_dec_digits
);
146 verify (sizeof bytes_to_oct_digits
== sizeof bytes_to_hex_digits
);
148 /* Convert enum size_spec to the size of the named type. */
149 static const int width_bytes
[] =
156 sizeof (unsigned_long_long_int
),
162 /* Ensure that for each member of 'enum size_spec' there is an
163 initializer in the width_bytes array. */
164 verify (ARRAY_CARDINALITY (width_bytes
) == N_SIZE_SPECS
);
166 /* Names for some non-printing characters. */
167 static char const charname
[33][4] =
169 "nul", "soh", "stx", "etx", "eot", "enq", "ack", "bel",
170 "bs", "ht", "nl", "vt", "ff", "cr", "so", "si",
171 "dle", "dc1", "dc2", "dc3", "dc4", "nak", "syn", "etb",
172 "can", "em", "sub", "esc", "fs", "gs", "rs", "us",
176 /* Address base (8, 10 or 16). */
177 static int address_base
;
179 /* The number of octal digits required to represent the largest
181 #define MAX_ADDRESS_LENGTH \
182 ((sizeof (uintmax_t) * CHAR_BIT + CHAR_BIT - 1) / 3)
184 /* Width of a normal address. */
185 static int address_pad_len
;
187 /* Minimum length when detecting --strings. */
188 static size_t string_min
;
190 /* True when in --strings mode. */
191 static bool flag_dump_strings
;
193 /* True if we should recognize the older non-option arguments
194 that specified at most one file and optional arguments specifying
195 offset and pseudo-start address. */
196 static bool traditional
;
198 /* True if an old-style 'pseudo-address' was specified. */
199 static bool flag_pseudo_start
;
201 /* The difference between the old-style pseudo starting address and
202 the number of bytes to skip. */
203 static uintmax_t pseudo_offset
;
205 /* Function that accepts an address and an optional following char,
206 and prints the address and char to stdout. */
207 static void (*format_address
) (uintmax_t, char);
209 /* The number of input bytes to skip before formatting and writing. */
210 static uintmax_t n_bytes_to_skip
= 0;
212 /* When false, MAX_BYTES_TO_FORMAT and END_OFFSET are ignored, and all
213 input is formatted. */
214 static bool limit_bytes_to_format
= false;
216 /* The maximum number of bytes that will be formatted. */
217 static uintmax_t max_bytes_to_format
;
219 /* The offset of the first byte after the last byte to be formatted. */
220 static uintmax_t end_offset
;
222 /* When true and two or more consecutive blocks are equal, format
223 only the first block and output an asterisk alone on the following
224 line to indicate that identical blocks have been elided. */
225 static bool abbreviate_duplicate_blocks
= true;
227 /* An array of specs describing how to format each input block. */
228 static struct tspec
*spec
;
230 /* The number of format specs. */
231 static size_t n_specs
;
233 /* The allocated length of SPEC. */
234 static size_t n_specs_allocated
;
236 /* The number of input bytes formatted per output line. It must be
237 a multiple of the least common multiple of the sizes associated with
238 the specified output types. It should be as large as possible, but
239 no larger than 16 -- unless specified with the -w option. */
240 static size_t bytes_per_block
;
242 /* Human-readable representation of *file_list (for error messages).
243 It differs from file_list[-1] only when file_list[-1] is "-". */
244 static char const *input_filename
;
246 /* A NULL-terminated list of the file-arguments from the command line. */
247 static char const *const *file_list
;
249 /* Initializer for file_list if no file-arguments
250 were specified on the command line. */
251 static char const *const default_file_list
[] = {"-", NULL
};
253 /* The input stream associated with the current file. */
254 static FILE *in_stream
;
256 /* If true, at least one of the files we read was standard input. */
257 static bool have_read_stdin
;
259 /* Map the size in bytes to a type identifier. */
260 static enum size_spec integral_type_size
[MAX_INTEGRAL_TYPE_SIZE
+ 1];
262 #define MAX_FP_TYPE_SIZE sizeof (long double)
263 static enum size_spec fp_type_size
[MAX_FP_TYPE_SIZE
+ 1];
265 #ifndef WORDS_BIGENDIAN
266 # define WORDS_BIGENDIAN 0
269 /* Use native endianess by default. */
270 static bool input_swap
;
272 static char const short_options
[] = "A:aBbcDdeFfHhIij:LlN:OoS:st:vw::Xx";
274 /* For long options that have no equivalent short option, use a
275 non-character as a pseudo short option, starting with CHAR_MAX + 1. */
278 TRADITIONAL_OPTION
= CHAR_MAX
+ 1,
288 static char const *const endian_args
[] =
290 "little", "big", NULL
293 static enum endian_type
const endian_types
[] =
295 endian_little
, endian_big
298 static struct option
const long_options
[] =
300 {"skip-bytes", required_argument
, NULL
, 'j'},
301 {"address-radix", required_argument
, NULL
, 'A'},
302 {"read-bytes", required_argument
, NULL
, 'N'},
303 {"format", required_argument
, NULL
, 't'},
304 {"output-duplicates", no_argument
, NULL
, 'v'},
305 {"strings", optional_argument
, NULL
, 'S'},
306 {"traditional", no_argument
, NULL
, TRADITIONAL_OPTION
},
307 {"width", optional_argument
, NULL
, 'w'},
308 {"endian", required_argument
, NULL
, ENDIAN_OPTION
},
310 {GETOPT_HELP_OPTION_DECL
},
311 {GETOPT_VERSION_OPTION_DECL
},
318 if (status
!= EXIT_SUCCESS
)
323 Usage: %s [OPTION]... [FILE]...\n\
324 or: %s [-abcdfilosx]... [FILE] [[+]OFFSET[.][b]]\n\
325 or: %s --traditional [OPTION]... [FILE] [[+]OFFSET[.][b] [+][LABEL][.][b]]\n\
327 program_name
, program_name
, program_name
);
329 Write an unambiguous representation, octal bytes by default,\n\
330 of FILE to standard output. With more than one FILE argument,\n\
331 concatenate them in the listed order to form the input.\n\
338 If first and second call formats both apply, the second format is assumed\n\
339 if the last operand begins with + or (if there are 2 operands) a digit.\n\
340 An OFFSET operand means -j OFFSET. LABEL is the pseudo-address\n\
341 at first byte printed, incremented when dump is progressing.\n\
342 For OFFSET and LABEL, a 0x or 0X prefix indicates hexadecimal;\n\
343 suffixes may be . for octal and b for multiply by 512.\n\
346 emit_mandatory_arg_note ();
349 -A, --address-radix=RADIX output format for file offsets; RADIX is one\n\
350 of [doxn], for Decimal, Octal, Hex or None\n\
351 --endian={big|little} swap input bytes according the specified order\n\
352 -j, --skip-bytes=BYTES skip BYTES input bytes first\n\
355 -N, --read-bytes=BYTES limit dump to BYTES input bytes\n\
356 -S BYTES, --strings[=BYTES] output strings of at least BYTES graphic chars;\
358 3 is implied when BYTES is not specified\n\
359 -t, --format=TYPE select output format or formats\n\
360 -v, --output-duplicates do not use * to mark line suppression\n\
361 -w[BYTES], --width[=BYTES] output BYTES bytes per output line;\n\
362 32 is implied when BYTES is not specified\n\
363 --traditional accept arguments in third form above\n\
365 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
366 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
370 Traditional format specifications may be intermixed; they accumulate:\n\
371 -a same as -t a, select named characters, ignoring high-order bit\n\
372 -b same as -t o1, select octal bytes\n\
373 -c same as -t c, select printable characters or backslash escapes\n\
374 -d same as -t u2, select unsigned decimal 2-byte units\n\
377 -f same as -t fF, select floats\n\
378 -i same as -t dI, select decimal ints\n\
379 -l same as -t dL, select decimal longs\n\
380 -o same as -t o2, select octal 2-byte units\n\
381 -s same as -t d2, select decimal 2-byte units\n\
382 -x same as -t x2, select hexadecimal 2-byte units\n\
387 TYPE is made up of one or more of these specifications:\n\
388 a named character, ignoring high-order bit\n\
389 c printable character or backslash escape\n\
392 d[SIZE] signed decimal, SIZE bytes per integer\n\
393 f[SIZE] floating point, SIZE bytes per float\n\
394 o[SIZE] octal, SIZE bytes per integer\n\
395 u[SIZE] unsigned decimal, SIZE bytes per integer\n\
396 x[SIZE] hexadecimal, SIZE bytes per integer\n\
400 SIZE is a number. For TYPE in [doux], SIZE may also be C for\n\
401 sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n\
402 sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n\
403 for sizeof(double) or L for sizeof(long double).\n\
407 Adding a z suffix to any type displays printable characters at the end of\n\
413 BYTES is hex with 0x or 0X prefix, and may have a multiplier suffix:\n\
419 and so on for G, T, P, E, Z, Y.\n\
421 emit_ancillary_info (PROGRAM_NAME
);
426 /* Define the print functions. */
428 #define PRINT_FIELDS(N, T, FMT_STRING, ACTION) \
430 N (size_t fields, size_t blank, void const *block, \
431 char const *FMT_STRING, int width, int pad) \
433 T const *p = block; \
435 int pad_remaining = pad; \
436 for (i = fields; blank < i; i--) \
438 int next_pad = pad * (i - 1) / fields; \
439 int adjusted_width = pad_remaining - next_pad + width; \
441 if (input_swap && sizeof (T) > 1) \
446 char b[sizeof (T)]; \
448 for (j = 0; j < sizeof (T); j++) \
449 u.b[j] = ((const char *) p)[sizeof (T) - 1 - j]; \
456 pad_remaining = next_pad; \
460 #define PRINT_TYPE(N, T) \
461 PRINT_FIELDS (N, T, fmt_string, xprintf (fmt_string, adjusted_width, x))
463 #define PRINT_FLOATTYPE(N, T, FTOASTR, BUFSIZE) \
464 PRINT_FIELDS (N, T, fmt_string _GL_UNUSED, \
466 FTOASTR (buf, sizeof buf, 0, 0, x); \
467 xprintf ("%*s", adjusted_width, buf))
469 PRINT_TYPE (print_s_char
, signed char)
470 PRINT_TYPE (print_char
, unsigned char)
471 PRINT_TYPE (print_s_short
, short int)
472 PRINT_TYPE (print_short
, unsigned short int)
473 PRINT_TYPE (print_int
, unsigned int)
474 PRINT_TYPE (print_long
, unsigned long int)
475 PRINT_TYPE (print_long_long
, unsigned_long_long_int
)
477 PRINT_FLOATTYPE (print_float
, float, ftoastr
, FLT_BUFSIZE_BOUND
)
478 PRINT_FLOATTYPE (print_double
, double, dtoastr
, DBL_BUFSIZE_BOUND
)
479 PRINT_FLOATTYPE (print_long_double
, long double, ldtoastr
, LDBL_BUFSIZE_BOUND
)
482 #undef PRINT_FLOATTYPE
485 dump_hexl_mode_trailer (size_t n_bytes
, const char *block
)
487 fputs (" >", stdout
);
488 for (size_t i
= n_bytes
; i
> 0; i
--)
490 unsigned char c
= *block
++;
491 unsigned char c2
= (isprint (c
) ? c
: '.');
498 print_named_ascii (size_t fields
, size_t blank
, void const *block
,
499 const char *unused_fmt_string _GL_UNUSED
,
502 unsigned char const *p
= block
;
504 int pad_remaining
= pad
;
505 for (i
= fields
; blank
< i
; i
--)
507 int next_pad
= pad
* (i
- 1) / fields
;
508 int masked_c
= *p
++ & 0x7f;
514 else if (masked_c
<= 040)
515 s
= charname
[masked_c
];
523 xprintf ("%*s", pad_remaining
- next_pad
+ width
, s
);
524 pad_remaining
= next_pad
;
529 print_ascii (size_t fields
, size_t blank
, void const *block
,
530 const char *unused_fmt_string _GL_UNUSED
, int width
,
533 unsigned char const *p
= block
;
535 int pad_remaining
= pad
;
536 for (i
= fields
; blank
< i
; i
--)
538 int next_pad
= pad
* (i
- 1) / fields
;
539 unsigned char c
= *p
++;
578 sprintf (buf
, (isprint (c
) ? "%c" : "%03o"), c
);
582 xprintf ("%*s", pad_remaining
- next_pad
+ width
, s
);
583 pad_remaining
= next_pad
;
587 /* Convert a null-terminated (possibly zero-length) string S to an
588 unsigned long integer value. If S points to a non-digit set *P to S,
589 *VAL to 0, and return true. Otherwise, accumulate the integer value of
590 the string of digits. If the string of digits represents a value
591 larger than ULONG_MAX, don't modify *VAL or *P and return false.
592 Otherwise, advance *P to the first non-digit after S, set *VAL to
593 the result of the conversion and return true. */
596 simple_strtoul (const char *s
, const char **p
, unsigned long int *val
)
598 unsigned long int sum
;
604 if (sum
> (ULONG_MAX
- c
) / 10)
613 /* If S points to a single valid modern od format string, put
614 a description of that format in *TSPEC, make *NEXT point at the
615 character following the just-decoded format (if *NEXT is non-NULL),
616 and return true. If S is not valid, don't modify *NEXT or *TSPEC,
617 give a diagnostic, and return false. For example, if S were
618 "d4afL" *NEXT would be set to "afL" and *TSPEC would be
620 fmt = SIGNED_DECIMAL;
621 size = INT or LONG; (whichever integral_type_size[4] resolves to)
622 print_function = print_int; (assuming size == INT)
626 pad_width is determined later, but is at least as large as the
627 number of fields printed per row.
628 S_ORIG is solely for reporting errors. It should be the full format
633 decode_one_format (const char *s_orig
, const char *s
, const char **next
,
636 enum size_spec size_spec
;
637 unsigned long int size
;
638 enum output_format fmt
;
639 void (*print_function
) (size_t, size_t, void const *, char const *,
645 assert (tspec
!= NULL
);
659 size
= sizeof (char);
664 size
= sizeof (short int);
674 size
= sizeof (long int);
678 if (! simple_strtoul (s
, &p
, &size
))
680 /* The integer at P in S would overflow an unsigned long int.
681 A digit string that long is sufficiently odd looking
682 that the following diagnostic is sufficient. */
683 error (0, 0, _("invalid type string %s"), quote (s_orig
));
690 if (MAX_INTEGRAL_TYPE_SIZE
< size
691 || integral_type_size
[size
] == NO_SIZE
)
693 error (0, 0, _("invalid type string %s;\nthis system"
694 " doesn't provide a %lu-byte integral type"),
695 quote (s_orig
), size
);
703 #define ISPEC_TO_FORMAT(Spec, Min_format, Long_format, Max_format) \
704 ((Spec) == LONG_LONG ? (Max_format) \
705 : ((Spec) == LONG ? (Long_format) \
708 size_spec = integral_type_size[size];
713 fmt
= SIGNED_DECIMAL
;
714 field_width
= bytes_to_signed_dec_digits
[size
];
715 sprintf (tspec
->fmt_string
, "%%*%s",
716 ISPEC_TO_FORMAT (size_spec
, "d", "ld", PRIdMAX
));
721 sprintf (tspec
->fmt_string
, "%%*.%d%s",
722 (field_width
= bytes_to_oct_digits
[size
]),
723 ISPEC_TO_FORMAT (size_spec
, "o", "lo", PRIoMAX
));
727 fmt
= UNSIGNED_DECIMAL
;
728 field_width
= bytes_to_unsigned_dec_digits
[size
];
729 sprintf (tspec
->fmt_string
, "%%*%s",
730 ISPEC_TO_FORMAT (size_spec
, "u", "lu", PRIuMAX
));
735 sprintf (tspec
->fmt_string
, "%%*.%d%s",
736 (field_width
= bytes_to_hex_digits
[size
]),
737 ISPEC_TO_FORMAT (size_spec
, "x", "lx", PRIxMAX
));
744 assert (strlen (tspec
->fmt_string
) < FMT_BYTES_ALLOCATED
);
749 print_function
= (fmt
== SIGNED_DECIMAL
755 print_function
= (fmt
== SIGNED_DECIMAL
761 print_function
= print_int
;
765 print_function
= print_long
;
769 print_function
= print_long_long
;
778 fmt
= FLOATING_POINT
;
784 size
= sizeof (float);
789 size
= sizeof (double);
794 size
= sizeof (long double);
798 if (! simple_strtoul (s
, &p
, &size
))
800 /* The integer at P in S would overflow an unsigned long int.
801 A digit string that long is sufficiently odd looking
802 that the following diagnostic is sufficient. */
803 error (0, 0, _("invalid type string %s"), quote (s_orig
));
807 size
= sizeof (double);
810 if (size
> MAX_FP_TYPE_SIZE
811 || fp_type_size
[size
] == NO_SIZE
)
814 _("invalid type string %s;\n"
815 "this system doesn't provide a %lu-byte"
816 " floating point type"),
817 quote (s_orig
), size
);
824 size_spec
= fp_type_size
[size
];
827 struct lconv
const *locale
= localeconv ();
828 size_t decimal_point_len
=
829 (locale
->decimal_point
[0] ? strlen (locale
->decimal_point
) : 1);
834 print_function
= print_float
;
835 field_width
= FLT_STRLEN_BOUND_L (decimal_point_len
);
839 print_function
= print_double
;
840 field_width
= DBL_STRLEN_BOUND_L (decimal_point_len
);
843 case FLOAT_LONG_DOUBLE
:
844 print_function
= print_long_double
;
845 field_width
= LDBL_STRLEN_BOUND_L (decimal_point_len
);
857 fmt
= NAMED_CHARACTER
;
859 print_function
= print_named_ascii
;
867 print_function
= print_ascii
;
872 error (0, 0, _("invalid character '%c' in type string %s"),
877 tspec
->size
= size_spec
;
879 tspec
->print_function
= print_function
;
881 tspec
->field_width
= field_width
;
882 tspec
->hexl_mode_trailer
= (*s
== 'z');
883 if (tspec
->hexl_mode_trailer
)
892 /* Given a list of one or more input filenames FILE_LIST, set the global
893 file pointer IN_STREAM and the global string INPUT_FILENAME to the
894 first one that can be successfully opened. Modify FILE_LIST to
895 reference the next filename in the list. A file name of "-" is
896 interpreted as standard input. If any file open fails, give an error
897 message and return false. */
900 open_next_file (void)
906 input_filename
= *file_list
;
907 if (input_filename
== NULL
)
911 if (STREQ (input_filename
, "-"))
913 input_filename
= _("standard input");
915 have_read_stdin
= true;
916 xset_binary_mode (STDIN_FILENO
, O_BINARY
);
920 in_stream
= fopen (input_filename
, (O_BINARY
? "rb" : "r"));
921 if (in_stream
== NULL
)
923 error (0, errno
, "%s", quotef (input_filename
));
928 while (in_stream
== NULL
);
930 if (limit_bytes_to_format
&& !flag_dump_strings
)
931 setvbuf (in_stream
, NULL
, _IONBF
, 0);
936 /* Test whether there have been errors on in_stream, and close it if
937 it is not standard input. Return false if there has been an error
938 on in_stream or stdout; return true otherwise. This function will
939 report more than one error only if both a read and a write error
940 have occurred. IN_ERRNO, if nonzero, is the error number
941 corresponding to the most recent action for IN_STREAM. */
944 check_and_close (int in_errno
)
948 if (in_stream
!= NULL
)
950 if (ferror (in_stream
))
952 error (0, in_errno
, _("%s: read error"), quotef (input_filename
));
953 if (! STREQ (file_list
[-1], "-"))
957 else if (! STREQ (file_list
[-1], "-") && fclose (in_stream
) != 0)
959 error (0, errno
, "%s", quotef (input_filename
));
968 error (0, 0, _("write error"));
975 /* Decode the modern od format string S. Append the decoded
976 representation to the global array SPEC, reallocating SPEC if
977 necessary. Return true if S is valid. */
980 decode_format_string (const char *s
)
982 const char *s_orig
= s
;
989 if (n_specs_allocated
<= n_specs
)
990 spec
= X2NREALLOC (spec
, &n_specs_allocated
);
992 if (! decode_one_format (s_orig
, s
, &next
, &spec
[n_specs
]))
1003 /* Given a list of one or more input filenames FILE_LIST, set the global
1004 file pointer IN_STREAM to position N_SKIP in the concatenation of
1005 those files. If any file operation fails or if there are fewer than
1006 N_SKIP bytes in the combined input, give an error message and return
1007 false. When possible, use seek rather than read operations to
1008 advance IN_STREAM. */
1011 skip (uintmax_t n_skip
)
1019 while (in_stream
!= NULL
) /* EOF. */
1021 struct stat file_stats
;
1023 /* First try seeking. For large offsets, this extra work is
1024 worthwhile. If the offset is below some threshold it may be
1025 more efficient to move the pointer by reading. There are two
1026 issues when trying to seek:
1027 - the file must be seekable.
1028 - before seeking to the specified position, make sure
1029 that the new position is in the current file.
1030 Try to do that by getting file's size using fstat.
1031 But that will work only for regular files. */
1033 if (fstat (fileno (in_stream
), &file_stats
) == 0)
1035 /* The st_size field is valid for regular files.
1036 If the number of bytes left to skip is larger than
1037 the size of the current file, we can decrement n_skip
1038 and go on to the next file. Skip this optimization also
1039 when st_size is no greater than the block size, because
1040 some kernels report nonsense small file sizes for
1041 proc-like file systems. */
1042 if (usable_st_size (&file_stats
)
1043 && ST_BLKSIZE (file_stats
) < file_stats
.st_size
)
1045 if ((uintmax_t) file_stats
.st_size
< n_skip
)
1046 n_skip
-= file_stats
.st_size
;
1049 if (fseeko (in_stream
, n_skip
, SEEK_CUR
) != 0)
1058 /* If it's not a regular file with nonnegative size,
1059 or if it's so small that it might be in a proc-like file system,
1060 position the file pointer by reading. */
1065 size_t n_bytes_read
, n_bytes_to_read
= BUFSIZ
;
1069 if (n_skip
< n_bytes_to_read
)
1070 n_bytes_to_read
= n_skip
;
1071 n_bytes_read
= fread (buf
, 1, n_bytes_to_read
, in_stream
);
1072 n_skip
-= n_bytes_read
;
1073 if (n_bytes_read
!= n_bytes_to_read
)
1075 if (ferror (in_stream
))
1082 if (feof (in_stream
))
1092 else /* cannot fstat() file */
1094 error (0, errno
, "%s", quotef (input_filename
));
1098 ok
&= check_and_close (in_errno
);
1100 ok
&= open_next_file ();
1104 die (EXIT_FAILURE
, 0, _("cannot skip past end of combined input"));
1110 format_address_none (uintmax_t address _GL_UNUSED
,
1116 format_address_std (uintmax_t address
, char c
)
1118 char buf
[MAX_ADDRESS_LENGTH
+ 2];
1119 char *p
= buf
+ sizeof buf
;
1124 pbound
= p
- address_pad_len
;
1126 /* Use a special case of the code for each base. This is measurably
1127 faster than generic code. */
1128 switch (address_base
)
1132 *--p
= '0' + (address
& 7);
1133 while ((address
>>= 3) != 0);
1138 *--p
= '0' + (address
% 10);
1139 while ((address
/= 10) != 0);
1144 *--p
= "0123456789abcdef"[address
& 15];
1145 while ((address
>>= 4) != 0);
1156 format_address_paren (uintmax_t address
, char c
)
1159 format_address_std (address
, ')');
1165 format_address_label (uintmax_t address
, char c
)
1167 format_address_std (address
, ' ');
1168 format_address_paren (address
+ pseudo_offset
, c
);
1171 /* Write N_BYTES bytes from CURR_BLOCK to standard output once for each
1172 of the N_SPEC format specs. CURRENT_OFFSET is the byte address of
1173 CURR_BLOCK in the concatenation of input files, and it is printed
1174 (optionally) only before the output line associated with the first
1175 format spec. When duplicate blocks are being abbreviated, the output
1176 for a sequence of identical input blocks is the output for the first
1177 block followed by an asterisk alone on a line. It is valid to compare
1178 the blocks PREV_BLOCK and CURR_BLOCK only when N_BYTES == BYTES_PER_BLOCK.
1179 That condition may be false only for the last input block. */
1182 write_block (uintmax_t current_offset
, size_t n_bytes
,
1183 const char *prev_block
, const char *curr_block
)
1185 static bool first
= true;
1186 static bool prev_pair_equal
= false;
1188 #define EQUAL_BLOCKS(b1, b2) (memcmp (b1, b2, bytes_per_block) == 0)
1190 if (abbreviate_duplicate_blocks
1191 && !first
&& n_bytes
== bytes_per_block
1192 && EQUAL_BLOCKS (prev_block
, curr_block
))
1194 if (prev_pair_equal
)
1196 /* The two preceding blocks were equal, and the current
1197 block is the same as the last one, so print nothing. */
1202 prev_pair_equal
= true;
1207 prev_pair_equal
= false;
1208 for (size_t i
= 0; i
< n_specs
; i
++)
1210 int datum_width
= width_bytes
[spec
[i
].size
];
1211 int fields_per_block
= bytes_per_block
/ datum_width
;
1212 int blank_fields
= (bytes_per_block
- n_bytes
) / datum_width
;
1214 format_address (current_offset
, '\0');
1216 printf ("%*s", address_pad_len
, "");
1217 (*spec
[i
].print_function
) (fields_per_block
, blank_fields
,
1218 curr_block
, spec
[i
].fmt_string
,
1219 spec
[i
].field_width
, spec
[i
].pad_width
);
1220 if (spec
[i
].hexl_mode_trailer
)
1222 /* space-pad out to full line width, then dump the trailer */
1223 int field_width
= spec
[i
].field_width
;
1224 int pad_width
= (spec
[i
].pad_width
* blank_fields
1225 / fields_per_block
);
1226 printf ("%*s", blank_fields
* field_width
+ pad_width
, "");
1227 dump_hexl_mode_trailer (n_bytes
, curr_block
);
1235 /* Read a single byte into *C from the concatenation of the input files
1236 named in the global array FILE_LIST. On the first call to this
1237 function, the global variable IN_STREAM is expected to be an open
1238 stream associated with the input file INPUT_FILENAME. If IN_STREAM
1239 is at end-of-file, close it and update the global variables IN_STREAM
1240 and INPUT_FILENAME so they correspond to the next file in the list.
1241 Then try to read a byte from the newly opened file. Repeat if
1242 necessary until EOF is reached for the last file in FILE_LIST, then
1243 set *C to EOF and return. Subsequent calls do likewise. Return
1244 true if successful. */
1253 while (in_stream
!= NULL
) /* EOF. */
1255 *c
= fgetc (in_stream
);
1260 ok
&= check_and_close (errno
);
1262 ok
&= open_next_file ();
1268 /* Read N bytes into BLOCK from the concatenation of the input files
1269 named in the global array FILE_LIST. On the first call to this
1270 function, the global variable IN_STREAM is expected to be an open
1271 stream associated with the input file INPUT_FILENAME. If all N
1272 bytes cannot be read from IN_STREAM, close IN_STREAM and update
1273 the global variables IN_STREAM and INPUT_FILENAME. Then try to
1274 read the remaining bytes from the newly opened file. Repeat if
1275 necessary until EOF is reached for the last file in FILE_LIST.
1276 On subsequent calls, don't modify BLOCK and return true. Set
1277 *N_BYTES_IN_BUFFER to the number of bytes read. If an error occurs,
1278 it will be detected through ferror when the stream is about to be
1279 closed. If there is an error, give a message but continue reading
1280 as usual and return false. Otherwise return true. */
1283 read_block (size_t n
, char *block
, size_t *n_bytes_in_buffer
)
1287 assert (0 < n
&& n
<= bytes_per_block
);
1289 *n_bytes_in_buffer
= 0;
1291 while (in_stream
!= NULL
) /* EOF. */
1296 n_needed
= n
- *n_bytes_in_buffer
;
1297 n_read
= fread (block
+ *n_bytes_in_buffer
, 1, n_needed
, in_stream
);
1299 *n_bytes_in_buffer
+= n_read
;
1301 if (n_read
== n_needed
)
1304 ok
&= check_and_close (errno
);
1306 ok
&= open_next_file ();
1312 /* Return the least common multiple of the sizes associated
1313 with the format specs. */
1315 static int _GL_ATTRIBUTE_PURE
1320 for (size_t i
= 0; i
< n_specs
; i
++)
1321 l_c_m
= lcm (l_c_m
, width_bytes
[spec
[i
].size
]);
1325 /* If S is a valid traditional offset specification with an optional
1326 leading '+' return true and set *OFFSET to the offset it denotes. */
1329 parse_old_offset (const char *s
, uintmax_t *offset
)
1336 /* Skip over any leading '+'. */
1340 /* Determine the radix we'll use to interpret S. If there is a '.',
1341 it's decimal, otherwise, if the string begins with '0X'or '0x',
1342 it's hexadecimal, else octal. */
1343 if (strchr (s
, '.') != NULL
)
1347 if (s
[0] == '0' && (s
[1] == 'x' || s
[1] == 'X'))
1353 return xstrtoumax (s
, NULL
, radix
, offset
, "Bb") == LONGINT_OK
;
1356 /* Read a chunk of size BYTES_PER_BLOCK from the input files, write the
1357 formatted block to standard output, and repeat until the specified
1358 maximum number of bytes has been read or until all input has been
1359 processed. If the last block read is smaller than BYTES_PER_BLOCK
1360 and its size is not a multiple of the size associated with a format
1361 spec, extend the input block with zero bytes until its length is a
1362 multiple of all format spec sizes. Write the final block. Finally,
1363 write on a line by itself the offset of the byte after the last byte
1364 read. Accumulate return values from calls to read_block and
1365 check_and_close, and if any was false, return false.
1366 Otherwise, return true. */
1372 uintmax_t current_offset
;
1375 size_t n_bytes_read
;
1377 block
[0] = xnmalloc (2, bytes_per_block
);
1378 block
[1] = block
[0] + bytes_per_block
;
1380 current_offset
= n_bytes_to_skip
;
1382 if (limit_bytes_to_format
)
1387 if (current_offset
>= end_offset
)
1392 n_needed
= MIN (end_offset
- current_offset
,
1393 (uintmax_t) bytes_per_block
);
1394 ok
&= read_block (n_needed
, block
[idx
], &n_bytes_read
);
1395 if (n_bytes_read
< bytes_per_block
)
1397 assert (n_bytes_read
== bytes_per_block
);
1398 write_block (current_offset
, n_bytes_read
,
1399 block
[!idx
], block
[idx
]);
1400 current_offset
+= n_bytes_read
;
1408 ok
&= read_block (bytes_per_block
, block
[idx
], &n_bytes_read
);
1409 if (n_bytes_read
< bytes_per_block
)
1411 assert (n_bytes_read
== bytes_per_block
);
1412 write_block (current_offset
, n_bytes_read
,
1413 block
[!idx
], block
[idx
]);
1414 current_offset
+= n_bytes_read
;
1419 if (n_bytes_read
> 0)
1422 size_t bytes_to_write
;
1426 /* Ensure zero-byte padding up to the smallest multiple of l_c_m that
1427 is at least as large as n_bytes_read. */
1428 bytes_to_write
= l_c_m
* ((n_bytes_read
+ l_c_m
- 1) / l_c_m
);
1430 memset (block
[idx
] + n_bytes_read
, 0, bytes_to_write
- n_bytes_read
);
1431 write_block (current_offset
, n_bytes_read
, block
[!idx
], block
[idx
]);
1432 current_offset
+= n_bytes_read
;
1435 format_address (current_offset
, '\n');
1437 if (limit_bytes_to_format
&& current_offset
>= end_offset
)
1438 ok
&= check_and_close (0);
1445 /* STRINGS mode. Find each "string constant" in the input.
1446 A string constant is a run of at least 'string_min' ASCII
1447 graphic (or formatting) characters terminated by a null.
1448 Based on a function written by Richard Stallman for a
1449 traditional version of od. Return true if successful. */
1454 size_t bufsize
= MAX (100, string_min
);
1455 char *buf
= xmalloc (bufsize
);
1456 uintmax_t address
= n_bytes_to_skip
;
1464 /* See if the next 'string_min' chars are all printing chars. */
1467 if (limit_bytes_to_format
1468 && (end_offset
< string_min
|| end_offset
- string_min
<= address
))
1471 for (i
= 0; i
< string_min
; i
++)
1473 ok
&= read_char (&c
);
1481 /* Found a non-printing. Try again starting with next char. */
1486 /* We found a run of 'string_min' printable characters.
1487 Now see if it is terminated with a null byte. */
1488 while (!limit_bytes_to_format
|| address
< end_offset
)
1492 buf
= X2REALLOC (buf
, &bufsize
);
1494 ok
&= read_char (&c
);
1502 break; /* It is; print this string. */
1504 goto tryline
; /* It isn't; give up on this string. */
1505 buf
[i
++] = c
; /* String continues; store it all. */
1508 /* If we get here, the string is all printable and null-terminated,
1509 so print it. It is all in 'buf' and 'i' is its length. */
1511 format_address (address
- i
- 1, ' ');
1513 for (i
= 0; (c
= buf
[i
]); i
++)
1518 fputs ("\\a", stdout
);
1522 fputs ("\\b", stdout
);
1526 fputs ("\\f", stdout
);
1530 fputs ("\\n", stdout
);
1534 fputs ("\\r", stdout
);
1538 fputs ("\\t", stdout
);
1542 fputs ("\\v", stdout
);
1552 /* We reach this point only if we search through
1553 (max_bytes_to_format - string_min) bytes before reaching EOF. */
1557 ok
&= check_and_close (0);
1562 main (int argc
, char **argv
)
1567 size_t desired_width
IF_LINT ( = 0);
1568 bool modern
= false;
1569 bool width_specified
= false;
1571 size_t width_per_block
= 0;
1572 static char const multipliers
[] = "bEGKkMmPTYZ0";
1574 /* The old-style 'pseudo starting address' to be printed in parentheses
1575 after any true address. */
1576 uintmax_t pseudo_start
IF_LINT ( = 0);
1578 initialize_main (&argc
, &argv
);
1579 set_program_name (argv
[0]);
1580 setlocale (LC_ALL
, "");
1581 bindtextdomain (PACKAGE
, LOCALEDIR
);
1582 textdomain (PACKAGE
);
1584 atexit (close_stdout
);
1586 for (i
= 0; i
<= MAX_INTEGRAL_TYPE_SIZE
; i
++)
1587 integral_type_size
[i
] = NO_SIZE
;
1589 integral_type_size
[sizeof (char)] = CHAR
;
1590 integral_type_size
[sizeof (short int)] = SHORT
;
1591 integral_type_size
[sizeof (int)] = INT
;
1592 integral_type_size
[sizeof (long int)] = LONG
;
1593 #if HAVE_UNSIGNED_LONG_LONG_INT
1594 /* If 'long int' and 'long long int' have the same size, it's fine
1595 to overwrite the entry for 'long' with this one. */
1596 integral_type_size
[sizeof (unsigned_long_long_int
)] = LONG_LONG
;
1599 for (i
= 0; i
<= MAX_FP_TYPE_SIZE
; i
++)
1600 fp_type_size
[i
] = NO_SIZE
;
1602 fp_type_size
[sizeof (float)] = FLOAT_SINGLE
;
1603 /* The array entry for 'double' is filled in after that for 'long double'
1604 so that if they are the same size, we avoid any overhead of
1605 long double computation in libc. */
1606 fp_type_size
[sizeof (long double)] = FLOAT_LONG_DOUBLE
;
1607 fp_type_size
[sizeof (double)] = FLOAT_DOUBLE
;
1610 n_specs_allocated
= 0;
1613 format_address
= format_address_std
;
1615 address_pad_len
= 7;
1616 flag_dump_strings
= false;
1621 enum strtol_error s_err
;
1623 int c
= getopt_long (argc
, argv
, short_options
, long_options
, &oi
);
1634 format_address
= format_address_std
;
1636 address_pad_len
= 7;
1639 format_address
= format_address_std
;
1641 address_pad_len
= 7;
1644 format_address
= format_address_std
;
1646 address_pad_len
= 6;
1649 format_address
= format_address_none
;
1650 address_pad_len
= 0;
1653 die (EXIT_FAILURE
, 0,
1654 _("invalid output address radix '%c';\
1655 it must be one character from [doxn]"),
1663 s_err
= xstrtoumax (optarg
, NULL
, 0, &n_bytes_to_skip
, multipliers
);
1664 if (s_err
!= LONGINT_OK
)
1665 xstrtol_fatal (s_err
, oi
, c
, long_options
, optarg
);
1670 limit_bytes_to_format
= true;
1672 s_err
= xstrtoumax (optarg
, NULL
, 0, &max_bytes_to_format
,
1674 if (s_err
!= LONGINT_OK
)
1675 xstrtol_fatal (s_err
, oi
, c
, long_options
, optarg
);
1684 s_err
= xstrtoumax (optarg
, NULL
, 0, &tmp
, multipliers
);
1685 if (s_err
!= LONGINT_OK
)
1686 xstrtol_fatal (s_err
, oi
, c
, long_options
, optarg
);
1688 /* The minimum string length may be no larger than SIZE_MAX,
1689 since we may allocate a buffer of this size. */
1691 die (EXIT_FAILURE
, 0, _("%s is too large"), quote (optarg
));
1695 flag_dump_strings
= true;
1700 ok
&= decode_format_string (optarg
);
1705 abbreviate_duplicate_blocks
= false;
1708 case TRADITIONAL_OPTION
:
1713 switch (XARGMATCH ("--endian", optarg
, endian_args
, endian_types
))
1716 input_swap
= ! WORDS_BIGENDIAN
;
1719 input_swap
= WORDS_BIGENDIAN
;
1724 /* The next several cases map the traditional format
1725 specification options to the corresponding modern format
1726 specs. GNU od accepts any combination of old- and
1727 new-style options. Format specification options accumulate.
1728 The obsolescent and undocumented formats are compatible
1729 with FreeBSD 4.10 od. */
1731 #define CASE_OLD_ARG(old_char,new_string) \
1733 ok &= decode_format_string (new_string); \
1736 CASE_OLD_ARG ('a', "a");
1737 CASE_OLD_ARG ('b', "o1");
1738 CASE_OLD_ARG ('c', "c");
1739 CASE_OLD_ARG ('D', "u4"); /* obsolescent and undocumented */
1740 CASE_OLD_ARG ('d', "u2");
1741 case 'F': /* obsolescent and undocumented alias */
1742 CASE_OLD_ARG ('e', "fD"); /* obsolescent and undocumented */
1743 CASE_OLD_ARG ('f', "fF");
1744 case 'X': /* obsolescent and undocumented alias */
1745 CASE_OLD_ARG ('H', "x4"); /* obsolescent and undocumented */
1746 CASE_OLD_ARG ('i', "dI");
1747 case 'I': case 'L': /* obsolescent and undocumented aliases */
1748 CASE_OLD_ARG ('l', "dL");
1749 CASE_OLD_ARG ('O', "o4"); /* obsolesent and undocumented */
1750 case 'B': /* obsolescent and undocumented alias */
1751 CASE_OLD_ARG ('o', "o2");
1752 CASE_OLD_ARG ('s', "d2");
1753 case 'h': /* obsolescent and undocumented alias */
1754 CASE_OLD_ARG ('x', "x2");
1760 width_specified
= true;
1768 s_err
= xstrtoumax (optarg
, NULL
, 10, &w_tmp
, "");
1769 if (s_err
!= LONGINT_OK
)
1770 xstrtol_fatal (s_err
, oi
, c
, long_options
, optarg
);
1771 if (SIZE_MAX
< w_tmp
)
1772 die (EXIT_FAILURE
, 0, _("%s is too large"), quote (optarg
));
1773 desired_width
= w_tmp
;
1777 case_GETOPT_HELP_CHAR
;
1779 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
1782 usage (EXIT_FAILURE
);
1788 return EXIT_FAILURE
;
1790 if (flag_dump_strings
&& n_specs
> 0)
1791 die (EXIT_FAILURE
, 0,
1792 _("no type may be specified when dumping strings"));
1794 n_files
= argc
- optind
;
1796 /* If the --traditional option is used, there may be from
1797 0 to 3 remaining command line arguments; handle each case
1799 od [file] [[+]offset[.][b] [[+]label[.][b]]]
1800 The offset and label have the same syntax.
1802 If --traditional is not given, and if no modern options are
1803 given, and if the offset begins with + or (if there are two
1804 operands) a digit, accept only this form, as per POSIX:
1805 od [file] [[+]offset[.][b]]
1808 if (!modern
|| traditional
)
1816 if ((traditional
|| argv
[optind
][0] == '+')
1817 && parse_old_offset (argv
[optind
], &o1
))
1819 n_bytes_to_skip
= o1
;
1826 if ((traditional
|| argv
[optind
+ 1][0] == '+'
1827 || ISDIGIT (argv
[optind
+ 1][0]))
1828 && parse_old_offset (argv
[optind
+ 1], &o2
))
1830 if (traditional
&& parse_old_offset (argv
[optind
], &o1
))
1832 n_bytes_to_skip
= o1
;
1833 flag_pseudo_start
= true;
1840 n_bytes_to_skip
= o2
;
1842 argv
[optind
+ 1] = argv
[optind
];
1850 && parse_old_offset (argv
[optind
+ 1], &o1
)
1851 && parse_old_offset (argv
[optind
+ 2], &o2
))
1853 n_bytes_to_skip
= o1
;
1854 flag_pseudo_start
= true;
1856 argv
[optind
+ 2] = argv
[optind
];
1863 if (traditional
&& 1 < n_files
)
1865 error (0, 0, _("extra operand %s"), quote (argv
[optind
+ 1]));
1867 _("compatibility mode supports at most one file"));
1868 usage (EXIT_FAILURE
);
1872 if (flag_pseudo_start
)
1874 if (format_address
== format_address_none
)
1877 address_pad_len
= 7;
1878 format_address
= format_address_paren
;
1881 format_address
= format_address_label
;
1884 if (limit_bytes_to_format
)
1886 end_offset
= n_bytes_to_skip
+ max_bytes_to_format
;
1887 if (end_offset
< n_bytes_to_skip
)
1888 die (EXIT_FAILURE
, 0, _("skip-bytes + read-bytes is too large"));
1892 decode_format_string ("oS");
1896 /* Set the global pointer FILE_LIST so that it
1897 references the first file-argument on the command-line. */
1899 file_list
= (char const *const *) &argv
[optind
];
1903 /* No files were listed on the command line.
1904 Set the global pointer FILE_LIST so that it
1905 references the null-terminated list of one name: "-". */
1907 file_list
= default_file_list
;
1910 /* open the first input file */
1911 ok
= open_next_file ();
1912 if (in_stream
== NULL
)
1915 /* skip over any unwanted header bytes */
1916 ok
&= skip (n_bytes_to_skip
);
1917 if (in_stream
== NULL
)
1920 pseudo_offset
= (flag_pseudo_start
? pseudo_start
- n_bytes_to_skip
: 0);
1922 /* Compute output block length. */
1925 if (width_specified
)
1927 if (desired_width
!= 0 && desired_width
% l_c_m
== 0)
1928 bytes_per_block
= desired_width
;
1931 error (0, 0, _("warning: invalid width %lu; using %d instead"),
1932 (unsigned long int) desired_width
, l_c_m
);
1933 bytes_per_block
= l_c_m
;
1938 if (l_c_m
< DEFAULT_BYTES_PER_BLOCK
)
1939 bytes_per_block
= l_c_m
* (DEFAULT_BYTES_PER_BLOCK
/ l_c_m
);
1941 bytes_per_block
= l_c_m
;
1944 /* Compute padding necessary to align output block. */
1945 for (i
= 0; i
< n_specs
; i
++)
1947 int fields_per_block
= bytes_per_block
/ width_bytes
[spec
[i
].size
];
1948 int block_width
= (spec
[i
].field_width
+ 1) * fields_per_block
;
1949 if (width_per_block
< block_width
)
1950 width_per_block
= block_width
;
1952 for (i
= 0; i
< n_specs
; i
++)
1954 int fields_per_block
= bytes_per_block
/ width_bytes
[spec
[i
].size
];
1955 int block_width
= spec
[i
].field_width
* fields_per_block
;
1956 spec
[i
].pad_width
= width_per_block
- block_width
;
1960 printf ("lcm=%d, width_per_block=%"PRIuMAX
"\n", l_c_m
,
1961 (uintmax_t) width_per_block
);
1962 for (i
= 0; i
< n_specs
; i
++)
1964 int fields_per_block
= bytes_per_block
/ width_bytes
[spec
[i
].size
];
1965 assert (bytes_per_block
% width_bytes
[spec
[i
].size
] == 0);
1966 assert (1 <= spec
[i
].pad_width
/ fields_per_block
);
1967 printf ("%d: fmt=\"%s\" in_width=%d out_width=%d pad=%d\n",
1968 i
, spec
[i
].fmt_string
, width_bytes
[spec
[i
].size
],
1969 spec
[i
].field_width
, spec
[i
].pad_width
);
1973 ok
&= (flag_dump_strings
? dump_strings () : dump ());
1977 if (have_read_stdin
&& fclose (stdin
) == EOF
)
1978 die (EXIT_FAILURE
, errno
, _("standard input"));
1980 return ok
? EXIT_SUCCESS
: EXIT_FAILURE
;