"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 |
| 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 | * |
"Robert P. J. Day" | 801ab14 | 2006-07-12 07:56:04 +0000 | [diff] [blame] | 9 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
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 | |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 14 | #include <ctype.h> |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 15 | #include <string.h> |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 16 | #include <getopt.h> |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 17 | #include <stdlib.h> |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 18 | #include "busybox.h" |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 19 | #include "dump.h" |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 20 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 21 | #define isdecdigit(c) (isdigit)(c) |
| 22 | #define ishexdigit(c) (isxdigit)(c) |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 23 | |
| 24 | static void |
| 25 | odoffset(int argc, char ***argvp) |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 26 | { |
"Robert P. J. Day" | 6822983 | 2006-07-01 13:08:46 +0000 | [diff] [blame] | 27 | char *num, *p; |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 28 | int base; |
| 29 | char *end; |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 30 | |
| 31 | /* |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 32 | * The offset syntax of od(1) was genuinely bizarre. First, if |
| 33 | * it started with a plus it had to be an offset. Otherwise, if |
| 34 | * there were at least two arguments, a number or lower-case 'x' |
| 35 | * followed by a number makes it an offset. By default it was |
| 36 | * octal; if it started with 'x' or '0x' it was hex. If it ended |
| 37 | * in a '.', it was decimal. If a 'b' or 'B' was appended, it |
| 38 | * multiplied the number by 512 or 1024 byte units. There was |
| 39 | * no way to assign a block count to a hex offset. |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 40 | * |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 41 | * We assumes it's a file if the offset is bad. |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 42 | */ |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 43 | p = **argvp; |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 44 | |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 45 | if (!p) { |
| 46 | /* hey someone is probably piping to us ... */ |
| 47 | return; |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 48 | } |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 49 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 50 | if ((*p != '+') |
| 51 | && (argc < 2 |
| 52 | || (!isdecdigit(p[0]) |
| 53 | && ((p[0] != 'x') || !ishexdigit(p[1]))))) |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 54 | return; |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 55 | |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 56 | base = 0; |
| 57 | /* |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 58 | * bb_dump_skip over leading '+', 'x[0-9a-fA-f]' or '0x', and |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 59 | * set base. |
| 60 | */ |
| 61 | if (p[0] == '+') |
| 62 | ++p; |
| 63 | if (p[0] == 'x' && ishexdigit(p[1])) { |
| 64 | ++p; |
| 65 | base = 16; |
| 66 | } else if (p[0] == '0' && p[1] == 'x') { |
| 67 | p += 2; |
| 68 | base = 16; |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 69 | } |
| 70 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 71 | /* bb_dump_skip over the number */ |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 72 | if (base == 16) |
| 73 | for (num = p; ishexdigit(*p); ++p); |
| 74 | else |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 75 | for (num = p; isdecdigit(*p); ++p); |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 76 | |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 77 | /* check for no number */ |
| 78 | if (num == p) |
| 79 | return; |
| 80 | |
| 81 | /* if terminates with a '.', base is decimal */ |
| 82 | if (*p == '.') { |
| 83 | if (base) |
| 84 | return; |
| 85 | base = 10; |
| 86 | } |
| 87 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 88 | bb_dump_skip = strtol(num, &end, base ? base : 8); |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 89 | |
| 90 | /* if end isn't the same as p, we got a non-octal digit */ |
| 91 | if (end != p) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 92 | bb_dump_skip = 0; |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 93 | else { |
| 94 | if (*p) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 95 | if (*p == 'b') { |
| 96 | bb_dump_skip *= 512; |
| 97 | ++p; |
| 98 | } else if (*p == 'B') { |
| 99 | bb_dump_skip *= 1024; |
| 100 | ++p; |
| 101 | } |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 102 | } |
| 103 | if (*p) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 104 | bb_dump_skip = 0; |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 105 | else { |
| 106 | ++*argvp; |
| 107 | /* |
| 108 | * If the offset uses a non-octal base, the base of |
| 109 | * the offset is changed as well. This isn't pretty, |
| 110 | * but it's easy. |
| 111 | */ |
| 112 | #define TYPE_OFFSET 7 |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 113 | { |
| 114 | char x_or_d; |
| 115 | if (base == 16) { |
| 116 | x_or_d = 'x'; |
| 117 | goto DO_X_OR_D; |
| 118 | } |
| 119 | if (base == 10) { |
| 120 | x_or_d = 'd'; |
| 121 | DO_X_OR_D: |
| 122 | bb_dump_fshead->nextfu->fmt[TYPE_OFFSET] |
| 123 | = bb_dump_fshead->nextfs->nextfu->fmt[TYPE_OFFSET] |
| 124 | = x_or_d; |
| 125 | } |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 126 | } |
| 127 | } |
| 128 | } |
Glenn L McGrath | 6028111 | 2001-11-02 11:39:46 +0000 | [diff] [blame] | 129 | } |
| 130 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 131 | static const char * const add_strings[] = { |
| 132 | "16/1 \"%3_u \" \"\\n\"", /* a */ |
| 133 | "8/2 \" %06o \" \"\\n\"", /* B, o */ |
| 134 | "16/1 \"%03o \" \"\\n\"", /* b */ |
| 135 | "16/1 \"%3_c \" \"\\n\"", /* c */ |
| 136 | "8/2 \" %05u \" \"\\n\"", /* d */ |
| 137 | "4/4 \" %010u \" \"\\n\"", /* D */ |
| 138 | "2/8 \" %21.14e \" \"\\n\"", /* e (undocumented in od), F */ |
| 139 | "4/4 \" %14.7e \" \"\\n\"", /* f */ |
| 140 | "4/4 \" %08x \" \"\\n\"", /* H, X */ |
| 141 | "8/2 \" %04x \" \"\\n\"", /* h, x */ |
| 142 | "4/4 \" %11d \" \"\\n\"", /* I, L, l */ |
| 143 | "8/2 \" %6d \" \"\\n\"", /* i */ |
| 144 | "4/4 \" %011o \" \"\\n\"", /* O */ |
| 145 | }; |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 146 | |
Eric Andersen | 5e67887 | 2006-01-30 19:48:23 +0000 | [diff] [blame] | 147 | static const char od_opts[] = "aBbcDdeFfHhIiLlOoXxv"; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 148 | |
Eric Andersen | 5e67887 | 2006-01-30 19:48:23 +0000 | [diff] [blame] | 149 | static const char od_o2si[] = { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 150 | 0, 1, 2, 3, 5, |
| 151 | 4, 6, 6, 7, 8, |
| 152 | 9, 0xa, 0xb, 0xa, 0xa, |
Glenn L McGrath | 9c83e83 | 2004-07-23 01:42:28 +0000 | [diff] [blame] | 153 | 0xb, 1, 8, 9, |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 154 | }; |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 155 | |
| 156 | int od_main(int argc, char **argv) |
| 157 | { |
| 158 | int ch; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 159 | int first = 1; |
Eric Andersen | 5e67887 | 2006-01-30 19:48:23 +0000 | [diff] [blame] | 160 | char *p; |
Manuel Novoa III | 4eff181 | 2003-03-19 09:42:02 +0000 | [diff] [blame] | 161 | bb_dump_vflag = FIRST; |
| 162 | bb_dump_length = -1; |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 163 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 164 | while ((ch = getopt(argc, argv, od_opts)) > 0) { |
Glenn L McGrath | 9c83e83 | 2004-07-23 01:42:28 +0000 | [diff] [blame] | 165 | if (ch == 'v') { |
| 166 | bb_dump_vflag = ALL; |
Eric Andersen | 5e67887 | 2006-01-30 19:48:23 +0000 | [diff] [blame] | 167 | } else if (((p = strchr(od_opts, ch)) != NULL) && (*p != '\0')) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 168 | if (first) { |
| 169 | first = 0; |
| 170 | bb_dump_add("\"%07.7_Ao\n\""); |
| 171 | bb_dump_add("\"%07.7_ao \""); |
| 172 | } else { |
| 173 | bb_dump_add("\" \""); |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 174 | } |
Eric Andersen | 5e67887 | 2006-01-30 19:48:23 +0000 | [diff] [blame] | 175 | bb_dump_add(add_strings[(int)od_o2si[(p-od_opts)]]); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 176 | } else { /* P, p, s, w, or other unhandled */ |
| 177 | bb_show_usage(); |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 178 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 179 | } |
| 180 | if (!bb_dump_fshead) { |
| 181 | bb_dump_add("\"%07.7_Ao\n\""); |
| 182 | bb_dump_add("\"%07.7_ao \" 8/2 \"%06o \" \"\\n\""); |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | argc -= optind; |
| 186 | argv += optind; |
| 187 | |
| 188 | odoffset(argc, &argv); |
| 189 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 190 | return(bb_dump_dump(argv)); |
Glenn L McGrath | e16860d | 2002-11-10 22:16:09 +0000 | [diff] [blame] | 191 | } |
| 192 | |
| 193 | /*- |
| 194 | * Copyright (c) 1990 The Regents of the University of California. |
| 195 | * All rights reserved. |
| 196 | * |
| 197 | * Redistribution and use in source and binary forms, with or without |
| 198 | * modification, are permitted provided that the following conditions |
| 199 | * are met: |
| 200 | * 1. Redistributions of source code must retain the above copyright |
| 201 | * notice, this list of conditions and the following disclaimer. |
| 202 | * 2. Redistributions in binary form must reproduce the above copyright |
| 203 | * notice, this list of conditions and the following disclaimer in the |
| 204 | * documentation and/or other materials provided with the distribution. |
| 205 | * 3. Neither the name of the University nor the names of its contributors |
| 206 | * may be used to endorse or promote products derived from this software |
| 207 | * without specific prior written permission. |
| 208 | * |
| 209 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 210 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 211 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 212 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 213 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 214 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 215 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 216 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 217 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 218 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 219 | * SUCH DAMAGE. |
| 220 | */ |