"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 2 | /* |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 3 | * od implementation for busybox |
| 4 | * Based on code from util-linux v 2.11l |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 5 | * |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 6 | * Copyright (c) 1990 |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 7 | * The Regents of the University of California. All rights reserved. |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 8 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 9 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 10 | * |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 11 | * Original copyright notice is retained at the end of this file. |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 12 | */ |
| 13 | |
Denys Vlasenko | 5c10fa5 | 2011-05-21 17:43:06 +0200 | [diff] [blame] | 14 | //usage:#if !ENABLE_DESKTOP |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 15 | //usage:#define od_trivial_usage |
Denys Vlasenko | 5c10fa5 | 2011-05-21 17:43:06 +0200 | [diff] [blame] | 16 | //usage: "[-aBbcDdeFfHhIiLlOovXx] [FILE]" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 17 | //usage:#define od_full_usage "\n\n" |
Denys Vlasenko | 5c10fa5 | 2011-05-21 17:43:06 +0200 | [diff] [blame] | 18 | //usage: "Print FILE (or stdin) unambiguously, as octal bytes by default" |
| 19 | //usage:#endif |
Denis Vlasenko | 97a8dd3 | 2006-10-01 15:55:11 +0000 | [diff] [blame] | 20 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 21 | #include "libbb.h" |
Denis Vlasenko | 1114de7 | 2006-10-10 23:26:05 +0000 | [diff] [blame] | 22 | #if ENABLE_DESKTOP |
| 23 | /* This one provides -t (busybox's own build script needs it) */ |
| 24 | #include "od_bloaty.c" |
| 25 | #else |
Bernhard Reutner-Fischer | 6a1829d | 2007-02-03 12:52:25 +0000 | [diff] [blame] | 26 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 27 | #include "dump.h" |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 28 | |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 29 | static void |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 30 | odoffset(dumper_t *dumper, int argc, char ***argvp) |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 31 | { |
"Robert P. J. Day" | 6822983 | 2006-07-01 13:08:46 +0000 | [diff] [blame] | 32 | char *num, *p; |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 33 | int base; |
| 34 | char *end; |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 35 | |
| 36 | /* |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 37 | * 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 McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 45 | * |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 46 | * We assumes it's a file if the offset is bad. |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 47 | */ |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 48 | p = **argvp; |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 49 | |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 50 | if (!p) { |
| 51 | /* hey someone is probably piping to us ... */ |
| 52 | return; |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 53 | } |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 54 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 55 | if ((*p != '+') |
| 56 | && (argc < 2 |
Denys Vlasenko | f2cbb03 | 2009-10-23 03:16:08 +0200 | [diff] [blame] | 57 | || (!isdigit(p[0]) |
| 58 | && ((p[0] != 'x') || !isxdigit(p[1]))))) |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 59 | return; |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 60 | |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 61 | base = 0; |
| 62 | /* |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 63 | * skip over leading '+', 'x[0-9a-fA-f]' or '0x', and |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 64 | * set base. |
| 65 | */ |
| 66 | if (p[0] == '+') |
| 67 | ++p; |
Denys Vlasenko | f2cbb03 | 2009-10-23 03:16:08 +0200 | [diff] [blame] | 68 | if (p[0] == 'x' && isxdigit(p[1])) { |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 69 | ++p; |
| 70 | base = 16; |
| 71 | } else if (p[0] == '0' && p[1] == 'x') { |
| 72 | p += 2; |
| 73 | base = 16; |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 74 | } |
| 75 | |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 76 | /* skip over the number */ |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 77 | if (base == 16) |
Denys Vlasenko | f2cbb03 | 2009-10-23 03:16:08 +0200 | [diff] [blame] | 78 | for (num = p; isxdigit(*p); ++p) |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 79 | continue; |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 80 | else |
Denys Vlasenko | f2cbb03 | 2009-10-23 03:16:08 +0200 | [diff] [blame] | 81 | for (num = p; isdigit(*p); ++p) |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 82 | continue; |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 83 | |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 84 | /* 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 Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 95 | dumper->dump_skip = strtol(num, &end, base ? base : 8); |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 96 | |
| 97 | /* if end isn't the same as p, we got a non-octal digit */ |
| 98 | if (end != p) |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 99 | dumper->dump_skip = 0; |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 100 | else { |
| 101 | if (*p) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 102 | if (*p == 'b') { |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 103 | dumper->dump_skip *= 512; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 104 | ++p; |
| 105 | } else if (*p == 'B') { |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 106 | dumper->dump_skip *= 1024; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 107 | ++p; |
| 108 | } |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 109 | } |
| 110 | if (*p) |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 111 | dumper->dump_skip = 0; |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 112 | 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 Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 119 | #define TYPE_OFFSET 7 |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 120 | { |
| 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 Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 128 | DO_X_OR_D: |
| 129 | dumper->fshead->nextfu->fmt[TYPE_OFFSET] |
| 130 | = dumper->fshead->nextfs->nextfu->fmt[TYPE_OFFSET] |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 131 | = x_or_d; |
| 132 | } |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 133 | } |
| 134 | } |
| 135 | } |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 136 | } |
| 137 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 138 | static const char *const add_strings[] = { |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 139 | "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 | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 152 | }; |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 153 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 154 | static const char od_opts[] ALIGN1 = "aBbcDdeFfHhIiLlOoXxv"; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 155 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 156 | static const char od_o2si[] ALIGN1 = { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 157 | 0, 1, 2, 3, 5, |
| 158 | 4, 6, 6, 7, 8, |
| 159 | 9, 0xa, 0xb, 0xa, 0xa, |
Glenn L McGrath | 9c83e83 | 2004-07-23 01:42:28 +0000 | [diff] [blame] | 160 | 0xb, 1, 8, 9, |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 161 | }; |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 162 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 163 | int od_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 164 | int od_main(int argc, char **argv) |
| 165 | { |
| 166 | int ch; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 167 | int first = 1; |
Eric Andersen | 5e67887 | 2006-01-30 19:48:23 +0000 | [diff] [blame] | 168 | char *p; |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 169 | dumper_t *dumper = alloc_dumper(); |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 170 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 171 | while ((ch = getopt(argc, argv, od_opts)) > 0) { |
Glenn L McGrath | 9c83e83 | 2004-07-23 01:42:28 +0000 | [diff] [blame] | 172 | if (ch == 'v') { |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 173 | dumper->dump_vflag = ALL; |
Eric Andersen | 5e67887 | 2006-01-30 19:48:23 +0000 | [diff] [blame] | 174 | } else if (((p = strchr(od_opts, ch)) != NULL) && (*p != '\0')) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 175 | if (first) { |
| 176 | first = 0; |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 177 | bb_dump_add(dumper, "\"%07.7_Ao\n\""); |
| 178 | bb_dump_add(dumper, "\"%07.7_ao \""); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 179 | } else { |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 180 | bb_dump_add(dumper, "\" \""); |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 181 | } |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 182 | bb_dump_add(dumper, add_strings[(int)od_o2si[(p - od_opts)]]); |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 183 | } else { /* P, p, s, w, or other unhandled */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 184 | bb_show_usage(); |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 185 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 186 | } |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 187 | 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 McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | argc -= optind; |
| 193 | argv += optind; |
| 194 | |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 195 | odoffset(dumper, argc, &argv); |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 196 | |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 197 | return bb_dump_dump(dumper, argv); |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 198 | } |
Denis Vlasenko | 1114de7 | 2006-10-10 23:26:05 +0000 | [diff] [blame] | 199 | #endif /* ENABLE_DESKTOP */ |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 200 | |
| 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 | */ |