mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-24 23:14:14 +00:00
ksh 93u+ introduced a regression in the combination of the 'set -o pipefail' and 'set -e'/'set -o errexit' options: $ ksh93 -o errexit -o pipefail -c \ '(exit 3) | true; echo "still here despite $? status"' still here despite 3 status The bug is in how the the huge sh_exec() function in xec.c handles the 'echeck' flag. Near the end of sh_exec(), this flag triggers a sh_chktrap() call to check whether to trigger any traps, including the ERR trap -- and that same function also handles the errexit option, which is basically the same as 'trap "exit" ERR'. We can learn more easily how sh_exec() works by inserting debug warnings in all its 'switch(type&COMMSK)' cases, like: case TCOM: errormsg(SH_DICT,ERROR_warn(0),"[DEBUG] TCOM"); ... and same for all the others. With that done, the output of a very simple dummy pipeline looks as follows: $ arch/*/bin/ksh -c 'true | true | true' arch/darwin.i386-64/bin/ksh: warning: [DEBUG] TFIL arch/darwin.i386-64/bin/ksh: warning: [DEBUG] TFORK arch/darwin.i386-64/bin/ksh: warning: [DEBUG] TFORK arch/darwin.i386-64/bin/ksh: warning: [DEBUG] TSETIO arch/darwin.i386-64/bin/ksh: warning: [DEBUG] TCOM arch/darwin.i386-64/bin/ksh: warning: [DEBUG] TCOM arch/darwin.i386-64/bin/ksh: warning: [DEBUG] TCOM So, it looks like sh_exec() handles this pipeline as follows: TFIL |_____TFORK | |_____TCOM |_____TFORK | |_____TCOM |_____TSETIO |_____TCOM Each time a pipeline like command1 | command2 | ... is executed, sh_exec() is invoked with type TFIL; this then recursively invokes sh_exec() to handle the individual elements. The last element of the pipe triggers a sh_exec() run with type TSETIO; since it is run in the current shell environment, it is effectively treated as a command with an input redirection. All the previous elements are of type TFORK instead, because they are executed asynchronously in separate, forked subshell processes. Finally, the TFORK or TSETIO code then recursively calls sh_exec() again with type TCOM to actually execute the commands. When reading the code, we find that the 'echeck' flag is set as part of the TSETIO code. This makes sense of why only an error in the last element of the pipe triggers the errexit/ERR trap action. So that's the bug: the flag is set in the wrong place. This can be fixed by setting that flag in the TFIL handling code instead, as this is what calls everything else and collects all the exit statuses. So the sh_chktrap() call is now executed after handling the entire pipeline, at the TFIL recursion level. This also allows getting rid of the special-casing in the buggy TSETIO version. The SH_ERREXIT state is restored at the end of each sh_exec() call, so since we're now doing this at a lower recursion level, it will already have been restored. src/cmd/ksh93/sh/xec.c: sh_exec(): - Fix the bug as per the above. src/cmd/ksh93/tests/options.sh: - Add tests for errexit and ERR trap combined with pipefail. src/cmd/ksh93/tests/basic.sh: - Tweak a couple of tests that reported a trap wasn't triggered even if it was actually triggered more than once. Fixes: https://github.com/ksh93/ksh/issues/121 Thanks to Stéphane Chazelas for the bug report.
3799 lines
91 KiB
C
3799 lines
91 KiB
C
/***********************************************************************
|
|
* *
|
|
* This software is part of the ast package *
|
|
* Copyright (c) 1982-2012 AT&T Intellectual Property *
|
|
* and is licensed under the *
|
|
* Eclipse Public License, Version 1.0 *
|
|
* by AT&T Intellectual Property *
|
|
* *
|
|
* A copy of the License is available at *
|
|
* http://www.eclipse.org/org/documents/epl-v10.html *
|
|
* (with md5 checksum b35adb5213ca9657e911e9befb180842) *
|
|
* *
|
|
* Information and Software Systems Research *
|
|
* AT&T Research *
|
|
* Florham Park NJ *
|
|
* *
|
|
* David Korn <dgk@research.att.com> *
|
|
* *
|
|
***********************************************************************/
|
|
#pragma prototyped
|
|
/*
|
|
* UNIX shell parse tree executer
|
|
*
|
|
* David Korn
|
|
* AT&T Labs
|
|
*
|
|
*/
|
|
|
|
#include "defs.h"
|
|
#include <fcin.h>
|
|
#include "variables.h"
|
|
#include "path.h"
|
|
#include "name.h"
|
|
#include "io.h"
|
|
#include "shnodes.h"
|
|
#include "jobs.h"
|
|
#include "test.h"
|
|
#include "builtins.h"
|
|
#include "FEATURE/time"
|
|
#include "FEATURE/externs"
|
|
#include "FEATURE/locale"
|
|
#include "streval.h"
|
|
|
|
#if !_std_malloc
|
|
# include <vmalloc.h>
|
|
#endif
|
|
|
|
#if _lib_vfork
|
|
# include <ast_vfork.h>
|
|
#else
|
|
# define vfork() fork()
|
|
#endif
|
|
|
|
#define SH_NTFORK SH_TIMING
|
|
#define NV_BLTPFSH NV_ARRAY
|
|
|
|
#if _lib_nice
|
|
extern int nice(int);
|
|
#endif /* _lib_nice */
|
|
#if !_lib_spawnveg
|
|
# define spawnveg(a,b,c,d) spawnve(a,b,c)
|
|
#endif /* !_lib_spawnveg */
|
|
#if SHOPT_SPAWN
|
|
static pid_t sh_ntfork(Shell_t*,const Shnode_t*,char*[],int*,int);
|
|
#endif /* SHOPT_SPAWN */
|
|
|
|
static void sh_funct(Shell_t *,Namval_t*, int, char*[], struct argnod*,int);
|
|
static void coproc_init(Shell_t*, int pipes[]);
|
|
|
|
static void *timeout;
|
|
static char nlock;
|
|
static char pipejob;
|
|
static char nopost;
|
|
static int restorefd;
|
|
|
|
struct funenv
|
|
{
|
|
Namval_t *node;
|
|
struct argnod *env;
|
|
Namval_t **nref;
|
|
};
|
|
|
|
/* ======== command execution ========*/
|
|
|
|
#if !SHOPT_DEVFD
|
|
static void fifo_check(void *handle)
|
|
{
|
|
Shell_t *shp = (Shell_t*)handle;
|
|
pid_t pid = getppid();
|
|
if(pid==1)
|
|
{
|
|
unlink(shp->fifo);
|
|
sh_done(shp,0);
|
|
}
|
|
}
|
|
#endif /* !SHOPT_DEVFD */
|
|
|
|
#if _lib_getrusage
|
|
/* getrusage tends to have higher precision */
|
|
static void get_cpu_times(Shell_t *shp, struct timeval *tv_usr, struct timeval *tv_sys)
|
|
{
|
|
NOT_USED(shp);
|
|
struct rusage usage_self, usage_child;
|
|
|
|
getrusage(RUSAGE_SELF, &usage_self);
|
|
getrusage(RUSAGE_CHILDREN, &usage_child);
|
|
timeradd(&usage_self.ru_utime, &usage_child.ru_utime, tv_usr);
|
|
timeradd(&usage_self.ru_stime, &usage_child.ru_stime, tv_sys);
|
|
}
|
|
#else
|
|
#ifdef timeofday
|
|
static void get_cpu_times(Shell_t *shp, struct timeval *tv_usr, struct timeval *tv_sys)
|
|
{
|
|
struct tms cpu_times;
|
|
struct timeval tv1, tv2;
|
|
double dtime;
|
|
|
|
if(times(&cpu_times) == (clock_t)-1)
|
|
errormsg(SH_DICT, ERROR_exit(1), "times(3) failed: %s", strerror(errno));
|
|
|
|
dtime = (double)cpu_times.tms_utime / shp->gd->lim.clk_tck;
|
|
tv1.tv_sec = dtime / 60;
|
|
tv1.tv_usec = 1000000 * (dtime - tv1.tv_sec);
|
|
dtime = (double)cpu_times.tms_cutime / shp->gd->lim.clk_tck;
|
|
tv2.tv_sec = dtime / 60;
|
|
tv2.tv_usec = 1000000 * (dtime - tv2.tv_sec);
|
|
timeradd(&tv1, &tv2, tv_usr);
|
|
|
|
dtime = (double)cpu_times.tms_stime / shp->gd->lim.clk_tck;
|
|
tv1.tv_sec = dtime / 60;
|
|
tv1.tv_usec = 1000000 * (dtime - tv1.tv_sec);
|
|
dtime = (double)cpu_times.tms_cstime / shp->gd->lim.clk_tck;
|
|
tv2.tv_sec = dtime / 60;
|
|
tv2.tv_usec = 1000000 * (dtime - tv2.tv_sec);
|
|
timeradd(&tv1, &tv2, tv_sys);
|
|
}
|
|
#endif /* timeofday */
|
|
#endif /* _lib_getrusage */
|
|
|
|
#ifdef timeofday
|
|
/* 'inline' is commented out because C89 doesn't have it */
|
|
static /*inline*/ double timeval_to_double(struct timeval tv)
|
|
{
|
|
return (double)tv.tv_sec + ((double)tv.tv_usec / 1000000.0);
|
|
}
|
|
#endif
|
|
|
|
/*
|
|
* The following two functions allow command substitution for non-builtins
|
|
* to use a pipe and to wait for the pipe to close before restoring to a
|
|
* temp file.
|
|
*/
|
|
static int subpipe[3],subdup,tsetio,usepipe;
|
|
|
|
static int iousepipe(Shell_t *shp)
|
|
{
|
|
int fd=sffileno(sfstdout),i,err=errno;
|
|
if(usepipe)
|
|
{
|
|
usepipe++;
|
|
sh_iounpipe(shp);
|
|
}
|
|
if(sh_rpipe(subpipe) < 0)
|
|
return(0);
|
|
usepipe++;
|
|
if(shp->comsub!=1)
|
|
{
|
|
subpipe[2] = sh_fcntl(subpipe[1],F_DUPFD,10);
|
|
sh_close(subpipe[1]);
|
|
return(1);
|
|
}
|
|
subpipe[2] = sh_fcntl(fd,F_dupfd_cloexec,10);
|
|
sh_iovalidfd(shp,subpipe[2]);
|
|
shp->fdstatus[subpipe[2]] = shp->fdstatus[1];
|
|
while(close(fd)<0 && errno==EINTR)
|
|
errno = err;
|
|
fcntl(subpipe[1],F_DUPFD,fd);
|
|
shp->fdstatus[1] = shp->fdstatus[subpipe[1]]&~IOCLEX;
|
|
sh_close(subpipe[1]);
|
|
if(subdup=shp->subdup) for(i=0; i < 10; i++)
|
|
{
|
|
if(subdup&(1<<i))
|
|
{
|
|
sh_close(i);
|
|
fcntl(1,F_DUPFD,i);
|
|
shp->fdstatus[i] = shp->fdstatus[1];
|
|
}
|
|
}
|
|
return(1);
|
|
}
|
|
|
|
void sh_iounpipe(Shell_t *shp)
|
|
{
|
|
int fd=sffileno(sfstdout),n,err=errno;
|
|
char buff[SF_BUFSIZE];
|
|
if(!usepipe)
|
|
return;
|
|
--usepipe;
|
|
if(shp->comsub>1)
|
|
{
|
|
sh_close(subpipe[2]);
|
|
while(read(subpipe[0],buff,sizeof(buff))>0);
|
|
goto done;
|
|
}
|
|
while(close(fd)<0 && errno==EINTR)
|
|
errno = err;
|
|
fcntl(subpipe[2], F_DUPFD, fd);
|
|
shp->fdstatus[1] = shp->fdstatus[subpipe[2]];
|
|
if(subdup) for(n=0; n < 10; n++)
|
|
{
|
|
if(subdup&(1<<n))
|
|
{
|
|
sh_close(n);
|
|
fcntl(1, F_DUPFD, n);
|
|
shp->fdstatus[n] = shp->fdstatus[1];
|
|
}
|
|
}
|
|
shp->subdup = 0;
|
|
sh_close(subpipe[2]);
|
|
if(usepipe==0) while(1)
|
|
{
|
|
while(job.waitsafe && job.savesig==SIGCHLD)
|
|
{
|
|
if(!vmbusy())
|
|
{
|
|
job.in_critical++;
|
|
job_reap(SIGCHLD);
|
|
job.in_critical--;
|
|
break;
|
|
}
|
|
sh_delay(1,0);
|
|
}
|
|
if((n = read(subpipe[0],buff,sizeof(buff)))==0)
|
|
break;
|
|
if(n>0)
|
|
sfwrite(sfstdout,buff,n);
|
|
else if(errno!=EINTR)
|
|
break;
|
|
}
|
|
done:
|
|
sh_close(subpipe[0]);
|
|
subpipe[0] = -1;
|
|
tsetio = 0;
|
|
usepipe = 0;
|
|
}
|
|
|
|
/*
|
|
* print time <t> in h:m:s format with precision <p>
|
|
*/
|
|
#ifdef timeofday
|
|
static void l_time(Sfio_t *outfile, struct timeval *tv, int precision)
|
|
{
|
|
int hr = tv->tv_sec / (60 * 60);
|
|
int min = (tv->tv_sec / 60) % 60;
|
|
int sec = tv->tv_sec % 60;
|
|
int frac = tv->tv_usec;
|
|
|
|
/* scale fraction from micro to milli, centi, or deci second according to precision */
|
|
int n;
|
|
for(n = 3 + (3 - precision); n > 0; --n)
|
|
frac /= 10;
|
|
#else
|
|
/* fallback */
|
|
static void l_time(Sfio_t *outfile,register clock_t t,int precision)
|
|
{
|
|
register int min, sec, frac;
|
|
register int hr;
|
|
if(precision)
|
|
{
|
|
frac = t%shgd->lim.clk_tck;
|
|
frac = (frac*100)/shgd->lim.clk_tck;
|
|
}
|
|
t /= shgd->lim.clk_tck;
|
|
sec = t%60;
|
|
t /= 60;
|
|
min = t%60;
|
|
hr = t/60;
|
|
#endif
|
|
if(hr)
|
|
sfprintf(outfile,"%dh",hr);
|
|
if(precision)
|
|
sfprintf(outfile,"%dm%02d%c%0*ds",min,sec,GETDECIMAL(0),precision,frac);
|
|
else
|
|
sfprintf(outfile,"%dm%02ds",min,sec);
|
|
}
|
|
|
|
#define TM_REAL_IDX 0
|
|
#define TM_USR_IDX 1
|
|
#define TM_SYS_IDX 2
|
|
|
|
#ifdef timeofday
|
|
static void p_time(Shell_t *shp, Sfio_t *out, const char *format, struct timeval tm[3])
|
|
#else
|
|
static void p_time(Shell_t *shp, Sfio_t *out, const char *format, clock_t *tm)
|
|
#endif
|
|
{
|
|
int c,n,offset = staktell();
|
|
const char *first;
|
|
Stk_t *stkp = shp->stk;
|
|
#ifdef timeofday
|
|
struct timeval tv_cpu_sum;
|
|
struct timeval *tvp;
|
|
#else
|
|
double d;
|
|
#endif
|
|
for(first=format; *format; format++)
|
|
{
|
|
c = *format;
|
|
if(c!='%')
|
|
continue;
|
|
unsigned char l_modifier = 0;
|
|
int precision = 3;
|
|
|
|
sfwrite(stkp, first, format-first);
|
|
c = *++format;
|
|
if(c=='\0')
|
|
{
|
|
/* If a lone percent is the last character of the format pretend
|
|
the user had written `%%` for a literal percent */
|
|
sfwrite(stkp, "%", 1);
|
|
first = format + 1;
|
|
break;
|
|
}
|
|
else if(c=='%')
|
|
{
|
|
first = format;
|
|
continue;
|
|
}
|
|
if(c>='0' && c <='9')
|
|
{
|
|
precision = (c>'3')?3:(c-'0');
|
|
c = *++format;
|
|
}
|
|
if(c=='P')
|
|
{
|
|
#ifdef timeofday
|
|
struct timeval tv_real = tm[TM_REAL_IDX];
|
|
struct timeval tv_cpu;
|
|
timeradd(&tm[TM_USR_IDX], &tm[TM_SYS_IDX], &tv_cpu);
|
|
|
|
double d = timeval_to_double(tv_real);
|
|
if(d)
|
|
d = 100.0 * timeval_to_double(tv_cpu) / d;
|
|
sfprintf(stkp, "%.*f", precision, d);
|
|
first = format + 1;
|
|
continue;
|
|
#else
|
|
if(d=tm[0])
|
|
d = 100.*(((double)(tm[1]+tm[2]))/d);
|
|
precision = 2;
|
|
goto skip;
|
|
#endif
|
|
}
|
|
if(c=='l')
|
|
{
|
|
l_modifier = 1;
|
|
c = *++format;
|
|
}
|
|
#ifdef timeofday
|
|
if(c=='R')
|
|
tvp = &tm[TM_REAL_IDX];
|
|
else if(c=='U')
|
|
tvp = &tm[TM_USR_IDX];
|
|
else if(c=='S')
|
|
tvp = &tm[TM_SYS_IDX];
|
|
else
|
|
{
|
|
stkseek(stkp,offset);
|
|
errormsg(SH_DICT,ERROR_exit(0),e_badtformat,c);
|
|
return;
|
|
}
|
|
if(l_modifier)
|
|
l_time(stkp, tvp, precision);
|
|
else
|
|
{
|
|
/* scale fraction from micro to milli, centi, or deci second according to precision */
|
|
int n, frac = tvp->tv_usec;
|
|
for(n = 3 + (3 - precision); n > 0; --n)
|
|
frac /= 10;
|
|
if(precision)
|
|
sfprintf(stkp, "%d%c%0*d", tvp->tv_sec, GETDECIMAL(0), precision, frac);
|
|
else
|
|
sfprintf(stkp, "%d", tvp->tv_sec);
|
|
}
|
|
#else
|
|
if(c=='R')
|
|
n = 0;
|
|
else if(c=='U')
|
|
n = 1;
|
|
else if(c=='S')
|
|
n = 2;
|
|
else
|
|
{
|
|
stkseek(stkp,offset);
|
|
errormsg(SH_DICT,ERROR_exit(0),e_badtformat,c);
|
|
return;
|
|
}
|
|
d = (double)tm[n]/shp->gd->lim.clk_tck;
|
|
skip:
|
|
if(l_modifier)
|
|
l_time(stkp, tm[n], precision);
|
|
else
|
|
sfprintf(stkp,"%.*f",precision, d);
|
|
#endif
|
|
first = format+1;
|
|
}
|
|
if(format>first)
|
|
sfwrite(stkp,first, format-first);
|
|
sfputc(stkp,'\n');
|
|
n = stktell(stkp)-offset;
|
|
sfwrite(out,stkptr(stkp,offset),n);
|
|
stkseek(stkp,offset);
|
|
}
|
|
|
|
#if SHOPT_OPTIMIZE
|
|
/*
|
|
* clear argument pointers that point into the stack
|
|
*/
|
|
static int p_arg(struct argnod*,int);
|
|
static int p_switch(struct regnod*);
|
|
static int p_comarg(register struct comnod *com)
|
|
{
|
|
Namval_t *np=com->comnamp;
|
|
int n = p_arg(com->comset,ARG_ASSIGN);
|
|
if(com->comarg && (com->comtyp&COMSCAN))
|
|
n+= p_arg(com->comarg,0);
|
|
if(com->comstate && np)
|
|
{
|
|
/* call builtin to cleanup state */
|
|
Shbltin_t *bp = &sh.bltindata;
|
|
void *save_ptr = bp->ptr;
|
|
void *save_data = bp->data;
|
|
bp->bnode = np;
|
|
bp->vnode = com->comnamq;
|
|
bp->ptr = nv_context(np);
|
|
bp->data = com->comstate;
|
|
bp->flags = SH_END_OPTIM;
|
|
((Shbltin_f)funptr(np))(0,(char**)0, bp);
|
|
bp->ptr = save_ptr;
|
|
bp->data = save_data;
|
|
}
|
|
com->comstate = 0;
|
|
if(com->comarg && !np)
|
|
n++;
|
|
return(n);
|
|
}
|
|
|
|
extern void sh_optclear(Shell_t*, void*);
|
|
|
|
static int sh_tclear(register Shnode_t *t)
|
|
{
|
|
int n=0;
|
|
if(!t)
|
|
return(0);
|
|
switch(t->tre.tretyp&COMMSK)
|
|
{
|
|
case TTIME:
|
|
case TPAR:
|
|
return(sh_tclear(t->par.partre));
|
|
case TCOM:
|
|
return(p_comarg((struct comnod*)t));
|
|
case TSETIO:
|
|
case TFORK:
|
|
return(sh_tclear(t->fork.forktre));
|
|
case TIF:
|
|
n=sh_tclear(t->if_.iftre);
|
|
n+=sh_tclear(t->if_.thtre);
|
|
n+=sh_tclear(t->if_.eltre);
|
|
return(n);
|
|
case TWH:
|
|
if(t->wh.whinc)
|
|
n=sh_tclear((Shnode_t*)(t->wh.whinc));
|
|
n+=sh_tclear(t->wh.whtre);
|
|
n+=sh_tclear(t->wh.dotre);
|
|
return(n);
|
|
case TLST:
|
|
case TAND:
|
|
case TORF:
|
|
case TFIL:
|
|
n=sh_tclear(t->lst.lstlef);
|
|
return(n+sh_tclear(t->lst.lstrit));
|
|
case TARITH:
|
|
return(p_arg(t->ar.arexpr,ARG_ARITH));
|
|
case TFOR:
|
|
n=sh_tclear(t->for_.fortre);
|
|
return(n+sh_tclear((Shnode_t*)t->for_.forlst));
|
|
case TSW:
|
|
n=p_arg(t->sw.swarg,0);
|
|
return(n+p_switch(t->sw.swlst));
|
|
case TFUN:
|
|
n=sh_tclear(t->funct.functtre);
|
|
return(n+sh_tclear((Shnode_t*)t->funct.functargs));
|
|
case TTST:
|
|
if((t->tre.tretyp&TPAREN)==TPAREN)
|
|
return(sh_tclear(t->lst.lstlef));
|
|
else
|
|
{
|
|
n=p_arg(&(t->lst.lstlef->arg),0);
|
|
if(t->tre.tretyp&TBINARY)
|
|
n+=p_arg(&(t->lst.lstrit->arg),0);
|
|
}
|
|
}
|
|
return(n);
|
|
}
|
|
|
|
static int p_arg(register struct argnod *arg,int flag)
|
|
{
|
|
while(arg)
|
|
{
|
|
if(strlen(arg->argval) || (arg->argflag==ARG_RAW))
|
|
arg->argchn.ap = 0;
|
|
else if(flag==0)
|
|
sh_tclear((Shnode_t*)arg->argchn.ap);
|
|
else
|
|
sh_tclear(((struct fornod*)arg->argchn.ap)->fortre);
|
|
arg = arg->argnxt.ap;
|
|
}
|
|
return(0);
|
|
}
|
|
|
|
static int p_switch(register struct regnod *reg)
|
|
{
|
|
int n=0;
|
|
while(reg)
|
|
{
|
|
n+=p_arg(reg->regptr,0);
|
|
n+=sh_tclear(reg->regcom);
|
|
reg = reg->regnxt;
|
|
}
|
|
return(n);
|
|
}
|
|
# define OPTIMIZE_FLAG (ARG_OPTIMIZE)
|
|
# define OPTIMIZE (flags&OPTIMIZE_FLAG)
|
|
#else
|
|
# define OPTIMIZE_FLAG (0)
|
|
# define OPTIMIZE (0)
|
|
# define sh_tclear(x)
|
|
#endif /* SHOPT_OPTIMIZE */
|
|
|
|
static void out_pattern(Sfio_t *iop, register const char *cp, int n)
|
|
{
|
|
register int c;
|
|
do
|
|
{
|
|
switch(c= *cp)
|
|
{
|
|
case 0:
|
|
if(n<0)
|
|
return;
|
|
c = n;
|
|
break;
|
|
case '\n':
|
|
sfputr(iop,"$'\\n",'\'');
|
|
continue;
|
|
case '\\':
|
|
if (!(c = *++cp))
|
|
c = '\\';
|
|
/*FALLTHROUGH*/
|
|
case ' ':
|
|
case '<': case '>': case ';':
|
|
case '$': case '`': case '\t':
|
|
sfputc(iop,'\\');
|
|
break;
|
|
}
|
|
sfputc(iop,c);
|
|
}
|
|
while(*cp++);
|
|
}
|
|
|
|
static void out_string(Sfio_t *iop, register const char *cp, int c, int quoted)
|
|
{
|
|
if(quoted)
|
|
{
|
|
int n = stktell(stkstd);
|
|
cp = sh_fmtq(cp);
|
|
if(iop==stkstd && cp==stkptr(stkstd,n))
|
|
{
|
|
*stkptr(stkstd,stktell(stkstd)-1) = c;
|
|
return;
|
|
}
|
|
}
|
|
sfputr(iop,cp,c);
|
|
}
|
|
|
|
struct Level
|
|
{
|
|
Namfun_t hdr;
|
|
short maxlevel;
|
|
};
|
|
|
|
/*
|
|
* this is for a debugger but it hasn't been tested yet
|
|
* if a debug script sets .sh.level it should set up the scope
|
|
* as if you were executing in that level
|
|
*/
|
|
static void put_level(Namval_t* np,const char *val,int flags,Namfun_t *fp)
|
|
{
|
|
Shscope_t *sp;
|
|
struct Level *lp = (struct Level*)fp;
|
|
int16_t level, oldlevel = (int16_t)nv_getnum(np);
|
|
nv_putv(np,val,flags,fp);
|
|
if(!val)
|
|
{
|
|
fp = nv_stack(np, NIL(Namfun_t*));
|
|
if(fp && !fp->nofree)
|
|
free((void*)fp);
|
|
return;
|
|
}
|
|
level = nv_getnum(np);
|
|
if(level<0 || level > lp->maxlevel)
|
|
{
|
|
nv_putv(np, (char*)&oldlevel, NV_INT16, fp);
|
|
/* perhaps this should be an error */
|
|
return;
|
|
}
|
|
if(level==oldlevel)
|
|
return;
|
|
if(sp = sh_getscope(level,SEEK_SET))
|
|
{
|
|
sh_setscope(sp);
|
|
error_info.id = sp->cmdname;
|
|
|
|
}
|
|
}
|
|
|
|
static const Namdisc_t level_disc = { sizeof(struct Level), put_level };
|
|
|
|
static struct Level *init_level(Shell_t *shp,int level)
|
|
{
|
|
struct Level *lp = newof(NiL,struct Level,1,0);
|
|
lp->maxlevel = level;
|
|
_nv_unset(SH_LEVELNOD,0);
|
|
nv_onattr(SH_LEVELNOD,NV_INT16|NV_NOFREE);
|
|
shp->last_root = nv_dict(DOTSHNOD);
|
|
nv_putval(SH_LEVELNOD,(char*)&lp->maxlevel,NV_INT16);
|
|
lp->hdr.disc = &level_disc;
|
|
nv_disc(SH_LEVELNOD,&lp->hdr,NV_FIRST);
|
|
return(lp);
|
|
}
|
|
|
|
/*
|
|
* write the current command on the stack and make it available as .sh.command
|
|
*/
|
|
int sh_debug(Shell_t *shp, const char *trap, const char *name, const char *subscript, char *const argv[], int flags)
|
|
{
|
|
Stk_t *stkp=shp->stk;
|
|
struct sh_scoped savst;
|
|
Namval_t *np = SH_COMMANDNOD;
|
|
char *sav = stkptr(stkp,0);
|
|
int n=4, offset=stktell(stkp);
|
|
const char *cp = "+=( ";
|
|
Sfio_t *iop = stkstd;
|
|
short level;
|
|
if(shp->indebug)
|
|
return(0);
|
|
shp->indebug = 1;
|
|
if(name)
|
|
{
|
|
sfputr(iop,name,-1);
|
|
if(subscript)
|
|
{
|
|
sfputc(iop,'[');
|
|
out_string(iop,subscript,']',1);
|
|
}
|
|
if(!(flags&ARG_APPEND))
|
|
cp+=1, n-=1;
|
|
if(!(flags&ARG_ASSIGN))
|
|
n -= 2;
|
|
sfwrite(iop,cp,n);
|
|
}
|
|
if(*argv && !(flags&ARG_RAW))
|
|
out_string(iop, *argv++,' ', 0);
|
|
n = (flags&ARG_ARITH);
|
|
while(cp = *argv++)
|
|
{
|
|
if((flags&ARG_EXP) && argv[1]==0)
|
|
out_pattern(iop, cp,' ');
|
|
else
|
|
out_string(iop, cp,' ',n?0: (flags&(ARG_RAW|ARG_NOGLOB))||*argv);
|
|
}
|
|
if(flags&ARG_ASSIGN)
|
|
sfputc(iop,')');
|
|
else if(iop==stkstd)
|
|
*stkptr(stkp,stktell(stkp)-1) = 0;
|
|
np->nvalue.cp = stkfreeze(stkp,1);
|
|
/* now setup .sh.level variable */
|
|
shp->st.lineno = error_info.line;
|
|
level = shp->fn_depth+shp->dot_depth;
|
|
shp->last_root = nv_dict(DOTSHNOD);
|
|
if(!SH_LEVELNOD->nvfun || !SH_LEVELNOD->nvfun->disc || nv_isattr(SH_LEVELNOD,NV_INT16|NV_NOFREE)!=(NV_INT16|NV_NOFREE))
|
|
init_level(shp,level);
|
|
else
|
|
nv_putval(SH_LEVELNOD,(char*)&level,NV_INT16);
|
|
savst = shp->st;
|
|
shp->st.trap[SH_DEBUGTRAP] = 0;
|
|
n = sh_trap(trap,0);
|
|
np->nvalue.cp = 0;
|
|
shp->indebug = 0;
|
|
if(shp->st.cmdname)
|
|
error_info.id = shp->st.cmdname;
|
|
nv_putval(SH_PATHNAMENOD,shp->st.filename,NV_NOFREE);
|
|
nv_putval(SH_FUNNAMENOD,shp->st.funname,NV_NOFREE);
|
|
shp->st = savst;
|
|
if(sav != stkptr(stkp,0))
|
|
stkset(stkp,sav,0);
|
|
else
|
|
stkseek(stkp,offset);
|
|
return(n);
|
|
}
|
|
|
|
/*
|
|
* Given stream <iop> compile and execute
|
|
*/
|
|
int sh_eval(register Sfio_t *iop, int mode)
|
|
{
|
|
register Shnode_t *t;
|
|
Shell_t *shp = sh_getinterp();
|
|
struct slnod *saveslp = shp->st.staklist;
|
|
int jmpval;
|
|
struct checkpt *pp = (struct checkpt*)shp->jmplist;
|
|
struct checkpt *buffp = (struct checkpt*)stkalloc(shp->stk,sizeof(struct checkpt));
|
|
static Sfio_t *io_save;
|
|
volatile int traceon=0, lineno=0;
|
|
int binscript=shp->binscript;
|
|
char comsub = shp->comsub;
|
|
io_save = iop; /* preserve correct value across longjmp */
|
|
shp->binscript = 0;
|
|
shp->comsub = 0;
|
|
#define SH_TOPFUN 0x8000 /* this is a temporary tksh hack */
|
|
if (mode & SH_TOPFUN)
|
|
{
|
|
mode ^= SH_TOPFUN;
|
|
shp->fn_reset = 1;
|
|
}
|
|
sh_pushcontext(shp,buffp,SH_JMPEVAL);
|
|
buffp->olist = pp->olist;
|
|
jmpval = sigsetjmp(buffp->buff,0);
|
|
while(jmpval==0)
|
|
{
|
|
if(mode&SH_READEVAL)
|
|
{
|
|
lineno = shp->inlineno;
|
|
if(traceon=sh_isoption(SH_XTRACE))
|
|
sh_offoption(SH_XTRACE);
|
|
}
|
|
t = (Shnode_t*)sh_parse(shp,iop,(mode&(SH_READEVAL|SH_FUNEVAL))?mode&SH_FUNEVAL:SH_NL);
|
|
if(!(mode&SH_FUNEVAL) || !sfreserve(iop,0,0))
|
|
{
|
|
if(!(mode&SH_READEVAL))
|
|
sfclose(iop);
|
|
io_save = 0;
|
|
mode &= ~SH_FUNEVAL;
|
|
}
|
|
mode &= ~SH_READEVAL;
|
|
if(!sh_isoption(SH_VERBOSE))
|
|
sh_offstate(SH_VERBOSE);
|
|
if((mode&~SH_FUNEVAL) && shp->gd->hist_ptr)
|
|
{
|
|
hist_flush(shp->gd->hist_ptr);
|
|
mode = sh_state(SH_INTERACTIVE);
|
|
}
|
|
sh_exec(t,sh_isstate(SH_ERREXIT)|sh_isstate(SH_NOFORK)|(mode&~SH_FUNEVAL));
|
|
if(!(mode&SH_FUNEVAL))
|
|
break;
|
|
}
|
|
sh_popcontext(shp,buffp);
|
|
shp->binscript = binscript;
|
|
shp->comsub = comsub;
|
|
if(traceon)
|
|
sh_onoption(SH_XTRACE);
|
|
if(lineno)
|
|
shp->inlineno = lineno;
|
|
if(io_save)
|
|
{
|
|
sfclose(io_save);
|
|
io_save = 0;
|
|
}
|
|
|
|
sh_freeup(shp);
|
|
shp->st.staklist = saveslp;
|
|
shp->fn_reset = 0;
|
|
if(jmpval>SH_JMPEVAL)
|
|
siglongjmp(*shp->jmplist,jmpval);
|
|
return(shp->exitval);
|
|
}
|
|
|
|
/*
|
|
* returns 1 when option -<c> is specified
|
|
*/
|
|
static int checkopt(char *argv[], int c)
|
|
{
|
|
char *cp;
|
|
while(cp = *++argv)
|
|
{
|
|
if(*cp=='+')
|
|
continue;
|
|
if(*cp!='-' || cp[1]=='-')
|
|
break;
|
|
if(strchr(++cp,c))
|
|
return(1);
|
|
if(*cp=='h' && cp[1]==0 && *++argv==0)
|
|
break;
|
|
}
|
|
return(0);
|
|
}
|
|
|
|
static void free_list(struct openlist *olist)
|
|
{
|
|
struct openlist *item,*next;
|
|
for(item=olist;item;item=next)
|
|
{
|
|
next = item->next;
|
|
free((void*)item);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* set ${.sh.name} and ${.sh.subscript}
|
|
* set _ to reference for ${.sh.name}[$.sh.subscript]
|
|
*/
|
|
static int set_instance(Shell_t *shp,Namval_t *nq, Namval_t *node, struct Namref *nr)
|
|
{
|
|
char *sp=0,*cp;
|
|
Namarr_t *ap;
|
|
Namval_t *np;
|
|
if(!nv_isattr(nq,NV_MINIMAL|NV_EXPORT|NV_ARRAY) && (np=(Namval_t*)nq->nvenv) && nv_isarray(np))
|
|
nq = np;
|
|
cp = nv_name(nq);
|
|
memset(nr,0,sizeof(*nr));
|
|
nr->np = nq;
|
|
nr->root = shp->var_tree;
|
|
nr->table = shp->last_table;
|
|
#if SHOPT_NAMESPACE
|
|
if(!nr->table && shp->namespace)
|
|
nr->table = shp->namespace;
|
|
#endif /* SHOPT_NAMESPACE */
|
|
shp->instance = 1;
|
|
if((ap=nv_arrayptr(nq)) && (sp = nv_getsub(nq)))
|
|
sp = strdup(sp);
|
|
shp->instance = 0;
|
|
if(shp->var_tree!=shp->var_base && !nv_search((char*)nq,nr->root,HASH_BUCKET|HASH_NOSCOPE))
|
|
{
|
|
#if SHOPT_NAMESPACE
|
|
nr->root = shp->namespace?nv_dict(shp->namespace):shp->var_base;
|
|
#else
|
|
nr->root = shp->var_base;
|
|
#endif /* SHOPT_NAMESPACE */
|
|
}
|
|
nv_putval(SH_NAMENOD, cp, NV_NOFREE);
|
|
memcpy(node,L_ARGNOD,sizeof(*node));
|
|
L_ARGNOD->nvalue.nrp = nr;
|
|
L_ARGNOD->nvflag = NV_REF|NV_NOFREE;
|
|
L_ARGNOD->nvfun = 0;
|
|
L_ARGNOD->nvenv = 0;
|
|
if(sp)
|
|
{
|
|
nv_putval(SH_SUBSCRNOD,nr->sub=sp,NV_NOFREE);
|
|
return(ap->nelem&ARRAY_SCAN);
|
|
}
|
|
return(0);
|
|
}
|
|
|
|
static void unset_instance(Namval_t *nq, Namval_t *node, struct Namref *nr,long mode)
|
|
{
|
|
L_ARGNOD->nvalue.nrp = node->nvalue.nrp;
|
|
L_ARGNOD->nvflag = node->nvflag;
|
|
L_ARGNOD->nvfun = node->nvfun;
|
|
if(nr->sub)
|
|
{
|
|
nv_putsub(nr->np, nr->sub, mode);
|
|
free((void*)nr->sub);
|
|
}
|
|
_nv_unset(SH_NAMENOD,0);
|
|
_nv_unset(SH_SUBSCRNOD,0);
|
|
}
|
|
|
|
#if SHOPT_FILESCAN
|
|
static Sfio_t *openstream(Shell_t *shp, struct ionod *iop, int *save)
|
|
{
|
|
int savein, fd = sh_redirect(shp,iop,3);
|
|
Sfio_t *sp;
|
|
savein = dup(0);
|
|
if(fd==0)
|
|
fd = savein;
|
|
sp = sfnew(NULL,NULL,SF_UNBOUND,fd,SF_READ);
|
|
close(0);
|
|
open(e_devnull,O_RDONLY);
|
|
shp->offsets[0] = -1;
|
|
shp->offsets[1] = 0;
|
|
*save = savein;
|
|
return(sp);
|
|
}
|
|
#endif /* SHOPT_FILESCAN */
|
|
|
|
#if SHOPT_NAMESPACE
|
|
static Namval_t *enter_namespace(Shell_t *shp, Namval_t *nsp)
|
|
{
|
|
Namval_t *path=nsp, *fpath=nsp, *onsp=shp->namespace;
|
|
Dt_t *root=0,*oroot=0;
|
|
char *val;
|
|
if(nsp)
|
|
{
|
|
if(!nv_istable(nsp))
|
|
nsp = 0;
|
|
else if(nv_dict(nsp)->view!=shp->var_base)
|
|
return(onsp);
|
|
}
|
|
if(!nsp && !onsp)
|
|
return(0);
|
|
if(onsp == nsp)
|
|
return(nsp);
|
|
if(onsp)
|
|
{
|
|
oroot = nv_dict(onsp);
|
|
if(!nsp)
|
|
{
|
|
path = nv_search(PATHNOD->nvname,oroot,HASH_NOSCOPE);
|
|
fpath = nv_search(FPATHNOD->nvname,oroot,HASH_NOSCOPE);
|
|
}
|
|
if(shp->var_tree==oroot)
|
|
{
|
|
shp->var_tree = shp->var_tree->view;
|
|
oroot = shp->var_base;
|
|
}
|
|
}
|
|
if(nsp)
|
|
{
|
|
if(shp->var_tree==shp->var_base)
|
|
shp->var_tree = nv_dict(nsp);
|
|
else
|
|
{
|
|
for(root=shp->var_tree; root->view!=oroot;root=root->view);
|
|
dtview(root,nv_dict(nsp));
|
|
}
|
|
}
|
|
shp->namespace = nsp;
|
|
if(path && (path = nv_search(PATHNOD->nvname,shp->var_tree,HASH_NOSCOPE)) && (val=nv_getval(path)))
|
|
nv_putval(path,val,NV_RDONLY);
|
|
if(fpath && (fpath = nv_search(FPATHNOD->nvname,shp->var_tree,HASH_NOSCOPE)) && (val=nv_getval(fpath)))
|
|
nv_putval(fpath,val,NV_RDONLY);
|
|
return(onsp);
|
|
}
|
|
#endif /* SHOPT_NAMESPACE */
|
|
|
|
int sh_exec(register const Shnode_t *t, int flags)
|
|
{
|
|
register Shell_t *shp = sh_getinterp();
|
|
Stk_t *stkp = shp->stk;
|
|
int unpipe=0;
|
|
sh_sigcheck(shp);
|
|
if(t && !shp->st.execbrk && !sh_isoption(SH_NOEXEC))
|
|
{
|
|
register int type = flags;
|
|
register char *com0 = 0;
|
|
int errorflg = (type&sh_state(SH_ERREXIT))|OPTIMIZE;
|
|
int execflg = (type&sh_state(SH_NOFORK));
|
|
int execflg2 = (type&sh_state(SH_FORKED));
|
|
int mainloop = (type&sh_state(SH_INTERACTIVE));
|
|
#if SHOPT_SPAWN
|
|
int ntflag = (type&sh_state(SH_NTFORK));
|
|
#else
|
|
int ntflag = 0;
|
|
#endif
|
|
int topfd = shp->topfd;
|
|
char *sav=stkptr(stkp,0);
|
|
char *cp=0, **com=0, *comn;
|
|
int argn;
|
|
int skipexitset = 0;
|
|
volatile int was_interactive = 0;
|
|
volatile int was_errexit = sh_isstate(SH_ERREXIT);
|
|
volatile int was_monitor = sh_isstate(SH_MONITOR);
|
|
volatile int echeck = 0;
|
|
if(flags&sh_state(SH_INTERACTIVE))
|
|
{
|
|
if(pipejob==2)
|
|
job_unlock();
|
|
nlock = 0;
|
|
pipejob = 0;
|
|
job.curpgid = 0;
|
|
job.curjobid = 0;
|
|
flags &= ~sh_state(SH_INTERACTIVE);
|
|
}
|
|
sh_offstate(SH_ERREXIT);
|
|
sh_offstate(SH_DEFPATH);
|
|
if(was_errexit&flags)
|
|
sh_onstate(SH_ERREXIT);
|
|
if(was_monitor&flags)
|
|
sh_onstate(SH_MONITOR);
|
|
type = t->tre.tretyp;
|
|
shp->exitval=0;
|
|
shp->lastsig = 0;
|
|
shp->lastpath = 0;
|
|
switch(type&COMMSK)
|
|
{
|
|
case TCOM:
|
|
{
|
|
register struct argnod *argp;
|
|
char *trap;
|
|
Namval_t *np, *nq, *last_table;
|
|
struct ionod *io;
|
|
int command=0, flgs=NV_ASSIGN;
|
|
shp->bltindata.invariant = type>>(COMBITS+2);
|
|
type &= (COMMSK|COMSCAN);
|
|
sh_stats(STAT_SCMDS);
|
|
error_info.line = t->com.comline-shp->st.firstline;
|
|
com = sh_argbuild(shp,&argn,&(t->com),OPTIMIZE);
|
|
echeck = 1;
|
|
if(t->tre.tretyp&COMSCAN)
|
|
{
|
|
argp = t->com.comarg;
|
|
if(argp && *com && !(argp->argflag&ARG_RAW))
|
|
sh_sigcheck(shp);
|
|
}
|
|
np = (Namval_t*)(t->com.comnamp);
|
|
nq = (Namval_t*)(t->com.comnamq);
|
|
#if SHOPT_NAMESPACE
|
|
if(np && shp->namespace && nq!=shp->namespace && nv_isattr(np,NV_BLTIN|NV_INTEGER|BLT_SPC)!=(NV_BLTIN|BLT_SPC))
|
|
{
|
|
Namval_t *mp;
|
|
if(mp = sh_fsearch(shp,com[0],0))
|
|
{
|
|
nq = shp->namespace;
|
|
np = mp;
|
|
}
|
|
}
|
|
#endif /* SHOPT_NAMESPACE */
|
|
com0 = com[0];
|
|
shp->xargexit = 0;
|
|
while(np==SYSCOMMAND || !np && com0 && nv_search(com0,shp->fun_tree,0)==SYSCOMMAND)
|
|
{
|
|
register int n = b_command(0,com,&shp->bltindata);
|
|
if(n==0)
|
|
break;
|
|
command += n;
|
|
np = 0;
|
|
if(!(com0= *(com+=n)))
|
|
break;
|
|
np = nv_bfsearch(com0, shp->bltin_tree, &nq, &cp);
|
|
}
|
|
if(shp->xargexit)
|
|
{
|
|
shp->xargmin -= command;
|
|
shp->xargmax -= command;
|
|
}
|
|
else
|
|
shp->xargmin = 0;
|
|
argn -= command;
|
|
if(np && is_abuiltin(np))
|
|
{
|
|
if(!command)
|
|
{
|
|
Namval_t *mp;
|
|
#if SHOPT_NAMESPACE
|
|
if(shp->namespace && (mp=sh_fsearch(shp,np->nvname,0)))
|
|
np = mp;
|
|
else
|
|
#endif /* SHOPT_NAMESPACE */
|
|
np = dtsearch(shp->fun_tree,np);
|
|
}
|
|
#if SHOPT_PFSH
|
|
if(sh_isoption(SH_PFSH) && nv_isattr(np,NV_BLTINOPT) && !nv_isattr(np,NV_BLTPFSH))
|
|
{
|
|
if(path_xattr(shp,np->nvname,(char*)0))
|
|
{
|
|
dtdelete(shp->bltin_tree,np);
|
|
np = 0;
|
|
}
|
|
else
|
|
nv_onattr(np,NV_BLTPFSH);
|
|
|
|
}
|
|
#endif /* SHOPT_PFSH */
|
|
}
|
|
if(com0)
|
|
{
|
|
if(!np && !strchr(com0,'/'))
|
|
{
|
|
Dt_t *root = command?shp->bltin_tree:shp->fun_tree;
|
|
np = nv_bfsearch(com0, root, &nq, &cp);
|
|
#if SHOPT_NAMESPACE
|
|
if(shp->namespace && !nq && !cp)
|
|
np = sh_fsearch(shp,com0,0);
|
|
#endif /* SHOPT_NAMESPACE */
|
|
}
|
|
comn = com[argn-1];
|
|
}
|
|
io = t->tre.treio;
|
|
if(shp->envlist = argp = t->com.comset)
|
|
{
|
|
if(argn==0 || (np && (nv_isattr(np,BLT_DCL) || (!command && nv_isattr(np,BLT_SPC)))))
|
|
{
|
|
Namval_t *tp=0;
|
|
if(argn)
|
|
{
|
|
if(checkopt(com,'A'))
|
|
flgs |= NV_ARRAY;
|
|
else if(checkopt(com,'a'))
|
|
flgs |= NV_IARRAY;
|
|
}
|
|
if(np)
|
|
flgs |= NV_UNJUST;
|
|
if(np && np->nvalue.bfp==SYSTYPESET->nvalue.bfp)
|
|
{
|
|
/* command calls b_typeset(); treat as a typeset variant */
|
|
if(np < SYSTYPESET || np > SYSTYPESET_END)
|
|
{
|
|
shp->typeinit = np;
|
|
tp = nv_type(np);
|
|
}
|
|
if(np==SYSCOMPOUND || checkopt(com,'C'))
|
|
flgs |= NV_COMVAR;
|
|
if(checkopt(com,'S'))
|
|
flgs |= NV_STATIC;
|
|
if(checkopt(com,'m'))
|
|
flgs |= NV_MOVE;
|
|
if(np==SYSNAMEREF || checkopt(com,'n'))
|
|
flgs |= NV_NOREF;
|
|
#if SHOPT_TYPEDEF
|
|
else if(argn>=3 && checkopt(com,'T'))
|
|
{
|
|
# if SHOPT_NAMESPACE
|
|
if(shp->namespace)
|
|
{
|
|
if(!shp->strbuf2)
|
|
shp->strbuf2 = sfstropen();
|
|
sfprintf(shp->strbuf2,"%s%s%c",NV_CLASS,nv_name(shp->namespace),0);
|
|
shp->prefix = strdup(sfstruse(shp->strbuf2));
|
|
nv_open(shp->prefix,shp->var_base,NV_VARNAME);
|
|
}
|
|
else
|
|
# endif /* SHOPT_NAMESPACE */
|
|
shp->prefix = NV_CLASS;
|
|
flgs |= NV_TYPE;
|
|
|
|
}
|
|
#endif /* SHOPT_TYPEDEF */
|
|
if((shp->fn_depth && !shp->prefix))
|
|
flgs |= NV_NOSCOPE;
|
|
}
|
|
else if(np==SYSEXPORT)
|
|
flgs |= NV_EXPORT;
|
|
if(flgs&(NV_EXPORT|NV_NOREF))
|
|
flgs |= NV_IDENT;
|
|
else
|
|
flgs |= NV_VARNAME;
|
|
nv_setlist(argp,flgs,tp);
|
|
if(np==shp->typeinit)
|
|
shp->typeinit = 0;
|
|
shp->envlist = argp;
|
|
argp = NULL;
|
|
}
|
|
}
|
|
last_table = shp->last_table;
|
|
shp->last_table = 0;
|
|
if((io||argn))
|
|
{
|
|
Shbltin_t *bp=0;
|
|
static char *argv[2];
|
|
int tflags = 1;
|
|
if(np && nv_isattr(np,BLT_DCL))
|
|
tflags |= 2;
|
|
if(argn==0)
|
|
{
|
|
/* fake 'true' built-in */
|
|
np = SYSTRUE;
|
|
*argv = nv_name(np);
|
|
com = argv;
|
|
}
|
|
/* set +x doesn't echo */
|
|
else if((t->tre.tretyp&FSHOWME) && sh_isoption(SH_SHOWME))
|
|
{
|
|
int ison = sh_isoption(SH_XTRACE);
|
|
if(!ison)
|
|
sh_onoption(SH_XTRACE);
|
|
sh_trace(shp,com-command,tflags);
|
|
if(io)
|
|
sh_redirect(shp,io,SH_SHOWME);
|
|
if(!ison)
|
|
sh_offoption(SH_XTRACE);
|
|
break;
|
|
}
|
|
else if((np!=SYSSET) && sh_isoption(SH_XTRACE))
|
|
sh_trace(shp,com-command,tflags);
|
|
if(trap=shp->st.trap[SH_DEBUGTRAP])
|
|
{
|
|
int n = sh_debug(shp,trap,(char*)0,(char*)0, com, ARG_RAW);
|
|
if(n==255 && shp->fn_depth+shp->dot_depth)
|
|
{
|
|
np = SYSRETURN;
|
|
argn = 1;
|
|
com[0] = np->nvname;
|
|
com[1] = 0;
|
|
io = 0;
|
|
argp = 0;
|
|
}
|
|
else if(n==2)
|
|
break;
|
|
}
|
|
if(io)
|
|
sfsync(shp->outpool);
|
|
shp->lastpath = 0;
|
|
if(!np && !strchr(com0,'/'))
|
|
{
|
|
if(path_search(shp,com0,NIL(Pathcomp_t**),1))
|
|
{
|
|
error_info.line = t->com.comline-shp->st.firstline;
|
|
#if SHOPT_NAMESPACE
|
|
if(!shp->namespace || !(np=sh_fsearch(shp,com0,0)))
|
|
#endif /* SHOPT_NAMESPACE */
|
|
np=nv_search(com0,shp->fun_tree,0);
|
|
if(!np || !np->nvalue.ip)
|
|
{
|
|
Namval_t *mp=nv_search(com0,shp->bltin_tree,0);
|
|
if(mp)
|
|
np = mp;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
/* if a tracked alias exists and we're not searching the default path, use it */
|
|
if(!sh_isstate(SH_DEFPATH)
|
|
&& (np=nv_search(com0,shp->track_tree,0))
|
|
&& !nv_isattr(np,NV_NOALIAS)
|
|
&& np->nvalue.cp)
|
|
np=nv_search(nv_getval(np),shp->bltin_tree,0);
|
|
else
|
|
np = 0;
|
|
}
|
|
}
|
|
if(np && pipejob==2)
|
|
{
|
|
job_unlock();
|
|
nlock--;
|
|
pipejob = 1;
|
|
}
|
|
/* check for builtins */
|
|
if(np && is_abuiltin(np))
|
|
{
|
|
volatile int scope=0, share=0;
|
|
volatile void *save_ptr;
|
|
volatile void *save_data;
|
|
int jmpval, save_prompt;
|
|
int was_nofork = execflg?sh_isstate(SH_NOFORK):0;
|
|
struct checkpt *buffp = (struct checkpt*)stkalloc(shp->stk,sizeof(struct checkpt));
|
|
volatile unsigned long was_vi=0, was_emacs=0, was_gmacs=0;
|
|
struct stat statb;
|
|
bp = &shp->bltindata;
|
|
save_ptr = bp->ptr;
|
|
save_data = bp->data;
|
|
memset(&statb, 0, sizeof(struct stat));
|
|
if(strchr(nv_name(np),'/'))
|
|
{
|
|
/*
|
|
* disable editors for built-in
|
|
* versions of commands on PATH
|
|
*/
|
|
was_vi = sh_isoption(SH_VI);
|
|
was_emacs = sh_isoption(SH_EMACS);
|
|
was_gmacs = sh_isoption(SH_GMACS);
|
|
sh_offoption(SH_VI);
|
|
sh_offoption(SH_EMACS);
|
|
sh_offoption(SH_GMACS);
|
|
}
|
|
if(execflg)
|
|
sh_onstate(SH_NOFORK);
|
|
sh_pushcontext(shp,buffp,SH_JMPCMD);
|
|
jmpval = sigsetjmp(buffp->buff,1);
|
|
if(jmpval == 0)
|
|
{
|
|
if(!(nv_isattr(np,BLT_ENV)))
|
|
error_info.flags |= ERROR_SILENT;
|
|
errorpush(&buffp->err,0);
|
|
if(io)
|
|
{
|
|
struct openlist *item;
|
|
if(np == SYSEXEC) /* 'exec' */
|
|
type = 1 + !com[1];
|
|
else if(np == SYSREDIR) /* 'redirect' */
|
|
if(!com[1])
|
|
type = 2;
|
|
else
|
|
errormsg(SH_DICT,ERROR_exit(2),"redirect: %s",e_badsyntax);
|
|
else
|
|
type = (execflg && !shp->subshell && !shp->st.trapcom[0]);
|
|
shp->redir0 = 1;
|
|
sh_redirect(shp,io,type);
|
|
for(item=buffp->olist;item;item=item->next)
|
|
item->strm=0;
|
|
}
|
|
if(!(nv_isattr(np,BLT_ENV)))
|
|
{
|
|
if(!shp->pwd)
|
|
path_pwd(shp,0);
|
|
if(shp->pwd)
|
|
stat(".",&statb);
|
|
sfsync(NULL);
|
|
share = sfset(sfstdin,SF_SHARE,0);
|
|
sh_onstate(SH_STOPOK);
|
|
sfpool(sfstderr,NIL(Sfio_t*),SF_WRITE);
|
|
sfset(sfstderr,SF_LINE,1);
|
|
save_prompt = shp->nextprompt;
|
|
shp->nextprompt = 0;
|
|
}
|
|
if(argp)
|
|
{
|
|
scope++;
|
|
sh_scope(shp,argp,0);
|
|
}
|
|
opt_info.index = opt_info.offset = 0;
|
|
opt_info.disc = 0;
|
|
error_info.id = *com;
|
|
if(argn)
|
|
shp->exitval = 0;
|
|
shp->bltinfun = (Shbltin_f)funptr(np);
|
|
bp->bnode = np;
|
|
bp->vnode = nq;
|
|
bp->ptr = nv_context(np);
|
|
bp->data = t->com.comstate;
|
|
bp->sigset = 0;
|
|
bp->notify = 0;
|
|
bp->flags = (OPTIMIZE!=0);
|
|
if(shp->subshell && nv_isattr(np,BLT_NOSFIO))
|
|
sh_subtmpfile(shp->comsub);
|
|
if(execflg && !shp->subshell &&
|
|
!shp->st.trapcom[0] && !shp->st.trap[SH_ERRTRAP] && shp->fn_depth==0 && !nv_isattr(np,BLT_ENV))
|
|
{
|
|
/* do close-on-exec */
|
|
int fd;
|
|
for(fd=0; fd < shp->gd->lim.open_max; fd++)
|
|
if((shp->fdstatus[fd]&IOCLEX)&&fd!=shp->infd)
|
|
sh_close(fd);
|
|
}
|
|
if(argn)
|
|
shp->exitval = (*shp->bltinfun)(argn,com,(void*)bp);
|
|
if(error_info.flags&ERROR_INTERACTIVE)
|
|
tty_check(ERRIO);
|
|
((Shnode_t*)t)->com.comstate = shp->bltindata.data;
|
|
bp->data = (void*)save_data;
|
|
if(sh.exitval && errno==EINTR && shp->lastsig)
|
|
sh.exitval = SH_EXITSIG|shp->lastsig;
|
|
else if(!nv_isattr(np,BLT_EXIT) && shp->exitval!=SH_RUNPROG)
|
|
shp->exitval &= SH_EXITMASK;
|
|
}
|
|
else
|
|
{
|
|
struct openlist *item;
|
|
for(item=buffp->olist;item;item=item->next)
|
|
{
|
|
if(item->strm)
|
|
{
|
|
sfclrlock(item->strm);
|
|
if(shp->gd->hist_ptr && item->strm == shp->gd->hist_ptr->histfp)
|
|
hist_close(shp->gd->hist_ptr);
|
|
else
|
|
sfclose(item->strm);
|
|
}
|
|
}
|
|
if(shp->bltinfun && (error_info.flags&ERROR_NOTIFY))
|
|
(*shp->bltinfun)(-2,com,(void*)bp);
|
|
/* failure on special built-ins fatal */
|
|
if(jmpval<=SH_JMPCMD && (!nv_isattr(np,BLT_SPC) || command))
|
|
jmpval=0;
|
|
}
|
|
if(bp)
|
|
{
|
|
bp->bnode = 0;
|
|
if( bp->ptr!= nv_context(np))
|
|
np->nvfun = (Namfun_t*)bp->ptr;
|
|
}
|
|
if(execflg && !was_nofork)
|
|
sh_offstate(SH_NOFORK);
|
|
if(!(nv_isattr(np,BLT_ENV)))
|
|
{
|
|
if(shp->pwd)
|
|
{
|
|
struct stat stata;
|
|
stat(".",&stata);
|
|
/* restore directory changed */
|
|
if(statb.st_ino!=stata.st_ino || statb.st_dev!=stata.st_dev)
|
|
chdir(shp->pwd);
|
|
}
|
|
sh_offstate(SH_STOPOK);
|
|
if(share&SF_SHARE)
|
|
sfset(sfstdin,SF_PUBLIC|SF_SHARE,1);
|
|
sfset(sfstderr,SF_LINE,0);
|
|
sfpool(sfstderr,shp->outpool,SF_WRITE);
|
|
sfpool(sfstdin,NIL(Sfio_t*),SF_WRITE);
|
|
shp->nextprompt = save_prompt;
|
|
}
|
|
sh_popcontext(shp,buffp);
|
|
errorpop(&buffp->err);
|
|
error_info.flags &= ~(ERROR_SILENT|ERROR_NOTIFY);
|
|
shp->bltinfun = 0;
|
|
if(buffp->olist)
|
|
free_list(buffp->olist);
|
|
if(was_vi)
|
|
sh_onoption(SH_VI);
|
|
else if(was_emacs)
|
|
sh_onoption(SH_EMACS);
|
|
else if(was_gmacs)
|
|
sh_onoption(SH_GMACS);
|
|
if(scope)
|
|
sh_unscope(shp);
|
|
bp->ptr = (void*)save_ptr;
|
|
bp->data = (void*)save_data;
|
|
/* don't restore for subshell exec */
|
|
if((shp->topfd>topfd) && !(shp->subshell && np==SYSEXEC))
|
|
sh_iorestore(shp,topfd,jmpval);
|
|
|
|
shp->redir0 = 0;
|
|
if(jmpval)
|
|
siglongjmp(*shp->jmplist,jmpval);
|
|
if(shp->exitval >=0)
|
|
goto setexit;
|
|
np = 0;
|
|
type=0;
|
|
}
|
|
/* check for functions */
|
|
if(!command && np && nv_isattr(np,NV_FUNCTION))
|
|
{
|
|
volatile int indx;
|
|
int jmpval=0;
|
|
struct checkpt *buffp = (struct checkpt*)stkalloc(shp->stk,sizeof(struct checkpt));
|
|
#if SHOPT_NAMESPACE
|
|
Namval_t node, *namespace=0;
|
|
#else
|
|
Namval_t node;
|
|
#endif /* SHOPT_NAMESPACE */
|
|
struct Namref nr;
|
|
long mode;
|
|
register struct slnod *slp;
|
|
if(!np->nvalue.ip)
|
|
{
|
|
indx = path_search(shp,com0,NIL(Pathcomp_t**),0);
|
|
if(indx==1)
|
|
{
|
|
#if SHOPT_NAMESPACE
|
|
if(shp->namespace)
|
|
np = sh_fsearch(shp,com0,0);
|
|
else
|
|
#endif /* SHOPT_NAMESPACE */
|
|
np = nv_search(com0,shp->fun_tree,HASH_NOSCOPE);
|
|
}
|
|
|
|
if(!np->nvalue.ip)
|
|
{
|
|
if(indx==1)
|
|
{
|
|
errormsg(SH_DICT,ERROR_exit(0),e_defined,com0);
|
|
shp->exitval = ERROR_NOEXEC;
|
|
}
|
|
else
|
|
{
|
|
errormsg(SH_DICT,ERROR_exit(0),e_found,"function");
|
|
shp->exitval = ERROR_NOENT;
|
|
}
|
|
goto setexit;
|
|
}
|
|
}
|
|
/* increase refcnt for unset */
|
|
slp = (struct slnod*)np->nvenv;
|
|
sh_funstaks(slp->slchild,1);
|
|
staklink(slp->slptr);
|
|
if(nq)
|
|
{
|
|
Namval_t *mp=0;
|
|
if(nv_isattr(np,NV_STATICF) && (mp=nv_type(nq)))
|
|
nq = mp;
|
|
shp->last_table = last_table;
|
|
mode = set_instance(shp,nq,&node,&nr);
|
|
}
|
|
if(io)
|
|
{
|
|
indx = shp->topfd;
|
|
sh_pushcontext(shp,buffp,SH_JMPCMD);
|
|
jmpval = sigsetjmp(buffp->buff,0);
|
|
}
|
|
if(jmpval == 0)
|
|
|
|
{
|
|
if(io)
|
|
indx = sh_redirect(shp,io,execflg);
|
|
#if SHOPT_NAMESPACE
|
|
if(*np->nvname=='.')
|
|
{
|
|
char *cp = strchr(np->nvname+1,'.');
|
|
if(cp)
|
|
{
|
|
*cp = 0;
|
|
namespace = nv_search(np->nvname,shp->var_base,HASH_NOSCOPE);
|
|
*cp = '.';
|
|
}
|
|
}
|
|
namespace = enter_namespace(shp,namespace);
|
|
#endif /* SHOPT_NAMESPACE */
|
|
sh_funct(shp,np,argn,com,t->com.comset,(flags&~OPTIMIZE_FLAG));
|
|
}
|
|
#if SHOPT_NAMESPACE
|
|
enter_namespace(shp,namespace);
|
|
#endif /* SHOPT_NAMESPACE */
|
|
if(io)
|
|
{
|
|
if(buffp->olist)
|
|
free_list(buffp->olist);
|
|
sh_popcontext(shp,buffp);
|
|
sh_iorestore(shp,indx,jmpval);
|
|
}
|
|
if(nq)
|
|
unset_instance(nq,&node,&nr,mode);
|
|
sh_funstaks(slp->slchild,-1);
|
|
stakdelete(slp->slptr);
|
|
if(jmpval > SH_JMPFUN || (io && jmpval > SH_JMPIO))
|
|
siglongjmp(*shp->jmplist,jmpval);
|
|
goto setexit;
|
|
}
|
|
}
|
|
else if(!io)
|
|
{
|
|
setexit:
|
|
exitset();
|
|
break;
|
|
}
|
|
}
|
|
case TFORK:
|
|
{
|
|
register pid_t parent;
|
|
int no_fork,jobid;
|
|
int pipes[3];
|
|
if(shp->subshell)
|
|
{
|
|
sh_subtmpfile(2);
|
|
if((shp->comsub && (type&(FAMP|TFORK))==(FAMP|TFORK) || shp->comsub==1) &&
|
|
!(shp->fdstatus[1]&IONOSEEK))
|
|
unpipe = iousepipe(shp);
|
|
if((type&(FAMP|TFORK))==(FAMP|TFORK))
|
|
sh_subfork();
|
|
}
|
|
no_fork = !ntflag && !(type&(FAMP|FPOU)) && !shp->subshell &&
|
|
!(shp->st.trapcom[SIGINT] && *shp->st.trapcom[SIGINT]) &&
|
|
!shp->st.trapcom[0] && !shp->st.trap[SH_ERRTRAP] &&
|
|
((struct checkpt*)shp->jmplist)->mode!=SH_JMPEVAL &&
|
|
(execflg2 || (execflg && shp->fn_depth==0 &&
|
|
!(pipejob && sh_isoption(SH_PIPEFAIL))
|
|
));
|
|
if(sh_isstate(SH_PROFILE) || shp->dot_depth)
|
|
{
|
|
/* disable foreground job monitor */
|
|
if(!(type&FAMP))
|
|
sh_offstate(SH_MONITOR);
|
|
#if SHOPT_DEVFD
|
|
else if(!(type&FINT))
|
|
sh_offstate(SH_MONITOR);
|
|
#endif /* SHOPT_DEVFD */
|
|
}
|
|
if(no_fork)
|
|
job.parent=parent=0;
|
|
else
|
|
{
|
|
#ifdef SHOPT_BGX
|
|
int maxjob;
|
|
if(((type&(FAMP|FINT)) == (FAMP|FINT)) && (maxjob=nv_getnum(JOBMAXNOD))>0)
|
|
{
|
|
while(job.numbjob >= maxjob)
|
|
{
|
|
job_lock();
|
|
job_reap(0);
|
|
job_unlock();
|
|
}
|
|
}
|
|
#endif /* SHOPT_BGX */
|
|
nv_getval(RANDNOD);
|
|
restorefd = shp->topfd;
|
|
if(type&FCOOP)
|
|
{
|
|
pipes[2] = 0;
|
|
coproc_init(shp,pipes);
|
|
}
|
|
#if SHOPT_SPAWN
|
|
# ifdef _lib_fork
|
|
if(com && !job.jobcontrol)
|
|
parent = sh_ntfork(shp,t,com,&jobid,ntflag);
|
|
else
|
|
parent = sh_fork(shp,type,&jobid);
|
|
# else
|
|
if((parent = sh_ntfork(shp,t,com,&jobid,ntflag))<=0)
|
|
break;
|
|
# endif /* _lib_fork */
|
|
if(parent<0)
|
|
{
|
|
if(shp->comsub==1 && usepipe && unpipe)
|
|
sh_iounpipe(shp);
|
|
break;
|
|
}
|
|
#else
|
|
parent = sh_fork(shp,type,&jobid);
|
|
#endif /* SHOPT_SPAWN */
|
|
}
|
|
if(job.parent=parent)
|
|
/* This is the parent branch of fork
|
|
* It may or may not wait for the child
|
|
*/
|
|
{
|
|
if(pipejob==2)
|
|
{
|
|
pipejob = 1;
|
|
nlock--;
|
|
job_unlock();
|
|
}
|
|
if(shp->subshell)
|
|
shp->spid = parent;
|
|
if(type&FPCL)
|
|
sh_close(shp->inpipe[0]);
|
|
if(type&(FCOOP|FAMP))
|
|
shp->bckpid = parent;
|
|
else if(!(type&(FAMP|FPOU)))
|
|
{
|
|
if(!sh_isoption(SH_MONITOR))
|
|
{
|
|
if(!(shp->sigflag[SIGINT]&(SH_SIGFAULT|SH_SIGOFF)))
|
|
sh_sigtrap(SIGINT);
|
|
shp->trapnote |= SH_SIGIGNORE;
|
|
}
|
|
if(shp->pipepid)
|
|
shp->pipepid = parent;
|
|
else
|
|
{
|
|
job_wait(parent);
|
|
if(parent==shp->spid)
|
|
shp->spid = 0;
|
|
}
|
|
if(shp->topfd > topfd)
|
|
sh_iorestore(shp,topfd,0);
|
|
if(usepipe && tsetio && subdup && unpipe)
|
|
sh_iounpipe(shp);
|
|
if(!sh_isoption(SH_MONITOR))
|
|
{
|
|
shp->trapnote &= ~SH_SIGIGNORE;
|
|
if(shp->exitval == (SH_EXITSIG|SIGINT))
|
|
kill(shgd->current_pid,SIGINT);
|
|
}
|
|
}
|
|
if(type&FAMP)
|
|
{
|
|
if(sh_isstate(SH_PROFILE) || sh_isstate(SH_INTERACTIVE))
|
|
{
|
|
/* print job number */
|
|
#ifdef JOBS
|
|
sfprintf(sfstderr,"[%d]\t%d\n",jobid,parent);
|
|
#else
|
|
sfprintf(sfstderr,"%d\n",parent);
|
|
#endif /* JOBS */
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
else
|
|
/*
|
|
* this is the FORKED branch (child) of execute
|
|
*/
|
|
{
|
|
volatile int jmpval;
|
|
struct checkpt *buffp = (struct checkpt*)stkalloc(shp->stk,sizeof(struct checkpt));
|
|
struct ionod *iop;
|
|
int rewrite=0;
|
|
if(no_fork)
|
|
sh_sigreset(2);
|
|
sh_pushcontext(shp,buffp,SH_JMPEXIT);
|
|
jmpval = sigsetjmp(buffp->buff,0);
|
|
if(jmpval)
|
|
goto done;
|
|
if((type&FINT) && !sh_isstate(SH_MONITOR))
|
|
{
|
|
/* default std input for & */
|
|
signal(SIGINT,SIG_IGN);
|
|
signal(SIGQUIT,SIG_IGN);
|
|
if(!shp->st.ioset)
|
|
{
|
|
if(sh_close(0)>=0)
|
|
sh_chkopen(e_devnull);
|
|
}
|
|
}
|
|
sh_offstate(SH_MONITOR);
|
|
/* pipe in or out */
|
|
#ifdef _lib_nice
|
|
if((type&FAMP) && sh_isoption(SH_BGNICE))
|
|
nice(4);
|
|
#endif /* _lib_nice */
|
|
#if !SHOPT_DEVFD
|
|
if(shp->fifo && (type&(FPIN|FPOU)))
|
|
{
|
|
int fn,fd = (type&FPIN)?0:1;
|
|
void *fifo_timer=sh_timeradd(500,1,fifo_check,(void*)shp);
|
|
fn = sh_open(shp->fifo,fd?O_WRONLY:O_RDONLY);
|
|
timerdel(fifo_timer);
|
|
sh_iorenumber(shp,fn,fd);
|
|
sh_close(fn);
|
|
sh_delay(.001,0);
|
|
unlink(shp->fifo);
|
|
free(shp->fifo);
|
|
shp->fifo = 0;
|
|
type &= ~(FPIN|FPOU);
|
|
}
|
|
#endif /* !SHOPT_DEVFD */
|
|
if(type&FPIN)
|
|
{
|
|
sh_iorenumber(shp,shp->inpipe[0],0);
|
|
if(!(type&FPOU) || (type&FCOOP))
|
|
sh_close(shp->inpipe[1]);
|
|
}
|
|
if(type&FPOU)
|
|
{
|
|
sh_iorenumber(shp,shp->outpipe[1],1);
|
|
sh_pclose(shp->outpipe);
|
|
}
|
|
if((type&COMMSK)!=TCOM)
|
|
error_info.line = t->fork.forkline-shp->st.firstline;
|
|
if(shp->topfd)
|
|
sh_iounsave(shp);
|
|
topfd = shp->topfd;
|
|
if(com0 && (iop=t->tre.treio))
|
|
{
|
|
for(;iop;iop=iop->ionxt)
|
|
{
|
|
if(iop->iofile&IOREWRITE)
|
|
rewrite = 1;
|
|
}
|
|
}
|
|
sh_redirect(shp,t->tre.treio,1);
|
|
if(rewrite)
|
|
{
|
|
job_lock();
|
|
while((parent = vfork()) < 0)
|
|
_sh_fork(shp,parent, 0, (int*)0);
|
|
if(parent)
|
|
{
|
|
job.toclear = 0;
|
|
job_post(shp,parent,0);
|
|
job_wait(parent);
|
|
sh_iorestore(shp,topfd,SH_JMPCMD);
|
|
sh_done(shp,(shp->exitval&SH_EXITSIG)?(shp->exitval&SH_EXITMASK):0);
|
|
|
|
}
|
|
job_unlock();
|
|
}
|
|
if((type&COMMSK)!=TCOM)
|
|
{
|
|
/* don't clear job table for out
|
|
pipes so that jobs command can
|
|
be used in a pipeline
|
|
*/
|
|
if(!no_fork && !(type&FPOU))
|
|
job_clear();
|
|
sh_exec(t->fork.forktre,flags|sh_state(SH_NOFORK)|sh_state(SH_FORKED));
|
|
}
|
|
else if(com0)
|
|
{
|
|
sh_offoption(SH_ERREXIT);
|
|
sh_freeup(shp);
|
|
path_exec(shp,com0,com,t->com.comset);
|
|
}
|
|
done:
|
|
sh_popcontext(shp,buffp);
|
|
if(jmpval>SH_JMPEXIT)
|
|
siglongjmp(*shp->jmplist,jmpval);
|
|
sh_done(shp,0);
|
|
}
|
|
}
|
|
|
|
case TSETIO:
|
|
{
|
|
/*
|
|
* don't create a new process, just
|
|
* save and restore io-streams
|
|
*/
|
|
pid_t pid;
|
|
int jmpval, waitall;
|
|
int simple = (t->fork.forktre->tre.tretyp&COMMSK)==TCOM;
|
|
struct checkpt *buffp = (struct checkpt*)stkalloc(shp->stk,sizeof(struct checkpt));
|
|
if(shp->subshell)
|
|
execflg = 0;
|
|
sh_pushcontext(shp,buffp,SH_JMPIO);
|
|
if(type&FPIN)
|
|
{
|
|
was_interactive = sh_isstate(SH_INTERACTIVE);
|
|
sh_offstate(SH_INTERACTIVE);
|
|
sh_iosave(shp,0,shp->topfd,(char*)0);
|
|
shp->pipepid = simple;
|
|
sh_iorenumber(shp,shp->inpipe[0],0);
|
|
/*
|
|
* if read end of pipe is a simple command
|
|
* treat as non-sharable to improve performance
|
|
*/
|
|
if(simple)
|
|
sfset(sfstdin,SF_PUBLIC|SF_SHARE,0);
|
|
waitall = job.waitall;
|
|
job.waitall = 0;
|
|
pid = job.parent;
|
|
}
|
|
else
|
|
error_info.line = t->fork.forkline-shp->st.firstline;
|
|
jmpval = sigsetjmp(buffp->buff,0);
|
|
if(jmpval==0)
|
|
{
|
|
if(shp->comsub==1)
|
|
tsetio = 1;
|
|
sh_redirect(shp,t->fork.forkio,execflg);
|
|
(t->fork.forktre)->tre.tretyp |= t->tre.tretyp&FSHOWME;
|
|
sh_exec(t->fork.forktre,flags&~simple);
|
|
}
|
|
else
|
|
sfsync(shp->outpool);
|
|
sh_popcontext(shp,buffp);
|
|
sh_iorestore(shp,buffp->topfd,jmpval);
|
|
if(buffp->olist)
|
|
free_list(buffp->olist);
|
|
if(type&FPIN)
|
|
{
|
|
job.waitall = waitall;
|
|
type = shp->exitval;
|
|
if(!(type&SH_EXITSIG))
|
|
{
|
|
/* wait for remainder of pipeline */
|
|
if(shp->pipepid>1)
|
|
{
|
|
job_wait(shp->pipepid);
|
|
type = shp->exitval;
|
|
}
|
|
else
|
|
job_wait(waitall?pid:0);
|
|
if(type || !sh_isoption(SH_PIPEFAIL))
|
|
shp->exitval = type;
|
|
}
|
|
if(shp->comsub==1 && usepipe)
|
|
sh_iounpipe(shp);
|
|
shp->pipepid = 0;
|
|
shp->st.ioset = 0;
|
|
}
|
|
if(jmpval>SH_JMPIO)
|
|
siglongjmp(*shp->jmplist,jmpval);
|
|
break;
|
|
}
|
|
|
|
case TPAR:
|
|
echeck = 1;
|
|
flags &= ~OPTIMIZE_FLAG;
|
|
if(!shp->subshell && !shp->st.trapcom[0] && !shp->st.trap[SH_ERRTRAP] && (flags&sh_state(SH_NOFORK)))
|
|
{
|
|
char *savsig;
|
|
int nsig,jmpval;
|
|
struct checkpt *buffp = (struct checkpt*)stkalloc(shp->stk,sizeof(struct checkpt));
|
|
shp->st.otrapcom = 0;
|
|
if((nsig=shp->st.trapmax*sizeof(char*))>0 || shp->st.trapcom[0])
|
|
{
|
|
nsig += sizeof(char*);
|
|
memcpy(savsig=malloc(nsig),(char*)&shp->st.trapcom[0],nsig);
|
|
shp->st.otrapcom = (char**)savsig;
|
|
}
|
|
sh_sigreset(0);
|
|
sh_pushcontext(shp,buffp,SH_JMPEXIT);
|
|
jmpval = sigsetjmp(buffp->buff,0);
|
|
if(jmpval==0)
|
|
sh_exec(t->par.partre,flags);
|
|
sh_popcontext(shp,buffp);
|
|
if(jmpval > SH_JMPEXIT)
|
|
siglongjmp(*shp->jmplist,jmpval);
|
|
if(shp->exitval > 256)
|
|
shp->exitval -= 128;
|
|
sh_done(shp,0);
|
|
}
|
|
else if(((type=t->par.partre->tre.tretyp)&FAMP) && ((type&COMMSK)==TFORK)
|
|
&& !sh_isoption(SH_INTERACTIVE) && !job.jobcontrol)
|
|
{
|
|
/* Optimize '( simple_command & )' */
|
|
pid_t pid;
|
|
sfsync(NIL(Sfio_t*));
|
|
while((pid=fork())< 0)
|
|
_sh_fork(shp,pid,0,0);
|
|
if(pid==0)
|
|
{
|
|
shgd->current_pid = getpid();
|
|
sh_exec(t->par.partre,flags);
|
|
shp->st.trapcom[0]=0;
|
|
sh_done(shp,0);
|
|
}
|
|
}
|
|
else
|
|
sh_subshell(shp,t->par.partre,flags,0);
|
|
break;
|
|
|
|
case TFIL:
|
|
{
|
|
/*
|
|
* This code sets up a pipe.
|
|
* All elements of the pipe are started by the parent.
|
|
* The last element executes in current environment
|
|
*/
|
|
int pvo[3]; /* old pipe for multi-stage */
|
|
int pvn[3]; /* current set up pipe */
|
|
int savepipe = pipejob;
|
|
int savelock = nlock;
|
|
int showme = t->tre.tretyp&FSHOWME;
|
|
int n,waitall,savewaitall=job.waitall;
|
|
int savejobid = job.curjobid;
|
|
int *exitval=0,*saveexitval = job.exitval;
|
|
pid_t savepgid = job.curpgid;
|
|
echeck = 1;
|
|
job.exitval = 0;
|
|
job.curjobid = 0;
|
|
if(shp->subshell)
|
|
{
|
|
sh_subtmpfile(2);
|
|
if(shp->comsub==1 && !(shp->fdstatus[1]&IONOSEEK))
|
|
iousepipe(shp);
|
|
}
|
|
shp->inpipe = pvo;
|
|
shp->outpipe = pvn;
|
|
pvo[1] = -1;
|
|
if(sh_isoption(SH_PIPEFAIL))
|
|
{
|
|
const Shnode_t* tn=t;
|
|
job.waitall = 2;
|
|
job.curpgid = 0;
|
|
while((tn=tn->lst.lstrit) && tn->tre.tretyp==TFIL)
|
|
job.waitall++;
|
|
exitval = job.exitval = (int*)stakalloc(job.waitall*sizeof(int));
|
|
memset(exitval,0,job.waitall*sizeof(int));
|
|
}
|
|
else
|
|
job.waitall |= (job.bktick_waitall || !pipejob && sh_isstate(SH_MONITOR));
|
|
job_lock();
|
|
nlock++;
|
|
do
|
|
{
|
|
/* create the pipe */
|
|
sh_pipe(pvn);
|
|
/* execute out part of pipe no wait */
|
|
(t->lst.lstlef)->tre.tretyp |= showme;
|
|
type = sh_exec(t->lst.lstlef, errorflg);
|
|
/* close out-part of pipe */
|
|
sh_close(pvn[1]);
|
|
pipejob=1;
|
|
/* save the pipe stream-ids */
|
|
pvo[0] = pvn[0];
|
|
/* pipeline all in one process group */
|
|
t = t->lst.lstrit;
|
|
}
|
|
/* repeat until end of pipeline */
|
|
while(!type && t->tre.tretyp==TFIL);
|
|
shp->inpipe = pvn;
|
|
shp->outpipe = 0;
|
|
pipejob = 2;
|
|
waitall = job.waitall;
|
|
job.waitall = 0;
|
|
if(type == 0)
|
|
{
|
|
/*
|
|
* execute last element of pipeline
|
|
* in the current process
|
|
*/
|
|
((Shnode_t*)t)->tre.tretyp |= showme;
|
|
sh_exec(t,flags);
|
|
}
|
|
else
|
|
/* execution failure, close pipe */
|
|
sh_pclose(pvn);
|
|
if(pipejob==2)
|
|
job_unlock();
|
|
if((pipejob = savepipe) && nlock<savelock)
|
|
pipejob = 1;
|
|
n = shp->exitval;
|
|
if(job.waitall = waitall)
|
|
{
|
|
if(sh_isstate(SH_MONITOR))
|
|
job_wait(0);
|
|
else
|
|
{
|
|
shp->intrap++;
|
|
job_wait(0);
|
|
shp->intrap--;
|
|
}
|
|
}
|
|
if(n==0 && exitval)
|
|
{
|
|
while(exitval <= --job.exitval)
|
|
{
|
|
if(*job.exitval)
|
|
{
|
|
n = *job.exitval;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
shp->exitval = n;
|
|
#ifdef SIGTSTP
|
|
if(!pipejob && sh_isstate(SH_MONITOR) && sh_isoption(SH_INTERACTIVE))
|
|
tcsetpgrp(JOBTTY,shp->gd->pid);
|
|
#endif /*SIGTSTP */
|
|
job.curpgid = savepgid;
|
|
job.exitval = saveexitval;
|
|
job.waitall = savewaitall;
|
|
job.curjobid = savejobid;
|
|
break;
|
|
}
|
|
|
|
case TLST:
|
|
{
|
|
/* a list of commands are executed here */
|
|
do
|
|
{
|
|
sh_exec(t->lst.lstlef,errorflg|OPTIMIZE);
|
|
t = t->lst.lstrit;
|
|
}
|
|
while(t->tre.tretyp == TLST);
|
|
sh_exec(t,flags);
|
|
break;
|
|
}
|
|
|
|
case TAND:
|
|
if(type&TTEST)
|
|
skipexitset++;
|
|
if(sh_exec(t->lst.lstlef,OPTIMIZE)==0)
|
|
sh_exec(t->lst.lstrit,flags);
|
|
break;
|
|
|
|
case TORF:
|
|
if(type&TTEST)
|
|
skipexitset++;
|
|
if(sh_exec(t->lst.lstlef,OPTIMIZE)!=0)
|
|
sh_exec(t->lst.lstrit,flags);
|
|
break;
|
|
|
|
case TFOR: /* for and select */
|
|
{
|
|
register char **args;
|
|
register int nargs;
|
|
register Namval_t *np;
|
|
int flag = errorflg|OPTIMIZE_FLAG;
|
|
struct dolnod *argsav=0;
|
|
struct comnod *tp;
|
|
char *cp, *trap, *nullptr = 0;
|
|
int nameref, refresh=1;
|
|
char *av[5];
|
|
#if SHOPT_OPTIMIZE
|
|
int jmpval = ((struct checkpt*)shp->jmplist)->mode;
|
|
struct checkpt *buffp = (struct checkpt*)stkalloc(shp->stk,sizeof(struct checkpt));
|
|
void *optlist = shp->optlist;
|
|
shp->optlist = 0;
|
|
sh_tclear(t->for_.fortre);
|
|
sh_pushcontext(shp,buffp,jmpval);
|
|
jmpval = sigsetjmp(buffp->buff,0);
|
|
if(jmpval)
|
|
goto endfor;
|
|
#endif /* SHOPT_OPTIMIZE */
|
|
error_info.line = t->for_.forline-shp->st.firstline;
|
|
if(!(tp=t->for_.forlst))
|
|
{
|
|
args=shp->st.dolv+1;
|
|
nargs = shp->st.dolc;
|
|
argsav=sh_arguse(shp);
|
|
}
|
|
else
|
|
{
|
|
args=sh_argbuild(shp,&argn,tp,0);
|
|
nargs = argn;
|
|
}
|
|
np = nv_open(t->for_.fornam, shp->var_tree,NV_NOASSIGN|NV_NOARRAY|NV_VARNAME|NV_NOREF);
|
|
nameref = nv_isref(np)!=0;
|
|
shp->st.loopcnt++;
|
|
cp = *args;
|
|
while(cp && shp->st.execbrk==0)
|
|
{
|
|
if(t->tre.tretyp&COMSCAN)
|
|
{
|
|
char *val;
|
|
int save_prompt;
|
|
/* reuse register */
|
|
if(refresh)
|
|
{
|
|
sh_menu(sfstderr,nargs,args);
|
|
refresh = 0;
|
|
}
|
|
save_prompt = shp->nextprompt;
|
|
shp->nextprompt = 3;
|
|
shp->timeout = 0;
|
|
shp->exitval=sh_readline(shp,&nullptr,0,1,(size_t)0,1000*shp->st.tmout);
|
|
shp->nextprompt = save_prompt;
|
|
if(shp->exitval||sfeof(sfstdin)||sferror(sfstdin))
|
|
{
|
|
shp->exitval = 1;
|
|
break;
|
|
}
|
|
if(!(val=nv_getval(sh_scoped(shp,REPLYNOD))))
|
|
continue;
|
|
else
|
|
{
|
|
if(*(cp=val) == 0)
|
|
{
|
|
refresh++;
|
|
goto check;
|
|
}
|
|
while(type = *cp++)
|
|
if(type < '0' && type > '9')
|
|
break;
|
|
if(type!=0)
|
|
type = nargs;
|
|
else
|
|
type = (int)strtol(val, (char**)0, 10)-1;
|
|
if(type<0 || type >= nargs)
|
|
cp = "";
|
|
else
|
|
cp = args[type];
|
|
}
|
|
}
|
|
if(nameref)
|
|
nv_offattr(np,NV_REF);
|
|
else if(nv_isattr(np, NV_ARRAY))
|
|
nv_putsub(np,NIL(char*),0L);
|
|
nv_putval(np,cp,0);
|
|
if(nameref)
|
|
nv_setref(np,(Dt_t*)0,NV_VARNAME);
|
|
if(trap=shp->st.trap[SH_DEBUGTRAP])
|
|
{
|
|
av[0] = (t->tre.tretyp&COMSCAN)?"select":"for";
|
|
av[1] = t->for_.fornam;
|
|
av[2] = "in";
|
|
av[3] = cp;
|
|
av[4] = 0;
|
|
sh_debug(shp,trap,(char*)0,(char*)0,av,0);
|
|
}
|
|
sh_exec(t->for_.fortre,flag);
|
|
flag &= ~OPTIMIZE_FLAG;
|
|
if(t->tre.tretyp&COMSCAN)
|
|
{
|
|
if((cp=nv_getval(sh_scoped(shp,REPLYNOD))) && *cp==0)
|
|
refresh++;
|
|
}
|
|
else
|
|
cp = *++args;
|
|
check:
|
|
if(shp->st.breakcnt<0)
|
|
shp->st.execbrk = (++shp->st.breakcnt !=0);
|
|
}
|
|
#if SHOPT_OPTIMIZE
|
|
endfor:
|
|
sh_popcontext(shp,buffp);
|
|
sh_tclear(t->for_.fortre);
|
|
sh_optclear(shp,optlist);
|
|
if(jmpval)
|
|
siglongjmp(*shp->jmplist,jmpval);
|
|
#endif /*SHOPT_OPTIMIZE */
|
|
if(shp->st.breakcnt>0)
|
|
shp->st.execbrk = (--shp->st.breakcnt !=0);
|
|
shp->st.loopcnt--;
|
|
sh_argfree(shp,argsav,0);
|
|
nv_close(np);
|
|
break;
|
|
}
|
|
|
|
case TWH: /* while and until */
|
|
{
|
|
volatile int r=0;
|
|
int first = OPTIMIZE_FLAG;
|
|
Shnode_t *tt = t->wh.whtre;
|
|
#if SHOPT_FILESCAN
|
|
Sfio_t *iop=0;
|
|
int savein;
|
|
#endif /*SHOPT_FILESCAN*/
|
|
#if SHOPT_OPTIMIZE
|
|
int jmpval = ((struct checkpt*)shp->jmplist)->mode;
|
|
struct checkpt *buffp = (struct checkpt*)stkalloc(shp->stk,sizeof(struct checkpt));
|
|
void *optlist = shp->optlist;
|
|
#endif /* SHOPT_OPTIMIZE */
|
|
#if SHOPT_OPTIMIZE
|
|
shp->optlist = 0;
|
|
sh_tclear(t->wh.whtre);
|
|
sh_tclear(t->wh.dotre);
|
|
sh_pushcontext(shp,buffp,jmpval);
|
|
jmpval = sigsetjmp(buffp->buff,0);
|
|
if(jmpval)
|
|
goto endwhile;
|
|
#endif /* SHOPT_OPTIMIZE */
|
|
#if SHOPT_FILESCAN
|
|
if(type==TWH && tt->tre.tretyp==TCOM && !tt->com.comarg && tt->com.comio)
|
|
{
|
|
iop = openstream(shp,tt->com.comio,&savein);
|
|
if(tt->com.comset)
|
|
nv_setlist(tt->com.comset,NV_IDENT|NV_ASSIGN,0);
|
|
}
|
|
#endif /*SHOPT_FILESCAN */
|
|
shp->st.loopcnt++;
|
|
while(shp->st.execbrk==0)
|
|
{
|
|
#if SHOPT_FILESCAN
|
|
if(iop)
|
|
{
|
|
if(!(shp->cur_line=sfgetr(iop,'\n',SF_STRING)))
|
|
break;
|
|
}
|
|
else
|
|
#endif /*SHOPT_FILESCAN */
|
|
if((sh_exec(tt,first)==0)!=(type==TWH))
|
|
break;
|
|
r = sh_exec(t->wh.dotre,first|errorflg);
|
|
if(shp->st.breakcnt<0)
|
|
shp->st.execbrk = (++shp->st.breakcnt !=0);
|
|
/* This is for the arithmetic for */
|
|
if(shp->st.execbrk==0 && t->wh.whinc)
|
|
sh_exec((Shnode_t*)t->wh.whinc,first);
|
|
first = 0;
|
|
errorflg &= ~OPTIMIZE_FLAG;
|
|
#if SHOPT_FILESCAN
|
|
shp->offsets[0] = -1;
|
|
shp->offsets[1] = 0;
|
|
#endif /*SHOPT_FILESCAN */
|
|
}
|
|
#if SHOPT_OPTIMIZE
|
|
endwhile:
|
|
sh_popcontext(shp,buffp);
|
|
sh_tclear(t->wh.whtre);
|
|
sh_tclear(t->wh.dotre);
|
|
sh_optclear(shp,optlist);
|
|
if(jmpval)
|
|
siglongjmp(*shp->jmplist,jmpval);
|
|
#endif /*SHOPT_OPTIMIZE */
|
|
if(shp->st.breakcnt>0)
|
|
shp->st.execbrk = (--shp->st.breakcnt !=0);
|
|
shp->st.loopcnt--;
|
|
shp->exitval= r;
|
|
#if SHOPT_FILESCAN
|
|
if(iop)
|
|
{
|
|
sfclose(iop);
|
|
close(0);
|
|
dup(savein);
|
|
shp->cur_line = 0;
|
|
}
|
|
#endif /*SHOPT_FILESCAN */
|
|
break;
|
|
}
|
|
case TARITH: /* (( expression )) */
|
|
{
|
|
register char *trap;
|
|
char *arg[4];
|
|
error_info.line = t->ar.arline-shp->st.firstline;
|
|
arg[0] = "((";
|
|
if(!(t->ar.arexpr->argflag&ARG_RAW))
|
|
arg[1] = sh_macpat(shp,t->ar.arexpr,OPTIMIZE|ARG_ARITH);
|
|
else
|
|
arg[1] = t->ar.arexpr->argval;
|
|
arg[2] = "))";
|
|
arg[3] = 0;
|
|
if(trap=shp->st.trap[SH_DEBUGTRAP])
|
|
sh_debug(shp,trap,(char*)0, (char*)0, arg, ARG_ARITH);
|
|
if(sh_isoption(SH_XTRACE))
|
|
{
|
|
sh_trace(shp,NIL(char**),0);
|
|
sfprintf(sfstderr,"((%s))\n",arg[1]);
|
|
}
|
|
if(t->ar.arcomp)
|
|
shp->exitval = !arith_exec((Arith_t*)t->ar.arcomp);
|
|
else
|
|
shp->exitval = !sh_arith(shp,arg[1]);
|
|
break;
|
|
}
|
|
|
|
case TIF:
|
|
if(sh_exec(t->if_.iftre,OPTIMIZE)==0)
|
|
sh_exec(t->if_.thtre,flags);
|
|
else if(t->if_.eltre)
|
|
sh_exec(t->if_.eltre, flags);
|
|
else
|
|
shp->exitval=0; /* force zero exit for if-then-fi */
|
|
break;
|
|
|
|
case TSW:
|
|
{
|
|
Shnode_t *tt = (Shnode_t*)t;
|
|
char *trap, *r = sh_macpat(shp,tt->sw.swarg,OPTIMIZE);
|
|
error_info.line = t->sw.swline-shp->st.firstline;
|
|
t= (Shnode_t*)(tt->sw.swlst);
|
|
if(trap=shp->st.trap[SH_DEBUGTRAP])
|
|
{
|
|
char *av[4];
|
|
av[0] = "case";
|
|
av[1] = r;
|
|
av[2] = "in";
|
|
av[3] = 0;
|
|
sh_debug(shp,trap, (char*)0, (char*)0, av, 0);
|
|
}
|
|
while(t)
|
|
{
|
|
register struct argnod *rex=(struct argnod*)t->reg.regptr;
|
|
while(rex)
|
|
{
|
|
register char *s;
|
|
if(rex->argflag&ARG_MAC)
|
|
{
|
|
s = sh_macpat(shp,rex,OPTIMIZE|ARG_EXP);
|
|
while(*s=='\\' && s[1]==0)
|
|
s+=2;
|
|
}
|
|
else
|
|
s = rex->argval;
|
|
type = (rex->argflag&ARG_RAW);
|
|
if((type && strcmp(r,s)==0) ||
|
|
(!type && strmatch(r,s)))
|
|
{
|
|
do sh_exec(t->reg.regcom,(t->reg.regflag?(flags&sh_state(SH_ERREXIT)):flags));
|
|
while(t->reg.regflag &&
|
|
(t=(Shnode_t*)t->reg.regnxt));
|
|
t=0;
|
|
break;
|
|
}
|
|
else
|
|
rex=rex->argnxt.ap;
|
|
}
|
|
if(t)
|
|
t=(Shnode_t*)t->reg.regnxt;
|
|
}
|
|
break;
|
|
}
|
|
|
|
case TTIME:
|
|
{
|
|
/* time the command */
|
|
const char *format = e_timeformat;
|
|
struct timeval ta, tb;
|
|
#ifdef timeofday
|
|
struct timeval before_usr, before_sys, after_usr, after_sys, tm[3];
|
|
#else
|
|
struct tms before,after;
|
|
clock_t at, bt, tm[3];
|
|
#endif
|
|
if(type!=TTIME)
|
|
{
|
|
sh_exec(t->par.partre,OPTIMIZE);
|
|
shp->exitval = !shp->exitval;
|
|
break;
|
|
}
|
|
if(t->par.partre)
|
|
{
|
|
if(shp->subshell && shp->comsub==1)
|
|
sh_subfork();
|
|
long timer_on = sh_isstate(SH_TIMING);
|
|
#ifdef timeofday
|
|
/* must be run after forking a subshell */
|
|
timeofday(&tb);
|
|
get_cpu_times(shp, &before_usr, &before_sys);
|
|
#else
|
|
bt = times(&before);
|
|
if(bt == (clock_t)-1)
|
|
errormsg(SH_DICT, ERROR_exit(1), "times(3) failed: %s", strerror(errno));
|
|
#endif
|
|
job.waitall = 1;
|
|
sh_onstate(SH_TIMING);
|
|
sh_exec(t->par.partre,OPTIMIZE);
|
|
if(!timer_on)
|
|
sh_offstate(SH_TIMING);
|
|
job.waitall = 0;
|
|
}
|
|
else
|
|
{
|
|
#ifdef timeofday
|
|
before_usr.tv_sec = before_usr.tv_usec = 0;
|
|
before_sys.tv_sec = before_sys.tv_usec = 0;
|
|
#else
|
|
bt = 0;
|
|
before.tms_utime = before.tms_cutime = 0;
|
|
before.tms_stime = before.tms_cstime = 0;
|
|
#endif
|
|
}
|
|
#ifndef timeofday
|
|
at = times(&after) - bt;
|
|
if(at == (clock_t)-1)
|
|
errormsg(SH_DICT, ERROR_exit(1), "times(3) failed: %s", strerror(errno));
|
|
tm[0] = at;
|
|
#else
|
|
get_cpu_times(shp, &after_usr, &after_sys);
|
|
timeofday(&ta);
|
|
timersub(&ta, &tb, &tm[TM_REAL_IDX]); /* calculate elapsed real-time */
|
|
timersub(&after_usr, &before_usr, &tm[TM_USR_IDX]);
|
|
timersub(&after_sys, &before_sys, &tm[TM_SYS_IDX]);
|
|
#endif
|
|
|
|
if(t->par.partre)
|
|
{
|
|
Namval_t *np = nv_open("TIMEFORMAT",shp->var_tree,NV_NOADD);
|
|
if(np)
|
|
{
|
|
format = nv_getval(np);
|
|
nv_close(np);
|
|
}
|
|
if(!format)
|
|
format = e_timeformat;
|
|
}
|
|
else
|
|
format = strchr(format+1,'\n')+1;
|
|
#ifndef timeofday
|
|
tm[1] = after.tms_utime - before.tms_utime;
|
|
tm[1] += after.tms_cutime - before.tms_cutime;
|
|
tm[2] = after.tms_stime - before.tms_stime;
|
|
tm[2] += after.tms_cstime - before.tms_cstime;
|
|
#endif
|
|
if(format && *format)
|
|
p_time(shp,sfstderr,sh_translate(format),tm);
|
|
break;
|
|
}
|
|
case TFUN:
|
|
{
|
|
register Namval_t *np=0;
|
|
register struct slnod *slp;
|
|
register char *fname = ((struct functnod*)t)->functnam;
|
|
register char *cp = strrchr(fname,'.');
|
|
register Namval_t *npv=0,*mp;
|
|
#if SHOPT_NAMESPACE
|
|
if(t->tre.tretyp==TNSPACE)
|
|
{
|
|
Dt_t *root;
|
|
Namval_t *oldnspace = shp->namespace;
|
|
int offset = stktell(stkp);
|
|
int flags=NV_NOASSIGN|NV_NOARRAY|NV_VARNAME;
|
|
if(cp)
|
|
errormsg(SH_DICT,ERROR_exit(1),e_ident,fname);
|
|
sfputc(stkp,'.');
|
|
sfputr(stkp,fname,0);
|
|
np = nv_open(stkptr(stkp,offset),shp->var_tree,flags);
|
|
offset = stktell(stkp);
|
|
if(nv_istable(np))
|
|
root = nv_dict(np);
|
|
else
|
|
{
|
|
root = dtopen(&_Nvdisc,Dtoset);
|
|
nv_mount(np, (char*)0, root);
|
|
np->nvalue.cp = Empty;
|
|
dtview(root,shp->var_base);
|
|
}
|
|
oldnspace = enter_namespace(shp,np);
|
|
sh_exec(t->for_.fortre,flags|sh_state(SH_ERREXIT));
|
|
enter_namespace(shp,oldnspace);
|
|
break;
|
|
}
|
|
#endif /* SHOPT_NAMESPACE */
|
|
/* look for discipline functions */
|
|
error_info.line = t->funct.functline-shp->st.firstline;
|
|
/* Function names cannot be special builtin */
|
|
if(cp || shp->prefix)
|
|
{
|
|
int offset = stktell(stkp);
|
|
if(shp->prefix)
|
|
{
|
|
cp = shp->prefix;
|
|
shp->prefix = 0;
|
|
npv = nv_open(cp,shp->var_tree,NV_NOASSIGN|NV_NOARRAY|NV_VARNAME);
|
|
shp->prefix = cp;
|
|
cp = fname;
|
|
}
|
|
else
|
|
{
|
|
sfwrite(stkp,fname,cp++-fname);
|
|
sfputc(stkp,0);
|
|
npv = nv_open(stkptr(stkp,offset),shp->var_tree,NV_NOASSIGN|NV_NOARRAY|NV_VARNAME);
|
|
}
|
|
offset = stktell(stkp);
|
|
sfprintf(stkp,"%s.%s%c",nv_name(npv),cp,0);
|
|
fname = stkptr(stkp,offset);
|
|
}
|
|
else if((mp=nv_search(fname,shp->bltin_tree,0)) && nv_isattr(mp,BLT_SPC))
|
|
errormsg(SH_DICT,ERROR_exit(1),e_badfun,fname);
|
|
#if SHOPT_NAMESPACE
|
|
if(shp->namespace && !shp->prefix && *fname!='.')
|
|
np = sh_fsearch(shp,fname,NV_ADD|HASH_NOSCOPE);
|
|
if(!np)
|
|
#endif /* SHOPT_NAMESPACE */
|
|
np = nv_open(fname,sh_subfuntree(1),NV_NOASSIGN|NV_NOARRAY|NV_VARNAME|NV_NOSCOPE);
|
|
if(npv)
|
|
{
|
|
if(!shp->mktype)
|
|
cp = nv_setdisc(npv,cp,np,(Namfun_t*)npv);
|
|
if(!cp)
|
|
errormsg(SH_DICT,ERROR_exit(1),e_baddisc,fname);
|
|
}
|
|
if(np->nvalue.rp)
|
|
{
|
|
struct Ufunction *rp = np->nvalue.rp;
|
|
slp = (struct slnod*)np->nvenv;
|
|
sh_funstaks(slp->slchild,-1);
|
|
stakdelete(slp->slptr);
|
|
if(shp->funload)
|
|
{
|
|
free((void*)np->nvalue.rp);
|
|
np->nvalue.rp = 0;
|
|
}
|
|
if(rp->sdict)
|
|
{
|
|
Namval_t *mp, *nq;
|
|
shp->last_root = rp->sdict;
|
|
for(mp=(Namval_t*)dtfirst(rp->sdict);mp;mp=nq)
|
|
{
|
|
_nv_unset(mp,NV_RDONLY);
|
|
nq = dtnext(rp->sdict,mp);
|
|
nv_delete(mp,rp->sdict,0);
|
|
}
|
|
dtclose(rp->sdict);
|
|
rp->sdict = 0;
|
|
}
|
|
}
|
|
if(!np->nvalue.rp)
|
|
{
|
|
np->nvalue.rp = new_of(struct Ufunction,shp->funload?sizeof(Dtlink_t):0);
|
|
memset((void*)np->nvalue.rp,0,sizeof(struct Ufunction));
|
|
}
|
|
if(t->funct.functstak)
|
|
{
|
|
static Dtdisc_t _Rpdisc =
|
|
{
|
|
offsetof(struct Ufunction,fname), -1, sizeof(struct Ufunction)
|
|
};
|
|
struct functnod *fp;
|
|
struct comnod *ac = t->funct.functargs;
|
|
slp = t->funct.functstak;
|
|
sh_funstaks(slp->slchild,1);
|
|
staklink(slp->slptr);
|
|
np->nvenv = (char*)slp;
|
|
nv_funtree(np) = (int*)(t->funct.functtre);
|
|
np->nvalue.rp->hoffset = t->funct.functloc;
|
|
np->nvalue.rp->lineno = t->funct.functline;
|
|
np->nvalue.rp->nspace = shp->namespace;
|
|
np->nvalue.rp->fname = 0;
|
|
np->nvalue.rp->argv = ac?((struct dolnod*)ac->comarg)->dolval+1:0;
|
|
np->nvalue.rp->argc = ac?((struct dolnod*)ac->comarg)->dolnum:0;
|
|
np->nvalue.rp->fdict = shp->fun_tree;
|
|
fp = (struct functnod*)(slp+1);
|
|
if(fp->functtyp==(TFUN|FAMP))
|
|
np->nvalue.rp->fname = fp->functnam;
|
|
nv_setsize(np,fp->functline);
|
|
nv_offattr(np,NV_FPOSIX);
|
|
if(shp->funload)
|
|
{
|
|
struct Ufunction *rp = np->nvalue.rp;
|
|
rp->np = np;
|
|
if(!shp->fpathdict)
|
|
shp->fpathdict = dtopen(&_Rpdisc,Dtobag);
|
|
if(shp->fpathdict)
|
|
dtinsert(shp->fpathdict,rp);
|
|
}
|
|
}
|
|
else
|
|
_nv_unset(np,0);
|
|
if(type&FPOSIX)
|
|
nv_onattr(np,NV_FUNCTION|NV_FPOSIX);
|
|
else
|
|
nv_onattr(np,NV_FUNCTION);
|
|
if(type&FPIN)
|
|
nv_onattr(np,NV_FTMP);
|
|
if(type&FOPTGET)
|
|
nv_onattr(np,NV_OPTGET);
|
|
break;
|
|
}
|
|
|
|
/* new test compound command */
|
|
case TTST:
|
|
{
|
|
register int n;
|
|
register char *left;
|
|
int negate = (type&TNEGATE)!=0;
|
|
if(type&TTEST)
|
|
skipexitset++;
|
|
error_info.line = t->tst.tstline-shp->st.firstline;
|
|
echeck = 1;
|
|
if((type&TPAREN)==TPAREN)
|
|
{
|
|
sh_exec(t->lst.lstlef,OPTIMIZE);
|
|
n = !shp->exitval;
|
|
}
|
|
else
|
|
{
|
|
register int traceon=0;
|
|
register char *right;
|
|
register char *trap;
|
|
char *argv[6];
|
|
n = type>>TSHIFT;
|
|
left = sh_macpat(shp,&(t->lst.lstlef->arg),OPTIMIZE);
|
|
if(type&TBINARY)
|
|
right = sh_macpat(shp,&(t->lst.lstrit->arg),((n==TEST_PEQ||n==TEST_PNE)?ARG_EXP:0)|OPTIMIZE);
|
|
if(trap=shp->st.trap[SH_DEBUGTRAP])
|
|
argv[0] = (type&TNEGATE)?((char*)e_tstbegin):"[[";
|
|
if(sh_isoption(SH_XTRACE))
|
|
{
|
|
traceon = sh_trace(shp,NIL(char**),0);
|
|
sfwrite(sfstderr,e_tstbegin,(type&TNEGATE?5:3));
|
|
}
|
|
if(type&TUNARY)
|
|
{
|
|
if(traceon)
|
|
sfprintf(sfstderr,"-%c %s",n,sh_fmtq(left));
|
|
if(trap)
|
|
{
|
|
char unop[3];
|
|
unop[0] = '-';
|
|
unop[1] = n;
|
|
unop[2] = 0;
|
|
argv[1] = unop;
|
|
argv[2] = left;
|
|
argv[3] = "]]";
|
|
argv[4] = 0;
|
|
sh_debug(shp,trap,(char*)0,(char*)0,argv, 0);
|
|
}
|
|
n = test_unop(shp,n,left);
|
|
}
|
|
else if(type&TBINARY)
|
|
{
|
|
char *op;
|
|
int pattern = 0;
|
|
if(trap || traceon)
|
|
op = (char*)(shtab_testops+(n&037)-1)->sh_name;
|
|
type >>= TSHIFT;
|
|
if(type==TEST_PEQ || type==TEST_PNE)
|
|
pattern=ARG_EXP;
|
|
if(trap)
|
|
{
|
|
argv[1] = left;
|
|
argv[2] = op;
|
|
argv[3] = right;
|
|
argv[4] = "]]";
|
|
argv[5] = 0;
|
|
sh_debug(shp,trap,(char*)0,(char*)0,argv, pattern);
|
|
}
|
|
n = test_binop(shp,n,left,right);
|
|
if(traceon)
|
|
{
|
|
sfprintf(sfstderr,"%s %s ",sh_fmtq(left),op);
|
|
if(pattern)
|
|
out_pattern(sfstderr,right,-1);
|
|
else
|
|
sfputr(sfstderr,sh_fmtq(right),-1);
|
|
}
|
|
}
|
|
if(traceon)
|
|
sfwrite(sfstderr,e_tstend,4);
|
|
}
|
|
shp->exitval = ((!n)^negate);
|
|
if(!skipexitset)
|
|
exitset();
|
|
break;
|
|
}
|
|
}
|
|
if(shp->trapnote || (shp->exitval && sh_isstate(SH_ERREXIT)) &&
|
|
t && echeck)
|
|
sh_chktrap(shp);
|
|
/* set $_ */
|
|
if(mainloop && com0)
|
|
{
|
|
/* store last argument here if it fits */
|
|
static char lastarg[32];
|
|
if(sh_isstate(SH_FORKED))
|
|
sh_done(shp,0);
|
|
if(shp->lastarg!= lastarg && shp->lastarg)
|
|
free(shp->lastarg);
|
|
if(strlen(comn) < sizeof(lastarg))
|
|
{
|
|
nv_onattr(L_ARGNOD,NV_NOFREE);
|
|
shp->lastarg = strcpy(lastarg,comn);
|
|
}
|
|
else
|
|
{
|
|
nv_offattr(L_ARGNOD,NV_NOFREE);
|
|
shp->lastarg = strdup(comn);
|
|
}
|
|
}
|
|
if(!skipexitset)
|
|
exitset();
|
|
if(!(OPTIMIZE))
|
|
{
|
|
if(sav != stkptr(stkp,0))
|
|
stkset(stkp,sav,0);
|
|
else if(stktell(stkp))
|
|
stkseek(stkp,0);
|
|
}
|
|
if(shp->trapnote&SH_SIGSET)
|
|
sh_exit(SH_EXITSIG|shp->lastsig);
|
|
if(was_interactive)
|
|
sh_onstate(SH_INTERACTIVE);
|
|
if(was_monitor && sh_isoption(SH_MONITOR))
|
|
sh_onstate(SH_MONITOR);
|
|
if(was_errexit)
|
|
sh_onstate(SH_ERREXIT);
|
|
}
|
|
return(shp->exitval);
|
|
}
|
|
|
|
int sh_run(int argn, char *argv[])
|
|
{
|
|
Shell_t *shp = sh_getinterp();
|
|
register struct dolnod *dp;
|
|
register struct comnod *t = (struct comnod*)stakalloc(sizeof(struct comnod));
|
|
int savtop = staktell();
|
|
char *savptr = stakfreeze(0);
|
|
Opt_t *op, *np = optctx(0, 0);
|
|
Shbltin_t bltindata;
|
|
bltindata = shp->bltindata;
|
|
op = optctx(np, 0);
|
|
memset(t, 0, sizeof(struct comnod));
|
|
dp = (struct dolnod*)stakalloc((unsigned)sizeof(struct dolnod) + ARG_SPARE*sizeof(char*) + argn*sizeof(char*));
|
|
dp->dolnum = argn;
|
|
dp->dolbot = ARG_SPARE;
|
|
memcpy(dp->dolval+ARG_SPARE, argv, (argn+1)*sizeof(char*));
|
|
t->comarg = (struct argnod*)dp;
|
|
if(!strchr(argv[0],'/'))
|
|
t->comnamp = (void*)nv_bfsearch(argv[0],shp->fun_tree,(Namval_t**)&t->comnamq,(char**)0);
|
|
argn=sh_exec((Shnode_t*)t,sh_isstate(SH_ERREXIT));
|
|
optctx(op,np);
|
|
shp->bltindata = bltindata;
|
|
if(savptr!=stakptr(0))
|
|
stakset(savptr,savtop);
|
|
else
|
|
stakseek(savtop);
|
|
return(argn);
|
|
}
|
|
|
|
/*
|
|
* print out the command line if set -x is on
|
|
*/
|
|
|
|
int sh_trace(Shell_t *shp,register char *argv[], register int nl)
|
|
{
|
|
register char *cp;
|
|
register int bracket = 0;
|
|
int decl = (nl&2);
|
|
nl &= ~2;
|
|
if(sh_isoption(SH_XTRACE))
|
|
{
|
|
/* make this trace atomic */
|
|
sfset(sfstderr,SF_SHARE|SF_PUBLIC,0);
|
|
if(!(cp=nv_getval(sh_scoped(shp,PS4NOD))))
|
|
cp = "+ ";
|
|
else
|
|
{
|
|
sh_offoption(SH_XTRACE);
|
|
cp = sh_mactry(shp,cp);
|
|
sh_onoption(SH_XTRACE);
|
|
}
|
|
if(*cp)
|
|
sfputr(sfstderr,cp,-1);
|
|
if(argv)
|
|
{
|
|
char *argv0 = *argv;
|
|
nl = (nl?'\n':-1);
|
|
/* don't quote [ and [[ */
|
|
if(*(cp=argv[0])=='[' && (!cp[1] || !cp[2]&&cp[1]=='['))
|
|
{
|
|
sfputr(sfstderr,cp,*++argv?' ':nl);
|
|
bracket = 1;
|
|
}
|
|
while(cp = *argv++)
|
|
{
|
|
if(bracket==0 || *argv || *cp!=']')
|
|
cp = sh_fmtq(cp);
|
|
if(decl && shp->prefix && cp!=argv0 && *cp!='-')
|
|
{
|
|
if(*cp=='.' && cp[1]==0)
|
|
cp = shp->prefix;
|
|
else
|
|
sfputr(sfstderr,shp->prefix,'.');
|
|
}
|
|
sfputr(sfstderr,cp,*argv?' ':nl);
|
|
}
|
|
sfset(sfstderr,SF_SHARE|SF_PUBLIC,1);
|
|
}
|
|
return(1);
|
|
}
|
|
return(0);
|
|
}
|
|
|
|
/*
|
|
* This routine creates a subshell by calling fork() or vfork()
|
|
* If ((flags&COMASK)==TCOM), then vfork() is permitted
|
|
* If fork fails, the shell sleeps for exponentially longer periods
|
|
* and tries again until a limit is reached.
|
|
* SH_FORKLIM is the max period between forks - power of 2 usually.
|
|
* Currently shell tries after 2,4,8,16, and 32 seconds and then quits
|
|
* Failures cause the routine to error exit.
|
|
* Parent links to here-documents are removed by the child
|
|
* Traps are reset by the child
|
|
* The process-id of the child is returned to the parent, 0 to the child.
|
|
*/
|
|
|
|
static void timed_out(void *handle)
|
|
{
|
|
NOT_USED(handle);
|
|
timeout = 0;
|
|
}
|
|
|
|
|
|
/*
|
|
* called by parent and child after fork by sh_fork()
|
|
*/
|
|
pid_t _sh_fork(Shell_t *shp,register pid_t parent,int flags,int *jobid)
|
|
{
|
|
static long forkcnt = 1000L;
|
|
pid_t curpgid = job.curpgid;
|
|
pid_t postid = (flags&FAMP)?0:curpgid;
|
|
int sig,nochild;
|
|
if(parent<0)
|
|
{
|
|
sh_sigcheck(shp);
|
|
if((forkcnt *= 2) > 1000L*SH_FORKLIM)
|
|
{
|
|
forkcnt=1000L;
|
|
errormsg(SH_DICT,ERROR_system(ERROR_NOEXEC),e_nofork);
|
|
}
|
|
timeout = (void*)sh_timeradd(forkcnt, 0, timed_out, NIL(void*));
|
|
nochild = job_wait((pid_t)1);
|
|
if(timeout)
|
|
{
|
|
if(nochild)
|
|
pause();
|
|
else if(forkcnt>1000L)
|
|
forkcnt /= 2;
|
|
timerdel(timeout);
|
|
timeout = 0;
|
|
}
|
|
return(-1);
|
|
}
|
|
forkcnt = 1000L;
|
|
if(parent)
|
|
{
|
|
int myjob,waitall=job.waitall;
|
|
shp->gd->nforks++;
|
|
if(job.toclear)
|
|
job_clear();
|
|
job.waitall = waitall;
|
|
#ifdef JOBS
|
|
/* first process defines process group */
|
|
if(sh_isstate(SH_MONITOR))
|
|
{
|
|
/*
|
|
* errno==EPERM means that an earlier processes
|
|
* completed. Make parent the job group id.
|
|
*/
|
|
if(postid==0)
|
|
job.curpgid = parent;
|
|
if(job.jobcontrol || (flags&FAMP))
|
|
{
|
|
if(setpgid(parent,job.curpgid)<0 && errno==EPERM)
|
|
setpgid(parent,parent);
|
|
}
|
|
}
|
|
#endif /* JOBS */
|
|
if(!sh_isstate(SH_MONITOR) && job.waitall && postid==0)
|
|
job.curpgid = parent;
|
|
if(flags&FCOOP)
|
|
shp->cpid = parent;
|
|
if(!postid && job.curjobid && (flags&FPOU))
|
|
postid = job.curpgid;
|
|
#ifdef SHOPT_BGX
|
|
if(!postid && (flags&(FAMP|FINT)) == (FAMP|FINT))
|
|
postid = 1;
|
|
myjob = job_post(shp,parent,postid);
|
|
if(postid==1)
|
|
postid = 0;
|
|
#else
|
|
myjob = job_post(shp,parent,postid);
|
|
#endif /* SHOPT_BGX */
|
|
if(job.waitall && (flags&FPOU))
|
|
{
|
|
if(!job.curjobid)
|
|
job.curjobid = myjob;
|
|
if(job.exitval)
|
|
job.exitval++;
|
|
}
|
|
if(flags&FAMP)
|
|
job.curpgid = curpgid;
|
|
if(jobid)
|
|
*jobid = myjob;
|
|
if(shp->comsub==1 && usepipe)
|
|
{
|
|
if(!tsetio || !subdup)
|
|
{
|
|
if(shp->topfd > restorefd)
|
|
sh_iorestore(shp,restorefd,0);
|
|
sh_iounpipe(shp);
|
|
}
|
|
}
|
|
return(parent);
|
|
}
|
|
#if !_std_malloc
|
|
vmtrace(-1);
|
|
#endif
|
|
/* This is the child process */
|
|
shgd->current_pid = getpid(); /* ${.sh.pid} */
|
|
shp->outpipepid = ((flags&FPOU)?shgd->current_pid:0);
|
|
if(shp->trapnote&SH_SIGTERM)
|
|
sh_exit(SH_EXITSIG|SIGTERM);
|
|
shp->gd->nforks=0;
|
|
timerdel(NIL(void*));
|
|
#ifdef JOBS
|
|
if(!job.jobcontrol && !(flags&FAMP))
|
|
sh_offstate(SH_MONITOR);
|
|
if(sh_isstate(SH_MONITOR))
|
|
{
|
|
parent = shgd->current_pid;
|
|
if(postid==0)
|
|
job.curpgid = parent;
|
|
while(setpgid(0,job.curpgid)<0 && job.curpgid!=parent)
|
|
job.curpgid = parent;
|
|
# ifdef SIGTSTP
|
|
if(job.curpgid==parent && !(flags&FAMP))
|
|
tcsetpgrp(job.fd,job.curpgid);
|
|
# endif /* SIGTSTP */
|
|
}
|
|
# ifdef SIGTSTP
|
|
if(job.jobcontrol)
|
|
{
|
|
signal(SIGTTIN,SIG_DFL);
|
|
signal(SIGTTOU,SIG_DFL);
|
|
signal(SIGTSTP,SIG_DFL);
|
|
}
|
|
# endif /* SIGTSTP */
|
|
job.jobcontrol = 0;
|
|
#endif /* JOBS */
|
|
job.toclear = 1;
|
|
shp->login_sh = 0;
|
|
sh_offoption(SH_LOGIN_SHELL);
|
|
sh_onstate(SH_FORKED);
|
|
sh_onstate(SH_NOLOG);
|
|
if (shp->fn_reset)
|
|
shp->fn_depth = shp->fn_reset = 0;
|
|
#if SHOPT_ACCT
|
|
sh_accsusp();
|
|
#endif /* SHOPT_ACCT */
|
|
/* Reset remaining signals to parent */
|
|
/* except for those `lost' by trap */
|
|
if(!(flags&FSHOWME))
|
|
sh_sigreset(2);
|
|
SH_SUBSHELLNOD->nvalue.s++; /* increase ${.sh.subshell} */
|
|
shp->subshell = 0; /* zero virtual subshells */
|
|
shp->comsub = 0;
|
|
shp->spid = 0;
|
|
if((flags&FAMP) && shp->coutpipe>1)
|
|
sh_close(shp->coutpipe);
|
|
sig = shp->savesig;
|
|
shp->savesig = 0;
|
|
if(sig>0)
|
|
kill(shgd->current_pid,sig);
|
|
sh_sigcheck(shp);
|
|
usepipe=0;
|
|
return(0);
|
|
}
|
|
|
|
pid_t sh_fork(Shell_t *shp,int flags, int *jobid)
|
|
{
|
|
register pid_t parent;
|
|
register int sig;
|
|
if(!shp->pathlist)
|
|
path_get(shp,"");
|
|
sfsync(NIL(Sfio_t*));
|
|
shp->trapnote &= ~SH_SIGTERM;
|
|
job_fork(-1);
|
|
shp->savesig = -1;
|
|
while(_sh_fork(shp,parent=fork(),flags,jobid) < 0);
|
|
sh_stats(STAT_FORKS);
|
|
sig = shp->savesig;
|
|
shp->savesig = 0;
|
|
if(sig>0)
|
|
kill(shgd->current_pid,sig);
|
|
job_fork(parent);
|
|
return(parent);
|
|
}
|
|
|
|
struct Tdata
|
|
{
|
|
Shell_t *sh;
|
|
Namval_t *tp;
|
|
void *extra[2];
|
|
};
|
|
|
|
/*
|
|
* add exports from previous scope to the new scope
|
|
*/
|
|
static void local_exports(register Namval_t *np, void *data)
|
|
{
|
|
Shell_t *shp = ((struct Tdata*)data)->sh;
|
|
register Namval_t *mp;
|
|
register char *cp;
|
|
if(nv_isarray(np))
|
|
nv_putsub(np,NIL(char*),0);
|
|
if((cp = nv_getval(np)) && (mp = nv_search(nv_name(np), shp->var_tree, NV_ADD|HASH_NOSCOPE)) && nv_isnull(mp))
|
|
{
|
|
nv_putval(mp, cp, 0);
|
|
mp->nvflag = np->nvflag;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* This routine executes .sh.math functions from within ((...)))
|
|
*/
|
|
Sfdouble_t sh_mathfun(Shell_t *shp,void *fp, int nargs, Sfdouble_t *arg)
|
|
{
|
|
Sfdouble_t d;
|
|
Namval_t node,*mp,*np, *nref[9], **nr=nref;
|
|
char *argv[2];
|
|
struct funenv funenv;
|
|
int i;
|
|
np = (Namval_t*)fp;
|
|
funenv.node = np;
|
|
funenv.nref = nref;
|
|
funenv.env = 0;
|
|
memcpy(&node,SH_VALNOD,sizeof(node));
|
|
SH_VALNOD->nvfun = 0;
|
|
SH_VALNOD->nvenv = 0;
|
|
SH_VALNOD->nvflag = NV_LDOUBLE|NV_NOFREE;
|
|
SH_VALNOD->nvalue.ldp = 0;
|
|
for(i=0; i < nargs; i++)
|
|
{
|
|
*nr++ = mp = nv_namptr(shp->mathnodes,i);
|
|
mp->nvalue.ldp = arg++;
|
|
}
|
|
*nr = 0;
|
|
SH_VALNOD->nvalue.ldp = &d;
|
|
argv[0] = np->nvname;
|
|
argv[1] = 0;
|
|
sh_funscope(1,argv,0,&funenv,0);
|
|
while(mp= *nr++)
|
|
mp->nvalue.ldp = 0;
|
|
SH_VALNOD->nvfun = node.nvfun;
|
|
SH_VALNOD->nvflag = node.nvflag;
|
|
SH_VALNOD->nvenv = node.nvenv;
|
|
SH_VALNOD->nvalue.ldp = node.nvalue.ldp;
|
|
return(d);
|
|
}
|
|
|
|
/*
|
|
* This routine is used to execute the given function <fun> in a new scope
|
|
* If <fun> is NULL, then arg points to a structure containing a pointer
|
|
* to a function that will be executed in the current environment.
|
|
*/
|
|
int sh_funscope(int argn, char *argv[],int(*fun)(void*),void *arg,int execflg)
|
|
{
|
|
register char *trap;
|
|
register int nsig;
|
|
register Shell_t *shp = sh_getinterp();
|
|
struct dolnod *argsav=0,*saveargfor;
|
|
struct sh_scoped savst, *prevscope = shp->st.self;
|
|
struct argnod *envlist=0;
|
|
int isig,jmpval;
|
|
volatile int r = 0;
|
|
int n;
|
|
char **savsig;
|
|
struct funenv *fp = 0;
|
|
struct checkpt *buffp = (struct checkpt*)stkalloc(shp->stk,sizeof(struct checkpt));
|
|
Namval_t *nspace = shp->namespace;
|
|
Dt_t *last_root = shp->last_root;
|
|
Shopt_t options;
|
|
options = shp->options;
|
|
if(shp->fn_depth==0)
|
|
shp->glob_options = shp->options;
|
|
else
|
|
shp->options = shp->glob_options;
|
|
*prevscope = shp->st;
|
|
sh_offoption(SH_ERREXIT);
|
|
shp->st.prevst = prevscope;
|
|
shp->st.self = &savst;
|
|
shp->topscope = (Shscope_t*)shp->st.self;
|
|
shp->st.opterror = shp->st.optchar = 0;
|
|
shp->st.optindex = 1;
|
|
shp->st.loopcnt = 0;
|
|
if(!fun)
|
|
{
|
|
fp = (struct funenv*)arg;
|
|
shp->st.real_fun = (fp->node)->nvalue.rp;
|
|
envlist = fp->env;
|
|
}
|
|
prevscope->save_tree = shp->var_tree;
|
|
n = dtvnext(prevscope->save_tree)!= (shp->namespace?shp->var_base:0);
|
|
sh_scope(shp,envlist,1);
|
|
if(n)
|
|
{
|
|
struct Tdata tdata;
|
|
memset(&tdata,0,sizeof(tdata));
|
|
tdata.sh = shp;
|
|
/* eliminate parent scope */
|
|
nv_scan(prevscope->save_tree, local_exports,&tdata, NV_EXPORT, NV_EXPORT|NV_NOSCOPE);
|
|
}
|
|
shp->st.save_tree = shp->var_tree;
|
|
if(!fun)
|
|
{
|
|
if(nv_isattr(fp->node,NV_TAGGED))
|
|
sh_onoption(SH_XTRACE);
|
|
else
|
|
sh_offoption(SH_XTRACE);
|
|
}
|
|
shp->st.cmdname = argv[0];
|
|
/* save trap table */
|
|
if((nsig=shp->st.trapmax)>0 || shp->st.trapcom[0])
|
|
{
|
|
savsig = malloc(nsig * sizeof(char*));
|
|
/*
|
|
* the data is, usually, modified in code like:
|
|
* tmp = buf[i]; buf[i] = strdup(tmp); free(tmp);
|
|
* so shp->st.trapcom needs a "deep copy" to properly save/restore pointers.
|
|
*/
|
|
for (isig = 0; isig < nsig; ++isig)
|
|
{
|
|
if(shp->st.trapcom[isig] == Empty)
|
|
savsig[isig] = Empty;
|
|
else if(shp->st.trapcom[isig])
|
|
savsig[isig] = strdup(shp->st.trapcom[isig]);
|
|
else
|
|
savsig[isig] = NULL;
|
|
}
|
|
}
|
|
sh_sigreset(0);
|
|
argsav = sh_argnew(shp,argv,&saveargfor);
|
|
sh_pushcontext(shp,buffp,SH_JMPFUN);
|
|
errorpush(&buffp->err,0);
|
|
error_info.id = argv[0];
|
|
shp->st.var_local = shp->var_tree;
|
|
if(!fun)
|
|
{
|
|
shp->st.filename = fp->node->nvalue.rp->fname;
|
|
shp->st.funname = nv_name(fp->node);
|
|
shp->last_root = nv_dict(DOTSHNOD);
|
|
nv_putval(SH_PATHNAMENOD,shp->st.filename,NV_NOFREE);
|
|
nv_putval(SH_FUNNAMENOD,shp->st.funname,NV_NOFREE);
|
|
}
|
|
jmpval = sigsetjmp(buffp->buff,0);
|
|
if(jmpval == 0)
|
|
{
|
|
if(shp->fn_depth++ > MAXDEPTH)
|
|
{
|
|
shp->toomany = 1;
|
|
siglongjmp(*shp->jmplist,SH_JMPERRFN);
|
|
}
|
|
else if(fun)
|
|
r= (*fun)(arg);
|
|
else
|
|
{
|
|
char **arg = shp->st.real_fun->argv;
|
|
Namval_t *np, *nq, **nref;
|
|
if(nref=fp->nref)
|
|
{
|
|
shp->last_root = 0;
|
|
for(r=0; arg[r]; r++)
|
|
{
|
|
np = nv_search(arg[r],shp->var_tree,HASH_NOSCOPE|NV_ADD);
|
|
if(np && (nq=*nref++))
|
|
{
|
|
np->nvalue.nrp = newof(0,struct Namref,1,0);
|
|
np->nvalue.nrp->np = nq;
|
|
nv_onattr(np,NV_REF|NV_NOFREE);
|
|
}
|
|
}
|
|
}
|
|
sh_exec((Shnode_t*)(nv_funtree((fp->node))),execflg|SH_ERREXIT);
|
|
r = shp->exitval;
|
|
}
|
|
}
|
|
if(shp->topscope != (Shscope_t*)shp->st.self)
|
|
sh_setscope(shp->topscope);
|
|
if(--shp->fn_depth==1 && jmpval==SH_JMPERRFN)
|
|
errormsg(SH_DICT,ERROR_exit(1),e_toodeep,argv[0]);
|
|
sh_popcontext(shp,buffp);
|
|
sh_unscope(shp);
|
|
shp->namespace = nspace;
|
|
shp->var_tree = (Dt_t*)prevscope->save_tree;
|
|
sh_argreset(shp,argsav,saveargfor);
|
|
trap = shp->st.trapcom[0];
|
|
shp->st.trapcom[0] = 0;
|
|
sh_sigreset(1);
|
|
shp->st = *prevscope;
|
|
shp->topscope = (Shscope_t*)prevscope;
|
|
nv_getval(sh_scoped(shp,IFSNOD));
|
|
if(nsig)
|
|
{
|
|
for (isig = 0; isig < nsig; ++isig)
|
|
if (shp->st.trapcom[isig] && shp->st.trapcom[isig]!=Empty)
|
|
free(shp->st.trapcom[isig]);
|
|
memcpy((char*)&shp->st.trapcom[0],savsig,nsig*sizeof(char*));
|
|
free((void*)savsig);
|
|
}
|
|
shp->trapnote=0;
|
|
shp->options = options;
|
|
shp->last_root = last_root;
|
|
if(jmpval == SH_JMPSUB)
|
|
siglongjmp(*shp->jmplist,jmpval);
|
|
if(trap)
|
|
{
|
|
sh_trap(trap,0);
|
|
free(trap);
|
|
}
|
|
if(jmpval)
|
|
r=shp->exitval;
|
|
if(nsig && r>SH_EXITSIG)
|
|
kill(shgd->current_pid,r&SH_EXITMASK);
|
|
if(jmpval > SH_JMPFUN)
|
|
{
|
|
sh_chktrap(shp);
|
|
siglongjmp(*shp->jmplist,jmpval);
|
|
}
|
|
return(r);
|
|
}
|
|
|
|
static void sh_funct(Shell_t *shp,Namval_t *np,int argn, char *argv[],struct argnod *envlist,int execflg)
|
|
{
|
|
struct funenv fun;
|
|
char *fname = nv_getval(SH_FUNNAMENOD);
|
|
struct Level *lp =(struct Level*)(SH_LEVELNOD->nvfun);
|
|
int level, pipepid=shp->pipepid;
|
|
shp->pipepid = 0;
|
|
sh_stats(STAT_FUNCT);
|
|
if(!lp->hdr.disc)
|
|
lp = init_level(shp,0);
|
|
if((struct sh_scoped*)shp->topscope != shp->st.self)
|
|
sh_setscope(shp->topscope);
|
|
level = lp->maxlevel = shp->dot_depth + shp->fn_depth+1;
|
|
SH_LEVELNOD->nvalue.s = lp->maxlevel;
|
|
shp->st.lineno = error_info.line;
|
|
np->nvalue.rp->running += 2;
|
|
if(nv_isattr(np,NV_FPOSIX))
|
|
{
|
|
char *save;
|
|
int loopcnt = shp->st.loopcnt;
|
|
shp->posix_fun = np;
|
|
save = argv[-1];
|
|
argv[-1] = 0;
|
|
shp->st.funname = nv_name(np);
|
|
shp->last_root = nv_dict(DOTSHNOD);
|
|
nv_putval(SH_FUNNAMENOD, nv_name(np),NV_NOFREE);
|
|
opt_info.index = opt_info.offset = 0;
|
|
error_info.errors = 0;
|
|
shp->st.loopcnt = 0;
|
|
b_dot_cmd(argn+1,argv-1,&shp->bltindata);
|
|
shp->st.loopcnt = loopcnt;
|
|
argv[-1] = save;
|
|
}
|
|
else
|
|
{
|
|
fun.env = envlist;
|
|
fun.node = np;
|
|
fun.nref = 0;
|
|
sh_funscope(argn,argv,0,&fun,execflg);
|
|
}
|
|
if(level-- != nv_getnum(SH_LEVELNOD))
|
|
{
|
|
Shscope_t *sp = sh_getscope(0,SEEK_END);
|
|
sh_setscope(sp);
|
|
}
|
|
lp->maxlevel = level;
|
|
SH_LEVELNOD->nvalue.s = lp->maxlevel;
|
|
shp->last_root = nv_dict(DOTSHNOD);
|
|
nv_putval(SH_FUNNAMENOD,fname,NV_NOFREE);
|
|
nv_putval(SH_PATHNAMENOD,shp->st.filename,NV_NOFREE);
|
|
shp->pipepid = pipepid;
|
|
if(np->nvalue.rp)
|
|
{
|
|
np->nvalue.rp->running -= 2;
|
|
if(np->nvalue.rp->running==1)
|
|
{
|
|
np->nvalue.rp->running = 0;
|
|
_nv_unset(np, NV_RDONLY);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* external interface to execute a function without arguments
|
|
* <np> is the function node
|
|
* If <nq> is not-null, then sh.name and sh.subscript will be set
|
|
*/
|
|
int sh_fun(Namval_t *np, Namval_t *nq, char *argv[])
|
|
{
|
|
Shell_t *shp = sh_getinterp();
|
|
register int offset;
|
|
register char *base;
|
|
Namval_t node;
|
|
struct Namref nr;
|
|
long mode;
|
|
char *prefix = shp->prefix;
|
|
int n=0;
|
|
char *av[3];
|
|
Fcin_t save;
|
|
fcsave(&save);
|
|
if((offset=staktell())>0)
|
|
base=stakfreeze(0);
|
|
shp->prefix = 0;
|
|
if(!argv)
|
|
{
|
|
argv = av+1;
|
|
argv[1]=0;
|
|
}
|
|
argv[0] = nv_name(np);
|
|
while(argv[n])
|
|
n++;
|
|
if(nq)
|
|
mode = set_instance(shp,nq,&node, &nr);
|
|
if(is_abuiltin(np))
|
|
{
|
|
int jmpval;
|
|
struct checkpt *buffp = (struct checkpt*)stkalloc(shp->stk,sizeof(struct checkpt));
|
|
Shbltin_t *bp = &shp->bltindata;
|
|
sh_pushcontext(shp,buffp,SH_JMPCMD);
|
|
jmpval = sigsetjmp(buffp->buff,1);
|
|
if(jmpval == 0)
|
|
{
|
|
bp->bnode = np;
|
|
bp->ptr = nv_context(np);
|
|
errorpush(&buffp->err,0);
|
|
error_info.id = argv[0];
|
|
opt_info.index = opt_info.offset = 0;
|
|
opt_info.disc = 0;
|
|
shp->exitval = 0;
|
|
shp->exitval = ((Shbltin_f)funptr(np))(n,argv,bp);
|
|
}
|
|
sh_popcontext(shp,buffp);
|
|
if(jmpval>SH_JMPCMD)
|
|
siglongjmp(*shp->jmplist,jmpval);
|
|
}
|
|
else
|
|
sh_funct(shp,np,n,argv,(struct argnod*)0,sh_isstate(SH_ERREXIT));
|
|
if(nq)
|
|
unset_instance(nq, &node, &nr, mode);
|
|
fcrestore(&save);
|
|
if(offset>0)
|
|
stakset(base,offset);
|
|
shp->prefix = prefix;
|
|
return(shp->exitval);
|
|
}
|
|
|
|
/*
|
|
* This dummy routine is called by built-ins that do recursion
|
|
* on the file system (chmod, chgrp, chown). It causes
|
|
* the shell to invoke the non-builtin version in this case
|
|
*/
|
|
int cmdrecurse(int argc, char* argv[], int ac, char* av[])
|
|
{
|
|
NOT_USED(argc);
|
|
NOT_USED(argv[0]);
|
|
NOT_USED(ac);
|
|
NOT_USED(av[0]);
|
|
return(SH_RUNPROG);
|
|
}
|
|
|
|
/*
|
|
* set up pipe for cooperating process
|
|
*/
|
|
static void coproc_init(Shell_t *shp, int pipes[])
|
|
{
|
|
int outfd;
|
|
if(shp->coutpipe>=0 && shp->cpid)
|
|
errormsg(SH_DICT,ERROR_exit(1),e_pexists);
|
|
shp->cpid = 0;
|
|
if(shp->cpipe[0]<=0 || shp->cpipe[1]<=0)
|
|
{
|
|
/* first co-process */
|
|
sh_pclose(shp->cpipe);
|
|
sh_pipe(shp->cpipe);
|
|
if((outfd=shp->cpipe[1]) < 10)
|
|
{
|
|
int fd=sh_fcntl(shp->cpipe[1],F_DUPFD,10);
|
|
if(fd>=10)
|
|
{
|
|
shp->fdstatus[fd] = (shp->fdstatus[outfd]&~IOCLEX);
|
|
close(outfd);
|
|
shp->fdstatus[outfd] = IOCLOSE;
|
|
shp->cpipe[1] = fd;
|
|
}
|
|
}
|
|
if(fcntl(*shp->cpipe,F_SETFD,FD_CLOEXEC)>=0)
|
|
shp->fdstatus[shp->cpipe[0]] |= IOCLEX;
|
|
shp->fdptrs[shp->cpipe[0]] = shp->cpipe;
|
|
|
|
if(fcntl(shp->cpipe[1],F_SETFD,FD_CLOEXEC) >=0)
|
|
shp->fdstatus[shp->cpipe[1]] |= IOCLEX;
|
|
}
|
|
shp->outpipe = shp->cpipe;
|
|
sh_pipe(shp->inpipe=pipes);
|
|
shp->coutpipe = shp->inpipe[1];
|
|
shp->fdptrs[shp->coutpipe] = &shp->coutpipe;
|
|
if(fcntl(shp->outpipe[0],F_SETFD,FD_CLOEXEC)>=0)
|
|
shp->fdstatus[shp->outpipe[0]] |= IOCLEX;
|
|
}
|
|
|
|
#if SHOPT_SPAWN
|
|
|
|
|
|
#if !defined(_lib_fork)
|
|
|
|
/*
|
|
* create a shell script consisting of t->fork.forktre and execute it
|
|
*/
|
|
static int run_subshell(Shell_t *shp,const Shnode_t *t,pid_t grp)
|
|
{
|
|
static const char prolog[] = "(print $(typeset +A);set; typeset -p; print .sh.dollar=$$;set +o)";
|
|
register int i, fd, trace = sh_isoption(SH_XTRACE);
|
|
int pin,pout;
|
|
pid_t pid;
|
|
char *arglist[3], *envlist[2], devfd[12], *cp;
|
|
Sfio_t *sp = sftmp(0);
|
|
envlist[0] = "_=" SH_ID;
|
|
envlist[1] = 0;
|
|
arglist[0] = error_info.id?error_info.id:shp->shname;
|
|
if(*arglist[0]=='-')
|
|
arglist[0]++;
|
|
arglist[1] = devfd;
|
|
strncpy(devfd,e_devfdNN,sizeof(devfd));
|
|
arglist[2] = 0;
|
|
sfstack(sfstdout,sp);
|
|
if(trace)
|
|
sh_offoption(SH_XTRACE);
|
|
sfwrite(sfstdout,"typeset -A -- ",14);
|
|
sh_trap(prolog,0);
|
|
nv_scan(shp->fun_tree, print_fun, (void*)0,0, 0);
|
|
if(shp->st.dolc>0)
|
|
{
|
|
/* pass the positional parameters */
|
|
char **argv = shp->st.dolv+1;
|
|
sfwrite(sfstdout,"set --",6);
|
|
while(*argv)
|
|
sfprintf(sfstdout," %s",sh_fmtq(*argv++));
|
|
sfputc(sfstdout,'\n');
|
|
}
|
|
pin = (shp->inpipe?shp->inpipe[1]:0);
|
|
pout = (shp->outpipe?shp->outpipe[0]:0);
|
|
for(i=3; i < 10; i++)
|
|
{
|
|
if(shp->fdstatus[i]&IOCLEX && i!=pin && i!=pout)
|
|
{
|
|
sfprintf(sfstdout,"exec %d<&%d\n",i,i);
|
|
fcntl(i,F_SETFD,0);
|
|
}
|
|
}
|
|
sfprintf(sfstdout,"LINENO=%d\n",t->fork.forkline);
|
|
if(trace)
|
|
{
|
|
sfwrite(sfstdout,"set -x\n",7);
|
|
sh_onoption(SH_XTRACE);
|
|
}
|
|
sfstack(sfstdout,NIL(Sfio_t*));
|
|
sh_deparse(sp,t->fork.forktre,0);
|
|
sfseek(sp,(Sfoff_t)0,SEEK_SET);
|
|
fd = sh_dup(sffileno(sp));
|
|
cp = devfd+8;
|
|
if(fd>9)
|
|
*cp++ = '0' + (fd/10);
|
|
*cp++ = '0' + fd%10;
|
|
*cp = 0;
|
|
sfclose(sp);
|
|
sfsync(NIL(Sfio_t*));
|
|
if(!shp->gd->shpath)
|
|
shp->gd->shpath = pathshell();
|
|
pid = spawnveg(shp->shpath,arglist,envlist,grp);
|
|
close(fd);
|
|
for(i=3; i < 10; i++)
|
|
{
|
|
if(shp->fdstatus[i]&IOCLEX && i!=pin && i!=pout)
|
|
fcntl(i,F_SETFD,FD_CLOEXEC);
|
|
}
|
|
if(pid <=0)
|
|
errormsg(SH_DICT,ERROR_system(ERROR_NOEXEC),e_exec,arglist[0]);
|
|
return(pid);
|
|
}
|
|
#endif /* !_lib_fork */
|
|
|
|
static void sigreset(Shell_t *shp,int mode)
|
|
{
|
|
register char *trap;
|
|
register int sig=shp->st.trapmax;
|
|
while(sig-- > 0)
|
|
{
|
|
if(sig==SIGCHLD)
|
|
continue;
|
|
if((trap=shp->st.trapcom[sig]) && *trap==0)
|
|
signal(sig,mode?sh_fault:SIG_IGN);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* A combined fork/exec for systems with slow or non-existent fork()
|
|
* Note: Incompatible with job control.
|
|
*/
|
|
static pid_t sh_ntfork(Shell_t *shp,const Shnode_t *t,char *argv[],int *jobid,int flag)
|
|
{
|
|
static pid_t spawnpid;
|
|
static int savetype;
|
|
static int savejobid;
|
|
struct checkpt *buffp = (struct checkpt*)stkalloc(shp->stk,sizeof(struct checkpt));
|
|
int otype=0, jmpval,jobfork=0;
|
|
volatile int jobwasset=0, scope=0, sigwasset=0;
|
|
char **arge, *path;
|
|
volatile pid_t grp = 0;
|
|
Pathcomp_t *pp;
|
|
if(flag)
|
|
{
|
|
otype = savetype;
|
|
savetype=0;
|
|
}
|
|
# if !defined(_lib_fork)
|
|
if(!argv)
|
|
{
|
|
register Shnode_t *tchild = t->fork.forktre;
|
|
int optimize=0;
|
|
otype = t->tre.tretyp;
|
|
savetype = otype;
|
|
spawnpid = 0;
|
|
# ifndef _lib_fork
|
|
if((tchild->tre.tretyp&COMMSK)==TCOM)
|
|
{
|
|
Namval_t *np = (Namval_t*)(tchild->com.comnamp);
|
|
if(np)
|
|
{
|
|
path = nv_name(np);
|
|
if(!nv_isattr(np,BLT_ENV))
|
|
np=0;
|
|
else if(strcmp(path,"echo")==0 || memcmp(path,"print",5)==0)
|
|
np=0;
|
|
}
|
|
else if(!tchild->com.comarg)
|
|
optimize=1;
|
|
else if(tchild->com.comtyp&COMSCAN)
|
|
{
|
|
if(tchild->com.comarg->argflag&ARG_RAW)
|
|
path = tchild->com.comarg->argval;
|
|
else
|
|
path = 0;
|
|
}
|
|
else
|
|
path = ((struct dolnod*)tchild->com.comarg)->dolval[ARG_SPARE];
|
|
if(!np && path && !nv_search(path,shp->fun_tree,0))
|
|
optimize=1;
|
|
}
|
|
# endif
|
|
sh_pushcontext(shp,buffp,SH_JMPIO);
|
|
jmpval = sigsetjmp(buffp->buff,0);
|
|
{
|
|
if((otype&FINT) && !sh_isstate(SH_MONITOR))
|
|
{
|
|
signal(SIGQUIT,SIG_IGN);
|
|
signal(SIGINT,SIG_IGN);
|
|
if(!shp->st.ioset)
|
|
{
|
|
sh_iosave(shp,0,buffp->topfd,(char*)0);
|
|
sh_iorenumber(shp,sh_chkopen(e_devnull),0);
|
|
}
|
|
}
|
|
if(otype&FPIN)
|
|
{
|
|
int fd = shp->inpipe[1];
|
|
sh_iosave(shp,0,buffp->topfd,(char*)0);
|
|
sh_iorenumber(shp,shp->inpipe[0],0);
|
|
if(fd>=0 && (!(otype&FPOU) || (otype&FCOOP)) && fcntl(fd,F_SETFD,FD_CLOEXEC)>=0)
|
|
shp->fdstatus[fd] |= IOCLEX;
|
|
}
|
|
if(otype&FPOU)
|
|
{
|
|
sh_iosave(shp,1,buffp->topfd,(char*)0);
|
|
sh_iorenumber(shp,sh_dup(shp->outpipe[1]),1);
|
|
if(fcntl(shp->outpipe[0],F_SETFD,FD_CLOEXEC)>=0)
|
|
shp->fdstatus[shp->outpipe[0]] |= IOCLEX;
|
|
}
|
|
|
|
if(t->fork.forkio)
|
|
sh_redirect(shp,t->fork.forkio,0);
|
|
if(optimize==0)
|
|
{
|
|
#ifdef SIGTSTP
|
|
if(job.jobcontrol)
|
|
{
|
|
signal(SIGTTIN,SIG_DFL);
|
|
signal(SIGTTOU,SIG_DFL);
|
|
}
|
|
#endif /* SIGTSTP */
|
|
#ifdef JOBS
|
|
if(sh_isstate(SH_MONITOR) && (job.jobcontrol || (otype&FAMP)))
|
|
{
|
|
if((otype&FAMP) || job.curpgid==0)
|
|
grp = 1;
|
|
else
|
|
grp = job.curpgid;
|
|
}
|
|
#endif /* JOBS */
|
|
spawnpid = run_subshell(shp,t,grp);
|
|
}
|
|
else
|
|
{
|
|
sh_exec(tchild,SH_NTFORK);
|
|
if(jobid)
|
|
*jobid = savejobid;
|
|
}
|
|
}
|
|
sh_popcontext(shp,buffp);
|
|
if((otype&FINT) && !sh_isstate(SH_MONITOR))
|
|
{
|
|
signal(SIGQUIT,sh_fault);
|
|
signal(SIGINT,sh_fault);
|
|
}
|
|
if((otype&FPIN) && (!(otype&FPOU) || (otype&FCOOP)) && fcntl(shp->inpipe[1],F_SETFD,FD_CLOEXEC)>=0)
|
|
shp->fdstatus[shp->inpipe[1]] &= ~IOCLEX;
|
|
if(t->fork.forkio || otype)
|
|
sh_iorestore(shp,buffp->topfd,jmpval);
|
|
if(optimize==0)
|
|
{
|
|
#ifdef SIGTSTP
|
|
if(job.jobcontrol)
|
|
{
|
|
signal(SIGTTIN,SIG_IGN);
|
|
signal(SIGTTOU,SIG_IGN);
|
|
}
|
|
#endif /* SIGTSTP */
|
|
if(spawnpid>0)
|
|
_sh_fork(shp,spawnpid,otype,jobid);
|
|
if(grp>0 && !(otype&FAMP))
|
|
{
|
|
while(tcsetpgrp(job.fd,job.curpgid)<0 && job.curpgid!=spawnpid)
|
|
job.curpgid = spawnpid;
|
|
}
|
|
}
|
|
savetype=0;
|
|
if(jmpval>SH_JMPIO)
|
|
siglongjmp(*shp->jmplist,jmpval);
|
|
if(spawnpid<0 && (otype&FCOOP))
|
|
{
|
|
sh_close(shp->coutpipe);
|
|
sh_close(shp->cpipe[1]);
|
|
shp->cpipe[1] = -1;
|
|
shp->coutpipe = -1;
|
|
}
|
|
shp->exitval = 0;
|
|
return(spawnpid);
|
|
}
|
|
# endif /* !_lib_fork */
|
|
sh_pushcontext(shp,buffp,SH_JMPCMD);
|
|
errorpush(&buffp->err,ERROR_SILENT);
|
|
jmpval = sigsetjmp(buffp->buff,0);
|
|
if(jmpval == 0)
|
|
{
|
|
if((otype&FINT) && !sh_isstate(SH_MONITOR))
|
|
{
|
|
signal(SIGQUIT,SIG_IGN);
|
|
signal(SIGINT,SIG_IGN);
|
|
}
|
|
spawnpid = -1;
|
|
if(t->com.comio)
|
|
sh_redirect(shp,t->com.comio,0);
|
|
error_info.id = *argv;
|
|
if(t->com.comset)
|
|
{
|
|
scope++;
|
|
sh_scope(shp,t->com.comset,0);
|
|
}
|
|
if(!strchr(path=argv[0],'/'))
|
|
{
|
|
Namval_t *np;
|
|
/* if a tracked alias exists and we're not searching the default path, use it */
|
|
if(!sh_isstate(SH_DEFPATH)
|
|
&& (np=nv_search(path,shp->track_tree,0))
|
|
&& !nv_isattr(np,NV_NOALIAS)
|
|
&& np->nvalue.cp)
|
|
path = nv_getval(np);
|
|
else if(path_absolute(shp,path,NIL(Pathcomp_t*),0))
|
|
{
|
|
path = stkptr(shp->stk,PATH_OFFSET);
|
|
stkfreeze(shp->stk,0);
|
|
}
|
|
else
|
|
{
|
|
pp=path_get(shp,path);
|
|
while(pp)
|
|
{
|
|
if(pp->len==1 && *pp->name=='.')
|
|
break;
|
|
pp = pp->next;
|
|
}
|
|
if(!pp)
|
|
path = 0;
|
|
}
|
|
}
|
|
else if(sh_isoption(SH_RESTRICTED))
|
|
errormsg(SH_DICT,ERROR_exit(1),e_restricted,path);
|
|
if(!path)
|
|
{
|
|
spawnpid = -1;
|
|
goto fail;
|
|
}
|
|
arge = sh_envgen();
|
|
shp->exitval = 0;
|
|
#ifdef SIGTSTP
|
|
if(job.jobcontrol)
|
|
{
|
|
signal(SIGTTIN,SIG_DFL);
|
|
signal(SIGTTOU,SIG_DFL);
|
|
jobwasset++;
|
|
}
|
|
#endif /* SIGTSTP */
|
|
#ifdef JOBS
|
|
if(sh_isstate(SH_MONITOR) && (job.jobcontrol || (otype&FAMP)))
|
|
{
|
|
if((otype&FAMP) || job.curpgid==0)
|
|
grp = 1;
|
|
else
|
|
grp = job.curpgid;
|
|
}
|
|
#endif /* JOBS */
|
|
|
|
sfsync(NIL(Sfio_t*));
|
|
sigreset(shp,0); /* set signals to ignore */
|
|
sigwasset++;
|
|
/* find first path that has a library component */
|
|
for(pp=path_get(shp,argv[0]); pp && !pp->lib ; pp=pp->next);
|
|
job_fork(-1);
|
|
jobfork = 1;
|
|
spawnpid = path_spawn(shp,path,argv,arge,pp,(grp<<1)|1);
|
|
if(spawnpid < 0 && errno==ENOEXEC)
|
|
{
|
|
char *devfd;
|
|
int fd = open(path,O_RDONLY);
|
|
argv[-1] = argv[0];
|
|
argv[0] = path;
|
|
if(fd>=0)
|
|
{
|
|
struct stat statb;
|
|
sfprintf(shp->strbuf,"/dev/fd/%d",fd);
|
|
if(stat(devfd=sfstruse(shp->strbuf),&statb)>=0)
|
|
argv[0] = devfd;
|
|
}
|
|
if(!shp->gd->shpath)
|
|
shp->gd->shpath = pathshell();
|
|
spawnpid = path_spawn(shp,shp->gd->shpath,&argv[-1],arge,pp,(grp<<1)|1);
|
|
if(fd>=0)
|
|
close(fd);
|
|
argv[0] = argv[-1];
|
|
}
|
|
fail:
|
|
if(jobfork && spawnpid<0)
|
|
job_fork(0);
|
|
if(spawnpid < 0) switch(errno=shp->path_err)
|
|
{
|
|
case ENOENT:
|
|
errormsg(SH_DICT,ERROR_system(ERROR_NOENT),e_found+4);
|
|
default:
|
|
errormsg(SH_DICT,ERROR_system(ERROR_NOEXEC),e_exec+4);
|
|
}
|
|
}
|
|
else
|
|
exitset();
|
|
sh_popcontext(shp,buffp);
|
|
if(buffp->olist)
|
|
free_list(buffp->olist);
|
|
#ifdef SIGTSTP
|
|
if(jobwasset)
|
|
{
|
|
signal(SIGTTIN,SIG_IGN);
|
|
signal(SIGTTOU,SIG_IGN);
|
|
}
|
|
#endif /* SIGTSTP */
|
|
if(sigwasset)
|
|
sigreset(shp,1); /* restore ignored signals */
|
|
if(scope)
|
|
{
|
|
sh_unscope(shp);
|
|
if(jmpval==SH_JMPSCRIPT)
|
|
nv_setlist(t->com.comset,NV_EXPORT|NV_IDENT|NV_ASSIGN,0);
|
|
}
|
|
if(t->com.comio && (jmpval || spawnpid<=0))
|
|
sh_iorestore(shp,buffp->topfd,jmpval);
|
|
if(jmpval>SH_JMPCMD)
|
|
siglongjmp(*shp->jmplist,jmpval);
|
|
if(spawnpid>0)
|
|
{
|
|
_sh_fork(shp,spawnpid,otype,jobid);
|
|
job_fork(spawnpid);
|
|
#ifdef JOBS
|
|
if(grp==1)
|
|
job.curpgid = spawnpid;
|
|
# ifdef SIGTSTP
|
|
if(grp>0 && !(otype&FAMP))
|
|
{
|
|
while(tcsetpgrp(job.fd,job.curpgid)<0 && job.curpgid!=spawnpid)
|
|
job.curpgid = spawnpid;
|
|
}
|
|
# endif /* SIGTSTP */
|
|
#endif /* JOBS */
|
|
savejobid = *jobid;
|
|
if(otype)
|
|
return(0);
|
|
}
|
|
return(spawnpid);
|
|
}
|
|
|
|
# ifdef _was_lib_fork
|
|
# define _lib_fork 1
|
|
# endif
|
|
# ifndef _lib_fork
|
|
pid_t fork(void)
|
|
{
|
|
errormsg(SH_DICT,ERROR_exit(3),e_notimp,"fork");
|
|
return(-1);
|
|
}
|
|
# endif /* _lib_fork */
|
|
#endif /* SHOPT_SPAWN */
|