blob: 8cd34bb16fc52241a00deeb201a9ee1908baa33b [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrath60281112001-11-02 11:39:46 +00002/*
Glenn L McGrathe16860d2002-11-10 22:16:09 +00003 * od implementation for busybox
4 * Based on code from util-linux v 2.11l
Glenn L McGrath60281112001-11-02 11:39:46 +00005 *
Glenn L McGrathe16860d2002-11-10 22:16:09 +00006 * Copyright (c) 1990
7 * The Regents of the University of California. All rights reserved.
Glenn L McGrath60281112001-11-02 11:39:46 +00008 *
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 *
Glenn L McGrathe16860d2002-11-10 22:16:09 +000023 * Original copyright notice is retained at the end of this file.
Glenn L McGrath60281112001-11-02 11:39:46 +000024 */
25
Glenn L McGrathe16860d2002-11-10 22:16:09 +000026#include <ctype.h>
Manuel Novoa III cad53642003-03-19 09:13:01 +000027#include <string.h>
Glenn L McGrathe16860d2002-11-10 22:16:09 +000028#include <getopt.h>
Glenn L McGrath60281112001-11-02 11:39:46 +000029#include <stdlib.h>
Glenn L McGrath60281112001-11-02 11:39:46 +000030#include "busybox.h"
Manuel Novoa III cad53642003-03-19 09:13:01 +000031#include "dump.h"
Glenn L McGrath60281112001-11-02 11:39:46 +000032
Manuel Novoa III cad53642003-03-19 09:13:01 +000033#define isdecdigit(c) (isdigit)(c)
34#define ishexdigit(c) (isxdigit)(c)
Glenn L McGrathe16860d2002-11-10 22:16:09 +000035
36static void
37odoffset(int argc, char ***argvp)
Glenn L McGrath60281112001-11-02 11:39:46 +000038{
"Robert P. J. Day"68229832006-07-01 13:08:46 +000039 char *num, *p;
Glenn L McGrathe16860d2002-11-10 22:16:09 +000040 int base;
41 char *end;
Glenn L McGrath60281112001-11-02 11:39:46 +000042
43 /*
Glenn L McGrathe16860d2002-11-10 22:16:09 +000044 * 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.
Glenn L McGrath60281112001-11-02 11:39:46 +000052 *
Glenn L McGrathe16860d2002-11-10 22:16:09 +000053 * We assumes it's a file if the offset is bad.
Glenn L McGrath60281112001-11-02 11:39:46 +000054 */
Glenn L McGrathe16860d2002-11-10 22:16:09 +000055 p = **argvp;
Glenn L McGrath60281112001-11-02 11:39:46 +000056
Glenn L McGrathe16860d2002-11-10 22:16:09 +000057 if (!p) {
58 /* hey someone is probably piping to us ... */
59 return;
Glenn L McGrath60281112001-11-02 11:39:46 +000060 }
Glenn L McGrath60281112001-11-02 11:39:46 +000061
Manuel Novoa III cad53642003-03-19 09:13:01 +000062 if ((*p != '+')
63 && (argc < 2
64 || (!isdecdigit(p[0])
65 && ((p[0] != 'x') || !ishexdigit(p[1])))))
Glenn L McGrathe16860d2002-11-10 22:16:09 +000066 return;
Glenn L McGrath60281112001-11-02 11:39:46 +000067
Glenn L McGrathe16860d2002-11-10 22:16:09 +000068 base = 0;
69 /*
Manuel Novoa III cad53642003-03-19 09:13:01 +000070 * bb_dump_skip over leading '+', 'x[0-9a-fA-f]' or '0x', and
Glenn L McGrathe16860d2002-11-10 22:16:09 +000071 * 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;
Glenn L McGrath60281112001-11-02 11:39:46 +000081 }
82
Manuel Novoa III cad53642003-03-19 09:13:01 +000083 /* bb_dump_skip over the number */
Glenn L McGrathe16860d2002-11-10 22:16:09 +000084 if (base == 16)
85 for (num = p; ishexdigit(*p); ++p);
86 else
Manuel Novoa III cad53642003-03-19 09:13:01 +000087 for (num = p; isdecdigit(*p); ++p);
Glenn L McGrath60281112001-11-02 11:39:46 +000088
Glenn L McGrathe16860d2002-11-10 22:16:09 +000089 /* 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
Manuel Novoa III cad53642003-03-19 09:13:01 +0000100 bb_dump_skip = strtol(num, &end, base ? base : 8);
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000101
102 /* if end isn't the same as p, we got a non-octal digit */
103 if (end != p)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000104 bb_dump_skip = 0;
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000105 else {
106 if (*p) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000107 if (*p == 'b') {
108 bb_dump_skip *= 512;
109 ++p;
110 } else if (*p == 'B') {
111 bb_dump_skip *= 1024;
112 ++p;
113 }
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000114 }
115 if (*p)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000116 bb_dump_skip = 0;
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000117 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
Manuel Novoa III cad53642003-03-19 09:13:01 +0000125 {
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 }
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000138 }
139 }
140 }
Glenn L McGrath60281112001-11-02 11:39:46 +0000141}
142
Manuel Novoa III cad53642003-03-19 09:13:01 +0000143static 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};
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000158
Eric Andersen5e678872006-01-30 19:48:23 +0000159static const char od_opts[] = "aBbcDdeFfHhIiLlOoXxv";
Manuel Novoa III cad53642003-03-19 09:13:01 +0000160
Eric Andersen5e678872006-01-30 19:48:23 +0000161static const char od_o2si[] = {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000162 0, 1, 2, 3, 5,
163 4, 6, 6, 7, 8,
164 9, 0xa, 0xb, 0xa, 0xa,
Glenn L McGrath9c83e832004-07-23 01:42:28 +0000165 0xb, 1, 8, 9,
Manuel Novoa III cad53642003-03-19 09:13:01 +0000166};
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000167
168int od_main(int argc, char **argv)
169{
170 int ch;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000171 int first = 1;
Eric Andersen5e678872006-01-30 19:48:23 +0000172 char *p;
Manuel Novoa III 4eff1812003-03-19 09:42:02 +0000173 bb_dump_vflag = FIRST;
174 bb_dump_length = -1;
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000175
Manuel Novoa III cad53642003-03-19 09:13:01 +0000176 while ((ch = getopt(argc, argv, od_opts)) > 0) {
Glenn L McGrath9c83e832004-07-23 01:42:28 +0000177 if (ch == 'v') {
178 bb_dump_vflag = ALL;
Eric Andersen5e678872006-01-30 19:48:23 +0000179 } else if (((p = strchr(od_opts, ch)) != NULL) && (*p != '\0')) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000180 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("\" \"");
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000186 }
Eric Andersen5e678872006-01-30 19:48:23 +0000187 bb_dump_add(add_strings[(int)od_o2si[(p-od_opts)]]);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000188 } else { /* P, p, s, w, or other unhandled */
189 bb_show_usage();
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000190 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000191 }
192 if (!bb_dump_fshead) {
193 bb_dump_add("\"%07.7_Ao\n\"");
194 bb_dump_add("\"%07.7_ao \" 8/2 \"%06o \" \"\\n\"");
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000195 }
196
197 argc -= optind;
198 argv += optind;
199
200 odoffset(argc, &argv);
201
Manuel Novoa III cad53642003-03-19 09:13:01 +0000202 return(bb_dump_dump(argv));
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000203}
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 */