blob: 76dada983919c9a7350f7a8786d221674fecee37 [file] [log] [blame]
Denys Vlasenko0f436472017-01-25 01:58:00 +01001/* vi: set sw=4 ts=4: */
2/*
3 * xxd implementation for busybox
4 *
5 * Copyright (c) 2017 Denys Vlasenko <vda.linux@gmail.com>
6 *
7 * Licensed under GPLv2, see file LICENSE in this source tree.
8 */
9//config:config XXD
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020010//config: bool "xxd (8.9 kb)"
Denys Vlasenko0f436472017-01-25 01:58:00 +010011//config: default y
12//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020013//config: The xxd utility is used to display binary data in a readable
14//config: way that is comparable to the output from most hex editors.
Denys Vlasenko0f436472017-01-25 01:58:00 +010015
16//applet:IF_XXD(APPLET_NOEXEC(xxd, xxd, BB_DIR_USR_BIN, BB_SUID_DROP, xxd))
17
18//kbuild:lib-$(CONFIG_XXD) += hexdump_xxd.o
19
20// $ xxd --version
21// xxd V1.10 27oct98 by Juergen Weigert
22// $ xxd --help
23// Usage:
24// xxd [options] [infile [outfile]]
25// or
26// xxd -r [-s [-]offset] [-c cols] [-ps] [infile [outfile]]
27// Options:
28// -a toggle autoskip: A single '*' replaces nul-lines. Default off.
29// -b binary digit dump (incompatible with -ps,-i,-r). Default hex.
30// -c cols format <cols> octets per line. Default 16 (-i: 12, -ps: 30).
31// -E show characters in EBCDIC. Default ASCII.
32// -e little-endian dump (incompatible with -ps,-i,-r).
33// -g number of octets per group in normal output. Default 2 (-e: 4).
34// -i output in C include file style.
35// -l len stop after <len> octets.
36// -o off add <off> to the displayed file position.
37// -ps output in postscript plain hexdump style.
38// -r reverse operation: convert (or patch) hexdump into binary.
39// -r -s off revert with <off> added to file positions found in hexdump.
40// -s [+][-]seek start at <seek> bytes abs. (or +: rel.) infile offset.
41// -u use upper case hex letters.
42
43//usage:#define xxd_trivial_usage
Denys Vlasenko2c436672021-06-18 00:59:17 +020044//usage: "[-pri] [-g N] [-c N] [-n LEN] [-s OFS] [-o OFS] [FILE]"
Denys Vlasenko0f436472017-01-25 01:58:00 +010045//usage:#define xxd_full_usage "\n\n"
46//usage: "Hex dump FILE (or stdin)\n"
47//usage: "\n -g N Bytes per group"
48//usage: "\n -c N Bytes per line"
Denys Vlasenko62a9b182017-01-25 16:50:30 +010049//usage: "\n -p Show only hex bytes, assumes -c30"
Denys Vlasenko2c436672021-06-18 00:59:17 +020050//usage: "\n -i C include file style"
Denys Vlasenko0f436472017-01-25 01:58:00 +010051// exactly the same help text lines in hexdump and xxd:
Denys Vlasenko62a9b182017-01-25 16:50:30 +010052//usage: "\n -l LENGTH Show only first LENGTH bytes"
Denys Vlasenko0f436472017-01-25 01:58:00 +010053//usage: "\n -s OFFSET Skip OFFSET bytes"
Denys Vlasenko4d161612021-06-17 23:53:30 +020054//usage: "\n -o OFFSET Add OFFSET to displayed offset"
Denys Vlasenko32e1f692020-10-25 16:06:45 +010055//usage: "\n -r Reverse (with -p, assumes no offsets in input)"
Denys Vlasenko0f436472017-01-25 01:58:00 +010056
57#include "libbb.h"
58#include "dump.h"
59
60/* This is a NOEXEC applet. Be very careful! */
61
Denys Vlasenko32e1f692020-10-25 16:06:45 +010062#define OPT_l (1 << 0)
63#define OPT_s (1 << 1)
64#define OPT_a (1 << 2)
65#define OPT_p (1 << 3)
Denys Vlasenko2c436672021-06-18 00:59:17 +020066#define OPT_i (1 << 4)
67#define OPT_r (1 << 5)
68#define OPT_g (1 << 6)
69#define OPT_c (1 << 7)
70#define OPT_o (1 << 8)
Denys Vlasenko32e1f692020-10-25 16:06:45 +010071
Denys Vlasenko86ba0072021-10-08 23:03:54 +020072static void reverse(unsigned opt, const char *filename)
Denys Vlasenko32e1f692020-10-25 16:06:45 +010073{
74 FILE *fp;
75 char *buf;
76
77 fp = filename ? xfopen_for_read(filename) : stdin;
78
79 while ((buf = xmalloc_fgetline(fp)) != NULL) {
Denys Vlasenko86ba0072021-10-08 23:03:54 +020080 char *p;
Denys Vlasenko32e1f692020-10-25 16:06:45 +010081
Denys Vlasenko86ba0072021-10-08 23:03:54 +020082 p = buf;
Denys Vlasenko32e1f692020-10-25 16:06:45 +010083 if (!(opt & OPT_p)) {
84 /* skip address */
85 while (isxdigit(*p)) p++;
86 /* NB: for xxd -r, first hex portion is address even without colon */
87 /* If it's there, skip it: */
88 if (*p == ':') p++;
89
90//TODO: seek (or zero-pad if unseekable) to the address position
91//NOTE: -s SEEK value should be added to the address before seeking
92 }
93
94 /* Process hex bytes optionally separated by whitespace */
Denys Vlasenko86ba0072021-10-08 23:03:54 +020095 for (;;) {
Denys Vlasenko32e1f692020-10-25 16:06:45 +010096 uint8_t val, c;
Denys Vlasenko86ba0072021-10-08 23:03:54 +020097 nibble1:
Denys Vlasenko32e1f692020-10-25 16:06:45 +010098 p = skip_whitespace(p);
99
100 c = *p++;
101 if (isdigit(c))
102 val = c - '0';
103 else if ((c|0x20) >= 'a' && (c|0x20) <= 'f')
104 val = (c|0x20) - ('a' - 10);
Denys Vlasenko86ba0072021-10-08 23:03:54 +0200105 else {
106 /* xxd V1.10 is inconsistent here.
107 * echo -e "31 !3 0a 0a" | xxd -r -p
108 * is "10<a0>" (no <cr>) - "!" is ignored,
109 * but
110 * echo -e "31 !!343434\n30 0a" | xxd -r -p
111 * is "10<cr>" - "!!" drops rest of the line.
112 * We will ignore all invalid chars:
113 */
114 if (c != '\0')
115 goto nibble1;
Denys Vlasenko32e1f692020-10-25 16:06:45 +0100116 break;
Denys Vlasenko86ba0072021-10-08 23:03:54 +0200117 }
Denys Vlasenko32e1f692020-10-25 16:06:45 +0100118 val <<= 4;
119
120 /* Works the same with xxd V1.10:
121 * echo "31 09 32 0a" | xxd -r -p
122 * echo "31 0 9 32 0a" | xxd -r -p
123 * thus allow whitespace even within the byte:
124 */
Denys Vlasenko86ba0072021-10-08 23:03:54 +0200125 nibble2:
Denys Vlasenko32e1f692020-10-25 16:06:45 +0100126 p = skip_whitespace(p);
127
128 c = *p++;
129 if (isdigit(c))
130 val |= c - '0';
131 else if ((c|0x20) >= 'a' && (c|0x20) <= 'f')
132 val |= (c|0x20) - ('a' - 10);
Denys Vlasenko86ba0072021-10-08 23:03:54 +0200133 else {
134 if (c != '\0') {
135 /* "...3<not_hex_char>..." ignores both chars */
136 goto nibble1;
137 }
138 /* Nibbles can join even through newline:
139 * echo -e "31 3\n2 0a" | xxd -r -p
140 * is "12<cr>".
141 */
142 free(buf);
143 p = buf = xmalloc_fgetline(fp);
144 if (!buf)
145 break;
146 goto nibble2;
147 }
Denys Vlasenko32e1f692020-10-25 16:06:45 +0100148 putchar(val);
Denys Vlasenko86ba0072021-10-08 23:03:54 +0200149 }
Denys Vlasenko32e1f692020-10-25 16:06:45 +0100150 free(buf);
151 }
152 //fclose(fp);
153 fflush_stdout_and_exit(EXIT_SUCCESS);
154}
155
Denys Vlasenko2c436672021-06-18 00:59:17 +0200156static void print_C_style(const char *p, const char *hdr)
157{
158 printf(hdr, isdigit(p[0]) ? "__" : "");
159 while (*p) {
160 bb_putchar(isalnum(*p) ? *p : '_');
161 p++;
162 }
163}
164
Denys Vlasenko0f436472017-01-25 01:58:00 +0100165int xxd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
166int xxd_main(int argc UNUSED_PARAM, char **argv)
167{
168 char buf[80];
169 dumper_t *dumper;
Denys Vlasenko4d161612021-06-17 23:53:30 +0200170 char *opt_l, *opt_s, *opt_o;
Denys Vlasenko0f436472017-01-25 01:58:00 +0100171 unsigned bytes = 2;
172 unsigned cols = 0;
173 unsigned opt;
Denys Vlasenko2c436672021-06-18 00:59:17 +0200174 int r;
Denys Vlasenko0f436472017-01-25 01:58:00 +0100175
176 dumper = alloc_dumper();
177
Denys Vlasenko2c436672021-06-18 00:59:17 +0200178 opt = getopt32(argv, "^" "l:s:apirg:+c:+o:" "\0" "?1" /* 1 argument max */,
Denys Vlasenko4d161612021-06-17 23:53:30 +0200179 &opt_l, &opt_s, &bytes, &cols, &opt_o
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200180 );
Denys Vlasenko0f436472017-01-25 01:58:00 +0100181 argv += optind;
182
Denys Vlasenko62a9b182017-01-25 16:50:30 +0100183 dumper->dump_vflag = ALL;
Denys Vlasenko0f436472017-01-25 01:58:00 +0100184// if (opt & OPT_a)
185// dumper->dump_vflag = SKIPNUL; ..does not exist
186 if (opt & OPT_l) {
187 dumper->dump_length = xstrtou_range(
188 opt_l,
189 /*base:*/ 0,
190 /*lo:*/ 0, /*hi:*/ INT_MAX
191 );
192 }
193 if (opt & OPT_s) {
194 dumper->dump_skip = xstrtoull_range(
195 opt_s,
196 /*base:*/ 0,
197 /*lo:*/ 0, /*hi:*/ OFF_T_MAX
198 );
199 //BUGGY for /proc/version (unseekable?)
200 }
201
Denys Vlasenko86ba0072021-10-08 23:03:54 +0200202 if (opt & OPT_r) {
203 reverse(opt, argv[0]);
204 }
205
Denys Vlasenko4d161612021-06-17 23:53:30 +0200206 if (opt & OPT_o) {
207 /* -o accepts negative numbers too */
208 dumper->xxd_displayoff = xstrtoll(opt_o, /*base:*/ 0);
209 }
210
Denys Vlasenko62a9b182017-01-25 16:50:30 +0100211 if (opt & OPT_p) {
212 if (cols == 0)
213 cols = 30;
214 bytes = cols; /* -p ignores -gN */
215 } else {
216 if (cols == 0)
Denys Vlasenko2c436672021-06-18 00:59:17 +0200217 cols = (opt & OPT_i) ? 12 : 16;
Denys Vlasenko294d0c82021-06-25 00:16:04 +0200218 if (opt & OPT_i) {
219 bytes = 1; // -i ignores -gN
220 // output is " 0xXX, 0xXX, 0xXX...", add leading space
221 bb_dump_add(dumper, "\" \"");
222 } else
Denys Vlasenko2c436672021-06-18 00:59:17 +0200223 bb_dump_add(dumper, "\"%08.8_ax: \""); // "address: "
Denys Vlasenko62a9b182017-01-25 16:50:30 +0100224 }
225
Denys Vlasenko0f436472017-01-25 01:58:00 +0100226 if (bytes < 1 || bytes >= cols) {
Denys Vlasenko294d0c82021-06-25 00:16:04 +0200227 sprintf(buf, "%u/1 \"%%02x\"", cols); // cols * "XX"
Denys Vlasenko0f436472017-01-25 01:58:00 +0100228 bb_dump_add(dumper, buf);
229 }
230 else if (bytes == 1) {
Denys Vlasenko2c436672021-06-18 00:59:17 +0200231 if (opt & OPT_i)
Denys Vlasenko294d0c82021-06-25 00:16:04 +0200232 sprintf(buf, "%u/1 \" 0x%%02x,\"", cols); // cols * " 0xXX,"
233//TODO: compat: omit the last comma after the very last byte
Denys Vlasenko2c436672021-06-18 00:59:17 +0200234 else
Denys Vlasenko294d0c82021-06-25 00:16:04 +0200235 sprintf(buf, "%u/1 \"%%02x \"", cols); // cols * "XX "
Denys Vlasenko0f436472017-01-25 01:58:00 +0100236 bb_dump_add(dumper, buf);
237 }
238 else {
239/* Format "print byte" with and without trailing space */
240#define BS "/1 \"%02x \""
241#define B "/1 \"%02x\""
242 unsigned i;
Denys Vlasenko62a9b182017-01-25 16:50:30 +0100243 char *bigbuf = xmalloc(cols * (sizeof(BS)-1));
Denys Vlasenko0f436472017-01-25 01:58:00 +0100244 char *p = bigbuf;
245 for (i = 1; i <= cols; i++) {
246 if (i == cols || i % bytes)
247 p = stpcpy(p, B);
248 else
249 p = stpcpy(p, BS);
250 }
251 // for -g3, this results in B B BS B B BS... B = "xxxxxx xxxxxx .....xx"
252 // todo: can be more clever and use
Denys Vlasenko7dd906a2017-01-25 17:00:38 +0100253 // one 'bytes-1/1 "%02x"' format instead of many "B B B..." formats
Denys Vlasenko0f436472017-01-25 01:58:00 +0100254 //bb_error_msg("ADDED:'%s'", bigbuf);
255 bb_dump_add(dumper, bigbuf);
256 free(bigbuf);
257 }
258
Denys Vlasenko2c436672021-06-18 00:59:17 +0200259 if (!(opt & (OPT_p|OPT_i))) {
Denys Vlasenko62a9b182017-01-25 16:50:30 +0100260 sprintf(buf, "\" \"%u/1 \"%%_p\"\"\n\"", cols); // " ASCII\n"
261 bb_dump_add(dumper, buf);
Denys Vlasenko7dd906a2017-01-25 17:00:38 +0100262 } else {
263 bb_dump_add(dumper, "\"\n\"");
Denys Vlasenko4d161612021-06-17 23:53:30 +0200264 dumper->xxd_eofstring = "\n";
Denys Vlasenko62a9b182017-01-25 16:50:30 +0100265 }
Denys Vlasenko0f436472017-01-25 01:58:00 +0100266
Denys Vlasenko2c436672021-06-18 00:59:17 +0200267 if ((opt & OPT_i) && argv[0]) {
268 print_C_style(argv[0], "unsigned char %s");
269 printf("[] = {\n");
270 }
271 r = bb_dump_dump(dumper, argv);
272 if (r == 0 && (opt & OPT_i) && argv[0]) {
273 print_C_style(argv[0], "};\nunsigned int %s");
274 printf("_len = %"OFF_FMT"u;\n", dumper->address);
275 }
276 return r;
Denys Vlasenko0f436472017-01-25 01:58:00 +0100277}