1 /* od -- dump files in octal and other formats
2 Copyright (C) 1992-2024 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. */
25 #include <sys/types.h>
31 #include "stat-size.h"
32 #include "xbinary-io.h"
35 #include "xstrtol-error.h"
37 /* The official name of this program (e.g., no 'g' prefix). */
38 #define PROGRAM_NAME "od"
40 #define AUTHORS proper_name ("Jim Meyering")
42 /* The default number of input bytes per output line. */
43 #define DEFAULT_BYTES_PER_BLOCK 16
45 #if HAVE_UNSIGNED_LONG_LONG_INT
46 typedef unsigned long long int unsigned_long_long_int
;
48 /* This is just a place-holder to avoid a few '#if' directives.
49 In this case, the type isn't actually used. */
50 typedef unsigned long int unsigned_long_long_int
;
54 /* Available since clang 6 (2018), and gcc 7 (2017). */
55 typedef _Float16 float16
;
57 # define FLOAT16_SUPPORTED 0
58 /* This is just a place-holder to avoid a few '#if' directives.
59 In this case, the type isn't actually used. */
60 typedef float float16
;
64 /* Available since clang 11 (2020), and gcc 13 (2023). */
65 typedef __bf16 bfloat16
;
67 # define BF16_SUPPORTED 0
68 /* This is just a place-holder to avoid a few '#if' directives.
69 In this case, the type isn't actually used. */
70 typedef float bfloat16
;
81 /* FIXME: add INTMAX support, too */
102 #define MAX_INTEGRAL_TYPE_SIZE sizeof (unsigned_long_long_int)
104 /* The maximum number of bytes needed for a format string, including
105 the trailing nul. Each format string expects a variable amount of
106 padding (guaranteed to be at least 1 plus the field width), then an
107 element that will be formatted in the field. */
110 FMT_BYTES_ALLOCATED
=
119 /* Ensure that our choice for FMT_BYTES_ALLOCATED is reasonable. */
120 static_assert (MAX_INTEGRAL_TYPE_SIZE
* CHAR_BIT
/ 3 <= 99);
122 /* Each output format specification (from '-t spec' or from
123 old-style options) is represented by one of these structures. */
126 enum output_format fmt
;
127 enum size_spec size
; /* Type of input object. */
128 /* FIELDS is the number of fields per line, BLANK is the number of
129 fields to leave blank. WIDTH is width of one field, excluding
130 leading space, and PAD is total pad to divide among FIELDS.
131 PAD is at least as large as FIELDS. */
132 void (*print_function
) (size_t fields
, size_t blank
, void const *data
,
133 char const *fmt
, int width
, int pad
);
134 char fmt_string
[FMT_BYTES_ALLOCATED
]; /* Of the style "%*d". */
135 bool hexl_mode_trailer
;
136 int field_width
; /* Minimum width of a field, excluding leading space. */
137 int pad_width
; /* Total padding to be divided among fields. */
140 /* Convert the number of 8-bit bytes of a binary representation to
141 the number of characters (digits + sign if the type is signed)
142 required to represent the same quantity in the specified base/type.
143 For example, a 32-bit (4-byte) quantity may require a field width
144 as wide as the following for these types:
148 8 unsigned hexadecimal */
150 static char const bytes_to_oct_digits
[] =
151 {0, 3, 6, 8, 11, 14, 16, 19, 22, 25, 27, 30, 32, 35, 38, 41, 43};
153 static char const bytes_to_signed_dec_digits
[] =
154 {1, 4, 6, 8, 11, 13, 16, 18, 20, 23, 25, 28, 30, 33, 35, 37, 40};
156 static char const bytes_to_unsigned_dec_digits
[] =
157 {0, 3, 5, 8, 10, 13, 15, 17, 20, 22, 25, 27, 29, 32, 34, 37, 39};
159 static char const bytes_to_hex_digits
[] =
160 {0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32};
162 /* It'll be a while before we see integral types wider than 16 bytes,
163 but if/when it happens, this check will catch it. Without this check,
164 a wider type would provoke a buffer overrun. */
165 static_assert (MAX_INTEGRAL_TYPE_SIZE
166 < ARRAY_CARDINALITY (bytes_to_hex_digits
));
168 /* Make sure the other arrays have the same length. */
169 static_assert (sizeof bytes_to_oct_digits
== sizeof bytes_to_signed_dec_digits
);
170 static_assert (sizeof bytes_to_oct_digits
171 == sizeof bytes_to_unsigned_dec_digits
);
172 static_assert (sizeof bytes_to_oct_digits
== sizeof bytes_to_hex_digits
);
174 /* Convert enum size_spec to the size of the named type. */
175 static const int width_bytes
[] =
182 sizeof (unsigned_long_long_int
),
193 /* Ensure that for each member of 'enum size_spec' there is an
194 initializer in the width_bytes array. */
195 static_assert (ARRAY_CARDINALITY (width_bytes
) == N_SIZE_SPECS
);
197 /* Names for some non-printing characters. */
198 static char const charname
[33][4] =
200 "nul", "soh", "stx", "etx", "eot", "enq", "ack", "bel",
201 "bs", "ht", "nl", "vt", "ff", "cr", "so", "si",
202 "dle", "dc1", "dc2", "dc3", "dc4", "nak", "syn", "etb",
203 "can", "em", "sub", "esc", "fs", "gs", "rs", "us",
207 /* Address base (8, 10 or 16). */
208 static int address_base
;
210 /* The number of octal digits required to represent the largest
212 #define MAX_ADDRESS_LENGTH \
213 ((sizeof (uintmax_t) * CHAR_BIT + CHAR_BIT - 1) / 3)
215 /* Width of a normal address. */
216 static int address_pad_len
;
218 /* Minimum length when detecting --strings. */
219 static size_t string_min
;
221 /* True when in --strings mode. */
222 static bool flag_dump_strings
;
224 /* True if we should recognize the older non-option arguments
225 that specified at most one file and optional arguments specifying
226 offset and pseudo-start address. */
227 static bool traditional
;
229 /* True if an old-style 'pseudo-address' was specified. */
230 static bool flag_pseudo_start
;
232 /* The difference between the old-style pseudo starting address and
233 the number of bytes to skip. */
234 static uintmax_t pseudo_offset
;
236 /* Function that accepts an address and an optional following char,
237 and prints the address and char to stdout. */
238 static void (*format_address
) (uintmax_t, char);
240 /* The number of input bytes to skip before formatting and writing. */
241 static uintmax_t n_bytes_to_skip
= 0;
243 /* When false, MAX_BYTES_TO_FORMAT and END_OFFSET are ignored, and all
244 input is formatted. */
245 static bool limit_bytes_to_format
= false;
247 /* The maximum number of bytes that will be formatted. */
248 static uintmax_t max_bytes_to_format
;
250 /* The offset of the first byte after the last byte to be formatted. */
251 static uintmax_t end_offset
;
253 /* When true and two or more consecutive blocks are equal, format
254 only the first block and output an asterisk alone on the following
255 line to indicate that identical blocks have been elided. */
256 static bool abbreviate_duplicate_blocks
= true;
258 /* An array of specs describing how to format each input block. */
259 static struct tspec
*spec
;
261 /* The number of format specs. */
262 static size_t n_specs
;
264 /* The allocated length of SPEC. */
265 static size_t n_specs_allocated
;
267 /* The number of input bytes formatted per output line. It must be
268 a multiple of the least common multiple of the sizes associated with
269 the specified output types. It should be as large as possible, but
270 no larger than 16 -- unless specified with the -w option. */
271 static size_t bytes_per_block
;
273 /* Human-readable representation of *file_list (for error messages).
274 It differs from file_list[-1] only when file_list[-1] is "-". */
275 static char const *input_filename
;
277 /* A null-terminated list of the file-arguments from the command line. */
278 static char const *const *file_list
;
280 /* Initializer for file_list if no file-arguments
281 were specified on the command line. */
282 static char const *const default_file_list
[] = {"-", nullptr};
284 /* The input stream associated with the current file. */
285 static FILE *in_stream
;
287 /* If true, at least one of the files we read was standard input. */
288 static bool have_read_stdin
;
290 /* Map the size in bytes to a type identifier. */
291 static enum size_spec integral_type_size
[MAX_INTEGRAL_TYPE_SIZE
+ 1];
293 #define MAX_FP_TYPE_SIZE sizeof (long double)
294 static enum size_spec fp_type_size
[MAX_FP_TYPE_SIZE
+ 1];
296 #ifndef WORDS_BIGENDIAN
297 # define WORDS_BIGENDIAN 0
300 /* Use native endianness by default. */
301 static bool input_swap
;
303 static char const short_options
[] = "A:aBbcDdeFfHhIij:LlN:OoS:st:vw::Xx";
305 /* For long options that have no equivalent short option, use a
306 non-character as a pseudo short option, starting with CHAR_MAX + 1. */
309 TRADITIONAL_OPTION
= CHAR_MAX
+ 1,
319 static char const *const endian_args
[] =
321 "little", "big", nullptr
324 static enum endian_type
const endian_types
[] =
326 endian_little
, endian_big
329 static struct option
const long_options
[] =
331 {"skip-bytes", required_argument
, nullptr, 'j'},
332 {"address-radix", required_argument
, nullptr, 'A'},
333 {"read-bytes", required_argument
, nullptr, 'N'},
334 {"format", required_argument
, nullptr, 't'},
335 {"output-duplicates", no_argument
, nullptr, 'v'},
336 {"strings", optional_argument
, nullptr, 'S'},
337 {"traditional", no_argument
, nullptr, TRADITIONAL_OPTION
},
338 {"width", optional_argument
, nullptr, 'w'},
339 {"endian", required_argument
, nullptr, ENDIAN_OPTION
},
341 {GETOPT_HELP_OPTION_DECL
},
342 {GETOPT_VERSION_OPTION_DECL
},
343 {nullptr, 0, nullptr, 0}
349 if (status
!= EXIT_SUCCESS
)
354 Usage: %s [OPTION]... [FILE]...\n\
355 or: %s [-abcdfilosx]... [FILE] [[+]OFFSET[.][b]]\n\
356 or: %s --traditional [OPTION]... [FILE] [[+]OFFSET[.][b] [+][LABEL][.][b]]\n\
358 program_name
, program_name
, program_name
);
360 Write an unambiguous representation, octal bytes by default,\n\
361 of FILE to standard output. With more than one FILE argument,\n\
362 concatenate them in the listed order to form the input.\n\
369 If first and second call formats both apply, the second format is assumed\n\
370 if the last operand begins with + or (if there are 2 operands) a digit.\n\
371 An OFFSET operand means -j OFFSET. LABEL is the pseudo-address\n\
372 at first byte printed, incremented when dump is progressing.\n\
373 For OFFSET and LABEL, a 0x or 0X prefix indicates hexadecimal;\n\
374 suffixes may be . for octal and b for multiply by 512.\n\
377 emit_mandatory_arg_note ();
380 -A, --address-radix=RADIX output format for file offsets; RADIX is one\n\
381 of [doxn], for Decimal, Octal, Hex or None\n\
382 --endian={big|little} swap input bytes according the specified order\n\
383 -j, --skip-bytes=BYTES skip BYTES input bytes first\n\
386 -N, --read-bytes=BYTES limit dump to BYTES input bytes\n\
387 -S BYTES, --strings[=BYTES] show only NUL terminated strings\n\
388 of at least BYTES (3) printable characters\n\
389 -t, --format=TYPE select output format or formats\n\
390 -v, --output-duplicates do not use * to mark line suppression\n\
391 -w[BYTES], --width[=BYTES] output BYTES bytes per output line;\n\
392 32 is implied when BYTES is not specified\n\
393 --traditional accept arguments in third form above\n\
395 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
396 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
400 Traditional format specifications may be intermixed; they accumulate:\n\
401 -a same as -t a, select named characters, ignoring high-order bit\n\
402 -b same as -t o1, select octal bytes\n\
403 -c same as -t c, select printable characters or backslash escapes\n\
404 -d same as -t u2, select unsigned decimal 2-byte units\n\
407 -f same as -t fF, select floats\n\
408 -i same as -t dI, select decimal ints\n\
409 -l same as -t dL, select decimal longs\n\
410 -o same as -t o2, select octal 2-byte units\n\
411 -s same as -t d2, select decimal 2-byte units\n\
412 -x same as -t x2, select hexadecimal 2-byte units\n\
417 TYPE is made up of one or more of these specifications:\n\
418 a named character, ignoring high-order bit\n\
419 c printable character or backslash escape\n\
422 d[SIZE] signed decimal, SIZE bytes per integer\n\
423 f[SIZE] floating point, SIZE bytes per float\n\
424 o[SIZE] octal, SIZE bytes per integer\n\
425 u[SIZE] unsigned decimal, SIZE bytes per integer\n\
426 x[SIZE] hexadecimal, SIZE bytes per integer\n\
430 SIZE is a number. For TYPE in [doux], SIZE may also be C for\n\
431 sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n\
432 sizeof(long). If TYPE is f, SIZE may also be B for Brain 16 bit,\n\
433 H for Half precision float, F for sizeof(float), D for sizeof(double),\n\
434 or L for sizeof(long double).\n\
438 Adding a z suffix to any type displays printable characters at the end of\n\
444 BYTES is hex with 0x or 0X prefix, and may have a multiplier suffix:\n\
450 and so on for G, T, P, E, Z, Y, R, Q.\n\
451 Binary prefixes can be used, too: KiB=K, MiB=M, and so on.\n\
453 emit_ancillary_info (PROGRAM_NAME
);
458 /* Define the print functions. */
460 #define PRINT_FIELDS(N, T, FMT_STRING_DECL, ACTION) \
462 N (size_t fields, size_t blank, void const *block, \
463 FMT_STRING_DECL, int width, int pad) \
465 T const *p = block; \
467 int pad_remaining = pad; \
468 for (i = fields; blank < i; i--) \
470 int next_pad = pad * (i - 1) / fields; \
471 int adjusted_width = pad_remaining - next_pad + width; \
473 if (input_swap && sizeof (T) > 1) \
478 char b[sizeof (T)]; \
480 for (j = 0; j < sizeof (T); j++) \
481 u.b[j] = ((char const *) p)[sizeof (T) - 1 - j]; \
488 pad_remaining = next_pad; \
492 #define PRINT_TYPE(N, T) \
493 PRINT_FIELDS (N, T, char const *fmt_string, \
494 xprintf (fmt_string, adjusted_width, x))
496 #define PRINT_FLOATTYPE(N, T, FTOASTR, BUFSIZE) \
497 PRINT_FIELDS (N, T, MAYBE_UNUSED char const *fmt_string, \
499 FTOASTR (buf, sizeof buf, 0, 0, x); \
500 xprintf ("%*s", adjusted_width, buf))
502 PRINT_TYPE (print_s_char
, signed char)
503 PRINT_TYPE (print_char
, unsigned char)
504 PRINT_TYPE (print_s_short
, short int)
505 PRINT_TYPE (print_short
, unsigned short int)
506 PRINT_TYPE (print_int
, unsigned int)
507 PRINT_TYPE (print_long
, unsigned long int)
508 PRINT_TYPE (print_long_long
, unsigned_long_long_int
)
510 PRINT_FLOATTYPE (print_bfloat
, bfloat16
, ftoastr
, FLT_BUFSIZE_BOUND
)
511 PRINT_FLOATTYPE (print_halffloat
, float16
, ftoastr
, FLT_BUFSIZE_BOUND
)
512 PRINT_FLOATTYPE (print_float
, float, ftoastr
, FLT_BUFSIZE_BOUND
)
513 PRINT_FLOATTYPE (print_double
, double, dtoastr
, DBL_BUFSIZE_BOUND
)
514 PRINT_FLOATTYPE (print_long_double
, long double, ldtoastr
, LDBL_BUFSIZE_BOUND
)
517 #undef PRINT_FLOATTYPE
520 dump_hexl_mode_trailer (size_t n_bytes
, char const *block
)
522 fputs (" >", stdout
);
523 for (size_t i
= n_bytes
; i
> 0; i
--)
525 unsigned char c
= *block
++;
526 unsigned char c2
= (isprint (c
) ? c
: '.');
533 print_named_ascii (size_t fields
, size_t blank
, void const *block
,
534 MAYBE_UNUSED
char const *unused_fmt_string
,
537 unsigned char const *p
= block
;
539 int pad_remaining
= pad
;
540 for (i
= fields
; blank
< i
; i
--)
542 int next_pad
= pad
* (i
- 1) / fields
;
543 int masked_c
= *p
++ & 0x7f;
549 else if (masked_c
<= 040)
550 s
= charname
[masked_c
];
558 xprintf ("%*s", pad_remaining
- next_pad
+ width
, s
);
559 pad_remaining
= next_pad
;
564 print_ascii (size_t fields
, size_t blank
, void const *block
,
565 MAYBE_UNUSED
char const *unused_fmt_string
, int width
,
568 unsigned char const *p
= block
;
570 int pad_remaining
= pad
;
571 for (i
= fields
; blank
< i
; i
--)
573 int next_pad
= pad
* (i
- 1) / fields
;
574 unsigned char c
= *p
++;
613 sprintf (buf
, (isprint (c
) ? "%c" : "%03o"), c
);
617 xprintf ("%*s", pad_remaining
- next_pad
+ width
, s
);
618 pad_remaining
= next_pad
;
622 /* Convert a null-terminated (possibly zero-length) string S to an
623 int value. If S points to a non-digit set *P to S,
624 *VAL to 0, and return true. Otherwise, accumulate the integer value of
625 the string of digits. If the string of digits represents a value
626 larger than INT_MAX, don't modify *VAL or *P and return false.
627 Otherwise, advance *P to the first non-digit after S, set *VAL to
628 the result of the conversion and return true. */
631 simple_strtoi (char const *s
, char const **p
, int *val
)
635 for (sum
= 0; ISDIGIT (*s
); s
++)
636 if (ckd_mul (&sum
, sum
, 10) || ckd_add (&sum
, sum
, *s
- '0'))
643 /* If S points to a single valid modern od format string, put
644 a description of that format in *TSPEC, make *NEXT point at the
645 character following the just-decoded format (if *NEXT is non-null),
646 and return true. If S is not valid, don't modify *NEXT or *TSPEC,
647 give a diagnostic, and return false. For example, if S were
648 "d4afL" *NEXT would be set to "afL" and *TSPEC would be
650 fmt = SIGNED_DECIMAL;
651 size = INT or LONG; (whichever integral_type_size[4] resolves to)
652 print_function = print_int; (assuming size == INT)
656 pad_width is determined later, but is at least as large as the
657 number of fields printed per row.
658 S_ORIG is solely for reporting errors. It should be the full format
662 static bool ATTRIBUTE_NONNULL ()
663 decode_one_format (char const *s_orig
, char const *s
, char const **next
,
666 enum size_spec size_spec
;
668 enum output_format fmt
;
669 void (*print_function
) (size_t, size_t, void const *, char const *,
687 size
= sizeof (char);
692 size
= sizeof (short int);
702 size
= sizeof (long int);
706 if (! simple_strtoi (s
, &p
, &size
))
708 /* The integer at P in S would overflow an int.
709 A digit string that long is sufficiently odd looking
710 that the following diagnostic is sufficient. */
711 error (0, 0, _("invalid type string %s"), quote (s_orig
));
718 if (MAX_INTEGRAL_TYPE_SIZE
< size
719 || integral_type_size
[size
] == NO_SIZE
)
721 error (0, 0, _("invalid type string %s;\nthis system"
722 " doesn't provide a %d-byte integral type"),
723 quote (s_orig
), size
);
731 #define ISPEC_TO_FORMAT(Spec, Min_format, Long_format, Max_format) \
732 ((Spec) == LONG_LONG ? (Max_format) \
733 : ((Spec) == LONG ? (Long_format) \
736 size_spec = integral_type_size[size];
741 fmt
= SIGNED_DECIMAL
;
742 field_width
= bytes_to_signed_dec_digits
[size
];
743 sprintf (tspec
->fmt_string
, "%%*%s",
744 ISPEC_TO_FORMAT (size_spec
, "d", "ld", "jd"));
749 sprintf (tspec
->fmt_string
, "%%*.%d%s",
750 (field_width
= bytes_to_oct_digits
[size
]),
751 ISPEC_TO_FORMAT (size_spec
, "o", "lo", "jo"));
755 fmt
= UNSIGNED_DECIMAL
;
756 field_width
= bytes_to_unsigned_dec_digits
[size
];
757 sprintf (tspec
->fmt_string
, "%%*%s",
758 ISPEC_TO_FORMAT (size_spec
, "u", "lu", "ju"));
763 sprintf (tspec
->fmt_string
, "%%*.%d%s",
764 (field_width
= bytes_to_hex_digits
[size
]),
765 ISPEC_TO_FORMAT (size_spec
, "x", "lx", "jx"));
775 print_function
= (fmt
== SIGNED_DECIMAL
781 print_function
= (fmt
== SIGNED_DECIMAL
787 print_function
= print_int
;
791 print_function
= print_long
;
795 print_function
= print_long_long
;
804 fmt
= FLOATING_POINT
;
810 fmt
= BFLOATING_POINT
;
811 size
= sizeof (bfloat16
);
816 fmt
= HFLOATING_POINT
;
817 size
= sizeof (float16
);
822 size
= sizeof (float);
827 size
= sizeof (double);
832 size
= sizeof (long double);
836 if (! simple_strtoi (s
, &p
, &size
))
838 /* The integer at P in S would overflow an int.
839 A digit string that long is sufficiently odd looking
840 that the following diagnostic is sufficient. */
841 error (0, 0, _("invalid type string %s"), quote (s_orig
));
845 size
= sizeof (double);
848 if (size
> MAX_FP_TYPE_SIZE
849 || fp_type_size
[size
] == NO_SIZE
850 || (! FLOAT16_SUPPORTED
&& BF16_SUPPORTED
851 && size
== sizeof (bfloat16
))
855 _("invalid type string %s;\n"
856 "this system doesn't provide a %d-byte"
857 " floating point type"),
858 quote (s_orig
), size
);
865 size_spec
= fp_type_size
[size
];
867 if ((! FLOAT16_SUPPORTED
&& fmt
== HFLOATING_POINT
)
868 || (! BF16_SUPPORTED
&& fmt
== BFLOATING_POINT
))
871 _("this system doesn't provide a %s floating point type"),
877 struct lconv
const *locale
= localeconv ();
878 size_t decimal_point_len
=
879 (locale
->decimal_point
[0] ? strlen (locale
->decimal_point
) : 1);
884 print_function
= fmt
== BFLOATING_POINT
885 ? print_bfloat
: print_halffloat
;
886 field_width
= FLT_STRLEN_BOUND_L (decimal_point_len
);
890 print_function
= print_float
;
891 field_width
= FLT_STRLEN_BOUND_L (decimal_point_len
);
895 print_function
= print_double
;
896 field_width
= DBL_STRLEN_BOUND_L (decimal_point_len
);
899 case FLOAT_LONG_DOUBLE
:
900 print_function
= print_long_double
;
901 field_width
= LDBL_STRLEN_BOUND_L (decimal_point_len
);
913 fmt
= NAMED_CHARACTER
;
915 print_function
= print_named_ascii
;
923 print_function
= print_ascii
;
928 error (0, 0, _("invalid character '%c' in type string %s"),
933 tspec
->size
= size_spec
;
935 tspec
->print_function
= print_function
;
937 tspec
->field_width
= field_width
;
938 tspec
->hexl_mode_trailer
= (*s
== 'z');
939 if (tspec
->hexl_mode_trailer
)
946 /* Given a list of one or more input filenames FILE_LIST, set the global
947 file pointer IN_STREAM and the global string INPUT_FILENAME to the
948 first one that can be successfully opened. Modify FILE_LIST to
949 reference the next filename in the list. A file name of "-" is
950 interpreted as standard input. If any file open fails, give an error
951 message and return false. */
954 open_next_file (void)
960 input_filename
= *file_list
;
961 if (input_filename
== nullptr)
965 if (STREQ (input_filename
, "-"))
967 input_filename
= _("standard input");
969 have_read_stdin
= true;
970 xset_binary_mode (STDIN_FILENO
, O_BINARY
);
974 in_stream
= fopen (input_filename
, (O_BINARY
? "rb" : "r"));
975 if (in_stream
== nullptr)
977 error (0, errno
, "%s", quotef (input_filename
));
982 while (in_stream
== nullptr);
984 if (limit_bytes_to_format
&& !flag_dump_strings
)
985 setvbuf (in_stream
, nullptr, _IONBF
, 0);
990 /* Test whether there have been errors on in_stream, and close it if
991 it is not standard input. Return false if there has been an error
992 on in_stream or stdout; return true otherwise. This function will
993 report more than one error only if both a read and a write error
994 have occurred. IN_ERRNO, if nonzero, is the error number
995 corresponding to the most recent action for IN_STREAM. */
998 check_and_close (int in_errno
)
1002 if (in_stream
!= nullptr)
1004 if (!ferror (in_stream
))
1006 if (STREQ (file_list
[-1], "-"))
1007 clearerr (in_stream
);
1008 else if (fclose (in_stream
) != 0 && !in_errno
)
1012 error (0, in_errno
, "%s", quotef (input_filename
));
1016 in_stream
= nullptr;
1019 if (ferror (stdout
))
1021 error (0, 0, _("write error"));
1028 /* Decode the modern od format string S. Append the decoded
1029 representation to the global array SPEC, reallocating SPEC if
1030 necessary. Return true if S is valid. */
1032 static bool ATTRIBUTE_NONNULL ()
1033 decode_format_string (char const *s
)
1035 char const *s_orig
= s
;
1041 if (n_specs_allocated
<= n_specs
)
1042 spec
= X2NREALLOC (spec
, &n_specs_allocated
);
1044 if (! decode_one_format (s_orig
, s
, &next
, &spec
[n_specs
]))
1055 /* Given a list of one or more input filenames FILE_LIST, set the global
1056 file pointer IN_STREAM to position N_SKIP in the concatenation of
1057 those files. If any file operation fails or if there are fewer than
1058 N_SKIP bytes in the combined input, give an error message and return
1059 false. When possible, use seek rather than read operations to
1060 advance IN_STREAM. */
1063 skip (uintmax_t n_skip
)
1071 while (in_stream
!= nullptr) /* EOF. */
1073 struct stat file_stats
;
1075 /* First try seeking. For large offsets, this extra work is
1076 worthwhile. If the offset is below some threshold it may be
1077 more efficient to move the pointer by reading. There are two
1078 issues when trying to seek:
1079 - the file must be seekable.
1080 - before seeking to the specified position, make sure
1081 that the new position is in the current file.
1082 Try to do that by getting file's size using fstat.
1083 But that will work only for regular files. */
1085 if (fstat (fileno (in_stream
), &file_stats
) == 0)
1087 bool usable_size
= usable_st_size (&file_stats
);
1089 /* The st_size field is valid for regular files.
1090 If the number of bytes left to skip is larger than
1091 the size of the current file, we can decrement n_skip
1092 and go on to the next file. Skip this optimization also
1093 when st_size is no greater than the block size, because
1094 some kernels report nonsense small file sizes for
1095 proc-like file systems. */
1096 if (usable_size
&& STP_BLKSIZE (&file_stats
) < file_stats
.st_size
)
1098 if ((uintmax_t) file_stats
.st_size
< n_skip
)
1099 n_skip
-= file_stats
.st_size
;
1102 if (fseeko (in_stream
, n_skip
, SEEK_CUR
) != 0)
1111 else if (!usable_size
&& fseeko (in_stream
, n_skip
, SEEK_CUR
) == 0)
1114 /* If it's not a regular file with nonnegative size,
1115 or if it's so small that it might be in a proc-like file system,
1116 position the file pointer by reading. */
1121 size_t n_bytes_read
, n_bytes_to_read
= BUFSIZ
;
1125 if (n_skip
< n_bytes_to_read
)
1126 n_bytes_to_read
= n_skip
;
1127 n_bytes_read
= fread (buf
, 1, n_bytes_to_read
, in_stream
);
1128 n_skip
-= n_bytes_read
;
1129 if (n_bytes_read
!= n_bytes_to_read
)
1131 if (ferror (in_stream
))
1138 if (feof (in_stream
))
1148 else /* cannot fstat() file */
1150 error (0, errno
, "%s", quotef (input_filename
));
1154 ok
&= check_and_close (in_errno
);
1156 ok
&= open_next_file ();
1160 error (EXIT_FAILURE
, 0, _("cannot skip past end of combined input"));
1166 format_address_none (MAYBE_UNUSED
uintmax_t address
,
1167 MAYBE_UNUSED
char c
)
1172 format_address_std (uintmax_t address
, char c
)
1174 char buf
[MAX_ADDRESS_LENGTH
+ 2];
1175 char *p
= buf
+ sizeof buf
;
1180 pbound
= p
- address_pad_len
;
1182 /* Use a special case of the code for each base. This is measurably
1183 faster than generic code. */
1184 switch (address_base
)
1188 *--p
= '0' + (address
& 7);
1189 while ((address
>>= 3) != 0);
1194 *--p
= '0' + (address
% 10);
1195 while ((address
/= 10) != 0);
1200 *--p
= "0123456789abcdef"[address
& 15];
1201 while ((address
>>= 4) != 0);
1212 format_address_paren (uintmax_t address
, char c
)
1215 format_address_std (address
, ')');
1221 format_address_label (uintmax_t address
, char c
)
1223 format_address_std (address
, ' ');
1224 format_address_paren (address
+ pseudo_offset
, c
);
1227 /* Write N_BYTES bytes from CURR_BLOCK to standard output once for each
1228 of the N_SPEC format specs. CURRENT_OFFSET is the byte address of
1229 CURR_BLOCK in the concatenation of input files, and it is printed
1230 (optionally) only before the output line associated with the first
1231 format spec. When duplicate blocks are being abbreviated, the output
1232 for a sequence of identical input blocks is the output for the first
1233 block followed by an asterisk alone on a line. It is valid to compare
1234 the blocks PREV_BLOCK and CURR_BLOCK only when N_BYTES == BYTES_PER_BLOCK.
1235 That condition may be false only for the last input block. */
1238 write_block (uintmax_t current_offset
, size_t n_bytes
,
1239 char const *prev_block
, char const *curr_block
)
1241 static bool first
= true;
1242 static bool prev_pair_equal
= false;
1244 #define EQUAL_BLOCKS(b1, b2) (memcmp (b1, b2, bytes_per_block) == 0)
1246 if (abbreviate_duplicate_blocks
1247 && !first
&& n_bytes
== bytes_per_block
1248 && EQUAL_BLOCKS (prev_block
, curr_block
))
1250 if (prev_pair_equal
)
1252 /* The two preceding blocks were equal, and the current
1253 block is the same as the last one, so print nothing. */
1258 prev_pair_equal
= true;
1263 prev_pair_equal
= false;
1264 for (size_t i
= 0; i
< n_specs
; i
++)
1266 int datum_width
= width_bytes
[spec
[i
].size
];
1267 int fields_per_block
= bytes_per_block
/ datum_width
;
1268 int blank_fields
= (bytes_per_block
- n_bytes
) / datum_width
;
1270 format_address (current_offset
, '\0');
1272 printf ("%*s", address_pad_len
, "");
1273 (*spec
[i
].print_function
) (fields_per_block
, blank_fields
,
1274 curr_block
, spec
[i
].fmt_string
,
1275 spec
[i
].field_width
, spec
[i
].pad_width
);
1276 if (spec
[i
].hexl_mode_trailer
)
1278 /* space-pad out to full line width, then dump the trailer */
1279 int field_width
= spec
[i
].field_width
;
1280 int pad_width
= (spec
[i
].pad_width
* blank_fields
1281 / fields_per_block
);
1282 printf ("%*s", blank_fields
* field_width
+ pad_width
, "");
1283 dump_hexl_mode_trailer (n_bytes
, curr_block
);
1291 /* Read a single byte into *C from the concatenation of the input files
1292 named in the global array FILE_LIST. On the first call to this
1293 function, the global variable IN_STREAM is expected to be an open
1294 stream associated with the input file INPUT_FILENAME. If IN_STREAM
1295 is at end-of-file, close it and update the global variables IN_STREAM
1296 and INPUT_FILENAME so they correspond to the next file in the list.
1297 Then try to read a byte from the newly opened file. Repeat if
1298 necessary until EOF is reached for the last file in FILE_LIST, then
1299 set *C to EOF and return. Subsequent calls do likewise. Return
1300 true if successful. */
1309 while (in_stream
!= nullptr) /* EOF. */
1311 *c
= fgetc (in_stream
);
1316 ok
&= check_and_close (errno
);
1318 ok
&= open_next_file ();
1324 /* Read N bytes into BLOCK from the concatenation of the input files
1325 named in the global array FILE_LIST. On the first call to this
1326 function, the global variable IN_STREAM is expected to be an open
1327 stream associated with the input file INPUT_FILENAME. If all N
1328 bytes cannot be read from IN_STREAM, close IN_STREAM and update
1329 the global variables IN_STREAM and INPUT_FILENAME. Then try to
1330 read the remaining bytes from the newly opened file. Repeat if
1331 necessary until EOF is reached for the last file in FILE_LIST.
1332 On subsequent calls, don't modify BLOCK and return true. Set
1333 *N_BYTES_IN_BUFFER to the number of bytes read. If an error occurs,
1334 it will be detected through ferror when the stream is about to be
1335 closed. If there is an error, give a message but continue reading
1336 as usual and return false. Otherwise return true. */
1339 read_block (size_t n
, char *block
, size_t *n_bytes_in_buffer
)
1343 affirm (0 < n
&& n
<= bytes_per_block
);
1345 *n_bytes_in_buffer
= 0;
1347 while (in_stream
!= nullptr) /* EOF. */
1352 n_needed
= n
- *n_bytes_in_buffer
;
1353 n_read
= fread (block
+ *n_bytes_in_buffer
, 1, n_needed
, in_stream
);
1355 *n_bytes_in_buffer
+= n_read
;
1357 if (n_read
== n_needed
)
1360 ok
&= check_and_close (errno
);
1362 ok
&= open_next_file ();
1368 /* Return the least common multiple of the sizes associated
1369 with the format specs. */
1377 for (size_t i
= 0; i
< n_specs
; i
++)
1378 l_c_m
= lcm (l_c_m
, width_bytes
[spec
[i
].size
]);
1382 /* If S is a valid traditional offset specification with an optional
1383 leading '+' return true and set *OFFSET to the offset it denotes. */
1386 parse_old_offset (char const *s
, uintmax_t *offset
)
1393 /* Skip over any leading '+'. */
1397 /* Determine the radix we'll use to interpret S. If there is a '.',
1398 it's decimal, otherwise, if the string begins with '0X'or '0x',
1399 it's hexadecimal, else octal. */
1400 if (strchr (s
, '.') != nullptr)
1404 if (s
[0] == '0' && (s
[1] == 'x' || s
[1] == 'X'))
1410 return xstrtoumax (s
, nullptr, radix
, offset
, "Bb") == LONGINT_OK
;
1413 /* Read a chunk of size BYTES_PER_BLOCK from the input files, write the
1414 formatted block to standard output, and repeat until the specified
1415 maximum number of bytes has been read or until all input has been
1416 processed. If the last block read is smaller than BYTES_PER_BLOCK
1417 and its size is not a multiple of the size associated with a format
1418 spec, extend the input block with zero bytes until its length is a
1419 multiple of all format spec sizes. Write the final block. Finally,
1420 write on a line by itself the offset of the byte after the last byte
1421 read. Accumulate return values from calls to read_block and
1422 check_and_close, and if any was false, return false.
1423 Otherwise, return true. */
1429 uintmax_t current_offset
;
1432 size_t n_bytes_read
;
1434 block
[0] = xnmalloc (2, bytes_per_block
);
1435 block
[1] = block
[0] + bytes_per_block
;
1437 current_offset
= n_bytes_to_skip
;
1439 if (limit_bytes_to_format
)
1444 if (current_offset
>= end_offset
)
1449 n_needed
= MIN (end_offset
- current_offset
,
1450 (uintmax_t) bytes_per_block
);
1451 ok
&= read_block (n_needed
, block
[idx
], &n_bytes_read
);
1452 if (n_bytes_read
< bytes_per_block
)
1454 affirm (n_bytes_read
== bytes_per_block
);
1455 write_block (current_offset
, n_bytes_read
,
1456 block
[!idx
], block
[idx
]);
1457 if (ferror (stdout
))
1459 current_offset
+= n_bytes_read
;
1467 ok
&= read_block (bytes_per_block
, block
[idx
], &n_bytes_read
);
1468 if (n_bytes_read
< bytes_per_block
)
1470 affirm (n_bytes_read
== bytes_per_block
);
1471 write_block (current_offset
, n_bytes_read
,
1472 block
[!idx
], block
[idx
]);
1473 if (ferror (stdout
))
1475 current_offset
+= n_bytes_read
;
1480 if (n_bytes_read
> 0)
1483 size_t bytes_to_write
;
1487 /* Ensure zero-byte padding up to the smallest multiple of l_c_m that
1488 is at least as large as n_bytes_read. */
1489 bytes_to_write
= l_c_m
* ((n_bytes_read
+ l_c_m
- 1) / l_c_m
);
1491 memset (block
[idx
] + n_bytes_read
, 0, bytes_to_write
- n_bytes_read
);
1492 write_block (current_offset
, n_bytes_read
, block
[!idx
], block
[idx
]);
1493 current_offset
+= n_bytes_read
;
1496 format_address (current_offset
, '\n');
1498 if (limit_bytes_to_format
&& current_offset
>= end_offset
)
1499 ok
&= check_and_close (0);
1506 /* STRINGS mode. Find each "string constant" in the input.
1507 A string constant is a run of at least 'string_min' ASCII
1508 graphic (or formatting) characters terminated by a null.
1509 Based on a function written by Richard Stallman for a
1510 traditional version of od. Return true if successful. */
1515 size_t bufsize
= MAX (100, string_min
);
1516 char *buf
= xmalloc (bufsize
);
1517 uintmax_t address
= n_bytes_to_skip
;
1525 /* See if the next 'string_min' chars are all printing chars. */
1528 if (limit_bytes_to_format
1529 && (end_offset
< string_min
|| end_offset
- string_min
<= address
))
1532 for (i
= 0; i
< string_min
; i
++)
1534 ok
&= read_char (&c
);
1542 /* Found a non-printing. Try again starting with next char. */
1547 /* We found a run of 'string_min' printable characters.
1548 Now see if it is terminated with a null byte. */
1549 while (!limit_bytes_to_format
|| address
< end_offset
)
1553 buf
= X2REALLOC (buf
, &bufsize
);
1555 ok
&= read_char (&c
);
1563 break; /* It is; print this string. */
1565 goto tryline
; /* It isn't; give up on this string. */
1566 buf
[i
++] = c
; /* String continues; store it all. */
1569 /* If we get here, the string is all printable and null-terminated,
1570 so print it. It is all in 'buf' and 'i' is its length. */
1572 format_address (address
- i
- 1, ' ');
1574 for (i
= 0; (c
= buf
[i
]); i
++)
1579 fputs ("\\a", stdout
);
1583 fputs ("\\b", stdout
);
1587 fputs ("\\f", stdout
);
1591 fputs ("\\n", stdout
);
1595 fputs ("\\r", stdout
);
1599 fputs ("\\t", stdout
);
1603 fputs ("\\v", stdout
);
1613 /* We reach this point only if we search through
1614 (max_bytes_to_format - string_min) bytes before reaching EOF. */
1618 ok
&= check_and_close (0);
1623 main (int argc
, char **argv
)
1628 idx_t desired_width
IF_LINT ( = 0);
1629 bool modern
= false;
1630 bool width_specified
= false;
1632 size_t width_per_block
= 0;
1633 static char const multipliers
[] = "bEGKkMmPQRTYZ0";
1635 /* The old-style 'pseudo starting address' to be printed in parentheses
1636 after any true address. */
1637 uintmax_t pseudo_start
IF_LINT ( = 0);
1639 initialize_main (&argc
, &argv
);
1640 set_program_name (argv
[0]);
1641 setlocale (LC_ALL
, "");
1642 bindtextdomain (PACKAGE
, LOCALEDIR
);
1643 textdomain (PACKAGE
);
1645 atexit (close_stdout
);
1647 for (i
= 0; i
<= MAX_INTEGRAL_TYPE_SIZE
; i
++)
1648 integral_type_size
[i
] = NO_SIZE
;
1650 integral_type_size
[sizeof (char)] = CHAR
;
1651 integral_type_size
[sizeof (short int)] = SHORT
;
1652 integral_type_size
[sizeof (int)] = INT
;
1653 integral_type_size
[sizeof (long int)] = LONG
;
1654 #if HAVE_UNSIGNED_LONG_LONG_INT
1655 /* If 'long int' and 'long long int' have the same size, it's fine
1656 to overwrite the entry for 'long' with this one. */
1657 integral_type_size
[sizeof (unsigned_long_long_int
)] = LONG_LONG
;
1660 for (i
= 0; i
<= MAX_FP_TYPE_SIZE
; i
++)
1661 fp_type_size
[i
] = NO_SIZE
;
1663 #if FLOAT16_SUPPORTED
1664 fp_type_size
[sizeof (float16
)] = FLOAT_HALF
;
1665 #elif BF16_SUPPORTED
1666 fp_type_size
[sizeof (bfloat16
)] = FLOAT_HALF
;
1668 fp_type_size
[sizeof (float)] = FLOAT_SINGLE
;
1669 /* The array entry for 'double' is filled in after that for 'long double'
1670 so that if they are the same size, we avoid any overhead of
1671 long double computation in libc. */
1672 fp_type_size
[sizeof (long double)] = FLOAT_LONG_DOUBLE
;
1673 fp_type_size
[sizeof (double)] = FLOAT_DOUBLE
;
1676 n_specs_allocated
= 0;
1679 format_address
= format_address_std
;
1681 address_pad_len
= 7;
1682 flag_dump_strings
= false;
1687 enum strtol_error s_err
;
1689 int c
= getopt_long (argc
, argv
, short_options
, long_options
, &oi
);
1700 format_address
= format_address_std
;
1702 address_pad_len
= 7;
1705 format_address
= format_address_std
;
1707 address_pad_len
= 7;
1710 format_address
= format_address_std
;
1712 address_pad_len
= 6;
1715 format_address
= format_address_none
;
1716 address_pad_len
= 0;
1719 error (EXIT_FAILURE
, 0,
1720 _("invalid output address radix '%c';"
1721 " it must be one character from [doxn]"),
1729 s_err
= xstrtoumax (optarg
, nullptr, 0,
1730 &n_bytes_to_skip
, multipliers
);
1731 if (s_err
!= LONGINT_OK
)
1732 xstrtol_fatal (s_err
, oi
, c
, long_options
, optarg
);
1737 limit_bytes_to_format
= true;
1739 s_err
= xstrtoumax (optarg
, nullptr, 0, &max_bytes_to_format
,
1741 if (s_err
!= LONGINT_OK
)
1742 xstrtol_fatal (s_err
, oi
, c
, long_options
, optarg
);
1747 if (optarg
== nullptr)
1751 s_err
= xstrtoumax (optarg
, nullptr, 0, &tmp
, multipliers
);
1752 if (s_err
!= LONGINT_OK
)
1753 xstrtol_fatal (s_err
, oi
, c
, long_options
, optarg
);
1755 /* The minimum string length may be no larger than SIZE_MAX,
1756 since we may allocate a buffer of this size. */
1758 error (EXIT_FAILURE
, 0, _("%s is too large"), quote (optarg
));
1762 flag_dump_strings
= true;
1767 ok
&= decode_format_string (optarg
);
1772 abbreviate_duplicate_blocks
= false;
1775 case TRADITIONAL_OPTION
:
1780 switch (XARGMATCH ("--endian", optarg
, endian_args
, endian_types
))
1783 input_swap
= ! WORDS_BIGENDIAN
;
1786 input_swap
= WORDS_BIGENDIAN
;
1791 /* The next several cases map the traditional format
1792 specification options to the corresponding modern format
1793 specs. GNU od accepts any combination of old- and
1794 new-style options. Format specification options accumulate.
1795 The obsolescent and undocumented formats are compatible
1796 with FreeBSD 4.10 od. */
1798 #define CASE_OLD_ARG(old_char,new_string) \
1800 ok &= decode_format_string (new_string); \
1803 CASE_OLD_ARG ('a', "a");
1804 CASE_OLD_ARG ('b', "o1");
1805 CASE_OLD_ARG ('c', "c");
1806 CASE_OLD_ARG ('D', "u4"); /* obsolescent and undocumented */
1807 CASE_OLD_ARG ('d', "u2");
1808 case 'F': /* obsolescent and undocumented alias */
1809 CASE_OLD_ARG ('e', "fD"); /* obsolescent and undocumented */
1810 CASE_OLD_ARG ('f', "fF");
1811 case 'X': /* obsolescent and undocumented alias */
1812 CASE_OLD_ARG ('H', "x4"); /* obsolescent and undocumented */
1813 CASE_OLD_ARG ('i', "dI");
1814 case 'I': case 'L': /* obsolescent and undocumented aliases */
1815 CASE_OLD_ARG ('l', "dL");
1816 CASE_OLD_ARG ('O', "o4"); /* obsolescent and undocumented */
1817 case 'B': /* obsolescent and undocumented alias */
1818 CASE_OLD_ARG ('o', "o2");
1819 CASE_OLD_ARG ('s', "d2");
1820 case 'h': /* obsolescent and undocumented alias */
1821 CASE_OLD_ARG ('x', "x2");
1827 width_specified
= true;
1828 if (optarg
== nullptr)
1835 s_err
= xstrtoimax (optarg
, nullptr, 10, &w_tmp
, "");
1836 if (s_err
!= LONGINT_OK
|| w_tmp
<= 0)
1837 xstrtol_fatal (s_err
, oi
, c
, long_options
, optarg
);
1838 if (ckd_add (&desired_width
, w_tmp
, 0))
1839 error (EXIT_FAILURE
, 0, _("%s is too large"), quote (optarg
));
1843 case_GETOPT_HELP_CHAR
;
1845 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
1848 usage (EXIT_FAILURE
);
1854 return EXIT_FAILURE
;
1856 if (flag_dump_strings
&& n_specs
> 0)
1857 error (EXIT_FAILURE
, 0,
1858 _("no type may be specified when dumping strings"));
1860 n_files
= argc
- optind
;
1862 /* If the --traditional option is used, there may be from
1863 0 to 3 remaining command line arguments; handle each case
1865 od [file] [[+]offset[.][b] [[+]label[.][b]]]
1866 The offset and label have the same syntax.
1868 If --traditional is not given, and if no modern options are
1869 given, and if the offset begins with + or (if there are two
1870 operands) a digit, accept only this form, as per POSIX:
1871 od [file] [[+]offset[.][b]]
1874 if (!modern
|| traditional
)
1882 if ((traditional
|| argv
[optind
][0] == '+')
1883 && parse_old_offset (argv
[optind
], &o1
))
1885 n_bytes_to_skip
= o1
;
1892 if ((traditional
|| argv
[optind
+ 1][0] == '+'
1893 || ISDIGIT (argv
[optind
+ 1][0]))
1894 && parse_old_offset (argv
[optind
+ 1], &o2
))
1896 if (traditional
&& parse_old_offset (argv
[optind
], &o1
))
1898 n_bytes_to_skip
= o1
;
1899 flag_pseudo_start
= true;
1906 n_bytes_to_skip
= o2
;
1908 argv
[optind
+ 1] = argv
[optind
];
1916 && parse_old_offset (argv
[optind
+ 1], &o1
)
1917 && parse_old_offset (argv
[optind
+ 2], &o2
))
1919 n_bytes_to_skip
= o1
;
1920 flag_pseudo_start
= true;
1922 argv
[optind
+ 2] = argv
[optind
];
1929 if (traditional
&& 1 < n_files
)
1931 error (0, 0, _("extra operand %s"), quote (argv
[optind
+ 1]));
1933 _("compatibility mode supports at most one file"));
1934 usage (EXIT_FAILURE
);
1938 if (flag_pseudo_start
)
1940 if (format_address
== format_address_none
)
1943 address_pad_len
= 7;
1944 format_address
= format_address_paren
;
1947 format_address
= format_address_label
;
1950 if (limit_bytes_to_format
)
1952 end_offset
= n_bytes_to_skip
+ max_bytes_to_format
;
1953 if (end_offset
< n_bytes_to_skip
)
1954 error (EXIT_FAILURE
, 0, _("skip-bytes + read-bytes is too large"));
1958 decode_format_string ("oS");
1962 /* Set the global pointer FILE_LIST so that it
1963 references the first file-argument on the command-line. */
1965 file_list
= (char const *const *) &argv
[optind
];
1969 /* No files were listed on the command line.
1970 Set the global pointer FILE_LIST so that it
1971 references the null-terminated list of one name: "-". */
1973 file_list
= default_file_list
;
1976 /* open the first input file */
1977 ok
= open_next_file ();
1978 if (in_stream
== nullptr)
1981 /* skip over any unwanted header bytes */
1982 ok
&= skip (n_bytes_to_skip
);
1983 if (in_stream
== nullptr)
1986 pseudo_offset
= (flag_pseudo_start
? pseudo_start
- n_bytes_to_skip
: 0);
1988 /* Compute output block length. */
1991 if (width_specified
)
1993 if (desired_width
!= 0 && desired_width
% l_c_m
== 0)
1994 bytes_per_block
= desired_width
;
1997 error (0, 0, _("warning: invalid width %td; using %d instead"),
1998 desired_width
, l_c_m
);
1999 bytes_per_block
= l_c_m
;
2004 if (l_c_m
< DEFAULT_BYTES_PER_BLOCK
)
2005 bytes_per_block
= l_c_m
* (DEFAULT_BYTES_PER_BLOCK
/ l_c_m
);
2007 bytes_per_block
= l_c_m
;
2010 /* Compute padding necessary to align output block. */
2011 for (i
= 0; i
< n_specs
; i
++)
2013 int fields_per_block
= bytes_per_block
/ width_bytes
[spec
[i
].size
];
2014 int block_width
= (spec
[i
].field_width
+ 1) * fields_per_block
;
2015 if (width_per_block
< block_width
)
2016 width_per_block
= block_width
;
2018 for (i
= 0; i
< n_specs
; i
++)
2020 int fields_per_block
= bytes_per_block
/ width_bytes
[spec
[i
].size
];
2021 int block_width
= spec
[i
].field_width
* fields_per_block
;
2022 spec
[i
].pad_width
= width_per_block
- block_width
;
2026 printf ("lcm=%d, width_per_block=%zu\n", l_c_m
, width_per_block
);
2027 for (i
= 0; i
< n_specs
; i
++)
2029 int fields_per_block
= bytes_per_block
/ width_bytes
[spec
[i
].size
];
2030 affirm (bytes_per_block
% width_bytes
[spec
[i
].size
] == 0);
2031 affirm (1 <= spec
[i
].pad_width
/ fields_per_block
);
2032 printf ("%d: fmt=\"%s\" in_width=%d out_width=%d pad=%d\n",
2033 i
, spec
[i
].fmt_string
, width_bytes
[spec
[i
].size
],
2034 spec
[i
].field_width
, spec
[i
].pad_width
);
2038 ok
&= (flag_dump_strings
? dump_strings () : dump ());
2042 if (have_read_stdin
&& fclose (stdin
) == EOF
)
2043 error (EXIT_FAILURE
, errno
, _("standard input"));
2045 return ok
? EXIT_SUCCESS
: EXIT_FAILURE
;