"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 | */ |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 13 | //config:config OD |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 14 | //config: bool "od (11 kb)" |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 15 | //config: default y |
| 16 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 17 | //config: od is used to dump binary files in octal and other formats. |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 18 | |
| 19 | //applet:IF_OD(APPLET(od, BB_DIR_USR_BIN, BB_SUID_DROP)) |
| 20 | |
| 21 | //kbuild:lib-$(CONFIG_OD) += od.o |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 22 | |
Denys Vlasenko | 5c10fa5 | 2011-05-21 17:43:06 +0200 | [diff] [blame] | 23 | //usage:#if !ENABLE_DESKTOP |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 24 | //usage:#define od_trivial_usage |
Denys Vlasenko | 5c10fa5 | 2011-05-21 17:43:06 +0200 | [diff] [blame] | 25 | //usage: "[-aBbcDdeFfHhIiLlOovXx] [FILE]" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 26 | //usage:#define od_full_usage "\n\n" |
Denys Vlasenko | 5c10fa5 | 2011-05-21 17:43:06 +0200 | [diff] [blame] | 27 | //usage: "Print FILE (or stdin) unambiguously, as octal bytes by default" |
| 28 | //usage:#endif |
Denis Vlasenko | 97a8dd3 | 2006-10-01 15:55:11 +0000 | [diff] [blame] | 29 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 30 | #include "libbb.h" |
Denis Vlasenko | 1114de7 | 2006-10-10 23:26:05 +0000 | [diff] [blame] | 31 | #if ENABLE_DESKTOP |
| 32 | /* This one provides -t (busybox's own build script needs it) */ |
| 33 | #include "od_bloaty.c" |
| 34 | #else |
Bernhard Reutner-Fischer | 6a1829d | 2007-02-03 12:52:25 +0000 | [diff] [blame] | 35 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 36 | #include "dump.h" |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 37 | |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 38 | static void |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 39 | odoffset(dumper_t *dumper, int argc, char ***argvp) |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 40 | { |
"Robert P. J. Day" | 6822983 | 2006-07-01 13:08:46 +0000 | [diff] [blame] | 41 | char *num, *p; |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 42 | int base; |
| 43 | char *end; |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 44 | |
| 45 | /* |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 46 | * 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 McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 54 | * |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 55 | * We assumes it's a file if the offset is bad. |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 56 | */ |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 57 | p = **argvp; |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 58 | |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 59 | if (!p) { |
| 60 | /* hey someone is probably piping to us ... */ |
| 61 | return; |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 62 | } |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 63 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 64 | if ((*p != '+') |
| 65 | && (argc < 2 |
Denys Vlasenko | f2cbb03 | 2009-10-23 03:16:08 +0200 | [diff] [blame] | 66 | || (!isdigit(p[0]) |
| 67 | && ((p[0] != 'x') || !isxdigit(p[1]))))) |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 68 | return; |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 69 | |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 70 | base = 0; |
| 71 | /* |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 72 | * skip over leading '+', 'x[0-9a-fA-f]' or '0x', and |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 73 | * set base. |
| 74 | */ |
| 75 | if (p[0] == '+') |
| 76 | ++p; |
Denys Vlasenko | f2cbb03 | 2009-10-23 03:16:08 +0200 | [diff] [blame] | 77 | if (p[0] == 'x' && isxdigit(p[1])) { |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 78 | ++p; |
| 79 | base = 16; |
| 80 | } else if (p[0] == '0' && p[1] == 'x') { |
| 81 | p += 2; |
| 82 | base = 16; |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 83 | } |
| 84 | |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 85 | /* skip over the number */ |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 86 | if (base == 16) |
Denys Vlasenko | f2cbb03 | 2009-10-23 03:16:08 +0200 | [diff] [blame] | 87 | for (num = p; isxdigit(*p); ++p) |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 88 | continue; |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 89 | else |
Denys Vlasenko | f2cbb03 | 2009-10-23 03:16:08 +0200 | [diff] [blame] | 90 | for (num = p; isdigit(*p); ++p) |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 91 | continue; |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 92 | |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 93 | /* 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 Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 104 | dumper->dump_skip = strtol(num, &end, base ? base : 8); |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 105 | |
| 106 | /* if end isn't the same as p, we got a non-octal digit */ |
| 107 | if (end != p) |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 108 | dumper->dump_skip = 0; |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 109 | else { |
| 110 | if (*p) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 111 | if (*p == 'b') { |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 112 | dumper->dump_skip *= 512; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 113 | ++p; |
| 114 | } else if (*p == 'B') { |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 115 | dumper->dump_skip *= 1024; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 116 | ++p; |
| 117 | } |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 118 | } |
| 119 | if (*p) |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 120 | dumper->dump_skip = 0; |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 121 | 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 Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 128 | #define TYPE_OFFSET 7 |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 129 | { |
| 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 Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 137 | DO_X_OR_D: |
| 138 | dumper->fshead->nextfu->fmt[TYPE_OFFSET] |
| 139 | = dumper->fshead->nextfs->nextfu->fmt[TYPE_OFFSET] |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 140 | = x_or_d; |
| 141 | } |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 142 | } |
| 143 | } |
| 144 | } |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 145 | } |
| 146 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 147 | static const char *const add_strings[] = { |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 148 | "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 | 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 | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 163 | static const char od_opts[] ALIGN1 = "aBbcDdeFfHhIiLlOoXxv"; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 164 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 165 | static const char od_o2si[] ALIGN1 = { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 166 | 0, 1, 2, 3, 5, |
| 167 | 4, 6, 6, 7, 8, |
| 168 | 9, 0xa, 0xb, 0xa, 0xa, |
Glenn L McGrath | 9c83e83 | 2004-07-23 01:42:28 +0000 | [diff] [blame] | 169 | 0xb, 1, 8, 9, |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 170 | }; |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 171 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 172 | int od_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 173 | int od_main(int argc, char **argv) |
| 174 | { |
| 175 | int ch; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 176 | int first = 1; |
Eric Andersen | 5e67887 | 2006-01-30 19:48:23 +0000 | [diff] [blame] | 177 | char *p; |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 178 | dumper_t *dumper = alloc_dumper(); |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 179 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 180 | while ((ch = getopt(argc, argv, od_opts)) > 0) { |
Glenn L McGrath | 9c83e83 | 2004-07-23 01:42:28 +0000 | [diff] [blame] | 181 | if (ch == 'v') { |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 182 | dumper->dump_vflag = ALL; |
Eric Andersen | 5e67887 | 2006-01-30 19:48:23 +0000 | [diff] [blame] | 183 | } else if (((p = strchr(od_opts, ch)) != NULL) && (*p != '\0')) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 184 | if (first) { |
| 185 | first = 0; |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 186 | bb_dump_add(dumper, "\"%07.7_Ao\n\""); |
| 187 | bb_dump_add(dumper, "\"%07.7_ao \""); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 188 | } else { |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 189 | bb_dump_add(dumper, "\" \""); |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 190 | } |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 191 | bb_dump_add(dumper, add_strings[(int)od_o2si[(p - od_opts)]]); |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 192 | } else { /* P, p, s, w, or other unhandled */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 193 | bb_show_usage(); |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 194 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 195 | } |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 196 | 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 McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | argc -= optind; |
| 202 | argv += optind; |
| 203 | |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 204 | odoffset(dumper, argc, &argv); |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 205 | |
Denis Vlasenko | 55f7912 | 2008-07-16 11:00:16 +0000 | [diff] [blame] | 206 | return bb_dump_dump(dumper, argv); |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 207 | } |
Denis Vlasenko | 1114de7 | 2006-10-10 23:26:05 +0000 | [diff] [blame] | 208 | #endif /* ENABLE_DESKTOP */ |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 209 | |
| 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 Vlasenko | 95f7953 | 2017-08-02 14:26:33 +0200 | [diff] [blame] | 226 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 227 | * 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 | */ |