xref: /freebsd/bin/dd/args.c (revision 0957b409)
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1991, 1993, 1994
5  *	The Regents of the University of California.  All rights reserved.
6  *
7  * This code is derived from software contributed to Berkeley by
8  * Keith Muller of the University of California, San Diego and Lance
9  * Visser of Convex Computer Corporation.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. Neither the name of the University nor the names of its contributors
20  *    may be used to endorse or promote products derived from this software
21  *    without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  */
35 
36 #ifndef lint
37 #if 0
38 static char sccsid[] = "@(#)args.c	8.3 (Berkeley) 4/2/94";
39 #endif
40 #endif /* not lint */
41 #include <sys/cdefs.h>
42 __FBSDID("$FreeBSD$");
43 
44 #include <sys/types.h>
45 
46 #include <ctype.h>
47 #include <err.h>
48 #include <errno.h>
49 #include <inttypes.h>
50 #include <limits.h>
51 #include <signal.h>
52 #include <stdlib.h>
53 #include <string.h>
54 
55 #include "dd.h"
56 #include "extern.h"
57 
58 static int	c_arg(const void *, const void *);
59 static int	c_conv(const void *, const void *);
60 static void	f_bs(char *);
61 static void	f_cbs(char *);
62 static void	f_conv(char *);
63 static void	f_count(char *);
64 static void	f_files(char *);
65 static void	f_fillchar(char *);
66 static void	f_ibs(char *);
67 static void	f_if(char *);
68 static void	f_obs(char *);
69 static void	f_of(char *);
70 static void	f_seek(char *);
71 static void	f_skip(char *);
72 static void	f_speed(char *);
73 static void	f_status(char *);
74 static uintmax_t get_num(const char *);
75 static off_t	get_off_t(const char *);
76 
77 static const struct arg {
78 	const char *name;
79 	void (*f)(char *);
80 	u_int set, noset;
81 } args[] = {
82 	{ "bs",		f_bs,		C_BS,	 C_BS|C_IBS|C_OBS|C_OSYNC },
83 	{ "cbs",	f_cbs,		C_CBS,	 C_CBS },
84 	{ "conv",	f_conv,		0,	 0 },
85 	{ "count",	f_count,	C_COUNT, C_COUNT },
86 	{ "files",	f_files,	C_FILES, C_FILES },
87 	{ "fillchar",	f_fillchar,	C_FILL,	 C_FILL },
88 	{ "ibs",	f_ibs,		C_IBS,	 C_BS|C_IBS },
89 	{ "if",		f_if,		C_IF,	 C_IF },
90 	{ "iseek",	f_skip,		C_SKIP,	 C_SKIP },
91 	{ "obs",	f_obs,		C_OBS,	 C_BS|C_OBS },
92 	{ "of",		f_of,		C_OF,	 C_OF },
93 	{ "oseek",	f_seek,		C_SEEK,	 C_SEEK },
94 	{ "seek",	f_seek,		C_SEEK,	 C_SEEK },
95 	{ "skip",	f_skip,		C_SKIP,	 C_SKIP },
96 	{ "speed",	f_speed,	0,	 0 },
97 	{ "status",	f_status,	C_STATUS,C_STATUS },
98 };
99 
100 static char *oper;
101 
102 /*
103  * args -- parse JCL syntax of dd.
104  */
105 void
106 jcl(char **argv)
107 {
108 	struct arg *ap, tmp;
109 	char *arg;
110 
111 	in.dbsz = out.dbsz = 512;
112 
113 	while ((oper = *++argv) != NULL) {
114 		if ((oper = strdup(oper)) == NULL)
115 			errx(1, "unable to allocate space for the argument \"%s\"", *argv);
116 		if ((arg = strchr(oper, '=')) == NULL)
117 			errx(1, "unknown operand %s", oper);
118 		*arg++ = '\0';
119 		if (!*arg)
120 			errx(1, "no value specified for %s", oper);
121 		tmp.name = oper;
122 		if (!(ap = (struct arg *)bsearch(&tmp, args,
123 		    sizeof(args)/sizeof(struct arg), sizeof(struct arg),
124 		    c_arg)))
125 			errx(1, "unknown operand %s", tmp.name);
126 		if (ddflags & ap->noset)
127 			errx(1, "%s: illegal argument combination or already set",
128 			    tmp.name);
129 		ddflags |= ap->set;
130 		ap->f(arg);
131 	}
132 
133 	/* Final sanity checks. */
134 
135 	if (ddflags & C_BS) {
136 		/*
137 		 * Bs is turned off by any conversion -- we assume the user
138 		 * just wanted to set both the input and output block sizes
139 		 * and didn't want the bs semantics, so we don't warn.
140 		 */
141 		if (ddflags & (C_BLOCK | C_LCASE | C_SWAB | C_UCASE |
142 		    C_UNBLOCK))
143 			ddflags &= ~C_BS;
144 
145 		/* Bs supersedes ibs and obs. */
146 		if (ddflags & C_BS && ddflags & (C_IBS | C_OBS))
147 			warnx("bs supersedes ibs and obs");
148 	}
149 
150 	/*
151 	 * Ascii/ebcdic and cbs implies block/unblock.
152 	 * Block/unblock requires cbs and vice-versa.
153 	 */
154 	if (ddflags & (C_BLOCK | C_UNBLOCK)) {
155 		if (!(ddflags & C_CBS))
156 			errx(1, "record operations require cbs");
157 		if (cbsz == 0)
158 			errx(1, "cbs cannot be zero");
159 		cfunc = ddflags & C_BLOCK ? block : unblock;
160 	} else if (ddflags & C_CBS) {
161 		if (ddflags & (C_ASCII | C_EBCDIC)) {
162 			if (ddflags & C_ASCII) {
163 				ddflags |= C_UNBLOCK;
164 				cfunc = unblock;
165 			} else {
166 				ddflags |= C_BLOCK;
167 				cfunc = block;
168 			}
169 		} else
170 			errx(1, "cbs meaningless if not doing record operations");
171 	} else
172 		cfunc = def;
173 }
174 
175 static int
176 c_arg(const void *a, const void *b)
177 {
178 
179 	return (strcmp(((const struct arg *)a)->name,
180 	    ((const struct arg *)b)->name));
181 }
182 
183 static void
184 f_bs(char *arg)
185 {
186 	uintmax_t res;
187 
188 	res = get_num(arg);
189 	if (res < 1 || res > SSIZE_MAX)
190 		errx(1, "bs must be between 1 and %zd", (ssize_t)SSIZE_MAX);
191 	in.dbsz = out.dbsz = (size_t)res;
192 }
193 
194 static void
195 f_cbs(char *arg)
196 {
197 	uintmax_t res;
198 
199 	res = get_num(arg);
200 	if (res < 1 || res > SSIZE_MAX)
201 		errx(1, "cbs must be between 1 and %zd", (ssize_t)SSIZE_MAX);
202 	cbsz = (size_t)res;
203 }
204 
205 static void
206 f_count(char *arg)
207 {
208 	uintmax_t res;
209 
210 	res = get_num(arg);
211 	if (res == UINTMAX_MAX)
212 		errc(1, ERANGE, "%s", oper);
213 	if (res == 0)
214 		cpy_cnt = UINTMAX_MAX;
215 	else
216 		cpy_cnt = res;
217 }
218 
219 static void
220 f_files(char *arg)
221 {
222 
223 	files_cnt = get_num(arg);
224 	if (files_cnt < 1)
225 		errx(1, "files must be between 1 and %zu", SIZE_MAX);
226 }
227 
228 static void
229 f_fillchar(char *arg)
230 {
231 
232 	if (strlen(arg) != 1)
233 		errx(1, "need exactly one fill char");
234 
235 	fill_char = arg[0];
236 }
237 
238 static void
239 f_ibs(char *arg)
240 {
241 	uintmax_t res;
242 
243 	if (!(ddflags & C_BS)) {
244 		res = get_num(arg);
245 		if (res < 1 || res > SSIZE_MAX)
246 			errx(1, "ibs must be between 1 and %zd",
247 			    (ssize_t)SSIZE_MAX);
248 		in.dbsz = (size_t)res;
249 	}
250 }
251 
252 static void
253 f_if(char *arg)
254 {
255 
256 	in.name = arg;
257 }
258 
259 static void
260 f_obs(char *arg)
261 {
262 	uintmax_t res;
263 
264 	if (!(ddflags & C_BS)) {
265 		res = get_num(arg);
266 		if (res < 1 || res > SSIZE_MAX)
267 			errx(1, "obs must be between 1 and %zd",
268 			    (ssize_t)SSIZE_MAX);
269 		out.dbsz = (size_t)res;
270 	}
271 }
272 
273 static void
274 f_of(char *arg)
275 {
276 
277 	out.name = arg;
278 }
279 
280 static void
281 f_seek(char *arg)
282 {
283 
284 	out.offset = get_off_t(arg);
285 }
286 
287 static void
288 f_skip(char *arg)
289 {
290 
291 	in.offset = get_off_t(arg);
292 }
293 
294 static void
295 f_speed(char *arg)
296 {
297 
298 	speed = get_num(arg);
299 }
300 
301 static void
302 f_status(char *arg)
303 {
304 
305 	if (strcmp(arg, "none") == 0)
306 		ddflags |= C_NOINFO;
307 	else if (strcmp(arg, "noxfer") == 0)
308 		ddflags |= C_NOXFER;
309 	else if (strcmp(arg, "progress") == 0)
310 		ddflags |= C_PROGRESS;
311 	else
312 		errx(1, "unknown status %s", arg);
313 }
314 
315 static const struct conv {
316 	const char *name;
317 	u_int set, noset;
318 	const u_char *ctab;
319 } clist[] = {
320 	{ "ascii",	C_ASCII,	C_EBCDIC,	e2a_POSIX },
321 	{ "block",	C_BLOCK,	C_UNBLOCK,	NULL },
322 	{ "ebcdic",	C_EBCDIC,	C_ASCII,	a2e_POSIX },
323 	{ "ibm",	C_EBCDIC,	C_ASCII,	a2ibm_POSIX },
324 	{ "lcase",	C_LCASE,	C_UCASE,	NULL },
325 	{ "noerror",	C_NOERROR,	0,		NULL },
326 	{ "notrunc",	C_NOTRUNC,	0,		NULL },
327 	{ "oldascii",	C_ASCII,	C_EBCDIC,	e2a_32V },
328 	{ "oldebcdic",	C_EBCDIC,	C_ASCII,	a2e_32V },
329 	{ "oldibm",	C_EBCDIC,	C_ASCII,	a2ibm_32V },
330 	{ "osync",	C_OSYNC,	C_BS,		NULL },
331 	{ "pareven",	C_PAREVEN,	C_PARODD|C_PARSET|C_PARNONE, NULL},
332 	{ "parnone",	C_PARNONE,	C_PARODD|C_PARSET|C_PAREVEN, NULL},
333 	{ "parodd",	C_PARODD,	C_PAREVEN|C_PARSET|C_PARNONE, NULL},
334 	{ "parset",	C_PARSET,	C_PARODD|C_PAREVEN|C_PARNONE, NULL},
335 	{ "sparse",	C_SPARSE,	0,		NULL },
336 	{ "swab",	C_SWAB,		0,		NULL },
337 	{ "sync",	C_SYNC,		0,		NULL },
338 	{ "ucase",	C_UCASE,	C_LCASE,	NULL },
339 	{ "unblock",	C_UNBLOCK,	C_BLOCK,	NULL },
340 };
341 
342 static void
343 f_conv(char *arg)
344 {
345 	struct conv *cp, tmp;
346 
347 	while (arg != NULL) {
348 		tmp.name = strsep(&arg, ",");
349 		cp = bsearch(&tmp, clist, sizeof(clist) / sizeof(struct conv),
350 		    sizeof(struct conv), c_conv);
351 		if (cp == NULL)
352 			errx(1, "unknown conversion %s", tmp.name);
353 		if (ddflags & cp->noset)
354 			errx(1, "%s: illegal conversion combination", tmp.name);
355 		ddflags |= cp->set;
356 		if (cp->ctab)
357 			ctab = cp->ctab;
358 	}
359 }
360 
361 static int
362 c_conv(const void *a, const void *b)
363 {
364 
365 	return (strcmp(((const struct conv *)a)->name,
366 	    ((const struct conv *)b)->name));
367 }
368 
369 static intmax_t
370 postfix_to_mult(const char expr)
371 {
372 	intmax_t mult;
373 
374 	mult = 0;
375 	switch (expr) {
376 	case 'B':
377 	case 'b':
378 		mult = 512;
379 		break;
380 	case 'K':
381 	case 'k':
382 		mult = 1 << 10;
383 		break;
384 	case 'M':
385 	case 'm':
386 		mult = 1 << 20;
387 		break;
388 	case 'G':
389 	case 'g':
390 		mult = 1 << 30;
391 		break;
392 	case 'T':
393 	case 't':
394 		mult = (uintmax_t)1 << 40;
395 		break;
396 	case 'P':
397 	case 'p':
398 		mult = (uintmax_t)1 << 50;
399 		break;
400 	case 'W':
401 	case 'w':
402 		mult = sizeof(int);
403 		break;
404 	}
405 
406 	return (mult);
407 }
408 
409 /*
410  * Convert an expression of the following forms to a uintmax_t.
411  * 	1) A positive decimal number.
412  *	2) A positive decimal number followed by a 'b' or 'B' (mult by 512).
413  *	3) A positive decimal number followed by a 'k' or 'K' (mult by 1 << 10).
414  *	4) A positive decimal number followed by a 'm' or 'M' (mult by 1 << 20).
415  *	5) A positive decimal number followed by a 'g' or 'G' (mult by 1 << 30).
416  *	6) A positive decimal number followed by a 't' or 'T' (mult by 1 << 40).
417  *	7) A positive decimal number followed by a 'p' or 'P' (mult by 1 << 50).
418  *	8) A positive decimal number followed by a 'w' or 'W' (mult by sizeof int).
419  *	9) Two or more positive decimal numbers (with/without [BbKkMmGgWw])
420  *	   separated by 'x' or 'X' (also '*' for backwards compatibility),
421  *	   specifying the product of the indicated values.
422  */
423 static uintmax_t
424 get_num(const char *val)
425 {
426 	uintmax_t num, mult, prevnum;
427 	char *expr;
428 
429 	errno = 0;
430 	num = strtoumax(val, &expr, 0);
431 	if (expr == val)			/* No valid digits. */
432 		errx(1, "%s: invalid numeric value", oper);
433 	if (errno != 0)
434 		err(1, "%s", oper);
435 
436 	mult = postfix_to_mult(*expr);
437 
438 	if (mult != 0) {
439 		prevnum = num;
440 		num *= mult;
441 		/* Check for overflow. */
442 		if (num / mult != prevnum)
443 			goto erange;
444 		expr++;
445 	}
446 
447 	switch (*expr) {
448 		case '\0':
449 			break;
450 		case '*':			/* Backward compatible. */
451 		case 'X':
452 		case 'x':
453 			mult = get_num(expr + 1);
454 			prevnum = num;
455 			num *= mult;
456 			if (num / mult == prevnum)
457 				break;
458 erange:
459 			errx(1, "%s: %s", oper, strerror(ERANGE));
460 		default:
461 			errx(1, "%s: illegal numeric value", oper);
462 	}
463 	return (num);
464 }
465 
466 /*
467  * Convert an expression of the following forms to an off_t.  This is the
468  * same as get_num(), but it uses signed numbers.
469  *
470  * The major problem here is that an off_t may not necessarily be a intmax_t.
471  */
472 static off_t
473 get_off_t(const char *val)
474 {
475 	intmax_t num, mult, prevnum;
476 	char *expr;
477 
478 	errno = 0;
479 	num = strtoimax(val, &expr, 0);
480 	if (expr == val)			/* No valid digits. */
481 		errx(1, "%s: invalid numeric value", oper);
482 	if (errno != 0)
483 		err(1, "%s", oper);
484 
485 	mult = postfix_to_mult(*expr);
486 
487 	if (mult != 0) {
488 		prevnum = num;
489 		num *= mult;
490 		/* Check for overflow. */
491 		if ((prevnum > 0) != (num > 0) || num / mult != prevnum)
492 			goto erange;
493 		expr++;
494 	}
495 
496 	switch (*expr) {
497 		case '\0':
498 			break;
499 		case '*':			/* Backward compatible. */
500 		case 'X':
501 		case 'x':
502 			mult = (intmax_t)get_off_t(expr + 1);
503 			prevnum = num;
504 			num *= mult;
505 			if ((prevnum > 0) == (num > 0) && num / mult == prevnum)
506 				break;
507 erange:
508 			errx(1, "%s: %s", oper, strerror(ERANGE));
509 		default:
510 			errx(1, "%s: illegal numeric value", oper);
511 	}
512 	return (num);
513 }
514