blob: b70cb85e27a736c58194b62f78d03d70cf5aae6c [file] [log] [blame]
Glenn L McGrath60281112001-11-02 11:39:46 +00001/*
Glenn L McGrathe16860d2002-11-10 22:16:09 +00002 * od implementation for busybox
3 * Based on code from util-linux v 2.11l
Glenn L McGrath60281112001-11-02 11:39:46 +00004 *
Glenn L McGrathe16860d2002-11-10 22:16:09 +00005 * Copyright (c) 1990
6 * The Regents of the University of California. All rights reserved.
Glenn L McGrath60281112001-11-02 11:39:46 +00007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
Glenn L McGrathe16860d2002-11-10 22:16:09 +000022 * Original copyright notice is retained at the end of this file.
Glenn L McGrath60281112001-11-02 11:39:46 +000023 */
24
Glenn L McGrathe16860d2002-11-10 22:16:09 +000025#include <ctype.h>
Manuel Novoa III cad53642003-03-19 09:13:01 +000026#include <string.h>
Glenn L McGrathe16860d2002-11-10 22:16:09 +000027#include <getopt.h>
Glenn L McGrath60281112001-11-02 11:39:46 +000028#include <stdlib.h>
Glenn L McGrath60281112001-11-02 11:39:46 +000029#include "busybox.h"
Manuel Novoa III cad53642003-03-19 09:13:01 +000030#include "dump.h"
Glenn L McGrath60281112001-11-02 11:39:46 +000031
Manuel Novoa III cad53642003-03-19 09:13:01 +000032#define isdecdigit(c) (isdigit)(c)
33#define ishexdigit(c) (isxdigit)(c)
Glenn L McGrathe16860d2002-11-10 22:16:09 +000034
35static void
36odoffset(int argc, char ***argvp)
Glenn L McGrath60281112001-11-02 11:39:46 +000037{
Glenn L McGrathe16860d2002-11-10 22:16:09 +000038 register char *num, *p;
39 int base;
40 char *end;
Glenn L McGrath60281112001-11-02 11:39:46 +000041
42 /*
Glenn L McGrathe16860d2002-11-10 22:16:09 +000043 * The offset syntax of od(1) was genuinely bizarre. First, if
44 * it started with a plus it had to be an offset. Otherwise, if
45 * there were at least two arguments, a number or lower-case 'x'
46 * followed by a number makes it an offset. By default it was
47 * octal; if it started with 'x' or '0x' it was hex. If it ended
48 * in a '.', it was decimal. If a 'b' or 'B' was appended, it
49 * multiplied the number by 512 or 1024 byte units. There was
50 * no way to assign a block count to a hex offset.
Glenn L McGrath60281112001-11-02 11:39:46 +000051 *
Glenn L McGrathe16860d2002-11-10 22:16:09 +000052 * We assumes it's a file if the offset is bad.
Glenn L McGrath60281112001-11-02 11:39:46 +000053 */
Glenn L McGrathe16860d2002-11-10 22:16:09 +000054 p = **argvp;
Glenn L McGrath60281112001-11-02 11:39:46 +000055
Glenn L McGrathe16860d2002-11-10 22:16:09 +000056 if (!p) {
57 /* hey someone is probably piping to us ... */
58 return;
Glenn L McGrath60281112001-11-02 11:39:46 +000059 }
Glenn L McGrath60281112001-11-02 11:39:46 +000060
Manuel Novoa III cad53642003-03-19 09:13:01 +000061 if ((*p != '+')
62 && (argc < 2
63 || (!isdecdigit(p[0])
64 && ((p[0] != 'x') || !ishexdigit(p[1])))))
Glenn L McGrathe16860d2002-11-10 22:16:09 +000065 return;
Glenn L McGrath60281112001-11-02 11:39:46 +000066
Glenn L McGrathe16860d2002-11-10 22:16:09 +000067 base = 0;
68 /*
Manuel Novoa III cad53642003-03-19 09:13:01 +000069 * bb_dump_skip over leading '+', 'x[0-9a-fA-f]' or '0x', and
Glenn L McGrathe16860d2002-11-10 22:16:09 +000070 * set base.
71 */
72 if (p[0] == '+')
73 ++p;
74 if (p[0] == 'x' && ishexdigit(p[1])) {
75 ++p;
76 base = 16;
77 } else if (p[0] == '0' && p[1] == 'x') {
78 p += 2;
79 base = 16;
Glenn L McGrath60281112001-11-02 11:39:46 +000080 }
81
Manuel Novoa III cad53642003-03-19 09:13:01 +000082 /* bb_dump_skip over the number */
Glenn L McGrathe16860d2002-11-10 22:16:09 +000083 if (base == 16)
84 for (num = p; ishexdigit(*p); ++p);
85 else
Manuel Novoa III cad53642003-03-19 09:13:01 +000086 for (num = p; isdecdigit(*p); ++p);
Glenn L McGrath60281112001-11-02 11:39:46 +000087
Glenn L McGrathe16860d2002-11-10 22:16:09 +000088 /* check for no number */
89 if (num == p)
90 return;
91
92 /* if terminates with a '.', base is decimal */
93 if (*p == '.') {
94 if (base)
95 return;
96 base = 10;
97 }
98
Manuel Novoa III cad53642003-03-19 09:13:01 +000099 bb_dump_skip = strtol(num, &end, base ? base : 8);
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000100
101 /* if end isn't the same as p, we got a non-octal digit */
102 if (end != p)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000103 bb_dump_skip = 0;
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000104 else {
105 if (*p) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000106 if (*p == 'b') {
107 bb_dump_skip *= 512;
108 ++p;
109 } else if (*p == 'B') {
110 bb_dump_skip *= 1024;
111 ++p;
112 }
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000113 }
114 if (*p)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000115 bb_dump_skip = 0;
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000116 else {
117 ++*argvp;
118 /*
119 * If the offset uses a non-octal base, the base of
120 * the offset is changed as well. This isn't pretty,
121 * but it's easy.
122 */
123#define TYPE_OFFSET 7
Manuel Novoa III cad53642003-03-19 09:13:01 +0000124 {
125 char x_or_d;
126 if (base == 16) {
127 x_or_d = 'x';
128 goto DO_X_OR_D;
129 }
130 if (base == 10) {
131 x_or_d = 'd';
132 DO_X_OR_D:
133 bb_dump_fshead->nextfu->fmt[TYPE_OFFSET]
134 = bb_dump_fshead->nextfs->nextfu->fmt[TYPE_OFFSET]
135 = x_or_d;
136 }
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000137 }
138 }
139 }
Glenn L McGrath60281112001-11-02 11:39:46 +0000140}
141
Manuel Novoa III cad53642003-03-19 09:13:01 +0000142static const char * const add_strings[] = {
143 "16/1 \"%3_u \" \"\\n\"", /* a */
144 "8/2 \" %06o \" \"\\n\"", /* B, o */
145 "16/1 \"%03o \" \"\\n\"", /* b */
146 "16/1 \"%3_c \" \"\\n\"", /* c */
147 "8/2 \" %05u \" \"\\n\"", /* d */
148 "4/4 \" %010u \" \"\\n\"", /* D */
149 "2/8 \" %21.14e \" \"\\n\"", /* e (undocumented in od), F */
150 "4/4 \" %14.7e \" \"\\n\"", /* f */
151 "4/4 \" %08x \" \"\\n\"", /* H, X */
152 "8/2 \" %04x \" \"\\n\"", /* h, x */
153 "4/4 \" %11d \" \"\\n\"", /* I, L, l */
154 "8/2 \" %6d \" \"\\n\"", /* i */
155 "4/4 \" %011o \" \"\\n\"", /* O */
156};
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000157
Eric Andersen5e678872006-01-30 19:48:23 +0000158static const char od_opts[] = "aBbcDdeFfHhIiLlOoXxv";
Manuel Novoa III cad53642003-03-19 09:13:01 +0000159
Eric Andersen5e678872006-01-30 19:48:23 +0000160static const char od_o2si[] = {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000161 0, 1, 2, 3, 5,
162 4, 6, 6, 7, 8,
163 9, 0xa, 0xb, 0xa, 0xa,
Glenn L McGrath9c83e832004-07-23 01:42:28 +0000164 0xb, 1, 8, 9,
Manuel Novoa III cad53642003-03-19 09:13:01 +0000165};
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000166
167int od_main(int argc, char **argv)
168{
169 int ch;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000170 int first = 1;
Eric Andersen5e678872006-01-30 19:48:23 +0000171 char *p;
Manuel Novoa III 4eff1812003-03-19 09:42:02 +0000172 bb_dump_vflag = FIRST;
173 bb_dump_length = -1;
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000174
Manuel Novoa III cad53642003-03-19 09:13:01 +0000175 while ((ch = getopt(argc, argv, od_opts)) > 0) {
Glenn L McGrath9c83e832004-07-23 01:42:28 +0000176 if (ch == 'v') {
177 bb_dump_vflag = ALL;
Eric Andersen5e678872006-01-30 19:48:23 +0000178 } else if (((p = strchr(od_opts, ch)) != NULL) && (*p != '\0')) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000179 if (first) {
180 first = 0;
181 bb_dump_add("\"%07.7_Ao\n\"");
182 bb_dump_add("\"%07.7_ao \"");
183 } else {
184 bb_dump_add("\" \"");
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000185 }
Eric Andersen5e678872006-01-30 19:48:23 +0000186 bb_dump_add(add_strings[(int)od_o2si[(p-od_opts)]]);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000187 } else { /* P, p, s, w, or other unhandled */
188 bb_show_usage();
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000189 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000190 }
191 if (!bb_dump_fshead) {
192 bb_dump_add("\"%07.7_Ao\n\"");
193 bb_dump_add("\"%07.7_ao \" 8/2 \"%06o \" \"\\n\"");
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000194 }
195
196 argc -= optind;
197 argv += optind;
198
199 odoffset(argc, &argv);
200
Manuel Novoa III cad53642003-03-19 09:13:01 +0000201 return(bb_dump_dump(argv));
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000202}
203
204/*-
205 * Copyright (c) 1990 The Regents of the University of California.
206 * All rights reserved.
207 *
208 * Redistribution and use in source and binary forms, with or without
209 * modification, are permitted provided that the following conditions
210 * are met:
211 * 1. Redistributions of source code must retain the above copyright
212 * notice, this list of conditions and the following disclaimer.
213 * 2. Redistributions in binary form must reproduce the above copyright
214 * notice, this list of conditions and the following disclaimer in the
215 * documentation and/or other materials provided with the distribution.
216 * 3. Neither the name of the University nor the names of its contributors
217 * may be used to endorse or promote products derived from this software
218 * without specific prior written permission.
219 *
220 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
221 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
222 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
223 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
224 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
225 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
226 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
227 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
228 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
229 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
230 * SUCH DAMAGE.
231 */