parse.c revision 1.2 1 /*
2 * Copyright (c) 1989 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 */
33
34 #ifndef lint
35 /*static char sccsid[] = "from: @(#)parse.c 5.6 (Berkeley) 3/9/91";*/
36 static char rcsid[] = "$Id: parse.c,v 1.2 1993/08/01 18:14:45 mycroft Exp $";
37 #endif /* not lint */
38
39 #include <sys/types.h>
40 #include <sys/file.h>
41 #include <stdio.h>
42 #include <stdlib.h>
43 #include <ctype.h>
44 #include <string.h>
45 #include "hexdump.h"
46
47 FU *endfu; /* format at end-of-data */
48
49 addfile(name)
50 char *name;
51 {
52 register char *p;
53 FILE *fp;
54 int ch;
55 char buf[2048 + 1];
56
57 if (!(fp = fopen(name, "r"))) {
58 (void)fprintf(stderr, "hexdump: can't read %s.\n", name);
59 exit(1);
60 }
61 while (fgets(buf, sizeof(buf), fp)) {
62 if (!(p = index(buf, '\n'))) {
63 (void)fprintf(stderr, "hexdump: line too long.\n");
64 while ((ch = getchar()) != '\n' && ch != EOF);
65 continue;
66 }
67 *p = '\0';
68 for (p = buf; *p && isspace(*p); ++p);
69 if (!*p || *p == '#')
70 continue;
71 add(p);
72 }
73 (void)fclose(fp);
74 }
75
76 add(fmt)
77 char *fmt;
78 {
79 register char *p;
80 static FS **nextfs;
81 FS *tfs;
82 FU *tfu, **nextfu;
83 char *savep, *emalloc();
84
85 /* start new linked list of format units */
86 /* NOSTRICT */
87 tfs = (FS *)emalloc(sizeof(FS));
88 if (!fshead)
89 fshead = tfs;
90 else
91 *nextfs = tfs;
92 nextfs = &tfs->nextfs;
93 nextfu = &tfs->nextfu;
94
95 /* take the format string and break it up into format units */
96 for (p = fmt;;) {
97 /* skip leading white space */
98 for (; isspace(*p); ++p);
99 if (!*p)
100 break;
101
102 /* allocate a new format unit and link it in */
103 /* NOSTRICT */
104 tfu = (FU *)emalloc(sizeof(FU));
105 *nextfu = tfu;
106 nextfu = &tfu->nextfu;
107 tfu->reps = 1;
108
109 /* if leading digit, repetition count */
110 if (isdigit(*p)) {
111 for (savep = p; isdigit(*p); ++p);
112 if (!isspace(*p) && *p != '/')
113 badfmt(fmt);
114 /* may overwrite either white space or slash */
115 tfu->reps = atoi(savep);
116 tfu->flags = F_SETREP;
117 /* skip trailing white space */
118 for (++p; isspace(*p); ++p);
119 }
120
121 /* skip slash and trailing white space */
122 if (*p == '/')
123 while (isspace(*++p));
124
125 /* byte count */
126 if (isdigit(*p)) {
127 for (savep = p; isdigit(*p); ++p);
128 if (!isspace(*p))
129 badfmt(fmt);
130 tfu->bcnt = atoi(savep);
131 /* skip trailing white space */
132 for (++p; isspace(*p); ++p);
133 }
134
135 /* format */
136 if (*p != '"')
137 badfmt(fmt);
138 for (savep = ++p; *p != '"';)
139 if (*p++ == 0)
140 badfmt(fmt);
141 if (!(tfu->fmt = malloc(p - savep + 1)))
142 nomem();
143 (void) strncpy(tfu->fmt, savep, p - savep);
144 tfu->fmt[p - savep] = '\0';
145 escape(tfu->fmt);
146 p++;
147 }
148 }
149
150 static char *spec = ".#-+ 0123456789";
151 size(fs)
152 FS *fs;
153 {
154 register FU *fu;
155 register int bcnt, cursize;
156 register char *fmt;
157 int prec;
158
159 /* figure out the data block size needed for each format unit */
160 for (cursize = 0, fu = fs->nextfu; fu; fu = fu->nextfu) {
161 if (fu->bcnt) {
162 cursize += fu->bcnt * fu->reps;
163 continue;
164 }
165 for (bcnt = prec = 0, fmt = fu->fmt; *fmt; ++fmt) {
166 if (*fmt != '%')
167 continue;
168 /*
169 * skip any special chars -- save precision in
170 * case it's a %s format.
171 */
172 while (index(spec + 1, *++fmt));
173 if (*fmt == '.' && isdigit(*++fmt)) {
174 prec = atoi(fmt);
175 while (isdigit(*++fmt));
176 }
177 switch(*fmt) {
178 case 'c':
179 bcnt += 1;
180 break;
181 case 'd': case 'i': case 'o': case 'u':
182 case 'x': case 'X':
183 bcnt += 4;
184 break;
185 case 'e': case 'E': case 'f': case 'g': case 'G':
186 bcnt += 8;
187 break;
188 case 's':
189 bcnt += prec;
190 break;
191 case '_':
192 switch(*++fmt) {
193 case 'c': case 'p': case 'u':
194 bcnt += 1;
195 break;
196 }
197 }
198 }
199 cursize += bcnt * fu->reps;
200 }
201 return(cursize);
202 }
203
204 rewrite(fs)
205 FS *fs;
206 {
207 enum { NOTOKAY, USEBCNT, USEPREC } sokay;
208 register PR *pr, **nextpr;
209 register FU *fu;
210 register char *p1, *p2;
211 char savech, *fmtp;
212 int nconv, prec;
213
214 for (fu = fs->nextfu; fu; fu = fu->nextfu) {
215 /*
216 * break each format unit into print units; each
217 * conversion character gets its own.
218 */
219 for (nconv = 0, fmtp = fu->fmt; *fmtp; nextpr = &pr->nextpr) {
220 /* NOSTRICT */
221 pr = (PR *)emalloc(sizeof(PR));
222 if (!fu->nextpr)
223 fu->nextpr = pr;
224 else
225 *nextpr = pr;
226
227 /* skip preceding text and up to the next % sign */
228 for (p1 = fmtp; *p1 && *p1 != '%'; ++p1);
229
230 /* only text in the string */
231 if (!*p1) {
232 pr->fmt = fmtp;
233 pr->flags = F_TEXT;
234 break;
235 }
236
237 /*
238 * get precision for %s -- if have a byte count, don't
239 * need it.
240 */
241 if (fu->bcnt) {
242 sokay = USEBCNT;
243 /* skip to conversion character */
244 for (++p1; index(spec, *p1); ++p1);
245 } else {
246 /* skip any special chars, field width */
247 while (index(spec + 1, *++p1));
248 if (*p1 == '.' && isdigit(*++p1)) {
249 sokay = USEPREC;
250 prec = atoi(p1);
251 while (isdigit(*++p1));
252 }
253 else
254 sokay = NOTOKAY;
255 }
256
257 p2 = p1 + 1; /* set end pointer */
258
259 /*
260 * figure out the byte count for each conversion;
261 * rewrite the format as necessary, set up blank-
262 * padding for end of data.
263 */
264 switch(*p1) {
265 case 'c':
266 pr->flags = F_CHAR;
267 switch(fu->bcnt) {
268 case 0: case 1:
269 pr->bcnt = 1;
270 break;
271 default:
272 p1[1] = '\0';
273 badcnt(p1);
274 }
275 break;
276 case 'd': case 'i':
277 pr->flags = F_INT;
278 goto sw1;
279 case 'l':
280 ++p2;
281 switch(p1[1]) {
282 case 'd': case 'i':
283 ++p1;
284 pr->flags = F_INT;
285 goto sw1;
286 case 'o': case 'u': case 'x': case 'X':
287 ++p1;
288 pr->flags = F_UINT;
289 goto sw1;
290 default:
291 p1[2] = '\0';
292 badconv(p1);
293 }
294 /* NOTREACHED */
295 case 'o': case 'u': case 'x': case 'X':
296 pr->flags = F_UINT;
297 sw1: switch(fu->bcnt) {
298 case 0: case 4:
299 pr->bcnt = 4;
300 break;
301 case 1:
302 pr->bcnt = 1;
303 break;
304 case 2:
305 pr->bcnt = 2;
306 break;
307 default:
308 p1[1] = '\0';
309 badcnt(p1);
310 }
311 break;
312 case 'e': case 'E': case 'f': case 'g': case 'G':
313 pr->flags = F_DBL;
314 switch(fu->bcnt) {
315 case 0: case 8:
316 pr->bcnt = 8;
317 break;
318 case 4:
319 pr->bcnt = 4;
320 break;
321 default:
322 p1[1] = '\0';
323 badcnt(p1);
324 }
325 break;
326 case 's':
327 pr->flags = F_STR;
328 switch(sokay) {
329 case NOTOKAY:
330 badsfmt();
331 case USEBCNT:
332 pr->bcnt = fu->bcnt;
333 break;
334 case USEPREC:
335 pr->bcnt = prec;
336 break;
337 }
338 break;
339 case '_':
340 ++p2;
341 switch(p1[1]) {
342 case 'A':
343 endfu = fu;
344 fu->flags |= F_IGNORE;
345 /* FALLTHROUGH */
346 case 'a':
347 pr->flags = F_ADDRESS;
348 ++p2;
349 switch(p1[2]) {
350 case 'd': case 'o': case'x':
351 *p1 = p1[2];
352 break;
353 default:
354 p1[3] = '\0';
355 badconv(p1);
356 }
357 break;
358 case 'c':
359 pr->flags = F_C;
360 /* *p1 = 'c'; set in conv_c */
361 goto sw2;
362 case 'p':
363 pr->flags = F_P;
364 *p1 = 'c';
365 goto sw2;
366 case 'u':
367 pr->flags = F_U;
368 /* *p1 = 'c'; set in conv_u */
369 sw2: switch(fu->bcnt) {
370 case 0: case 1:
371 pr->bcnt = 1;
372 break;
373 default:
374 p1[2] = '\0';
375 badcnt(p1);
376 }
377 break;
378 default:
379 p1[2] = '\0';
380 badconv(p1);
381 }
382 break;
383 default:
384 p1[1] = '\0';
385 badconv(p1);
386 }
387
388 /*
389 * copy to PR format string, set conversion character
390 * pointer, update original.
391 */
392 savech = *p2;
393 p1[1] = '\0';
394 if (!(pr->fmt = strdup(fmtp)))
395 nomem();
396 *p2 = savech;
397 pr->cchar = pr->fmt + (p1 - fmtp);
398 fmtp = p2;
399
400 /* only one conversion character if byte count */
401 if (!(pr->flags&F_ADDRESS) && fu->bcnt && nconv++) {
402 (void)fprintf(stderr,
403 "hexdump: byte count with multiple conversion characters.\n");
404 exit(1);
405 }
406 }
407 /*
408 * if format unit byte count not specified, figure it out
409 * so can adjust rep count later.
410 */
411 if (!fu->bcnt)
412 for (pr = fu->nextpr; pr; pr = pr->nextpr)
413 fu->bcnt += pr->bcnt;
414 }
415 /*
416 * if the format string interprets any data at all, and it's
417 * not the same as the blocksize, and its last format unit
418 * interprets any data at all, and has no iteration count,
419 * repeat it as necessary.
420 *
421 * if, rep count is greater than 1, no trailing whitespace
422 * gets output from the last iteration of the format unit.
423 */
424 for (fu = fs->nextfu;; fu = fu->nextfu) {
425 if (!fu->nextfu && fs->bcnt < blocksize &&
426 !(fu->flags&F_SETREP) && fu->bcnt)
427 fu->reps += (blocksize - fs->bcnt) / fu->bcnt;
428 if (fu->reps > 1) {
429 for (pr = fu->nextpr;; pr = pr->nextpr)
430 if (!pr->nextpr)
431 break;
432 for (p1 = pr->fmt, p2 = NULL; *p1; ++p1)
433 p2 = isspace(*p1) ? p1 : NULL;
434 if (p2)
435 pr->nospace = p2;
436 }
437 if (!fu->nextfu)
438 break;
439 }
440 }
441
442
443 escape(p1)
444 register char *p1;
445 {
446 register char *p2;
447
448 /* alphabetic escape sequences have to be done in place */
449 for (p2 = p1;; ++p1, ++p2) {
450 if (!*p1) {
451 *p2 = *p1;
452 break;
453 }
454 if (*p1 == '\\')
455 switch(*++p1) {
456 case 'a':
457 /* *p2 = '\a'; */
458 *p2 = '\007';
459 break;
460 case 'b':
461 *p2 = '\b';
462 break;
463 case 'f':
464 *p2 = '\f';
465 break;
466 case 'n':
467 *p2 = '\n';
468 break;
469 case 'r':
470 *p2 = '\r';
471 break;
472 case 't':
473 *p2 = '\t';
474 break;
475 case 'v':
476 *p2 = '\v';
477 break;
478 default:
479 *p2 = *p1;
480 break;
481 }
482 }
483 }
484
485 badcnt(s)
486 char *s;
487 {
488 (void)fprintf(stderr,
489 "hexdump: bad byte count for conversion character %s.\n", s);
490 exit(1);
491 }
492
493 badsfmt()
494 {
495 (void)fprintf(stderr,
496 "hexdump: %%s requires a precision or a byte count.\n");
497 exit(1);
498 }
499
500 badfmt(fmt)
501 char *fmt;
502 {
503 (void)fprintf(stderr, "hexdump: bad format {%s}\n", fmt);
504 exit(1);
505 }
506
507 badconv(ch)
508 char *ch;
509 {
510 (void)fprintf(stderr, "hexdump: bad conversion character %%%s.\n", ch);
511 exit(1);
512 }
513