Home | History | Annotate | Line # | Download | only in csh
csh.c revision 1.22
      1  1.22   mycroft /*	$NetBSD: csh.c,v 1.22 1998/07/28 02:47:19 mycroft Exp $	*/
      2  1.12       cgd 
      3   1.1       cgd /*-
      4   1.7   mycroft  * Copyright (c) 1980, 1991, 1993
      5   1.7   mycroft  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8   1.1       cgd  * modification, are permitted provided that the following conditions
      9   1.1       cgd  * are met:
     10   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15   1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     16   1.1       cgd  *    must display the following acknowledgement:
     17   1.1       cgd  *	This product includes software developed by the University of
     18   1.1       cgd  *	California, Berkeley and its contributors.
     19   1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     20   1.1       cgd  *    may be used to endorse or promote products derived from this software
     21   1.1       cgd  *    without specific prior written permission.
     22   1.1       cgd  *
     23   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33   1.1       cgd  * SUCH DAMAGE.
     34   1.1       cgd  */
     35   1.1       cgd 
     36  1.17  christos #include <sys/cdefs.h>
     37   1.1       cgd #ifndef lint
     38  1.17  christos __COPYRIGHT("@(#) Copyright (c) 1980, 1991, 1993\n\
     39  1.17  christos 	The Regents of the University of California.  All rights reserved.\n");
     40   1.1       cgd #endif /* not lint */
     41   1.1       cgd 
     42   1.1       cgd #ifndef lint
     43  1.12       cgd #if 0
     44  1.12       cgd static char sccsid[] = "@(#)csh.c	8.2 (Berkeley) 10/12/93";
     45  1.12       cgd #else
     46  1.22   mycroft __RCSID("$NetBSD: csh.c,v 1.22 1998/07/28 02:47:19 mycroft Exp $");
     47  1.12       cgd #endif
     48   1.1       cgd #endif /* not lint */
     49   1.1       cgd 
     50   1.1       cgd #include <sys/types.h>
     51   1.1       cgd #include <sys/ioctl.h>
     52   1.1       cgd #include <sys/stat.h>
     53   1.1       cgd #include <fcntl.h>
     54   1.1       cgd #include <errno.h>
     55   1.1       cgd #include <pwd.h>
     56   1.1       cgd #include <stdlib.h>
     57   1.1       cgd #include <string.h>
     58  1.18    kleink #include <time.h>
     59   1.1       cgd #include <locale.h>
     60   1.1       cgd #include <unistd.h>
     61   1.7   mycroft #include <vis.h>
     62  1.19      fair #include <paths.h>	/* should this be included in pathnames.h instead? */
     63   1.1       cgd #if __STDC__
     64   1.1       cgd # include <stdarg.h>
     65   1.1       cgd #else
     66   1.1       cgd # include <varargs.h>
     67   1.1       cgd #endif
     68   1.1       cgd 
     69   1.1       cgd #include "csh.h"
     70   1.7   mycroft #include "proc.h"
     71   1.1       cgd #include "extern.h"
     72   1.1       cgd #include "pathnames.h"
     73   1.1       cgd 
     74   1.1       cgd /*
     75   1.1       cgd  * C Shell
     76   1.1       cgd  *
     77   1.1       cgd  * Bill Joy, UC Berkeley, California, USA
     78   1.1       cgd  * October 1978, May 1980
     79   1.1       cgd  *
     80   1.1       cgd  * Jim Kulp, IIASA, Laxenburg, Austria
     81   1.1       cgd  * April 1980
     82   1.1       cgd  *
     83   1.1       cgd  * Christos Zoulas, Cornell University
     84   1.1       cgd  * June, 1991
     85   1.1       cgd  */
     86   1.1       cgd 
     87   1.1       cgd Char   *dumphist[] = {STRhistory, STRmh, 0, 0};
     88   1.7   mycroft Char   *loadhist[] = {STRsource, STRmh, STRtildothist, 0};
     89   1.1       cgd 
     90   1.1       cgd int     nofile = 0;
     91   1.1       cgd bool    reenter = 0;
     92   1.1       cgd bool    nverbose = 0;
     93   1.1       cgd bool    nexececho = 0;
     94   1.1       cgd bool    quitit = 0;
     95   1.1       cgd bool    fast = 0;
     96   1.1       cgd bool    batch = 0;
     97   1.1       cgd bool    mflag = 0;
     98   1.1       cgd bool    prompt = 1;
     99   1.1       cgd bool    enterhist = 0;
    100   1.1       cgd 
    101   1.1       cgd extern char **environ;
    102   1.1       cgd 
    103   1.7   mycroft static int	readf __P((void *, char *, int));
    104   1.7   mycroft static fpos_t	seekf __P((void *, fpos_t, int));
    105   1.7   mycroft static int	writef __P((void *, const char *, int));
    106   1.7   mycroft static int	closef __P((void *));
    107   1.1       cgd static int	srccat __P((Char *, Char *));
    108   1.1       cgd static int	srcfile __P((char *, bool, bool));
    109   1.1       cgd static void	phup __P((int));
    110   1.1       cgd static void	srcunit __P((int, bool, bool));
    111   1.1       cgd static void	mailchk __P((void));
    112  1.19      fair #ifndef _PATH_DEFPATH
    113   1.1       cgd static Char   **defaultpath __P((void));
    114  1.19      fair #endif
    115  1.17  christos 
    116  1.17  christos int main __P((int, char **));
    117   1.1       cgd 
    118   1.1       cgd int
    119   1.1       cgd main(argc, argv)
    120   1.1       cgd     int     argc;
    121   1.1       cgd     char  **argv;
    122   1.1       cgd {
    123  1.16       tls     Char *cp;
    124  1.16       tls     char *tcp;
    125  1.20   mycroft     const char *ecp;
    126  1.16       tls     int f;
    127  1.16       tls     char **tempv;
    128  1.13   mycroft     struct sigaction oact;
    129  1.13   mycroft     sigset_t sigset;
    130   1.1       cgd 
    131   1.7   mycroft     cshin = stdin;
    132   1.7   mycroft     cshout = stdout;
    133   1.7   mycroft     csherr = stderr;
    134   1.1       cgd 
    135   1.1       cgd     settimes();			/* Immed. estab. timing base */
    136   1.1       cgd 
    137   1.1       cgd     /*
    138   1.1       cgd      * Initialize non constant strings
    139   1.1       cgd      */
    140   1.1       cgd #ifdef _PATH_BSHELL
    141   1.1       cgd     STR_BSHELL = SAVE(_PATH_BSHELL);
    142   1.1       cgd #endif
    143   1.1       cgd #ifdef _PATH_CSHELL
    144   1.1       cgd     STR_SHELLPATH = SAVE(_PATH_CSHELL);
    145   1.1       cgd #endif
    146   1.1       cgd     STR_environ = blk2short(environ);
    147   1.1       cgd     environ = short2blk(STR_environ);	/* So that we can free it */
    148   1.1       cgd     STR_WORD_CHARS = SAVE(WORD_CHARS);
    149   1.1       cgd 
    150   1.1       cgd     HIST = '!';
    151   1.1       cgd     HISTSUB = '^';
    152   1.1       cgd     word_chars = STR_WORD_CHARS;
    153   1.1       cgd 
    154   1.1       cgd     tempv = argv;
    155   1.1       cgd     if (eq(str2short(tempv[0]), STRaout))	/* A.out's are quittable */
    156   1.1       cgd 	quitit = 1;
    157   1.1       cgd     uid = getuid();
    158   1.1       cgd     gid = getgid();
    159   1.7   mycroft     euid = geteuid();
    160   1.7   mycroft     egid = getegid();
    161   1.1       cgd     /*
    162   1.1       cgd      * We are a login shell if: 1. we were invoked as -<something> and we had
    163   1.1       cgd      * no arguments 2. or we were invoked only with the -l flag
    164   1.1       cgd      */
    165   1.1       cgd     loginsh = (**tempv == '-' && argc == 1) ||
    166   1.1       cgd 	(argc == 2 && tempv[1][0] == '-' && tempv[1][1] == 'l' &&
    167   1.1       cgd 	 tempv[1][2] == '\0');
    168   1.1       cgd 
    169   1.1       cgd     if (loginsh && **tempv != '-') {
    170   1.1       cgd 	/*
    171   1.1       cgd 	 * Mangle the argv space
    172   1.1       cgd 	 */
    173   1.1       cgd 	tempv[1][0] = '\0';
    174   1.1       cgd 	tempv[1][1] = '\0';
    175   1.1       cgd 	tempv[1] = NULL;
    176   1.7   mycroft 	for (tcp = *tempv; *tcp++;)
    177   1.7   mycroft 	    continue;
    178   1.1       cgd 	for (tcp--; tcp >= *tempv; tcp--)
    179   1.1       cgd 	    tcp[1] = tcp[0];
    180   1.1       cgd 	*++tcp = '-';
    181   1.1       cgd 	argc--;
    182   1.1       cgd     }
    183   1.1       cgd     if (loginsh)
    184   1.1       cgd 	(void) time(&chktim);
    185   1.1       cgd 
    186   1.1       cgd     AsciiOnly = 1;
    187   1.1       cgd #ifdef NLS
    188   1.1       cgd     (void) setlocale(LC_ALL, "");
    189   1.1       cgd     {
    190   1.1       cgd 	int     k;
    191   1.1       cgd 
    192   1.7   mycroft 	for (k = 0200; k <= 0377 && !Isprint(k); k++)
    193   1.7   mycroft 	    continue;
    194   1.1       cgd 	AsciiOnly = k > 0377;
    195   1.1       cgd     }
    196   1.1       cgd #else
    197   1.1       cgd     AsciiOnly = getenv("LANG") == NULL && getenv("LC_CTYPE") == NULL;
    198   1.1       cgd #endif				/* NLS */
    199   1.1       cgd 
    200   1.1       cgd     /*
    201   1.1       cgd      * Move the descriptors to safe places. The variable didfds is 0 while we
    202   1.1       cgd      * have only FSH* to work with. When didfds is true, we have 0,1,2 and
    203   1.1       cgd      * prefer to use these.
    204   1.1       cgd      */
    205   1.1       cgd     initdesc();
    206   1.7   mycroft     /*
    207   1.7   mycroft      * XXX: This is to keep programs that use stdio happy.
    208   1.7   mycroft      *	    what we really want is freunopen() ....
    209   1.7   mycroft      *	    Closing cshin cshout and csherr (which are really stdin stdout
    210   1.7   mycroft      *	    and stderr at this point and then reopening them in the same order
    211   1.7   mycroft      *	    gives us again stdin == cshin stdout == cshout and stderr == csherr.
    212   1.7   mycroft      *	    If that was not the case builtins like printf that use stdio
    213   1.7   mycroft      *	    would break. But in any case we could fix that with memcpy and
    214   1.7   mycroft      *	    a bit of pointer manipulation...
    215   1.7   mycroft      *	    Fortunately this is not needed under the current implementation
    216   1.7   mycroft      *	    of stdio.
    217   1.7   mycroft      */
    218   1.7   mycroft     (void) fclose(cshin);
    219   1.7   mycroft     (void) fclose(cshout);
    220   1.7   mycroft     (void) fclose(csherr);
    221   1.7   mycroft     if (!(cshin  = funopen((void *) &SHIN,  readf, writef, seekf, closef)))
    222   1.7   mycroft 	exit(1);
    223   1.7   mycroft     if (!(cshout = funopen((void *) &SHOUT, readf, writef, seekf, closef)))
    224   1.7   mycroft 	exit(1);
    225   1.7   mycroft     if (!(csherr = funopen((void *) &SHERR, readf, writef, seekf, closef)))
    226   1.7   mycroft 	exit(1);
    227   1.7   mycroft     (void) setvbuf(cshin,  NULL, _IOLBF, 0);
    228   1.7   mycroft     (void) setvbuf(cshout, NULL, _IOLBF, 0);
    229   1.7   mycroft     (void) setvbuf(csherr, NULL, _IOLBF, 0);
    230   1.1       cgd 
    231   1.1       cgd     /*
    232   1.1       cgd      * Initialize the shell variables. ARGV and PROMPT are initialized later.
    233   1.1       cgd      * STATUS is also munged in several places. CHILD is munged when
    234   1.1       cgd      * forking/waiting
    235   1.1       cgd      */
    236   1.1       cgd     set(STRstatus, Strsave(STR0));
    237   1.1       cgd 
    238  1.20   mycroft     if ((ecp = getenv("HOME")) != NULL)
    239  1.20   mycroft 	cp = quote(SAVE(ecp));
    240   1.1       cgd     else
    241   1.1       cgd 	cp = NULL;
    242   1.1       cgd 
    243   1.1       cgd     if (cp == NULL)
    244   1.1       cgd 	fast = 1;		/* No home -> can't read scripts */
    245   1.1       cgd     else
    246   1.1       cgd 	set(STRhome, cp);
    247   1.1       cgd     dinit(cp);			/* dinit thinks that HOME == cwd in a login
    248   1.1       cgd 				 * shell */
    249   1.1       cgd     /*
    250   1.1       cgd      * Grab other useful things from the environment. Should we grab
    251   1.1       cgd      * everything??
    252   1.1       cgd      */
    253  1.20   mycroft     if ((ecp = getenv("LOGNAME")) != NULL ||
    254  1.20   mycroft 	(ecp = getenv("USER")) != NULL)
    255  1.20   mycroft 	set(STRuser, quote(SAVE(ecp)));
    256  1.20   mycroft     if ((ecp = getenv("TERM")) != NULL)
    257  1.20   mycroft 	set(STRterm, quote(SAVE(ecp)));
    258   1.1       cgd 
    259   1.1       cgd     /*
    260   1.1       cgd      * Re-initialize path if set in environment
    261   1.1       cgd      */
    262  1.20   mycroft     if ((ecp = getenv("PATH")) == NULL) {
    263  1.19      fair #ifdef _PATH_DEFPATH
    264  1.19      fair 	importpath(SAVE(_PATH_DEFPATH));
    265  1.19      fair #else
    266  1.15  christos 	setq(STRpath, defaultpath(), &shvhed);
    267  1.19      fair #endif
    268  1.19      fair     } else {
    269  1.20   mycroft 	importpath(SAVE(ecp));
    270  1.19      fair     }
    271   1.1       cgd 
    272   1.1       cgd     set(STRshell, Strsave(STR_SHELLPATH));
    273   1.1       cgd 
    274   1.1       cgd     doldol = putn((int) getpid());	/* For $$ */
    275   1.1       cgd     shtemp = Strspl(STRtmpsh, doldol);	/* For << */
    276   1.1       cgd 
    277   1.1       cgd     /*
    278   1.1       cgd      * Record the interrupt states from the parent process. If the parent is
    279   1.1       cgd      * non-interruptible our hand must be forced or we (and our children) won't
    280   1.1       cgd      * be either. Our children inherit termination from our parent. We catch it
    281   1.1       cgd      * only if we are the login shell.
    282   1.1       cgd      */
    283   1.1       cgd     /* parents interruptibility */
    284  1.13   mycroft     (void) sigaction(SIGINT, NULL, &oact);
    285  1.13   mycroft     parintr = oact.sa_handler;
    286  1.13   mycroft     (void) sigaction(SIGTERM, NULL, &oact);
    287  1.13   mycroft     parterm = oact.sa_handler;
    288   1.1       cgd 
    289   1.5       cgd     /* catch these all, login shell or not */
    290   1.5       cgd     (void) signal(SIGHUP, phup);	/* exit processing on HUP */
    291   1.5       cgd     (void) signal(SIGXCPU, phup);	/* ...and on XCPU */
    292   1.5       cgd     (void) signal(SIGXFSZ, phup);	/* ...and on XFSZ */
    293   1.1       cgd 
    294   1.1       cgd     /*
    295   1.1       cgd      * Process the arguments.
    296   1.7   mycroft      *
    297   1.1       cgd      * Note that processing of -v/-x is actually delayed till after script
    298   1.1       cgd      * processing.
    299   1.7   mycroft      *
    300   1.7   mycroft      * We set the first character of our name to be '-' if we are a shell
    301   1.7   mycroft      * running interruptible commands.  Many programs which examine ps'es
    302   1.7   mycroft      * use this to filter such shells out.
    303   1.1       cgd      */
    304   1.1       cgd     argc--, tempv++;
    305   1.1       cgd     while (argc > 0 && (tcp = tempv[0])[0] == '-' && *++tcp != '\0' && !batch) {
    306   1.1       cgd 	do
    307   1.1       cgd 	    switch (*tcp++) {
    308   1.1       cgd 
    309   1.1       cgd 	    case 0:		/* -	Interruptible, no prompt */
    310   1.1       cgd 		prompt = 0;
    311   1.1       cgd 		setintr = 1;
    312   1.1       cgd 		nofile = 1;
    313   1.1       cgd 		break;
    314   1.1       cgd 
    315   1.1       cgd 	    case 'b':		/* -b	Next arg is input file */
    316   1.1       cgd 		batch = 1;
    317   1.1       cgd 		break;
    318   1.1       cgd 
    319   1.1       cgd 	    case 'c':		/* -c	Command input from arg */
    320  1.21   mycroft 		if (argc == 1) {
    321   1.1       cgd 		    xexit(0);
    322  1.21   mycroft 		    /* NOTREACHED */
    323  1.21   mycroft 		}
    324   1.1       cgd 		argc--, tempv++;
    325   1.1       cgd 		arginp = SAVE(tempv[0]);
    326   1.1       cgd 		prompt = 0;
    327   1.1       cgd 		nofile = 1;
    328   1.1       cgd 		break;
    329   1.1       cgd 
    330   1.1       cgd 	    case 'e':		/* -e	Exit on any error */
    331   1.1       cgd 		exiterr = 1;
    332   1.1       cgd 		break;
    333   1.1       cgd 
    334   1.1       cgd 	    case 'f':		/* -f	Fast start */
    335   1.1       cgd 		fast = 1;
    336   1.1       cgd 		break;
    337   1.1       cgd 
    338   1.1       cgd 	    case 'i':		/* -i	Interactive, even if !intty */
    339   1.1       cgd 		intact = 1;
    340   1.1       cgd 		nofile = 1;
    341   1.1       cgd 		break;
    342   1.1       cgd 
    343   1.1       cgd 	    case 'm':		/* -m	read .cshrc (from su) */
    344   1.1       cgd 		mflag = 1;
    345   1.1       cgd 		break;
    346   1.1       cgd 
    347   1.1       cgd 	    case 'n':		/* -n	Don't execute */
    348   1.1       cgd 		noexec = 1;
    349   1.1       cgd 		break;
    350   1.1       cgd 
    351   1.1       cgd 	    case 'q':		/* -q	(Undoc'd) ... die on quit */
    352   1.1       cgd 		quitit = 1;
    353   1.1       cgd 		break;
    354   1.1       cgd 
    355   1.1       cgd 	    case 's':		/* -s	Read from std input */
    356   1.1       cgd 		nofile = 1;
    357   1.1       cgd 		break;
    358   1.1       cgd 
    359   1.1       cgd 	    case 't':		/* -t	Read one line from input */
    360   1.1       cgd 		onelflg = 2;
    361   1.1       cgd 		prompt = 0;
    362   1.1       cgd 		nofile = 1;
    363   1.1       cgd 		break;
    364   1.1       cgd 
    365   1.1       cgd 	    case 'v':		/* -v	Echo hist expanded input */
    366   1.1       cgd 		nverbose = 1;	/* ... later */
    367   1.1       cgd 		break;
    368   1.1       cgd 
    369   1.1       cgd 	    case 'x':		/* -x	Echo just before execution */
    370   1.1       cgd 		nexececho = 1;	/* ... later */
    371   1.1       cgd 		break;
    372   1.1       cgd 
    373   1.1       cgd 	    case 'V':		/* -V	Echo hist expanded input */
    374   1.1       cgd 		setNS(STRverbose);	/* NOW! */
    375   1.1       cgd 		break;
    376   1.1       cgd 
    377   1.1       cgd 	    case 'X':		/* -X	Echo just before execution */
    378   1.1       cgd 		setNS(STRecho);	/* NOW! */
    379   1.1       cgd 		break;
    380   1.1       cgd 
    381   1.1       cgd 	} while (*tcp);
    382   1.1       cgd 	tempv++, argc--;
    383   1.1       cgd     }
    384   1.1       cgd 
    385   1.1       cgd     if (quitit)			/* With all due haste, for debugging */
    386   1.1       cgd 	(void) signal(SIGQUIT, SIG_DFL);
    387   1.1       cgd 
    388   1.1       cgd     /*
    389   1.1       cgd      * Unless prevented by -, -c, -i, -s, or -t, if there are remaining
    390   1.1       cgd      * arguments the first of them is the name of a shell file from which to
    391   1.1       cgd      * read commands.
    392   1.1       cgd      */
    393   1.1       cgd     if (nofile == 0 && argc > 0) {
    394   1.1       cgd 	nofile = open(tempv[0], O_RDONLY);
    395   1.1       cgd 	if (nofile < 0) {
    396   1.1       cgd 	    child = 1;		/* So this doesn't return */
    397   1.1       cgd 	    stderror(ERR_SYSTEM, tempv[0], strerror(errno));
    398  1.21   mycroft 	    /* NOTREACHED */
    399   1.1       cgd 	}
    400   1.1       cgd 	ffile = SAVE(tempv[0]);
    401   1.7   mycroft 	/*
    402   1.1       cgd 	 * Replace FSHIN. Handle /dev/std{in,out,err} specially
    403   1.1       cgd 	 * since once they are closed we cannot open them again.
    404   1.1       cgd 	 * In that case we use our own saved descriptors
    405   1.1       cgd 	 */
    406   1.7   mycroft 	if ((SHIN = dmove(nofile, FSHIN)) < 0)
    407   1.1       cgd 	    switch(nofile) {
    408   1.1       cgd 	    case 0:
    409   1.1       cgd 		SHIN = FSHIN;
    410   1.1       cgd 		break;
    411   1.1       cgd 	    case 1:
    412   1.1       cgd 		SHIN = FSHOUT;
    413   1.1       cgd 		break;
    414   1.1       cgd 	    case 2:
    415   1.7   mycroft 		SHIN = FSHERR;
    416   1.1       cgd 		break;
    417   1.1       cgd 	    default:
    418   1.1       cgd 		stderror(ERR_SYSTEM, tempv[0], strerror(errno));
    419  1.21   mycroft 		/* NOTREACHED */
    420   1.1       cgd 	    }
    421   1.1       cgd 	(void) ioctl(SHIN, FIOCLEX, NULL);
    422   1.1       cgd 	prompt = 0;
    423   1.1       cgd 	 /* argc not used any more */ tempv++;
    424   1.1       cgd     }
    425   1.7   mycroft 
    426   1.1       cgd     intty = isatty(SHIN);
    427   1.1       cgd     intty |= intact;
    428   1.1       cgd     if (intty || (intact && isatty(SHOUT))) {
    429   1.7   mycroft 	if (!batch && (uid != euid || gid != egid)) {
    430   1.1       cgd 	    errno = EACCES;
    431   1.1       cgd 	    child = 1;		/* So this doesn't return */
    432   1.1       cgd 	    stderror(ERR_SYSTEM, "csh", strerror(errno));
    433  1.21   mycroft 	    /* NOTREACHED */
    434   1.1       cgd 	}
    435   1.1       cgd     }
    436   1.1       cgd     /*
    437   1.1       cgd      * Decide whether we should play with signals or not. If we are explicitly
    438   1.1       cgd      * told (via -i, or -) or we are a login shell (arg0 starts with -) or the
    439   1.1       cgd      * input and output are both the ttys("csh", or "csh</dev/ttyx>/dev/ttyx")
    440   1.1       cgd      * Note that in only the login shell is it likely that parent may have set
    441   1.1       cgd      * signals to be ignored
    442   1.1       cgd      */
    443   1.7   mycroft     if (loginsh || intact || (intty && isatty(SHOUT)))
    444   1.1       cgd 	setintr = 1;
    445   1.1       cgd     settell();
    446   1.1       cgd     /*
    447   1.1       cgd      * Save the remaining arguments in argv.
    448   1.1       cgd      */
    449   1.1       cgd     setq(STRargv, blk2short(tempv), &shvhed);
    450   1.1       cgd 
    451   1.1       cgd     /*
    452   1.1       cgd      * Set up the prompt.
    453   1.1       cgd      */
    454   1.1       cgd     if (prompt) {
    455   1.1       cgd 	set(STRprompt, Strsave(uid == 0 ? STRsymhash : STRsymcent));
    456   1.1       cgd 	/* that's a meta-questionmark */
    457   1.1       cgd 	set(STRprompt2, Strsave(STRmquestion));
    458   1.1       cgd     }
    459   1.1       cgd 
    460   1.1       cgd     /*
    461   1.1       cgd      * If we are an interactive shell, then start fiddling with the signals;
    462   1.1       cgd      * this is a tricky game.
    463   1.1       cgd      */
    464   1.1       cgd     shpgrp = getpgrp();
    465   1.1       cgd     opgrp = tpgrp = -1;
    466   1.1       cgd     if (setintr) {
    467   1.1       cgd 	**argv = '-';
    468   1.1       cgd 	if (!quitit)		/* Wary! */
    469   1.1       cgd 	    (void) signal(SIGQUIT, SIG_IGN);
    470   1.1       cgd 	(void) signal(SIGINT, pintr);
    471  1.13   mycroft 	sigemptyset(&sigset);
    472  1.22   mycroft 	(void) sigaddset(&sigset, SIGINT);
    473  1.22   mycroft 	(void) sigprocmask(SIG_BLOCK, &sigset, NULL);
    474   1.1       cgd 	(void) signal(SIGTERM, SIG_IGN);
    475   1.1       cgd 	if (quitit == 0 && arginp == 0) {
    476   1.1       cgd 	    (void) signal(SIGTSTP, SIG_IGN);
    477   1.1       cgd 	    (void) signal(SIGTTIN, SIG_IGN);
    478   1.1       cgd 	    (void) signal(SIGTTOU, SIG_IGN);
    479   1.1       cgd 	    /*
    480   1.1       cgd 	     * Wait till in foreground, in case someone stupidly runs csh &
    481   1.1       cgd 	     * dont want to try to grab away the tty.
    482   1.1       cgd 	     */
    483   1.7   mycroft 	    if (isatty(FSHERR))
    484   1.7   mycroft 		f = FSHERR;
    485   1.1       cgd 	    else if (isatty(FSHOUT))
    486   1.1       cgd 		f = FSHOUT;
    487   1.1       cgd 	    else if (isatty(OLDSTD))
    488   1.1       cgd 		f = OLDSTD;
    489   1.1       cgd 	    else
    490   1.1       cgd 		f = -1;
    491   1.1       cgd     retry:
    492   1.1       cgd 	    if ((tpgrp = tcgetpgrp(f)) != -1) {
    493   1.1       cgd 		if (tpgrp != shpgrp) {
    494   1.1       cgd 		    sig_t old = signal(SIGTTIN, SIG_DFL);
    495   1.1       cgd 		    (void) kill(0, SIGTTIN);
    496   1.1       cgd 		    (void) signal(SIGTTIN, old);
    497   1.1       cgd 		    goto retry;
    498   1.1       cgd 		}
    499   1.1       cgd 		opgrp = shpgrp;
    500   1.1       cgd 		shpgrp = getpid();
    501   1.1       cgd 		tpgrp = shpgrp;
    502   1.1       cgd 		/*
    503   1.7   mycroft 		 * Setpgid will fail if we are a session leader and
    504   1.1       cgd 		 * mypid == mypgrp (POSIX 4.3.3)
    505   1.1       cgd 		 */
    506   1.1       cgd 		if (opgrp != shpgrp)
    507   1.1       cgd 		    if (setpgid(0, shpgrp) == -1)
    508   1.1       cgd 			goto notty;
    509   1.1       cgd 		/*
    510   1.1       cgd 		 * We do that after we set our process group, to make sure
    511   1.1       cgd 		 * that the process group belongs to a process in the same
    512   1.1       cgd 		 * session as the tty (our process and our group) (POSIX 7.2.4)
    513   1.1       cgd 		 */
    514   1.1       cgd 		if (tcsetpgrp(f, shpgrp) == -1)
    515   1.1       cgd 		    goto notty;
    516   1.1       cgd 		(void) ioctl(dcopy(f, FSHTTY), FIOCLEX, NULL);
    517   1.1       cgd 	    }
    518   1.1       cgd 	    if (tpgrp == -1) {
    519   1.1       cgd notty:
    520   1.7   mycroft 		(void) fprintf(csherr, "Warning: no access to tty (%s).\n",
    521   1.7   mycroft 			       strerror(errno));
    522   1.7   mycroft 		(void) fprintf(csherr, "Thus no job control in this shell.\n");
    523   1.1       cgd 	    }
    524   1.1       cgd 	}
    525   1.1       cgd     }
    526   1.1       cgd     if ((setintr == 0) && (parintr == SIG_DFL))
    527   1.1       cgd 	setintr = 1;
    528   1.1       cgd     (void) signal(SIGCHLD, pchild);	/* while signals not ready */
    529   1.1       cgd 
    530   1.1       cgd     /*
    531   1.1       cgd      * Set an exit here in case of an interrupt or error reading the shell
    532   1.1       cgd      * start-up scripts.
    533   1.1       cgd      */
    534   1.1       cgd     reenter = setexit();	/* PWP */
    535   1.1       cgd     haderr = 0;			/* In case second time through */
    536   1.1       cgd     if (!fast && reenter == 0) {
    537   1.1       cgd 	/* Will have value(STRhome) here because set fast if don't */
    538   1.1       cgd 	{
    539   1.1       cgd 	    int     osetintr = setintr;
    540   1.7   mycroft 	    sig_t   oparintr = parintr;
    541  1.13   mycroft 	    sigset_t osigset;
    542  1.13   mycroft 
    543  1.13   mycroft 	    sigemptyset(&sigset);
    544  1.22   mycroft 	    (void) sigaddset(&sigset, SIGINT);
    545  1.22   mycroft 	    (void) sigprocmask(SIG_BLOCK, &sigset, &osigset);
    546   1.1       cgd 
    547   1.1       cgd 	    setintr = 0;
    548   1.7   mycroft 	    parintr = SIG_IGN;	/* Disable onintr */
    549   1.1       cgd #ifdef _PATH_DOTCSHRC
    550   1.1       cgd 	    (void) srcfile(_PATH_DOTCSHRC, 0, 0);
    551   1.1       cgd #endif
    552   1.1       cgd 	    if (!fast && !arginp && !onelflg)
    553   1.7   mycroft 		dohash(NULL, NULL);
    554   1.1       cgd #ifdef _PATH_DOTLOGIN
    555   1.1       cgd 	    if (loginsh)
    556   1.1       cgd 		(void) srcfile(_PATH_DOTLOGIN, 0, 0);
    557   1.1       cgd #endif
    558  1.22   mycroft 	    (void) sigprocmask(SIG_SETMASK, &osigset, NULL);
    559   1.1       cgd 	    setintr = osetintr;
    560   1.7   mycroft 	    parintr = oparintr;
    561   1.1       cgd 	}
    562   1.1       cgd 	(void) srccat(value(STRhome), STRsldotcshrc);
    563   1.1       cgd 
    564   1.1       cgd 	if (!fast && !arginp && !onelflg && !havhash)
    565   1.7   mycroft 	    dohash(NULL, NULL);
    566   1.7   mycroft 	/*
    567   1.7   mycroft 	 * Source history before .login so that it is available in .login
    568   1.7   mycroft 	 */
    569   1.7   mycroft 	if ((cp = value(STRhistfile)) != STRNULL)
    570   1.7   mycroft 	    loadhist[2] = cp;
    571   1.7   mycroft 	dosource(loadhist, NULL);
    572   1.1       cgd         if (loginsh)
    573   1.1       cgd 	      (void) srccat(value(STRhome), STRsldotlogin);
    574   1.1       cgd     }
    575   1.1       cgd 
    576   1.1       cgd     /*
    577   1.1       cgd      * Now are ready for the -v and -x flags
    578   1.1       cgd      */
    579   1.1       cgd     if (nverbose)
    580   1.1       cgd 	setNS(STRverbose);
    581   1.1       cgd     if (nexececho)
    582   1.1       cgd 	setNS(STRecho);
    583   1.1       cgd 
    584   1.1       cgd     /*
    585   1.1       cgd      * All the rest of the world is inside this call. The argument to process
    586   1.1       cgd      * indicates whether it should catch "error unwinds".  Thus if we are a
    587   1.1       cgd      * interactive shell our call here will never return by being blown past on
    588   1.1       cgd      * an error.
    589   1.1       cgd      */
    590   1.1       cgd     process(setintr);
    591   1.1       cgd 
    592   1.1       cgd     /*
    593   1.1       cgd      * Mop-up.
    594   1.1       cgd      */
    595   1.1       cgd     if (intty) {
    596   1.1       cgd 	if (loginsh) {
    597   1.7   mycroft 	    (void) fprintf(cshout, "logout\n");
    598   1.1       cgd 	    (void) close(SHIN);
    599   1.1       cgd 	    child = 1;
    600   1.1       cgd 	    goodbye();
    601   1.1       cgd 	}
    602   1.1       cgd 	else {
    603   1.7   mycroft 	    (void) fprintf(cshout, "exit\n");
    604   1.1       cgd 	}
    605   1.1       cgd     }
    606   1.1       cgd     rechist();
    607   1.1       cgd     exitstat();
    608  1.21   mycroft     /* NOTREACHED */
    609   1.1       cgd }
    610   1.1       cgd 
    611   1.1       cgd void
    612   1.1       cgd untty()
    613   1.1       cgd {
    614   1.1       cgd     if (tpgrp > 0) {
    615   1.1       cgd 	(void) setpgid(0, opgrp);
    616   1.1       cgd 	(void) tcsetpgrp(FSHTTY, opgrp);
    617   1.1       cgd     }
    618   1.1       cgd }
    619   1.1       cgd 
    620   1.1       cgd void
    621   1.1       cgd importpath(cp)
    622   1.1       cgd     Char   *cp;
    623   1.1       cgd {
    624  1.16       tls     int i = 0;
    625  1.16       tls     Char *dp;
    626  1.16       tls     Char **pv;
    627   1.1       cgd     int     c;
    628   1.1       cgd 
    629   1.1       cgd     for (dp = cp; *dp; dp++)
    630   1.1       cgd 	if (*dp == ':')
    631   1.1       cgd 	    i++;
    632   1.1       cgd     /*
    633   1.1       cgd      * i+2 where i is the number of colons in the path. There are i+1
    634   1.1       cgd      * directories in the path plus we need room for a zero terminator.
    635   1.1       cgd      */
    636   1.1       cgd     pv = (Char **) xcalloc((size_t) (i + 2), sizeof(Char **));
    637   1.1       cgd     dp = cp;
    638   1.1       cgd     i = 0;
    639   1.1       cgd     if (*dp)
    640   1.1       cgd 	for (;;) {
    641   1.1       cgd 	    if ((c = *dp) == ':' || c == 0) {
    642   1.1       cgd 		*dp = 0;
    643   1.1       cgd 		pv[i++] = Strsave(*cp ? cp : STRdot);
    644   1.1       cgd 		if (c) {
    645   1.1       cgd 		    cp = dp + 1;
    646   1.1       cgd 		    *dp = ':';
    647   1.1       cgd 		}
    648   1.1       cgd 		else
    649   1.1       cgd 		    break;
    650   1.1       cgd 	    }
    651   1.1       cgd 	    dp++;
    652   1.1       cgd 	}
    653   1.1       cgd     pv[i] = 0;
    654   1.1       cgd     set1(STRpath, pv, &shvhed);
    655   1.1       cgd }
    656   1.1       cgd 
    657   1.1       cgd /*
    658   1.1       cgd  * Source to the file which is the catenation of the argument names.
    659   1.1       cgd  */
    660   1.1       cgd static int
    661   1.1       cgd srccat(cp, dp)
    662   1.1       cgd     Char   *cp, *dp;
    663   1.1       cgd {
    664  1.16       tls     Char *ep = Strspl(cp, dp);
    665   1.1       cgd     char   *ptr = short2str(ep);
    666   1.1       cgd 
    667   1.1       cgd     xfree((ptr_t) ep);
    668   1.1       cgd     return srcfile(ptr, mflag ? 0 : 1, 0);
    669   1.1       cgd }
    670   1.1       cgd 
    671   1.1       cgd /*
    672   1.1       cgd  * Source to a file putting the file descriptor in a safe place (> 2).
    673   1.1       cgd  */
    674   1.1       cgd static int
    675   1.1       cgd srcfile(f, onlyown, flag)
    676   1.1       cgd     char   *f;
    677   1.1       cgd     bool    onlyown, flag;
    678   1.1       cgd {
    679  1.16       tls     int unit;
    680   1.1       cgd 
    681   1.1       cgd     if ((unit = open(f, O_RDONLY)) == -1)
    682   1.1       cgd 	return 0;
    683   1.1       cgd     unit = dmove(unit, -1);
    684   1.1       cgd 
    685   1.1       cgd     (void) ioctl(unit, FIOCLEX, NULL);
    686   1.1       cgd     srcunit(unit, onlyown, flag);
    687   1.1       cgd     return 1;
    688   1.1       cgd }
    689   1.1       cgd 
    690   1.1       cgd /*
    691   1.1       cgd  * Source to a unit.  If onlyown it must be our file or our group or
    692   1.1       cgd  * we don't chance it.	This occurs on ".cshrc"s and the like.
    693   1.1       cgd  */
    694   1.1       cgd int     insource;
    695   1.1       cgd static void
    696   1.1       cgd srcunit(unit, onlyown, hflg)
    697  1.16       tls     int unit;
    698   1.1       cgd     bool    onlyown, hflg;
    699   1.1       cgd {
    700   1.1       cgd     /* We have to push down a lot of state here */
    701   1.1       cgd     /* All this could go into a structure */
    702   1.1       cgd     int     oSHIN = -1, oldintty = intty, oinsource = insource;
    703   1.1       cgd     struct whyle *oldwhyl = whyles;
    704   1.1       cgd     Char   *ogointr = gointr, *oarginp = arginp;
    705   1.1       cgd     Char   *oevalp = evalp, **oevalvec = evalvec;
    706   1.1       cgd     int     oonelflg = onelflg;
    707   1.1       cgd     bool    oenterhist = enterhist;
    708   1.1       cgd     char    OHIST = HIST;
    709   1.1       cgd     bool    otell = cantell;
    710   1.1       cgd 
    711   1.1       cgd     struct Bin saveB;
    712  1.13   mycroft     sigset_t sigset, osigset;
    713   1.1       cgd     jmp_buf oldexit;
    714   1.1       cgd 
    715   1.1       cgd     /* The (few) real local variables */
    716   1.1       cgd     int     my_reenter;
    717   1.1       cgd 
    718   1.1       cgd     if (unit < 0)
    719   1.1       cgd 	return;
    720   1.1       cgd     if (didfds)
    721   1.1       cgd 	donefds();
    722   1.1       cgd     if (onlyown) {
    723   1.1       cgd 	struct stat stb;
    724   1.1       cgd 
    725   1.1       cgd 	if (fstat(unit, &stb) < 0) {
    726   1.1       cgd 	    (void) close(unit);
    727   1.1       cgd 	    return;
    728   1.1       cgd 	}
    729   1.1       cgd     }
    730   1.1       cgd 
    731   1.1       cgd     /*
    732   1.1       cgd      * There is a critical section here while we are pushing down the input
    733   1.1       cgd      * stream since we have stuff in different structures. If we weren't
    734   1.1       cgd      * careful an interrupt could corrupt SHIN's Bin structure and kill the
    735   1.1       cgd      * shell.
    736   1.7   mycroft      *
    737   1.1       cgd      * We could avoid the critical region by grouping all the stuff in a single
    738   1.1       cgd      * structure and pointing at it to move it all at once.  This is less
    739   1.1       cgd      * efficient globally on many variable references however.
    740   1.1       cgd      */
    741   1.1       cgd     insource = 1;
    742   1.1       cgd     getexit(oldexit);
    743   1.1       cgd 
    744  1.13   mycroft     if (setintr) {
    745  1.13   mycroft 	sigemptyset(&sigset);
    746  1.22   mycroft 	(void) sigaddset(&sigset, SIGINT);
    747  1.22   mycroft 	(void) sigprocmask(SIG_BLOCK, &sigset, &osigset);
    748  1.13   mycroft     }
    749   1.1       cgd     /* Setup the new values of the state stuff saved above */
    750  1.22   mycroft     (void) memcpy(&saveB, &B, sizeof(B));
    751   1.1       cgd     fbuf = NULL;
    752   1.1       cgd     fseekp = feobp = fblocks = 0;
    753   1.1       cgd     oSHIN = SHIN, SHIN = unit, arginp = 0, onelflg = 0;
    754   1.1       cgd     intty = isatty(SHIN), whyles = 0, gointr = 0;
    755   1.1       cgd     evalvec = 0;
    756   1.1       cgd     evalp = 0;
    757   1.1       cgd     enterhist = hflg;
    758   1.1       cgd     if (enterhist)
    759   1.1       cgd 	HIST = '\0';
    760   1.1       cgd 
    761   1.1       cgd     /*
    762   1.1       cgd      * Now if we are allowing commands to be interrupted, we let ourselves be
    763   1.1       cgd      * interrupted.
    764   1.1       cgd      */
    765   1.1       cgd     if (setintr)
    766  1.22   mycroft 	(void) sigprocmask(SIG_SETMASK, &osigset, NULL);
    767   1.1       cgd     settell();
    768   1.1       cgd 
    769   1.1       cgd     if ((my_reenter = setexit()) == 0)
    770   1.1       cgd 	process(0);		/* 0 -> blow away on errors */
    771   1.1       cgd 
    772   1.1       cgd     if (setintr)
    773  1.22   mycroft 	(void) sigprocmask(SIG_SETMASK, &osigset, NULL);
    774   1.1       cgd     if (oSHIN >= 0) {
    775  1.16       tls 	int i;
    776   1.1       cgd 
    777   1.1       cgd 	/* We made it to the new state... free up its storage */
    778   1.1       cgd 	/* This code could get run twice but xfree doesn't care */
    779   1.1       cgd 	for (i = 0; i < fblocks; i++)
    780   1.1       cgd 	    xfree((ptr_t) fbuf[i]);
    781   1.1       cgd 	xfree((ptr_t) fbuf);
    782   1.1       cgd 
    783   1.1       cgd 	/* Reset input arena */
    784  1.22   mycroft 	(void) memcpy(&B, &saveB, sizeof(B));
    785   1.1       cgd 
    786   1.1       cgd 	(void) close(SHIN), SHIN = oSHIN;
    787   1.1       cgd 	arginp = oarginp, onelflg = oonelflg;
    788   1.1       cgd 	evalp = oevalp, evalvec = oevalvec;
    789   1.1       cgd 	intty = oldintty, whyles = oldwhyl, gointr = ogointr;
    790   1.1       cgd 	if (enterhist)
    791   1.1       cgd 	    HIST = OHIST;
    792   1.1       cgd 	enterhist = oenterhist;
    793   1.1       cgd 	cantell = otell;
    794   1.1       cgd     }
    795   1.1       cgd 
    796   1.1       cgd     resexit(oldexit);
    797   1.1       cgd     /*
    798   1.1       cgd      * If process reset() (effectively an unwind) then we must also unwind.
    799   1.1       cgd      */
    800  1.21   mycroft     if (my_reenter) {
    801   1.1       cgd 	stderror(ERR_SILENT);
    802  1.21   mycroft 	/* NOTREACHED */
    803  1.21   mycroft     }
    804   1.1       cgd     insource = oinsource;
    805   1.1       cgd }
    806   1.1       cgd 
    807   1.1       cgd void
    808   1.1       cgd rechist()
    809   1.1       cgd {
    810   1.7   mycroft     Char    buf[BUFSIZ], hbuf[BUFSIZ], *hfile;
    811   1.1       cgd     int     fp, ftmp, oldidfds;
    812   1.7   mycroft     struct  varent *shist;
    813   1.1       cgd 
    814   1.1       cgd     if (!fast) {
    815   1.7   mycroft 	/*
    816   1.7   mycroft 	 * If $savehist is just set, we use the value of $history
    817   1.7   mycroft 	 * else we use the value in $savehist
    818   1.7   mycroft 	 */
    819   1.7   mycroft 	if ((shist = adrof(STRsavehist)) != NULL) {
    820   1.7   mycroft 	    if (shist->vec[0][0] != '\0')
    821   1.7   mycroft 		(void) Strcpy(hbuf, shist->vec[0]);
    822   1.7   mycroft 	    else if ((shist = adrof(STRhistory)) && shist->vec[0][0] != '\0')
    823   1.7   mycroft 		(void) Strcpy(hbuf, shist->vec[0]);
    824   1.7   mycroft 	    else
    825   1.7   mycroft 		return;
    826   1.7   mycroft 	}
    827   1.7   mycroft 	else
    828   1.7   mycroft   	    return;
    829   1.7   mycroft 
    830   1.7   mycroft   	if ((hfile = value(STRhistfile)) == STRNULL) {
    831   1.7   mycroft   	    hfile = Strcpy(buf, value(STRhome));
    832   1.7   mycroft   	    (void) Strcat(buf, STRsldthist);
    833   1.7   mycroft   	}
    834   1.7   mycroft 
    835   1.8   mycroft   	if ((fp = open(short2str(hfile), O_WRONLY | O_CREAT | O_TRUNC,
    836   1.8   mycroft 	    0600)) == -1)
    837   1.7   mycroft   	    return;
    838   1.7   mycroft 
    839   1.1       cgd 	oldidfds = didfds;
    840   1.1       cgd 	didfds = 0;
    841   1.1       cgd 	ftmp = SHOUT;
    842   1.1       cgd 	SHOUT = fp;
    843   1.7   mycroft 	dumphist[2] = hbuf;
    844   1.7   mycroft 	dohist(dumphist, NULL);
    845   1.7   mycroft 	SHOUT = ftmp;
    846   1.1       cgd 	(void) close(fp);
    847   1.1       cgd 	didfds = oldidfds;
    848   1.1       cgd     }
    849   1.1       cgd }
    850   1.1       cgd 
    851   1.1       cgd void
    852   1.1       cgd goodbye()
    853   1.1       cgd {
    854   1.1       cgd     rechist();
    855   1.1       cgd 
    856   1.1       cgd     if (loginsh) {
    857   1.1       cgd 	(void) signal(SIGQUIT, SIG_IGN);
    858   1.1       cgd 	(void) signal(SIGINT, SIG_IGN);
    859   1.1       cgd 	(void) signal(SIGTERM, SIG_IGN);
    860   1.1       cgd 	setintr = 0;		/* No interrupts after "logout" */
    861   1.1       cgd 	if (!(adrof(STRlogout)))
    862   1.1       cgd 	    set(STRlogout, STRnormal);
    863   1.1       cgd #ifdef _PATH_DOTLOGOUT
    864   1.1       cgd 	(void) srcfile(_PATH_DOTLOGOUT, 0, 0);
    865   1.1       cgd #endif
    866   1.1       cgd 	if (adrof(STRhome))
    867   1.1       cgd 	    (void) srccat(value(STRhome), STRsldtlogout);
    868   1.1       cgd     }
    869   1.1       cgd     exitstat();
    870  1.21   mycroft     /* NOTREACHED */
    871   1.1       cgd }
    872   1.1       cgd 
    873  1.21   mycroft __dead void
    874   1.1       cgd exitstat()
    875   1.1       cgd {
    876   1.7   mycroft     Char *s;
    877   1.1       cgd #ifdef PROF
    878   1.1       cgd     monitor(0);
    879   1.1       cgd #endif
    880   1.1       cgd     /*
    881   1.1       cgd      * Note that if STATUS is corrupted (i.e. getn bombs) then error will exit
    882   1.1       cgd      * directly because we poke child here. Otherwise we might continue
    883   1.1       cgd      * unwarrantedly (sic).
    884   1.1       cgd      */
    885   1.1       cgd     child = 1;
    886   1.7   mycroft     s = value(STRstatus);
    887   1.7   mycroft     xexit(s ? getn(s) : 0);
    888  1.21   mycroft     /* NOTREACHED */
    889   1.1       cgd }
    890   1.1       cgd 
    891   1.1       cgd /*
    892   1.1       cgd  * in the event of a HUP we want to save the history
    893   1.1       cgd  */
    894   1.1       cgd static void
    895   1.1       cgd phup(sig)
    896   1.1       cgd int sig;
    897   1.1       cgd {
    898   1.7   mycroft     rechist();
    899   1.7   mycroft 
    900   1.7   mycroft     /*
    901   1.7   mycroft      * We kill the last foreground process group. It then becomes
    902   1.7   mycroft      * responsible to propagate the SIGHUP to its progeny.
    903   1.7   mycroft      */
    904   1.7   mycroft     {
    905   1.5       cgd 	struct process *pp, *np;
    906   1.5       cgd 
    907   1.5       cgd 	for (pp = proclist.p_next; pp; pp = pp->p_next) {
    908   1.7   mycroft 	    np = pp;
    909   1.7   mycroft 	    /*
    910   1.7   mycroft 	     * Find if this job is in the foreground. It could be that
    911   1.7   mycroft 	     * the process leader has exited and the foreground flag
    912   1.7   mycroft 	     * is cleared for it.
    913   1.7   mycroft 	     */
    914   1.7   mycroft 	    do
    915   1.5       cgd 		/*
    916   1.7   mycroft 		 * If a process is in the foreground; we try to kill
    917   1.7   mycroft 		 * it's process group. If we succeed, then the
    918   1.7   mycroft 		 * whole job is gone. Otherwise we keep going...
    919   1.7   mycroft 		 * But avoid sending HUP to the shell again.
    920   1.5       cgd 		 */
    921   1.7   mycroft 		if ((np->p_flags & PFOREGND) != 0 && np->p_jobid != shpgrp &&
    922  1.14   mycroft 		    kill(-np->p_jobid, SIGHUP) != -1) {
    923   1.7   mycroft 		    /* In case the job was suspended... */
    924  1.14   mycroft 		    (void) kill(-np->p_jobid, SIGCONT);
    925   1.7   mycroft 		    break;
    926   1.7   mycroft 		}
    927   1.7   mycroft 	    while ((np = np->p_friends) != pp);
    928   1.7   mycroft 	}
    929   1.7   mycroft     }
    930   1.7   mycroft     xexit(sig);
    931  1.21   mycroft     /* NOTREACHED */
    932   1.1       cgd }
    933   1.1       cgd 
    934   1.1       cgd Char   *jobargv[2] = {STRjobs, 0};
    935   1.1       cgd 
    936   1.1       cgd /*
    937   1.1       cgd  * Catch an interrupt, e.g. during lexical input.
    938   1.1       cgd  * If we are an interactive shell, we reset the interrupt catch
    939   1.1       cgd  * immediately.  In any case we drain the shell output,
    940   1.1       cgd  * and finally go through the normal error mechanism, which
    941   1.1       cgd  * gets a chance to make the shell go away.
    942   1.1       cgd  */
    943   1.1       cgd /* ARGSUSED */
    944   1.1       cgd void
    945   1.1       cgd pintr(notused)
    946   1.1       cgd 	int notused;
    947   1.1       cgd {
    948   1.1       cgd     pintr1(1);
    949   1.1       cgd }
    950   1.1       cgd 
    951   1.1       cgd void
    952   1.1       cgd pintr1(wantnl)
    953   1.1       cgd     bool    wantnl;
    954   1.1       cgd {
    955   1.7   mycroft     Char **v;
    956  1.13   mycroft     sigset_t sigset, osigset;
    957   1.1       cgd 
    958  1.13   mycroft     sigemptyset(&sigset);
    959  1.22   mycroft     (void) sigprocmask(SIG_BLOCK, &sigset, &osigset);
    960   1.1       cgd     if (setintr) {
    961  1.13   mycroft 	sigset = osigset;
    962  1.22   mycroft 	(void) sigdelset(&sigset, SIGINT);
    963  1.22   mycroft 	(void) sigprocmask(SIG_SETMASK, &sigset, NULL);
    964   1.1       cgd 	if (pjobs) {
    965   1.1       cgd 	    pjobs = 0;
    966   1.7   mycroft 	    (void) fprintf(cshout, "\n");
    967   1.7   mycroft 	    dojobs(jobargv, NULL);
    968   1.1       cgd 	    stderror(ERR_NAME | ERR_INTR);
    969  1.21   mycroft 	    /* NOTREACHED */
    970   1.1       cgd 	}
    971   1.1       cgd     }
    972  1.22   mycroft     (void) sigdelset(&osigset, SIGCHLD);
    973  1.22   mycroft     (void) sigprocmask(SIG_SETMASK, &osigset, NULL);
    974   1.7   mycroft     (void) fpurge(cshout);
    975   1.1       cgd     (void) endpwent();
    976   1.1       cgd 
    977   1.1       cgd     /*
    978   1.1       cgd      * If we have an active "onintr" then we search for the label. Note that if
    979   1.1       cgd      * one does "onintr -" then we shan't be interruptible so we needn't worry
    980   1.1       cgd      * about that here.
    981   1.1       cgd      */
    982   1.1       cgd     if (gointr) {
    983   1.7   mycroft 	gotolab(gointr);
    984   1.1       cgd 	timflg = 0;
    985   1.7   mycroft 	if ((v = pargv) != NULL)
    986   1.1       cgd 	    pargv = 0, blkfree(v);
    987   1.7   mycroft 	if ((v = gargv) != NULL)
    988   1.1       cgd 	    gargv = 0, blkfree(v);
    989   1.1       cgd 	reset();
    990   1.1       cgd     }
    991   1.1       cgd     else if (intty && wantnl) {
    992   1.7   mycroft 	(void) fputc('\r', cshout);
    993   1.7   mycroft 	(void) fputc('\n', cshout);
    994   1.1       cgd     }
    995   1.1       cgd     stderror(ERR_SILENT);
    996  1.21   mycroft     /* NOTREACHED */
    997   1.1       cgd }
    998   1.1       cgd 
    999   1.1       cgd /*
   1000   1.1       cgd  * Process is the main driving routine for the shell.
   1001   1.1       cgd  * It runs all command processing, except for those within { ... }
   1002   1.1       cgd  * in expressions (which is run by a routine evalav in sh.exp.c which
   1003   1.1       cgd  * is a stripped down process), and `...` evaluation which is run
   1004   1.1       cgd  * also by a subset of this code in sh.glob.c in the routine backeval.
   1005   1.1       cgd  *
   1006   1.1       cgd  * The code here is a little strange because part of it is interruptible
   1007   1.1       cgd  * and hence freeing of structures appears to occur when none is necessary
   1008   1.1       cgd  * if this is ignored.
   1009   1.1       cgd  *
   1010   1.1       cgd  * Note that if catch is not set then we will unwind on any error.
   1011   1.1       cgd  * If an end-of-file occurs, we return.
   1012   1.1       cgd  */
   1013   1.7   mycroft static struct command *savet = NULL;
   1014   1.1       cgd void
   1015   1.1       cgd process(catch)
   1016   1.1       cgd     bool    catch;
   1017   1.1       cgd {
   1018   1.1       cgd     jmp_buf osetexit;
   1019   1.7   mycroft     struct command *t = savet;
   1020  1.13   mycroft     sigset_t sigset;
   1021   1.1       cgd 
   1022   1.7   mycroft     savet = NULL;
   1023   1.1       cgd     getexit(osetexit);
   1024   1.1       cgd     for (;;) {
   1025   1.1       cgd 	pendjob();
   1026   1.1       cgd 	paraml.next = paraml.prev = &paraml;
   1027   1.1       cgd 	paraml.word = STRNULL;
   1028   1.1       cgd 	(void) setexit();
   1029   1.1       cgd 	justpr = enterhist;	/* execute if not entering history */
   1030   1.1       cgd 
   1031   1.1       cgd 	/*
   1032   1.1       cgd 	 * Interruptible during interactive reads
   1033   1.1       cgd 	 */
   1034  1.13   mycroft 	if (setintr) {
   1035  1.13   mycroft 	    sigemptyset(&sigset);
   1036  1.22   mycroft 	    (void) sigaddset(&sigset, SIGINT);
   1037  1.22   mycroft 	    (void) sigprocmask(SIG_UNBLOCK, &sigset, NULL);
   1038  1.13   mycroft 	}
   1039   1.1       cgd 
   1040   1.1       cgd 	/*
   1041   1.1       cgd 	 * For the sake of reset()
   1042   1.1       cgd 	 */
   1043   1.1       cgd 	freelex(&paraml);
   1044   1.7   mycroft 	if (savet)
   1045   1.7   mycroft 	    freesyn(savet), savet = NULL;
   1046   1.1       cgd 
   1047   1.1       cgd 	if (haderr) {
   1048   1.1       cgd 	    if (!catch) {
   1049   1.1       cgd 		/* unwind */
   1050   1.1       cgd 		doneinp = 0;
   1051   1.1       cgd 		resexit(osetexit);
   1052   1.7   mycroft 		savet = t;
   1053   1.1       cgd 		reset();
   1054   1.1       cgd 	    }
   1055   1.1       cgd 	    haderr = 0;
   1056   1.1       cgd 	    /*
   1057   1.1       cgd 	     * Every error is eventually caught here or the shell dies.  It is
   1058   1.1       cgd 	     * at this point that we clean up any left-over open files, by
   1059   1.1       cgd 	     * closing all but a fixed number of pre-defined files.  Thus
   1060   1.1       cgd 	     * routines don't have to worry about leaving files open due to
   1061   1.1       cgd 	     * deeper errors... they will get closed here.
   1062   1.1       cgd 	     */
   1063   1.1       cgd 	    closem();
   1064   1.1       cgd 	    continue;
   1065   1.1       cgd 	}
   1066   1.1       cgd 	if (doneinp) {
   1067   1.1       cgd 	    doneinp = 0;
   1068   1.1       cgd 	    break;
   1069   1.1       cgd 	}
   1070   1.1       cgd 	if (chkstop)
   1071   1.1       cgd 	    chkstop--;
   1072   1.1       cgd 	if (neednote)
   1073   1.1       cgd 	    pnote();
   1074   1.1       cgd 	if (intty && prompt && evalvec == 0) {
   1075   1.1       cgd 	    mailchk();
   1076   1.1       cgd 	    /*
   1077   1.1       cgd 	     * If we are at the end of the input buffer then we are going to
   1078   1.1       cgd 	     * read fresh stuff. Otherwise, we are rereading input and don't
   1079   1.1       cgd 	     * need or want to prompt.
   1080   1.1       cgd 	     */
   1081   1.7   mycroft 	    if (aret == F_SEEK && fseekp == feobp)
   1082   1.1       cgd 		printprompt();
   1083   1.7   mycroft 	    (void) fflush(cshout);
   1084   1.1       cgd 	}
   1085   1.1       cgd 	if (seterr) {
   1086   1.1       cgd 	    xfree((ptr_t) seterr);
   1087   1.1       cgd 	    seterr = NULL;
   1088   1.1       cgd 	}
   1089   1.1       cgd 
   1090   1.1       cgd 	/*
   1091   1.1       cgd 	 * Echo not only on VERBOSE, but also with history expansion. If there
   1092   1.1       cgd 	 * is a lexical error then we forego history echo.
   1093   1.1       cgd 	 */
   1094   1.7   mycroft 	if ((lex(&paraml) && !seterr && intty) || adrof(STRverbose)) {
   1095   1.7   mycroft 	    prlex(csherr, &paraml);
   1096   1.1       cgd 	}
   1097   1.1       cgd 
   1098   1.1       cgd 	/*
   1099   1.1       cgd 	 * The parser may lose space if interrupted.
   1100   1.1       cgd 	 */
   1101   1.1       cgd 	if (setintr)
   1102  1.22   mycroft 	    (void) sigprocmask(SIG_BLOCK, &sigset, NULL);
   1103   1.1       cgd 
   1104   1.1       cgd 	/*
   1105   1.1       cgd 	 * Save input text on the history list if reading in old history, or it
   1106   1.1       cgd 	 * is from the terminal at the top level and not in a loop.
   1107   1.7   mycroft 	 *
   1108   1.1       cgd 	 * PWP: entry of items in the history list while in a while loop is done
   1109   1.1       cgd 	 * elsewhere...
   1110   1.1       cgd 	 */
   1111   1.7   mycroft 	if (enterhist || (catch && intty && !whyles))
   1112   1.1       cgd 	    savehist(&paraml);
   1113   1.1       cgd 
   1114   1.1       cgd 	/*
   1115   1.1       cgd 	 * Print lexical error messages, except when sourcing history lists.
   1116   1.1       cgd 	 */
   1117  1.21   mycroft 	if (!enterhist && seterr) {
   1118   1.1       cgd 	    stderror(ERR_OLD);
   1119  1.21   mycroft 	    /* NOTREACHED */
   1120  1.21   mycroft 	}
   1121   1.1       cgd 
   1122   1.1       cgd 	/*
   1123   1.1       cgd 	 * If had a history command :p modifier then this is as far as we
   1124   1.1       cgd 	 * should go
   1125   1.1       cgd 	 */
   1126   1.1       cgd 	if (justpr)
   1127   1.1       cgd 	    reset();
   1128   1.1       cgd 
   1129   1.1       cgd 	alias(&paraml);
   1130   1.1       cgd 
   1131   1.1       cgd 	/*
   1132   1.1       cgd 	 * Parse the words of the input into a parse tree.
   1133   1.1       cgd 	 */
   1134   1.7   mycroft 	savet = syntax(paraml.next, &paraml, 0);
   1135  1.21   mycroft 	if (seterr) {
   1136   1.1       cgd 	    stderror(ERR_OLD);
   1137  1.21   mycroft 	    /* NOTREACHED */
   1138  1.21   mycroft 	}
   1139   1.1       cgd 
   1140   1.7   mycroft 	execute(savet, (tpgrp > 0 ? tpgrp : -1), NULL, NULL);
   1141   1.1       cgd 
   1142   1.1       cgd 	/*
   1143   1.1       cgd 	 * Made it!
   1144   1.1       cgd 	 */
   1145   1.1       cgd 	freelex(&paraml);
   1146   1.7   mycroft 	freesyn((struct command *) savet), savet = NULL;
   1147   1.1       cgd     }
   1148   1.1       cgd     resexit(osetexit);
   1149   1.7   mycroft     savet = t;
   1150   1.1       cgd }
   1151   1.1       cgd 
   1152   1.1       cgd void
   1153   1.7   mycroft /*ARGSUSED*/
   1154   1.7   mycroft dosource(v, t)
   1155   1.7   mycroft     Char **v;
   1156   1.7   mycroft     struct command *t;
   1157   1.7   mycroft 
   1158   1.1       cgd {
   1159  1.16       tls     Char *f;
   1160   1.1       cgd     bool    hflg = 0;
   1161   1.1       cgd     Char    buf[BUFSIZ];
   1162   1.1       cgd 
   1163   1.7   mycroft     v++;
   1164   1.7   mycroft     if (*v && eq(*v, STRmh)) {
   1165  1.21   mycroft 	if (*++v == NULL) {
   1166   1.1       cgd 	    stderror(ERR_NAME | ERR_HFLAG);
   1167  1.21   mycroft 	    /* NOTREACHED */
   1168  1.21   mycroft 	}
   1169   1.1       cgd 	hflg++;
   1170   1.1       cgd     }
   1171   1.7   mycroft     (void) Strcpy(buf, *v);
   1172   1.1       cgd     f = globone(buf, G_ERROR);
   1173   1.1       cgd     (void) strcpy((char *) buf, short2str(f));
   1174   1.1       cgd     xfree((ptr_t) f);
   1175  1.21   mycroft     if (!srcfile((char *) buf, 0, hflg) && !hflg) {
   1176   1.1       cgd 	stderror(ERR_SYSTEM, (char *) buf, strerror(errno));
   1177  1.21   mycroft 	/* NOTREACHED */
   1178  1.21   mycroft     }
   1179   1.1       cgd }
   1180   1.1       cgd 
   1181   1.1       cgd /*
   1182   1.1       cgd  * Check for mail.
   1183   1.1       cgd  * If we are a login shell, then we don't want to tell
   1184   1.1       cgd  * about any mail file unless its been modified
   1185   1.1       cgd  * after the time we started.
   1186   1.1       cgd  * This prevents us from telling the user things he already
   1187   1.1       cgd  * knows, since the login program insists on saying
   1188   1.1       cgd  * "You have mail."
   1189   1.1       cgd  */
   1190   1.1       cgd static void
   1191   1.1       cgd mailchk()
   1192   1.1       cgd {
   1193  1.16       tls     struct varent *v;
   1194  1.16       tls     Char **vp;
   1195   1.1       cgd     time_t  t;
   1196   1.1       cgd     int     intvl, cnt;
   1197   1.1       cgd     struct stat stb;
   1198   1.1       cgd     bool    new;
   1199   1.1       cgd 
   1200   1.1       cgd     v = adrof(STRmail);
   1201   1.1       cgd     if (v == 0)
   1202   1.1       cgd 	return;
   1203   1.1       cgd     (void) time(&t);
   1204   1.1       cgd     vp = v->vec;
   1205   1.1       cgd     cnt = blklen(vp);
   1206   1.1       cgd     intvl = (cnt && number(*vp)) ? (--cnt, getn(*vp++)) : MAILINTVL;
   1207   1.1       cgd     if (intvl < 1)
   1208   1.1       cgd 	intvl = 1;
   1209   1.1       cgd     if (chktim + intvl > t)
   1210   1.1       cgd 	return;
   1211   1.1       cgd     for (; *vp; vp++) {
   1212   1.1       cgd 	if (stat(short2str(*vp), &stb) < 0)
   1213   1.1       cgd 	    continue;
   1214   1.1       cgd 	new = stb.st_mtime > time0.tv_sec;
   1215   1.1       cgd 	if (stb.st_size == 0 || stb.st_atime > stb.st_mtime ||
   1216   1.1       cgd 	    (stb.st_atime < chktim && stb.st_mtime < chktim) ||
   1217   1.7   mycroft 	    (loginsh && !new))
   1218   1.1       cgd 	    continue;
   1219   1.1       cgd 	if (cnt == 1)
   1220   1.7   mycroft 	    (void) fprintf(cshout, "You have %smail.\n", new ? "new " : "");
   1221   1.1       cgd 	else
   1222   1.7   mycroft 	    (void) fprintf(cshout, "%s in %s.\n", new ? "New mail" : "Mail",
   1223   1.7   mycroft 			   vis_str(*vp));
   1224   1.1       cgd     }
   1225   1.1       cgd     chktim = t;
   1226   1.1       cgd }
   1227   1.1       cgd 
   1228   1.1       cgd /*
   1229   1.1       cgd  * Extract a home directory from the password file
   1230   1.1       cgd  * The argument points to a buffer where the name of the
   1231   1.1       cgd  * user whose home directory is sought is currently.
   1232   1.1       cgd  * We write the home directory of the user back there.
   1233   1.1       cgd  */
   1234   1.1       cgd int
   1235   1.1       cgd gethdir(home)
   1236   1.1       cgd     Char   *home;
   1237   1.1       cgd {
   1238   1.1       cgd     Char   *h;
   1239   1.1       cgd     struct passwd *pw;
   1240   1.1       cgd 
   1241   1.1       cgd     /*
   1242   1.1       cgd      * Is it us?
   1243   1.1       cgd      */
   1244   1.1       cgd     if (*home == '\0') {
   1245   1.7   mycroft 	if ((h = value(STRhome)) != NULL) {
   1246   1.1       cgd 	    (void) Strcpy(home, h);
   1247   1.1       cgd 	    return 0;
   1248   1.1       cgd 	}
   1249   1.1       cgd 	else
   1250   1.1       cgd 	    return 1;
   1251   1.1       cgd     }
   1252   1.1       cgd 
   1253   1.7   mycroft     if ((pw = getpwnam(short2str(home))) != NULL) {
   1254   1.1       cgd 	(void) Strcpy(home, str2short(pw->pw_dir));
   1255   1.1       cgd 	return 0;
   1256   1.1       cgd     }
   1257   1.1       cgd     else
   1258   1.1       cgd 	return 1;
   1259   1.1       cgd }
   1260   1.1       cgd 
   1261   1.1       cgd /*
   1262   1.7   mycroft  * When didfds is set, we do I/O from 0, 1, 2 otherwise from 15, 16, 17
   1263   1.7   mycroft  * We also check if the shell has already changed the decriptor to point to
   1264   1.7   mycroft  * 0, 1, 2 when didfds is set.
   1265   1.7   mycroft  */
   1266   1.7   mycroft #define DESC(a) (*((int *) (a)) - (didfds && *((int *) a) >= FSHIN ? FSHIN : 0))
   1267   1.7   mycroft 
   1268   1.7   mycroft static int
   1269   1.7   mycroft readf(oreo, buf, siz)
   1270   1.7   mycroft     void *oreo;
   1271   1.7   mycroft     char *buf;
   1272   1.7   mycroft     int siz;
   1273   1.7   mycroft {
   1274   1.7   mycroft     return read(DESC(oreo), buf, siz);
   1275   1.7   mycroft }
   1276   1.7   mycroft 
   1277   1.7   mycroft 
   1278   1.7   mycroft static int
   1279   1.7   mycroft writef(oreo, buf, siz)
   1280   1.7   mycroft     void *oreo;
   1281   1.7   mycroft     const char *buf;
   1282   1.7   mycroft     int siz;
   1283   1.7   mycroft {
   1284   1.7   mycroft     return write(DESC(oreo), buf, siz);
   1285   1.7   mycroft }
   1286   1.7   mycroft 
   1287   1.7   mycroft static fpos_t
   1288   1.7   mycroft seekf(oreo, off, whence)
   1289   1.7   mycroft     void *oreo;
   1290   1.7   mycroft     fpos_t off;
   1291   1.7   mycroft     int whence;
   1292   1.7   mycroft {
   1293   1.7   mycroft     return lseek(DESC(oreo), off, whence);
   1294   1.7   mycroft }
   1295   1.7   mycroft 
   1296   1.7   mycroft 
   1297   1.7   mycroft static int
   1298   1.7   mycroft closef(oreo)
   1299   1.7   mycroft     void *oreo;
   1300   1.7   mycroft {
   1301   1.7   mycroft     return close(DESC(oreo));
   1302   1.7   mycroft }
   1303   1.7   mycroft 
   1304   1.7   mycroft 
   1305   1.7   mycroft /*
   1306   1.7   mycroft  * Print the visible version of a string.
   1307   1.7   mycroft  */
   1308   1.7   mycroft int
   1309   1.7   mycroft vis_fputc(ch, fp)
   1310   1.7   mycroft     int ch;
   1311   1.7   mycroft     FILE *fp;
   1312   1.7   mycroft {
   1313   1.7   mycroft     char uenc[5];	/* 4 + NULL */
   1314   1.7   mycroft 
   1315   1.7   mycroft     if (ch & QUOTE)
   1316   1.7   mycroft 	return fputc(ch & TRIM, fp);
   1317   1.7   mycroft     /*
   1318   1.7   mycroft      * XXX: When we are in AsciiOnly we want all characters >= 0200 to
   1319   1.7   mycroft      * be encoded, but currently there is no way in vis to do that.
   1320   1.7   mycroft      */
   1321   1.7   mycroft     (void) vis(uenc, ch & TRIM, VIS_NOSLASH, 0);
   1322   1.7   mycroft     return fputs(uenc, fp);
   1323   1.7   mycroft }
   1324   1.7   mycroft 
   1325   1.7   mycroft /*
   1326   1.1       cgd  * Move the initial descriptors to their eventual
   1327   1.1       cgd  * resting places, closin all other units.
   1328   1.1       cgd  */
   1329   1.1       cgd void
   1330   1.1       cgd initdesc()
   1331   1.1       cgd {
   1332   1.1       cgd 
   1333   1.1       cgd     didfds = 0;			/* 0, 1, 2 aren't set up */
   1334   1.1       cgd     (void) ioctl(SHIN = dcopy(0, FSHIN), FIOCLEX, NULL);
   1335   1.1       cgd     (void) ioctl(SHOUT = dcopy(1, FSHOUT), FIOCLEX, NULL);
   1336   1.7   mycroft     (void) ioctl(SHERR = dcopy(2, FSHERR), FIOCLEX, NULL);
   1337   1.1       cgd     (void) ioctl(OLDSTD = dcopy(SHIN, FOLDSTD), FIOCLEX, NULL);
   1338   1.1       cgd     closem();
   1339   1.1       cgd }
   1340   1.1       cgd 
   1341   1.1       cgd 
   1342  1.21   mycroft __dead void
   1343   1.1       cgd #ifdef PROF
   1344   1.1       cgd done(i)
   1345   1.1       cgd #else
   1346   1.1       cgd xexit(i)
   1347   1.1       cgd #endif
   1348   1.1       cgd     int     i;
   1349   1.1       cgd {
   1350   1.1       cgd     untty();
   1351   1.1       cgd     _exit(i);
   1352  1.21   mycroft     /* NOTREACHED */
   1353   1.1       cgd }
   1354   1.1       cgd 
   1355  1.19      fair #ifndef _PATH_DEFPATH
   1356   1.1       cgd static Char **
   1357   1.1       cgd defaultpath()
   1358   1.1       cgd {
   1359   1.1       cgd     char   *ptr;
   1360   1.1       cgd     Char  **blk, **blkp;
   1361   1.1       cgd     struct stat stb;
   1362   1.1       cgd 
   1363   1.1       cgd     blkp = blk = (Char **) xmalloc((size_t) sizeof(Char *) * 10);
   1364   1.1       cgd 
   1365   1.1       cgd #define DIRAPPEND(a)  \
   1366  1.11   mycroft 	if (stat(ptr = a, &stb) == 0 && S_ISDIR(stb.st_mode)) \
   1367   1.1       cgd 		*blkp++ = SAVE(ptr)
   1368   1.1       cgd 
   1369   1.1       cgd     DIRAPPEND(_PATH_BIN);
   1370   1.1       cgd     DIRAPPEND(_PATH_USRBIN);
   1371   1.1       cgd 
   1372   1.1       cgd #undef DIRAPPEND
   1373   1.1       cgd 
   1374  1.10   mycroft #if 0
   1375   1.7   mycroft     if (euid != 0 && uid != 0)
   1376   1.7   mycroft 	*blkp++ = Strsave(STRdot);
   1377  1.10   mycroft #endif
   1378  1.10   mycroft 
   1379   1.1       cgd     *blkp = NULL;
   1380   1.1       cgd     return (blk);
   1381   1.1       cgd }
   1382  1.19      fair #endif /* _PATH_DEFPATH */
   1383   1.1       cgd 
   1384   1.1       cgd void
   1385   1.1       cgd printprompt()
   1386   1.1       cgd {
   1387  1.16       tls     Char *cp;
   1388   1.1       cgd 
   1389   1.1       cgd     if (!whyles) {
   1390   1.1       cgd 	for (cp = value(STRprompt); *cp; cp++)
   1391   1.1       cgd 	    if (*cp == HIST)
   1392   1.7   mycroft 		(void) fprintf(cshout, "%d", eventno + 1);
   1393   1.1       cgd 	    else {
   1394   1.1       cgd 		if (*cp == '\\' && cp[1] == HIST)
   1395   1.1       cgd 		    cp++;
   1396   1.7   mycroft 		(void) vis_fputc(*cp | QUOTE, cshout);
   1397   1.1       cgd 	    }
   1398   1.1       cgd     }
   1399   1.1       cgd     else
   1400   1.1       cgd 	/*
   1401   1.1       cgd 	 * Prompt for forward reading loop body content.
   1402   1.1       cgd 	 */
   1403   1.7   mycroft 	(void) fprintf(cshout, "? ");
   1404   1.7   mycroft     (void) fflush(cshout);
   1405   1.1       cgd }
   1406