blob: fb11fcfe3253f53f153f8c5f95093a81b77e25ad [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
Denys Vlasenkofb132e42010-10-29 11:46:52 +02007 * The Regents of the University of California. All rights reserved.
Glenn L McGrath60281112001-11-02 11:39:46 +00008 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02009 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
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
Denys Vlasenko5c10fa52011-05-21 17:43:06 +020014//usage:#if !ENABLE_DESKTOP
Pere Orga34425382011-03-31 14:43:25 +020015//usage:#define od_trivial_usage
Denys Vlasenko5c10fa52011-05-21 17:43:06 +020016//usage: "[-aBbcDdeFfHhIiLlOovXx] [FILE]"
Pere Orga34425382011-03-31 14:43:25 +020017//usage:#define od_full_usage "\n\n"
Denys Vlasenko5c10fa52011-05-21 17:43:06 +020018//usage: "Print FILE (or stdin) unambiguously, as octal bytes by default"
19//usage:#endif
Denis Vlasenko97a8dd32006-10-01 15:55:11 +000020
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000021#include "libbb.h"
Denis Vlasenko1114de72006-10-10 23:26:05 +000022#if ENABLE_DESKTOP
23/* This one provides -t (busybox's own build script needs it) */
24#include "od_bloaty.c"
25#else
Bernhard Reutner-Fischer6a1829d2007-02-03 12:52:25 +000026
Manuel Novoa III cad53642003-03-19 09:13:01 +000027#include "dump.h"
Glenn L McGrath60281112001-11-02 11:39:46 +000028
Glenn L McGrathe16860d2002-11-10 22:16:09 +000029static void
Denis Vlasenko55f79122008-07-16 11:00:16 +000030odoffset(dumper_t *dumper, int argc, char ***argvp)
Glenn L McGrath60281112001-11-02 11:39:46 +000031{
"Robert P. J. Day"68229832006-07-01 13:08:46 +000032 char *num, *p;
Glenn L McGrathe16860d2002-11-10 22:16:09 +000033 int base;
34 char *end;
Glenn L McGrath60281112001-11-02 11:39:46 +000035
36 /*
Glenn L McGrathe16860d2002-11-10 22:16:09 +000037 * The offset syntax of od(1) was genuinely bizarre. First, if
38 * it started with a plus it had to be an offset. Otherwise, if
39 * there were at least two arguments, a number or lower-case 'x'
40 * followed by a number makes it an offset. By default it was
41 * octal; if it started with 'x' or '0x' it was hex. If it ended
42 * in a '.', it was decimal. If a 'b' or 'B' was appended, it
43 * multiplied the number by 512 or 1024 byte units. There was
44 * no way to assign a block count to a hex offset.
Glenn L McGrath60281112001-11-02 11:39:46 +000045 *
Glenn L McGrathe16860d2002-11-10 22:16:09 +000046 * We assumes it's a file if the offset is bad.
Glenn L McGrath60281112001-11-02 11:39:46 +000047 */
Glenn L McGrathe16860d2002-11-10 22:16:09 +000048 p = **argvp;
Glenn L McGrath60281112001-11-02 11:39:46 +000049
Glenn L McGrathe16860d2002-11-10 22:16:09 +000050 if (!p) {
51 /* hey someone is probably piping to us ... */
52 return;
Glenn L McGrath60281112001-11-02 11:39:46 +000053 }
Glenn L McGrath60281112001-11-02 11:39:46 +000054
Manuel Novoa III cad53642003-03-19 09:13:01 +000055 if ((*p != '+')
56 && (argc < 2
Denys Vlasenkof2cbb032009-10-23 03:16:08 +020057 || (!isdigit(p[0])
58 && ((p[0] != 'x') || !isxdigit(p[1])))))
Glenn L McGrathe16860d2002-11-10 22:16:09 +000059 return;
Glenn L McGrath60281112001-11-02 11:39:46 +000060
Glenn L McGrathe16860d2002-11-10 22:16:09 +000061 base = 0;
62 /*
Denis Vlasenko55f79122008-07-16 11:00:16 +000063 * skip over leading '+', 'x[0-9a-fA-f]' or '0x', and
Glenn L McGrathe16860d2002-11-10 22:16:09 +000064 * set base.
65 */
66 if (p[0] == '+')
67 ++p;
Denys Vlasenkof2cbb032009-10-23 03:16:08 +020068 if (p[0] == 'x' && isxdigit(p[1])) {
Glenn L McGrathe16860d2002-11-10 22:16:09 +000069 ++p;
70 base = 16;
71 } else if (p[0] == '0' && p[1] == 'x') {
72 p += 2;
73 base = 16;
Glenn L McGrath60281112001-11-02 11:39:46 +000074 }
75
Denis Vlasenko55f79122008-07-16 11:00:16 +000076 /* skip over the number */
Glenn L McGrathe16860d2002-11-10 22:16:09 +000077 if (base == 16)
Denys Vlasenkof2cbb032009-10-23 03:16:08 +020078 for (num = p; isxdigit(*p); ++p)
Denis Vlasenko55f79122008-07-16 11:00:16 +000079 continue;
Glenn L McGrathe16860d2002-11-10 22:16:09 +000080 else
Denys Vlasenkof2cbb032009-10-23 03:16:08 +020081 for (num = p; isdigit(*p); ++p)
Denis Vlasenko55f79122008-07-16 11:00:16 +000082 continue;
Glenn L McGrath60281112001-11-02 11:39:46 +000083
Glenn L McGrathe16860d2002-11-10 22:16:09 +000084 /* check for no number */
85 if (num == p)
86 return;
87
88 /* if terminates with a '.', base is decimal */
89 if (*p == '.') {
90 if (base)
91 return;
92 base = 10;
93 }
94
Denis Vlasenko55f79122008-07-16 11:00:16 +000095 dumper->dump_skip = strtol(num, &end, base ? base : 8);
Glenn L McGrathe16860d2002-11-10 22:16:09 +000096
97 /* if end isn't the same as p, we got a non-octal digit */
98 if (end != p)
Denis Vlasenko55f79122008-07-16 11:00:16 +000099 dumper->dump_skip = 0;
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000100 else {
101 if (*p) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000102 if (*p == 'b') {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000103 dumper->dump_skip *= 512;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000104 ++p;
105 } else if (*p == 'B') {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000106 dumper->dump_skip *= 1024;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000107 ++p;
108 }
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000109 }
110 if (*p)
Denis Vlasenko55f79122008-07-16 11:00:16 +0000111 dumper->dump_skip = 0;
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000112 else {
113 ++*argvp;
114 /*
115 * If the offset uses a non-octal base, the base of
116 * the offset is changed as well. This isn't pretty,
117 * but it's easy.
118 */
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200119#define TYPE_OFFSET 7
Manuel Novoa III cad53642003-03-19 09:13:01 +0000120 {
121 char x_or_d;
122 if (base == 16) {
123 x_or_d = 'x';
124 goto DO_X_OR_D;
125 }
126 if (base == 10) {
127 x_or_d = 'd';
Denis Vlasenko55f79122008-07-16 11:00:16 +0000128 DO_X_OR_D:
129 dumper->fshead->nextfu->fmt[TYPE_OFFSET]
130 = dumper->fshead->nextfs->nextfu->fmt[TYPE_OFFSET]
Manuel Novoa III cad53642003-03-19 09:13:01 +0000131 = x_or_d;
132 }
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000133 }
134 }
135 }
Glenn L McGrath60281112001-11-02 11:39:46 +0000136}
137
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000138static const char *const add_strings[] = {
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200139 "16/1 \"%3_u \" \"\\n\"", /* a */
140 "8/2 \" %06o \" \"\\n\"", /* B, o */
141 "16/1 \"%03o \" \"\\n\"", /* b */
142 "16/1 \"%3_c \" \"\\n\"", /* c */
143 "8/2 \" %05u \" \"\\n\"", /* d */
144 "4/4 \" %010u \" \"\\n\"", /* D */
145 "2/8 \" %21.14e \" \"\\n\"", /* e (undocumented in od), F */
146 "4/4 \" %14.7e \" \"\\n\"", /* f */
147 "4/4 \" %08x \" \"\\n\"", /* H, X */
148 "8/2 \" %04x \" \"\\n\"", /* h, x */
149 "4/4 \" %11d \" \"\\n\"", /* I, L, l */
150 "8/2 \" %6d \" \"\\n\"", /* i */
151 "4/4 \" %011o \" \"\\n\"", /* O */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000152};
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000153
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000154static const char od_opts[] ALIGN1 = "aBbcDdeFfHhIiLlOoXxv";
Manuel Novoa III cad53642003-03-19 09:13:01 +0000155
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000156static const char od_o2si[] ALIGN1 = {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000157 0, 1, 2, 3, 5,
158 4, 6, 6, 7, 8,
159 9, 0xa, 0xb, 0xa, 0xa,
Glenn L McGrath9c83e832004-07-23 01:42:28 +0000160 0xb, 1, 8, 9,
Manuel Novoa III cad53642003-03-19 09:13:01 +0000161};
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000162
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000163int od_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000164int od_main(int argc, char **argv)
165{
166 int ch;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000167 int first = 1;
Eric Andersen5e678872006-01-30 19:48:23 +0000168 char *p;
Denis Vlasenko55f79122008-07-16 11:00:16 +0000169 dumper_t *dumper = alloc_dumper();
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000170
Manuel Novoa III cad53642003-03-19 09:13:01 +0000171 while ((ch = getopt(argc, argv, od_opts)) > 0) {
Glenn L McGrath9c83e832004-07-23 01:42:28 +0000172 if (ch == 'v') {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000173 dumper->dump_vflag = ALL;
Eric Andersen5e678872006-01-30 19:48:23 +0000174 } else if (((p = strchr(od_opts, ch)) != NULL) && (*p != '\0')) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000175 if (first) {
176 first = 0;
Denis Vlasenko55f79122008-07-16 11:00:16 +0000177 bb_dump_add(dumper, "\"%07.7_Ao\n\"");
178 bb_dump_add(dumper, "\"%07.7_ao \"");
Manuel Novoa III cad53642003-03-19 09:13:01 +0000179 } else {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000180 bb_dump_add(dumper, "\" \"");
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000181 }
Denis Vlasenko55f79122008-07-16 11:00:16 +0000182 bb_dump_add(dumper, add_strings[(int)od_o2si[(p - od_opts)]]);
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200183 } else { /* P, p, s, w, or other unhandled */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000184 bb_show_usage();
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000185 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000186 }
Denis Vlasenko55f79122008-07-16 11:00:16 +0000187 if (!dumper->fshead) {
188 bb_dump_add(dumper, "\"%07.7_Ao\n\"");
189 bb_dump_add(dumper, "\"%07.7_ao \" 8/2 \"%06o \" \"\\n\"");
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000190 }
191
192 argc -= optind;
193 argv += optind;
194
Denis Vlasenko55f79122008-07-16 11:00:16 +0000195 odoffset(dumper, argc, &argv);
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000196
Denis Vlasenko55f79122008-07-16 11:00:16 +0000197 return bb_dump_dump(dumper, argv);
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000198}
Denis Vlasenko1114de72006-10-10 23:26:05 +0000199#endif /* ENABLE_DESKTOP */
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000200
201/*-
202 * Copyright (c) 1990 The Regents of the University of California.
203 * All rights reserved.
204 *
205 * Redistribution and use in source and binary forms, with or without
206 * modification, are permitted provided that the following conditions
207 * are met:
208 * 1. Redistributions of source code must retain the above copyright
209 * notice, this list of conditions and the following disclaimer.
210 * 2. Redistributions in binary form must reproduce the above copyright
211 * notice, this list of conditions and the following disclaimer in the
212 * documentation and/or other materials provided with the distribution.
213 * 3. Neither the name of the University nor the names of its contributors
214 * may be used to endorse or promote products derived from this software
215 * without specific prior written permission.
216 *
217 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
218 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
219 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
220 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
221 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
222 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
223 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
224 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
225 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
226 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
227 * SUCH DAMAGE.
228 */