]>
git.saurik.com Git - apple/shell_cmds.git/blob - sh/main.c
2 * SPDX-License-Identifier: BSD-3-Clause
4 * Copyright (c) 1991, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 static char const copyright
[] =
37 "@(#) Copyright (c) 1991, 1993\n\
38 The Regents of the University of California. All rights reserved.\n";
43 static char sccsid
[] = "@(#)main.c 8.6 (Berkeley) 5/28/95";
46 #include <sys/cdefs.h>
47 __FBSDID("$FreeBSD: head/bin/sh/main.c 326025 2017-11-20 19:49:47Z pfg $");
81 struct jmploc main_handler
;
82 int localeisutf8
, initial_localeisutf8
;
84 static void reset(void);
85 static void cmdloop(int);
86 static void read_profile(const char *);
87 static char *find_dot_file(char *);
90 * Main routine. We initialize things, parse the arguments, execute
91 * profiles if we're a login shell, and then call cmdloop to execute
92 * commands. The setjmp call sets up the location to jump to when an
93 * exception occurs. When an exception occurs the variable "state"
94 * is used to figure out how far we had gotten.
98 main(int argc
, char *argv
[])
100 struct stackmark smark
, smark2
;
104 (void) setlocale(LC_ALL
, "");
107 if (setjmp(main_handler
.loc
)) {
110 exitstatus
= exerrno
;
121 if (state
== 0 || iflag
== 0 || ! rootshell
||
123 exitshell(exitstatus
);
125 if (exception
== EXINT
)
127 popstackmark(&smark
);
128 FORCEINTON
; /* enable interrupts */
138 handler
= &main_handler
;
141 trputs("Shell args: "); trargs(argv
);
147 setstackmark(&smark
);
148 setstackmark(&smark2
);
149 procargs(argc
, argv
);
154 if (argv
[0] && argv
[0][0] == '-') {
156 read_profile("/etc/profile");
160 read_profile("${HOME-}/.profile");
162 read_profile("/etc/suid_profile");
166 if (!privileged
&& iflag
) {
167 if ((shinit
= lookupvar("ENV")) != NULL
&& *shinit
!= '\0') {
169 read_profile(shinit
);
174 popstackmark(&smark2
);
176 evalstring(minusc
, sflag
? 0 : EV_EXIT
);
179 if (sflag
|| minusc
== NULL
) {
182 exitshell(exitstatus
);
195 * Read and execute commands. "Top" is nonzero for the top level command
196 * loop; it turns on prompting if the shell is interactive.
203 struct stackmark smark
;
207 TRACE(("cmdloop(%d) called\n", top
));
208 setstackmark(&smark
);
215 showjobs(1, SHOWJOBS_DEFAULT
);
220 /* showtree(n); DEBUG */
222 if (!top
|| numeof
>= 50)
224 if (!stoppedjobs()) {
227 out2fmt_flush("\nUse \"exit\" to leave shell.\n");
230 } else if (n
!= NULL
&& nflag
== 0) {
231 job_warning
= (job_warning
== 2) ? 1 : 0;
235 popstackmark(&smark
);
236 setstackmark(&smark
);
238 if (evalskip
== SKIPRETURN
)
243 popstackmark(&smark
);
249 * Read /etc/profile or .profile. Return on error.
253 read_profile(const char *name
)
256 const char *expandedname
;
258 expandedname
= expandstr(name
);
259 if (expandedname
== NULL
)
262 if ((fd
= open(expandedname
, O_RDONLY
| O_CLOEXEC
)) >= 0)
274 * Read a file containing shell functions.
278 readcmdfile(const char *name
)
280 setinputfile(name
, 1);
288 * Take commands from a file. To be compatible we should do a path
289 * search for the file, which is necessary to find sub-commands.
294 find_dot_file(char *basename
)
297 const char *path
= pathval();
300 /* don't try this for absolute or relative paths */
301 if( strchr(basename
, '/'))
304 while ((fullname
= padvance(&path
, basename
)) != NULL
) {
305 if ((stat(fullname
, &statb
) == 0) && S_ISREG(statb
.st_mode
)) {
307 * Don't bother freeing here, since it will
308 * be freed by the caller.
318 dotcmd(int argc
, char **argv
)
320 char *filename
, *fullname
;
323 error("missing filename");
328 * Because we have historically not supported any options,
329 * only treat "--" specially.
331 filename
= argc
> 2 && strcmp(argv
[1], "--") == 0 ? argv
[2] : argv
[1];
333 fullname
= find_dot_file(filename
);
334 setinputfile(fullname
, 1);
335 commandname
= fullname
;
343 exitcmd(int argc
, char **argv
)
348 exitshell(number(argv
[1]));
350 exitshell_savedstatus();