1 /*- 2 * Copyright (c) 1991, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Kenneth Almquist. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 4. Neither the name of the University nor the names of its contributors 17 * may be used to endorse or promote products derived from this software 18 * without specific prior written permission. 19 * 20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 30 * SUCH DAMAGE. 31 */ 32 33 #ifndef lint 34 #if 0 35 static char sccsid[] = "@(#)options.c 8.2 (Berkeley) 5/4/95"; 36 #endif 37 #endif /* not lint */ 38 #include <sys/cdefs.h> 39 __FBSDID("$FreeBSD$"); 40 41 #include <signal.h> 42 #include <unistd.h> 43 #include <stdlib.h> 44 45 #include "shell.h" 46 #define DEFINE_OPTIONS 47 #include "options.h" 48 #undef DEFINE_OPTIONS 49 #include "nodes.h" /* for other header files */ 50 #include "eval.h" 51 #include "jobs.h" 52 #include "input.h" 53 #include "output.h" 54 #include "trap.h" 55 #include "var.h" 56 #include "memalloc.h" 57 #include "error.h" 58 #include "mystring.h" 59 #ifndef NO_HISTORY 60 #include "myhistedit.h" 61 #endif 62 63 char *arg0; /* value of $0 */ 64 struct shparam shellparam; /* current positional parameters */ 65 char **argptr; /* argument list for builtin commands */ 66 char *shoptarg; /* set by nextopt (like getopt) */ 67 char *optptr; /* used by nextopt */ 68 69 char *minusc; /* argument to -c option */ 70 71 72 STATIC void options(int); 73 STATIC void minus_o(char *, int); 74 STATIC void setoption(int, int); 75 STATIC int getopts(char *, char *, char **, char ***, char **); 76 77 78 /* 79 * Process the shell command line arguments. 80 */ 81 82 void 83 procargs(int argc, char **argv) 84 { 85 int i; 86 87 argptr = argv; 88 if (argc > 0) 89 argptr++; 90 for (i = 0; i < NOPTS; i++) 91 optlist[i].val = 2; 92 privileged = (getuid() != geteuid() || getgid() != getegid()); 93 options(1); 94 if (*argptr == NULL && minusc == NULL) 95 sflag = 1; 96 if (iflag == 2 && sflag == 1 && isatty(0) && isatty(1)) 97 iflag = 1; 98 if (mflag == 2) 99 mflag = iflag; 100 for (i = 0; i < NOPTS; i++) 101 if (optlist[i].val == 2) 102 optlist[i].val = 0; 103 arg0 = argv[0]; 104 if (sflag == 0 && minusc == NULL) { 105 commandname = arg0 = *argptr++; 106 setinputfile(commandname, 0); 107 } 108 /* POSIX 1003.2: first arg after -c cmd is $0, remainder $1... */ 109 if (argptr && minusc && *argptr) 110 arg0 = *argptr++; 111 112 shellparam.p = argptr; 113 shellparam.reset = 1; 114 /* assert(shellparam.malloc == 0 && shellparam.nparam == 0); */ 115 while (*argptr) { 116 shellparam.nparam++; 117 argptr++; 118 } 119 optschanged(); 120 } 121 122 123 void 124 optschanged(void) 125 { 126 setinteractive(iflag); 127 #ifndef NO_HISTORY 128 histedit(); 129 #endif 130 setjobctl(mflag); 131 } 132 133 /* 134 * Process shell options. The global variable argptr contains a pointer 135 * to the argument list; we advance it past the options. 136 */ 137 138 STATIC void 139 options(int cmdline) 140 { 141 char *kp, *p; 142 int val; 143 int c; 144 145 if (cmdline) 146 minusc = NULL; 147 while ((p = *argptr) != NULL) { 148 argptr++; 149 if ((c = *p++) == '-') { 150 val = 1; 151 /* A "-" or "--" terminates options */ 152 if (p[0] == '\0') 153 goto end_options1; 154 if (p[0] == '-' && p[1] == '\0') 155 goto end_options2; 156 /** 157 * For the benefit of `#!' lines in shell scripts, 158 * treat a string of '-- *#.*' the same as '--'. 159 * This is needed so that a script starting with: 160 * #!/bin/sh -- # -*- perl -*- 161 * will continue to work after a change is made to 162 * kern/imgact_shell.c to NOT token-ize the options 163 * specified on a '#!' line. A bit of a kludge, 164 * but that trick is recommended in documentation 165 * for some scripting languages, and we might as 166 * well continue to support it. 167 */ 168 if (p[0] == '-') { 169 kp = p + 1; 170 while (*kp == ' ' || *kp == '\t') 171 kp++; 172 if (*kp == '#' || *kp == '\0') 173 goto end_options2; 174 } 175 } else if (c == '+') { 176 val = 0; 177 } else { 178 argptr--; 179 break; 180 } 181 while ((c = *p++) != '\0') { 182 if (c == 'c' && cmdline) { 183 char *q; 184 #ifdef NOHACK /* removing this code allows sh -ce 'foo' for compat */ 185 if (*p == '\0') 186 #endif 187 q = *argptr++; 188 if (q == NULL || minusc != NULL) 189 error("Bad -c option"); 190 minusc = q; 191 #ifdef NOHACK 192 break; 193 #endif 194 } else if (c == 'o') { 195 minus_o(*argptr, val); 196 if (*argptr) 197 argptr++; 198 } else { 199 if (c == 'p' && !val && privileged) { 200 (void) setuid(getuid()); 201 (void) setgid(getgid()); 202 } 203 setoption(c, val); 204 } 205 } 206 } 207 return; 208 209 /* When processing `set', a single "-" means turn off -x and -v */ 210 end_options1: 211 if (!cmdline) { 212 xflag = vflag = 0; 213 return; 214 } 215 216 /* 217 * When processing `set', a "--" means the remaining arguments 218 * replace the positional parameters in the active shell. If 219 * there are no remaining options, then all the positional 220 * parameters are cleared (equivalent to doing ``shift $#''). 221 */ 222 end_options2: 223 if (!cmdline) { 224 if (*argptr == NULL) 225 setparam(argptr); 226 return; 227 } 228 229 /* 230 * At this point we are processing options given to 'sh' on a command 231 * line. If an end-of-options marker ("-" or "--") is followed by an 232 * arg of "#", then skip over all remaining arguments. Some scripting 233 * languages (e.g.: perl) document that /bin/sh will implement this 234 * behavior, and they recommend that users take advantage of it to 235 * solve certain issues that can come up when writing a perl script. 236 * Yes, this feature is in /bin/sh to help users write perl scripts. 237 */ 238 p = *argptr; 239 if (p != NULL && p[0] == '#' && p[1] == '\0') { 240 while (*argptr != NULL) 241 argptr++; 242 /* We need to keep the final argument */ 243 argptr--; 244 } 245 } 246 247 STATIC void 248 minus_o(char *name, int val) 249 { 250 int doneset, i; 251 252 if (name == NULL) { 253 if (val) { 254 /* "Pretty" output. */ 255 out1str("Current option settings\n"); 256 for (i = 0; i < NOPTS; i++) 257 out1fmt("%-16s%s\n", optlist[i].name, 258 optlist[i].val ? "on" : "off"); 259 } else { 260 /* Output suitable for re-input to shell. */ 261 for (doneset = i = 0; i < NOPTS; i++) 262 if (optlist[i].val) { 263 if (!doneset) { 264 out1str("set"); 265 doneset = 1; 266 } 267 out1fmt(" -o %s", optlist[i].name); 268 } 269 if (doneset) 270 out1c('\n'); 271 } 272 } else { 273 for (i = 0; i < NOPTS; i++) 274 if (equal(name, optlist[i].name)) { 275 if (!val && privileged && equal(name, "privileged")) { 276 (void) setuid(getuid()); 277 (void) setgid(getgid()); 278 } 279 setoption(optlist[i].letter, val); 280 return; 281 } 282 error("Illegal option -o %s", name); 283 } 284 } 285 286 287 STATIC void 288 setoption(int flag, int val) 289 { 290 int i; 291 292 for (i = 0; i < NOPTS; i++) 293 if (optlist[i].letter == flag) { 294 optlist[i].val = val; 295 if (val) { 296 /* #%$ hack for ksh semantics */ 297 if (flag == 'V') 298 Eflag = 0; 299 else if (flag == 'E') 300 Vflag = 0; 301 } 302 return; 303 } 304 error("Illegal option -%c", flag); 305 } 306 307 308 309 #ifdef mkinit 310 INCLUDE "options.h" 311 312 SHELLPROC { 313 int i; 314 315 for (i = 0; i < NOPTS; i++) 316 optlist[i].val = 0; 317 optschanged(); 318 319 } 320 #endif 321 322 323 /* 324 * Set the shell parameters. 325 */ 326 327 void 328 setparam(char **argv) 329 { 330 char **newparam; 331 char **ap; 332 int nparam; 333 334 for (nparam = 0 ; argv[nparam] ; nparam++); 335 ap = newparam = ckmalloc((nparam + 1) * sizeof *ap); 336 while (*argv) { 337 *ap++ = savestr(*argv++); 338 } 339 *ap = NULL; 340 freeparam(&shellparam); 341 shellparam.malloc = 1; 342 shellparam.nparam = nparam; 343 shellparam.p = newparam; 344 shellparam.optnext = NULL; 345 } 346 347 348 /* 349 * Free the list of positional parameters. 350 */ 351 352 void 353 freeparam(struct shparam *param) 354 { 355 char **ap; 356 357 if (param->malloc) { 358 for (ap = param->p ; *ap ; ap++) 359 ckfree(*ap); 360 ckfree(param->p); 361 } 362 } 363 364 365 366 /* 367 * The shift builtin command. 368 */ 369 370 int 371 shiftcmd(int argc, char **argv) 372 { 373 int n; 374 char **ap1, **ap2; 375 376 n = 1; 377 if (argc > 1) 378 n = number(argv[1]); 379 if (n > shellparam.nparam) 380 error("can't shift that many"); 381 INTOFF; 382 shellparam.nparam -= n; 383 for (ap1 = shellparam.p ; --n >= 0 ; ap1++) { 384 if (shellparam.malloc) 385 ckfree(*ap1); 386 } 387 ap2 = shellparam.p; 388 while ((*ap2++ = *ap1++) != NULL); 389 shellparam.optnext = NULL; 390 INTON; 391 return 0; 392 } 393 394 395 396 /* 397 * The set command builtin. 398 */ 399 400 int 401 setcmd(int argc, char **argv) 402 { 403 if (argc == 1) 404 return showvarscmd(argc, argv); 405 INTOFF; 406 options(0); 407 optschanged(); 408 if (*argptr != NULL) { 409 setparam(argptr); 410 } 411 INTON; 412 return 0; 413 } 414 415 416 void 417 getoptsreset(const char *value) 418 { 419 if (number(value) == 1) { 420 shellparam.optnext = NULL; 421 shellparam.reset = 1; 422 } 423 } 424 425 /* 426 * The getopts builtin. Shellparam.optnext points to the next argument 427 * to be processed. Shellparam.optptr points to the next character to 428 * be processed in the current argument. If shellparam.optnext is NULL, 429 * then it's the first time getopts has been called. 430 */ 431 432 int 433 getoptscmd(int argc, char **argv) 434 { 435 char **optbase = NULL; 436 437 if (argc < 3) 438 error("usage: getopts optstring var [arg]"); 439 else if (argc == 3) 440 optbase = shellparam.p; 441 else 442 optbase = &argv[3]; 443 444 if (shellparam.reset == 1) { 445 shellparam.optnext = optbase; 446 shellparam.optptr = NULL; 447 shellparam.reset = 0; 448 } 449 450 return getopts(argv[1], argv[2], optbase, &shellparam.optnext, 451 &shellparam.optptr); 452 } 453 454 STATIC int 455 getopts(char *optstr, char *optvar, char **optfirst, char ***optnext, 456 char **optptr) 457 { 458 char *p, *q; 459 char c = '?'; 460 int done = 0; 461 int ind = 0; 462 int err = 0; 463 char s[10]; 464 465 if ((p = *optptr) == NULL || *p == '\0') { 466 /* Current word is done, advance */ 467 if (*optnext == NULL) 468 return 1; 469 p = **optnext; 470 if (p == NULL || *p != '-' || *++p == '\0') { 471 atend: 472 ind = *optnext - optfirst + 1; 473 *optnext = NULL; 474 p = NULL; 475 done = 1; 476 goto out; 477 } 478 (*optnext)++; 479 if (p[0] == '-' && p[1] == '\0') /* check for "--" */ 480 goto atend; 481 } 482 483 c = *p++; 484 for (q = optstr; *q != c; ) { 485 if (*q == '\0') { 486 if (optstr[0] == ':') { 487 s[0] = c; 488 s[1] = '\0'; 489 err |= setvarsafe("OPTARG", s, 0); 490 } 491 else { 492 out1fmt("Illegal option -%c\n", c); 493 (void) unsetvar("OPTARG"); 494 } 495 c = '?'; 496 goto bad; 497 } 498 if (*++q == ':') 499 q++; 500 } 501 502 if (*++q == ':') { 503 if (*p == '\0' && (p = **optnext) == NULL) { 504 if (optstr[0] == ':') { 505 s[0] = c; 506 s[1] = '\0'; 507 err |= setvarsafe("OPTARG", s, 0); 508 c = ':'; 509 } 510 else { 511 out1fmt("No arg for -%c option\n", c); 512 (void) unsetvar("OPTARG"); 513 c = '?'; 514 } 515 goto bad; 516 } 517 518 if (p == **optnext) 519 (*optnext)++; 520 setvarsafe("OPTARG", p, 0); 521 p = NULL; 522 } 523 else 524 setvarsafe("OPTARG", "", 0); 525 ind = *optnext - optfirst + 1; 526 goto out; 527 528 bad: 529 ind = 1; 530 *optnext = NULL; 531 p = NULL; 532 out: 533 *optptr = p; 534 fmtstr(s, sizeof(s), "%d", ind); 535 err |= setvarsafe("OPTIND", s, VNOFUNC); 536 s[0] = c; 537 s[1] = '\0'; 538 err |= setvarsafe(optvar, s, 0); 539 if (err) { 540 *optnext = NULL; 541 *optptr = NULL; 542 flushall(); 543 exraise(EXERROR); 544 } 545 return done; 546 } 547 548 /* 549 * XXX - should get rid of. have all builtins use getopt(3). the 550 * library getopt must have the BSD extension static variable "optreset" 551 * otherwise it can't be used within the shell safely. 552 * 553 * Standard option processing (a la getopt) for builtin routines. The 554 * only argument that is passed to nextopt is the option string; the 555 * other arguments are unnecessary. It return the character, or '\0' on 556 * end of input. 557 */ 558 559 int 560 nextopt(char *optstring) 561 { 562 char *p, *q; 563 char c; 564 565 if ((p = optptr) == NULL || *p == '\0') { 566 p = *argptr; 567 if (p == NULL || *p != '-' || *++p == '\0') 568 return '\0'; 569 argptr++; 570 if (p[0] == '-' && p[1] == '\0') /* check for "--" */ 571 return '\0'; 572 } 573 c = *p++; 574 for (q = optstring ; *q != c ; ) { 575 if (*q == '\0') 576 error("Illegal option -%c", c); 577 if (*++q == ':') 578 q++; 579 } 580 if (*++q == ':') { 581 if (*p == '\0' && (p = *argptr++) == NULL) 582 error("No arg for -%c option", c); 583 shoptarg = p; 584 p = NULL; 585 } 586 optptr = p; 587 return c; 588 } 589