29e2c17e3ce65ef5f65fb047e746e4e16637b234
[platform/upstream/coreutils.git] / src / od.c
1 /* od -- dump files in octal and other formats
2    Copyright (C) 92, 1995-2005 Free Software Foundation, Inc.
3
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 2, or (at your option)
7    any later version.
8
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.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software Foundation,
16    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
17
18 /* Written by Jim Meyering.  */
19
20 #include <config.h>
21
22 #include <stdio.h>
23 #include <assert.h>
24 #include <getopt.h>
25 #include <sys/types.h>
26 #include "system.h"
27 #include "error.h"
28 #include "quote.h"
29 #include "xstrtol.h"
30
31 /* The official name of this program (e.g., no `g' prefix).  */
32 #define PROGRAM_NAME "od"
33
34 #define AUTHORS "Jim Meyering"
35
36 #if defined(__GNUC__) || defined(STDC_HEADERS)
37 # include <float.h>
38 #endif
39
40 #ifdef HAVE_LONG_DOUBLE
41 typedef long double LONG_DOUBLE;
42 #else
43 typedef double LONG_DOUBLE;
44 #endif
45
46 /* The default number of input bytes per output line.  */
47 #define DEFAULT_BYTES_PER_BLOCK 16
48
49 /* The number of decimal digits of precision in a float.  */
50 #ifndef FLT_DIG
51 # define FLT_DIG 7
52 #endif
53
54 /* The number of decimal digits of precision in a double.  */
55 #ifndef DBL_DIG
56 # define DBL_DIG 15
57 #endif
58
59 /* The number of decimal digits of precision in a long double.  */
60 #ifndef LDBL_DIG
61 # define LDBL_DIG DBL_DIG
62 #endif
63
64 #if HAVE_UNSIGNED_LONG_LONG
65 typedef unsigned long long int ulonglong_t;
66 #else
67 /* This is just a place-holder to avoid a few `#if' directives.
68    In this case, the type isn't actually used.  */
69 typedef unsigned long int ulonglong_t;
70 #endif
71
72 enum size_spec
73   {
74     NO_SIZE,
75     CHAR,
76     SHORT,
77     INT,
78     LONG,
79     LONG_LONG,
80     /* FIXME: add INTMAX support, too */
81     FLOAT_SINGLE,
82     FLOAT_DOUBLE,
83     FLOAT_LONG_DOUBLE,
84     N_SIZE_SPECS
85   };
86
87 enum output_format
88   {
89     SIGNED_DECIMAL,
90     UNSIGNED_DECIMAL,
91     OCTAL,
92     HEXADECIMAL,
93     FLOATING_POINT,
94     NAMED_CHARACTER,
95     CHARACTER
96   };
97
98 /* The maximum number of bytes needed for a format string,
99    including the trailing null.  */
100 enum
101   {
102     FMT_BYTES_ALLOCATED =
103       MAX ((sizeof " %0" - 1 + INT_STRLEN_BOUND (int)
104             + MAX (sizeof "ld",
105                    MAX (sizeof PRIdMAX,
106                         MAX (sizeof PRIoMAX,
107                              MAX (sizeof PRIuMAX,
108                                   sizeof PRIxMAX))))),
109            sizeof " %.Le" + 2 * INT_STRLEN_BOUND (int))
110   };
111
112 /* Each output format specification (from `-t spec' or from
113    old-style options) is represented by one of these structures.  */
114 struct tspec
115   {
116     enum output_format fmt;
117     enum size_spec size;
118     void (*print_function) (size_t, void const *, char const *);
119     char fmt_string[FMT_BYTES_ALLOCATED];
120     bool hexl_mode_trailer;
121     int field_width;
122   };
123
124 /* The name this program was run with.  */
125 char *program_name;
126
127 /* Convert the number of 8-bit bytes of a binary representation to
128    the number of characters (digits + sign if the type is signed)
129    required to represent the same quantity in the specified base/type.
130    For example, a 32-bit (4-byte) quantity may require a field width
131    as wide as the following for these types:
132    11   unsigned octal
133    11   signed decimal
134    10   unsigned decimal
135    8    unsigned hexadecimal  */
136
137 static char const bytes_to_oct_digits[] =
138 {0, 3, 6, 8, 11, 14, 16, 19, 22, 25, 27, 30, 32, 35, 38, 41, 43};
139
140 static char const bytes_to_signed_dec_digits[] =
141 {1, 4, 6, 8, 11, 13, 16, 18, 20, 23, 25, 28, 30, 33, 35, 37, 40};
142
143 static char const bytes_to_unsigned_dec_digits[] =
144 {0, 3, 5, 8, 10, 13, 15, 17, 20, 22, 25, 27, 29, 32, 34, 37, 39};
145
146 static char const bytes_to_hex_digits[] =
147 {0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32};
148
149 /* Convert enum size_spec to the size of the named type.  */
150 static const int width_bytes[] =
151 {
152   -1,
153   sizeof (char),
154   sizeof (short int),
155   sizeof (int),
156   sizeof (long int),
157   sizeof (ulonglong_t),
158   sizeof (float),
159   sizeof (double),
160   sizeof (LONG_DOUBLE)
161 };
162
163 /* Ensure that for each member of `enum size_spec' there is an
164    initializer in the width_bytes array.  */
165 VERIFY (assert_width_bytes_matches_size_spec_decl,
166         sizeof width_bytes / sizeof width_bytes[0] == N_SIZE_SPECS);
167
168 /* Names for some non-printing characters.  */
169 static const char *const charname[33] =
170 {
171   "nul", "soh", "stx", "etx", "eot", "enq", "ack", "bel",
172   "bs", "ht", "nl", "vt", "ff", "cr", "so", "si",
173   "dle", "dc1", "dc2", "dc3", "dc4", "nak", "syn", "etb",
174   "can", "em", "sub", "esc", "fs", "gs", "rs", "us",
175   "sp"
176 };
177
178 /* Address base (8, 10 or 16).  */
179 static int address_base;
180
181 /* The number of octal digits required to represent the largest
182    address value.  */
183 #define MAX_ADDRESS_LENGTH \
184   ((sizeof (uintmax_t) * CHAR_BIT + CHAR_BIT - 1) / 3)
185
186 /* Width of a normal address.  */
187 static int address_pad_len;
188
189 static size_t string_min;
190 static bool flag_dump_strings;
191
192 /* True if we should recognize the older non-option arguments
193    that specified at most one file and optional arguments specifying
194    offset and pseudo-start address.  */
195 static bool traditional;
196
197 /* True if an old-style `pseudo-address' was specified.  */
198 static bool flag_pseudo_start;
199
200 /* The difference between the old-style pseudo starting address and
201    the number of bytes to skip.  */
202 static uintmax_t pseudo_offset;
203
204 /* Function that accepts an address and an optional following char,
205    and prints the address and char to stdout.  */
206 static void (*format_address) (uintmax_t, char);
207
208 /* The number of input bytes to skip before formatting and writing.  */
209 static uintmax_t n_bytes_to_skip = 0;
210
211 /* When false, MAX_BYTES_TO_FORMAT and END_OFFSET are ignored, and all
212    input is formatted.  */
213 static bool limit_bytes_to_format = false;
214
215 /* The maximum number of bytes that will be formatted.  */
216 static uintmax_t max_bytes_to_format;
217
218 /* The offset of the first byte after the last byte to be formatted.  */
219 static uintmax_t end_offset;
220
221 /* When true and two or more consecutive blocks are equal, format
222    only the first block and output an asterisk alone on the following
223    line to indicate that identical blocks have been elided.  */
224 static bool abbreviate_duplicate_blocks = true;
225
226 /* An array of specs describing how to format each input block.  */
227 static struct tspec *spec;
228
229 /* The number of format specs.  */
230 static size_t n_specs;
231
232 /* The allocated length of SPEC.  */
233 static size_t n_specs_allocated;
234
235 /* The number of input bytes formatted per output line.  It must be
236    a multiple of the least common multiple of the sizes associated with
237    the specified output types.  It should be as large as possible, but
238    no larger than 16 -- unless specified with the -w option.  */
239 static size_t bytes_per_block;
240
241 /* Human-readable representation of *file_list (for error messages).
242    It differs from file_list[-1] only when file_list[-1] is "-".  */
243 static char const *input_filename;
244
245 /* A NULL-terminated list of the file-arguments from the command line.  */
246 static char const *const *file_list;
247
248 /* Initializer for file_list if no file-arguments
249    were specified on the command line.  */
250 static char const *const default_file_list[] = {"-", NULL};
251
252 /* The input stream associated with the current file.  */
253 static FILE *in_stream;
254
255 /* If true, at least one of the files we read was standard input.  */
256 static bool have_read_stdin;
257
258 #define MAX_INTEGRAL_TYPE_SIZE sizeof (ulonglong_t)
259 static enum size_spec integral_type_size[MAX_INTEGRAL_TYPE_SIZE + 1];
260
261 #define MAX_FP_TYPE_SIZE sizeof (LONG_DOUBLE)
262 static enum size_spec fp_type_size[MAX_FP_TYPE_SIZE + 1];
263
264 static char const short_options[] = "A:aBbcDdeFfHhIij:LlN:OoS:st:vw::Xx";
265
266 /* For long options that have no equivalent short option, use a
267    non-character as a pseudo short option, starting with CHAR_MAX + 1.  */
268 enum
269 {
270   TRADITIONAL_OPTION = CHAR_MAX + 1
271 };
272
273 static struct option const long_options[] =
274 {
275   {"skip-bytes", required_argument, NULL, 'j'},
276   {"address-radix", required_argument, NULL, 'A'},
277   {"read-bytes", required_argument, NULL, 'N'},
278   {"format", required_argument, NULL, 't'},
279   {"output-duplicates", no_argument, NULL, 'v'},
280   {"strings", optional_argument, NULL, 'S'},
281   {"traditional", no_argument, NULL, TRADITIONAL_OPTION},
282   {"width", optional_argument, NULL, 'w'},
283
284   {GETOPT_HELP_OPTION_DECL},
285   {GETOPT_VERSION_OPTION_DECL},
286   {NULL, 0, NULL, 0}
287 };
288
289 void
290 usage (int status)
291 {
292   if (status != EXIT_SUCCESS)
293     fprintf (stderr, _("Try `%s --help' for more information.\n"),
294              program_name);
295   else
296     {
297       printf (_("\
298 Usage: %s [OPTION]... [FILE]...\n\
299   or:  %s [-abcdfilosx]... [FILE] [[+]OFFSET[.][b]]\n\
300   or:  %s --traditional [OPTION]... [FILE] [[+]OFFSET[.][b] [+][LABEL][.][b]]\n\
301 "),
302               program_name, program_name, program_name);
303       fputs (_("\n\
304 Write an unambiguous representation, octal bytes by default,\n\
305 of FILE to standard output.  With more than one FILE argument,\n\
306 concatenate them in the listed order to form the input.\n\
307 With no FILE, or when FILE is -, read standard input.\n\
308 \n\
309 "), stdout);
310       fputs (_("\
311 All arguments to long options are mandatory for short options.\n\
312 "), stdout);
313       fputs (_("\
314   -A, --address-radix=RADIX   decide how file offsets are printed\n\
315   -j, --skip-bytes=BYTES      skip BYTES input bytes first\n\
316 "), stdout);
317       fputs (_("\
318   -N, --read-bytes=BYTES      limit dump to BYTES input bytes\n\
319   -S, --strings[=BYTES]       output strings of at least BYTES graphic chars\n\
320   -t, --format=TYPE           select output format or formats\n\
321   -v, --output-duplicates     do not use * to mark line suppression\n\
322   -w, --width[=BYTES]         output BYTES bytes per output line\n\
323       --traditional           accept arguments in traditional form\n\
324 "), stdout);
325       fputs (HELP_OPTION_DESCRIPTION, stdout);
326       fputs (VERSION_OPTION_DESCRIPTION, stdout);
327       fputs (_("\
328 \n\
329 Traditional format specifications may be intermixed; they accumulate:\n\
330   -a   same as -t a,  select named characters\n\
331   -b   same as -t o1, select octal bytes\n\
332   -c   same as -t c,  select ASCII characters or backslash escapes\n\
333   -d   same as -t u2, select unsigned decimal 2-byte units\n\
334 "), stdout);
335       fputs (_("\
336   -f   same as -t fF, select floats\n\
337   -i   same as -t dI, select decimal ints\n\
338   -l   same as -t dL, select decimal longs\n\
339   -o   same as -t o2, select octal 2-byte units\n\
340   -s   same as -t d2, select decimal 2-byte units\n\
341   -x   same as -t x2, select hexadecimal 2-byte units\n\
342 "), stdout);
343       fputs (_("\
344 \n\
345 If first and second call formats both apply, the second format is assumed\n\
346 if the last operand begins with + or (if there are 2 operands) a digit.\n\
347 An OFFSET operand means -j OFFSET.  LABEL is the pseudo-address\n\
348 at first byte printed, incremented when dump is progressing.\n\
349 For OFFSET and LABEL, a 0x or 0X prefix indicates hexadecimal;\n\
350 suffixes may be . for octal and b for multiply by 512.\n\
351 \n\
352 TYPE is made up of one or more of these specifications:\n\
353 \n\
354   a          named character\n\
355   c          ASCII character or backslash escape\n\
356 "), stdout);
357       fputs (_("\
358   d[SIZE]    signed decimal, SIZE bytes per integer\n\
359   f[SIZE]    floating point, SIZE bytes per integer\n\
360   o[SIZE]    octal, SIZE bytes per integer\n\
361   u[SIZE]    unsigned decimal, SIZE bytes per integer\n\
362   x[SIZE]    hexadecimal, SIZE bytes per integer\n\
363 "), stdout);
364       fputs (_("\
365 \n\
366 SIZE is a number.  For TYPE in doux, SIZE may also be C for\n\
367 sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n\
368 sizeof(long).  If TYPE is f, SIZE may also be F for sizeof(float), D\n\
369 for sizeof(double) or L for sizeof(long double).\n\
370 "), stdout);
371       fputs (_("\
372 \n\
373 RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n\
374 BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n\
375 with b suffix, by 1024 with k and by 1048576 with m.  Adding a z suffix to\n\
376 any type adds a display of printable characters to the end of each line\n\
377 of output.  \
378 "), stdout);
379       fputs (_("\
380 --string without a number implies 3.  --width without a number\n\
381 implies 32.  By default, od uses -A o -t d2 -w 16.\n\
382 "), stdout);
383       printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
384     }
385   exit (status);
386 }
387
388 /* Define the print functions.  */
389
390 static void
391 print_s_char (size_t n_bytes, void const *block, char const *fmt_string)
392 {
393   signed char const *p = block;
394   size_t i;
395   for (i = n_bytes / sizeof *p; i != 0; i--)
396     printf (fmt_string, *p++);
397 }
398
399 static void
400 print_char (size_t n_bytes, void const *block, char const *fmt_string)
401 {
402   unsigned char const *p = block;
403   size_t i;
404   for (i = n_bytes / sizeof *p; i != 0; i--)
405     printf (fmt_string, *p++);
406 }
407
408 static void
409 print_s_short (size_t n_bytes, void const *block, char const *fmt_string)
410 {
411   short int const *p = block;
412   size_t i;
413   for (i = n_bytes / sizeof *p; i != 0; i--)
414     printf (fmt_string, *p++);
415 }
416
417 static void
418 print_short (size_t n_bytes, void const *block, char const *fmt_string)
419 {
420   unsigned short int const *p = block;
421   size_t i;
422   for (i = n_bytes / sizeof *p; i != 0; i--)
423     printf (fmt_string, *p++);
424 }
425
426 static void
427 print_int (size_t n_bytes, void const *block, char const *fmt_string)
428 {
429   unsigned int const *p = block;
430   size_t i;
431   for (i = n_bytes / sizeof *p; i != 0; i--)
432     printf (fmt_string, *p++);
433 }
434
435 static void
436 print_long (size_t n_bytes, void const *block, char const *fmt_string)
437 {
438   unsigned long int const *p = block;
439   size_t i;
440   for (i = n_bytes / sizeof *p; i != 0; i--)
441     printf (fmt_string, *p++);
442 }
443
444 static void
445 print_long_long (size_t n_bytes, void const *block, char const *fmt_string)
446 {
447   ulonglong_t const *p = block;
448   size_t i;
449   for (i = n_bytes / sizeof *p; i != 0; i--)
450     printf (fmt_string, *p++);
451 }
452
453 static void
454 print_float (size_t n_bytes, void const *block, char const *fmt_string)
455 {
456   float const *p = block;
457   size_t i;
458   for (i = n_bytes / sizeof *p; i != 0; i--)
459     printf (fmt_string, *p++);
460 }
461
462 static void
463 print_double (size_t n_bytes, void const *block, char const *fmt_string)
464 {
465   double const *p = block;
466   size_t i;
467   for (i = n_bytes / sizeof *p; i != 0; i--)
468     printf (fmt_string, *p++);
469 }
470
471 #ifdef HAVE_LONG_DOUBLE
472 static void
473 print_long_double (size_t n_bytes, void const *block, char const *fmt_string)
474 {
475   long double const *p = block;
476   size_t i;
477   for (i = n_bytes / sizeof *p; i != 0; i--)
478     printf (fmt_string, *p++);
479 }
480 #endif
481
482 static void
483 dump_hexl_mode_trailer (size_t n_bytes, const char *block)
484 {
485   size_t i;
486   fputs ("  >", stdout);
487   for (i = n_bytes; i > 0; i--)
488     {
489       unsigned char c = *block++;
490       unsigned char c2 = (ISPRINT(c) ? c : '.');
491       putchar (c2);
492     }
493   putchar ('<');
494 }
495
496 static void
497 print_named_ascii (size_t n_bytes, void const *block,
498                    const char *unused_fmt_string ATTRIBUTE_UNUSED)
499 {
500   unsigned char const *p = block;
501   size_t i;
502   for (i = n_bytes; i > 0; i--)
503     {
504       int masked_c = *p++ & 0x7f;
505       const char *s;
506       char buf[5];
507
508       if (masked_c == 127)
509         s = "del";
510       else if (masked_c <= 040)
511         s = charname[masked_c];
512       else
513         {
514           sprintf (buf, "  %c", masked_c);
515           s = buf;
516         }
517
518       printf (" %3s", s);
519     }
520 }
521
522 static void
523 print_ascii (size_t n_bytes, void const *block,
524              const char *unused_fmt_string ATTRIBUTE_UNUSED)
525 {
526   unsigned char const *p = block;
527   size_t i;
528   for (i = n_bytes; i > 0; i--)
529     {
530       unsigned char c = *p++;
531       const char *s;
532       char buf[5];
533
534       switch (c)
535         {
536         case '\0':
537           s = " \\0";
538           break;
539
540         case '\a':
541           s = " \\a";
542           break;
543
544         case '\b':
545           s = " \\b";
546           break;
547
548         case '\f':
549           s = " \\f";
550           break;
551
552         case '\n':
553           s = " \\n";
554           break;
555
556         case '\r':
557           s = " \\r";
558           break;
559
560         case '\t':
561           s = " \\t";
562           break;
563
564         case '\v':
565           s = " \\v";
566           break;
567
568         default:
569           sprintf (buf, (ISPRINT (c) ? "  %c" : "%03o"), c);
570           s = buf;
571         }
572
573       printf (" %3s", s);
574     }
575 }
576
577 /* Convert a null-terminated (possibly zero-length) string S to an
578    unsigned long integer value.  If S points to a non-digit set *P to S,
579    *VAL to 0, and return true.  Otherwise, accumulate the integer value of
580    the string of digits.  If the string of digits represents a value
581    larger than ULONG_MAX, don't modify *VAL or *P and return false.
582    Otherwise, advance *P to the first non-digit after S, set *VAL to
583    the result of the conversion and return true.  */
584
585 static bool
586 simple_strtoul (const char *s, const char **p, unsigned long int *val)
587 {
588   unsigned long int sum;
589
590   sum = 0;
591   while (ISDIGIT (*s))
592     {
593       int c = *s++ - '0';
594       if (sum > (ULONG_MAX - c) / 10)
595         return false;
596       sum = sum * 10 + c;
597     }
598   *p = s;
599   *val = sum;
600   return true;
601 }
602
603 /* If S points to a single valid modern od format string, put
604    a description of that format in *TSPEC, make *NEXT point at the
605    character following the just-decoded format (if *NEXT is non-NULL),
606    and return true.  If S is not valid, don't modify *NEXT or *TSPEC,
607    give a diagnostic, and return false.  For example, if S were
608    "d4afL" *NEXT would be set to "afL" and *TSPEC would be
609      {
610        fmt = SIGNED_DECIMAL;
611        size = INT or LONG; (whichever integral_type_size[4] resolves to)
612        print_function = print_int; (assuming size == INT)
613        fmt_string = "%011d%c";
614       }
615    S_ORIG is solely for reporting errors.  It should be the full format
616    string argument.
617    */
618
619 static bool
620 decode_one_format (const char *s_orig, const char *s, const char **next,
621                    struct tspec *tspec)
622 {
623   enum size_spec size_spec;
624   unsigned long int size;
625   enum output_format fmt;
626   const char *pre_fmt_string;
627   void (*print_function) (size_t, void const *, char const *);
628   const char *p;
629   char c;
630   int field_width;
631   int precision;
632
633   assert (tspec != NULL);
634
635   switch (*s)
636     {
637     case 'd':
638     case 'o':
639     case 'u':
640     case 'x':
641       c = *s;
642       ++s;
643       switch (*s)
644         {
645         case 'C':
646           ++s;
647           size = sizeof (char);
648           break;
649
650         case 'S':
651           ++s;
652           size = sizeof (short int);
653           break;
654
655         case 'I':
656           ++s;
657           size = sizeof (int);
658           break;
659
660         case 'L':
661           ++s;
662           size = sizeof (long int);
663           break;
664
665         default:
666           if (! simple_strtoul (s, &p, &size))
667             {
668               /* The integer at P in S would overflow an unsigned long int.
669                  A digit string that long is sufficiently odd looking
670                  that the following diagnostic is sufficient.  */
671               error (0, 0, _("invalid type string %s"), quote (s_orig));
672               return false;
673             }
674           if (p == s)
675             size = sizeof (int);
676           else
677             {
678               if (MAX_INTEGRAL_TYPE_SIZE < size
679                   || integral_type_size[size] == NO_SIZE)
680                 {
681                   error (0, 0, _("invalid type string %s;\n\
682 this system doesn't provide a %lu-byte integral type"), quote (s_orig), size);
683                   return false;
684                 }
685               s = p;
686             }
687           break;
688         }
689
690 #define ISPEC_TO_FORMAT(Spec, Min_format, Long_format, Max_format)      \
691   ((Spec) == LONG_LONG ? (Max_format)                                   \
692    : ((Spec) == LONG ? (Long_format)                                    \
693       : (Min_format)))                                                  \
694
695       size_spec = integral_type_size[size];
696
697       switch (c)
698         {
699         case 'd':
700           fmt = SIGNED_DECIMAL;
701           sprintf (tspec->fmt_string, " %%%d%s",
702                    (field_width = bytes_to_signed_dec_digits[size]),
703                    ISPEC_TO_FORMAT (size_spec, "d", "ld", PRIdMAX));
704           break;
705
706         case 'o':
707           fmt = OCTAL;
708           sprintf (tspec->fmt_string, " %%0%d%s",
709                    (field_width = bytes_to_oct_digits[size]),
710                    ISPEC_TO_FORMAT (size_spec, "o", "lo", PRIoMAX));
711           break;
712
713         case 'u':
714           fmt = UNSIGNED_DECIMAL;
715           sprintf (tspec->fmt_string, " %%%d%s",
716                    (field_width = bytes_to_unsigned_dec_digits[size]),
717                    ISPEC_TO_FORMAT (size_spec, "u", "lu", PRIuMAX));
718           break;
719
720         case 'x':
721           fmt = HEXADECIMAL;
722           sprintf (tspec->fmt_string, " %%0%d%s",
723                    (field_width = bytes_to_hex_digits[size]),
724                    ISPEC_TO_FORMAT (size_spec, "x", "lx", PRIxMAX));
725           break;
726
727         default:
728           abort ();
729         }
730
731       assert (strlen (tspec->fmt_string) < FMT_BYTES_ALLOCATED);
732
733       switch (size_spec)
734         {
735         case CHAR:
736           print_function = (fmt == SIGNED_DECIMAL
737                             ? print_s_char
738                             : print_char);
739           break;
740
741         case SHORT:
742           print_function = (fmt == SIGNED_DECIMAL
743                             ? print_s_short
744                             : print_short);
745           break;
746
747         case INT:
748           print_function = print_int;
749           break;
750
751         case LONG:
752           print_function = print_long;
753           break;
754
755         case LONG_LONG:
756           print_function = print_long_long;
757           break;
758
759         default:
760           abort ();
761         }
762       break;
763
764     case 'f':
765       fmt = FLOATING_POINT;
766       ++s;
767       switch (*s)
768         {
769         case 'F':
770           ++s;
771           size = sizeof (float);
772           break;
773
774         case 'D':
775           ++s;
776           size = sizeof (double);
777           break;
778
779         case 'L':
780           ++s;
781           size = sizeof (LONG_DOUBLE);
782           break;
783
784         default:
785           if (! simple_strtoul (s, &p, &size))
786             {
787               /* The integer at P in S would overflow an unsigned long int.
788                  A digit string that long is sufficiently odd looking
789                  that the following diagnostic is sufficient.  */
790               error (0, 0, _("invalid type string %s"), quote (s_orig));
791               return false;
792             }
793           if (p == s)
794             size = sizeof (double);
795           else
796             {
797               if (size > MAX_FP_TYPE_SIZE
798                   || fp_type_size[size] == NO_SIZE)
799                 {
800                   error (0, 0, _("invalid type string %s;\n\
801 this system doesn't provide a %lu-byte floating point type"),
802                          quote (s_orig), size);
803                   return false;
804                 }
805               s = p;
806             }
807           break;
808         }
809       size_spec = fp_type_size[size];
810
811       switch (size_spec)
812         {
813         case FLOAT_SINGLE:
814           print_function = print_float;
815           /* Don't use %#e; not all systems support it.  */
816           pre_fmt_string = " %%%d.%de";
817           precision = FLT_DIG;
818           break;
819
820         case FLOAT_DOUBLE:
821           print_function = print_double;
822           pre_fmt_string = " %%%d.%de";
823           precision = DBL_DIG;
824           break;
825
826 #ifdef HAVE_LONG_DOUBLE
827         case FLOAT_LONG_DOUBLE:
828           print_function = print_long_double;
829           pre_fmt_string = " %%%d.%dLe";
830           precision = LDBL_DIG;
831           break;
832 #endif
833
834         default:
835           abort ();
836         }
837
838       field_width = precision + 8;
839       sprintf (tspec->fmt_string, pre_fmt_string, field_width, precision);
840       break;
841
842     case 'a':
843       ++s;
844       fmt = NAMED_CHARACTER;
845       size_spec = CHAR;
846       print_function = print_named_ascii;
847       field_width = 3;
848       break;
849
850     case 'c':
851       ++s;
852       fmt = CHARACTER;
853       size_spec = CHAR;
854       print_function = print_ascii;
855       field_width = 3;
856       break;
857
858     default:
859       error (0, 0, _("invalid character `%c' in type string %s"),
860              *s, quote (s_orig));
861       return false;
862     }
863
864   tspec->size = size_spec;
865   tspec->fmt = fmt;
866   tspec->print_function = print_function;
867
868   tspec->field_width = field_width;
869   tspec->hexl_mode_trailer = (*s == 'z');
870   if (tspec->hexl_mode_trailer)
871     s++;
872
873   if (next != NULL)
874     *next = s;
875
876   return true;
877 }
878
879 /* Given a list of one or more input filenames FILE_LIST, set the global
880    file pointer IN_STREAM and the global string INPUT_FILENAME to the
881    first one that can be successfully opened. Modify FILE_LIST to
882    reference the next filename in the list.  A file name of "-" is
883    interpreted as standard input.  If any file open fails, give an error
884    message and return false.  */
885
886 static bool
887 open_next_file (void)
888 {
889   bool ok = true;
890
891   do
892     {
893       input_filename = *file_list;
894       if (input_filename == NULL)
895         return ok;
896       ++file_list;
897
898       if (STREQ (input_filename, "-"))
899         {
900           input_filename = _("standard input");
901           in_stream = stdin;
902           have_read_stdin = true;
903         }
904       else
905         {
906           in_stream = fopen (input_filename, "r");
907           if (in_stream == NULL)
908             {
909               error (0, errno, "%s", input_filename);
910               ok = false;
911             }
912         }
913     }
914   while (in_stream == NULL);
915
916   if (limit_bytes_to_format & !flag_dump_strings)
917     SETVBUF (in_stream, NULL, _IONBF, 0);
918   SET_BINARY (fileno (in_stream));
919
920   return ok;
921 }
922
923 /* Test whether there have been errors on in_stream, and close it if
924    it is not standard input.  Return false if there has been an error
925    on in_stream or stdout; return true otherwise.  This function will
926    report more than one error only if both a read and a write error
927    have occurred.  IN_ERRNO, if nonzero, is the error number
928    corresponding to the most recent action for IN_STREAM.  */
929
930 static bool
931 check_and_close (int in_errno)
932 {
933   bool ok = true;
934
935   if (in_stream != NULL)
936     {
937       if (ferror (in_stream))
938         {
939           error (0, in_errno, _("%s: read error"), input_filename);
940           if (! STREQ (file_list[-1], "-"))
941             fclose (in_stream);
942           ok = false;
943         }
944       else if (! STREQ (file_list[-1], "-") && fclose (in_stream) != 0)
945         {
946           error (0, errno, "%s", input_filename);
947           ok = false;
948         }
949
950       in_stream = NULL;
951     }
952
953   if (ferror (stdout))
954     {
955       error (0, 0, _("write error"));
956       ok = false;
957     }
958
959   return ok;
960 }
961
962 /* Decode the modern od format string S.  Append the decoded
963    representation to the global array SPEC, reallocating SPEC if
964    necessary.  Return true if S is valid.  */
965
966 static bool
967 decode_format_string (const char *s)
968 {
969   const char *s_orig = s;
970   assert (s != NULL);
971
972   while (*s != '\0')
973     {
974       const char *next;
975
976       if (n_specs_allocated <= n_specs)
977         spec = x2nrealloc (spec, &n_specs_allocated, sizeof *spec);
978
979       if (! decode_one_format (s_orig, s, &next, &spec[n_specs]))
980         return false;
981
982       assert (s != next);
983       s = next;
984       ++n_specs;
985     }
986
987   return true;
988 }
989
990 /* Given a list of one or more input filenames FILE_LIST, set the global
991    file pointer IN_STREAM to position N_SKIP in the concatenation of
992    those files.  If any file operation fails or if there are fewer than
993    N_SKIP bytes in the combined input, give an error message and return
994    false.  When possible, use seek rather than read operations to
995    advance IN_STREAM.  */
996
997 static bool
998 skip (uintmax_t n_skip)
999 {
1000   bool ok = true;
1001   int in_errno = 0;
1002
1003   if (n_skip == 0)
1004     return true;
1005
1006   while (in_stream != NULL)     /* EOF.  */
1007     {
1008       struct stat file_stats;
1009
1010       /* First try seeking.  For large offsets, this extra work is
1011          worthwhile.  If the offset is below some threshold it may be
1012          more efficient to move the pointer by reading.  There are two
1013          issues when trying to seek:
1014            - the file must be seekable.
1015            - before seeking to the specified position, make sure
1016              that the new position is in the current file.
1017              Try to do that by getting file's size using fstat.
1018              But that will work only for regular files.  */
1019
1020       if (fstat (fileno (in_stream), &file_stats) == 0)
1021         {
1022           /* The st_size field is valid only for regular files
1023              (and for symbolic links, which cannot occur here).
1024              If the number of bytes left to skip is at least
1025              as large as the size of the current file, we can
1026              decrement n_skip and go on to the next file.  */
1027
1028           if (S_ISREG (file_stats.st_mode) && 0 <= file_stats.st_size)
1029             {
1030               if ((uintmax_t) file_stats.st_size <= n_skip)
1031                 n_skip -= file_stats.st_size;
1032               else
1033                 {
1034                   if (fseeko (in_stream, n_skip, SEEK_CUR) != 0)
1035                     {
1036                       in_errno = errno;
1037                       ok = false;
1038                     }
1039                   n_skip = 0;
1040                 }
1041             }
1042
1043           /* If it's not a regular file with nonnegative size,
1044              position the file pointer by reading.  */
1045
1046           else
1047             {
1048               char buf[BUFSIZ];
1049               size_t n_bytes_read, n_bytes_to_read = BUFSIZ;
1050
1051               while (0 < n_skip)
1052                 {
1053                   if (n_skip < n_bytes_to_read)
1054                     n_bytes_to_read = n_skip;
1055                   n_bytes_read = fread (buf, 1, n_bytes_to_read, in_stream);
1056                   n_skip -= n_bytes_read;
1057                   if (n_bytes_read != n_bytes_to_read)
1058                     {
1059                       in_errno = errno;
1060                       ok = false;
1061                       n_skip = 0;
1062                       break;
1063                     }
1064                 }
1065             }
1066
1067           if (n_skip == 0)
1068             break;
1069         }
1070
1071       else   /* cannot fstat() file */
1072         {
1073           error (0, errno, "%s", input_filename);
1074           ok = false;
1075         }
1076
1077       ok &= check_and_close (in_errno);
1078
1079       ok &= open_next_file ();
1080     }
1081
1082   if (n_skip != 0)
1083     error (EXIT_FAILURE, 0, _("cannot skip past end of combined input"));
1084
1085   return ok;
1086 }
1087
1088 static void
1089 format_address_none (uintmax_t address ATTRIBUTE_UNUSED, char c ATTRIBUTE_UNUSED)
1090 {
1091 }
1092
1093 static void
1094 format_address_std (uintmax_t address, char c)
1095 {
1096   char buf[MAX_ADDRESS_LENGTH + 2];
1097   char *p = buf + sizeof buf;
1098   char const *pbound;
1099
1100   *--p = '\0';
1101   *--p = c;
1102   pbound = p - address_pad_len;
1103
1104   /* Use a special case of the code for each base.  This is measurably
1105      faster than generic code.  */
1106   switch (address_base)
1107     {
1108     case 8:
1109       do
1110         *--p = '0' + (address & 7);
1111       while ((address >>= 3) != 0);
1112       break;
1113
1114     case 10:
1115       do
1116         *--p = '0' + (address % 10);
1117       while ((address /= 10) != 0);
1118       break;
1119
1120     case 16:
1121       do
1122         *--p = "0123456789abcdef"[address & 15];
1123       while ((address >>= 4) != 0);
1124       break;
1125     }
1126
1127   while (pbound < p)
1128     *--p = '0';
1129
1130   fputs (p, stdout);
1131 }
1132
1133 static void
1134 format_address_paren (uintmax_t address, char c)
1135 {
1136   putchar ('(');
1137   format_address_std (address, ')');
1138   if (c)
1139     putchar (c);
1140 }
1141
1142 static void
1143 format_address_label (uintmax_t address, char c)
1144 {
1145   format_address_std (address, ' ');
1146   format_address_paren (address + pseudo_offset, c);
1147 }
1148
1149 /* Write N_BYTES bytes from CURR_BLOCK to standard output once for each
1150    of the N_SPEC format specs.  CURRENT_OFFSET is the byte address of
1151    CURR_BLOCK in the concatenation of input files, and it is printed
1152    (optionally) only before the output line associated with the first
1153    format spec.  When duplicate blocks are being abbreviated, the output
1154    for a sequence of identical input blocks is the output for the first
1155    block followed by an asterisk alone on a line.  It is valid to compare
1156    the blocks PREV_BLOCK and CURR_BLOCK only when N_BYTES == BYTES_PER_BLOCK.
1157    That condition may be false only for the last input block -- and then
1158    only when it has not been padded to length BYTES_PER_BLOCK.  */
1159
1160 static void
1161 write_block (uintmax_t current_offset, size_t n_bytes,
1162              const char *prev_block, const char *curr_block)
1163 {
1164   static bool first = true;
1165   static bool prev_pair_equal = false;
1166
1167 #define EQUAL_BLOCKS(b1, b2) (memcmp ((b1), (b2), bytes_per_block) == 0)
1168
1169   if (abbreviate_duplicate_blocks
1170       && !first && n_bytes == bytes_per_block
1171       && EQUAL_BLOCKS (prev_block, curr_block))
1172     {
1173       if (prev_pair_equal)
1174         {
1175           /* The two preceding blocks were equal, and the current
1176              block is the same as the last one, so print nothing.  */
1177         }
1178       else
1179         {
1180           printf ("*\n");
1181           prev_pair_equal = true;
1182         }
1183     }
1184   else
1185     {
1186       size_t i;
1187
1188       prev_pair_equal = false;
1189       for (i = 0; i < n_specs; i++)
1190         {
1191           if (i == 0)
1192             format_address (current_offset, '\0');
1193           else
1194             printf ("%*s", address_pad_len, "");
1195           (*spec[i].print_function) (n_bytes, curr_block, spec[i].fmt_string);
1196           if (spec[i].hexl_mode_trailer)
1197             {
1198               /* space-pad out to full line width, then dump the trailer */
1199               int datum_width = width_bytes[spec[i].size];
1200               int blank_fields = (bytes_per_block - n_bytes) / datum_width;
1201               int field_width = spec[i].field_width + 1;
1202               printf ("%*s", blank_fields * field_width, "");
1203               dump_hexl_mode_trailer (n_bytes, curr_block);
1204             }
1205           putchar ('\n');
1206         }
1207     }
1208   first = false;
1209 }
1210
1211 /* Read a single byte into *C from the concatenation of the input files
1212    named in the global array FILE_LIST.  On the first call to this
1213    function, the global variable IN_STREAM is expected to be an open
1214    stream associated with the input file INPUT_FILENAME.  If IN_STREAM
1215    is at end-of-file, close it and update the global variables IN_STREAM
1216    and INPUT_FILENAME so they correspond to the next file in the list.
1217    Then try to read a byte from the newly opened file.  Repeat if
1218    necessary until EOF is reached for the last file in FILE_LIST, then
1219    set *C to EOF and return.  Subsequent calls do likewise.  Return
1220    true if successful.  */
1221
1222 static bool
1223 read_char (int *c)
1224 {
1225   bool ok = true;
1226
1227   *c = EOF;
1228
1229   while (in_stream != NULL)     /* EOF.  */
1230     {
1231       *c = fgetc (in_stream);
1232
1233       if (*c != EOF)
1234         break;
1235
1236       ok &= check_and_close (errno);
1237
1238       ok &= open_next_file ();
1239     }
1240
1241   return ok;
1242 }
1243
1244 /* Read N bytes into BLOCK from the concatenation of the input files
1245    named in the global array FILE_LIST.  On the first call to this
1246    function, the global variable IN_STREAM is expected to be an open
1247    stream associated with the input file INPUT_FILENAME.  If all N
1248    bytes cannot be read from IN_STREAM, close IN_STREAM and update
1249    the global variables IN_STREAM and INPUT_FILENAME.  Then try to
1250    read the remaining bytes from the newly opened file.  Repeat if
1251    necessary until EOF is reached for the last file in FILE_LIST.
1252    On subsequent calls, don't modify BLOCK and return true.  Set
1253    *N_BYTES_IN_BUFFER to the number of bytes read.  If an error occurs,
1254    it will be detected through ferror when the stream is about to be
1255    closed.  If there is an error, give a message but continue reading
1256    as usual and return false.  Otherwise return true.  */
1257
1258 static bool
1259 read_block (size_t n, char *block, size_t *n_bytes_in_buffer)
1260 {
1261   bool ok = true;
1262
1263   assert (0 < n && n <= bytes_per_block);
1264
1265   *n_bytes_in_buffer = 0;
1266
1267   if (n == 0)
1268     return true;
1269
1270   while (in_stream != NULL)     /* EOF.  */
1271     {
1272       size_t n_needed;
1273       size_t n_read;
1274
1275       n_needed = n - *n_bytes_in_buffer;
1276       n_read = fread (block + *n_bytes_in_buffer, 1, n_needed, in_stream);
1277
1278       *n_bytes_in_buffer += n_read;
1279
1280       if (n_read == n_needed)
1281         break;
1282
1283       ok &= check_and_close (errno);
1284
1285       ok &= open_next_file ();
1286     }
1287
1288   return ok;
1289 }
1290
1291 /* Return the least common multiple of the sizes associated
1292    with the format specs.  */
1293
1294 static int
1295 get_lcm (void)
1296 {
1297   size_t i;
1298   int l_c_m = 1;
1299
1300   for (i = 0; i < n_specs; i++)
1301     l_c_m = lcm (l_c_m, width_bytes[spec[i].size]);
1302   return l_c_m;
1303 }
1304
1305 /* If S is a valid traditional offset specification with an optional
1306    leading '+' return true and set *OFFSET to the offset it denotes.  */
1307
1308 static bool
1309 parse_old_offset (const char *s, uintmax_t *offset)
1310 {
1311   int radix;
1312
1313   if (*s == '\0')
1314     return false;
1315
1316   /* Skip over any leading '+'. */
1317   if (s[0] == '+')
1318     ++s;
1319
1320   /* Determine the radix we'll use to interpret S.  If there is a `.',
1321      it's decimal, otherwise, if the string begins with `0X'or `0x',
1322      it's hexadecimal, else octal.  */
1323   if (strchr (s, '.') != NULL)
1324     radix = 10;
1325   else
1326     {
1327       if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X'))
1328         radix = 16;
1329       else
1330         radix = 8;
1331     }
1332
1333   return xstrtoumax (s, NULL, radix, offset, "Bb") == LONGINT_OK;
1334 }
1335
1336 /* Read a chunk of size BYTES_PER_BLOCK from the input files, write the
1337    formatted block to standard output, and repeat until the specified
1338    maximum number of bytes has been read or until all input has been
1339    processed.  If the last block read is smaller than BYTES_PER_BLOCK
1340    and its size is not a multiple of the size associated with a format
1341    spec, extend the input block with zero bytes until its length is a
1342    multiple of all format spec sizes.  Write the final block.  Finally,
1343    write on a line by itself the offset of the byte after the last byte
1344    read.  Accumulate return values from calls to read_block and
1345    check_and_close, and if any was false, return false.
1346    Otherwise, return true.  */
1347
1348 static bool
1349 dump (void)
1350 {
1351   char *block[2];
1352   uintmax_t current_offset;
1353   bool idx = false;
1354   bool ok = true;
1355   size_t n_bytes_read;
1356
1357   block[0] = xnmalloc (2, bytes_per_block);
1358   block[1] = block[0] + bytes_per_block;
1359
1360   current_offset = n_bytes_to_skip;
1361
1362   if (limit_bytes_to_format)
1363     {
1364       while (1)
1365         {
1366           size_t n_needed;
1367           if (current_offset >= end_offset)
1368             {
1369               n_bytes_read = 0;
1370               break;
1371             }
1372           n_needed = MIN (end_offset - current_offset,
1373                           (uintmax_t) bytes_per_block);
1374           ok &= read_block (n_needed, block[idx], &n_bytes_read);
1375           if (n_bytes_read < bytes_per_block)
1376             break;
1377           assert (n_bytes_read == bytes_per_block);
1378           write_block (current_offset, n_bytes_read,
1379                        block[!idx], block[idx]);
1380           current_offset += n_bytes_read;
1381           idx = !idx;
1382         }
1383     }
1384   else
1385     {
1386       while (1)
1387         {
1388           ok &= read_block (bytes_per_block, block[idx], &n_bytes_read);
1389           if (n_bytes_read < bytes_per_block)
1390             break;
1391           assert (n_bytes_read == bytes_per_block);
1392           write_block (current_offset, n_bytes_read,
1393                        block[!idx], block[idx]);
1394           current_offset += n_bytes_read;
1395           idx = !idx;
1396         }
1397     }
1398
1399   if (n_bytes_read > 0)
1400     {
1401       int l_c_m;
1402       size_t bytes_to_write;
1403
1404       l_c_m = get_lcm ();
1405
1406       /* Make bytes_to_write the smallest multiple of l_c_m that
1407          is at least as large as n_bytes_read.  */
1408       bytes_to_write = l_c_m * ((n_bytes_read + l_c_m - 1) / l_c_m);
1409
1410       memset (block[idx] + n_bytes_read, 0, bytes_to_write - n_bytes_read);
1411       write_block (current_offset, bytes_to_write,
1412                    block[!idx], block[idx]);
1413       current_offset += n_bytes_read;
1414     }
1415
1416   format_address (current_offset, '\n');
1417
1418   if (limit_bytes_to_format && current_offset >= end_offset)
1419     ok &= check_and_close (0);
1420
1421   free (block[0]);
1422
1423   return ok;
1424 }
1425
1426 /* STRINGS mode.  Find each "string constant" in the input.
1427    A string constant is a run of at least `string_min' ASCII
1428    graphic (or formatting) characters terminated by a null.
1429    Based on a function written by Richard Stallman for a
1430    traditional version of od.  Return true if successful.  */
1431
1432 static bool
1433 dump_strings (void)
1434 {
1435   size_t bufsize = MAX (100, string_min);
1436   char *buf = xmalloc (bufsize);
1437   uintmax_t address = n_bytes_to_skip;
1438   bool ok = true;
1439
1440   while (1)
1441     {
1442       size_t i;
1443       int c;
1444
1445       /* See if the next `string_min' chars are all printing chars.  */
1446     tryline:
1447
1448       if (limit_bytes_to_format
1449           && (end_offset < string_min || end_offset - string_min <= address))
1450         break;
1451
1452       for (i = 0; i < string_min; i++)
1453         {
1454           ok &= read_char (&c);
1455           address++;
1456           if (c < 0)
1457             {
1458               free (buf);
1459               return ok;
1460             }
1461           if (!ISPRINT (c))
1462             /* Found a non-printing.  Try again starting with next char.  */
1463             goto tryline;
1464           buf[i] = c;
1465         }
1466
1467       /* We found a run of `string_min' printable characters.
1468          Now see if it is terminated with a null byte.  */
1469       while (!limit_bytes_to_format || address < end_offset)
1470         {
1471           if (i == bufsize)
1472             {
1473               buf = x2realloc (buf, &bufsize);
1474             }
1475           ok &= read_char (&c);
1476           address++;
1477           if (c < 0)
1478             {
1479               free (buf);
1480               return ok;
1481             }
1482           if (c == '\0')
1483             break;              /* It is; print this string.  */
1484           if (!ISPRINT (c))
1485             goto tryline;       /* It isn't; give up on this string.  */
1486           buf[i++] = c;         /* String continues; store it all.  */
1487         }
1488
1489       /* If we get here, the string is all printable and null-terminated,
1490          so print it.  It is all in `buf' and `i' is its length.  */
1491       buf[i] = 0;
1492       format_address (address - i - 1, ' ');
1493
1494       for (i = 0; (c = buf[i]); i++)
1495         {
1496           switch (c)
1497             {
1498             case '\a':
1499               fputs ("\\a", stdout);
1500               break;
1501
1502             case '\b':
1503               fputs ("\\b", stdout);
1504               break;
1505
1506             case '\f':
1507               fputs ("\\f", stdout);
1508               break;
1509
1510             case '\n':
1511               fputs ("\\n", stdout);
1512               break;
1513
1514             case '\r':
1515               fputs ("\\r", stdout);
1516               break;
1517
1518             case '\t':
1519               fputs ("\\t", stdout);
1520               break;
1521
1522             case '\v':
1523               fputs ("\\v", stdout);
1524               break;
1525
1526             default:
1527               putc (c, stdout);
1528             }
1529         }
1530       putchar ('\n');
1531     }
1532
1533   /* We reach this point only if we search through
1534      (max_bytes_to_format - string_min) bytes before reaching EOF.  */
1535
1536   free (buf);
1537
1538   ok &= check_and_close (0);
1539   return ok;
1540 }
1541
1542 int
1543 main (int argc, char **argv)
1544 {
1545   int c;
1546   int n_files;
1547   size_t i;
1548   int l_c_m;
1549   size_t desired_width IF_LINT (= 0);
1550   bool modern = false;
1551   bool width_specified = false;
1552   bool ok = true;
1553
1554   /* The old-style `pseudo starting address' to be printed in parentheses
1555      after any true address.  */
1556   uintmax_t pseudo_start IF_LINT (= 0);
1557
1558   initialize_main (&argc, &argv);
1559   program_name = argv[0];
1560   setlocale (LC_ALL, "");
1561   bindtextdomain (PACKAGE, LOCALEDIR);
1562   textdomain (PACKAGE);
1563
1564   atexit (close_stdout);
1565
1566   for (i = 0; i <= MAX_INTEGRAL_TYPE_SIZE; i++)
1567     integral_type_size[i] = NO_SIZE;
1568
1569   integral_type_size[sizeof (char)] = CHAR;
1570   integral_type_size[sizeof (short int)] = SHORT;
1571   integral_type_size[sizeof (int)] = INT;
1572   integral_type_size[sizeof (long int)] = LONG;
1573 #if HAVE_UNSIGNED_LONG_LONG
1574   /* If `long int' and `long long int' have the same size, it's fine
1575      to overwrite the entry for `long' with this one.  */
1576   integral_type_size[sizeof (ulonglong_t)] = LONG_LONG;
1577 #endif
1578
1579   for (i = 0; i <= MAX_FP_TYPE_SIZE; i++)
1580     fp_type_size[i] = NO_SIZE;
1581
1582   fp_type_size[sizeof (float)] = FLOAT_SINGLE;
1583   /* The array entry for `double' is filled in after that for LONG_DOUBLE
1584      so that if `long double' is the same type or if long double isn't
1585      supported FLOAT_LONG_DOUBLE will never be used.  */
1586   fp_type_size[sizeof (LONG_DOUBLE)] = FLOAT_LONG_DOUBLE;
1587   fp_type_size[sizeof (double)] = FLOAT_DOUBLE;
1588
1589   n_specs = 0;
1590   n_specs_allocated = 0;
1591   spec = NULL;
1592
1593   format_address = format_address_std;
1594   address_base = 8;
1595   address_pad_len = 7;
1596   flag_dump_strings = false;
1597
1598   while ((c = getopt_long (argc, argv, short_options, long_options, NULL))
1599          != -1)
1600     {
1601       uintmax_t tmp;
1602       enum strtol_error s_err;
1603
1604       switch (c)
1605         {
1606         case 'A':
1607           modern = true;
1608           switch (optarg[0])
1609             {
1610             case 'd':
1611               format_address = format_address_std;
1612               address_base = 10;
1613               address_pad_len = 7;
1614               break;
1615             case 'o':
1616               format_address = format_address_std;
1617               address_base = 8;
1618               address_pad_len = 7;
1619               break;
1620             case 'x':
1621               format_address = format_address_std;
1622               address_base = 16;
1623               address_pad_len = 6;
1624               break;
1625             case 'n':
1626               format_address = format_address_none;
1627               address_pad_len = 0;
1628               break;
1629             default:
1630               error (EXIT_FAILURE, 0,
1631                      _("invalid output address radix `%c'; \
1632 it must be one character from [doxn]"),
1633                      optarg[0]);
1634               break;
1635             }
1636           break;
1637
1638         case 'j':
1639           modern = true;
1640           s_err = xstrtoumax (optarg, NULL, 0, &n_bytes_to_skip, "bkm");
1641           if (s_err != LONGINT_OK)
1642             STRTOL_FATAL_ERROR (optarg, _("skip argument"), s_err);
1643           break;
1644
1645         case 'N':
1646           modern = true;
1647           limit_bytes_to_format = true;
1648
1649           s_err = xstrtoumax (optarg, NULL, 0, &max_bytes_to_format, "bkm");
1650           if (s_err != LONGINT_OK)
1651             STRTOL_FATAL_ERROR (optarg, _("limit argument"), s_err);
1652           break;
1653
1654         case 'S':
1655           modern = true;
1656           if (optarg == NULL)
1657             string_min = 3;
1658           else
1659             {
1660               s_err = xstrtoumax (optarg, NULL, 0, &tmp, "bkm");
1661               if (s_err != LONGINT_OK)
1662                 STRTOL_FATAL_ERROR (optarg, _("minimum string length"), s_err);
1663
1664               /* The minimum string length may be no larger than SIZE_MAX,
1665                  since we may allocate a buffer of this size.  */
1666               if (SIZE_MAX < tmp)
1667                 error (EXIT_FAILURE, 0, _("%s is too large"), optarg);
1668
1669               string_min = tmp;
1670             }
1671           flag_dump_strings = true;
1672           break;
1673
1674         case 't':
1675           modern = true;
1676           ok &= decode_format_string (optarg);
1677           break;
1678
1679         case 'v':
1680           modern = true;
1681           abbreviate_duplicate_blocks = false;
1682           break;
1683
1684         case TRADITIONAL_OPTION:
1685           traditional = true;
1686           break;
1687
1688           /* The next several cases map the traditional format
1689              specification options to the corresponding modern format
1690              specs.  GNU od accepts any combination of old- and
1691              new-style options.  Format specification options accumulate.
1692              The obsolescent and undocumented formats are compatible
1693              with FreeBSD 4.10 od.  */
1694
1695 #define CASE_OLD_ARG(old_char,new_string)               \
1696         case old_char:                                  \
1697           ok &= decode_format_string (new_string);      \
1698           break
1699
1700           CASE_OLD_ARG ('a', "a");
1701           CASE_OLD_ARG ('b', "o1");
1702           CASE_OLD_ARG ('c', "c");
1703           CASE_OLD_ARG ('D', "u4"); /* obsolescent and undocumented */
1704           CASE_OLD_ARG ('d', "u2");
1705         case 'F': /* obsolescent and undocumented alias */
1706           CASE_OLD_ARG ('e', "fD"); /* obsolescent and undocumented */
1707           CASE_OLD_ARG ('f', "fF");
1708         case 'X': /* obsolescent and undocumented alias */
1709           CASE_OLD_ARG ('H', "x4"); /* obsolescent and undocumented */
1710           CASE_OLD_ARG ('i', "dI");
1711         case 'I': case 'L': /* obsolescent and undocumented aliases */
1712           CASE_OLD_ARG ('l', "dL");
1713           CASE_OLD_ARG ('O', "o4"); /* obsolesent and undocumented */
1714         case 'B': /* obsolescent and undocumented alias */
1715           CASE_OLD_ARG ('o', "o2");
1716           CASE_OLD_ARG ('s', "d2");
1717         case 'h': /* obsolescent and undocumented alias */
1718           CASE_OLD_ARG ('x', "x2");
1719
1720 #undef CASE_OLD_ARG
1721
1722         case 'w':
1723           modern = true;
1724           width_specified = true;
1725           if (optarg == NULL)
1726             {
1727               desired_width = 32;
1728             }
1729           else
1730             {
1731               uintmax_t w_tmp;
1732               s_err = xstrtoumax (optarg, NULL, 10, &w_tmp, "");
1733               if (s_err != LONGINT_OK)
1734                 STRTOL_FATAL_ERROR (optarg, _("width specification"), s_err);
1735               if (SIZE_MAX < w_tmp)
1736                 error (EXIT_FAILURE, 0, _("%s is too large"), optarg);
1737               desired_width = w_tmp;
1738             }
1739           break;
1740
1741         case_GETOPT_HELP_CHAR;
1742
1743         case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
1744
1745         default:
1746           usage (EXIT_FAILURE);
1747           break;
1748         }
1749     }
1750
1751   if (!ok)
1752     exit (EXIT_FAILURE);
1753
1754   if (flag_dump_strings && n_specs > 0)
1755     error (EXIT_FAILURE, 0,
1756            _("no type may be specified when dumping strings"));
1757
1758   n_files = argc - optind;
1759
1760   /* If the --traditional option is used, there may be from
1761      0 to 3 remaining command line arguments;  handle each case
1762      separately.
1763         od [file] [[+]offset[.][b] [[+]label[.][b]]]
1764      The offset and label have the same syntax.
1765
1766      If --traditional is not given, and if no modern options are
1767      given, and if the offset begins with + or (if there are two
1768      operands) a digit, accept only this form, as per POSIX:
1769         od [file] [[+]offset[.][b]]
1770   */
1771
1772   if (!modern | traditional)
1773     {
1774       uintmax_t o1;
1775       uintmax_t o2;
1776
1777       switch (n_files)
1778         {
1779         case 1:
1780           if ((traditional || argv[optind][0] == '+')
1781               && parse_old_offset (argv[optind], &o1))
1782             {
1783               n_bytes_to_skip = o1;
1784               --n_files;
1785               ++argv;
1786             }
1787           break;
1788
1789         case 2:
1790           if ((traditional || argv[optind + 1][0] == '+'
1791                || ISDIGIT (argv[optind + 1][0]))
1792               && parse_old_offset (argv[optind + 1], &o2))
1793             {
1794               if (traditional && parse_old_offset (argv[optind], &o1))
1795                 {
1796                   n_bytes_to_skip = o1;
1797                   flag_pseudo_start = true;
1798                   pseudo_start = o2;
1799                   argv += 2;
1800                   n_files -= 2;
1801                 }
1802               else
1803                 {
1804                   n_bytes_to_skip = o2;
1805                   --n_files;
1806                   argv[optind + 1] = argv[optind];
1807                   ++argv;
1808                 }
1809             }
1810           break;
1811
1812         case 3:
1813           if (traditional
1814               && parse_old_offset (argv[optind + 1], &o1)
1815               && parse_old_offset (argv[optind + 2], &o2))
1816             {
1817               n_bytes_to_skip = o1;
1818               flag_pseudo_start = true;
1819               pseudo_start = o2;
1820               argv[optind + 2] = argv[optind];
1821               argv += 2;
1822               n_files -= 2;
1823             }
1824           break;
1825         }
1826
1827       if (traditional && 1 < n_files)
1828         {
1829           error (0, 0, _("extra operand %s"), quote (argv[optind + 1]));
1830           error (0, 0, "%s\n",
1831                  _("Compatibility mode supports at most one file."));
1832           usage (EXIT_FAILURE);
1833         }
1834     }
1835
1836   if (flag_pseudo_start)
1837     {
1838       if (format_address == format_address_none)
1839         {
1840           address_base = 8;
1841           address_pad_len = 7;
1842           format_address = format_address_paren;
1843         }
1844       else
1845         format_address = format_address_label;
1846     }
1847
1848   if (limit_bytes_to_format)
1849     {
1850       end_offset = n_bytes_to_skip + max_bytes_to_format;
1851       if (end_offset < n_bytes_to_skip)
1852         error (EXIT_FAILURE, 0, _("skip-bytes + read-bytes is too large"));
1853     }
1854
1855   if (n_specs == 0)
1856     decode_format_string ("oS");
1857
1858   if (n_files > 0)
1859     {
1860       /* Set the global pointer FILE_LIST so that it
1861          references the first file-argument on the command-line.  */
1862
1863       file_list = (char const *const *) &argv[optind];
1864     }
1865   else
1866     {
1867       /* No files were listed on the command line.
1868          Set the global pointer FILE_LIST so that it
1869          references the null-terminated list of one name: "-".  */
1870
1871       file_list = default_file_list;
1872     }
1873
1874   /* open the first input file */
1875   ok = open_next_file ();
1876   if (in_stream == NULL)
1877     goto cleanup;
1878
1879   /* skip over any unwanted header bytes */
1880   ok &= skip (n_bytes_to_skip);
1881   if (in_stream == NULL)
1882     goto cleanup;
1883
1884   pseudo_offset = (flag_pseudo_start ? pseudo_start - n_bytes_to_skip : 0);
1885
1886   /* Compute output block length.  */
1887   l_c_m = get_lcm ();
1888
1889   if (width_specified)
1890     {
1891       if (desired_width != 0 && desired_width % l_c_m == 0)
1892         bytes_per_block = desired_width;
1893       else
1894         {
1895           error (0, 0, _("warning: invalid width %lu; using %d instead"),
1896                  (unsigned long int) desired_width, l_c_m);
1897           bytes_per_block = l_c_m;
1898         }
1899     }
1900   else
1901     {
1902       if (l_c_m < DEFAULT_BYTES_PER_BLOCK)
1903         bytes_per_block = l_c_m * (DEFAULT_BYTES_PER_BLOCK / l_c_m);
1904       else
1905         bytes_per_block = l_c_m;
1906     }
1907
1908 #ifdef DEBUG
1909   for (i = 0; i < n_specs; i++)
1910     {
1911       printf (_("%d: fmt=\"%s\" width=%d\n"),
1912               i, spec[i].fmt_string, width_bytes[spec[i].size]);
1913     }
1914 #endif
1915
1916   ok &= (flag_dump_strings ? dump_strings () : dump ());
1917
1918 cleanup:;
1919
1920   if (have_read_stdin && fclose (stdin) == EOF)
1921     error (EXIT_FAILURE, errno, _("standard input"));
1922
1923   exit (ok ? EXIT_SUCCESS : EXIT_FAILURE);
1924 }