440 lines
9.0 KiB
C
440 lines
9.0 KiB
C
/*
|
|
* Copyright (c) 1980 Regents of the University of California.
|
|
* All rights reserved. The Berkeley Software License Agreement
|
|
* specifies the terms and conditions for redistribution.
|
|
*/
|
|
|
|
#ifndef lint
|
|
static char *sccsid = "@(#)sh.exec.c 1.1 92/07/30 SMI; from UCB 5.2 6/6/85";
|
|
#endif
|
|
|
|
#include "sh.h"
|
|
#include <sys/dir.h>
|
|
#include "sh.tconst.h"
|
|
|
|
|
|
/*
|
|
* C shell
|
|
*/
|
|
|
|
/*
|
|
* System level search and execute of a command.
|
|
* We look in each directory for the specified command name.
|
|
* If the name contains a '/' then we execute only the full path name.
|
|
* If there is no search path then we execute only full path names.
|
|
*/
|
|
|
|
/*
|
|
* As we search for the command we note the first non-trivial error
|
|
* message for presentation to the user. This allows us often
|
|
* to show that a file has the wrong mode/no access when the file
|
|
* is not in the last component of the search path, so we must
|
|
* go on after first detecting the error.
|
|
*/
|
|
char *exerr; /* Execution error message */
|
|
tchar *expath; /* Path for exerr */
|
|
|
|
/*
|
|
* Xhash is an array of HSHSIZ bits (HSHSIZ / 8 chars), which are used
|
|
* to hash execs. If it is allocated (havhash true), then to tell
|
|
* whether ``name'' is (possibly) present in the i'th component
|
|
* of the variable path, you look at the bit in xhash indexed by
|
|
* hash(hashname("name"), i). This is setup automatically
|
|
* after .login is executed, and recomputed whenever ``path'' is
|
|
* changed.
|
|
* The two part hash function is designed to let texec() call the
|
|
* more expensive hashname() only once and the simple hash() several
|
|
* times (once for each path component checked).
|
|
* Byte size is assumed to be 8.
|
|
*/
|
|
#define HSHSIZ 8192 /* 1k bytes */
|
|
#define HSHMASK (HSHSIZ - 1)
|
|
#define HSHMUL 243
|
|
char xhash[HSHSIZ / 8];
|
|
#define hash(a, b) ((a) * HSHMUL + (b) & HSHMASK)
|
|
#define bit(h, b) ((h)[(b) >> 3] & 1 << ((b) & 7)) /* bit test */
|
|
#define bis(h, b) ((h)[(b) >> 3] |= 1 << ((b) & 7)) /* bit set */
|
|
#ifdef VFORK
|
|
int hits, misses;
|
|
#endif
|
|
|
|
extern DIR *opendir_();
|
|
|
|
/* Dummy search path for just absolute search when no path */
|
|
tchar *justabs[] = { S_ /* "" */, 0 };
|
|
|
|
doexec(t)
|
|
register struct command *t;
|
|
{
|
|
tchar *sav;
|
|
register tchar *dp, **pv, **av;
|
|
register struct varent *v;
|
|
bool slash = any('/', t->t_dcom[0]);
|
|
int hashval, hashval1, i;
|
|
tchar *blk[2];
|
|
#ifdef TRACE
|
|
tprintf("TRACE- doexec()\n");
|
|
#endif
|
|
|
|
/*
|
|
* Glob the command name. If this does anything, then we
|
|
* will execute the command only relative to ".". One special
|
|
* case: if there is no PATH, then we execute only commands
|
|
* which start with '/'.
|
|
*/
|
|
dp = globone(t->t_dcom[0]);
|
|
sav = t->t_dcom[0];
|
|
exerr = 0; expath = t->t_dcom[0] = dp;
|
|
xfree(sav);
|
|
v = adrof(S_path /*"path"*/);
|
|
if (v == 0 && expath[0] != '/')
|
|
pexerr();
|
|
slash |= gflag;
|
|
|
|
/*
|
|
* Glob the argument list, if necessary.
|
|
* Otherwise trim off the quote bits.
|
|
*/
|
|
gflag = 0; av = &t->t_dcom[1];
|
|
tglob(av);
|
|
if (gflag) {
|
|
av = glob(av);
|
|
if (av == 0)
|
|
error("No match");
|
|
}
|
|
blk[0] = t->t_dcom[0];
|
|
blk[1] = 0;
|
|
av = blkspl(blk, av);
|
|
#ifdef VFORK
|
|
Vav = av;
|
|
#endif
|
|
trim(av);
|
|
|
|
xechoit(av); /* Echo command if -x */
|
|
/*
|
|
* Since all internal file descriptors are set to close on exec,
|
|
* we don't need to close them explicitly here. Just reorient
|
|
* ourselves for error messages.
|
|
*/
|
|
SHIN = 0; SHOUT = 1; SHDIAG = 2; OLDSTD = 0;
|
|
|
|
/*
|
|
* We must do this AFTER any possible forking (like `foo`
|
|
* in glob) so that this shell can still do subprocesses.
|
|
*/
|
|
(void) sigsetmask(0);
|
|
|
|
/*
|
|
* If no path, no words in path, or a / in the filename
|
|
* then restrict the command search.
|
|
*/
|
|
if (v == 0 || v->vec[0] == 0 || slash)
|
|
pv = justabs;
|
|
else
|
|
pv = v->vec;
|
|
sav = strspl(S_SLASH /* "/" */, *av); /* / command name for postpending */
|
|
#ifdef VFORK
|
|
Vsav = sav;
|
|
#endif
|
|
if (havhash)
|
|
hashval = hashname(*av);
|
|
i = 0;
|
|
#ifdef VFORK
|
|
hits++;
|
|
#endif
|
|
do {
|
|
if (!slash && pv[0][0] == '/' && havhash) {
|
|
hashval1 = hash(hashval, i);
|
|
if (!bit(xhash, hashval1))
|
|
goto cont;
|
|
}
|
|
if (pv[0][0] == 0 || eq(pv[0], S_DOT/*"."*/)) /* don't make ./xxx */
|
|
texec(t, *av, av);
|
|
else {
|
|
dp = strspl(*pv, sav);
|
|
#ifdef VFORK
|
|
Vdp = dp;
|
|
#endif
|
|
texec(t, dp, av);
|
|
#ifdef VFORK
|
|
Vdp = 0;
|
|
#endif
|
|
xfree(dp);
|
|
}
|
|
#ifdef VFORK
|
|
misses++;
|
|
#endif
|
|
cont:
|
|
pv++;
|
|
i++;
|
|
} while (*pv);
|
|
#ifdef VFORK
|
|
hits--;
|
|
#endif
|
|
#ifdef VFORK
|
|
Vsav = 0;
|
|
Vav = 0;
|
|
#endif
|
|
xfree(sav);
|
|
xfree( (char *)av);
|
|
pexerr();
|
|
}
|
|
|
|
pexerr()
|
|
{
|
|
|
|
#ifdef TRACE
|
|
tprintf("TRACE- pexerr()\n");
|
|
#endif
|
|
/* Couldn't find the damn thing */
|
|
setname(expath);
|
|
/* xfree(expath); */
|
|
if (exerr)
|
|
bferr(exerr);
|
|
bferr("Command not found");
|
|
}
|
|
|
|
/*
|
|
* Execute command f, arg list t.
|
|
* Record error message if not found.
|
|
* Also do shell scripts here.
|
|
*/
|
|
texec(cmd, f, t)
|
|
register struct command *cmd;
|
|
tchar *f;
|
|
register tchar **t;
|
|
{
|
|
register struct varent *v;
|
|
register tchar **vp;
|
|
extern char *sys_errlist[];
|
|
tchar *lastsh[2];
|
|
|
|
#ifdef TRACE
|
|
tprintf("TRACE- texec()\n");
|
|
#endif
|
|
|
|
/* convert cfname and cargs from tchar to char */
|
|
tconvert(cmd, f, t);
|
|
execv(cmd->cfname, cmd->cargs);
|
|
|
|
/*
|
|
* exec retuned, free up allocations from above
|
|
* tconvert(), zero cfname and cargs to prevent
|
|
* duplicate free() in freesyn()
|
|
*/
|
|
xfree(cmd->cfname);
|
|
chr_blkfree(cmd->cargs);
|
|
cmd->cfname = (char *) 0;
|
|
cmd->cargs = (char **) 0;
|
|
|
|
switch (errno) {
|
|
case ENOEXEC:
|
|
/* check that this is not a binary file */
|
|
{
|
|
register int ff = open_(f, 0);
|
|
tchar ch;
|
|
|
|
if (ff != -1 && read_(ff, &ch, 1) == 1 && !isprint(ch)
|
|
&& !isspace(ch)) {
|
|
printf("Cannot execute binary file.\n");
|
|
Perror(f);
|
|
(void) close(ff);
|
|
return;
|
|
}
|
|
(void) close(ff);
|
|
}
|
|
/*
|
|
* If there is an alias for shell, then
|
|
* put the words of the alias in front of the
|
|
* argument list replacing the command name.
|
|
* Note no interpretation of the words at this point.
|
|
*/
|
|
v = adrof1(S_shell /*"shell"*/, &aliases);
|
|
if (v == 0) {
|
|
#ifdef OTHERSH
|
|
register int ff = open_(f, 0);
|
|
tchar ch;
|
|
#endif
|
|
|
|
vp = lastsh;
|
|
vp[0] = adrof(S_shell /*"shell"*/) ? value(S_shell /*"shell"*/) : S_SHELLPATH/*SHELLPATH*/;
|
|
vp[1] = (tchar *) NULL;
|
|
#ifdef OTHERSH
|
|
if (ff != -1 && read_(ff, &ch, 1) == 1 && ch != '#')
|
|
vp[0] = S_OTHERSH/*OTHERSH*/;
|
|
(void) close(ff);
|
|
#endif
|
|
} else
|
|
vp = v->vec;
|
|
t[0] = f;
|
|
t = blkspl(vp, t); /* Splice up the new arglst */
|
|
f = *t;
|
|
|
|
tconvert(cmd, f, t); /* convert tchar to char */
|
|
|
|
/*
|
|
* now done with tchar arg list t,
|
|
* free the space calloc'd by above blkspl()
|
|
*/
|
|
xfree((char *) t);
|
|
|
|
execv(cmd->cfname, cmd->cargs); /* exec the command */
|
|
|
|
/* exec returned, same free'ing as above */
|
|
xfree(cmd->cfname);
|
|
chr_blkfree(cmd->cargs);
|
|
cmd->cfname = (char *) 0;
|
|
cmd->cargs = (char **) 0;
|
|
|
|
/* The sky is falling, the sky is falling! */
|
|
|
|
case ENOMEM:
|
|
Perror(f);
|
|
|
|
case ENOENT:
|
|
break;
|
|
|
|
default:
|
|
if (exerr == 0) {
|
|
exerr = sys_errlist[errno];
|
|
expath = savestr(f);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
static
|
|
tconvert(cmd, fname, list)
|
|
register struct command *cmd;
|
|
register tchar *fname, **list;
|
|
{
|
|
register char **rc;
|
|
register int len;
|
|
|
|
cmd->cfname = tstostr(NULL, fname);
|
|
|
|
len = blklen(list);
|
|
rc = cmd->cargs = (char **)
|
|
calloc((u_int) (len + 1), sizeof(char **));
|
|
while (len--)
|
|
*rc++ = tstostr(NULL, *list++);
|
|
*rc = NULL;
|
|
}
|
|
|
|
|
|
/*ARGSUSED*/
|
|
execash(t, kp)
|
|
tchar **t;
|
|
register struct command *kp;
|
|
{
|
|
#ifdef TRACE
|
|
tprintf("TRACE- execash()\n");
|
|
#endif
|
|
|
|
rechist();
|
|
(void) signal(SIGINT, parintr);
|
|
(void) signal(SIGQUIT, parintr);
|
|
(void) signal(SIGTERM, parterm); /* if doexec loses, screw */
|
|
lshift(kp->t_dcom, 1);
|
|
exiterr++;
|
|
doexec(kp);
|
|
/*NOTREACHED*/
|
|
}
|
|
|
|
xechoit(t)
|
|
tchar **t;
|
|
{
|
|
#ifdef TRACE
|
|
tprintf("TRACE- xechoit()\n");
|
|
#endif
|
|
|
|
if (adrof(S_echo /*"echo"*/)) {
|
|
flush();
|
|
haderr = 1;
|
|
blkpr(t), putchar('\n');
|
|
haderr = 0;
|
|
}
|
|
}
|
|
|
|
dohash()
|
|
{
|
|
struct stat stb;
|
|
DIR *dirp;
|
|
register struct direct *dp;
|
|
register int cnt;
|
|
int i = 0;
|
|
struct varent *v = adrof(S_path /*"path"*/);
|
|
tchar **pv;
|
|
int hashval;
|
|
tchar curdir_[MAXNAMLEN+1];
|
|
|
|
#ifdef TRACE
|
|
tprintf("TRACE- dohash()\n");
|
|
#endif
|
|
havhash = 1;
|
|
for (cnt = 0; cnt < sizeof(xhash)/sizeof(*xhash); cnt++)
|
|
xhash[cnt] = 0;
|
|
if (v == 0)
|
|
return;
|
|
for (pv = v->vec; *pv; pv++, i++) {
|
|
if (pv[0][0] != '/')
|
|
continue;
|
|
dirp = opendir_(*pv);
|
|
if (dirp == NULL)
|
|
continue;
|
|
if (fstat(dirp->dd_fd, &stb) < 0 || !isdir(stb)) {
|
|
closedir(dirp);
|
|
continue;
|
|
}
|
|
while ((dp = readdir(dirp)) != NULL) {
|
|
if (dp->d_ino == 0)
|
|
continue;
|
|
if (dp->d_name[0] == '.' &&
|
|
(dp->d_name[1] == '\0' ||
|
|
dp->d_name[1] == '.' && dp->d_name[2] == '\0'))
|
|
continue;
|
|
hashval = hash(hashname(strtots(curdir_,dp->d_name)), i);
|
|
bis(xhash, hashval);
|
|
}
|
|
closedir(dirp);
|
|
}
|
|
}
|
|
|
|
dounhash()
|
|
{
|
|
|
|
#ifdef TRACE
|
|
tprintf("TRACE- dounhash()\n");
|
|
#endif
|
|
havhash = 0;
|
|
}
|
|
|
|
#ifdef VFORK
|
|
hashstat()
|
|
{
|
|
#ifdef TRACE
|
|
tprintf("TRACE- hashstat_()\n");
|
|
#endif
|
|
|
|
if (hits+misses)
|
|
printf("%d hits, %d misses, %d%%\n",
|
|
hits, misses, 100 * hits / (hits + misses));
|
|
}
|
|
#endif
|
|
|
|
/*
|
|
* Hash a command name.
|
|
*/
|
|
hashname(cp)
|
|
register tchar *cp;
|
|
{
|
|
register long h = 0;
|
|
|
|
#ifdef TRACE
|
|
tprintf("TRACE- hashname()\n");
|
|
#endif
|
|
while (*cp)
|
|
h = hash(h, *cp++);
|
|
return ((int) h);
|
|
}
|