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
34 static char const copyright
[] =
35 "@(#) Copyright (c) 1991, 1993\n\
36 The Regents of the University of California. All rights reserved.\n";
41 static char sccsid
[] = "@(#)main.c 8.6 (Berkeley) 5/28/95";
45 #include <sys/cdefs.h>
46 __FBSDID("$FreeBSD: src/bin/sh/main.c,v 1.26 2004/04/06 20:06:51 markm Exp $");
82 STATIC
void read_profile(char *);
83 STATIC
char *find_dot_file(char *);
86 * Main routine. We initialize things, parse the arguments, execute
87 * profiles if we're a login shell, and then call cmdloop to execute
88 * commands. The setjmp call sets up the location to jump to when an
89 * exception occurs. When an exception occurs the variable "state"
90 * is used to figure out how far we had gotten.
94 main(int argc
, char *argv
[])
97 struct stackmark smark
;
101 (void) setlocale(LC_ALL
, "");
103 if (setjmp(jmploc
.loc
)) {
105 * When a shell procedure is executed, we raise the
106 * exception EXSHELLPROC to clean up before executing
107 * the shell procedure.
118 exitstatus
= exerrno
;
129 if (exception
!= EXSHELLPROC
) {
130 if (state
== 0 || iflag
== 0 || ! rootshell
)
131 exitshell(exitstatus
);
134 if (exception
== EXINT
) {
138 popstackmark(&smark
);
139 FORCEINTON
; /* enable interrupts */
152 trputs("Shell args: "); trargs(argv
);
157 setstackmark(&smark
);
158 procargs(argc
, argv
);
159 if (getpwd() == NULL
&& iflag
)
160 out2str("sh: cannot determine working directory\n");
161 if (argv
[0] && argv
[0][0] == '-') {
163 read_profile("/etc/profile");
167 read_profile(".profile");
169 read_profile("/etc/suid_profile");
173 if (!privileged
&& iflag
) {
174 if ((shinit
= lookupvar("ENV")) != NULL
&& *shinit
!= '\0') {
176 read_profile(shinit
);
184 if (sflag
|| minusc
== NULL
) {
185 state4
: /* XXX ??? - why isn't this before the "if" statement */
188 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
);
220 /* showtree(n); DEBUG */
222 if (!top
|| numeof
>= 50)
224 if (!stoppedjobs()) {
227 out2str("\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
);
237 if (evalskip
== SKIPFILE
) {
242 popstackmark(&smark
);
248 * Read /etc/profile or .profile. Return on error.
252 read_profile(char *name
)
257 if ((fd
= open(name
, O_RDONLY
)) >= 0)
269 * Read a file containing shell functions.
273 readcmdfile(char *name
)
278 if ((fd
= open(name
, O_RDONLY
)) >= 0)
281 error("Can't open %s: %s", name
, strerror(errno
));
290 * Take commands from a file. To be compatible we should do a path
291 * search for the file, which is necessary to find sub-commands.
296 find_dot_file(char *basename
)
298 static char localname
[FILENAME_MAX
+1];
300 char *path
= pathval();
303 /* don't try this for absolute or relative paths */
304 if( strchr(basename
, '/'))
307 while ((fullname
= padvance(&path
, basename
)) != NULL
) {
308 strcpy(localname
, fullname
);
310 if ((stat(fullname
, &statb
) == 0) && S_ISREG(statb
.st_mode
))
317 dotcmd(int argc
, char **argv
)
322 for (sp
= cmdenviron
; sp
; sp
= sp
->next
)
323 setvareq(savestr(sp
->text
), VSTRFIXED
|VTEXTFIXED
);
325 if (argc
>= 2) { /* That's what SVR2 does */
326 char *fullname
= find_dot_file(argv
[1]);
328 setinputfile(fullname
, 1);
329 commandname
= fullname
;
338 exitcmd(int argc
, char **argv
)
340 extern int oexitstatus
;
345 exitstatus
= number(argv
[1]);
347 exitstatus
= oexitstatus
;
348 exitshell(exitstatus
);
354 * $PchId: main.c,v 1.5 2006/05/22 12:03:02 philip Exp $