1 1.43 mlelstv /* $NetBSD: args.c,v 1.43 2024/01/26 07:10:04 mlelstv Exp $ */ 2 1.4 cgd 3 1.1 glass /*- 4 1.3 mycroft * Copyright (c) 1991, 1993, 1994 5 1.3 mycroft * The Regents of the University of California. All rights reserved. 6 1.1 glass * 7 1.1 glass * This code is derived from software contributed to Berkeley by 8 1.1 glass * Keith Muller of the University of California, San Diego and Lance 9 1.1 glass * Visser of Convex Computer Corporation. 10 1.1 glass * 11 1.1 glass * Redistribution and use in source and binary forms, with or without 12 1.1 glass * modification, are permitted provided that the following conditions 13 1.1 glass * are met: 14 1.1 glass * 1. Redistributions of source code must retain the above copyright 15 1.1 glass * notice, this list of conditions and the following disclaimer. 16 1.1 glass * 2. Redistributions in binary form must reproduce the above copyright 17 1.1 glass * notice, this list of conditions and the following disclaimer in the 18 1.1 glass * documentation and/or other materials provided with the distribution. 19 1.23 agc * 3. Neither the name of the University nor the names of its contributors 20 1.1 glass * may be used to endorse or promote products derived from this software 21 1.1 glass * without specific prior written permission. 22 1.1 glass * 23 1.1 glass * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 24 1.1 glass * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 25 1.1 glass * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 26 1.1 glass * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 27 1.1 glass * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 28 1.1 glass * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 29 1.1 glass * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 30 1.1 glass * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 31 1.1 glass * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 32 1.1 glass * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 33 1.1 glass * SUCH DAMAGE. 34 1.1 glass */ 35 1.1 glass 36 1.8 christos #include <sys/cdefs.h> 37 1.1 glass #ifndef lint 38 1.4 cgd #if 0 39 1.4 cgd static char sccsid[] = "@(#)args.c 8.3 (Berkeley) 4/2/94"; 40 1.4 cgd #else 41 1.43 mlelstv __RCSID("$NetBSD: args.c,v 1.43 2024/01/26 07:10:04 mlelstv Exp $"); 42 1.4 cgd #endif 43 1.1 glass #endif /* not lint */ 44 1.1 glass 45 1.1 glass #include <sys/types.h> 46 1.15 ross #include <sys/time.h> 47 1.3 mycroft 48 1.39 manu #ifndef NO_IOFLAG 49 1.39 manu #include <fcntl.h> 50 1.39 manu #endif /* NO_IOFLAG */ 51 1.3 mycroft #include <err.h> 52 1.3 mycroft #include <errno.h> 53 1.1 glass #include <limits.h> 54 1.1 glass #include <stdio.h> 55 1.1 glass #include <stdlib.h> 56 1.1 glass #include <string.h> 57 1.3 mycroft 58 1.1 glass #include "dd.h" 59 1.1 glass #include "extern.h" 60 1.1 glass 61 1.17 lukem static int c_arg(const void *, const void *); 62 1.36 jym 63 1.36 jym #ifdef NO_MSGFMT 64 1.36 jym static void f_msgfmt(char *) __dead; 65 1.36 jym #else 66 1.36 jym static void f_msgfmt(char *); 67 1.36 jym #endif /* NO_MSGFMT */ 68 1.36 jym 69 1.36 jym #ifdef NO_CONV 70 1.36 jym static void f_conv(char *) __dead; 71 1.36 jym #else 72 1.36 jym static void f_conv(char *); 73 1.17 lukem static int c_conv(const void *, const void *); 74 1.36 jym #endif /* NO_CONV */ 75 1.36 jym 76 1.39 manu #ifdef NO_IOFLAG 77 1.39 manu static void f_iflag(char *) __dead; 78 1.39 manu static void f_oflag(char *) __dead; 79 1.39 manu #else 80 1.39 manu static void f_iflag(char *); 81 1.39 manu static void f_oflag(char *); 82 1.39 manu static u_int f_ioflag(char *, u_int); 83 1.39 manu static int c_ioflag(const void *, const void *); 84 1.39 manu #endif /* NO_IOFLAG */ 85 1.39 manu 86 1.17 lukem static void f_bs(char *); 87 1.17 lukem static void f_cbs(char *); 88 1.17 lukem static void f_count(char *); 89 1.17 lukem static void f_files(char *); 90 1.17 lukem static void f_ibs(char *); 91 1.17 lukem static void f_if(char *); 92 1.17 lukem static void f_obs(char *); 93 1.17 lukem static void f_of(char *); 94 1.17 lukem static void f_seek(char *); 95 1.17 lukem static void f_skip(char *); 96 1.17 lukem static void f_progress(char *); 97 1.1 glass 98 1.12 msaitoh static const struct arg { 99 1.17 lukem const char *name; 100 1.17 lukem void (*f)(char *); 101 1.1 glass u_int set, noset; 102 1.1 glass } args[] = { 103 1.14 hubertf /* the array needs to be sorted by the first column so 104 1.20 enami bsearch() can be used to find commands quickly */ 105 1.3 mycroft { "bs", f_bs, C_BS, C_BS|C_IBS|C_OBS|C_OSYNC }, 106 1.3 mycroft { "cbs", f_cbs, C_CBS, C_CBS }, 107 1.3 mycroft { "conv", f_conv, 0, 0 }, 108 1.3 mycroft { "count", f_count, C_COUNT, C_COUNT }, 109 1.3 mycroft { "files", f_files, C_FILES, C_FILES }, 110 1.3 mycroft { "ibs", f_ibs, C_IBS, C_BS|C_IBS }, 111 1.34 pooka { "if", f_if, C_IF, C_IF }, 112 1.39 manu { "iflag", f_iflag, C_IFLAG, C_IFLAG }, 113 1.32 enami { "iseek", f_skip, C_SKIP, C_SKIP }, 114 1.38 christos { "msgfmt", f_msgfmt, 0, 0 }, 115 1.3 mycroft { "obs", f_obs, C_OBS, C_BS|C_OBS }, 116 1.34 pooka { "of", f_of, C_OF, C_OF }, 117 1.39 manu { "oflag", f_oflag, C_OFLAG, C_OFLAG }, 118 1.32 enami { "oseek", f_seek, C_SEEK, C_SEEK }, 119 1.14 hubertf { "progress", f_progress, 0, 0 }, 120 1.3 mycroft { "seek", f_seek, C_SEEK, C_SEEK }, 121 1.3 mycroft { "skip", f_skip, C_SKIP, C_SKIP }, 122 1.1 glass }; 123 1.1 glass 124 1.1 glass /* 125 1.1 glass * args -- parse JCL syntax of dd. 126 1.1 glass */ 127 1.1 glass void 128 1.17 lukem jcl(char **argv) 129 1.1 glass { 130 1.41 rillig const struct arg *ap; 131 1.41 rillig struct arg tmp; 132 1.19 lukem char *oper, *arg; 133 1.1 glass 134 1.1 glass in.dbsz = out.dbsz = 512; 135 1.1 glass 136 1.8 christos while ((oper = *++argv) != NULL) { 137 1.31 enami if ((oper = strdup(oper)) == NULL) { 138 1.31 enami errx(EXIT_FAILURE, 139 1.31 enami "unable to allocate space for the argument %s", 140 1.31 enami *argv); 141 1.31 enami /* NOTREACHED */ 142 1.31 enami } 143 1.22 jschauma if ((arg = strchr(oper, '=')) == NULL) { 144 1.22 jschauma errx(EXIT_FAILURE, "unknown operand %s", oper); 145 1.22 jschauma /* NOTREACHED */ 146 1.22 jschauma } 147 1.1 glass *arg++ = '\0'; 148 1.22 jschauma if (!*arg) { 149 1.22 jschauma errx(EXIT_FAILURE, "no value specified for %s", oper); 150 1.22 jschauma /* NOTREACHED */ 151 1.22 jschauma } 152 1.1 glass tmp.name = oper; 153 1.33 jym if (!(ap = bsearch(&tmp, args, 154 1.33 jym __arraycount(args), sizeof(*args), c_arg))) { 155 1.22 jschauma errx(EXIT_FAILURE, "unknown operand %s", tmp.name); 156 1.22 jschauma /* NOTREACHED */ 157 1.22 jschauma } 158 1.22 jschauma if (ddflags & ap->noset) { 159 1.22 jschauma errx(EXIT_FAILURE, 160 1.17 lukem "%s: illegal argument combination or already set", 161 1.1 glass tmp.name); 162 1.22 jschauma /* NOTREACHED */ 163 1.22 jschauma } 164 1.1 glass ddflags |= ap->set; 165 1.1 glass ap->f(arg); 166 1.1 glass } 167 1.1 glass 168 1.1 glass /* Final sanity checks. */ 169 1.1 glass 170 1.1 glass if (ddflags & C_BS) { 171 1.1 glass /* 172 1.1 glass * Bs is turned off by any conversion -- we assume the user 173 1.1 glass * just wanted to set both the input and output block sizes 174 1.1 glass * and didn't want the bs semantics, so we don't warn. 175 1.1 glass */ 176 1.24 dbj if (ddflags & (C_BLOCK | C_LCASE | C_SWAB | C_UCASE | 177 1.25 dbj C_UNBLOCK | C_OSYNC | C_ASCII | C_EBCDIC | C_SPARSE)) { 178 1.1 glass ddflags &= ~C_BS; 179 1.24 dbj ddflags |= C_IBS|C_OBS; 180 1.24 dbj } 181 1.1 glass 182 1.1 glass /* Bs supersedes ibs and obs. */ 183 1.1 glass if (ddflags & C_BS && ddflags & (C_IBS|C_OBS)) 184 1.3 mycroft warnx("bs supersedes ibs and obs"); 185 1.1 glass } 186 1.1 glass 187 1.1 glass /* 188 1.1 glass * Ascii/ebcdic and cbs implies block/unblock. 189 1.1 glass * Block/unblock requires cbs and vice-versa. 190 1.1 glass */ 191 1.1 glass if (ddflags & (C_BLOCK|C_UNBLOCK)) { 192 1.22 jschauma if (!(ddflags & C_CBS)) { 193 1.22 jschauma errx(EXIT_FAILURE, "record operations require cbs"); 194 1.22 jschauma /* NOTREACHED */ 195 1.22 jschauma } 196 1.1 glass cfunc = ddflags & C_BLOCK ? block : unblock; 197 1.1 glass } else if (ddflags & C_CBS) { 198 1.1 glass if (ddflags & (C_ASCII|C_EBCDIC)) { 199 1.1 glass if (ddflags & C_ASCII) { 200 1.1 glass ddflags |= C_UNBLOCK; 201 1.1 glass cfunc = unblock; 202 1.1 glass } else { 203 1.1 glass ddflags |= C_BLOCK; 204 1.1 glass cfunc = block; 205 1.1 glass } 206 1.22 jschauma } else { 207 1.22 jschauma errx(EXIT_FAILURE, 208 1.17 lukem "cbs meaningless if not doing record operations"); 209 1.22 jschauma /* NOTREACHED */ 210 1.22 jschauma } 211 1.1 glass } else 212 1.1 glass cfunc = def; 213 1.1 glass 214 1.20 enami /* Read, write and seek calls take off_t as arguments. 215 1.9 phil * 216 1.9 phil * The following check is not done because an off_t is a quad 217 1.20 enami * for current NetBSD implementations. 218 1.9 phil * 219 1.9 phil * if (in.offset > INT_MAX/in.dbsz || out.offset > INT_MAX/out.dbsz) 220 1.9 phil * errx(1, "seek offsets cannot be larger than %d", INT_MAX); 221 1.9 phil */ 222 1.1 glass } 223 1.1 glass 224 1.1 glass static int 225 1.17 lukem c_arg(const void *a, const void *b) 226 1.1 glass { 227 1.17 lukem 228 1.13 mycroft return (strcmp(((const struct arg *)a)->name, 229 1.13 mycroft ((const struct arg *)b)->name)); 230 1.1 glass } 231 1.1 glass 232 1.1 glass static void 233 1.17 lukem f_bs(char *arg) 234 1.1 glass { 235 1.17 lukem 236 1.21 lukem in.dbsz = out.dbsz = strsuftoll("block size", arg, 1, UINT_MAX); 237 1.1 glass } 238 1.1 glass 239 1.1 glass static void 240 1.17 lukem f_cbs(char *arg) 241 1.1 glass { 242 1.17 lukem 243 1.21 lukem cbsz = strsuftoll("conversion record size", arg, 1, UINT_MAX); 244 1.1 glass } 245 1.1 glass 246 1.1 glass static void 247 1.17 lukem f_count(char *arg) 248 1.1 glass { 249 1.17 lukem 250 1.21 lukem cpy_cnt = strsuftoll("block count", arg, 0, LLONG_MAX); 251 1.43 mlelstv if (!cpy_cnt) { 252 1.43 mlelstv summary(); 253 1.43 mlelstv exit(0); 254 1.43 mlelstv } 255 1.1 glass } 256 1.1 glass 257 1.1 glass static void 258 1.17 lukem f_files(char *arg) 259 1.1 glass { 260 1.17 lukem 261 1.21 lukem files_cnt = (u_int)strsuftoll("file count", arg, 0, UINT_MAX); 262 1.43 mlelstv if (!files_cnt) { 263 1.43 mlelstv summary(); 264 1.43 mlelstv exit(0); 265 1.43 mlelstv } 266 1.1 glass } 267 1.1 glass 268 1.1 glass static void 269 1.17 lukem f_ibs(char *arg) 270 1.1 glass { 271 1.17 lukem 272 1.1 glass if (!(ddflags & C_BS)) 273 1.21 lukem in.dbsz = strsuftoll("input block size", arg, 1, UINT_MAX); 274 1.1 glass } 275 1.1 glass 276 1.1 glass static void 277 1.17 lukem f_if(char *arg) 278 1.1 glass { 279 1.17 lukem 280 1.1 glass in.name = arg; 281 1.1 glass } 282 1.1 glass 283 1.36 jym #ifdef NO_MSGFMT 284 1.36 jym /* Build a small version (i.e. for a ramdisk root) */ 285 1.36 jym static void 286 1.36 jym f_msgfmt(char *arg) 287 1.36 jym { 288 1.36 jym 289 1.36 jym errx(EXIT_FAILURE, "msgfmt option disabled"); 290 1.36 jym /* NOTREACHED */ 291 1.36 jym } 292 1.36 jym #else /* NO_MSGFMT */ 293 1.36 jym static void 294 1.36 jym f_msgfmt(char *arg) 295 1.36 jym { 296 1.36 jym 297 1.37 jym /* 298 1.37 jym * If the format string is not valid, dd_write_msg() will print 299 1.37 jym * an error and exit. 300 1.37 jym */ 301 1.37 jym dd_write_msg(arg, 0); 302 1.37 jym 303 1.36 jym msgfmt = arg; 304 1.36 jym } 305 1.36 jym #endif /* NO_MSGFMT */ 306 1.36 jym 307 1.1 glass static void 308 1.17 lukem f_obs(char *arg) 309 1.1 glass { 310 1.17 lukem 311 1.1 glass if (!(ddflags & C_BS)) 312 1.21 lukem out.dbsz = strsuftoll("output block size", arg, 1, UINT_MAX); 313 1.1 glass } 314 1.1 glass 315 1.1 glass static void 316 1.17 lukem f_of(char *arg) 317 1.1 glass { 318 1.17 lukem 319 1.1 glass out.name = arg; 320 1.1 glass } 321 1.1 glass 322 1.1 glass static void 323 1.17 lukem f_seek(char *arg) 324 1.1 glass { 325 1.17 lukem 326 1.21 lukem out.offset = strsuftoll("seek blocks", arg, 0, LLONG_MAX); 327 1.1 glass } 328 1.1 glass 329 1.1 glass static void 330 1.17 lukem f_skip(char *arg) 331 1.1 glass { 332 1.17 lukem 333 1.21 lukem in.offset = strsuftoll("skip blocks", arg, 0, LLONG_MAX); 334 1.14 hubertf } 335 1.3 mycroft 336 1.14 hubertf static void 337 1.17 lukem f_progress(char *arg) 338 1.14 hubertf { 339 1.17 lukem 340 1.26 apb progress = strsuftoll("progress blocks", arg, 0, LLONG_MAX); 341 1.1 glass } 342 1.1 glass 343 1.5 gwr #ifdef NO_CONV 344 1.5 gwr /* Build a small version (i.e. for a ramdisk root) */ 345 1.5 gwr static void 346 1.17 lukem f_conv(char *arg) 347 1.5 gwr { 348 1.17 lukem 349 1.22 jschauma errx(EXIT_FAILURE, "conv option disabled"); 350 1.22 jschauma /* NOTREACHED */ 351 1.5 gwr } 352 1.5 gwr #else /* NO_CONV */ 353 1.5 gwr 354 1.12 msaitoh static const struct conv { 355 1.17 lukem const char *name; 356 1.1 glass u_int set, noset; 357 1.6 jtc const u_char *ctab; 358 1.1 glass } clist[] = { 359 1.3 mycroft { "ascii", C_ASCII, C_EBCDIC, e2a_POSIX }, 360 1.3 mycroft { "block", C_BLOCK, C_UNBLOCK, NULL }, 361 1.3 mycroft { "ebcdic", C_EBCDIC, C_ASCII, a2e_POSIX }, 362 1.42 christos { "ibm", C_EBCDIC, C_ASCII, a2ibm }, 363 1.3 mycroft { "lcase", C_LCASE, C_UCASE, NULL }, 364 1.3 mycroft { "noerror", C_NOERROR, 0, NULL }, 365 1.3 mycroft { "notrunc", C_NOTRUNC, 0, NULL }, 366 1.3 mycroft { "oldascii", C_ASCII, C_EBCDIC, e2a_32V }, 367 1.3 mycroft { "oldebcdic", C_EBCDIC, C_ASCII, a2e_32V }, 368 1.42 christos { "oldibm", C_EBCDIC, C_ASCII, a2ibm }, 369 1.3 mycroft { "osync", C_OSYNC, C_BS, NULL }, 370 1.25 dbj { "sparse", C_SPARSE, 0, NULL }, 371 1.3 mycroft { "swab", C_SWAB, 0, NULL }, 372 1.3 mycroft { "sync", C_SYNC, 0, NULL }, 373 1.3 mycroft { "ucase", C_UCASE, C_LCASE, NULL }, 374 1.3 mycroft { "unblock", C_UNBLOCK, C_BLOCK, NULL }, 375 1.24 dbj /* If you add items to this table, be sure to add the 376 1.24 dbj * conversions to the C_BS check in the jcl routine above. 377 1.24 dbj */ 378 1.1 glass }; 379 1.1 glass 380 1.1 glass static void 381 1.17 lukem f_conv(char *arg) 382 1.1 glass { 383 1.41 rillig const struct conv *cp; 384 1.41 rillig struct conv tmp; 385 1.1 glass 386 1.1 glass while (arg != NULL) { 387 1.1 glass tmp.name = strsep(&arg, ","); 388 1.33 jym if (!(cp = bsearch(&tmp, clist, 389 1.33 jym __arraycount(clist), sizeof(*clist), c_conv))) { 390 1.22 jschauma errx(EXIT_FAILURE, "unknown conversion %s", tmp.name); 391 1.22 jschauma /* NOTREACHED */ 392 1.22 jschauma } 393 1.22 jschauma if (ddflags & cp->noset) { 394 1.29 enami errx(EXIT_FAILURE, 395 1.29 enami "%s: illegal conversion combination", tmp.name); 396 1.22 jschauma /* NOTREACHED */ 397 1.22 jschauma } 398 1.1 glass ddflags |= cp->set; 399 1.1 glass if (cp->ctab) 400 1.1 glass ctab = cp->ctab; 401 1.1 glass } 402 1.1 glass } 403 1.1 glass 404 1.1 glass static int 405 1.17 lukem c_conv(const void *a, const void *b) 406 1.1 glass { 407 1.3 mycroft 408 1.13 mycroft return (strcmp(((const struct conv *)a)->name, 409 1.13 mycroft ((const struct conv *)b)->name)); 410 1.1 glass } 411 1.5 gwr 412 1.5 gwr #endif /* NO_CONV */ 413 1.39 manu 414 1.39 manu static void 415 1.39 manu f_iflag(char *arg) 416 1.39 manu { 417 1.39 manu /* Build a small version (i.e. for a ramdisk root) */ 418 1.39 manu #ifdef NO_IOFLAG 419 1.39 manu errx(EXIT_FAILURE, "iflag option disabled"); 420 1.39 manu /* NOTREACHED */ 421 1.39 manu #else 422 1.39 manu iflag = f_ioflag(arg, C_IFLAG); 423 1.39 manu return; 424 1.39 manu #endif 425 1.39 manu } 426 1.39 manu 427 1.39 manu static void 428 1.39 manu f_oflag(char *arg) 429 1.39 manu { 430 1.39 manu /* Build a small version (i.e. for a ramdisk root) */ 431 1.39 manu #ifdef NO_IOFLAG 432 1.39 manu errx(EXIT_FAILURE, "oflag option disabled"); 433 1.39 manu /* NOTREACHED */ 434 1.39 manu #else 435 1.39 manu oflag = f_ioflag(arg, C_OFLAG); 436 1.39 manu return; 437 1.39 manu #endif 438 1.39 manu } 439 1.39 manu 440 1.39 manu #ifndef NO_IOFLAG 441 1.39 manu static const struct ioflag { 442 1.39 manu const char *name; 443 1.39 manu u_int set; 444 1.39 manu u_int allowed; 445 1.39 manu } olist[] = { 446 1.39 manu /* the array needs to be sorted by the first column so 447 1.39 manu bsearch() can be used to find commands quickly */ 448 1.39 manu { "alt_io", O_ALT_IO, C_IFLAG|C_OFLAG }, 449 1.39 manu { "append", O_APPEND, C_OFLAG }, 450 1.39 manu { "async", O_ASYNC, C_IFLAG|C_OFLAG }, 451 1.39 manu { "cloexec", O_CLOEXEC, C_IFLAG|C_OFLAG }, 452 1.39 manu { "creat", O_CREAT, C_OFLAG }, 453 1.39 manu { "direct", O_DIRECT, C_IFLAG|C_OFLAG }, 454 1.39 manu { "directory", O_DIRECTORY, C_NONE }, 455 1.39 manu { "dsync", O_DSYNC, C_OFLAG }, 456 1.40 mrg { "excl", O_EXCL, C_OFLAG }, 457 1.39 manu { "exlock", O_EXLOCK, C_IFLAG|C_OFLAG }, 458 1.39 manu { "noctty", O_NOCTTY, C_IFLAG|C_OFLAG }, 459 1.39 manu { "nofollow", O_NOFOLLOW, C_IFLAG|C_OFLAG }, 460 1.39 manu { "nonblock", O_NONBLOCK, C_IFLAG|C_OFLAG }, 461 1.39 manu { "nosigpipe", O_NOSIGPIPE, C_IFLAG|C_OFLAG }, 462 1.39 manu { "rdonly", O_RDONLY, C_IFLAG }, 463 1.39 manu { "rdwr", O_RDWR, C_IFLAG }, 464 1.39 manu { "rsync", O_RSYNC, C_IFLAG }, 465 1.39 manu { "shlock", O_SHLOCK, C_IFLAG|C_OFLAG }, 466 1.39 manu { "sync", O_SYNC, C_IFLAG|C_OFLAG }, 467 1.40 mrg { "trunc", O_TRUNC, C_OFLAG }, 468 1.40 mrg { "wronly", O_WRONLY, C_OFLAG }, 469 1.39 manu }; 470 1.39 manu 471 1.39 manu static u_int 472 1.39 manu f_ioflag(char *arg, u_int flagtype) 473 1.39 manu { 474 1.39 manu u_int ioflag = 0; 475 1.41 rillig const struct ioflag *cp; 476 1.41 rillig struct ioflag tmp; 477 1.39 manu const char *flagstr = (flagtype == C_IFLAG) ? "iflag" : "oflag"; 478 1.39 manu 479 1.39 manu while (arg != NULL) { 480 1.39 manu tmp.name = strsep(&arg, ","); 481 1.39 manu if (!(cp = bsearch(&tmp, olist, 482 1.39 manu __arraycount(olist), sizeof(*olist), c_ioflag))) { 483 1.39 manu errx(EXIT_FAILURE, "unknown %s %s", flagstr, tmp.name); 484 1.39 manu /* NOTREACHED */ 485 1.39 manu } 486 1.39 manu 487 1.39 manu if ((cp->set & O_ACCMODE) && (flagtype == C_OFLAG)) { 488 1.39 manu warnx("rdonly, rdwr and wronly are ignored for oflag"); 489 1.39 manu continue; 490 1.39 manu } 491 1.39 manu 492 1.39 manu if ((cp->allowed & flagtype) == 0) { 493 1.39 manu warnx("%s set for %s but makes no sense", 494 1.39 manu cp->name, flagstr); 495 1.39 manu } 496 1.39 manu 497 1.39 manu ioflag |= cp->set; 498 1.39 manu } 499 1.39 manu 500 1.39 manu 501 1.39 manu return ioflag; 502 1.39 manu } 503 1.39 manu 504 1.39 manu static int 505 1.39 manu c_ioflag(const void *a, const void *b) 506 1.39 manu { 507 1.39 manu 508 1.39 manu return (strcmp(((const struct ioflag *)a)->name, 509 1.39 manu ((const struct ioflag *)b)->name)); 510 1.39 manu } 511 1.39 manu #endif /* NO_IOFLAG */ 512