Standardize on the vi editing directives being on the first line.
[oweals/busybox.git] / coreutils / od.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * od implementation for busybox
4  * Based on code from util-linux v 2.11l
5  *
6  * Copyright (c) 1990
7  *      The Regents of the University of California.  All rights reserved.
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22  *
23  * Original copyright notice is retained at the end of this file.
24  */
25
26 #include <ctype.h>
27 #include <string.h>
28 #include <getopt.h>
29 #include <stdlib.h>
30 #include "busybox.h"
31 #include "dump.h"
32
33 #define isdecdigit(c) (isdigit)(c)
34 #define ishexdigit(c) (isxdigit)(c)
35
36 static void
37 odoffset(int argc, char ***argvp)
38 {
39         char *num, *p;
40         int base;
41         char *end;
42
43         /*
44          * The offset syntax of od(1) was genuinely bizarre.  First, if
45          * it started with a plus it had to be an offset.  Otherwise, if
46          * there were at least two arguments, a number or lower-case 'x'
47          * followed by a number makes it an offset.  By default it was
48          * octal; if it started with 'x' or '0x' it was hex.  If it ended
49          * in a '.', it was decimal.  If a 'b' or 'B' was appended, it
50          * multiplied the number by 512 or 1024 byte units.  There was
51          * no way to assign a block count to a hex offset.
52          *
53          * We assumes it's a file if the offset is bad.
54          */
55         p = **argvp;
56
57         if (!p) {
58                 /* hey someone is probably piping to us ... */
59                 return;
60         }
61
62         if ((*p != '+')
63                 && (argc < 2
64                         || (!isdecdigit(p[0])
65                                 && ((p[0] != 'x') || !ishexdigit(p[1])))))
66                 return;
67
68         base = 0;
69         /*
70          * bb_dump_skip over leading '+', 'x[0-9a-fA-f]' or '0x', and
71          * set base.
72          */
73         if (p[0] == '+')
74                 ++p;
75         if (p[0] == 'x' && ishexdigit(p[1])) {
76                 ++p;
77                 base = 16;
78         } else if (p[0] == '0' && p[1] == 'x') {
79                 p += 2;
80                 base = 16;
81         }
82
83         /* bb_dump_skip over the number */
84         if (base == 16)
85                 for (num = p; ishexdigit(*p); ++p);
86         else
87                 for (num = p; isdecdigit(*p); ++p);
88
89         /* check for no number */
90         if (num == p)
91                 return;
92
93         /* if terminates with a '.', base is decimal */
94         if (*p == '.') {
95                 if (base)
96                         return;
97                 base = 10;
98         }
99
100         bb_dump_skip = strtol(num, &end, base ? base : 8);
101
102         /* if end isn't the same as p, we got a non-octal digit */
103         if (end != p)
104                 bb_dump_skip = 0;
105         else {
106                 if (*p) {
107                         if (*p == 'b') {
108                                 bb_dump_skip *= 512;
109                                 ++p;
110                         } else if (*p == 'B') {
111                                 bb_dump_skip *= 1024;
112                                 ++p;
113                         }
114                 }
115                 if (*p)
116                         bb_dump_skip = 0;
117                 else {
118                         ++*argvp;
119                         /*
120                          * If the offset uses a non-octal base, the base of
121                          * the offset is changed as well.  This isn't pretty,
122                          * but it's easy.
123                          */
124 #define TYPE_OFFSET     7
125                         {
126                                 char x_or_d;
127                                 if (base == 16) {
128                                         x_or_d = 'x';
129                                         goto DO_X_OR_D;
130                                 }
131                                 if (base == 10) {
132                                         x_or_d = 'd';
133                                 DO_X_OR_D:
134                                         bb_dump_fshead->nextfu->fmt[TYPE_OFFSET]
135                                                 = bb_dump_fshead->nextfs->nextfu->fmt[TYPE_OFFSET]
136                                                 = x_or_d;
137                                 }
138                         }
139                 }
140         }
141 }
142
143 static const char * const add_strings[] = {
144         "16/1 \"%3_u \" \"\\n\"",                               /* a */
145         "8/2 \" %06o \" \"\\n\"",                               /* B, o */
146         "16/1 \"%03o \" \"\\n\"",                               /* b */
147         "16/1 \"%3_c \" \"\\n\"",                               /* c */
148         "8/2 \"  %05u \" \"\\n\"",                              /* d */
149         "4/4 \"     %010u \" \"\\n\"",                  /* D */
150         "2/8 \"          %21.14e \" \"\\n\"",   /* e (undocumented in od), F */
151         "4/4 \" %14.7e \" \"\\n\"",                             /* f */
152         "4/4 \"       %08x \" \"\\n\"",                 /* H, X */
153         "8/2 \"   %04x \" \"\\n\"",                             /* h, x */
154         "4/4 \"    %11d \" \"\\n\"",                    /* I, L, l */
155         "8/2 \" %6d \" \"\\n\"",                                /* i */
156         "4/4 \"    %011o \" \"\\n\"",                   /* O */
157 };
158
159 static const char od_opts[] = "aBbcDdeFfHhIiLlOoXxv";
160
161 static const char od_o2si[] = {
162         0, 1, 2, 3, 5,
163         4, 6, 6, 7, 8,
164         9, 0xa, 0xb, 0xa, 0xa,
165         0xb, 1, 8, 9,
166 };
167
168 int od_main(int argc, char **argv)
169 {
170         int ch;
171         int first = 1;
172         char *p;
173         bb_dump_vflag = FIRST;
174         bb_dump_length = -1;
175
176         while ((ch = getopt(argc, argv, od_opts)) > 0) {
177                 if (ch == 'v') {
178                         bb_dump_vflag = ALL;
179                 } else if (((p = strchr(od_opts, ch)) != NULL) && (*p != '\0')) {
180                         if (first) {
181                                 first = 0;
182                                 bb_dump_add("\"%07.7_Ao\n\"");
183                                 bb_dump_add("\"%07.7_ao  \"");
184                         } else {
185                                 bb_dump_add("\"         \"");
186                         }
187                         bb_dump_add(add_strings[(int)od_o2si[(p-od_opts)]]);
188                 } else {        /* P, p, s, w, or other unhandled */
189                         bb_show_usage();
190                 }
191         }
192         if (!bb_dump_fshead) {
193                 bb_dump_add("\"%07.7_Ao\n\"");
194                 bb_dump_add("\"%07.7_ao  \" 8/2 \"%06o \" \"\\n\"");
195         }
196
197         argc -= optind;
198         argv += optind;
199
200         odoffset(argc, &argv);
201
202         return(bb_dump_dump(argv));
203 }
204
205 /*-
206  * Copyright (c) 1990 The Regents of the University of California.
207  * All rights reserved.
208  *
209  * Redistribution and use in source and binary forms, with or without
210  * modification, are permitted provided that the following conditions
211  * are met:
212  * 1. Redistributions of source code must retain the above copyright
213  *    notice, this list of conditions and the following disclaimer.
214  * 2. Redistributions in binary form must reproduce the above copyright
215  *    notice, this list of conditions and the following disclaimer in the
216  *    documentation and/or other materials provided with the distribution.
217  * 3. Neither the name of the University nor the names of its contributors
218  *    may be used to endorse or promote products derived from this software
219  *    without specific prior written permission.
220  *
221  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
222  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
223  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
224  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
225  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
226  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
227  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
228  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
229  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
230  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
231  * SUCH DAMAGE.
232  */