blob: 228db19ac17240d52273b23e9c544fb79baa2cfd [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
Glenn L McGrathe16860d2002-11-10 22:16:09 +000023static void
Denis Vlasenko55f79122008-07-16 11:00:16 +000024odoffset(dumper_t *dumper, int argc, char ***argvp)
Glenn L McGrath60281112001-11-02 11:39:46 +000025{
"Robert P. J. Day"68229832006-07-01 13:08:46 +000026 char *num, *p;
Glenn L McGrathe16860d2002-11-10 22:16:09 +000027 int base;
28 char *end;
Glenn L McGrath60281112001-11-02 11:39:46 +000029
30 /*
Glenn L McGrathe16860d2002-11-10 22:16:09 +000031 * The offset syntax of od(1) was genuinely bizarre. First, if
32 * it started with a plus it had to be an offset. Otherwise, if
33 * there were at least two arguments, a number or lower-case 'x'
34 * followed by a number makes it an offset. By default it was
35 * octal; if it started with 'x' or '0x' it was hex. If it ended
36 * in a '.', it was decimal. If a 'b' or 'B' was appended, it
37 * multiplied the number by 512 or 1024 byte units. There was
38 * no way to assign a block count to a hex offset.
Glenn L McGrath60281112001-11-02 11:39:46 +000039 *
Glenn L McGrathe16860d2002-11-10 22:16:09 +000040 * We assumes it's a file if the offset is bad.
Glenn L McGrath60281112001-11-02 11:39:46 +000041 */
Glenn L McGrathe16860d2002-11-10 22:16:09 +000042 p = **argvp;
Glenn L McGrath60281112001-11-02 11:39:46 +000043
Glenn L McGrathe16860d2002-11-10 22:16:09 +000044 if (!p) {
45 /* hey someone is probably piping to us ... */
46 return;
Glenn L McGrath60281112001-11-02 11:39:46 +000047 }
Glenn L McGrath60281112001-11-02 11:39:46 +000048
Manuel Novoa III cad53642003-03-19 09:13:01 +000049 if ((*p != '+')
50 && (argc < 2
Denys Vlasenkof2cbb032009-10-23 03:16:08 +020051 || (!isdigit(p[0])
52 && ((p[0] != 'x') || !isxdigit(p[1])))))
Glenn L McGrathe16860d2002-11-10 22:16:09 +000053 return;
Glenn L McGrath60281112001-11-02 11:39:46 +000054
Glenn L McGrathe16860d2002-11-10 22:16:09 +000055 base = 0;
56 /*
Denis Vlasenko55f79122008-07-16 11:00:16 +000057 * skip over leading '+', 'x[0-9a-fA-f]' or '0x', and
Glenn L McGrathe16860d2002-11-10 22:16:09 +000058 * set base.
59 */
60 if (p[0] == '+')
61 ++p;
Denys Vlasenkof2cbb032009-10-23 03:16:08 +020062 if (p[0] == 'x' && isxdigit(p[1])) {
Glenn L McGrathe16860d2002-11-10 22:16:09 +000063 ++p;
64 base = 16;
65 } else if (p[0] == '0' && p[1] == 'x') {
66 p += 2;
67 base = 16;
Glenn L McGrath60281112001-11-02 11:39:46 +000068 }
69
Denis Vlasenko55f79122008-07-16 11:00:16 +000070 /* skip over the number */
Glenn L McGrathe16860d2002-11-10 22:16:09 +000071 if (base == 16)
Denys Vlasenkof2cbb032009-10-23 03:16:08 +020072 for (num = p; isxdigit(*p); ++p)
Denis Vlasenko55f79122008-07-16 11:00:16 +000073 continue;
Glenn L McGrathe16860d2002-11-10 22:16:09 +000074 else
Denys Vlasenkof2cbb032009-10-23 03:16:08 +020075 for (num = p; isdigit(*p); ++p)
Denis Vlasenko55f79122008-07-16 11:00:16 +000076 continue;
Glenn L McGrath60281112001-11-02 11:39:46 +000077
Glenn L McGrathe16860d2002-11-10 22:16:09 +000078 /* check for no number */
79 if (num == p)
80 return;
81
82 /* if terminates with a '.', base is decimal */
83 if (*p == '.') {
84 if (base)
85 return;
86 base = 10;
87 }
88
Denis Vlasenko55f79122008-07-16 11:00:16 +000089 dumper->dump_skip = strtol(num, &end, base ? base : 8);
Glenn L McGrathe16860d2002-11-10 22:16:09 +000090
91 /* if end isn't the same as p, we got a non-octal digit */
92 if (end != p)
Denis Vlasenko55f79122008-07-16 11:00:16 +000093 dumper->dump_skip = 0;
Glenn L McGrathe16860d2002-11-10 22:16:09 +000094 else {
95 if (*p) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000096 if (*p == 'b') {
Denis Vlasenko55f79122008-07-16 11:00:16 +000097 dumper->dump_skip *= 512;
Manuel Novoa III cad53642003-03-19 09:13:01 +000098 ++p;
99 } else if (*p == 'B') {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000100 dumper->dump_skip *= 1024;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000101 ++p;
102 }
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000103 }
104 if (*p)
Denis Vlasenko55f79122008-07-16 11:00:16 +0000105 dumper->dump_skip = 0;
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000106 else {
107 ++*argvp;
108 /*
109 * If the offset uses a non-octal base, the base of
110 * the offset is changed as well. This isn't pretty,
111 * but it's easy.
112 */
113#define TYPE_OFFSET 7
Manuel Novoa III cad53642003-03-19 09:13:01 +0000114 {
115 char x_or_d;
116 if (base == 16) {
117 x_or_d = 'x';
118 goto DO_X_OR_D;
119 }
120 if (base == 10) {
121 x_or_d = 'd';
Denis Vlasenko55f79122008-07-16 11:00:16 +0000122 DO_X_OR_D:
123 dumper->fshead->nextfu->fmt[TYPE_OFFSET]
124 = dumper->fshead->nextfs->nextfu->fmt[TYPE_OFFSET]
Manuel Novoa III cad53642003-03-19 09:13:01 +0000125 = x_or_d;
126 }
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000127 }
128 }
129 }
Glenn L McGrath60281112001-11-02 11:39:46 +0000130}
131
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000132static const char *const add_strings[] = {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000133 "16/1 \"%3_u \" \"\\n\"", /* a */
134 "8/2 \" %06o \" \"\\n\"", /* B, o */
135 "16/1 \"%03o \" \"\\n\"", /* b */
136 "16/1 \"%3_c \" \"\\n\"", /* c */
137 "8/2 \" %05u \" \"\\n\"", /* d */
138 "4/4 \" %010u \" \"\\n\"", /* D */
139 "2/8 \" %21.14e \" \"\\n\"", /* e (undocumented in od), F */
140 "4/4 \" %14.7e \" \"\\n\"", /* f */
141 "4/4 \" %08x \" \"\\n\"", /* H, X */
142 "8/2 \" %04x \" \"\\n\"", /* h, x */
143 "4/4 \" %11d \" \"\\n\"", /* I, L, l */
144 "8/2 \" %6d \" \"\\n\"", /* i */
145 "4/4 \" %011o \" \"\\n\"", /* O */
146};
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000147
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000148static const char od_opts[] ALIGN1 = "aBbcDdeFfHhIiLlOoXxv";
Manuel Novoa III cad53642003-03-19 09:13:01 +0000149
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000150static const char od_o2si[] ALIGN1 = {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000151 0, 1, 2, 3, 5,
152 4, 6, 6, 7, 8,
153 9, 0xa, 0xb, 0xa, 0xa,
Glenn L McGrath9c83e832004-07-23 01:42:28 +0000154 0xb, 1, 8, 9,
Manuel Novoa III cad53642003-03-19 09:13:01 +0000155};
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000156
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000157int od_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000158int od_main(int argc, char **argv)
159{
160 int ch;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000161 int first = 1;
Eric Andersen5e678872006-01-30 19:48:23 +0000162 char *p;
Denis Vlasenko55f79122008-07-16 11:00:16 +0000163 dumper_t *dumper = alloc_dumper();
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000164
Manuel Novoa III cad53642003-03-19 09:13:01 +0000165 while ((ch = getopt(argc, argv, od_opts)) > 0) {
Glenn L McGrath9c83e832004-07-23 01:42:28 +0000166 if (ch == 'v') {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000167 dumper->dump_vflag = ALL;
Eric Andersen5e678872006-01-30 19:48:23 +0000168 } else if (((p = strchr(od_opts, ch)) != NULL) && (*p != '\0')) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000169 if (first) {
170 first = 0;
Denis Vlasenko55f79122008-07-16 11:00:16 +0000171 bb_dump_add(dumper, "\"%07.7_Ao\n\"");
172 bb_dump_add(dumper, "\"%07.7_ao \"");
Manuel Novoa III cad53642003-03-19 09:13:01 +0000173 } else {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000174 bb_dump_add(dumper, "\" \"");
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000175 }
Denis Vlasenko55f79122008-07-16 11:00:16 +0000176 bb_dump_add(dumper, add_strings[(int)od_o2si[(p - od_opts)]]);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000177 } else { /* P, p, s, w, or other unhandled */
178 bb_show_usage();
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000179 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000180 }
Denis Vlasenko55f79122008-07-16 11:00:16 +0000181 if (!dumper->fshead) {
182 bb_dump_add(dumper, "\"%07.7_Ao\n\"");
183 bb_dump_add(dumper, "\"%07.7_ao \" 8/2 \"%06o \" \"\\n\"");
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000184 }
185
186 argc -= optind;
187 argv += optind;
188
Denis Vlasenko55f79122008-07-16 11:00:16 +0000189 odoffset(dumper, argc, &argv);
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000190
Denis Vlasenko55f79122008-07-16 11:00:16 +0000191 return bb_dump_dump(dumper, argv);
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000192}
Denis Vlasenko1114de72006-10-10 23:26:05 +0000193#endif /* ENABLE_DESKTOP */
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000194
195/*-
196 * Copyright (c) 1990 The Regents of the University of California.
197 * All rights reserved.
198 *
199 * Redistribution and use in source and binary forms, with or without
200 * modification, are permitted provided that the following conditions
201 * are met:
202 * 1. Redistributions of source code must retain the above copyright
203 * notice, this list of conditions and the following disclaimer.
204 * 2. Redistributions in binary form must reproduce the above copyright
205 * notice, this list of conditions and the following disclaimer in the
206 * documentation and/or other materials provided with the distribution.
207 * 3. Neither the name of the University nor the names of its contributors
208 * may be used to endorse or promote products derived from this software
209 * without specific prior written permission.
210 *
211 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
212 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
213 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
214 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
215 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
216 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
217 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
218 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
219 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
220 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
221 * SUCH DAMAGE.
222 */