Home | History | Annotate | Line # | Download | only in sh
main.c revision 1.9
      1  1.1  cgd /*-
      2  1.9  jtc  * Copyright (c) 1991, 1993
      3  1.9  jtc  *	The Regents of the University of California.  All rights reserved.
      4  1.1  cgd  *
      5  1.1  cgd  * This code is derived from software contributed to Berkeley by
      6  1.1  cgd  * Kenneth Almquist.
      7  1.1  cgd  *
      8  1.1  cgd  * Redistribution and use in source and binary forms, with or without
      9  1.1  cgd  * modification, are permitted provided that the following conditions
     10  1.1  cgd  * are met:
     11  1.1  cgd  * 1. Redistributions of source code must retain the above copyright
     12  1.1  cgd  *    notice, this list of conditions and the following disclaimer.
     13  1.1  cgd  * 2. Redistributions in binary form must reproduce the above copyright
     14  1.1  cgd  *    notice, this list of conditions and the following disclaimer in the
     15  1.1  cgd  *    documentation and/or other materials provided with the distribution.
     16  1.1  cgd  * 3. All advertising materials mentioning features or use of this software
     17  1.1  cgd  *    must display the following acknowledgement:
     18  1.1  cgd  *	This product includes software developed by the University of
     19  1.1  cgd  *	California, Berkeley and its contributors.
     20  1.1  cgd  * 4. Neither the name of the University nor the names of its contributors
     21  1.1  cgd  *    may be used to endorse or promote products derived from this software
     22  1.1  cgd  *    without specific prior written permission.
     23  1.1  cgd  *
     24  1.1  cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     25  1.1  cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     26  1.1  cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27  1.1  cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     28  1.1  cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     29  1.1  cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     30  1.1  cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31  1.1  cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32  1.1  cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33  1.1  cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34  1.1  cgd  * SUCH DAMAGE.
     35  1.1  cgd  */
     36  1.1  cgd 
     37  1.1  cgd #ifndef lint
     38  1.9  jtc static char copyright[] =
     39  1.9  jtc "@(#) Copyright (c) 1991, 1993\n\
     40  1.9  jtc 	The Regents of the University of California.  All rights reserved.\n";
     41  1.1  cgd #endif /* not lint */
     42  1.1  cgd 
     43  1.1  cgd #ifndef lint
     44  1.9  jtc static char sccsid[] = "@(#)main.c	8.1 (Berkeley) 5/31/93";
     45  1.1  cgd #endif /* not lint */
     46  1.1  cgd 
     47  1.1  cgd #include <signal.h>
     48  1.1  cgd #include <fcntl.h>
     49  1.1  cgd #include "shell.h"
     50  1.1  cgd #include "main.h"
     51  1.1  cgd #include "mail.h"
     52  1.1  cgd #include "options.h"
     53  1.1  cgd #include "output.h"
     54  1.1  cgd #include "parser.h"
     55  1.1  cgd #include "nodes.h"
     56  1.1  cgd #include "eval.h"
     57  1.1  cgd #include "jobs.h"
     58  1.1  cgd #include "input.h"
     59  1.1  cgd #include "trap.h"
     60  1.1  cgd #include "var.h"
     61  1.1  cgd #include "memalloc.h"
     62  1.1  cgd #include "error.h"
     63  1.1  cgd #include "init.h"
     64  1.1  cgd #include "mystring.h"
     65  1.1  cgd 
     66  1.1  cgd #define PROFILE 0
     67  1.1  cgd 
     68  1.1  cgd int rootpid;
     69  1.1  cgd int rootshell;
     70  1.1  cgd STATIC union node *curcmd;
     71  1.1  cgd STATIC union node *prevcmd;
     72  1.1  cgd extern int errno;
     73  1.1  cgd #if PROFILE
     74  1.1  cgd short profile_buf[16384];
     75  1.1  cgd extern int etext();
     76  1.1  cgd #endif
     77  1.1  cgd 
     78  1.1  cgd #ifdef __STDC__
     79  1.1  cgd STATIC void read_profile(char *);
     80  1.1  cgd char *getenv(char *);
     81  1.1  cgd #else
     82  1.1  cgd STATIC void read_profile();
     83  1.1  cgd char *getenv();
     84  1.1  cgd #endif
     85  1.1  cgd 
     86  1.1  cgd 
     87  1.1  cgd /*
     88  1.1  cgd  * Main routine.  We initialize things, parse the arguments, execute
     89  1.1  cgd  * profiles if we're a login shell, and then call cmdloop to execute
     90  1.1  cgd  * commands.  The setjmp call sets up the location to jump to when an
     91  1.1  cgd  * exception occurs.  When an exception occurs the variable "state"
     92  1.1  cgd  * is used to figure out how far we had gotten.
     93  1.1  cgd  */
     94  1.1  cgd 
     95  1.1  cgd main(argc, argv)  char **argv; {
     96  1.1  cgd 	struct jmploc jmploc;
     97  1.1  cgd 	struct stackmark smark;
     98  1.1  cgd 	volatile int state;
     99  1.1  cgd 	char *shinit;
    100  1.1  cgd 
    101  1.1  cgd #if PROFILE
    102  1.1  cgd 	monitor(4, etext, profile_buf, sizeof profile_buf, 50);
    103  1.1  cgd #endif
    104  1.1  cgd 	state = 0;
    105  1.1  cgd 	if (setjmp(jmploc.loc)) {
    106  1.1  cgd 		/*
    107  1.1  cgd 		 * When a shell procedure is executed, we raise the
    108  1.1  cgd 		 * exception EXSHELLPROC to clean up before executing
    109  1.1  cgd 		 * the shell procedure.
    110  1.1  cgd 		 */
    111  1.1  cgd 		if (exception == EXSHELLPROC) {
    112  1.1  cgd 			rootpid = getpid();
    113  1.1  cgd 			rootshell = 1;
    114  1.1  cgd 			minusc = NULL;
    115  1.1  cgd 			state = 3;
    116  1.1  cgd 		} else if (state == 0 || iflag == 0 || ! rootshell)
    117  1.1  cgd 			exitshell(2);
    118  1.1  cgd 		reset();
    119  1.9  jtc 		if (exception == EXINT
    120  1.1  cgd #if ATTY
    121  1.9  jtc 		 && (! attyset() || equal(termval(), "emacs"))
    122  1.1  cgd #endif
    123  1.9  jtc 		 ) {
    124  1.1  cgd 			out2c('\n');
    125  1.1  cgd 			flushout(&errout);
    126  1.1  cgd 		}
    127  1.1  cgd 		popstackmark(&smark);
    128  1.1  cgd 		FORCEINTON;				/* enable interrupts */
    129  1.1  cgd 		if (state == 1)
    130  1.1  cgd 			goto state1;
    131  1.1  cgd 		else if (state == 2)
    132  1.1  cgd 			goto state2;
    133  1.9  jtc 		else if (state == 3)
    134  1.9  jtc 			goto state3;
    135  1.1  cgd 		else
    136  1.9  jtc 			goto state4;
    137  1.1  cgd 	}
    138  1.1  cgd 	handler = &jmploc;
    139  1.1  cgd #ifdef DEBUG
    140  1.1  cgd 	opentrace();
    141  1.1  cgd 	trputs("Shell args:  ");  trargs(argv);
    142  1.1  cgd #endif
    143  1.1  cgd 	rootpid = getpid();
    144  1.1  cgd 	rootshell = 1;
    145  1.1  cgd 	init();
    146  1.1  cgd 	setstackmark(&smark);
    147  1.1  cgd 	procargs(argc, argv);
    148  1.1  cgd 	if (argv[0] && argv[0][0] == '-') {
    149  1.1  cgd 		state = 1;
    150  1.1  cgd 		read_profile("/etc/profile");
    151  1.1  cgd state1:
    152  1.1  cgd 		state = 2;
    153  1.1  cgd 		read_profile(".profile");
    154  1.9  jtc 	}
    155  1.1  cgd state2:
    156  1.1  cgd 	state = 3;
    157  1.9  jtc 	if ((shinit = lookupvar("ENV")) != NULL &&
    158  1.9  jtc 	     *shinit != '\0') {
    159  1.9  jtc 		state = 3;
    160  1.9  jtc 		read_profile(shinit);
    161  1.9  jtc 	}
    162  1.9  jtc state3:
    163  1.9  jtc 	state = 4;
    164  1.1  cgd 	if (minusc) {
    165  1.1  cgd 		evalstring(minusc);
    166  1.1  cgd 	}
    167  1.1  cgd 	if (sflag || minusc == NULL) {
    168  1.9  jtc state4:	/* XXX ??? - why isn't this before the "if" statement */
    169  1.1  cgd 		cmdloop(1);
    170  1.1  cgd 	}
    171  1.1  cgd #if PROFILE
    172  1.1  cgd 	monitor(0);
    173  1.1  cgd #endif
    174  1.1  cgd 	exitshell(exitstatus);
    175  1.1  cgd }
    176  1.1  cgd 
    177  1.1  cgd 
    178  1.1  cgd /*
    179  1.1  cgd  * Read and execute commands.  "Top" is nonzero for the top level command
    180  1.1  cgd  * loop; it turns on prompting if the shell is interactive.
    181  1.1  cgd  */
    182  1.1  cgd 
    183  1.1  cgd void
    184  1.1  cgd cmdloop(top) {
    185  1.1  cgd 	union node *n;
    186  1.1  cgd 	struct stackmark smark;
    187  1.1  cgd 	int inter;
    188  1.9  jtc 	int numeof = 0;
    189  1.1  cgd 
    190  1.1  cgd 	TRACE(("cmdloop(%d) called\n", top));
    191  1.1  cgd 	setstackmark(&smark);
    192  1.1  cgd 	for (;;) {
    193  1.1  cgd 		if (pendingsigs)
    194  1.1  cgd 			dotrap();
    195  1.1  cgd 		inter = 0;
    196  1.1  cgd 		if (iflag && top) {
    197  1.1  cgd 			inter++;
    198  1.1  cgd 			showjobs(1);
    199  1.1  cgd 			chkmail(0);
    200  1.1  cgd 			flushout(&output);
    201  1.1  cgd 		}
    202  1.1  cgd 		n = parsecmd(inter);
    203  1.9  jtc 		/* showtree(n); DEBUG */
    204  1.1  cgd 		if (n == NEOF) {
    205  1.9  jtc 			if (!top || numeof >= 50)
    206  1.1  cgd 				break;
    207  1.9  jtc 			if (!stoppedjobs()) {
    208  1.9  jtc 				if (!Iflag)
    209  1.9  jtc 					break;
    210  1.9  jtc 				out2str("\nUse \"exit\" to leave shell.\n");
    211  1.9  jtc 			}
    212  1.1  cgd 			numeof++;
    213  1.1  cgd 		} else if (n != NULL && nflag == 0) {
    214  1.9  jtc 			job_warning = (job_warning == 2) ? 1 : 0;
    215  1.9  jtc 			numeof = 0;
    216  1.1  cgd 			evaltree(n, 0);
    217  1.1  cgd 		}
    218  1.1  cgd 		popstackmark(&smark);
    219  1.1  cgd 	}
    220  1.1  cgd 	popstackmark(&smark);		/* unnecessary */
    221  1.1  cgd }
    222  1.1  cgd 
    223  1.1  cgd 
    224  1.1  cgd 
    225  1.1  cgd /*
    226  1.1  cgd  * Read /etc/profile or .profile.  Return on error.
    227  1.1  cgd  */
    228  1.1  cgd 
    229  1.1  cgd STATIC void
    230  1.1  cgd read_profile(name)
    231  1.1  cgd 	char *name;
    232  1.1  cgd 	{
    233  1.1  cgd 	int fd;
    234  1.1  cgd 
    235  1.1  cgd 	INTOFF;
    236  1.1  cgd 	if ((fd = open(name, O_RDONLY)) >= 0)
    237  1.1  cgd 		setinputfd(fd, 1);
    238  1.1  cgd 	INTON;
    239  1.1  cgd 	if (fd < 0)
    240  1.1  cgd 		return;
    241  1.1  cgd 	cmdloop(0);
    242  1.1  cgd 	popfile();
    243  1.1  cgd }
    244  1.1  cgd 
    245  1.1  cgd 
    246  1.1  cgd 
    247  1.1  cgd /*
    248  1.1  cgd  * Read a file containing shell functions.
    249  1.1  cgd  */
    250  1.1  cgd 
    251  1.1  cgd void
    252  1.1  cgd readcmdfile(name)
    253  1.1  cgd 	char *name;
    254  1.1  cgd 	{
    255  1.1  cgd 	int fd;
    256  1.1  cgd 
    257  1.1  cgd 	INTOFF;
    258  1.1  cgd 	if ((fd = open(name, O_RDONLY)) >= 0)
    259  1.1  cgd 		setinputfd(fd, 1);
    260  1.1  cgd 	else
    261  1.1  cgd 		error("Can't open %s", name);
    262  1.1  cgd 	INTON;
    263  1.1  cgd 	cmdloop(0);
    264  1.1  cgd 	popfile();
    265  1.1  cgd }
    266  1.1  cgd 
    267  1.1  cgd 
    268  1.1  cgd 
    269  1.1  cgd /*
    270  1.1  cgd  * Take commands from a file.  To be compatable we should do a path
    271  1.9  jtc  * search for the file, but a path search doesn't make any sense.
    272  1.1  cgd  */
    273  1.1  cgd 
    274  1.1  cgd dotcmd(argc, argv)  char **argv; {
    275  1.1  cgd 	exitstatus = 0;
    276  1.1  cgd 	if (argc >= 2) {		/* That's what SVR2 does */
    277  1.9  jtc 		setinputfile(argv[1], 1);
    278  1.9  jtc 		commandname = argv[1];
    279  1.1  cgd 		cmdloop(0);
    280  1.1  cgd 		popfile();
    281  1.1  cgd 	}
    282  1.1  cgd 	return exitstatus;
    283  1.1  cgd }
    284  1.1  cgd 
    285  1.1  cgd 
    286  1.1  cgd exitcmd(argc, argv)  char **argv; {
    287  1.9  jtc 	if (stoppedjobs())
    288  1.9  jtc 		return;
    289  1.1  cgd 	if (argc > 1)
    290  1.1  cgd 		exitstatus = number(argv[1]);
    291  1.1  cgd 	exitshell(exitstatus);
    292  1.1  cgd }
    293  1.1  cgd 
    294  1.1  cgd 
    295  1.1  cgd #ifdef notdef
    296  1.1  cgd /*
    297  1.1  cgd  * Should never be called.
    298  1.1  cgd  */
    299  1.1  cgd 
    300  1.1  cgd void
    301  1.1  cgd exit(exitstatus) {
    302  1.1  cgd 	_exit(exitstatus);
    303  1.1  cgd }
    304  1.1  cgd #endif
    305