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 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * @(#) Copyright (c) 1991, 1993 The Regents of the University of California. All rights reserved.
37 * @(#)main.c 8.6 (Berkeley) 5/28/95
38 * $FreeBSD: src/bin/sh/main.c,v 1.29 2006/10/07 16:51:16 stefanf Exp $
39 * $DragonFly: src/bin/sh/main.c,v 1.8 2007/01/13 23:36:14 pavalos Exp $
74 STATIC
void read_profile(const char *);
75 STATIC
const char *find_dot_file(const char *);
77 extern int oexitstatus
;
80 * Main routine. We initialize things, parse the arguments, execute
81 * profiles if we're a login shell, and then call cmdloop to execute
82 * commands. The setjmp call sets up the location to jump to when an
83 * exception occurs. When an exception occurs the variable "state"
84 * is used to figure out how far we had gotten.
88 main(int argc
, char *argv
[])
91 struct stackmark smark
;
95 setlocale(LC_ALL
, "");
97 if (setjmp(jmploc
.loc
)) {
99 * When a shell procedure is executed, we raise the
100 * exception EXSHELLPROC to clean up before executing
101 * the shell procedure.
112 exitstatus
= exerrno
;
123 if (exception
!= EXSHELLPROC
) {
124 if (state
== 0 || iflag
== 0 || ! rootshell
)
125 exitshell(exitstatus
);
128 if (exception
== EXINT
) {
132 popstackmark(&smark
);
133 FORCEINTON
; /* enable interrupts */
146 trputs("Shell args: "); trargs(argv
);
151 setstackmark(&smark
);
152 procargs(argc
, argv
);
153 if (getpwd() == NULL
&& iflag
)
154 out2str("sh: cannot determine working directory\n");
155 if (getpwd() != NULL
)
156 setvar ("PWD", getpwd(), VEXPORT
);
157 if (argv
[0] && argv
[0][0] == '-') {
159 read_profile("/etc/profile");
163 read_profile(".profile");
165 read_profile("/etc/suid_profile");
169 if (!privileged
&& iflag
) {
170 if ((shinit
= lookupvar("ENV")) != NULL
&& *shinit
!= '\0') {
172 read_profile(shinit
);
180 if (sflag
|| minusc
== NULL
) {
181 state4
: /* XXX ??? - why isn't this before the "if" statement */
184 exitshell(exitstatus
);
191 * Read and execute commands. "Top" is nonzero for the top level command
192 * loop; it turns on prompting if the shell is interactive.
199 struct stackmark smark
;
203 TRACE(("cmdloop(%d) called\n", top
));
204 setstackmark(&smark
);
211 showjobs(1, SHOWJOBS_DEFAULT
);
216 /* showtree(n); DEBUG */
218 if (!top
|| numeof
>= 50)
220 if (!stoppedjobs()) {
223 out2str("\nUse \"exit\" to leave shell.\n");
226 } else if (n
!= NULL
&& nflag
== 0) {
227 job_warning
= (job_warning
== 2) ? 1 : 0;
231 popstackmark(&smark
);
232 setstackmark(&smark
);
233 if (evalskip
== SKIPFILE
) {
238 popstackmark(&smark
);
244 * Read /etc/profile or .profile. Return on error.
248 read_profile(const char *name
)
253 if ((fd
= open(name
, O_RDONLY
)) >= 0)
265 * Read a file containing shell functions.
269 readcmdfile(char *name
)
274 if ((fd
= open(name
, O_RDONLY
)) >= 0)
277 error("Can't open %s: %s", name
, strerror(errno
));
286 * Take commands from a file. To be compatible we should do a path
287 * search for the file, which is necessary to find sub-commands.
292 find_dot_file(const char *basename
)
294 static char localname
[FILENAME_MAX
+1];
296 const char *path
= pathval();
299 /* don't try this for absolute or relative paths */
300 if( strchr(basename
, '/'))
303 while ((fullname
= padvance(&path
, basename
)) != NULL
) {
304 strcpy(localname
, fullname
);
306 if ((stat(fullname
, &statb
) == 0) && S_ISREG(statb
.st_mode
))
313 dotcmd(int argc
, char **argv
)
316 const char *fullname
;
319 error("missing filename");
323 for (sp
= cmdenviron
; sp
; sp
= sp
->next
)
324 setvareq(savestr(sp
->text
), VSTRFIXED
|VTEXTFIXED
);
326 fullname
= find_dot_file(argv
[1]);
327 setinputfile(fullname
, 1);
328 commandname
= fullname
;
336 exitcmd(int argc
, char **argv
)
341 exitstatus
= number(argv
[1]);
343 exitstatus
= oexitstatus
;
344 exitshell(exitstatus
);