blob: 4d2b0592ba3e394671c68c1462a7ae918ec367a0 [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
7 * The Regents of the University of California. All rights reserved.
8 *
Rob Landleyea224be2006-06-18 20:20:07 +00009 * Licensed under GPLv2 or later, see file License in this tarball for details.
Glenn L McGrath60281112001-11-02 11:39:46 +000010 */
11
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000012#include "libbb.h"
Manuel Novoa III cad53642003-03-19 09:13:01 +000013#include "dump.h"
Glenn L McGrath60281112001-11-02 11:39:46 +000014
Denis Vlasenko99912ca2007-04-10 15:43:37 +000015/* This is a NOEXEC applet. Be very careful! */
16
17
Denis Vlasenko55f79122008-07-16 11:00:16 +000018static void bb_dump_addfile(dumper_t *dumper, char *name)
Glenn L McGrath60281112001-11-02 11:39:46 +000019{
"Robert P. J. Day"68229832006-07-01 13:08:46 +000020 char *p;
Glenn L McGrath60281112001-11-02 11:39:46 +000021 FILE *fp;
Manuel Novoa III cad53642003-03-19 09:13:01 +000022 char *buf;
Glenn L McGrath60281112001-11-02 11:39:46 +000023
Rob Landleyd921b2e2006-08-03 15:41:12 +000024 fp = xfopen(name, "r");
Manuel Novoa III cad53642003-03-19 09:13:01 +000025
Denis Vlasenko8ee649a2008-03-26 20:04:27 +000026 while ((buf = xmalloc_fgetline(fp)) != NULL) {
Rob Landleyea224be2006-06-18 20:20:07 +000027 p = skip_whitespace(buf);
Manuel Novoa III cad53642003-03-19 09:13:01 +000028
29 if (*p && (*p != '#')) {
Denis Vlasenko55f79122008-07-16 11:00:16 +000030 bb_dump_add(dumper, p);
Glenn L McGrath60281112001-11-02 11:39:46 +000031 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000032 free(buf);
Glenn L McGrath60281112001-11-02 11:39:46 +000033 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000034 fclose(fp);
Glenn L McGrath60281112001-11-02 11:39:46 +000035}
36
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000037static const char *const add_strings[] = {
Denis Vlasenko2dbeaa92006-09-23 13:31:46 +000038 "\"%07.7_ax \" 16/1 \"%03o \" \"\\n\"", /* b */
39 "\"%07.7_ax \" 16/1 \"%3_c \" \"\\n\"", /* c */
40 "\"%07.7_ax \" 8/2 \" %05u \" \"\\n\"", /* d */
41 "\"%07.7_ax \" 8/2 \" %06o \" \"\\n\"", /* o */
42 "\"%07.7_ax \" 8/2 \" %04x \" \"\\n\"", /* x */
Manuel Novoa III cad53642003-03-19 09:13:01 +000043};
44
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000045static const char add_first[] ALIGN1 = "\"%07.7_Ax\n\"";
Manuel Novoa III cad53642003-03-19 09:13:01 +000046
Denis Vlasenkofbe5f392007-11-18 05:36:50 +000047static const char hexdump_opts[] ALIGN1 = "bcdoxCe:f:n:s:v" USE_FEATURE_HEXDUMP_REVERSE("R");
Manuel Novoa III cad53642003-03-19 09:13:01 +000048
49static const struct suffix_mult suffixes[] = {
Denis Vlasenkof8689632007-07-27 15:06:25 +000050 { "b", 512 },
51 { "k", 1024 },
52 { "m", 1024*1024 },
53 { }
Manuel Novoa III cad53642003-03-19 09:13:01 +000054};
55
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000056int hexdump_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Glenn L McGrath60281112001-11-02 11:39:46 +000057int hexdump_main(int argc, char **argv)
58{
Denis Vlasenko55f79122008-07-16 11:00:16 +000059 dumper_t *dumper = alloc_dumper();
Manuel Novoa III cad53642003-03-19 09:13:01 +000060 const char *p;
Glenn L McGrath60281112001-11-02 11:39:46 +000061 int ch;
Denis Vlasenkofbe5f392007-11-18 05:36:50 +000062#if ENABLE_FEATURE_HEXDUMP_REVERSE
63 FILE *fp;
64 smallint rdump = 0;
65#endif
Glenn L McGrath60281112001-11-02 11:39:46 +000066
Denis Vlasenkofbe5f392007-11-18 05:36:50 +000067 if (ENABLE_HD && !applet_name[2]) { /* we are "hd" */
68 ch = 'C';
69 goto hd_applet;
70 }
71
72 /* We cannot use getopt32: in hexdump options are cumulative.
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000073 * E.g. "hexdump -C -C file" should dump each line twice */
Manuel Novoa III cad53642003-03-19 09:13:01 +000074 while ((ch = getopt(argc, argv, hexdump_opts)) > 0) {
Denis Vlasenko4c196a82006-09-23 15:53:01 +000075 p = strchr(hexdump_opts, ch);
Denis Vlasenko2dbeaa92006-09-23 13:31:46 +000076 if (!p)
Manuel Novoa III cad53642003-03-19 09:13:01 +000077 bb_show_usage();
Denis Vlasenko2dbeaa92006-09-23 13:31:46 +000078 if ((p - hexdump_opts) < 5) {
Denis Vlasenko55f79122008-07-16 11:00:16 +000079 bb_dump_add(dumper, add_first);
80 bb_dump_add(dumper, add_strings[(int)(p - hexdump_opts)]);
Denis Vlasenkofbe5f392007-11-18 05:36:50 +000081 }
82 /* Save a little bit of space below by omitting the 'else's. */
83 if (ch == 'C') {
84 hd_applet:
Denis Vlasenko55f79122008-07-16 11:00:16 +000085 bb_dump_add(dumper, "\"%08.8_Ax\n\"");
86 bb_dump_add(dumper, "\"%08.8_ax \" 8/1 \"%02x \" \" \" 8/1 \"%02x \" ");
87 bb_dump_add(dumper, "\" |\" 16/1 \"%_p\" \"|\\n\"");
Glenn L McGrath60281112001-11-02 11:39:46 +000088 }
Denis Vlasenkofbe5f392007-11-18 05:36:50 +000089 if (ch == 'e') {
Denis Vlasenko55f79122008-07-16 11:00:16 +000090 bb_dump_add(dumper, optarg);
Denis Vlasenkofbe5f392007-11-18 05:36:50 +000091 } /* else */
92 if (ch == 'f') {
Denis Vlasenko55f79122008-07-16 11:00:16 +000093 bb_dump_addfile(dumper, optarg);
Denis Vlasenkofbe5f392007-11-18 05:36:50 +000094 } /* else */
95 if (ch == 'n') {
Denis Vlasenko55f79122008-07-16 11:00:16 +000096 dumper->dump_length = xatoi_u(optarg);
Denis Vlasenkofbe5f392007-11-18 05:36:50 +000097 } /* else */
98 if (ch == 's') {
Denis Vlasenko55f79122008-07-16 11:00:16 +000099 dumper->dump_skip = xatoul_range_sfx(optarg, 0, LONG_MAX, suffixes);
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000100 } /* else */
101 if (ch == 'v') {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000102 dumper->dump_vflag = ALL;
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000103 }
104#if ENABLE_FEATURE_HEXDUMP_REVERSE
105 if (ch == 'R') {
106 rdump = 1;
107 }
108#endif
Glenn L McGrath60281112001-11-02 11:39:46 +0000109 }
110
Denis Vlasenko55f79122008-07-16 11:00:16 +0000111 if (!dumper->fshead) {
112 bb_dump_add(dumper, add_first);
113 bb_dump_add(dumper, "\"%07.7_ax \" 8/2 \"%04x \" \"\\n\"");
Glenn L McGrath60281112001-11-02 11:39:46 +0000114 }
115
116 argv += optind;
117
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000118#if !ENABLE_FEATURE_HEXDUMP_REVERSE
Denis Vlasenko55f79122008-07-16 11:00:16 +0000119 return bb_dump_dump(dumper, argv);
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000120#else
121 if (!rdump) {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000122 return bb_dump_dump(dumper, argv);
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000123 }
124
125 /* -R: reverse of 'hexdump -Cv' */
126 fp = stdin;
127 if (!*argv) {
128 argv--;
129 goto jump_in;
130 }
131
132 do {
133 char *buf;
134 fp = xfopen(*argv, "r");
135 jump_in:
Denis Vlasenko8ee649a2008-03-26 20:04:27 +0000136 while ((buf = xmalloc_fgetline(fp)) != NULL) {
Denis Vlasenkofbe5f392007-11-18 05:36:50 +0000137 p = buf;
138 while (1) {
139 /* skip address or previous byte */
140 while (isxdigit(*p)) p++;
141 while (*p == ' ') p++;
142 /* '|' char will break the line */
143 if (!isxdigit(*p) || sscanf(p, "%x ", &ch) != 1)
144 break;
145 putchar(ch);
146 }
147 free(buf);
148 }
149 fclose(fp);
150 } while (*++argv);
151
152 fflush_stdout_and_exit(EXIT_SUCCESS);
153#endif
Glenn L McGrath60281112001-11-02 11:39:46 +0000154}