]>
Commit | Line | Data |
---|---|---|
44a7a5ab A |
1 | /*- |
2 | * Copyright (c) 1991, 1993, 1994 | |
3 | * The Regents of the University of California. All rights reserved. | |
4 | * | |
5 | * This code is derived from software contributed to Berkeley by | |
6 | * Keith Muller of the University of California, San Diego and Lance | |
7 | * Visser of Convex Computer Corporation. | |
8 | * | |
9 | * Redistribution and use in source and binary forms, with or without | |
10 | * modification, are permitted provided that the following conditions | |
11 | * are met: | |
12 | * 1. Redistributions of source code must retain the above copyright | |
13 | * notice, this list of conditions and the following disclaimer. | |
14 | * 2. Redistributions in binary form must reproduce the above copyright | |
15 | * notice, this list of conditions and the following disclaimer in the | |
16 | * documentation and/or other materials provided with the distribution. | |
17 | * 3. All advertising materials mentioning features or use of this software | |
18 | * must display the following acknowledgement: | |
19 | * This product includes software developed by the University of | |
20 | * California, Berkeley and its contributors. | |
21 | * 4. Neither the name of the University nor the names of its contributors | |
22 | * may be used to endorse or promote products derived from this software | |
23 | * without specific prior written permission. | |
24 | * | |
25 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
26 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
27 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
28 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
29 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
30 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
31 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
32 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
33 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
34 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
35 | * SUCH DAMAGE. | |
36 | */ | |
37 | ||
00337e45 | 38 | #include <sys/cdefs.h> |
44a7a5ab A |
39 | #ifndef lint |
40 | #if 0 | |
41 | static char sccsid[] = "@(#)args.c 8.3 (Berkeley) 4/2/94"; | |
44a7a5ab | 42 | #endif |
00337e45 | 43 | __used static const char rcsid[] = |
440bd198 | 44 | "$FreeBSD: src/bin/dd/args.c,v 1.31 2002/02/22 20:51:00 markm Exp $"; |
44a7a5ab A |
45 | #endif /* not lint */ |
46 | ||
47 | #include <sys/types.h> | |
48 | ||
49 | #include <err.h> | |
50 | #include <errno.h> | |
51 | #include <limits.h> | |
44a7a5ab A |
52 | #include <stdlib.h> |
53 | #include <string.h> | |
54 | ||
55 | #include "dd.h" | |
56 | #include "extern.h" | |
57 | ||
440bd198 A |
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_ibs(char *); | |
66 | static void f_if(char *); | |
67 | static void f_obs(char *); | |
68 | static void f_of(char *); | |
69 | static void f_seek(char *); | |
70 | static void f_skip(char *); | |
71 | static quad_t get_num(char *); | |
72 | static off_t get_offset(char *); | |
44a7a5ab A |
73 | |
74 | static const struct arg { | |
440bd198 A |
75 | const char *name; |
76 | void (*f)(char *); | |
44a7a5ab A |
77 | u_int set, noset; |
78 | } args[] = { | |
c59d3020 | 79 | { "bs", f_bs, C_BS, C_BS|C_OSYNC }, |
44a7a5ab A |
80 | { "cbs", f_cbs, C_CBS, C_CBS }, |
81 | { "conv", f_conv, 0, 0 }, | |
82 | { "count", f_count, C_COUNT, C_COUNT }, | |
83 | { "files", f_files, C_FILES, C_FILES }, | |
c59d3020 | 84 | { "ibs", f_ibs, C_IBS, C_IBS }, |
44a7a5ab | 85 | { "if", f_if, C_IF, C_IF }, |
440bd198 | 86 | { "iseek", f_skip, C_SKIP, C_SKIP }, |
c59d3020 | 87 | { "obs", f_obs, C_OBS, C_OBS }, |
44a7a5ab | 88 | { "of", f_of, C_OF, C_OF }, |
440bd198 | 89 | { "oseek", f_seek, C_SEEK, C_SEEK }, |
44a7a5ab A |
90 | { "seek", f_seek, C_SEEK, C_SEEK }, |
91 | { "skip", f_skip, C_SKIP, C_SKIP }, | |
92 | }; | |
93 | ||
94 | static char *oper; | |
95 | ||
96 | /* | |
97 | * args -- parse JCL syntax of dd. | |
98 | */ | |
99 | void | |
440bd198 | 100 | jcl(char **argv) |
44a7a5ab A |
101 | { |
102 | struct arg *ap, tmp; | |
103 | char *arg; | |
104 | ||
105 | in.dbsz = out.dbsz = 512; | |
106 | ||
c59d3020 A |
107 | if (argv[1] && !strcmp(argv[1], "--")) /* skip delimiter before operands */ |
108 | argv++; | |
44a7a5ab | 109 | while ((oper = *++argv) != NULL) { |
440bd198 A |
110 | if ((oper = strdup(oper)) == NULL) |
111 | errx(1, "unable to allocate space for the argument \"%s\"", *argv); | |
44a7a5ab A |
112 | if ((arg = strchr(oper, '=')) == NULL) |
113 | errx(1, "unknown operand %s", oper); | |
114 | *arg++ = '\0'; | |
115 | if (!*arg) | |
116 | errx(1, "no value specified for %s", oper); | |
117 | tmp.name = oper; | |
118 | if (!(ap = (struct arg *)bsearch(&tmp, args, | |
119 | sizeof(args)/sizeof(struct arg), sizeof(struct arg), | |
120 | c_arg))) | |
121 | errx(1, "unknown operand %s", tmp.name); | |
122 | if (ddflags & ap->noset) | |
123 | errx(1, "%s: illegal argument combination or already set", | |
124 | tmp.name); | |
125 | ddflags |= ap->set; | |
126 | ap->f(arg); | |
127 | } | |
128 | ||
129 | /* Final sanity checks. */ | |
130 | ||
131 | if (ddflags & C_BS) { | |
132 | /* | |
133 | * Bs is turned off by any conversion -- we assume the user | |
134 | * just wanted to set both the input and output block sizes | |
135 | * and didn't want the bs semantics, so we don't warn. | |
136 | */ | |
440bd198 A |
137 | if (ddflags & (C_BLOCK | C_LCASE | C_SWAB | C_UCASE | |
138 | C_UNBLOCK)) | |
44a7a5ab A |
139 | ddflags &= ~C_BS; |
140 | ||
141 | /* Bs supersedes ibs and obs. */ | |
440bd198 | 142 | if (ddflags & C_BS && ddflags & (C_IBS | C_OBS)) |
44a7a5ab A |
143 | warnx("bs supersedes ibs and obs"); |
144 | } | |
145 | ||
146 | /* | |
147 | * Ascii/ebcdic and cbs implies block/unblock. | |
148 | * Block/unblock requires cbs and vice-versa. | |
149 | */ | |
440bd198 | 150 | if (ddflags & (C_BLOCK | C_UNBLOCK)) { |
44a7a5ab A |
151 | if (!(ddflags & C_CBS)) |
152 | errx(1, "record operations require cbs"); | |
153 | if (cbsz == 0) | |
154 | errx(1, "cbs cannot be zero"); | |
155 | cfunc = ddflags & C_BLOCK ? block : unblock; | |
156 | } else if (ddflags & C_CBS) { | |
440bd198 | 157 | if (ddflags & (C_ASCII | C_EBCDIC)) { |
44a7a5ab A |
158 | if (ddflags & C_ASCII) { |
159 | ddflags |= C_UNBLOCK; | |
160 | cfunc = unblock; | |
161 | } else { | |
162 | ddflags |= C_BLOCK; | |
163 | cfunc = block; | |
164 | } | |
165 | } else | |
166 | errx(1, "cbs meaningless if not doing record operations"); | |
44a7a5ab A |
167 | } else |
168 | cfunc = def; | |
169 | ||
44a7a5ab | 170 | /* |
440bd198 | 171 | * Bail out if the calculation of a file offset would overflow. |
44a7a5ab | 172 | */ |
440bd198 A |
173 | if (in.offset > QUAD_MAX / in.dbsz || out.offset > QUAD_MAX / out.dbsz) |
174 | errx(1, "seek offsets cannot be larger than %qd", QUAD_MAX); | |
44a7a5ab A |
175 | } |
176 | ||
177 | static int | |
440bd198 | 178 | c_arg(const void *a, const void *b) |
44a7a5ab A |
179 | { |
180 | ||
181 | return (strcmp(((const struct arg *)a)->name, | |
182 | ((const struct arg *)b)->name)); | |
183 | } | |
184 | ||
185 | static void | |
440bd198 | 186 | f_bs(char *arg) |
44a7a5ab | 187 | { |
440bd198 | 188 | quad_t res; |
44a7a5ab | 189 | |
440bd198 A |
190 | res = get_num(arg); |
191 | if (res < 1 || res > SSIZE_MAX) | |
686e1a44 | 192 | errx(1, "bs must be between 1 and %ld", SSIZE_MAX); |
440bd198 | 193 | in.dbsz = out.dbsz = (size_t)res; |
44a7a5ab A |
194 | } |
195 | ||
196 | static void | |
440bd198 | 197 | f_cbs(char *arg) |
44a7a5ab | 198 | { |
440bd198 | 199 | quad_t res; |
44a7a5ab | 200 | |
440bd198 A |
201 | res = get_num(arg); |
202 | if (res < 1 || res > SSIZE_MAX) | |
686e1a44 | 203 | errx(1, "cbs must be between 1 and %ld", SSIZE_MAX); |
440bd198 | 204 | cbsz = (size_t)res; |
44a7a5ab A |
205 | } |
206 | ||
207 | static void | |
440bd198 | 208 | f_count(char *arg) |
44a7a5ab A |
209 | { |
210 | ||
440bd198 A |
211 | cpy_cnt = get_num(arg); |
212 | if (cpy_cnt < 0) | |
213 | errx(1, "count cannot be negative"); | |
214 | if (cpy_cnt == 0) | |
215 | cpy_cnt = -1; | |
44a7a5ab A |
216 | } |
217 | ||
218 | static void | |
440bd198 | 219 | f_files(char *arg) |
44a7a5ab A |
220 | { |
221 | ||
440bd198 A |
222 | files_cnt = get_num(arg); |
223 | if (files_cnt < 1) | |
224 | errx(1, "files must be between 1 and %qd", QUAD_MAX); | |
44a7a5ab A |
225 | } |
226 | ||
227 | static void | |
440bd198 | 228 | f_ibs(char *arg) |
44a7a5ab | 229 | { |
440bd198 | 230 | quad_t res; |
44a7a5ab | 231 | |
440bd198 A |
232 | if (!(ddflags & C_BS)) { |
233 | res = get_num(arg); | |
234 | if (res < 1 || res > SSIZE_MAX) | |
686e1a44 | 235 | errx(1, "ibs must be between 1 and %ld", SSIZE_MAX); |
440bd198 A |
236 | in.dbsz = (size_t)res; |
237 | } | |
44a7a5ab A |
238 | } |
239 | ||
240 | static void | |
440bd198 | 241 | f_if(char *arg) |
44a7a5ab A |
242 | { |
243 | ||
244 | in.name = arg; | |
245 | } | |
246 | ||
247 | static void | |
440bd198 | 248 | f_obs(char *arg) |
44a7a5ab | 249 | { |
440bd198 | 250 | quad_t res; |
44a7a5ab | 251 | |
440bd198 A |
252 | if (!(ddflags & C_BS)) { |
253 | res = get_num(arg); | |
254 | if (res < 1 || res > SSIZE_MAX) | |
686e1a44 | 255 | errx(1, "obs must be between 1 and %ld", SSIZE_MAX); |
440bd198 A |
256 | out.dbsz = (size_t)res; |
257 | } | |
44a7a5ab A |
258 | } |
259 | ||
260 | static void | |
440bd198 | 261 | f_of(char *arg) |
44a7a5ab A |
262 | { |
263 | ||
264 | out.name = arg; | |
265 | } | |
266 | ||
267 | static void | |
440bd198 | 268 | f_seek(char *arg) |
44a7a5ab A |
269 | { |
270 | ||
440bd198 | 271 | out.offset = get_offset(arg); |
44a7a5ab A |
272 | } |
273 | ||
274 | static void | |
440bd198 | 275 | f_skip(char *arg) |
44a7a5ab A |
276 | { |
277 | ||
440bd198 | 278 | in.offset = get_offset(arg); |
44a7a5ab | 279 | } |
44a7a5ab A |
280 | |
281 | static const struct conv { | |
440bd198 | 282 | const char *name; |
44a7a5ab A |
283 | u_int set, noset; |
284 | const u_char *ctab; | |
285 | } clist[] = { | |
286 | { "ascii", C_ASCII, C_EBCDIC, e2a_POSIX }, | |
287 | { "block", C_BLOCK, C_UNBLOCK, NULL }, | |
288 | { "ebcdic", C_EBCDIC, C_ASCII, a2e_POSIX }, | |
289 | { "ibm", C_EBCDIC, C_ASCII, a2ibm_POSIX }, | |
290 | { "lcase", C_LCASE, C_UCASE, NULL }, | |
291 | { "noerror", C_NOERROR, 0, NULL }, | |
292 | { "notrunc", C_NOTRUNC, 0, NULL }, | |
293 | { "oldascii", C_ASCII, C_EBCDIC, e2a_32V }, | |
294 | { "oldebcdic", C_EBCDIC, C_ASCII, a2e_32V }, | |
295 | { "oldibm", C_EBCDIC, C_ASCII, a2ibm_32V }, | |
296 | { "osync", C_OSYNC, C_BS, NULL }, | |
440bd198 | 297 | { "sparse", C_SPARSE, 0, NULL }, |
44a7a5ab A |
298 | { "swab", C_SWAB, 0, NULL }, |
299 | { "sync", C_SYNC, 0, NULL }, | |
300 | { "ucase", C_UCASE, C_LCASE, NULL }, | |
301 | { "unblock", C_UNBLOCK, C_BLOCK, NULL }, | |
302 | }; | |
303 | ||
304 | static void | |
440bd198 | 305 | f_conv(char *arg) |
44a7a5ab A |
306 | { |
307 | struct conv *cp, tmp; | |
308 | ||
309 | while (arg != NULL) { | |
310 | tmp.name = strsep(&arg, ","); | |
440bd198 A |
311 | cp = bsearch(&tmp, clist, sizeof(clist) / sizeof(struct conv), |
312 | sizeof(struct conv), c_conv); | |
313 | if (cp == NULL) | |
44a7a5ab A |
314 | errx(1, "unknown conversion %s", tmp.name); |
315 | if (ddflags & cp->noset) | |
316 | errx(1, "%s: illegal conversion combination", tmp.name); | |
317 | ddflags |= cp->set; | |
318 | if (cp->ctab) | |
319 | ctab = cp->ctab; | |
320 | } | |
321 | } | |
322 | ||
323 | static int | |
440bd198 | 324 | c_conv(const void *a, const void *b) |
44a7a5ab A |
325 | { |
326 | ||
327 | return (strcmp(((const struct conv *)a)->name, | |
328 | ((const struct conv *)b)->name)); | |
329 | } | |
330 | ||
44a7a5ab | 331 | /* |
440bd198 | 332 | * Convert an expression of the following forms to a quad_t. |
44a7a5ab A |
333 | * 1) A positive decimal number. |
334 | * 2) A positive decimal number followed by a b (mult by 512). | |
440bd198 A |
335 | * 3) A positive decimal number followed by a k (mult by 1 << 10). |
336 | * 4) A positive decimal number followed by a m (mult by 1 << 20). | |
337 | * 5) A positive decimal number followed by a g (mult by 1 << 30). | |
338 | * 5) A positive decimal number followed by a w (mult by sizeof int). | |
339 | * 6) Two or more positive decimal numbers (with/without [bkmgw]) | |
340 | * separated by x (also * for backwards compatibility), specifying | |
44a7a5ab A |
341 | * the product of the indicated values. |
342 | */ | |
440bd198 A |
343 | static quad_t |
344 | get_num(char *val) | |
44a7a5ab | 345 | { |
440bd198 | 346 | quad_t num, t; |
44a7a5ab A |
347 | char *expr; |
348 | ||
440bd198 A |
349 | errno = 0; |
350 | num = strtoq(val, &expr, 0); | |
351 | if (errno != 0) /* Overflow or underflow. */ | |
44a7a5ab | 352 | err(1, "%s", oper); |
440bd198 A |
353 | |
354 | if (expr == val) /* No valid digits. */ | |
44a7a5ab A |
355 | errx(1, "%s: illegal numeric value", oper); |
356 | ||
357 | switch (*expr) { | |
358 | case 'b': | |
359 | t = num; | |
360 | num *= 512; | |
361 | if (t > num) | |
362 | goto erange; | |
363 | ++expr; | |
364 | break; | |
365 | case 'k': | |
366 | t = num; | |
440bd198 | 367 | num *= 1 << 10; |
44a7a5ab A |
368 | if (t > num) |
369 | goto erange; | |
370 | ++expr; | |
371 | break; | |
372 | case 'm': | |
373 | t = num; | |
440bd198 A |
374 | num *= 1 << 20; |
375 | if (t > num) | |
376 | goto erange; | |
377 | ++expr; | |
378 | break; | |
379 | case 'g': | |
380 | t = num; | |
381 | num *= 1 << 30; | |
44a7a5ab A |
382 | if (t > num) |
383 | goto erange; | |
384 | ++expr; | |
385 | break; | |
386 | case 'w': | |
387 | t = num; | |
388 | num *= sizeof(int); | |
389 | if (t > num) | |
390 | goto erange; | |
391 | ++expr; | |
392 | break; | |
393 | } | |
394 | ||
395 | switch (*expr) { | |
440bd198 A |
396 | case '\0': |
397 | break; | |
398 | case '*': /* Backward compatible. */ | |
399 | case 'x': | |
400 | t = num; | |
401 | num *= get_num(expr + 1); | |
402 | if (t <= num) | |
403 | break; | |
404 | erange: | |
405 | errx(1, "%s: %s", oper, strerror(ERANGE)); | |
406 | default: | |
407 | errx(1, "%s: illegal numeric value", oper); | |
44a7a5ab A |
408 | } |
409 | return (num); | |
410 | } | |
440bd198 A |
411 | |
412 | static off_t | |
413 | get_offset(char *val) | |
414 | { | |
415 | quad_t num; | |
416 | ||
417 | num = get_num(val); | |
418 | if (num > QUAD_MAX) /* XXX can't happen && quad_t != off_t */ | |
419 | errx(1, "%s: illegal offset", oper); /* Too big. */ | |
420 | return ((off_t)num); | |
421 | } |