]>
git.saurik.com Git - apple/shell_cmds.git/blob - sh/options.c
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
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.
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
35 static char sccsid
[] = "@(#)options.c 8.2 (Berkeley) 5/4/95";
38 #include <sys/cdefs.h>
39 __FBSDID("$FreeBSD: head/bin/sh/options.c 296577 2016-03-09 21:00:57Z jilles $");
46 #define DEFINE_OPTIONS
49 #include "nodes.h" /* for other header files */
61 #include "myhistedit.h"
64 char *arg0
; /* value of $0 */
65 struct shparam shellparam
; /* current positional parameters */
66 char **argptr
; /* argument list for builtin commands */
67 char *shoptarg
; /* set by nextopt (like getopt) */
68 char *nextopt_optptr
; /* used by nextopt */
70 char *minusc
; /* argument to -c option */
73 static void options(int);
74 static void minus_o(char *, int);
75 static void setoption(int, int);
76 static void setoptionbyindex(int, int);
77 static void setparam(int, char **);
78 static int getopts(char *, char *, char **, char ***, char **);
82 * Process the shell command line arguments.
86 procargs(int argc
, char **argv
)
94 for (i
= 0; i
< NOPTS
; i
++)
96 privileged
= (getuid() != geteuid() || getgid() != getegid());
98 if (*argptr
== NULL
&& minusc
== NULL
)
100 if (iflag
!= 0 && sflag
== 1 && isatty(0) && isatty(1)) {
107 for (i
= 0; i
< NOPTS
; i
++)
111 if (sflag
== 0 && minusc
== NULL
) {
112 scriptname
= *argptr
++;
113 setinputfile(scriptname
, 0);
114 commandname
= arg0
= scriptname
;
116 /* POSIX 1003.2: first arg after -c cmd is $0, remainder $1... */
117 if (argptr
&& minusc
&& *argptr
)
120 shellparam
.p
= argptr
;
121 shellparam
.reset
= 1;
122 /* assert(shellparam.malloc == 0 && shellparam.nparam == 0); */
134 setinteractive(iflag
);
142 * Process shell options. The global variable argptr contains a pointer
143 * to the argument list; we advance it past the options.
155 while ((p
= *argptr
) != NULL
) {
157 if ((c
= *p
++) == '-') {
159 /* A "-" or "--" terminates options */
162 if (p
[0] == '-' && p
[1] == '\0')
165 * For the benefit of `#!' lines in shell scripts,
166 * treat a string of '-- *#.*' the same as '--'.
167 * This is needed so that a script starting with:
168 * #!/bin/sh -- # -*- perl -*-
169 * will continue to work after a change is made to
170 * kern/imgact_shell.c to NOT token-ize the options
171 * specified on a '#!' line. A bit of a kludge,
172 * but that trick is recommended in documentation
173 * for some scripting languages, and we might as
174 * well continue to support it.
178 while (*kp
== ' ' || *kp
== '\t')
180 if (*kp
== '#' || *kp
== '\0')
183 } else if (c
== '+') {
189 while ((c
= *p
++) != '\0') {
190 if (c
== 'c' && cmdline
) {
192 #ifdef NOHACK /* removing this code allows sh -ce 'foo' for compat */
196 if (q
== NULL
|| minusc
!= NULL
)
197 error("Bad -c option");
202 } else if (c
== 'o') {
203 minus_o(*argptr
, val
);
212 /* When processing `set', a single "-" means turn off -x and -v */
220 * When processing `set', a "--" means the remaining arguments
221 * replace the positional parameters in the active shell. If
222 * there are no remaining options, then all the positional
223 * parameters are cleared (equivalent to doing ``shift $#'').
233 * At this point we are processing options given to 'sh' on a command
234 * line. If an end-of-options marker ("-" or "--") is followed by an
235 * arg of "#", then skip over all remaining arguments. Some scripting
236 * languages (e.g.: perl) document that /bin/sh will implement this
237 * behavior, and they recommend that users take advantage of it to
238 * solve certain issues that can come up when writing a perl script.
239 * Yes, this feature is in /bin/sh to help users write perl scripts.
242 if (p
!= NULL
&& p
[0] == '#' && p
[1] == '\0') {
243 while (*argptr
!= NULL
)
245 /* We need to keep the final argument */
251 minus_o(char *name
, int val
)
254 const unsigned char *on
;
259 /* "Pretty" output. */
260 out1str("Current option settings\n");
261 for (i
= 0, on
= optname
; i
< NOPTS
; i
++, on
+= *on
+ 1)
262 out1fmt("%-16.*s%s\n", *on
, on
+ 1,
263 optval
[i
] ? "on" : "off");
265 /* Output suitable for re-input to shell. */
266 for (i
= 0, on
= optname
; i
< NOPTS
; i
++, on
+= *on
+ 1)
267 out1fmt("%s %co %.*s%s",
268 i
% 6 == 0 ? "set" : "",
269 optval
[i
] ? '-' : '+',
271 i
% 6 == 5 || i
== NOPTS
- 1 ? "\n" : "");
275 for (i
= 0, on
= optname
; i
< NOPTS
; i
++, on
+= *on
+ 1)
276 if (*on
== len
&& memcmp(on
+ 1, name
, len
) == 0) {
277 setoptionbyindex(i
, val
);
280 error("Illegal option -o %s", name
);
286 setoptionbyindex(int idx
, int val
)
288 if (&optval
[idx
] == &privileged
&& !val
&& privileged
) {
289 if (setgid(getgid()) == -1)
291 if (setuid(getuid()) == -1)
296 /* #%$ hack for ksh semantics */
297 if (&optval
[idx
] == &Vflag
)
299 else if (&optval
[idx
] == &Eflag
)
305 setoption(int flag
, int val
)
309 for (i
= 0; i
< NSHORTOPTS
; i
++)
310 if (optletter
[i
] == flag
) {
311 setoptionbyindex(i
, val
);
314 error("Illegal option -%c", flag
);
319 * Set the shell parameters.
323 setparam(int argc
, char **argv
)
328 ap
= newparam
= ckmalloc((argc
+ 1) * sizeof *ap
);
330 *ap
++ = savestr(*argv
++);
333 freeparam(&shellparam
);
334 shellparam
.malloc
= 1;
335 shellparam
.nparam
= argc
;
336 shellparam
.p
= newparam
;
337 shellparam
.optp
= NULL
;
338 shellparam
.reset
= 1;
339 shellparam
.optnext
= NULL
;
344 * Free the list of positional parameters.
348 freeparam(struct shparam
*param
)
353 for (ap
= param
->p
; *ap
; ap
++)
358 for (ap
= param
->optp
; *ap
; ap
++)
367 * The shift builtin command.
371 shiftcmd(int argc
, char **argv
)
378 if (n
> shellparam
.nparam
)
381 shellparam
.nparam
-= n
;
382 if (shellparam
.malloc
)
383 for (i
= 0; i
< n
; i
++)
384 ckfree(shellparam
.p
[i
]);
385 memmove(shellparam
.p
, shellparam
.p
+ n
,
386 (shellparam
.nparam
+ 1) * sizeof(shellparam
.p
[0]));
387 shellparam
.reset
= 1;
395 * The set command builtin.
399 setcmd(int argc
, char **argv
)
402 return showvarscmd(argc
, argv
);
406 if (*argptr
!= NULL
) {
407 setparam(argc
- (argptr
- argv
), argptr
);
415 getoptsreset(const char *value
)
417 while (*value
== '0')
419 if (strcmp(value
, "1") == 0)
420 shellparam
.reset
= 1;
424 * The getopts builtin. Shellparam.optnext points to the next argument
425 * to be processed. Shellparam.optptr points to the next character to
426 * be processed in the current argument. If shellparam.optnext is NULL,
427 * then it's the first time getopts has been called.
431 getoptscmd(int argc
, char **argv
)
433 char **optbase
= NULL
, **ap
;
437 error("usage: getopts optstring var [arg]");
439 if (shellparam
.reset
== 1) {
441 if (shellparam
.optp
) {
442 for (ap
= shellparam
.optp
; *ap
; ap
++)
444 ckfree(shellparam
.optp
);
445 shellparam
.optp
= NULL
;
448 shellparam
.optp
= ckmalloc((argc
- 2) * sizeof *ap
);
449 memset(shellparam
.optp
, '\0', (argc
- 2) * sizeof *ap
);
450 for (i
= 0; i
< argc
- 3; i
++)
451 shellparam
.optp
[i
] = savestr(argv
[i
+ 3]);
454 optbase
= argc
== 3 ? shellparam
.p
: shellparam
.optp
;
455 shellparam
.optnext
= optbase
;
456 shellparam
.optptr
= NULL
;
457 shellparam
.reset
= 0;
459 optbase
= shellparam
.optp
? shellparam
.optp
: shellparam
.p
;
461 return getopts(argv
[1], argv
[2], optbase
, &shellparam
.optnext
,
466 getopts(char *optstr
, char *optvar
, char **optfirst
, char ***optnext
,
475 const char *newoptarg
= NULL
;
477 if ((p
= *optptr
) == NULL
|| *p
== '\0') {
478 /* Current word is done, advance */
479 if (*optnext
== NULL
)
482 if (p
== NULL
|| *p
!= '-' || *++p
== '\0') {
484 ind
= *optnext
- optfirst
+ 1;
491 if (p
[0] == '-' && p
[1] == '\0') /* check for "--" */
496 for (q
= optstr
; *q
!= c
; ) {
498 if (optstr
[0] == ':') {
504 out2fmt_flush("Illegal option -%c\n", c
);
513 if (*p
== '\0' && (p
= **optnext
) == NULL
) {
514 if (optstr
[0] == ':') {
521 out2fmt_flush("No arg for -%c option\n", c
);
534 if (*optnext
!= NULL
)
535 ind
= *optnext
- optfirst
+ 1;
537 if (newoptarg
!= NULL
)
538 err
|= setvarsafe("OPTARG", newoptarg
, 0);
541 err
|= unsetvar("OPTARG");
544 fmtstr(s
, sizeof(s
), "%d", ind
);
545 err
|= setvarsafe("OPTIND", s
, VNOFUNC
);
548 err
|= setvarsafe(optvar
, s
, 0);
559 * Standard option processing (a la getopt) for builtin routines. The
560 * only argument that is passed to nextopt is the option string; the
561 * other arguments are unnecessary. It return the character, or '\0' on
566 nextopt(const char *optstring
)
572 if ((p
= nextopt_optptr
) == NULL
|| *p
== '\0') {
574 if (p
== NULL
|| *p
!= '-' || *++p
== '\0')
577 if (p
[0] == '-' && p
[1] == '\0') /* check for "--" */
581 for (q
= optstring
; *q
!= c
; ) {
583 error("Illegal option -%c", c
);
588 if (*p
== '\0' && (p
= *argptr
++) == NULL
)
589 error("No arg for -%c option", c
);