blob: 87c1dce13da10cd222e765f52e9fc17314d18ff1 [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 * Support code for the hexdump and od applets,
4 * based on code from util-linux v 2.11l
5 *
6 * Copyright (c) 1989
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +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 * Original copyright notice is retained at the end of this file.
12 */
13
Rob Landleyea224be2006-06-18 20:20:07 +000014#include "libbb.h"
Manuel Novoa III cad53642003-03-19 09:13:01 +000015#include "dump.h"
Glenn L McGrath60281112001-11-02 11:39:46 +000016
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +010017static const char dot_flags_width_chars[] ALIGN1 = ".#-+ 0123456789";
Glenn L McGrath60281112001-11-02 11:39:46 +000018
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000019static const char size_conv_str[] ALIGN1 =
Manuel Novoa III cad53642003-03-19 09:13:01 +000020"\x1\x4\x4\x4\x4\x4\x4\x8\x8\x8\x8\010cdiouxXeEfgG";
21
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +010022static const char int_convs[] ALIGN1 = "diouxX";
Manuel Novoa III cad53642003-03-19 09:13:01 +000023
Denis Vlasenko55f79122008-07-16 11:00:16 +000024
25typedef struct priv_dumper_t {
26 dumper_t pub;
27
28 char **argv;
29 FU *endfu;
30 off_t savaddress; /* saved address/offset in stream */
31 off_t eaddress; /* end address */
32 off_t address; /* address/offset in stream */
33 int blocksize;
34 smallint exitval; /* final exit value */
35
36 /* former statics */
37 smallint next__done;
38 smallint get__ateof; // = 1;
39 unsigned char *get__curp;
40 unsigned char *get__savp;
41} priv_dumper_t;
42
43dumper_t* FAST_FUNC alloc_dumper(void)
44{
45 priv_dumper_t *dumper = xzalloc(sizeof(*dumper));
46 dumper->pub.dump_length = -1;
47 dumper->pub.dump_vflag = FIRST;
48 dumper->get__ateof = 1;
49 return &dumper->pub;
50}
51
52
53static NOINLINE int bb_dump_size(FS *fs)
Glenn L McGrath60281112001-11-02 11:39:46 +000054{
"Robert P. J. Day"68229832006-07-01 13:08:46 +000055 FU *fu;
56 int bcnt, cur_size;
57 char *fmt;
Manuel Novoa III cad53642003-03-19 09:13:01 +000058 const char *p;
Glenn L McGrath60281112001-11-02 11:39:46 +000059 int prec;
60
Manuel Novoa III cad53642003-03-19 09:13:01 +000061 /* figure out the data block bb_dump_size needed for each format unit */
62 for (cur_size = 0, fu = fs->nextfu; fu; fu = fu->nextfu) {
Glenn L McGrath60281112001-11-02 11:39:46 +000063 if (fu->bcnt) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000064 cur_size += fu->bcnt * fu->reps;
Glenn L McGrath60281112001-11-02 11:39:46 +000065 continue;
66 }
67 for (bcnt = prec = 0, fmt = fu->fmt; *fmt; ++fmt) {
68 if (*fmt != '%')
69 continue;
70 /*
Denis Vlasenko55f79122008-07-16 11:00:16 +000071 * skip any special chars -- save precision in
Glenn L McGrath60281112001-11-02 11:39:46 +000072 * case it's a %s format.
73 */
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +010074 while (strchr(dot_flags_width_chars + 1, *++fmt))
Denys Vlasenkoa0bef7c2011-11-18 02:47:35 +010075 continue;
Glenn L McGrath60281112001-11-02 11:39:46 +000076 if (*fmt == '.' && isdigit(*++fmt)) {
77 prec = atoi(fmt);
Denis Vlasenko55f79122008-07-16 11:00:16 +000078 while (isdigit(*++fmt))
79 continue;
Glenn L McGrath60281112001-11-02 11:39:46 +000080 }
Denis Vlasenko6bef3d12007-11-06 03:05:54 +000081 p = strchr(size_conv_str + 12, *fmt);
82 if (!p) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000083 if (*fmt == 's') {
84 bcnt += prec;
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +010085 }
86 if (*fmt == '_') {
Manuel Novoa III cad53642003-03-19 09:13:01 +000087 ++fmt;
88 if ((*fmt == 'c') || (*fmt == 'p') || (*fmt == 'u')) {
89 bcnt += 1;
90 }
Glenn L McGrath60281112001-11-02 11:39:46 +000091 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000092 } else {
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +010093 bcnt += p[-12];
Glenn L McGrath60281112001-11-02 11:39:46 +000094 }
95 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000096 cur_size += bcnt * fu->reps;
Glenn L McGrath60281112001-11-02 11:39:46 +000097 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +000098 return cur_size;
Glenn L McGrath60281112001-11-02 11:39:46 +000099}
100
Denys Vlasenkoa7bb3c12009-10-08 12:28:08 +0200101static NOINLINE void rewrite(priv_dumper_t *dumper, FS *fs)
Glenn L McGrath60281112001-11-02 11:39:46 +0000102{
Rob Landleyea224be2006-06-18 20:20:07 +0000103 FU *fu;
Glenn L McGrath60281112001-11-02 11:39:46 +0000104
105 for (fu = fs->nextfu; fu; fu = fu->nextfu) {
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100106 PR *pr;
107 char *p1, *p2, *p3;
108 char *fmtp;
109 int nconv = 0;
Glenn L McGrath60281112001-11-02 11:39:46 +0000110 /*
111 * break each format unit into print units; each
112 * conversion character gets its own.
113 */
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100114 for (fmtp = fu->fmt; *fmtp; ) {
115 unsigned len;
116 const char *prec;
117 const char *byte_count_str;
118
119 /* DBU:[dvae@cray.com] zalloc so that forward ptrs start out NULL */
120 pr = xzalloc(sizeof(*pr));
Glenn L McGrath60281112001-11-02 11:39:46 +0000121 if (!fu->nextpr)
122 fu->nextpr = pr;
Glenn L McGrath60281112001-11-02 11:39:46 +0000123
Denis Vlasenko55f79122008-07-16 11:00:16 +0000124 /* skip preceding text and up to the next % sign */
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100125 p1 = strchr(fmtp, '%');
126 if (!p1) { /* only text in the string */
Glenn L McGrath60281112001-11-02 11:39:46 +0000127 pr->fmt = fmtp;
128 pr->flags = F_TEXT;
129 break;
130 }
131
132 /*
133 * get precision for %s -- if have a byte count, don't
134 * need it.
135 */
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100136 prec = NULL;
Glenn L McGrath60281112001-11-02 11:39:46 +0000137 if (fu->bcnt) {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000138 /* skip to conversion character */
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100139 while (strchr(dot_flags_width_chars, *++p1))
Denis Vlasenkobd9874d2008-07-16 07:22:14 +0000140 continue;
Glenn L McGrath60281112001-11-02 11:39:46 +0000141 } else {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000142 /* skip any special chars, field width */
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100143 while (strchr(dot_flags_width_chars + 1, *++p1))
Denis Vlasenkobd9874d2008-07-16 07:22:14 +0000144 continue;
Glenn L McGrath60281112001-11-02 11:39:46 +0000145 if (*p1 == '.' && isdigit(*++p1)) {
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100146 prec = p1;
Denis Vlasenkobd9874d2008-07-16 07:22:14 +0000147 while (isdigit(*++p1))
148 continue;
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100149 }
Glenn L McGrath60281112001-11-02 11:39:46 +0000150 }
151
Denis Vlasenko55f79122008-07-16 11:00:16 +0000152 p2 = p1 + 1; /* set end pointer */
Glenn L McGrath60281112001-11-02 11:39:46 +0000153
154 /*
155 * figure out the byte count for each conversion;
156 * rewrite the format as necessary, set up blank-
Denys Vlasenkod3d7f082016-08-26 20:14:31 +0200157 * padding for end of data.
Glenn L McGrath60281112001-11-02 11:39:46 +0000158 */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000159 if (*p1 == 'c') {
Glenn L McGrath60281112001-11-02 11:39:46 +0000160 pr->flags = F_CHAR;
Denis Vlasenkobd9874d2008-07-16 07:22:14 +0000161 DO_BYTE_COUNT_1:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000162 byte_count_str = "\001";
Denis Vlasenkobd9874d2008-07-16 07:22:14 +0000163 DO_BYTE_COUNT:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000164 if (fu->bcnt) {
Denys Vlasenko0f436472017-01-25 01:58:00 +0100165 for (;;) {
166 if (fu->bcnt == *byte_count_str)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000167 break;
Denys Vlasenko0f436472017-01-25 01:58:00 +0100168 if (*++byte_count_str == 0)
169 bb_error_msg_and_die("bad byte count for conversion character %s", p1);
170 }
Glenn L McGrath60281112001-11-02 11:39:46 +0000171 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000172 /* Unlike the original, output the remainder of the format string. */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000173 pr->bcnt = *byte_count_str;
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100174 } else
175 if (*p1 == 'l') { /* %ld etc */
176 const char *e;
177
Glenn L McGrath60281112001-11-02 11:39:46 +0000178 ++p2;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000179 ++p1;
Denis Vlasenkobd9874d2008-07-16 07:22:14 +0000180 DO_INT_CONV:
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100181 e = strchr(int_convs, *p1); /* "diouxX"? */
182 if (!e)
183 goto DO_BAD_CONV_CHAR;
184 pr->flags = F_INT;
185 if (e > int_convs + 1) /* not d or i? */
186 pr->flags = F_UINT;
187 byte_count_str = "\004\002\001";
188 goto DO_BYTE_COUNT;
189 } else
190 if (strchr(int_convs, *p1)) { /* %d etc */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000191 goto DO_INT_CONV;
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100192 } else
193 if (strchr("eEfgG", *p1)) { /* floating point */
Glenn L McGrath60281112001-11-02 11:39:46 +0000194 pr->flags = F_DBL;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000195 byte_count_str = "\010\004";
196 goto DO_BYTE_COUNT;
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100197 } else
198 if (*p1 == 's') {
Glenn L McGrath60281112001-11-02 11:39:46 +0000199 pr->flags = F_STR;
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100200 pr->bcnt = fu->bcnt;
201 if (fu->bcnt == 0) {
202 if (!prec)
203 bb_error_msg_and_die("%%s needs precision or byte count");
204 pr->bcnt = atoi(prec);
Glenn L McGrath60281112001-11-02 11:39:46 +0000205 }
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100206 } else
207 if (*p1 == '_') {
208 p2++; /* move past a in "%_a" */
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000209 switch (p1[1]) {
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100210 case 'A': /* %_A[dox]: print address and the end */
Denis Vlasenko55f79122008-07-16 11:00:16 +0000211 dumper->endfu = fu;
Glenn L McGrath60281112001-11-02 11:39:46 +0000212 fu->flags |= F_IGNORE;
213 /* FALLTHROUGH */
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100214 case 'a': /* %_a[dox]: current address */
Glenn L McGrath60281112001-11-02 11:39:46 +0000215 pr->flags = F_ADDRESS;
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100216 p2++; /* move past x in "%_ax" */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000217 if ((p1[2] != 'd') && (p1[2] != 'o') && (p1[2] != 'x')) {
218 goto DO_BAD_CONV_CHAR;
Glenn L McGrath60281112001-11-02 11:39:46 +0000219 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000220 *p1 = p1[2];
Glenn L McGrath60281112001-11-02 11:39:46 +0000221 break;
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100222 case 'c': /* %_c: chars, \ooo, \n \r \t etc */
Glenn L McGrath60281112001-11-02 11:39:46 +0000223 pr->flags = F_C;
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000224 /* *p1 = 'c'; set in conv_c */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000225 goto DO_BYTE_COUNT_1;
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100226 case 'p': /* %_p: chars, dots for nonprintable */
Glenn L McGrath60281112001-11-02 11:39:46 +0000227 pr->flags = F_P;
228 *p1 = 'c';
Manuel Novoa III cad53642003-03-19 09:13:01 +0000229 goto DO_BYTE_COUNT_1;
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100230 case 'u': /* %_p: chars, 'nul', 'esc' etc for nonprintable */
Glenn L McGrath60281112001-11-02 11:39:46 +0000231 pr->flags = F_U;
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000232 /* *p1 = 'c'; set in conv_u */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000233 goto DO_BYTE_COUNT_1;
Glenn L McGrath60281112001-11-02 11:39:46 +0000234 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000235 goto DO_BAD_CONV_CHAR;
Glenn L McGrath60281112001-11-02 11:39:46 +0000236 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000237 } else {
Denis Vlasenkobd9874d2008-07-16 07:22:14 +0000238 DO_BAD_CONV_CHAR:
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000239 bb_error_msg_and_die("bad conversion character %%%s", p1);
Glenn L McGrath60281112001-11-02 11:39:46 +0000240 }
241
242 /*
243 * copy to PR format string, set conversion character
244 * pointer, update original.
245 */
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100246 len = (p1 - fmtp) + 1;
247 pr->fmt = xstrndup(fmtp, len);
Eric Andersen4a11e0f2003-04-19 23:18:35 +0000248 /* DBU:[dave@cray.com] w/o this, trailing fmt text, space is lost.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000249 * Skip subsequent text and up to the next % sign and tack the
250 * additional text onto fmt: eg. if fmt is "%x is a HEX number",
Eric Andersen4a11e0f2003-04-19 23:18:35 +0000251 * we lose the " is a HEX number" part of fmt.
252 */
Denis Vlasenkobd9874d2008-07-16 07:22:14 +0000253 for (p3 = p2; *p3 && *p3 != '%'; p3++)
254 continue;
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100255 if ((p3 - p2) != 0) {
256 char *d;
257 pr->fmt = d = xrealloc(pr->fmt, len + (p3 - p2) + 1);
258 d += len;
259 do {
260 *d++ = *p2++;
261 } while (p2 != p3);
262 *d = '\0';
263 /* now p2 = p3 */
Eric Andersen4a11e0f2003-04-19 23:18:35 +0000264 }
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100265 pr->cchar = pr->fmt + len - 1; /* must be after realloc! */
Glenn L McGrath60281112001-11-02 11:39:46 +0000266 fmtp = p2;
267
268 /* only one conversion character if byte count */
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000269 if (!(pr->flags & F_ADDRESS) && fu->bcnt && nconv++) {
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000270 bb_error_msg_and_die("byte count with multiple conversion characters");
Glenn L McGrath60281112001-11-02 11:39:46 +0000271 }
272 }
273 /*
274 * if format unit byte count not specified, figure it out
275 * so can adjust rep count later.
276 */
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100277 if (fu->bcnt == 0)
Glenn L McGrath60281112001-11-02 11:39:46 +0000278 for (pr = fu->nextpr; pr; pr = pr->nextpr)
279 fu->bcnt += pr->bcnt;
280 }
281 /*
282 * if the format string interprets any data at all, and it's
Denis Vlasenko55f79122008-07-16 11:00:16 +0000283 * not the same as the blocksize, and its last format unit
Glenn L McGrath60281112001-11-02 11:39:46 +0000284 * interprets any data at all, and has no iteration count,
285 * repeat it as necessary.
286 *
Denys Vlasenkoa0bef7c2011-11-18 02:47:35 +0100287 * if rep count is greater than 1, no trailing whitespace
Glenn L McGrath60281112001-11-02 11:39:46 +0000288 * gets output from the last iteration of the format unit.
289 */
Denis Vlasenko15f2fdb2008-08-23 23:15:48 +0000290 for (fu = fs->nextfu; fu; fu = fu->nextfu) {
Denys Vlasenkoa0bef7c2011-11-18 02:47:35 +0100291 if (!fu->nextfu
292 && fs->bcnt < dumper->blocksize
293 && !(fu->flags & F_SETREP)
294 && fu->bcnt
Denis Vlasenkobd9874d2008-07-16 07:22:14 +0000295 ) {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000296 fu->reps += (dumper->blocksize - fs->bcnt) / fu->bcnt;
Denis Vlasenkobd9874d2008-07-16 07:22:14 +0000297 }
Denys Vlasenkoa0bef7c2011-11-18 02:47:35 +0100298 if (fu->reps > 1 && fu->nextpr) {
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100299 PR *pr;
300 char *p1, *p2;
301
Glenn L McGrath60281112001-11-02 11:39:46 +0000302 for (pr = fu->nextpr;; pr = pr->nextpr)
303 if (!pr->nextpr)
304 break;
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100305 p2 = NULL;
306 for (p1 = pr->fmt; *p1; ++p1)
Glenn L McGrath60281112001-11-02 11:39:46 +0000307 p2 = isspace(*p1) ? p1 : NULL;
308 if (p2)
309 pr->nospace = p2;
310 }
Glenn L McGrath60281112001-11-02 11:39:46 +0000311 }
312}
313
Denis Vlasenko55f79122008-07-16 11:00:16 +0000314static void do_skip(priv_dumper_t *dumper, const char *fname, int statok)
Glenn L McGrath60281112001-11-02 11:39:46 +0000315{
316 struct stat sbuf;
317
318 if (statok) {
Denys Vlasenko8d3e2252010-08-31 12:42:06 +0200319 xfstat(STDIN_FILENO, &sbuf, fname);
Denis Vlasenko55f79122008-07-16 11:00:16 +0000320 if (!(S_ISCHR(sbuf.st_mode) || S_ISBLK(sbuf.st_mode) || S_ISFIFO(sbuf.st_mode))
321 && dumper->pub.dump_skip >= sbuf.st_size
322 ) {
323 /* If bb_dump_size valid and pub.dump_skip >= size */
324 dumper->pub.dump_skip -= sbuf.st_size;
325 dumper->address += sbuf.st_size;
Glenn L McGrath60281112001-11-02 11:39:46 +0000326 return;
327 }
328 }
Denys Vlasenkoef6747e2013-03-27 15:15:33 +0100329 if (fseeko(stdin, dumper->pub.dump_skip, SEEK_SET)) {
Denis Vlasenko0c97c9d2007-10-01 11:58:38 +0000330 bb_simple_perror_msg_and_die(fname);
Glenn L McGrath60281112001-11-02 11:39:46 +0000331 }
Denis Vlasenko55f79122008-07-16 11:00:16 +0000332 dumper->address += dumper->pub.dump_skip;
333 dumper->savaddress = dumper->address;
334 dumper->pub.dump_skip = 0;
Glenn L McGrath60281112001-11-02 11:39:46 +0000335}
336
Denis Vlasenko55f79122008-07-16 11:00:16 +0000337static NOINLINE int next(priv_dumper_t *dumper)
Glenn L McGrath60281112001-11-02 11:39:46 +0000338{
Glenn L McGrath60281112001-11-02 11:39:46 +0000339 int statok;
340
Glenn L McGrath60281112001-11-02 11:39:46 +0000341 for (;;) {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000342 if (*dumper->argv) {
Denys Vlasenko6aca76d2010-02-06 13:53:21 +0100343 dumper->next__done = statok = 1;
Denis Vlasenko55f79122008-07-16 11:00:16 +0000344 if (!(freopen(*dumper->argv, "r", stdin))) {
345 bb_simple_perror_msg(*dumper->argv);
346 dumper->exitval = 1;
347 ++dumper->argv;
Glenn L McGrath60281112001-11-02 11:39:46 +0000348 continue;
349 }
Glenn L McGrath60281112001-11-02 11:39:46 +0000350 } else {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000351 if (dumper->next__done)
Denys Vlasenko6aca76d2010-02-06 13:53:21 +0100352 return 0; /* no next file */
Denis Vlasenko55f79122008-07-16 11:00:16 +0000353 dumper->next__done = 1;
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100354//why stat of stdin is specially prohibited?
Glenn L McGrath60281112001-11-02 11:39:46 +0000355 statok = 0;
356 }
Denis Vlasenko55f79122008-07-16 11:00:16 +0000357 if (dumper->pub.dump_skip)
358 do_skip(dumper, statok ? *dumper->argv : "stdin", statok);
359 if (*dumper->argv)
360 ++dumper->argv;
361 if (!dumper->pub.dump_skip)
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000362 return 1;
Glenn L McGrath60281112001-11-02 11:39:46 +0000363 }
364 /* NOTREACHED */
365}
366
Denis Vlasenko55f79122008-07-16 11:00:16 +0000367static unsigned char *get(priv_dumper_t *dumper)
Glenn L McGrath60281112001-11-02 11:39:46 +0000368{
"Robert P. J. Day"68229832006-07-01 13:08:46 +0000369 int n;
Glenn L McGrath60281112001-11-02 11:39:46 +0000370 int need, nread;
Denis Vlasenko55f79122008-07-16 11:00:16 +0000371 int blocksize = dumper->blocksize;
Glenn L McGrath60281112001-11-02 11:39:46 +0000372
Denis Vlasenko55f79122008-07-16 11:00:16 +0000373 if (!dumper->get__curp) {
374 dumper->address = (off_t)0; /*DBU:[dave@cray.com] initialize,initialize..*/
375 dumper->get__curp = xmalloc(blocksize);
Denis Vlasenko2f86d132008-07-29 00:00:14 +0000376 dumper->get__savp = xzalloc(blocksize); /* need to be initialized */
Glenn L McGrath60281112001-11-02 11:39:46 +0000377 } else {
Denis Vlasenko2f86d132008-07-29 00:00:14 +0000378 unsigned char *tmp = dumper->get__curp;
Denis Vlasenko55f79122008-07-16 11:00:16 +0000379 dumper->get__curp = dumper->get__savp;
Denis Vlasenko2f86d132008-07-29 00:00:14 +0000380 dumper->get__savp = tmp;
Denis Vlasenko55f79122008-07-16 11:00:16 +0000381 dumper->savaddress += blocksize;
382 dumper->address = dumper->savaddress;
Glenn L McGrath60281112001-11-02 11:39:46 +0000383 }
Denis Vlasenko55f79122008-07-16 11:00:16 +0000384 need = blocksize;
385 nread = 0;
386 while (1) {
Glenn L McGrath60281112001-11-02 11:39:46 +0000387 /*
388 * if read the right number of bytes, or at EOF for one file,
389 * and no other files are available, zero-pad the rest of the
390 * block and set the end flag.
391 */
Denis Vlasenko55f79122008-07-16 11:00:16 +0000392 if (!dumper->pub.dump_length || (dumper->get__ateof && !next(dumper))) {
393 if (need == blocksize) {
Denis Vlasenkod9e15f22006-11-27 16:49:55 +0000394 return NULL;
Glenn L McGrath60281112001-11-02 11:39:46 +0000395 }
Denis Vlasenko55f79122008-07-16 11:00:16 +0000396 if (dumper->pub.dump_vflag != ALL && !memcmp(dumper->get__curp, dumper->get__savp, nread)) {
397 if (dumper->pub.dump_vflag != DUP) {
Denis Vlasenkod9e15f22006-11-27 16:49:55 +0000398 puts("*");
Glenn L McGrath60281112001-11-02 11:39:46 +0000399 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +0000400 return NULL;
Glenn L McGrath60281112001-11-02 11:39:46 +0000401 }
Denis Vlasenko55f79122008-07-16 11:00:16 +0000402 memset(dumper->get__curp + nread, 0, need);
403 dumper->eaddress = dumper->address + nread;
404 return dumper->get__curp;
Glenn L McGrath60281112001-11-02 11:39:46 +0000405 }
Denis Vlasenko55f79122008-07-16 11:00:16 +0000406 n = fread(dumper->get__curp + nread, sizeof(unsigned char),
407 dumper->pub.dump_length == -1 ? need : MIN(dumper->pub.dump_length, need), stdin);
Glenn L McGrath60281112001-11-02 11:39:46 +0000408 if (!n) {
409 if (ferror(stdin)) {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000410 bb_simple_perror_msg(dumper->argv[-1]);
Glenn L McGrath60281112001-11-02 11:39:46 +0000411 }
Denis Vlasenko55f79122008-07-16 11:00:16 +0000412 dumper->get__ateof = 1;
Glenn L McGrath60281112001-11-02 11:39:46 +0000413 continue;
414 }
Denis Vlasenko55f79122008-07-16 11:00:16 +0000415 dumper->get__ateof = 0;
416 if (dumper->pub.dump_length != -1) {
417 dumper->pub.dump_length -= n;
Glenn L McGrath60281112001-11-02 11:39:46 +0000418 }
Denis Vlasenko931de892007-06-21 12:43:45 +0000419 need -= n;
420 if (!need) {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000421 if (dumper->pub.dump_vflag == ALL || dumper->pub.dump_vflag == FIRST
422 || memcmp(dumper->get__curp, dumper->get__savp, blocksize)
Denis Vlasenkobd9874d2008-07-16 07:22:14 +0000423 ) {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000424 if (dumper->pub.dump_vflag == DUP || dumper->pub.dump_vflag == FIRST) {
425 dumper->pub.dump_vflag = WAIT;
Glenn L McGrath60281112001-11-02 11:39:46 +0000426 }
Denis Vlasenko55f79122008-07-16 11:00:16 +0000427 return dumper->get__curp;
Glenn L McGrath60281112001-11-02 11:39:46 +0000428 }
Denis Vlasenko55f79122008-07-16 11:00:16 +0000429 if (dumper->pub.dump_vflag == WAIT) {
Denis Vlasenkod9e15f22006-11-27 16:49:55 +0000430 puts("*");
Glenn L McGrath60281112001-11-02 11:39:46 +0000431 }
Denis Vlasenko55f79122008-07-16 11:00:16 +0000432 dumper->pub.dump_vflag = DUP;
433 dumper->savaddress += blocksize;
434 dumper->address = dumper->savaddress;
435 need = blocksize;
Glenn L McGrath60281112001-11-02 11:39:46 +0000436 nread = 0;
437 } else {
438 nread += n;
439 }
440 }
441}
442
Denis Vlasenkobd9874d2008-07-16 07:22:14 +0000443static void bpad(PR *pr)
Glenn L McGrath60281112001-11-02 11:39:46 +0000444{
Rob Landleya6e60372006-06-28 14:36:50 +0000445 char *p1, *p2;
Glenn L McGrath60281112001-11-02 11:39:46 +0000446
447 /*
448 * remove all conversion flags; '-' is the only one valid
449 * with %s, and it's not useful here.
450 */
451 pr->flags = F_BPAD;
452 *pr->cchar = 's';
Denis Vlasenkobd9874d2008-07-16 07:22:14 +0000453 for (p1 = pr->fmt; *p1 != '%'; ++p1)
454 continue;
Rob Landleya6e60372006-06-28 14:36:50 +0000455 for (p2 = ++p1; *p1 && strchr(" -0+#", *p1); ++p1)
Denis Vlasenkobd9874d2008-07-16 07:22:14 +0000456 if (pr->nospace)
457 pr->nospace--;
458 while ((*p2++ = *p1++) != 0)
459 continue;
Glenn L McGrath60281112001-11-02 11:39:46 +0000460}
461
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000462static const char conv_str[] ALIGN1 =
Denys Vlasenkod3d7f082016-08-26 20:14:31 +0200463 "\0" "\\""0""\0"
464 "\007""\\""a""\0" /* \a */
465 "\b" "\\""b""\0"
466 "\f" "\\""f""\0"
467 "\n" "\\""n""\0"
468 "\r" "\\""r""\0"
469 "\t" "\\""t""\0"
470 "\v" "\\""v""\0"
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000471 ;
Glenn L McGrath60281112001-11-02 11:39:46 +0000472
Manuel Novoa III cad53642003-03-19 09:13:01 +0000473
Denis Vlasenkobd9874d2008-07-16 07:22:14 +0000474static void conv_c(PR *pr, unsigned char *p)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000475{
476 const char *str = conv_str;
477 char buf[10];
478
479 do {
480 if (*p == *str) {
481 ++str;
Denys Vlasenkod3d7f082016-08-26 20:14:31 +0200482 goto strpr; /* map e.g. '\n' to "\\n" */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000483 }
484 str += 4;
485 } while (*str);
486
Denys Vlasenko8684cbb2009-11-18 11:34:43 +0100487 if (isprint_asciionly(*p)) {
Glenn L McGrath60281112001-11-02 11:39:46 +0000488 *pr->cchar = 'c';
Denis Vlasenkobd9874d2008-07-16 07:22:14 +0000489 printf(pr->fmt, *p);
Glenn L McGrath60281112001-11-02 11:39:46 +0000490 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000491 sprintf(buf, "%03o", (int) *p);
492 str = buf;
Denys Vlasenko8684cbb2009-11-18 11:34:43 +0100493 strpr:
Glenn L McGrath60281112001-11-02 11:39:46 +0000494 *pr->cchar = 's';
495 printf(pr->fmt, str);
496 }
497}
498
Denis Vlasenkobd9874d2008-07-16 07:22:14 +0000499static void conv_u(PR *pr, unsigned char *p)
Glenn L McGrath60281112001-11-02 11:39:46 +0000500{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000501 static const char list[] ALIGN1 =
Manuel Novoa III cad53642003-03-19 09:13:01 +0000502 "nul\0soh\0stx\0etx\0eot\0enq\0ack\0bel\0"
503 "bs\0_ht\0_lf\0_vt\0_ff\0_cr\0_so\0_si\0_"
504 "dle\0dcl\0dc2\0dc3\0dc4\0nak\0syn\0etb\0"
505 "can\0em\0_sub\0esc\0fs\0_gs\0_rs\0_us";
Glenn L McGrath60281112001-11-02 11:39:46 +0000506
507 /* od used nl, not lf */
508 if (*p <= 0x1f) {
509 *pr->cchar = 's';
Glenn L McGratheeb06bf2004-07-23 01:35:41 +0000510 printf(pr->fmt, list + (4 * (int)*p));
Glenn L McGrath60281112001-11-02 11:39:46 +0000511 } else if (*p == 0x7f) {
512 *pr->cchar = 's';
513 printf(pr->fmt, "del");
Denys Vlasenko8684cbb2009-11-18 11:34:43 +0100514 } else if (*p < 0x7f) { /* isprint() */
Glenn L McGrath60281112001-11-02 11:39:46 +0000515 *pr->cchar = 'c';
516 printf(pr->fmt, *p);
517 } else {
518 *pr->cchar = 'x';
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000519 printf(pr->fmt, (int) *p);
Glenn L McGrath60281112001-11-02 11:39:46 +0000520 }
521}
522
Denis Vlasenko55f79122008-07-16 11:00:16 +0000523static void display(priv_dumper_t* dumper)
Glenn L McGrath60281112001-11-02 11:39:46 +0000524{
"Robert P. J. Day"68229832006-07-01 13:08:46 +0000525 FS *fs;
526 FU *fu;
527 PR *pr;
528 int cnt;
Denis Vlasenko55f79122008-07-16 11:00:16 +0000529 unsigned char *bp, *savebp;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000530 off_t saveaddress;
Denis Vlasenko55f79122008-07-16 11:00:16 +0000531 unsigned char savech = '\0';
Glenn L McGrath60281112001-11-02 11:39:46 +0000532
Denis Vlasenko55f79122008-07-16 11:00:16 +0000533 while ((bp = get(dumper)) != NULL) {
534 fs = dumper->pub.fshead;
535 savebp = bp;
536 saveaddress = dumper->address;
537 for (; fs; fs = fs->nextfs, bp = savebp, dumper->address = saveaddress) {
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000538 for (fu = fs->nextfu; fu; fu = fu->nextfu) {
Glenn L McGrath60281112001-11-02 11:39:46 +0000539 if (fu->flags & F_IGNORE) {
540 break;
541 }
542 for (cnt = fu->reps; cnt; --cnt) {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000543 for (pr = fu->nextpr; pr; dumper->address += pr->bcnt,
544 bp += pr->bcnt, pr = pr->nextpr) {
545 if (dumper->eaddress && dumper->address >= dumper->eaddress
546 && !(pr->flags & (F_TEXT | F_BPAD))
547 ) {
Glenn L McGrath60281112001-11-02 11:39:46 +0000548 bpad(pr);
549 }
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000550 if (cnt == 1 && pr->nospace) {
Glenn L McGrath60281112001-11-02 11:39:46 +0000551 savech = *pr->nospace;
552 *pr->nospace = '\0';
Glenn L McGrath60281112001-11-02 11:39:46 +0000553 }
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000554/* PRINT; */
555 switch (pr->flags) {
556 case F_ADDRESS:
Denis Vlasenko55f79122008-07-16 11:00:16 +0000557 printf(pr->fmt, (unsigned) dumper->address);
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000558 break;
559 case F_BPAD:
560 printf(pr->fmt, "");
561 break;
562 case F_C:
563 conv_c(pr, bp);
564 break;
565 case F_CHAR:
566 printf(pr->fmt, *bp);
567 break;
Denis Vlasenko55f79122008-07-16 11:00:16 +0000568 case F_DBL: {
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000569 double dval;
570 float fval;
571
572 switch (pr->bcnt) {
573 case 4:
Denis Vlasenko3eb44662008-11-16 22:21:23 +0000574 memcpy(&fval, bp, sizeof(fval));
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000575 printf(pr->fmt, fval);
576 break;
577 case 8:
Denis Vlasenko3eb44662008-11-16 22:21:23 +0000578 memcpy(&dval, bp, sizeof(dval));
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000579 printf(pr->fmt, dval);
580 break;
581 }
582 break;
583 }
Denis Vlasenko55f79122008-07-16 11:00:16 +0000584 case F_INT: {
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000585 int ival;
586 short sval;
587
588 switch (pr->bcnt) {
589 case 1:
590 printf(pr->fmt, (int) *bp);
591 break;
592 case 2:
Denis Vlasenko3eb44662008-11-16 22:21:23 +0000593 memcpy(&sval, bp, sizeof(sval));
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000594 printf(pr->fmt, (int) sval);
595 break;
596 case 4:
Denis Vlasenko3eb44662008-11-16 22:21:23 +0000597 memcpy(&ival, bp, sizeof(ival));
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000598 printf(pr->fmt, ival);
599 break;
600 }
601 break;
602 }
603 case F_P:
Denys Vlasenko8684cbb2009-11-18 11:34:43 +0100604 printf(pr->fmt, isprint_asciionly(*bp) ? *bp : '.');
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000605 break;
606 case F_STR:
607 printf(pr->fmt, (char *) bp);
608 break;
609 case F_TEXT:
610 printf(pr->fmt);
611 break;
612 case F_U:
613 conv_u(pr, bp);
614 break;
Denis Vlasenko55f79122008-07-16 11:00:16 +0000615 case F_UINT: {
Denis Vlasenkobd9874d2008-07-16 07:22:14 +0000616 unsigned ival;
Eric Andersen0f56de62004-01-30 22:52:27 +0000617 unsigned short sval;
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000618
619 switch (pr->bcnt) {
620 case 1:
Denis Vlasenkobd9874d2008-07-16 07:22:14 +0000621 printf(pr->fmt, (unsigned) *bp);
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000622 break;
623 case 2:
Denis Vlasenko3eb44662008-11-16 22:21:23 +0000624 memcpy(&sval, bp, sizeof(sval));
Denis Vlasenkobd9874d2008-07-16 07:22:14 +0000625 printf(pr->fmt, (unsigned) sval);
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000626 break;
627 case 4:
Denis Vlasenko3eb44662008-11-16 22:21:23 +0000628 memcpy(&ival, bp, sizeof(ival));
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000629 printf(pr->fmt, ival);
630 break;
631 }
632 break;
633 }
634 }
635 if (cnt == 1 && pr->nospace) {
Glenn L McGrath60281112001-11-02 11:39:46 +0000636 *pr->nospace = savech;
637 }
638 }
639 }
640 }
641 }
642 }
Denis Vlasenko55f79122008-07-16 11:00:16 +0000643 if (dumper->endfu) {
Glenn L McGrath60281112001-11-02 11:39:46 +0000644 /*
Denis Vlasenko55f79122008-07-16 11:00:16 +0000645 * if eaddress not set, error or file size was multiple
646 * of blocksize, and no partial block ever found.
Glenn L McGrath60281112001-11-02 11:39:46 +0000647 */
Denis Vlasenko55f79122008-07-16 11:00:16 +0000648 if (!dumper->eaddress) {
649 if (!dumper->address) {
Glenn L McGrath60281112001-11-02 11:39:46 +0000650 return;
651 }
Denis Vlasenko55f79122008-07-16 11:00:16 +0000652 dumper->eaddress = dumper->address;
Glenn L McGrath60281112001-11-02 11:39:46 +0000653 }
Denis Vlasenko55f79122008-07-16 11:00:16 +0000654 for (pr = dumper->endfu->nextpr; pr; pr = pr->nextpr) {
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000655 switch (pr->flags) {
Glenn L McGrath60281112001-11-02 11:39:46 +0000656 case F_ADDRESS:
Denis Vlasenko55f79122008-07-16 11:00:16 +0000657 printf(pr->fmt, (unsigned) dumper->eaddress);
Glenn L McGrath60281112001-11-02 11:39:46 +0000658 break;
659 case F_TEXT:
Denis Vlasenkobd9874d2008-07-16 07:22:14 +0000660 printf(pr->fmt);
Glenn L McGrath60281112001-11-02 11:39:46 +0000661 break;
662 }
663 }
664 }
665}
666
Denis Vlasenko55f79122008-07-16 11:00:16 +0000667#define dumper ((priv_dumper_t*)pub_dumper)
668int FAST_FUNC bb_dump_dump(dumper_t *pub_dumper, char **argv)
Glenn L McGrath60281112001-11-02 11:39:46 +0000669{
"Robert P. J. Day"68229832006-07-01 13:08:46 +0000670 FS *tfs;
Denis Vlasenko55f79122008-07-16 11:00:16 +0000671 int blocksize;
Glenn L McGrath60281112001-11-02 11:39:46 +0000672
Manuel Novoa III cad53642003-03-19 09:13:01 +0000673 /* figure out the data block bb_dump_size */
Denis Vlasenko55f79122008-07-16 11:00:16 +0000674 blocksize = 0;
675 tfs = dumper->pub.fshead;
676 while (tfs) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000677 tfs->bcnt = bb_dump_size(tfs);
Denis Vlasenko55f79122008-07-16 11:00:16 +0000678 if (blocksize < tfs->bcnt) {
679 blocksize = tfs->bcnt;
Glenn L McGrath60281112001-11-02 11:39:46 +0000680 }
Denis Vlasenko55f79122008-07-16 11:00:16 +0000681 tfs = tfs->nextfs;
Glenn L McGrath60281112001-11-02 11:39:46 +0000682 }
Denis Vlasenko55f79122008-07-16 11:00:16 +0000683 dumper->blocksize = blocksize;
684
Glenn L McGrath60281112001-11-02 11:39:46 +0000685 /* rewrite the rules, do syntax checking */
Denis Vlasenko55f79122008-07-16 11:00:16 +0000686 for (tfs = dumper->pub.fshead; tfs; tfs = tfs->nextfs) {
687 rewrite(dumper, tfs);
Glenn L McGrath60281112001-11-02 11:39:46 +0000688 }
689
Denis Vlasenko55f79122008-07-16 11:00:16 +0000690 dumper->argv = argv;
691 display(dumper);
Glenn L McGrath60281112001-11-02 11:39:46 +0000692
Denis Vlasenko55f79122008-07-16 11:00:16 +0000693 return dumper->exitval;
Glenn L McGrath60281112001-11-02 11:39:46 +0000694}
695
Denis Vlasenko55f79122008-07-16 11:00:16 +0000696void FAST_FUNC bb_dump_add(dumper_t* pub_dumper, const char *fmt)
Glenn L McGrath60281112001-11-02 11:39:46 +0000697{
Rob Landleyea224be2006-06-18 20:20:07 +0000698 const char *p;
Glenn L McGrath60281112001-11-02 11:39:46 +0000699 FS *tfs;
Denis Vlasenko55f79122008-07-16 11:00:16 +0000700 FU *tfu, **nextfupp;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000701 const char *savep;
Glenn L McGrath60281112001-11-02 11:39:46 +0000702
703 /* start new linked list of format units */
Rob Landleyea224be2006-06-18 20:20:07 +0000704 tfs = xzalloc(sizeof(FS)); /*DBU:[dave@cray.com] start out NULL */
Denis Vlasenko55f79122008-07-16 11:00:16 +0000705 if (!dumper->pub.fshead) {
706 dumper->pub.fshead = tfs;
Glenn L McGrath60281112001-11-02 11:39:46 +0000707 } else {
Denis Vlasenko55f79122008-07-16 11:00:16 +0000708 FS *fslast = dumper->pub.fshead;
709 while (fslast->nextfs)
710 fslast = fslast->nextfs;
711 fslast->nextfs = tfs;
Glenn L McGrath60281112001-11-02 11:39:46 +0000712 }
Denis Vlasenko55f79122008-07-16 11:00:16 +0000713 nextfupp = &tfs->nextfu;
Glenn L McGrath60281112001-11-02 11:39:46 +0000714
715 /* take the format string and break it up into format units */
Denis Vlasenko15f2fdb2008-08-23 23:15:48 +0000716 p = fmt;
717 for (;;) {
Rob Landleyea224be2006-06-18 20:20:07 +0000718 p = skip_whitespace(p);
Denys Vlasenkoa0bef7c2011-11-18 02:47:35 +0100719 if (*p == '\0') {
Glenn L McGrath60281112001-11-02 11:39:46 +0000720 break;
721 }
722
723 /* allocate a new format unit and link it in */
724 /* NOSTRICT */
Denis Vlasenkod02db892008-03-17 09:05:21 +0000725 /* DBU:[dave@cray.com] zalloc so that forward pointers start out NULL */
Rob Landleyea224be2006-06-18 20:20:07 +0000726 tfu = xzalloc(sizeof(FU));
Denis Vlasenko55f79122008-07-16 11:00:16 +0000727 *nextfupp = tfu;
728 nextfupp = &tfu->nextfu;
Glenn L McGrath60281112001-11-02 11:39:46 +0000729 tfu->reps = 1;
730
731 /* if leading digit, repetition count */
732 if (isdigit(*p)) {
Denis Vlasenkobd9874d2008-07-16 07:22:14 +0000733 for (savep = p; isdigit(*p); ++p)
734 continue;
Glenn L McGrath60281112001-11-02 11:39:46 +0000735 if (!isspace(*p) && *p != '/') {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000736 bb_error_msg_and_die("bad format {%s}", fmt);
Glenn L McGrath60281112001-11-02 11:39:46 +0000737 }
738 /* may overwrite either white space or slash */
739 tfu->reps = atoi(savep);
740 tfu->flags = F_SETREP;
Denis Vlasenko55f79122008-07-16 11:00:16 +0000741 /* skip trailing white space */
Rob Landleyea224be2006-06-18 20:20:07 +0000742 p = skip_whitespace(++p);
Glenn L McGrath60281112001-11-02 11:39:46 +0000743 }
744
Denis Vlasenko55f79122008-07-16 11:00:16 +0000745 /* skip slash and trailing white space */
Glenn L McGrath60281112001-11-02 11:39:46 +0000746 if (*p == '/') {
Denys Vlasenkoa0bef7c2011-11-18 02:47:35 +0100747 p = skip_whitespace(p + 1);
Glenn L McGrath60281112001-11-02 11:39:46 +0000748 }
749
750 /* byte count */
751 if (isdigit(*p)) {
Denis Vlasenko0de93752006-12-26 02:51:29 +0000752// TODO: use bb_strtou
753 savep = p;
Denis Vlasenkobd9874d2008-07-16 07:22:14 +0000754 while (isdigit(*++p))
755 continue;
Glenn L McGrath60281112001-11-02 11:39:46 +0000756 if (!isspace(*p)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000757 bb_error_msg_and_die("bad format {%s}", fmt);
Glenn L McGrath60281112001-11-02 11:39:46 +0000758 }
Denys Vlasenkocb8e84e2017-01-25 16:21:00 +0100759// Above check prohibits formats such as '/1"%02x"' - it requires space after 1.
760// Other than this, formats can be pretty much jammed together:
761// "%07_ax:"8/2 "%04x|""\n"
762// but this space is required. The check *can* be removed, but
763// keeping it to stay compat with util-linux hexdump.
Glenn L McGrath60281112001-11-02 11:39:46 +0000764 tfu->bcnt = atoi(savep);
Denis Vlasenko55f79122008-07-16 11:00:16 +0000765 /* skip trailing white space */
Denys Vlasenkoa0bef7c2011-11-18 02:47:35 +0100766 p = skip_whitespace(p + 1);
Glenn L McGrath60281112001-11-02 11:39:46 +0000767 }
768
769 /* format */
770 if (*p != '"') {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000771 bb_error_msg_and_die("bad format {%s}", fmt);
Glenn L McGrath60281112001-11-02 11:39:46 +0000772 }
773 for (savep = ++p; *p != '"';) {
Denys Vlasenkoa0bef7c2011-11-18 02:47:35 +0100774 if (*p++ == '\0') {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000775 bb_error_msg_and_die("bad format {%s}", fmt);
Glenn L McGrath60281112001-11-02 11:39:46 +0000776 }
777 }
Denis Vlasenkobd9874d2008-07-16 07:22:14 +0000778 tfu->fmt = xstrndup(savep, p - savep);
Glenn L McGrath60281112001-11-02 11:39:46 +0000779
780 /* alphabetic escape sequences have to be done in place */
Denys Vlasenkod3d7f082016-08-26 20:14:31 +0200781 strcpy_and_process_escape_sequences(tfu->fmt, tfu->fmt);
782 /* unknown mappings are not changed: "\z" -> '\\' 'z' */
783 /* trailing backslash, if any, is preserved */
784#if 0
785 char *p1;
786 char *p2;
787 p1 = tfu->fmt;
Glenn L McGrath60281112001-11-02 11:39:46 +0000788 for (p2 = p1;; ++p1, ++p2) {
Denys Vlasenkod3d7f082016-08-26 20:14:31 +0200789 *p2 = *p1;
790 if (*p1 == '\0')
Glenn L McGrath60281112001-11-02 11:39:46 +0000791 break;
Denys Vlasenkod3d7f082016-08-26 20:14:31 +0200792
Glenn L McGrath60281112001-11-02 11:39:46 +0000793 if (*p1 == '\\') {
Denys Vlasenkod3d7f082016-08-26 20:14:31 +0200794 const char *cs;
795
796 p1++;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000797 *p2 = *p1;
Denys Vlasenkod3d7f082016-08-26 20:14:31 +0200798 if (*p1 == '\0') {
799 /* "...\" trailing backslash. Eaten. */
800 break;
801 }
802 cs = conv_str + 4; /* skip NUL element */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000803 do {
Denys Vlasenkod3d7f082016-08-26 20:14:31 +0200804 /* map e.g. "\n" -> '\n' */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000805 if (*p1 == cs[2]) {
806 *p2 = cs[0];
807 break;
808 }
809 cs += 4;
810 } while (*cs);
Denys Vlasenkod3d7f082016-08-26 20:14:31 +0200811 /* unknown mappings remove bkslash: "\z" -> 'z' */
Glenn L McGrath60281112001-11-02 11:39:46 +0000812 }
813 }
Denys Vlasenkod3d7f082016-08-26 20:14:31 +0200814#endif
Glenn L McGrath60281112001-11-02 11:39:46 +0000815
816 p++;
817 }
818}
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000819
Glenn L McGrath60281112001-11-02 11:39:46 +0000820/*
821 * Copyright (c) 1989 The Regents of the University of California.
822 * All rights reserved.
823 *
824 * Redistribution and use in source and binary forms, with or without
825 * modification, are permitted provided that the following conditions
826 * are met:
827 * 1. Redistributions of source code must retain the above copyright
828 * notice, this list of conditions and the following disclaimer.
829 * 2. Redistributions in binary form must reproduce the above copyright
830 * notice, this list of conditions and the following disclaimer in the
831 * documentation and/or other materials provided with the distribution.
Aaron Lehmann69d41782002-06-23 22:25:24 +0000832 * 3. Neither the name of the University nor the names of its contributors
Glenn L McGrath60281112001-11-02 11:39:46 +0000833 * may be used to endorse or promote products derived from this software
834 * without specific prior written permission.
835 *
836 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
837 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
838 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
839 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
840 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
841 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
842 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
843 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
844 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
845 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
846 * SUCH DAMAGE.
847 */