1 /* vi: set sw=4 ts=4: */
3 * od implementation for busybox
4 * Based on code from util-linux v 2.11l
7 * The Regents of the University of California. All rights reserved.
9 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
11 * Original copyright notice is retained at the end of this file.
17 /* This one provides -t (busybox's own build script needs it) */
18 #include "od_bloaty.c"
24 #define isdecdigit(c) isdigit(c)
25 #define ishexdigit(c) (isxdigit)(c)
28 odoffset(int argc
, char ***argvp
)
35 * The offset syntax of od(1) was genuinely bizarre. First, if
36 * it started with a plus it had to be an offset. Otherwise, if
37 * there were at least two arguments, a number or lower-case 'x'
38 * followed by a number makes it an offset. By default it was
39 * octal; if it started with 'x' or '0x' it was hex. If it ended
40 * in a '.', it was decimal. If a 'b' or 'B' was appended, it
41 * multiplied the number by 512 or 1024 byte units. There was
42 * no way to assign a block count to a hex offset.
44 * We assumes it's a file if the offset is bad.
49 /* hey someone is probably piping to us ... */
56 && ((p
[0] != 'x') || !ishexdigit(p
[1])))))
61 * bb_dump_skip over leading '+', 'x[0-9a-fA-f]' or '0x', and
66 if (p
[0] == 'x' && ishexdigit(p
[1])) {
69 } else if (p
[0] == '0' && p
[1] == 'x') {
74 /* bb_dump_skip over the number */
76 for (num
= p
; ishexdigit(*p
); ++p
);
78 for (num
= p
; isdecdigit(*p
); ++p
);
80 /* check for no number */
84 /* if terminates with a '.', base is decimal */
91 bb_dump_skip
= strtol(num
, &end
, base
? base
: 8);
93 /* if end isn't the same as p, we got a non-octal digit */
101 } else if (*p
== 'B') {
102 bb_dump_skip
*= 1024;
111 * If the offset uses a non-octal base, the base of
112 * the offset is changed as well. This isn't pretty,
115 #define TYPE_OFFSET 7
125 bb_dump_fshead
->nextfu
->fmt
[TYPE_OFFSET
]
126 = bb_dump_fshead
->nextfs
->nextfu
->fmt
[TYPE_OFFSET
]
134 static const char * const add_strings
[] = {
135 "16/1 \"%3_u \" \"\\n\"", /* a */
136 "8/2 \" %06o \" \"\\n\"", /* B, o */
137 "16/1 \"%03o \" \"\\n\"", /* b */
138 "16/1 \"%3_c \" \"\\n\"", /* c */
139 "8/2 \" %05u \" \"\\n\"", /* d */
140 "4/4 \" %010u \" \"\\n\"", /* D */
141 "2/8 \" %21.14e \" \"\\n\"", /* e (undocumented in od), F */
142 "4/4 \" %14.7e \" \"\\n\"", /* f */
143 "4/4 \" %08x \" \"\\n\"", /* H, X */
144 "8/2 \" %04x \" \"\\n\"", /* h, x */
145 "4/4 \" %11d \" \"\\n\"", /* I, L, l */
146 "8/2 \" %6d \" \"\\n\"", /* i */
147 "4/4 \" %011o \" \"\\n\"", /* O */
150 static const char od_opts
[] = "aBbcDdeFfHhIiLlOoXxv";
152 static const char od_o2si
[] = {
155 9, 0xa, 0xb, 0xa, 0xa,
159 int od_main(int argc
, char **argv
);
160 int od_main(int argc
, char **argv
)
165 bb_dump_vflag
= FIRST
;
168 while ((ch
= getopt(argc
, argv
, od_opts
)) > 0) {
171 } else if (((p
= strchr(od_opts
, ch
)) != NULL
) && (*p
!= '\0')) {
174 bb_dump_add("\"%07.7_Ao\n\"");
175 bb_dump_add("\"%07.7_ao \"");
177 bb_dump_add("\" \"");
179 bb_dump_add(add_strings
[(int)od_o2si
[(p
-od_opts
)]]);
180 } else { /* P, p, s, w, or other unhandled */
184 if (!bb_dump_fshead
) {
185 bb_dump_add("\"%07.7_Ao\n\"");
186 bb_dump_add("\"%07.7_ao \" 8/2 \"%06o \" \"\\n\"");
192 odoffset(argc
, &argv
);
194 return bb_dump_dump(argv
);
196 #endif /* ENABLE_DESKTOP */
199 * Copyright (c) 1990 The Regents of the University of California.
200 * All rights reserved.
202 * Redistribution and use in source and binary forms, with or without
203 * modification, are permitted provided that the following conditions
205 * 1. Redistributions of source code must retain the above copyright
206 * notice, this list of conditions and the following disclaimer.
207 * 2. Redistributions in binary form must reproduce the above copyright
208 * notice, this list of conditions and the following disclaimer in the
209 * documentation and/or other materials provided with the distribution.
210 * 3. Neither the name of the University nor the names of its contributors
211 * may be used to endorse or promote products derived from this software
212 * without specific prior written permission.
214 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
215 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
216 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
217 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
218 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
219 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
220 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
221 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
222 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
223 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF