blob: a4483a114c6745212d6af2115c6d59e101d0ec86 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrath60281112001-11-02 11:39:46 +00002/*
3 * hexdump implementation for busybox
4 * Based on code from util-linux v 2.11l
5 *
6 * Copyright (c) 1989
Denys Vlasenkofb132e42010-10-29 11:46:52 +02007 * The Regents of the University of California. All rights reserved.
Glenn L McGrath60281112001-11-02 11:39:46 +00008 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02009 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Glenn L McGrath60281112001-11-02 11:39:46 +000010 */
Denys Vlasenkodd898c92016-11-23 11:46:32 +010011//config:config HEXDUMP
12//config: bool "hexdump"
13//config: default y
14//config: help
15//config: The hexdump utility is used to display binary data in a readable
16//config: way that is comparable to the output from most hex editors.
17//config:
18//config:config FEATURE_HEXDUMP_REVERSE
19//config: bool "Support -R, reverse of 'hexdump -Cv'"
20//config: default y
21//config: depends on HEXDUMP
22//config: help
23//config: The hexdump utility is used to display binary data in an ascii
24//config: readable way. This option creates binary data from an ascii input.
25//config: NB: this option is non-standard. It's unwise to use it in scripts
26//config: aimed to be portable.
27//config:
28//config:config HD
29//config: bool "hd"
30//config: default y
Denys Vlasenkodd898c92016-11-23 11:46:32 +010031//config: help
32//config: hd is an alias to hexdump -C.
33
34//applet:IF_HEXDUMP(APPLET_NOEXEC(hexdump, hexdump, BB_DIR_USR_BIN, BB_SUID_DROP, hexdump))
35//applet:IF_HD(APPLET_NOEXEC(hd, hexdump, BB_DIR_USR_BIN, BB_SUID_DROP, hd))
36
37//kbuild:lib-$(CONFIG_HEXDUMP) += hexdump.o
38//kbuild:lib-$(CONFIG_HD) += hexdump.o
Glenn L McGrath60281112001-11-02 11:39:46 +000039
Pere Orga5bc8c002011-04-11 03:29:49 +020040//usage:#define hexdump_trivial_usage
41//usage: "[-bcCdefnosvx" IF_FEATURE_HEXDUMP_REVERSE("R") "] [FILE]..."
42//usage:#define hexdump_full_usage "\n\n"
43//usage: "Display FILEs (or stdin) in a user specified format\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020044//usage: "\n -b One-byte octal display"
45//usage: "\n -c One-byte character display"
46//usage: "\n -C Canonical hex+ASCII, 16 bytes per line"
47//usage: "\n -d Two-byte decimal display"
48//usage: "\n -e FORMAT_STRING"
49//usage: "\n -f FORMAT_FILE"
Denys Vlasenko0f436472017-01-25 01:58:00 +010050// exactly the same help text lines in hexdump and xxd:
Pere Orga5bc8c002011-04-11 03:29:49 +020051//usage: "\n -n LENGTH Interpret only LENGTH bytes of input"
52//usage: "\n -o Two-byte octal display"
53//usage: "\n -s OFFSET Skip OFFSET bytes"
54//usage: "\n -v Display all input data"
55//usage: "\n -x Two-byte hexadecimal display"
56//usage: IF_FEATURE_HEXDUMP_REVERSE(
57//usage: "\n -R Reverse of 'hexdump -Cv'")
58//usage:
59//usage:#define hd_trivial_usage
60//usage: "FILE..."
61//usage:#define hd_full_usage "\n\n"
62//usage: "hd is an alias for hexdump -C"
63
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000064#include "libbb.h"
Manuel Novoa III cad53642003-03-19 09:13:01 +000065#include "dump.h"
Glenn L McGrath60281112001-11-02 11:39:46 +000066
Denis Vlasenko99912ca2007-04-10 15:43:37 +000067/* This is a NOEXEC applet. Be very careful! */
68
Denis Vlasenko55f79122008-07-16 11:00:16 +000069static void bb_dump_addfile(dumper_t *dumper, char *name)
Glenn L McGrath60281112001-11-02 11:39:46 +000070{
Denis Vlasenko084266e2008-07-26 23:08:31 +000071 char *p;
72 FILE *fp;
73 char *buf;
74
75 fp = xfopen_for_read(name);
76 while ((buf = xmalloc_fgetline(fp)) != NULL) {
77 p = skip_whitespace(buf);
78 if (*p && (*p != '#')) {
79 bb_dump_add(dumper, p);
80 }
81 free(buf);
Glenn L McGrath60281112001-11-02 11:39:46 +000082 }
Denis Vlasenko084266e2008-07-26 23:08:31 +000083 fclose(fp);
Glenn L McGrath60281112001-11-02 11:39:46 +000084}
85
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000086static const char *const add_strings[] = {
Denys Vlasenko0f436472017-01-25 01:58:00 +010087 "\"%07.7_ax \"16/1 \"%03o \"\"\n\"", /* b */
88 "\"%07.7_ax \"16/1 \"%3_c \"\"\n\"", /* c */
89 "\"%07.7_ax \"8/2 \" %05u \"\"\n\"", /* d */
90 "\"%07.7_ax \"8/2 \" %06o \"\"\n\"", /* o */
91 "\"%07.7_ax \"8/2 \" %04x \"\"\n\"", /* x */
Manuel Novoa III cad53642003-03-19 09:13:01 +000092};
93
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000094static const char add_first[] ALIGN1 = "\"%07.7_Ax\n\"";
Manuel Novoa III cad53642003-03-19 09:13:01 +000095
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000096static const char hexdump_opts[] ALIGN1 = "bcdoxCe:f:n:s:v" IF_FEATURE_HEXDUMP_REVERSE("R");
Manuel Novoa III cad53642003-03-19 09:13:01 +000097
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000098int hexdump_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Glenn L McGrath60281112001-11-02 11:39:46 +000099int hexdump_main(int argc, char **argv)
100{
Denis Vlasenko55f79122008-07-16 11:00:16 +0000101 dumper_t *dumper = alloc_dumper();
Manuel Novoa III cad53642003-03-19 09:13:01 +0000102 const char *p;
Glenn L McGrath60281112001-11-02 11:39:46 +0000103 int ch;
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000104#if ENABLE_FEATURE_HEXDUMP_REVERSE
105 FILE *fp;
106 smallint rdump = 0;
107#endif
Glenn L McGrath60281112001-11-02 11:39:46 +0000108
Denys Vlasenko5b966c62016-11-23 11:53:12 +0100109 if (ENABLE_HD
110 && (!ENABLE_HEXDUMP || !applet_name[2])
111 ) { /* we are "hd" */
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000112 ch = 'C';
113 goto hd_applet;
114 }
115
116 /* We cannot use getopt32: in hexdump options are cumulative.
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000117 * E.g. "hexdump -C -C file" should dump each line twice */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000118 while ((ch = getopt(argc, argv, hexdump_opts)) > 0) {
Denis Vlasenko4c196a82006-09-23 15:53:01 +0000119 p = strchr(hexdump_opts, ch);
Denis Vlasenko2dbeaa92006-09-23 13:31:46 +0000120 if (!p)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000121 bb_show_usage();
Denis Vlasenko2dbeaa92006-09-23 13:31:46 +0000122 if ((p - hexdump_opts) < 5) {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000123 bb_dump_add(dumper, add_first);
124 bb_dump_add(dumper, add_strings[(int)(p - hexdump_opts)]);
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000125 }
126 /* Save a little bit of space below by omitting the 'else's. */
127 if (ch == 'C') {
128 hd_applet:
Denys Vlasenko0f436472017-01-25 01:58:00 +0100129 bb_dump_add(dumper, "\"%08.8_Ax\n\""); // final address line after dump
Denys Vlasenko8a2657c2017-01-25 03:07:39 +0100130 //------------------- "address " 8 * "xx " " " 8 * "xx "
131 bb_dump_add(dumper, "\"%08.8_ax \"8/1 \"%02x \"\" \"8/1 \"%02x \"");
Denys Vlasenko0f436472017-01-25 01:58:00 +0100132 //------------------- " |ASCII...........|\n"
133 bb_dump_add(dumper, "\" |\"16/1 \"%_p\"\"|\n\"");
Glenn L McGrath60281112001-11-02 11:39:46 +0000134 }
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000135 if (ch == 'e') {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000136 bb_dump_add(dumper, optarg);
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000137 } /* else */
138 if (ch == 'f') {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000139 bb_dump_addfile(dumper, optarg);
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000140 } /* else */
141 if (ch == 'n') {
Denys Vlasenko77832482010-08-12 14:14:45 +0200142 dumper->dump_length = xatoi_positive(optarg);
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000143 } /* else */
Denys Vlasenko1854bc12010-04-06 23:33:28 +0200144 if (ch == 's') { /* compat: -s accepts hex numbers too */
Denys Vlasenko2c248062013-03-27 15:18:32 +0100145 dumper->dump_skip = xstrtoull_range_sfx(
Denys Vlasenkoef6747e2013-03-27 15:15:33 +0100146 optarg,
147 /*base:*/ 0,
148 /*lo:*/ 0, /*hi:*/ OFF_T_MAX,
Denys Vlasenkoc72b43c2013-07-13 23:49:45 +0200149 bkm_suffixes
Denys Vlasenkoef6747e2013-03-27 15:15:33 +0100150 );
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000151 } /* else */
152 if (ch == 'v') {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000153 dumper->dump_vflag = ALL;
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000154 }
155#if ENABLE_FEATURE_HEXDUMP_REVERSE
156 if (ch == 'R') {
157 rdump = 1;
158 }
159#endif
Glenn L McGrath60281112001-11-02 11:39:46 +0000160 }
161
Denis Vlasenko55f79122008-07-16 11:00:16 +0000162 if (!dumper->fshead) {
163 bb_dump_add(dumper, add_first);
Denys Vlasenko0f436472017-01-25 01:58:00 +0100164 bb_dump_add(dumper, "\"%07.7_ax \"8/2 \"%04x \"\"\n\"");
Glenn L McGrath60281112001-11-02 11:39:46 +0000165 }
166
167 argv += optind;
168
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000169#if !ENABLE_FEATURE_HEXDUMP_REVERSE
Denis Vlasenko55f79122008-07-16 11:00:16 +0000170 return bb_dump_dump(dumper, argv);
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000171#else
172 if (!rdump) {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000173 return bb_dump_dump(dumper, argv);
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000174 }
175
176 /* -R: reverse of 'hexdump -Cv' */
177 fp = stdin;
178 if (!*argv) {
179 argv--;
180 goto jump_in;
181 }
182
183 do {
184 char *buf;
Denis Vlasenko5415c852008-07-21 23:05:26 +0000185 fp = xfopen_for_read(*argv);
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000186 jump_in:
Denis Vlasenko8ee649a2008-03-26 20:04:27 +0000187 while ((buf = xmalloc_fgetline(fp)) != NULL) {
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000188 p = buf;
189 while (1) {
190 /* skip address or previous byte */
191 while (isxdigit(*p)) p++;
192 while (*p == ' ') p++;
193 /* '|' char will break the line */
194 if (!isxdigit(*p) || sscanf(p, "%x ", &ch) != 1)
195 break;
196 putchar(ch);
197 }
198 free(buf);
199 }
200 fclose(fp);
201 } while (*++argv);
202
203 fflush_stdout_and_exit(EXIT_SUCCESS);
204#endif
Glenn L McGrath60281112001-11-02 11:39:46 +0000205}