Home | History | Annotate | Line # | Download | only in csh
exec.c revision 1.5
      1  1.1      cgd /*-
      2  1.5  mycroft  * Copyright (c) 1980, 1991, 1993
      3  1.5  mycroft  *	The Regents of the University of California.  All rights reserved.
      4  1.1      cgd  *
      5  1.1      cgd  * Redistribution and use in source and binary forms, with or without
      6  1.1      cgd  * modification, are permitted provided that the following conditions
      7  1.1      cgd  * are met:
      8  1.1      cgd  * 1. Redistributions of source code must retain the above copyright
      9  1.1      cgd  *    notice, this list of conditions and the following disclaimer.
     10  1.1      cgd  * 2. Redistributions in binary form must reproduce the above copyright
     11  1.1      cgd  *    notice, this list of conditions and the following disclaimer in the
     12  1.1      cgd  *    documentation and/or other materials provided with the distribution.
     13  1.1      cgd  * 3. All advertising materials mentioning features or use of this software
     14  1.1      cgd  *    must display the following acknowledgement:
     15  1.1      cgd  *	This product includes software developed by the University of
     16  1.1      cgd  *	California, Berkeley and its contributors.
     17  1.1      cgd  * 4. Neither the name of the University nor the names of its contributors
     18  1.1      cgd  *    may be used to endorse or promote products derived from this software
     19  1.1      cgd  *    without specific prior written permission.
     20  1.1      cgd  *
     21  1.1      cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     22  1.1      cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     23  1.1      cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     24  1.1      cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     25  1.1      cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     26  1.1      cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     27  1.1      cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     28  1.1      cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     29  1.1      cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     30  1.1      cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     31  1.1      cgd  * SUCH DAMAGE.
     32  1.1      cgd  */
     33  1.1      cgd 
     34  1.1      cgd #ifndef lint
     35  1.5  mycroft /*static char sccsid[] = "from: @(#)exec.c	8.1 (Berkeley) 5/31/93";*/
     36  1.5  mycroft static char *rcsid = "$Id: exec.c,v 1.5 1994/09/21 00:10:48 mycroft Exp $";
     37  1.1      cgd #endif /* not lint */
     38  1.1      cgd 
     39  1.1      cgd #include <sys/types.h>
     40  1.5  mycroft #include <sys/param.h>
     41  1.1      cgd #include <dirent.h>
     42  1.1      cgd #include <fcntl.h>
     43  1.5  mycroft #include <sys/stat.h>
     44  1.1      cgd #include <errno.h>
     45  1.1      cgd #include <stdlib.h>
     46  1.1      cgd #include <string.h>
     47  1.1      cgd #include <unistd.h>
     48  1.1      cgd #if __STDC__
     49  1.1      cgd # include <stdarg.h>
     50  1.1      cgd #else
     51  1.1      cgd # include <varargs.h>
     52  1.1      cgd #endif
     53  1.1      cgd 
     54  1.1      cgd #include "csh.h"
     55  1.1      cgd #include "extern.h"
     56  1.1      cgd 
     57  1.1      cgd /*
     58  1.1      cgd  * System level search and execute of a command.  We look in each directory
     59  1.1      cgd  * for the specified command name.  If the name contains a '/' then we
     60  1.1      cgd  * execute only the full path name.  If there is no search path then we
     61  1.1      cgd  * execute only full path names.
     62  1.1      cgd  */
     63  1.1      cgd extern char **environ;
     64  1.1      cgd 
     65  1.1      cgd /*
     66  1.1      cgd  * As we search for the command we note the first non-trivial error
     67  1.1      cgd  * message for presentation to the user.  This allows us often
     68  1.1      cgd  * to show that a file has the wrong mode/no access when the file
     69  1.1      cgd  * is not in the last component of the search path, so we must
     70  1.1      cgd  * go on after first detecting the error.
     71  1.1      cgd  */
     72  1.1      cgd static char *exerr;		/* Execution error message */
     73  1.1      cgd static Char *expath;		/* Path for exerr */
     74  1.1      cgd 
     75  1.1      cgd /*
     76  1.1      cgd  * Xhash is an array of HSHSIZ bits (HSHSIZ / 8 chars), which are used
     77  1.1      cgd  * to hash execs.  If it is allocated (havhash true), then to tell
     78  1.1      cgd  * whether ``name'' is (possibly) present in the i'th component
     79  1.1      cgd  * of the variable path, you look at the bit in xhash indexed by
     80  1.1      cgd  * hash(hashname("name"), i).  This is setup automatically
     81  1.1      cgd  * after .login is executed, and recomputed whenever ``path'' is
     82  1.1      cgd  * changed.
     83  1.1      cgd  * The two part hash function is designed to let texec() call the
     84  1.1      cgd  * more expensive hashname() only once and the simple hash() several
     85  1.1      cgd  * times (once for each path component checked).
     86  1.1      cgd  * Byte size is assumed to be 8.
     87  1.1      cgd  */
     88  1.1      cgd #define	HSHSIZ		8192	/* 1k bytes */
     89  1.1      cgd #define HSHMASK		(HSHSIZ - 1)
     90  1.1      cgd #define HSHMUL		243
     91  1.1      cgd static char xhash[HSHSIZ / 8];
     92  1.1      cgd 
     93  1.5  mycroft #define hash(a, b)	(((a) * HSHMUL + (b)) & HSHMASK)
     94  1.1      cgd #define bit(h, b)	((h)[(b) >> 3] & 1 << ((b) & 7))	/* bit test */
     95  1.1      cgd #define bis(h, b)	((h)[(b) >> 3] |= 1 << ((b) & 7))	/* bit set */
     96  1.1      cgd static int hits, misses;
     97  1.1      cgd 
     98  1.1      cgd /* Dummy search path for just absolute search when no path */
     99  1.1      cgd static Char *justabs[] = {STRNULL, 0};
    100  1.1      cgd 
    101  1.1      cgd static void	pexerr __P((void));
    102  1.1      cgd static void	texec __P((Char *, Char **));
    103  1.1      cgd static int	hashname __P((Char *));
    104  1.5  mycroft static void 	tellmewhat __P((struct wordent *));
    105  1.5  mycroft static int	executable __P((Char *, Char *, bool));
    106  1.5  mycroft static int	iscommand __P((Char *));
    107  1.5  mycroft 
    108  1.1      cgd 
    109  1.1      cgd void
    110  1.5  mycroft /*ARGSUSED*/
    111  1.5  mycroft doexec(v, t)
    112  1.5  mycroft     Char **v;
    113  1.5  mycroft     struct command *t;
    114  1.1      cgd {
    115  1.1      cgd     register Char *dp, **pv, **av, *sav;
    116  1.5  mycroft     register struct varent *pathv;
    117  1.1      cgd     register bool slash;
    118  1.1      cgd     register int hashval = 0, hashval1, i;
    119  1.1      cgd     Char   *blk[2];
    120  1.1      cgd 
    121  1.1      cgd     /*
    122  1.1      cgd      * Glob the command name. We will search $path even if this does something,
    123  1.1      cgd      * as in sh but not in csh.  One special case: if there is no PATH, then we
    124  1.1      cgd      * execute only commands which start with '/'.
    125  1.1      cgd      */
    126  1.1      cgd     blk[0] = t->t_dcom[0];
    127  1.1      cgd     blk[1] = 0;
    128  1.1      cgd     gflag = 0, tglob(blk);
    129  1.1      cgd     if (gflag) {
    130  1.1      cgd 	pv = globall(blk);
    131  1.1      cgd 	if (pv == 0) {
    132  1.5  mycroft 	    setname(vis_str(blk[0]));
    133  1.1      cgd 	    stderror(ERR_NAME | ERR_NOMATCH);
    134  1.1      cgd 	}
    135  1.1      cgd 	gargv = 0;
    136  1.1      cgd     }
    137  1.1      cgd     else
    138  1.1      cgd 	pv = saveblk(blk);
    139  1.1      cgd 
    140  1.1      cgd     trim(pv);
    141  1.1      cgd 
    142  1.1      cgd     exerr = 0;
    143  1.1      cgd     expath = Strsave(pv[0]);
    144  1.1      cgd     Vexpath = expath;
    145  1.1      cgd 
    146  1.5  mycroft     pathv = adrof(STRpath);
    147  1.5  mycroft     if (pathv == 0 && expath[0] != '/') {
    148  1.1      cgd 	blkfree(pv);
    149  1.1      cgd 	pexerr();
    150  1.1      cgd     }
    151  1.1      cgd     slash = any(short2str(expath), '/');
    152  1.1      cgd 
    153  1.1      cgd     /*
    154  1.1      cgd      * Glob the argument list, if necessary. Otherwise trim off the quote bits.
    155  1.1      cgd      */
    156  1.1      cgd     gflag = 0;
    157  1.1      cgd     av = &t->t_dcom[1];
    158  1.1      cgd     tglob(av);
    159  1.1      cgd     if (gflag) {
    160  1.1      cgd 	av = globall(av);
    161  1.1      cgd 	if (av == 0) {
    162  1.1      cgd 	    blkfree(pv);
    163  1.5  mycroft 	    setname(vis_str(expath));
    164  1.1      cgd 	    stderror(ERR_NAME | ERR_NOMATCH);
    165  1.1      cgd 	}
    166  1.1      cgd 	gargv = 0;
    167  1.1      cgd     }
    168  1.1      cgd     else
    169  1.1      cgd 	av = saveblk(av);
    170  1.1      cgd 
    171  1.1      cgd     blkfree(t->t_dcom);
    172  1.1      cgd     t->t_dcom = blkspl(pv, av);
    173  1.1      cgd     xfree((ptr_t) pv);
    174  1.1      cgd     xfree((ptr_t) av);
    175  1.1      cgd     av = t->t_dcom;
    176  1.1      cgd     trim(av);
    177  1.1      cgd 
    178  1.1      cgd     if (*av == NULL || **av == '\0')
    179  1.1      cgd 	pexerr();
    180  1.1      cgd 
    181  1.1      cgd     xechoit(av);		/* Echo command if -x */
    182  1.1      cgd     /*
    183  1.1      cgd      * Since all internal file descriptors are set to close on exec, we don't
    184  1.1      cgd      * need to close them explicitly here.  Just reorient ourselves for error
    185  1.1      cgd      * messages.
    186  1.1      cgd      */
    187  1.1      cgd     SHIN = 0;
    188  1.1      cgd     SHOUT = 1;
    189  1.5  mycroft     SHERR = 2;
    190  1.1      cgd     OLDSTD = 0;
    191  1.1      cgd     /*
    192  1.1      cgd      * We must do this AFTER any possible forking (like `foo` in glob) so that
    193  1.1      cgd      * this shell can still do subprocesses.
    194  1.1      cgd      */
    195  1.1      cgd     (void) sigsetmask((sigset_t) 0);
    196  1.1      cgd     /*
    197  1.1      cgd      * If no path, no words in path, or a / in the filename then restrict the
    198  1.1      cgd      * command search.
    199  1.1      cgd      */
    200  1.5  mycroft     if (pathv == 0 || pathv->vec[0] == 0 || slash)
    201  1.1      cgd 	pv = justabs;
    202  1.1      cgd     else
    203  1.5  mycroft 	pv = pathv->vec;
    204  1.1      cgd     sav = Strspl(STRslash, *av);/* / command name for postpending */
    205  1.1      cgd     Vsav = sav;
    206  1.1      cgd     if (havhash)
    207  1.1      cgd 	hashval = hashname(*av);
    208  1.1      cgd     i = 0;
    209  1.1      cgd     hits++;
    210  1.1      cgd     do {
    211  1.1      cgd 	/*
    212  1.1      cgd 	 * Try to save time by looking at the hash table for where this command
    213  1.1      cgd 	 * could be.  If we are doing delayed hashing, then we put the names in
    214  1.1      cgd 	 * one at a time, as the user enters them.  This is kinda like Korn
    215  1.1      cgd 	 * Shell's "tracked aliases".
    216  1.1      cgd 	 */
    217  1.1      cgd 	if (!slash && pv[0][0] == '/' && havhash) {
    218  1.1      cgd 	    hashval1 = hash(hashval, i);
    219  1.1      cgd 	    if (!bit(xhash, hashval1))
    220  1.1      cgd 		goto cont;
    221  1.1      cgd 	}
    222  1.1      cgd 	if (pv[0][0] == 0 || eq(pv[0], STRdot))	/* don't make ./xxx */
    223  1.1      cgd 	    texec(*av, av);
    224  1.1      cgd 	else {
    225  1.1      cgd 	    dp = Strspl(*pv, sav);
    226  1.1      cgd 	    Vdp = dp;
    227  1.1      cgd 	    texec(dp, av);
    228  1.1      cgd 	    Vdp = 0;
    229  1.1      cgd 	    xfree((ptr_t) dp);
    230  1.1      cgd 	}
    231  1.1      cgd 	misses++;
    232  1.1      cgd cont:
    233  1.1      cgd 	pv++;
    234  1.1      cgd 	i++;
    235  1.1      cgd     } while (*pv);
    236  1.1      cgd     hits--;
    237  1.1      cgd     Vsav = 0;
    238  1.1      cgd     xfree((ptr_t) sav);
    239  1.1      cgd     pexerr();
    240  1.1      cgd }
    241  1.1      cgd 
    242  1.1      cgd static void
    243  1.1      cgd pexerr()
    244  1.1      cgd {
    245  1.1      cgd     /* Couldn't find the damn thing */
    246  1.1      cgd     if (expath) {
    247  1.5  mycroft 	setname(vis_str(expath));
    248  1.1      cgd 	Vexpath = 0;
    249  1.1      cgd 	xfree((ptr_t) expath);
    250  1.1      cgd 	expath = 0;
    251  1.1      cgd     }
    252  1.1      cgd     else
    253  1.1      cgd 	setname("");
    254  1.1      cgd     if (exerr)
    255  1.1      cgd 	stderror(ERR_NAME | ERR_STRING, exerr);
    256  1.1      cgd     stderror(ERR_NAME | ERR_COMMAND);
    257  1.1      cgd }
    258  1.1      cgd 
    259  1.1      cgd /*
    260  1.1      cgd  * Execute command f, arg list t.
    261  1.1      cgd  * Record error message if not found.
    262  1.1      cgd  * Also do shell scripts here.
    263  1.1      cgd  */
    264  1.1      cgd static void
    265  1.1      cgd texec(sf, st)
    266  1.1      cgd     Char   *sf;
    267  1.1      cgd     register Char **st;
    268  1.1      cgd {
    269  1.1      cgd     register char **t;
    270  1.1      cgd     register char *f;
    271  1.1      cgd     register struct varent *v;
    272  1.1      cgd     register Char **vp;
    273  1.1      cgd     Char   *lastsh[2];
    274  1.1      cgd     int     fd;
    275  1.1      cgd     unsigned char c;
    276  1.1      cgd     Char   *st0, **ost;
    277  1.1      cgd 
    278  1.1      cgd     /* The order for the conversions is significant */
    279  1.1      cgd     t = short2blk(st);
    280  1.1      cgd     f = short2str(sf);
    281  1.1      cgd     Vt = t;
    282  1.1      cgd     errno = 0;			/* don't use a previous error */
    283  1.1      cgd     (void) execve(f, t, environ);
    284  1.1      cgd     Vt = 0;
    285  1.1      cgd     blkfree((Char **) t);
    286  1.1      cgd     switch (errno) {
    287  1.1      cgd 
    288  1.1      cgd     case ENOEXEC:
    289  1.1      cgd 	/*
    290  1.1      cgd 	 * From: casper (at) fwi.uva.nl (Casper H.S. Dik) If we could not execute
    291  1.1      cgd 	 * it, don't feed it to the shell if it looks like a binary!
    292  1.1      cgd 	 */
    293  1.1      cgd 	if ((fd = open(f, O_RDONLY)) != -1) {
    294  1.1      cgd 	    if (read(fd, (char *) &c, 1) == 1) {
    295  1.1      cgd 		if (!Isprint(c) && (c != '\n' && c != '\t')) {
    296  1.1      cgd 		    (void) close(fd);
    297  1.1      cgd 		    /*
    298  1.1      cgd 		     * We *know* what ENOEXEC means.
    299  1.1      cgd 		     */
    300  1.1      cgd 		    stderror(ERR_ARCH, f, strerror(errno));
    301  1.1      cgd 		}
    302  1.1      cgd 	    }
    303  1.1      cgd #ifdef _PATH_BSHELL
    304  1.1      cgd 	    else
    305  1.1      cgd 		c = '#';
    306  1.1      cgd #endif
    307  1.1      cgd 	    (void) close(fd);
    308  1.1      cgd 	}
    309  1.1      cgd 	/*
    310  1.1      cgd 	 * If there is an alias for shell, then put the words of the alias in
    311  1.1      cgd 	 * front of the argument list replacing the command name. Note no
    312  1.1      cgd 	 * interpretation of the words at this point.
    313  1.1      cgd 	 */
    314  1.1      cgd 	v = adrof1(STRshell, &aliases);
    315  1.1      cgd 	if (v == 0) {
    316  1.1      cgd 	    vp = lastsh;
    317  1.1      cgd 	    vp[0] = adrof(STRshell) ? value(STRshell) : STR_SHELLPATH;
    318  1.1      cgd 	    vp[1] = NULL;
    319  1.1      cgd #ifdef _PATH_BSHELL
    320  1.1      cgd 	    if (fd != -1 && c != '#')
    321  1.1      cgd 		vp[0] = STR_BSHELL;
    322  1.1      cgd #endif
    323  1.1      cgd 	}
    324  1.1      cgd 	else
    325  1.1      cgd 	    vp = v->vec;
    326  1.1      cgd 	st0 = st[0];
    327  1.1      cgd 	st[0] = sf;
    328  1.1      cgd 	ost = st;
    329  1.1      cgd 	st = blkspl(vp, st);	/* Splice up the new arglst */
    330  1.1      cgd 	ost[0] = st0;
    331  1.1      cgd 	sf = *st;
    332  1.1      cgd 	/* The order for the conversions is significant */
    333  1.1      cgd 	t = short2blk(st);
    334  1.1      cgd 	f = short2str(sf);
    335  1.1      cgd 	xfree((ptr_t) st);
    336  1.1      cgd 	Vt = t;
    337  1.1      cgd 	(void) execve(f, t, environ);
    338  1.1      cgd 	Vt = 0;
    339  1.1      cgd 	blkfree((Char **) t);
    340  1.1      cgd 	/* The sky is falling, the sky is falling! */
    341  1.1      cgd 
    342  1.1      cgd     case ENOMEM:
    343  1.1      cgd 	stderror(ERR_SYSTEM, f, strerror(errno));
    344  1.1      cgd 
    345  1.1      cgd     case ENOENT:
    346  1.1      cgd 	break;
    347  1.1      cgd 
    348  1.1      cgd     default:
    349  1.1      cgd 	if (exerr == 0) {
    350  1.1      cgd 	    exerr = strerror(errno);
    351  1.1      cgd 	    if (expath)
    352  1.1      cgd 		xfree((ptr_t) expath);
    353  1.1      cgd 	    expath = Strsave(sf);
    354  1.1      cgd 	    Vexpath = expath;
    355  1.1      cgd 	}
    356  1.1      cgd     }
    357  1.1      cgd }
    358  1.1      cgd 
    359  1.1      cgd /*ARGSUSED*/
    360  1.1      cgd void
    361  1.1      cgd execash(t, kp)
    362  1.5  mycroft     Char  **t;
    363  1.1      cgd     register struct command *kp;
    364  1.1      cgd {
    365  1.5  mycroft     int     saveIN, saveOUT, saveDIAG, saveSTD;
    366  1.5  mycroft     int     oSHIN;
    367  1.5  mycroft     int     oSHOUT;
    368  1.5  mycroft     int     oSHERR;
    369  1.5  mycroft     int     oOLDSTD;
    370  1.5  mycroft     jmp_buf osetexit;
    371  1.5  mycroft     int	    my_reenter;
    372  1.5  mycroft     int     odidfds;
    373  1.5  mycroft     sig_t   osigint, osigquit, osigterm;
    374  1.5  mycroft 
    375  1.1      cgd     if (chkstop == 0 && setintr)
    376  1.1      cgd 	panystop(0);
    377  1.5  mycroft     /*
    378  1.5  mycroft      * Hmm, we don't really want to do that now because we might
    379  1.5  mycroft      * fail, but what is the choice
    380  1.5  mycroft      */
    381  1.1      cgd     rechist();
    382  1.5  mycroft 
    383  1.5  mycroft     osigint  = signal(SIGINT, parintr);
    384  1.5  mycroft     osigquit = signal(SIGQUIT, parintr);
    385  1.5  mycroft     osigterm = signal(SIGTERM, parterm);
    386  1.5  mycroft 
    387  1.5  mycroft     odidfds = didfds;
    388  1.5  mycroft     oSHIN = SHIN;
    389  1.5  mycroft     oSHOUT = SHOUT;
    390  1.5  mycroft     oSHERR = SHERR;
    391  1.5  mycroft     oOLDSTD = OLDSTD;
    392  1.5  mycroft 
    393  1.5  mycroft     saveIN = dcopy(SHIN, -1);
    394  1.5  mycroft     saveOUT = dcopy(SHOUT, -1);
    395  1.5  mycroft     saveDIAG = dcopy(SHERR, -1);
    396  1.5  mycroft     saveSTD = dcopy(OLDSTD, -1);
    397  1.5  mycroft 
    398  1.1      cgd     lshift(kp->t_dcom, 1);
    399  1.5  mycroft 
    400  1.5  mycroft     getexit(osetexit);
    401  1.5  mycroft 
    402  1.5  mycroft     if ((my_reenter = setexit()) == 0) {
    403  1.5  mycroft 	SHIN = dcopy(0, -1);
    404  1.5  mycroft 	SHOUT = dcopy(1, -1);
    405  1.5  mycroft 	SHERR = dcopy(2, -1);
    406  1.5  mycroft 	didfds = 0;
    407  1.5  mycroft 	doexec(t, kp);
    408  1.5  mycroft     }
    409  1.5  mycroft 
    410  1.5  mycroft     (void) signal(SIGINT, osigint);
    411  1.5  mycroft     (void) signal(SIGQUIT, osigquit);
    412  1.5  mycroft     (void) signal(SIGTERM, osigterm);
    413  1.5  mycroft 
    414  1.5  mycroft     doneinp = 0;
    415  1.5  mycroft     didfds = odidfds;
    416  1.5  mycroft     (void) close(SHIN);
    417  1.5  mycroft     (void) close(SHOUT);
    418  1.5  mycroft     (void) close(SHERR);
    419  1.5  mycroft     (void) close(OLDSTD);
    420  1.5  mycroft     SHIN = dmove(saveIN, oSHIN);
    421  1.5  mycroft     SHOUT = dmove(saveOUT, oSHOUT);
    422  1.5  mycroft     SHERR = dmove(saveDIAG, oSHERR);
    423  1.5  mycroft     OLDSTD = dmove(saveSTD, oOLDSTD);
    424  1.5  mycroft 
    425  1.5  mycroft     resexit(osetexit);
    426  1.5  mycroft     if (my_reenter)
    427  1.5  mycroft 	stderror(ERR_SILENT);
    428  1.1      cgd }
    429  1.1      cgd 
    430  1.1      cgd void
    431  1.1      cgd xechoit(t)
    432  1.1      cgd     Char  **t;
    433  1.1      cgd {
    434  1.1      cgd     if (adrof(STRecho)) {
    435  1.5  mycroft 	(void) fflush(csherr);
    436  1.5  mycroft 	blkpr(csherr, t);
    437  1.5  mycroft 	(void) fputc('\n', csherr);
    438  1.1      cgd     }
    439  1.1      cgd }
    440  1.1      cgd 
    441  1.1      cgd void
    442  1.5  mycroft /*ARGSUSED*/
    443  1.5  mycroft dohash(v, t)
    444  1.5  mycroft     Char **v;
    445  1.5  mycroft     struct command *t;
    446  1.1      cgd {
    447  1.1      cgd     DIR    *dirp;
    448  1.1      cgd     register struct dirent *dp;
    449  1.1      cgd     register int cnt;
    450  1.1      cgd     int     i = 0;
    451  1.5  mycroft     struct varent *pathv = adrof(STRpath);
    452  1.1      cgd     Char  **pv;
    453  1.1      cgd     int     hashval;
    454  1.1      cgd 
    455  1.1      cgd     havhash = 1;
    456  1.1      cgd     for (cnt = 0; cnt < sizeof xhash; cnt++)
    457  1.1      cgd 	xhash[cnt] = 0;
    458  1.5  mycroft     if (pathv == 0)
    459  1.1      cgd 	return;
    460  1.5  mycroft     for (pv = pathv->vec; *pv; pv++, i++) {
    461  1.1      cgd 	if (pv[0][0] != '/')
    462  1.1      cgd 	    continue;
    463  1.1      cgd 	dirp = opendir(short2str(*pv));
    464  1.1      cgd 	if (dirp == NULL)
    465  1.1      cgd 	    continue;
    466  1.1      cgd 	while ((dp = readdir(dirp)) != NULL) {
    467  1.1      cgd 	    if (dp->d_ino == 0)
    468  1.1      cgd 		continue;
    469  1.1      cgd 	    if (dp->d_name[0] == '.' &&
    470  1.1      cgd 		(dp->d_name[1] == '\0' ||
    471  1.5  mycroft 		 (dp->d_name[1] == '.' && dp->d_name[2] == '\0')))
    472  1.1      cgd 		continue;
    473  1.1      cgd 	    hashval = hash(hashname(str2short(dp->d_name)), i);
    474  1.1      cgd 	    bis(xhash, hashval);
    475  1.1      cgd 	    /* tw_add_comm_name (dp->d_name); */
    476  1.1      cgd 	}
    477  1.1      cgd 	(void) closedir(dirp);
    478  1.1      cgd     }
    479  1.1      cgd }
    480  1.1      cgd 
    481  1.1      cgd void
    482  1.5  mycroft /*ARGSUSED*/
    483  1.5  mycroft dounhash(v, t)
    484  1.5  mycroft     Char **v;
    485  1.5  mycroft     struct command *t;
    486  1.1      cgd {
    487  1.1      cgd     havhash = 0;
    488  1.1      cgd }
    489  1.1      cgd 
    490  1.1      cgd void
    491  1.5  mycroft /*ARGSUSED*/
    492  1.5  mycroft hashstat(v, t)
    493  1.5  mycroft     Char **v;
    494  1.5  mycroft     struct command *t;
    495  1.1      cgd {
    496  1.1      cgd     if (hits + misses)
    497  1.5  mycroft 	(void) fprintf(cshout, "%d hits, %d misses, %d%%\n",
    498  1.5  mycroft 		       hits, misses, 100 * hits / (hits + misses));
    499  1.1      cgd }
    500  1.1      cgd 
    501  1.1      cgd /*
    502  1.1      cgd  * Hash a command name.
    503  1.1      cgd  */
    504  1.1      cgd static int
    505  1.1      cgd hashname(cp)
    506  1.1      cgd     register Char *cp;
    507  1.1      cgd {
    508  1.1      cgd     register long h = 0;
    509  1.1      cgd 
    510  1.1      cgd     while (*cp)
    511  1.1      cgd 	h = hash(h, *cp++);
    512  1.1      cgd     return ((int) h);
    513  1.5  mycroft }
    514  1.5  mycroft 
    515  1.5  mycroft static int
    516  1.5  mycroft iscommand(name)
    517  1.5  mycroft     Char   *name;
    518  1.5  mycroft {
    519  1.5  mycroft     register Char **pv;
    520  1.5  mycroft     register Char *sav;
    521  1.5  mycroft     register struct varent *v;
    522  1.5  mycroft     register bool slash = any(short2str(name), '/');
    523  1.5  mycroft     register int hashval = 0, hashval1, i;
    524  1.5  mycroft 
    525  1.5  mycroft     v = adrof(STRpath);
    526  1.5  mycroft     if (v == 0 || v->vec[0] == 0 || slash)
    527  1.5  mycroft 	pv = justabs;
    528  1.5  mycroft     else
    529  1.5  mycroft 	pv = v->vec;
    530  1.5  mycroft     sav = Strspl(STRslash, name);	/* / command name for postpending */
    531  1.5  mycroft     if (havhash)
    532  1.5  mycroft 	hashval = hashname(name);
    533  1.5  mycroft     i = 0;
    534  1.5  mycroft     do {
    535  1.5  mycroft 	if (!slash && pv[0][0] == '/' && havhash) {
    536  1.5  mycroft 	    hashval1 = hash(hashval, i);
    537  1.5  mycroft 	    if (!bit(xhash, hashval1))
    538  1.5  mycroft 		goto cont;
    539  1.5  mycroft 	}
    540  1.5  mycroft 	if (pv[0][0] == 0 || eq(pv[0], STRdot)) {	/* don't make ./xxx */
    541  1.5  mycroft 	    if (executable(NULL, name, 0)) {
    542  1.5  mycroft 		xfree((ptr_t) sav);
    543  1.5  mycroft 		return i + 1;
    544  1.5  mycroft 	    }
    545  1.5  mycroft 	}
    546  1.5  mycroft 	else {
    547  1.5  mycroft 	    if (executable(*pv, sav, 0)) {
    548  1.5  mycroft 		xfree((ptr_t) sav);
    549  1.5  mycroft 		return i + 1;
    550  1.5  mycroft 	    }
    551  1.5  mycroft 	}
    552  1.5  mycroft cont:
    553  1.5  mycroft 	pv++;
    554  1.5  mycroft 	i++;
    555  1.5  mycroft     } while (*pv);
    556  1.5  mycroft     xfree((ptr_t) sav);
    557  1.5  mycroft     return 0;
    558  1.5  mycroft }
    559  1.5  mycroft 
    560  1.5  mycroft /* Also by:
    561  1.5  mycroft  *  Andreas Luik <luik (at) isaak.isa.de>
    562  1.5  mycroft  *  I S A  GmbH - Informationssysteme fuer computerintegrierte Automatisierung
    563  1.5  mycroft  *  Azenberstr. 35
    564  1.5  mycroft  *  D-7000 Stuttgart 1
    565  1.5  mycroft  *  West-Germany
    566  1.5  mycroft  * is the executable() routine below and changes to iscommand().
    567  1.5  mycroft  * Thanks again!!
    568  1.5  mycroft  */
    569  1.5  mycroft 
    570  1.5  mycroft /*
    571  1.5  mycroft  * executable() examines the pathname obtained by concatenating dir and name
    572  1.5  mycroft  * (dir may be NULL), and returns 1 either if it is executable by us, or
    573  1.5  mycroft  * if dir_ok is set and the pathname refers to a directory.
    574  1.5  mycroft  * This is a bit kludgy, but in the name of optimization...
    575  1.5  mycroft  */
    576  1.5  mycroft static int
    577  1.5  mycroft executable(dir, name, dir_ok)
    578  1.5  mycroft     Char   *dir, *name;
    579  1.5  mycroft     bool    dir_ok;
    580  1.5  mycroft {
    581  1.5  mycroft     struct stat stbuf;
    582  1.5  mycroft     Char    path[MAXPATHLEN + 1], *dp, *sp;
    583  1.5  mycroft     char   *strname;
    584  1.5  mycroft 
    585  1.5  mycroft     if (dir && *dir) {
    586  1.5  mycroft 	for (dp = path, sp = dir; *sp; *dp++ = *sp++)
    587  1.5  mycroft 	    if (dp == &path[MAXPATHLEN + 1]) {
    588  1.5  mycroft 		*--dp = '\0';
    589  1.5  mycroft 		break;
    590  1.5  mycroft 	    }
    591  1.5  mycroft 	for (sp = name; *sp; *dp++ = *sp++)
    592  1.5  mycroft 	    if (dp == &path[MAXPATHLEN + 1]) {
    593  1.5  mycroft 		*--dp = '\0';
    594  1.5  mycroft 		break;
    595  1.5  mycroft 	    }
    596  1.5  mycroft 	*dp = '\0';
    597  1.5  mycroft 	strname = short2str(path);
    598  1.5  mycroft     }
    599  1.5  mycroft     else
    600  1.5  mycroft 	strname = short2str(name);
    601  1.5  mycroft     return (stat(strname, &stbuf) != -1 &&
    602  1.5  mycroft 	    ((S_ISREG(stbuf.st_mode) &&
    603  1.5  mycroft     /* save time by not calling access() in the hopeless case */
    604  1.5  mycroft 	      (stbuf.st_mode & (S_IXOTH | S_IXGRP | S_IXUSR)) &&
    605  1.5  mycroft 	      access(strname, X_OK) == 0) ||
    606  1.5  mycroft 	     (dir_ok && S_ISDIR(stbuf.st_mode))));
    607  1.5  mycroft }
    608  1.5  mycroft 
    609  1.5  mycroft /* The dowhich() is by:
    610  1.5  mycroft  *  Andreas Luik <luik (at) isaak.isa.de>
    611  1.5  mycroft  *  I S A  GmbH - Informationssysteme fuer computerintegrierte Automatisierung
    612  1.5  mycroft  *  Azenberstr. 35
    613  1.5  mycroft  *  D-7000 Stuttgart 1
    614  1.5  mycroft  *  West-Germany
    615  1.5  mycroft  * Thanks!!
    616  1.5  mycroft  */
    617  1.5  mycroft /*ARGSUSED*/
    618  1.5  mycroft void
    619  1.5  mycroft dowhich(v, c)
    620  1.5  mycroft     register Char **v;
    621  1.5  mycroft     struct command *c;
    622  1.5  mycroft {
    623  1.5  mycroft     struct wordent lex[3];
    624  1.5  mycroft     struct varent *vp;
    625  1.5  mycroft 
    626  1.5  mycroft     lex[0].next = &lex[1];
    627  1.5  mycroft     lex[1].next = &lex[2];
    628  1.5  mycroft     lex[2].next = &lex[0];
    629  1.5  mycroft 
    630  1.5  mycroft     lex[0].prev = &lex[2];
    631  1.5  mycroft     lex[1].prev = &lex[0];
    632  1.5  mycroft     lex[2].prev = &lex[1];
    633  1.5  mycroft 
    634  1.5  mycroft     lex[0].word = STRNULL;
    635  1.5  mycroft     lex[2].word = STRret;
    636  1.5  mycroft 
    637  1.5  mycroft     while (*++v) {
    638  1.5  mycroft 	if ((vp = adrof1(*v, &aliases)) != NULL) {
    639  1.5  mycroft 	    (void) fprintf(cshout, "%s: \t aliased to ", vis_str(*v));
    640  1.5  mycroft 	    blkpr(cshout, vp->vec);
    641  1.5  mycroft 	    (void) fputc('\n', cshout);
    642  1.5  mycroft 	}
    643  1.5  mycroft 	else {
    644  1.5  mycroft 	    lex[1].word = *v;
    645  1.5  mycroft 	    tellmewhat(lex);
    646  1.5  mycroft 	}
    647  1.5  mycroft     }
    648  1.5  mycroft }
    649  1.5  mycroft 
    650  1.5  mycroft static void
    651  1.5  mycroft tellmewhat(lex)
    652  1.5  mycroft     struct wordent *lex;
    653  1.5  mycroft {
    654  1.5  mycroft     register int i;
    655  1.5  mycroft     register struct biltins *bptr;
    656  1.5  mycroft     register struct wordent *sp = lex->next;
    657  1.5  mycroft     bool    aliased = 0;
    658  1.5  mycroft     Char   *s0, *s1, *s2;
    659  1.5  mycroft     Char    qc;
    660  1.5  mycroft 
    661  1.5  mycroft     if (adrof1(sp->word, &aliases)) {
    662  1.5  mycroft 	alias(lex);
    663  1.5  mycroft 	sp = lex->next;
    664  1.5  mycroft 	aliased = 1;
    665  1.5  mycroft     }
    666  1.5  mycroft 
    667  1.5  mycroft     s0 = sp->word;		/* to get the memory freeing right... */
    668  1.5  mycroft 
    669  1.5  mycroft     /* handle quoted alias hack */
    670  1.5  mycroft     if ((*(sp->word) & (QUOTE | TRIM)) == QUOTE)
    671  1.5  mycroft 	(sp->word)++;
    672  1.5  mycroft 
    673  1.5  mycroft     /* do quoting, if it hasn't been done */
    674  1.5  mycroft     s1 = s2 = sp->word;
    675  1.5  mycroft     while (*s2)
    676  1.5  mycroft 	switch (*s2) {
    677  1.5  mycroft 	case '\'':
    678  1.5  mycroft 	case '"':
    679  1.5  mycroft 	    qc = *s2++;
    680  1.5  mycroft 	    while (*s2 && *s2 != qc)
    681  1.5  mycroft 		*s1++ = *s2++ | QUOTE;
    682  1.5  mycroft 	    if (*s2)
    683  1.5  mycroft 		s2++;
    684  1.5  mycroft 	    break;
    685  1.5  mycroft 	case '\\':
    686  1.5  mycroft 	    if (*++s2)
    687  1.5  mycroft 		*s1++ = *s2++ | QUOTE;
    688  1.5  mycroft 	    break;
    689  1.5  mycroft 	default:
    690  1.5  mycroft 	    *s1++ = *s2++;
    691  1.5  mycroft 	}
    692  1.5  mycroft     *s1 = '\0';
    693  1.5  mycroft 
    694  1.5  mycroft     for (bptr = bfunc; bptr < &bfunc[nbfunc]; bptr++) {
    695  1.5  mycroft 	if (eq(sp->word, str2short(bptr->bname))) {
    696  1.5  mycroft 	    if (aliased)
    697  1.5  mycroft 		prlex(cshout, lex);
    698  1.5  mycroft 	    (void) fprintf(cshout, "%s: shell built-in command.\n",
    699  1.5  mycroft 			   vis_str(sp->word));
    700  1.5  mycroft 	    sp->word = s0;	/* we save and then restore this */
    701  1.5  mycroft 	    return;
    702  1.5  mycroft 	}
    703  1.5  mycroft     }
    704  1.5  mycroft 
    705  1.5  mycroft     if ((i = iscommand(strip(sp->word))) != 0) {
    706  1.5  mycroft 	register Char **pv;
    707  1.5  mycroft 	register struct varent *v;
    708  1.5  mycroft 	bool    slash = any(short2str(sp->word), '/');
    709  1.5  mycroft 
    710  1.5  mycroft 	v = adrof(STRpath);
    711  1.5  mycroft 	if (v == 0 || v->vec[0] == 0 || slash)
    712  1.5  mycroft 	    pv = justabs;
    713  1.5  mycroft 	else
    714  1.5  mycroft 	    pv = v->vec;
    715  1.5  mycroft 
    716  1.5  mycroft 	while (--i)
    717  1.5  mycroft 	    pv++;
    718  1.5  mycroft 	if (pv[0][0] == 0 || eq(pv[0], STRdot)) {
    719  1.5  mycroft 	    sp->word = Strspl(STRdotsl, sp->word);
    720  1.5  mycroft 	    prlex(cshout, lex);
    721  1.5  mycroft 	    xfree((ptr_t) sp->word);
    722  1.5  mycroft 	    sp->word = s0;	/* we save and then restore this */
    723  1.5  mycroft 	    return;
    724  1.5  mycroft 	}
    725  1.5  mycroft 	s1 = Strspl(*pv, STRslash);
    726  1.5  mycroft 	sp->word = Strspl(s1, sp->word);
    727  1.5  mycroft 	xfree((ptr_t) s1);
    728  1.5  mycroft 	prlex(cshout, lex);
    729  1.5  mycroft 	xfree((ptr_t) sp->word);
    730  1.5  mycroft     }
    731  1.5  mycroft     else {
    732  1.5  mycroft 	if (aliased)
    733  1.5  mycroft 	    prlex(cshout, lex);
    734  1.5  mycroft 	(void) fprintf(csherr, "%s: Command not found.\n", vis_str(sp->word));
    735  1.5  mycroft     }
    736  1.5  mycroft     sp->word = s0;		/* we save and then restore this */
    737  1.1      cgd }
    738