blob: 94a6b95df50cbf39a068a8368fa784928abaad62 [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 *
"Robert P. J. Day"801ab142006-07-12 07:56:04 +00009 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Glenn L McGrath60281112001-11-02 11:39:46 +000010 *
Glenn L McGrathe16860d2002-11-10 22:16:09 +000011 * Original copyright notice is retained at the end of this file.
Glenn L McGrath60281112001-11-02 11:39:46 +000012 */
13
Denis Vlasenko97a8dd32006-10-01 15:55:11 +000014
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000015#include "libbb.h"
Denis Vlasenko1114de72006-10-10 23:26:05 +000016#if ENABLE_DESKTOP
17/* This one provides -t (busybox's own build script needs it) */
18#include "od_bloaty.c"
19#else
Bernhard Reutner-Fischer6a1829d2007-02-03 12:52:25 +000020
Manuel Novoa III cad53642003-03-19 09:13:01 +000021#include "dump.h"
Glenn L McGrath60281112001-11-02 11:39:46 +000022
Denis Vlasenko459903b2006-11-27 14:44:18 +000023#define isdecdigit(c) isdigit(c)
Manuel Novoa III cad53642003-03-19 09:13:01 +000024#define ishexdigit(c) (isxdigit)(c)
Glenn L McGrathe16860d2002-11-10 22:16:09 +000025
26static void
27odoffset(int argc, char ***argvp)
Glenn L McGrath60281112001-11-02 11:39:46 +000028{
"Robert P. J. Day"68229832006-07-01 13:08:46 +000029 char *num, *p;
Glenn L McGrathe16860d2002-11-10 22:16:09 +000030 int base;
31 char *end;
Glenn L McGrath60281112001-11-02 11:39:46 +000032
33 /*
Glenn L McGrathe16860d2002-11-10 22:16:09 +000034 * The offset syntax of od(1) was genuinely bizarre. First, if
35 * it started with a plus it had to be an offset. Otherwise, if
36 * there were at least two arguments, a number or lower-case 'x'
37 * followed by a number makes it an offset. By default it was
38 * octal; if it started with 'x' or '0x' it was hex. If it ended
39 * in a '.', it was decimal. If a 'b' or 'B' was appended, it
40 * multiplied the number by 512 or 1024 byte units. There was
41 * no way to assign a block count to a hex offset.
Glenn L McGrath60281112001-11-02 11:39:46 +000042 *
Glenn L McGrathe16860d2002-11-10 22:16:09 +000043 * We assumes it's a file if the offset is bad.
Glenn L McGrath60281112001-11-02 11:39:46 +000044 */
Glenn L McGrathe16860d2002-11-10 22:16:09 +000045 p = **argvp;
Glenn L McGrath60281112001-11-02 11:39:46 +000046
Glenn L McGrathe16860d2002-11-10 22:16:09 +000047 if (!p) {
48 /* hey someone is probably piping to us ... */
49 return;
Glenn L McGrath60281112001-11-02 11:39:46 +000050 }
Glenn L McGrath60281112001-11-02 11:39:46 +000051
Manuel Novoa III cad53642003-03-19 09:13:01 +000052 if ((*p != '+')
53 && (argc < 2
54 || (!isdecdigit(p[0])
55 && ((p[0] != 'x') || !ishexdigit(p[1])))))
Glenn L McGrathe16860d2002-11-10 22:16:09 +000056 return;
Glenn L McGrath60281112001-11-02 11:39:46 +000057
Glenn L McGrathe16860d2002-11-10 22:16:09 +000058 base = 0;
59 /*
Manuel Novoa III cad53642003-03-19 09:13:01 +000060 * bb_dump_skip over leading '+', 'x[0-9a-fA-f]' or '0x', and
Glenn L McGrathe16860d2002-11-10 22:16:09 +000061 * set base.
62 */
63 if (p[0] == '+')
64 ++p;
65 if (p[0] == 'x' && ishexdigit(p[1])) {
66 ++p;
67 base = 16;
68 } else if (p[0] == '0' && p[1] == 'x') {
69 p += 2;
70 base = 16;
Glenn L McGrath60281112001-11-02 11:39:46 +000071 }
72
Manuel Novoa III cad53642003-03-19 09:13:01 +000073 /* bb_dump_skip over the number */
Glenn L McGrathe16860d2002-11-10 22:16:09 +000074 if (base == 16)
75 for (num = p; ishexdigit(*p); ++p);
76 else
Manuel Novoa III cad53642003-03-19 09:13:01 +000077 for (num = p; isdecdigit(*p); ++p);
Glenn L McGrath60281112001-11-02 11:39:46 +000078
Glenn L McGrathe16860d2002-11-10 22:16:09 +000079 /* check for no number */
80 if (num == p)
81 return;
82
83 /* if terminates with a '.', base is decimal */
84 if (*p == '.') {
85 if (base)
86 return;
87 base = 10;
88 }
89
Manuel Novoa III cad53642003-03-19 09:13:01 +000090 bb_dump_skip = strtol(num, &end, base ? base : 8);
Glenn L McGrathe16860d2002-11-10 22:16:09 +000091
92 /* if end isn't the same as p, we got a non-octal digit */
93 if (end != p)
Manuel Novoa III cad53642003-03-19 09:13:01 +000094 bb_dump_skip = 0;
Glenn L McGrathe16860d2002-11-10 22:16:09 +000095 else {
96 if (*p) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000097 if (*p == 'b') {
98 bb_dump_skip *= 512;
99 ++p;
100 } else if (*p == 'B') {
101 bb_dump_skip *= 1024;
102 ++p;
103 }
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000104 }
105 if (*p)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000106 bb_dump_skip = 0;
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000107 else {
108 ++*argvp;
109 /*
110 * If the offset uses a non-octal base, the base of
111 * the offset is changed as well. This isn't pretty,
112 * but it's easy.
113 */
114#define TYPE_OFFSET 7
Manuel Novoa III cad53642003-03-19 09:13:01 +0000115 {
116 char x_or_d;
117 if (base == 16) {
118 x_or_d = 'x';
119 goto DO_X_OR_D;
120 }
121 if (base == 10) {
122 x_or_d = 'd';
123 DO_X_OR_D:
124 bb_dump_fshead->nextfu->fmt[TYPE_OFFSET]
125 = bb_dump_fshead->nextfs->nextfu->fmt[TYPE_OFFSET]
126 = x_or_d;
127 }
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000128 }
129 }
130 }
Glenn L McGrath60281112001-11-02 11:39:46 +0000131}
132
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000133static const char *const add_strings[] = {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000134 "16/1 \"%3_u \" \"\\n\"", /* a */
135 "8/2 \" %06o \" \"\\n\"", /* B, o */
136 "16/1 \"%03o \" \"\\n\"", /* b */
137 "16/1 \"%3_c \" \"\\n\"", /* c */
138 "8/2 \" %05u \" \"\\n\"", /* d */
139 "4/4 \" %010u \" \"\\n\"", /* D */
140 "2/8 \" %21.14e \" \"\\n\"", /* e (undocumented in od), F */
141 "4/4 \" %14.7e \" \"\\n\"", /* f */
142 "4/4 \" %08x \" \"\\n\"", /* H, X */
143 "8/2 \" %04x \" \"\\n\"", /* h, x */
144 "4/4 \" %11d \" \"\\n\"", /* I, L, l */
145 "8/2 \" %6d \" \"\\n\"", /* i */
146 "4/4 \" %011o \" \"\\n\"", /* O */
147};
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000148
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000149static const char od_opts[] ALIGN1 = "aBbcDdeFfHhIiLlOoXxv";
Manuel Novoa III cad53642003-03-19 09:13:01 +0000150
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000151static const char od_o2si[] ALIGN1 = {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000152 0, 1, 2, 3, 5,
153 4, 6, 6, 7, 8,
154 9, 0xa, 0xb, 0xa, 0xa,
Glenn L McGrath9c83e832004-07-23 01:42:28 +0000155 0xb, 1, 8, 9,
Manuel Novoa III cad53642003-03-19 09:13:01 +0000156};
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000157
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000158int od_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000159int od_main(int argc, char **argv)
160{
161 int ch;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000162 int first = 1;
Eric Andersen5e678872006-01-30 19:48:23 +0000163 char *p;
Manuel Novoa III 4eff1812003-03-19 09:42:02 +0000164 bb_dump_vflag = FIRST;
165 bb_dump_length = -1;
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000166
Manuel Novoa III cad53642003-03-19 09:13:01 +0000167 while ((ch = getopt(argc, argv, od_opts)) > 0) {
Glenn L McGrath9c83e832004-07-23 01:42:28 +0000168 if (ch == 'v') {
169 bb_dump_vflag = ALL;
Eric Andersen5e678872006-01-30 19:48:23 +0000170 } else if (((p = strchr(od_opts, ch)) != NULL) && (*p != '\0')) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000171 if (first) {
172 first = 0;
173 bb_dump_add("\"%07.7_Ao\n\"");
174 bb_dump_add("\"%07.7_ao \"");
175 } else {
176 bb_dump_add("\" \"");
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000177 }
Eric Andersen5e678872006-01-30 19:48:23 +0000178 bb_dump_add(add_strings[(int)od_o2si[(p-od_opts)]]);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000179 } else { /* P, p, s, w, or other unhandled */
180 bb_show_usage();
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000181 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000182 }
183 if (!bb_dump_fshead) {
184 bb_dump_add("\"%07.7_Ao\n\"");
185 bb_dump_add("\"%07.7_ao \" 8/2 \"%06o \" \"\\n\"");
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000186 }
187
188 argc -= optind;
189 argv += optind;
190
191 odoffset(argc, &argv);
192
Denis Vlasenkob97c9842006-10-01 21:05:12 +0000193 return bb_dump_dump(argv);
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000194}
Denis Vlasenko1114de72006-10-10 23:26:05 +0000195#endif /* ENABLE_DESKTOP */
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000196
197/*-
198 * Copyright (c) 1990 The Regents of the University of California.
199 * All rights reserved.
200 *
201 * Redistribution and use in source and binary forms, with or without
202 * modification, are permitted provided that the following conditions
203 * are met:
204 * 1. Redistributions of source code must retain the above copyright
205 * notice, this list of conditions and the following disclaimer.
206 * 2. Redistributions in binary form must reproduce the above copyright
207 * notice, this list of conditions and the following disclaimer in the
208 * documentation and/or other materials provided with the distribution.
209 * 3. Neither the name of the University nor the names of its contributors
210 * may be used to endorse or promote products derived from this software
211 * without specific prior written permission.
212 *
213 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
214 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
215 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
216 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
217 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
218 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
219 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
220 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
221 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
222 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
223 * SUCH DAMAGE.
224 */