blob: 43fc188bf1abfec32cbc0b0fd9e7b863814c2bf3 [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 */
11
Pere Orga5bc8c002011-04-11 03:29:49 +020012//usage:#define hexdump_trivial_usage
13//usage: "[-bcCdefnosvx" IF_FEATURE_HEXDUMP_REVERSE("R") "] [FILE]..."
14//usage:#define hexdump_full_usage "\n\n"
15//usage: "Display FILEs (or stdin) in a user specified format\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020016//usage: "\n -b One-byte octal display"
17//usage: "\n -c One-byte character display"
18//usage: "\n -C Canonical hex+ASCII, 16 bytes per line"
19//usage: "\n -d Two-byte decimal display"
20//usage: "\n -e FORMAT_STRING"
21//usage: "\n -f FORMAT_FILE"
22//usage: "\n -n LENGTH Interpret only LENGTH bytes of input"
23//usage: "\n -o Two-byte octal display"
24//usage: "\n -s OFFSET Skip OFFSET bytes"
25//usage: "\n -v Display all input data"
26//usage: "\n -x Two-byte hexadecimal display"
27//usage: IF_FEATURE_HEXDUMP_REVERSE(
28//usage: "\n -R Reverse of 'hexdump -Cv'")
29//usage:
30//usage:#define hd_trivial_usage
31//usage: "FILE..."
32//usage:#define hd_full_usage "\n\n"
33//usage: "hd is an alias for hexdump -C"
34
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000035#include "libbb.h"
Manuel Novoa III cad53642003-03-19 09:13:01 +000036#include "dump.h"
Glenn L McGrath60281112001-11-02 11:39:46 +000037
Denis Vlasenko99912ca2007-04-10 15:43:37 +000038/* This is a NOEXEC applet. Be very careful! */
39
Denis Vlasenko55f79122008-07-16 11:00:16 +000040static void bb_dump_addfile(dumper_t *dumper, char *name)
Glenn L McGrath60281112001-11-02 11:39:46 +000041{
Denis Vlasenko084266e2008-07-26 23:08:31 +000042 char *p;
43 FILE *fp;
44 char *buf;
45
46 fp = xfopen_for_read(name);
47 while ((buf = xmalloc_fgetline(fp)) != NULL) {
48 p = skip_whitespace(buf);
49 if (*p && (*p != '#')) {
50 bb_dump_add(dumper, p);
51 }
52 free(buf);
Glenn L McGrath60281112001-11-02 11:39:46 +000053 }
Denis Vlasenko084266e2008-07-26 23:08:31 +000054 fclose(fp);
Glenn L McGrath60281112001-11-02 11:39:46 +000055}
56
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000057static const char *const add_strings[] = {
Denys Vlasenkofb132e42010-10-29 11:46:52 +020058 "\"%07.7_ax \" 16/1 \"%03o \" \"\\n\"", /* b */
59 "\"%07.7_ax \" 16/1 \"%3_c \" \"\\n\"", /* c */
60 "\"%07.7_ax \" 8/2 \" %05u \" \"\\n\"", /* d */
61 "\"%07.7_ax \" 8/2 \" %06o \" \"\\n\"", /* o */
62 "\"%07.7_ax \" 8/2 \" %04x \" \"\\n\"", /* x */
Manuel Novoa III cad53642003-03-19 09:13:01 +000063};
64
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000065static const char add_first[] ALIGN1 = "\"%07.7_Ax\n\"";
Manuel Novoa III cad53642003-03-19 09:13:01 +000066
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000067static const char hexdump_opts[] ALIGN1 = "bcdoxCe:f:n:s:v" IF_FEATURE_HEXDUMP_REVERSE("R");
Manuel Novoa III cad53642003-03-19 09:13:01 +000068
69static const struct suffix_mult suffixes[] = {
Denis Vlasenkof8689632007-07-27 15:06:25 +000070 { "b", 512 },
71 { "k", 1024 },
72 { "m", 1024*1024 },
Denys Vlasenko043b1e52009-09-06 12:47:55 +020073 { "", 0 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000074};
75
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000076int hexdump_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Glenn L McGrath60281112001-11-02 11:39:46 +000077int hexdump_main(int argc, char **argv)
78{
Denis Vlasenko55f79122008-07-16 11:00:16 +000079 dumper_t *dumper = alloc_dumper();
Manuel Novoa III cad53642003-03-19 09:13:01 +000080 const char *p;
Glenn L McGrath60281112001-11-02 11:39:46 +000081 int ch;
Denis Vlasenkofbe5f392007-11-18 05:36:50 +000082#if ENABLE_FEATURE_HEXDUMP_REVERSE
83 FILE *fp;
84 smallint rdump = 0;
85#endif
Glenn L McGrath60281112001-11-02 11:39:46 +000086
Denis Vlasenkofbe5f392007-11-18 05:36:50 +000087 if (ENABLE_HD && !applet_name[2]) { /* we are "hd" */
88 ch = 'C';
89 goto hd_applet;
90 }
91
92 /* We cannot use getopt32: in hexdump options are cumulative.
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000093 * E.g. "hexdump -C -C file" should dump each line twice */
Manuel Novoa III cad53642003-03-19 09:13:01 +000094 while ((ch = getopt(argc, argv, hexdump_opts)) > 0) {
Denis Vlasenko4c196a82006-09-23 15:53:01 +000095 p = strchr(hexdump_opts, ch);
Denis Vlasenko2dbeaa92006-09-23 13:31:46 +000096 if (!p)
Manuel Novoa III cad53642003-03-19 09:13:01 +000097 bb_show_usage();
Denis Vlasenko2dbeaa92006-09-23 13:31:46 +000098 if ((p - hexdump_opts) < 5) {
Denis Vlasenko55f79122008-07-16 11:00:16 +000099 bb_dump_add(dumper, add_first);
100 bb_dump_add(dumper, add_strings[(int)(p - hexdump_opts)]);
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000101 }
102 /* Save a little bit of space below by omitting the 'else's. */
103 if (ch == 'C') {
104 hd_applet:
Denis Vlasenko55f79122008-07-16 11:00:16 +0000105 bb_dump_add(dumper, "\"%08.8_Ax\n\"");
106 bb_dump_add(dumper, "\"%08.8_ax \" 8/1 \"%02x \" \" \" 8/1 \"%02x \" ");
107 bb_dump_add(dumper, "\" |\" 16/1 \"%_p\" \"|\\n\"");
Glenn L McGrath60281112001-11-02 11:39:46 +0000108 }
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000109 if (ch == 'e') {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000110 bb_dump_add(dumper, optarg);
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000111 } /* else */
112 if (ch == 'f') {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000113 bb_dump_addfile(dumper, optarg);
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000114 } /* else */
115 if (ch == 'n') {
Denys Vlasenko77832482010-08-12 14:14:45 +0200116 dumper->dump_length = xatoi_positive(optarg);
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000117 } /* else */
Denys Vlasenko1854bc12010-04-06 23:33:28 +0200118 if (ch == 's') { /* compat: -s accepts hex numbers too */
Denys Vlasenkoef6747e2013-03-27 15:15:33 +0100119 dumper->dump_skip = xstrtoul_range_sfx(
120 optarg,
121 /*base:*/ 0,
122 /*lo:*/ 0, /*hi:*/ OFF_T_MAX,
123 suffixes
124 );
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000125 } /* else */
126 if (ch == 'v') {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000127 dumper->dump_vflag = ALL;
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000128 }
129#if ENABLE_FEATURE_HEXDUMP_REVERSE
130 if (ch == 'R') {
131 rdump = 1;
132 }
133#endif
Glenn L McGrath60281112001-11-02 11:39:46 +0000134 }
135
Denis Vlasenko55f79122008-07-16 11:00:16 +0000136 if (!dumper->fshead) {
137 bb_dump_add(dumper, add_first);
138 bb_dump_add(dumper, "\"%07.7_ax \" 8/2 \"%04x \" \"\\n\"");
Glenn L McGrath60281112001-11-02 11:39:46 +0000139 }
140
141 argv += optind;
142
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000143#if !ENABLE_FEATURE_HEXDUMP_REVERSE
Denis Vlasenko55f79122008-07-16 11:00:16 +0000144 return bb_dump_dump(dumper, argv);
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000145#else
146 if (!rdump) {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000147 return bb_dump_dump(dumper, argv);
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000148 }
149
150 /* -R: reverse of 'hexdump -Cv' */
151 fp = stdin;
152 if (!*argv) {
153 argv--;
154 goto jump_in;
155 }
156
157 do {
158 char *buf;
Denis Vlasenko5415c852008-07-21 23:05:26 +0000159 fp = xfopen_for_read(*argv);
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000160 jump_in:
Denis Vlasenko8ee649a2008-03-26 20:04:27 +0000161 while ((buf = xmalloc_fgetline(fp)) != NULL) {
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000162 p = buf;
163 while (1) {
164 /* skip address or previous byte */
165 while (isxdigit(*p)) p++;
166 while (*p == ' ') p++;
167 /* '|' char will break the line */
168 if (!isxdigit(*p) || sscanf(p, "%x ", &ch) != 1)
169 break;
170 putchar(ch);
171 }
172 free(buf);
173 }
174 fclose(fp);
175 } while (*++argv);
176
177 fflush_stdout_and_exit(EXIT_SUCCESS);
178#endif
Glenn L McGrath60281112001-11-02 11:39:46 +0000179}