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