blob: 9a888dd5f53b8451cfccdd6ed08624af8cc662f9 [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 */
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010013//config:config OD
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020014//config: bool "od (11 kb)"
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010015//config: default y
16//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020017//config: od is used to dump binary files in octal and other formats.
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010018
19//applet:IF_OD(APPLET(od, BB_DIR_USR_BIN, BB_SUID_DROP))
20
21//kbuild:lib-$(CONFIG_OD) += od.o
Glenn L McGrath60281112001-11-02 11:39:46 +000022
Denys Vlasenko5c10fa52011-05-21 17:43:06 +020023//usage:#if !ENABLE_DESKTOP
Pere Orga34425382011-03-31 14:43:25 +020024//usage:#define od_trivial_usage
Denys Vlasenko5c10fa52011-05-21 17:43:06 +020025//usage: "[-aBbcDdeFfHhIiLlOovXx] [FILE]"
Pere Orga34425382011-03-31 14:43:25 +020026//usage:#define od_full_usage "\n\n"
Denys Vlasenko5c10fa52011-05-21 17:43:06 +020027//usage: "Print FILE (or stdin) unambiguously, as octal bytes by default"
28//usage:#endif
Denis Vlasenko97a8dd32006-10-01 15:55:11 +000029
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000030#include "libbb.h"
Denis Vlasenko1114de72006-10-10 23:26:05 +000031#if ENABLE_DESKTOP
32/* This one provides -t (busybox's own build script needs it) */
33#include "od_bloaty.c"
34#else
Bernhard Reutner-Fischer6a1829d2007-02-03 12:52:25 +000035
Manuel Novoa III cad53642003-03-19 09:13:01 +000036#include "dump.h"
Glenn L McGrath60281112001-11-02 11:39:46 +000037
Glenn L McGrathe16860d2002-11-10 22:16:09 +000038static void
Denis Vlasenko55f79122008-07-16 11:00:16 +000039odoffset(dumper_t *dumper, int argc, char ***argvp)
Glenn L McGrath60281112001-11-02 11:39:46 +000040{
"Robert P. J. Day"68229832006-07-01 13:08:46 +000041 char *num, *p;
Glenn L McGrathe16860d2002-11-10 22:16:09 +000042 int base;
43 char *end;
Glenn L McGrath60281112001-11-02 11:39:46 +000044
45 /*
Glenn L McGrathe16860d2002-11-10 22:16:09 +000046 * The offset syntax of od(1) was genuinely bizarre. First, if
47 * it started with a plus it had to be an offset. Otherwise, if
48 * there were at least two arguments, a number or lower-case 'x'
49 * followed by a number makes it an offset. By default it was
50 * octal; if it started with 'x' or '0x' it was hex. If it ended
51 * in a '.', it was decimal. If a 'b' or 'B' was appended, it
52 * multiplied the number by 512 or 1024 byte units. There was
53 * no way to assign a block count to a hex offset.
Glenn L McGrath60281112001-11-02 11:39:46 +000054 *
Glenn L McGrathe16860d2002-11-10 22:16:09 +000055 * We assumes it's a file if the offset is bad.
Glenn L McGrath60281112001-11-02 11:39:46 +000056 */
Glenn L McGrathe16860d2002-11-10 22:16:09 +000057 p = **argvp;
Glenn L McGrath60281112001-11-02 11:39:46 +000058
Glenn L McGrathe16860d2002-11-10 22:16:09 +000059 if (!p) {
60 /* hey someone is probably piping to us ... */
61 return;
Glenn L McGrath60281112001-11-02 11:39:46 +000062 }
Glenn L McGrath60281112001-11-02 11:39:46 +000063
Manuel Novoa III cad53642003-03-19 09:13:01 +000064 if ((*p != '+')
65 && (argc < 2
Denys Vlasenkof2cbb032009-10-23 03:16:08 +020066 || (!isdigit(p[0])
67 && ((p[0] != 'x') || !isxdigit(p[1])))))
Glenn L McGrathe16860d2002-11-10 22:16:09 +000068 return;
Glenn L McGrath60281112001-11-02 11:39:46 +000069
Glenn L McGrathe16860d2002-11-10 22:16:09 +000070 base = 0;
71 /*
Denis Vlasenko55f79122008-07-16 11:00:16 +000072 * skip over leading '+', 'x[0-9a-fA-f]' or '0x', and
Glenn L McGrathe16860d2002-11-10 22:16:09 +000073 * set base.
74 */
75 if (p[0] == '+')
76 ++p;
Denys Vlasenkof2cbb032009-10-23 03:16:08 +020077 if (p[0] == 'x' && isxdigit(p[1])) {
Glenn L McGrathe16860d2002-11-10 22:16:09 +000078 ++p;
79 base = 16;
80 } else if (p[0] == '0' && p[1] == 'x') {
81 p += 2;
82 base = 16;
Glenn L McGrath60281112001-11-02 11:39:46 +000083 }
84
Denis Vlasenko55f79122008-07-16 11:00:16 +000085 /* skip over the number */
Glenn L McGrathe16860d2002-11-10 22:16:09 +000086 if (base == 16)
Denys Vlasenkof2cbb032009-10-23 03:16:08 +020087 for (num = p; isxdigit(*p); ++p)
Denis Vlasenko55f79122008-07-16 11:00:16 +000088 continue;
Glenn L McGrathe16860d2002-11-10 22:16:09 +000089 else
Denys Vlasenkof2cbb032009-10-23 03:16:08 +020090 for (num = p; isdigit(*p); ++p)
Denis Vlasenko55f79122008-07-16 11:00:16 +000091 continue;
Glenn L McGrath60281112001-11-02 11:39:46 +000092
Glenn L McGrathe16860d2002-11-10 22:16:09 +000093 /* check for no number */
94 if (num == p)
95 return;
96
97 /* if terminates with a '.', base is decimal */
98 if (*p == '.') {
99 if (base)
100 return;
101 base = 10;
102 }
103
Denis Vlasenko55f79122008-07-16 11:00:16 +0000104 dumper->dump_skip = strtol(num, &end, base ? base : 8);
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000105
106 /* if end isn't the same as p, we got a non-octal digit */
107 if (end != p)
Denis Vlasenko55f79122008-07-16 11:00:16 +0000108 dumper->dump_skip = 0;
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000109 else {
110 if (*p) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000111 if (*p == 'b') {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000112 dumper->dump_skip *= 512;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000113 ++p;
114 } else if (*p == 'B') {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000115 dumper->dump_skip *= 1024;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000116 ++p;
117 }
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000118 }
119 if (*p)
Denis Vlasenko55f79122008-07-16 11:00:16 +0000120 dumper->dump_skip = 0;
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000121 else {
122 ++*argvp;
123 /*
124 * If the offset uses a non-octal base, the base of
125 * the offset is changed as well. This isn't pretty,
126 * but it's easy.
127 */
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200128#define TYPE_OFFSET 7
Manuel Novoa III cad53642003-03-19 09:13:01 +0000129 {
130 char x_or_d;
131 if (base == 16) {
132 x_or_d = 'x';
133 goto DO_X_OR_D;
134 }
135 if (base == 10) {
136 x_or_d = 'd';
Denis Vlasenko55f79122008-07-16 11:00:16 +0000137 DO_X_OR_D:
138 dumper->fshead->nextfu->fmt[TYPE_OFFSET]
139 = dumper->fshead->nextfs->nextfu->fmt[TYPE_OFFSET]
Manuel Novoa III cad53642003-03-19 09:13:01 +0000140 = x_or_d;
141 }
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000142 }
143 }
144 }
Glenn L McGrath60281112001-11-02 11:39:46 +0000145}
146
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000147static const char *const add_strings[] = {
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200148 "16/1 \"%3_u \" \"\\n\"", /* a */
149 "8/2 \" %06o \" \"\\n\"", /* B, o */
150 "16/1 \"%03o \" \"\\n\"", /* b */
151 "16/1 \"%3_c \" \"\\n\"", /* c */
152 "8/2 \" %05u \" \"\\n\"", /* d */
153 "4/4 \" %010u \" \"\\n\"", /* D */
154 "2/8 \" %21.14e \" \"\\n\"", /* e (undocumented in od), F */
155 "4/4 \" %14.7e \" \"\\n\"", /* f */
156 "4/4 \" %08x \" \"\\n\"", /* H, X */
157 "8/2 \" %04x \" \"\\n\"", /* h, x */
158 "4/4 \" %11d \" \"\\n\"", /* I, L, l */
159 "8/2 \" %6d \" \"\\n\"", /* i */
160 "4/4 \" %011o \" \"\\n\"", /* O */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000161};
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000162
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000163static const char od_opts[] ALIGN1 = "aBbcDdeFfHhIiLlOoXxv";
Manuel Novoa III cad53642003-03-19 09:13:01 +0000164
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000165static const char od_o2si[] ALIGN1 = {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000166 0, 1, 2, 3, 5,
167 4, 6, 6, 7, 8,
168 9, 0xa, 0xb, 0xa, 0xa,
Glenn L McGrath9c83e832004-07-23 01:42:28 +0000169 0xb, 1, 8, 9,
Manuel Novoa III cad53642003-03-19 09:13:01 +0000170};
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000171
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000172int od_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000173int od_main(int argc, char **argv)
174{
175 int ch;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000176 int first = 1;
Eric Andersen5e678872006-01-30 19:48:23 +0000177 char *p;
Denis Vlasenko55f79122008-07-16 11:00:16 +0000178 dumper_t *dumper = alloc_dumper();
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000179
Manuel Novoa III cad53642003-03-19 09:13:01 +0000180 while ((ch = getopt(argc, argv, od_opts)) > 0) {
Glenn L McGrath9c83e832004-07-23 01:42:28 +0000181 if (ch == 'v') {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000182 dumper->dump_vflag = ALL;
Eric Andersen5e678872006-01-30 19:48:23 +0000183 } else if (((p = strchr(od_opts, ch)) != NULL) && (*p != '\0')) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000184 if (first) {
185 first = 0;
Denis Vlasenko55f79122008-07-16 11:00:16 +0000186 bb_dump_add(dumper, "\"%07.7_Ao\n\"");
187 bb_dump_add(dumper, "\"%07.7_ao \"");
Manuel Novoa III cad53642003-03-19 09:13:01 +0000188 } else {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000189 bb_dump_add(dumper, "\" \"");
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000190 }
Denis Vlasenko55f79122008-07-16 11:00:16 +0000191 bb_dump_add(dumper, add_strings[(int)od_o2si[(p - od_opts)]]);
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200192 } else { /* P, p, s, w, or other unhandled */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000193 bb_show_usage();
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000194 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000195 }
Denis Vlasenko55f79122008-07-16 11:00:16 +0000196 if (!dumper->fshead) {
197 bb_dump_add(dumper, "\"%07.7_Ao\n\"");
198 bb_dump_add(dumper, "\"%07.7_ao \" 8/2 \"%06o \" \"\\n\"");
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000199 }
200
201 argc -= optind;
202 argv += optind;
203
Denis Vlasenko55f79122008-07-16 11:00:16 +0000204 odoffset(dumper, argc, &argv);
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000205
Denis Vlasenko55f79122008-07-16 11:00:16 +0000206 return bb_dump_dump(dumper, argv);
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000207}
Denis Vlasenko1114de72006-10-10 23:26:05 +0000208#endif /* ENABLE_DESKTOP */
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000209
210/*-
211 * Copyright (c) 1990 The Regents of the University of California.
212 * All rights reserved.
213 *
214 * Redistribution and use in source and binary forms, with or without
215 * modification, are permitted provided that the following conditions
216 * are met:
217 * 1. Redistributions of source code must retain the above copyright
218 * notice, this list of conditions and the following disclaimer.
219 * 2. Redistributions in binary form must reproduce the above copyright
220 * notice, this list of conditions and the following disclaimer in the
221 * documentation and/or other materials provided with the distribution.
222 * 3. Neither the name of the University nor the names of its contributors
223 * may be used to endorse or promote products derived from this software
224 * without specific prior written permission.
225 *
Denys Vlasenko95f79532017-08-02 14:26:33 +0200226 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
Glenn L McGrathe16860d2002-11-10 22:16:09 +0000227 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
228 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
229 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
230 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
231 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
232 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
233 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
234 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
235 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
236 * SUCH DAMAGE.
237 */