eval.c revision 194765
11556Srgrimes/*-
21556Srgrimes * Copyright (c) 1993
31556Srgrimes *	The Regents of the University of California.  All rights reserved.
41556Srgrimes *
51556Srgrimes * This code is derived from software contributed to Berkeley by
61556Srgrimes * Kenneth Almquist.
71556Srgrimes *
81556Srgrimes * Redistribution and use in source and binary forms, with or without
91556Srgrimes * modification, are permitted provided that the following conditions
101556Srgrimes * are met:
111556Srgrimes * 1. Redistributions of source code must retain the above copyright
121556Srgrimes *    notice, this list of conditions and the following disclaimer.
131556Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
141556Srgrimes *    notice, this list of conditions and the following disclaimer in the
151556Srgrimes *    documentation and/or other materials provided with the distribution.
161556Srgrimes * 4. Neither the name of the University nor the names of its contributors
171556Srgrimes *    may be used to endorse or promote products derived from this software
181556Srgrimes *    without specific prior written permission.
191556Srgrimes *
201556Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
211556Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
221556Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
231556Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
241556Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
251556Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
261556Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
271556Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
281556Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
291556Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
301556Srgrimes * SUCH DAMAGE.
311556Srgrimes */
321556Srgrimes
331556Srgrimes#ifndef lint
3436150Scharnier#if 0
3536150Scharnierstatic char sccsid[] = "@(#)eval.c	8.9 (Berkeley) 6/8/95";
3636150Scharnier#endif
371556Srgrimes#endif /* not lint */
3899110Sobrien#include <sys/cdefs.h>
3999110Sobrien__FBSDID("$FreeBSD: head/bin/sh/eval.c 194765 2009-06-23 20:45:12Z jilles $");
401556Srgrimes
41100437Stjr#include <paths.h>
4217987Speter#include <signal.h>
43102576Skeramida#include <stdlib.h>
4417987Speter#include <unistd.h>
45153091Sstefanf#include <sys/resource.h>
4645266Scracauer#include <sys/wait.h> /* For WIFSIGNALED(status) */
4753891Scracauer#include <errno.h>
4817987Speter
491556Srgrimes/*
501556Srgrimes * Evaluate a command.
511556Srgrimes */
521556Srgrimes
531556Srgrimes#include "shell.h"
541556Srgrimes#include "nodes.h"
551556Srgrimes#include "syntax.h"
561556Srgrimes#include "expand.h"
571556Srgrimes#include "parser.h"
581556Srgrimes#include "jobs.h"
591556Srgrimes#include "eval.h"
601556Srgrimes#include "builtins.h"
611556Srgrimes#include "options.h"
621556Srgrimes#include "exec.h"
631556Srgrimes#include "redir.h"
641556Srgrimes#include "input.h"
651556Srgrimes#include "output.h"
661556Srgrimes#include "trap.h"
671556Srgrimes#include "var.h"
681556Srgrimes#include "memalloc.h"
691556Srgrimes#include "error.h"
7017987Speter#include "show.h"
711556Srgrimes#include "mystring.h"
7217987Speter#ifndef NO_HISTORY
731556Srgrimes#include "myhistedit.h"
7417987Speter#endif
751556Srgrimes
761556Srgrimes
771556SrgrimesMKINIT int evalskip;		/* set if we are skipping commands */
781556SrgrimesSTATIC int skipcount;		/* number of levels to skip */
791556SrgrimesMKINIT int loopnest;		/* current loop nesting level */
801556Srgrimesint funcnest;			/* depth of function calls */
81193169SstefanfSTATIC int builtin_flags;	/* evalcommand flags for builtins */
821556Srgrimes
831556Srgrimes
841556Srgrimeschar *commandname;
851556Srgrimesstruct strlist *cmdenviron;
861556Srgrimesint exitstatus;			/* exit status of last command */
8717987Speterint oexitstatus;		/* saved exit status */
881556Srgrimes
891556Srgrimes
90149933SstefanfSTATIC void evalloop(union node *, int);
91149933SstefanfSTATIC void evalfor(union node *, int);
9290111SimpSTATIC void evalcase(union node *, int);
9390111SimpSTATIC void evalsubshell(union node *, int);
9490111SimpSTATIC void expredir(union node *);
9590111SimpSTATIC void evalpipe(union node *);
9690111SimpSTATIC void evalcommand(union node *, int, struct backcmd *);
9790111SimpSTATIC void prehash(union node *);
981556Srgrimes
991556Srgrimes
1001556Srgrimes/*
1011556Srgrimes * Called to reset things after an exception.
1021556Srgrimes */
1031556Srgrimes
1041556Srgrimes#ifdef mkinit
1051556SrgrimesINCLUDE "eval.h"
1061556Srgrimes
1071556SrgrimesRESET {
1081556Srgrimes	evalskip = 0;
1091556Srgrimes	loopnest = 0;
1101556Srgrimes	funcnest = 0;
1111556Srgrimes}
1121556Srgrimes
1131556SrgrimesSHELLPROC {
1141556Srgrimes	exitstatus = 0;
1151556Srgrimes}
1161556Srgrimes#endif
1171556Srgrimes
1181556Srgrimes
1191556Srgrimes
1201556Srgrimes/*
12146684Skris * The eval command.
1221556Srgrimes */
1231556Srgrimes
12417987Speterint
12590111Simpevalcmd(int argc, char **argv)
1261556Srgrimes{
1271556Srgrimes        char *p;
1281556Srgrimes        char *concat;
1291556Srgrimes        char **ap;
1301556Srgrimes
1311556Srgrimes        if (argc > 1) {
1321556Srgrimes                p = argv[1];
1331556Srgrimes                if (argc > 2) {
1341556Srgrimes                        STARTSTACKSTR(concat);
1351556Srgrimes                        ap = argv + 2;
1361556Srgrimes                        for (;;) {
1371556Srgrimes                                while (*p)
1381556Srgrimes                                        STPUTC(*p++, concat);
1391556Srgrimes                                if ((p = *ap++) == NULL)
1401556Srgrimes                                        break;
1411556Srgrimes                                STPUTC(' ', concat);
1421556Srgrimes                        }
1431556Srgrimes                        STPUTC('\0', concat);
1441556Srgrimes                        p = grabstackstr(concat);
1451556Srgrimes                }
146193169Sstefanf                evalstring(p, builtin_flags & EV_TESTED);
1471556Srgrimes        }
1481556Srgrimes        return exitstatus;
1491556Srgrimes}
1501556Srgrimes
1511556Srgrimes
1521556Srgrimes/*
1531556Srgrimes * Execute a command or commands contained in a string.
1541556Srgrimes */
1551556Srgrimes
1561556Srgrimesvoid
157193169Sstefanfevalstring(char *s, int flags)
15890111Simp{
1591556Srgrimes	union node *n;
1601556Srgrimes	struct stackmark smark;
161194128Sjilles	int flags_exit;
1621556Srgrimes
163194128Sjilles	flags_exit = flags & EV_EXIT;
164194128Sjilles	flags &= ~EV_EXIT;
1651556Srgrimes	setstackmark(&smark);
1661556Srgrimes	setinputstring(s, 1);
1671556Srgrimes	while ((n = parsecmd(0)) != NEOF) {
168194128Sjilles		if (n != NULL) {
169194128Sjilles			if (flags_exit && preadateof())
170194128Sjilles				evaltree(n, flags | EV_EXIT);
171194128Sjilles			else
172194128Sjilles				evaltree(n, flags);
173194128Sjilles		}
1741556Srgrimes		popstackmark(&smark);
1751556Srgrimes	}
1761556Srgrimes	popfile();
1771556Srgrimes	popstackmark(&smark);
178194128Sjilles	if (flags_exit)
179194128Sjilles		exitshell(exitstatus);
1801556Srgrimes}
1811556Srgrimes
1821556Srgrimes
1831556Srgrimes/*
1841556Srgrimes * Evaluate a parse tree.  The value is left in the global variable
1851556Srgrimes * exitstatus.
1861556Srgrimes */
1871556Srgrimes
1881556Srgrimesvoid
18990111Simpevaltree(union node *n, int flags)
19017987Speter{
191149927Sstefanf	int do_etest;
192149927Sstefanf
193149927Sstefanf	do_etest = 0;
1941556Srgrimes	if (n == NULL) {
1951556Srgrimes		TRACE(("evaltree(NULL) called\n"));
1961556Srgrimes		exitstatus = 0;
1971556Srgrimes		goto out;
1981556Srgrimes	}
19917987Speter#ifndef NO_HISTORY
2001556Srgrimes	displayhist = 1;	/* show history substitutions done with fc */
20117987Speter#endif
202149802Sstefanf	TRACE(("evaltree(%p: %d) called\n", (void *)n, n->type));
2031556Srgrimes	switch (n->type) {
2041556Srgrimes	case NSEMI:
205149932Sstefanf		evaltree(n->nbinary.ch1, flags & ~EV_EXIT);
2061556Srgrimes		if (evalskip)
2071556Srgrimes			goto out;
2081556Srgrimes		evaltree(n->nbinary.ch2, flags);
2091556Srgrimes		break;
2101556Srgrimes	case NAND:
2111556Srgrimes		evaltree(n->nbinary.ch1, EV_TESTED);
21218754Ssteve		if (evalskip || exitstatus != 0) {
2131556Srgrimes			goto out;
21418754Ssteve		}
2151556Srgrimes		evaltree(n->nbinary.ch2, flags);
2161556Srgrimes		break;
2171556Srgrimes	case NOR:
2181556Srgrimes		evaltree(n->nbinary.ch1, EV_TESTED);
2191556Srgrimes		if (evalskip || exitstatus == 0)
2201556Srgrimes			goto out;
2211556Srgrimes		evaltree(n->nbinary.ch2, flags);
2221556Srgrimes		break;
2231556Srgrimes	case NREDIR:
2241556Srgrimes		expredir(n->nredir.redirect);
2251556Srgrimes		redirect(n->nredir.redirect, REDIR_PUSH);
2261556Srgrimes		evaltree(n->nredir.n, flags);
2271556Srgrimes		popredir();
2281556Srgrimes		break;
2291556Srgrimes	case NSUBSHELL:
2301556Srgrimes		evalsubshell(n, flags);
231149927Sstefanf		do_etest = !(flags & EV_TESTED);
2321556Srgrimes		break;
2331556Srgrimes	case NBACKGND:
2341556Srgrimes		evalsubshell(n, flags);
2351556Srgrimes		break;
2361556Srgrimes	case NIF: {
2371556Srgrimes		evaltree(n->nif.test, EV_TESTED);
2381556Srgrimes		if (evalskip)
2391556Srgrimes			goto out;
24020425Ssteve		if (exitstatus == 0)
2411556Srgrimes			evaltree(n->nif.ifpart, flags);
24217987Speter		else if (n->nif.elsepart)
2431556Srgrimes			evaltree(n->nif.elsepart, flags);
24420425Ssteve		else
24520425Ssteve			exitstatus = 0;
2461556Srgrimes		break;
2471556Srgrimes	}
2481556Srgrimes	case NWHILE:
2491556Srgrimes	case NUNTIL:
250149933Sstefanf		evalloop(n, flags & ~EV_EXIT);
2511556Srgrimes		break;
2521556Srgrimes	case NFOR:
253149933Sstefanf		evalfor(n, flags & ~EV_EXIT);
2541556Srgrimes		break;
2551556Srgrimes	case NCASE:
2561556Srgrimes		evalcase(n, flags);
2571556Srgrimes		break;
2581556Srgrimes	case NDEFUN:
2591556Srgrimes		defun(n->narg.text, n->narg.next);
2601556Srgrimes		exitstatus = 0;
2611556Srgrimes		break;
2621556Srgrimes	case NNOT:
2631556Srgrimes		evaltree(n->nnot.com, EV_TESTED);
2641556Srgrimes		exitstatus = !exitstatus;
2651556Srgrimes		break;
2661556Srgrimes
2671556Srgrimes	case NPIPE:
2681556Srgrimes		evalpipe(n);
269149927Sstefanf		do_etest = !(flags & EV_TESTED);
2701556Srgrimes		break;
2711556Srgrimes	case NCMD:
2721556Srgrimes		evalcommand(n, flags, (struct backcmd *)NULL);
273149927Sstefanf		do_etest = !(flags & EV_TESTED);
2741556Srgrimes		break;
2751556Srgrimes	default:
2761556Srgrimes		out1fmt("Node type = %d\n", n->type);
2771556Srgrimes		flushout(&output);
2781556Srgrimes		break;
2791556Srgrimes	}
2801556Srgrimesout:
2811556Srgrimes	if (pendingsigs)
2821556Srgrimes		dotrap();
283149927Sstefanf	if ((flags & EV_EXIT) || (eflag && exitstatus != 0 && do_etest))
2841556Srgrimes		exitshell(exitstatus);
2851556Srgrimes}
2861556Srgrimes
2871556Srgrimes
2881556SrgrimesSTATIC void
289149933Sstefanfevalloop(union node *n, int flags)
29017987Speter{
2911556Srgrimes	int status;
2921556Srgrimes
2931556Srgrimes	loopnest++;
2941556Srgrimes	status = 0;
2951556Srgrimes	for (;;) {
2961556Srgrimes		evaltree(n->nbinary.ch1, EV_TESTED);
2971556Srgrimes		if (evalskip) {
2981556Srgrimesskipping:	  if (evalskip == SKIPCONT && --skipcount <= 0) {
2991556Srgrimes				evalskip = 0;
3001556Srgrimes				continue;
3011556Srgrimes			}
3021556Srgrimes			if (evalskip == SKIPBREAK && --skipcount <= 0)
3031556Srgrimes				evalskip = 0;
3041556Srgrimes			break;
3051556Srgrimes		}
3061556Srgrimes		if (n->type == NWHILE) {
3071556Srgrimes			if (exitstatus != 0)
3081556Srgrimes				break;
3091556Srgrimes		} else {
3101556Srgrimes			if (exitstatus == 0)
3111556Srgrimes				break;
3121556Srgrimes		}
313149933Sstefanf		evaltree(n->nbinary.ch2, flags);
3141556Srgrimes		status = exitstatus;
3151556Srgrimes		if (evalskip)
3161556Srgrimes			goto skipping;
3171556Srgrimes	}
3181556Srgrimes	loopnest--;
3191556Srgrimes	exitstatus = status;
3201556Srgrimes}
3211556Srgrimes
3221556Srgrimes
3231556Srgrimes
3241556SrgrimesSTATIC void
325149933Sstefanfevalfor(union node *n, int flags)
32617987Speter{
3271556Srgrimes	struct arglist arglist;
3281556Srgrimes	union node *argp;
3291556Srgrimes	struct strlist *sp;
3301556Srgrimes	struct stackmark smark;
3311556Srgrimes
3321556Srgrimes	setstackmark(&smark);
3331556Srgrimes	arglist.lastp = &arglist.list;
3341556Srgrimes	for (argp = n->nfor.args ; argp ; argp = argp->narg.next) {
33517987Speter		oexitstatus = exitstatus;
3361556Srgrimes		expandarg(argp, &arglist, EXP_FULL | EXP_TILDE);
3371556Srgrimes		if (evalskip)
3381556Srgrimes			goto out;
3391556Srgrimes	}
3401556Srgrimes	*arglist.lastp = NULL;
3411556Srgrimes
3421556Srgrimes	exitstatus = 0;
3431556Srgrimes	loopnest++;
3441556Srgrimes	for (sp = arglist.list ; sp ; sp = sp->next) {
3451556Srgrimes		setvar(n->nfor.var, sp->text, 0);
346149933Sstefanf		evaltree(n->nfor.body, flags);
3471556Srgrimes		if (evalskip) {
3481556Srgrimes			if (evalskip == SKIPCONT && --skipcount <= 0) {
3491556Srgrimes				evalskip = 0;
3501556Srgrimes				continue;
3511556Srgrimes			}
3521556Srgrimes			if (evalskip == SKIPBREAK && --skipcount <= 0)
3531556Srgrimes				evalskip = 0;
3541556Srgrimes			break;
3551556Srgrimes		}
3561556Srgrimes	}
3571556Srgrimes	loopnest--;
3581556Srgrimesout:
3591556Srgrimes	popstackmark(&smark);
3601556Srgrimes}
3611556Srgrimes
3621556Srgrimes
3631556Srgrimes
3641556SrgrimesSTATIC void
36590111Simpevalcase(union node *n, int flags)
36617987Speter{
3671556Srgrimes	union node *cp;
3681556Srgrimes	union node *patp;
3691556Srgrimes	struct arglist arglist;
3701556Srgrimes	struct stackmark smark;
3711556Srgrimes
3721556Srgrimes	setstackmark(&smark);
3731556Srgrimes	arglist.lastp = &arglist.list;
37417987Speter	oexitstatus = exitstatus;
375172440Sstefanf	exitstatus = 0;
3761556Srgrimes	expandarg(n->ncase.expr, &arglist, EXP_TILDE);
3771556Srgrimes	for (cp = n->ncase.cases ; cp && evalskip == 0 ; cp = cp->nclist.next) {
3781556Srgrimes		for (patp = cp->nclist.pattern ; patp ; patp = patp->narg.next) {
3791556Srgrimes			if (casematch(patp, arglist.list->text)) {
3801556Srgrimes				if (evalskip == 0) {
3811556Srgrimes					evaltree(cp->nclist.body, flags);
3821556Srgrimes				}
3831556Srgrimes				goto out;
3841556Srgrimes			}
3851556Srgrimes		}
3861556Srgrimes	}
3871556Srgrimesout:
3881556Srgrimes	popstackmark(&smark);
3891556Srgrimes}
3901556Srgrimes
3911556Srgrimes
3921556Srgrimes
3931556Srgrimes/*
3941556Srgrimes * Kick off a subshell to evaluate a tree.
3951556Srgrimes */
3961556Srgrimes
3971556SrgrimesSTATIC void
39890111Simpevalsubshell(union node *n, int flags)
39917987Speter{
4001556Srgrimes	struct job *jp;
4011556Srgrimes	int backgnd = (n->type == NBACKGND);
4021556Srgrimes
4031556Srgrimes	expredir(n->nredir.redirect);
4041556Srgrimes	jp = makejob(n, 1);
4051556Srgrimes	if (forkshell(jp, n, backgnd) == 0) {
4061556Srgrimes		if (backgnd)
4071556Srgrimes			flags &=~ EV_TESTED;
4081556Srgrimes		redirect(n->nredir.redirect, 0);
4091556Srgrimes		evaltree(n->nredir.n, flags | EV_EXIT);	/* never returns */
4101556Srgrimes	}
4111556Srgrimes	if (! backgnd) {
4121556Srgrimes		INTOFF;
41345916Scracauer		exitstatus = waitforjob(jp, (int *)NULL);
4141556Srgrimes		INTON;
4151556Srgrimes	}
4161556Srgrimes}
4171556Srgrimes
4181556Srgrimes
4191556Srgrimes
4201556Srgrimes/*
4211556Srgrimes * Compute the names of the files in a redirection list.
4221556Srgrimes */
4231556Srgrimes
4241556SrgrimesSTATIC void
42590111Simpexpredir(union node *n)
42617987Speter{
42725222Ssteve	union node *redir;
4281556Srgrimes
4291556Srgrimes	for (redir = n ; redir ; redir = redir->nfile.next) {
43017987Speter		struct arglist fn;
43117987Speter		fn.lastp = &fn.list;
43217987Speter		oexitstatus = exitstatus;
43317987Speter		switch (redir->type) {
43417987Speter		case NFROM:
43517987Speter		case NTO:
43666612Sbrian		case NFROMTO:
43717987Speter		case NAPPEND:
43896922Stjr		case NCLOBBER:
4391556Srgrimes			expandarg(redir->nfile.fname, &fn, EXP_TILDE | EXP_REDIR);
4401556Srgrimes			redir->nfile.expfname = fn.list->text;
44117987Speter			break;
44217987Speter		case NFROMFD:
44317987Speter		case NTOFD:
44417987Speter			if (redir->ndup.vname) {
445181017Sstefanf				expandarg(redir->ndup.vname, &fn, EXP_TILDE | EXP_REDIR);
44617987Speter				fixredir(redir, fn.list->text, 1);
44717987Speter			}
44817987Speter			break;
4491556Srgrimes		}
4501556Srgrimes	}
4511556Srgrimes}
4521556Srgrimes
4531556Srgrimes
4541556Srgrimes
4551556Srgrimes/*
4561556Srgrimes * Evaluate a pipeline.  All the processes in the pipeline are children
4571556Srgrimes * of the process creating the pipeline.  (This differs from some versions
4581556Srgrimes * of the shell, which make the last process in a pipeline the parent
4591556Srgrimes * of all the rest.)
4601556Srgrimes */
4611556Srgrimes
4621556SrgrimesSTATIC void
46390111Simpevalpipe(union node *n)
46417987Speter{
4651556Srgrimes	struct job *jp;
4661556Srgrimes	struct nodelist *lp;
4671556Srgrimes	int pipelen;
4681556Srgrimes	int prevfd;
4691556Srgrimes	int pip[2];
4701556Srgrimes
471149802Sstefanf	TRACE(("evalpipe(%p) called\n", (void *)n));
4721556Srgrimes	pipelen = 0;
4731556Srgrimes	for (lp = n->npipe.cmdlist ; lp ; lp = lp->next)
4741556Srgrimes		pipelen++;
4751556Srgrimes	INTOFF;
4761556Srgrimes	jp = makejob(n, pipelen);
4771556Srgrimes	prevfd = -1;
4781556Srgrimes	for (lp = n->npipe.cmdlist ; lp ; lp = lp->next) {
4791556Srgrimes		prehash(lp->n);
4801556Srgrimes		pip[1] = -1;
4811556Srgrimes		if (lp->next) {
4821556Srgrimes			if (pipe(pip) < 0) {
4831556Srgrimes				close(prevfd);
48453891Scracauer				error("Pipe call failed: %s", strerror(errno));
4851556Srgrimes			}
4861556Srgrimes		}
4871556Srgrimes		if (forkshell(jp, lp->n, n->npipe.backgnd) == 0) {
4881556Srgrimes			INTON;
4891556Srgrimes			if (prevfd > 0) {
490124780Sdes				dup2(prevfd, 0);
4911556Srgrimes				close(prevfd);
4921556Srgrimes			}
4931556Srgrimes			if (pip[1] >= 0) {
49453282Scracauer				if (!(prevfd >= 0 && pip[0] == 0))
49552900Scracauer					close(pip[0]);
4961556Srgrimes				if (pip[1] != 1) {
497124780Sdes					dup2(pip[1], 1);
4981556Srgrimes					close(pip[1]);
4991556Srgrimes				}
5001556Srgrimes			}
5011556Srgrimes			evaltree(lp->n, EV_EXIT);
5021556Srgrimes		}
5031556Srgrimes		if (prevfd >= 0)
5041556Srgrimes			close(prevfd);
5051556Srgrimes		prevfd = pip[0];
5061556Srgrimes		close(pip[1]);
5071556Srgrimes	}
5081556Srgrimes	INTON;
5091556Srgrimes	if (n->npipe.backgnd == 0) {
5101556Srgrimes		INTOFF;
51145916Scracauer		exitstatus = waitforjob(jp, (int *)NULL);
5121556Srgrimes		TRACE(("evalpipe:  job done exit status %d\n", exitstatus));
5131556Srgrimes		INTON;
5141556Srgrimes	}
5151556Srgrimes}
5161556Srgrimes
5171556Srgrimes
5181556Srgrimes
5191556Srgrimes/*
5201556Srgrimes * Execute a command inside back quotes.  If it's a builtin command, we
5211556Srgrimes * want to save its output in a block obtained from malloc.  Otherwise
5221556Srgrimes * we fork off a subprocess and get the output of the command via a pipe.
5231556Srgrimes * Should be called with interrupts off.
5241556Srgrimes */
5251556Srgrimes
5261556Srgrimesvoid
52790111Simpevalbackcmd(union node *n, struct backcmd *result)
52817987Speter{
5291556Srgrimes	int pip[2];
5301556Srgrimes	struct job *jp;
5311556Srgrimes	struct stackmark smark;		/* unnecessary */
5321556Srgrimes
5331556Srgrimes	setstackmark(&smark);
5341556Srgrimes	result->fd = -1;
5351556Srgrimes	result->buf = NULL;
5361556Srgrimes	result->nleft = 0;
5371556Srgrimes	result->jp = NULL;
53817987Speter	if (n == NULL) {
53917987Speter		exitstatus = 0;
5401556Srgrimes		goto out;
54117987Speter	}
5421556Srgrimes	if (n->type == NCMD) {
54317987Speter		exitstatus = oexitstatus;
5441556Srgrimes		evalcommand(n, EV_BACKCMD, result);
5451556Srgrimes	} else {
54617987Speter		exitstatus = 0;
5471556Srgrimes		if (pipe(pip) < 0)
54853891Scracauer			error("Pipe call failed: %s", strerror(errno));
5491556Srgrimes		jp = makejob(n, 1);
5501556Srgrimes		if (forkshell(jp, n, FORK_NOJOB) == 0) {
5511556Srgrimes			FORCEINTON;
5521556Srgrimes			close(pip[0]);
5531556Srgrimes			if (pip[1] != 1) {
554124780Sdes				dup2(pip[1], 1);
5551556Srgrimes				close(pip[1]);
5561556Srgrimes			}
5571556Srgrimes			evaltree(n, EV_EXIT);
5581556Srgrimes		}
5591556Srgrimes		close(pip[1]);
5601556Srgrimes		result->fd = pip[0];
5611556Srgrimes		result->jp = jp;
5621556Srgrimes	}
5631556Srgrimesout:
5641556Srgrimes	popstackmark(&smark);
565109627Stjr	TRACE(("evalbackcmd done: fd=%d buf=%p nleft=%d jp=%p\n",
5661556Srgrimes		result->fd, result->buf, result->nleft, result->jp));
5671556Srgrimes}
5681556Srgrimes
5691556Srgrimes
5701556Srgrimes
5711556Srgrimes/*
5721556Srgrimes * Execute a simple command.
5731556Srgrimes */
5741556Srgrimes
5751556SrgrimesSTATIC void
57690111Simpevalcommand(union node *cmd, int flags, struct backcmd *backcmd)
57717987Speter{
5781556Srgrimes	struct stackmark smark;
5791556Srgrimes	union node *argp;
5801556Srgrimes	struct arglist arglist;
5811556Srgrimes	struct arglist varlist;
5821556Srgrimes	char **argv;
5831556Srgrimes	int argc;
5841556Srgrimes	char **envp;
5851556Srgrimes	int varflag;
5861556Srgrimes	struct strlist *sp;
5871556Srgrimes	int mode;
5881556Srgrimes	int pip[2];
5891556Srgrimes	struct cmdentry cmdentry;
5901556Srgrimes	struct job *jp;
5911556Srgrimes	struct jmploc jmploc;
592194765Sjilles	struct jmploc *savehandler;
593194765Sjilles	char *savecmdname;
594194765Sjilles	struct shparam saveparam;
595194765Sjilles	struct localvar *savelocalvars;
5961556Srgrimes	volatile int e;
5971556Srgrimes	char *lastarg;
59845916Scracauer	int realstatus;
59954884Scracauer	int do_clearcmdentry;
6001556Srgrimes
6011556Srgrimes	/* First expand the arguments. */
602149802Sstefanf	TRACE(("evalcommand(%p, %d) called\n", (void *)cmd, flags));
6031556Srgrimes	setstackmark(&smark);
6041556Srgrimes	arglist.lastp = &arglist.list;
6051556Srgrimes	varlist.lastp = &varlist.list;
6061556Srgrimes	varflag = 1;
60754884Scracauer	do_clearcmdentry = 0;
60817987Speter	oexitstatus = exitstatus;
60917987Speter	exitstatus = 0;
6101556Srgrimes	for (argp = cmd->ncmd.args ; argp ; argp = argp->narg.next) {
61117987Speter		char *p = argp->narg.text;
6121556Srgrimes		if (varflag && is_name(*p)) {
6131556Srgrimes			do {
6141556Srgrimes				p++;
6151556Srgrimes			} while (is_in_name(*p));
6161556Srgrimes			if (*p == '=') {
6171556Srgrimes				expandarg(argp, &varlist, EXP_VARTILDE);
6181556Srgrimes				continue;
6191556Srgrimes			}
6201556Srgrimes		}
6211556Srgrimes		expandarg(argp, &arglist, EXP_FULL | EXP_TILDE);
6221556Srgrimes		varflag = 0;
6231556Srgrimes	}
6241556Srgrimes	*arglist.lastp = NULL;
6251556Srgrimes	*varlist.lastp = NULL;
6261556Srgrimes	expredir(cmd->ncmd.redirect);
6271556Srgrimes	argc = 0;
6281556Srgrimes	for (sp = arglist.list ; sp ; sp = sp->next)
6291556Srgrimes		argc++;
6301556Srgrimes	argv = stalloc(sizeof (char *) * (argc + 1));
6311556Srgrimes
6321556Srgrimes	for (sp = arglist.list ; sp ; sp = sp->next) {
6331556Srgrimes		TRACE(("evalcommand arg: %s\n", sp->text));
6341556Srgrimes		*argv++ = sp->text;
6351556Srgrimes	}
6361556Srgrimes	*argv = NULL;
6371556Srgrimes	lastarg = NULL;
6381556Srgrimes	if (iflag && funcnest == 0 && argc > 0)
6391556Srgrimes		lastarg = argv[-1];
6401556Srgrimes	argv -= argc;
6411556Srgrimes
6421556Srgrimes	/* Print the command if xflag is set. */
6431556Srgrimes	if (xflag) {
644159632Sstefanf		char sep = 0;
645159632Sstefanf		out2str(ps4val());
6461556Srgrimes		for (sp = varlist.list ; sp ; sp = sp->next) {
647159632Sstefanf			if (sep != 0)
648159632Sstefanf				outc(' ', &errout);
6491556Srgrimes			out2str(sp->text);
650159632Sstefanf			sep = ' ';
6511556Srgrimes		}
6521556Srgrimes		for (sp = arglist.list ; sp ; sp = sp->next) {
653159632Sstefanf			if (sep != 0)
654159632Sstefanf				outc(' ', &errout);
6551556Srgrimes			out2str(sp->text);
656159632Sstefanf			sep = ' ';
6571556Srgrimes		}
6581556Srgrimes		outc('\n', &errout);
6591556Srgrimes		flushout(&errout);
6601556Srgrimes	}
6611556Srgrimes
6621556Srgrimes	/* Now locate the command. */
6631556Srgrimes	if (argc == 0) {
664157601Sstefanf		/* Variable assignment(s) without command */
6651556Srgrimes		cmdentry.cmdtype = CMDBUILTIN;
6661556Srgrimes		cmdentry.u.index = BLTINCMD;
667157601Sstefanf		cmdentry.special = 1;
6681556Srgrimes	} else {
66917987Speter		static const char PATH[] = "PATH=";
67017987Speter		char *path = pathval();
67117987Speter
67217987Speter		/*
67317987Speter		 * Modify the command lookup path, if a PATH= assignment
67417987Speter		 * is present
67517987Speter		 */
67617987Speter		for (sp = varlist.list ; sp ; sp = sp->next)
67754884Scracauer			if (strncmp(sp->text, PATH, sizeof(PATH) - 1) == 0) {
67817987Speter				path = sp->text + sizeof(PATH) - 1;
679155301Sschweikh				/*
68054884Scracauer				 * On `PATH=... command`, we need to make
68154884Scracauer				 * sure that the command isn't using the
68254884Scracauer				 * non-updated hash table of the outer PATH
683155301Sschweikh				 * setting and we need to make sure that
68454884Scracauer				 * the hash table isn't filled with items
68554884Scracauer				 * from the temporary setting.
68654884Scracauer				 *
687155301Sschweikh				 * It would be better to forbit using and
68854884Scracauer				 * updating the table while this command
68954884Scracauer				 * runs, by the command finding mechanism
69054884Scracauer				 * is heavily integrated with hash handling,
69154884Scracauer				 * so we just delete the hash before and after
69254884Scracauer				 * the command runs. Partly deleting like
69354884Scracauer				 * changepatch() does doesn't seem worth the
69454884Scracauer				 * bookinging effort, since most such runs add
695123996Smaxim				 * directories in front of the new PATH.
69654884Scracauer				 */
69754884Scracauer				clearcmdentry(0);
69854884Scracauer				do_clearcmdentry = 1;
69954884Scracauer			}
70017987Speter
70117987Speter		find_command(argv[0], &cmdentry, 1, path);
7021556Srgrimes		if (cmdentry.cmdtype == CMDUNKNOWN) {	/* command not found */
70320425Ssteve			exitstatus = 127;
7041556Srgrimes			flushout(&errout);
7051556Srgrimes			return;
7061556Srgrimes		}
7071556Srgrimes		/* implement the bltin builtin here */
7081556Srgrimes		if (cmdentry.cmdtype == CMDBUILTIN && cmdentry.u.index == BLTINCMD) {
7091556Srgrimes			for (;;) {
7101556Srgrimes				argv++;
7111556Srgrimes				if (--argc == 0)
7121556Srgrimes					break;
713157601Sstefanf				if ((cmdentry.u.index = find_builtin(*argv,
714157601Sstefanf				    &cmdentry.special)) < 0) {
7151556Srgrimes					outfmt(&errout, "%s: not found\n", *argv);
71620425Ssteve					exitstatus = 127;
7171556Srgrimes					flushout(&errout);
7181556Srgrimes					return;
7191556Srgrimes				}
7201556Srgrimes				if (cmdentry.u.index != BLTINCMD)
7211556Srgrimes					break;
7221556Srgrimes			}
7231556Srgrimes		}
7241556Srgrimes	}
7251556Srgrimes
7261556Srgrimes	/* Fork off a child process if necessary. */
7271556Srgrimes	if (cmd->ncmd.backgnd
72845221Scracauer	 || (cmdentry.cmdtype == CMDNORMAL
729194127Sjilles	    && ((flags & EV_EXIT) == 0 || have_traps()))
73017987Speter	 || ((flags & EV_BACKCMD) != 0
7311556Srgrimes	    && (cmdentry.cmdtype != CMDBUILTIN
73248896Ssheldonh		 || cmdentry.u.index == CDCMD
7331556Srgrimes		 || cmdentry.u.index == DOTCMD
734100437Stjr		 || cmdentry.u.index == EVALCMD))
735100437Stjr	 || (cmdentry.cmdtype == CMDBUILTIN &&
736100437Stjr	    cmdentry.u.index == COMMANDCMD)) {
7371556Srgrimes		jp = makejob(cmd, 1);
7381556Srgrimes		mode = cmd->ncmd.backgnd;
7391556Srgrimes		if (flags & EV_BACKCMD) {
7401556Srgrimes			mode = FORK_NOJOB;
7411556Srgrimes			if (pipe(pip) < 0)
74253891Scracauer				error("Pipe call failed: %s", strerror(errno));
7431556Srgrimes		}
7441556Srgrimes		if (forkshell(jp, cmd, mode) != 0)
7451556Srgrimes			goto parent;	/* at end of routine */
7461556Srgrimes		if (flags & EV_BACKCMD) {
7471556Srgrimes			FORCEINTON;
7481556Srgrimes			close(pip[0]);
7491556Srgrimes			if (pip[1] != 1) {
750124780Sdes				dup2(pip[1], 1);
7511556Srgrimes				close(pip[1]);
7521556Srgrimes			}
7531556Srgrimes		}
7541556Srgrimes		flags |= EV_EXIT;
7551556Srgrimes	}
7561556Srgrimes
7571556Srgrimes	/* This is the child process if a fork occurred. */
7581556Srgrimes	/* Execute the command. */
7591556Srgrimes	if (cmdentry.cmdtype == CMDFUNCTION) {
76020425Ssteve#ifdef DEBUG
7611556Srgrimes		trputs("Shell function:  ");  trargs(argv);
76220425Ssteve#endif
7631556Srgrimes		redirect(cmd->ncmd.redirect, REDIR_PUSH);
7641556Srgrimes		saveparam = shellparam;
7651556Srgrimes		shellparam.malloc = 0;
76620425Ssteve		shellparam.reset = 1;
7671556Srgrimes		shellparam.nparam = argc - 1;
7681556Srgrimes		shellparam.p = argv + 1;
7691556Srgrimes		shellparam.optnext = NULL;
7701556Srgrimes		INTOFF;
7711556Srgrimes		savelocalvars = localvars;
7721556Srgrimes		localvars = NULL;
7731556Srgrimes		INTON;
774194765Sjilles		savehandler = handler;
7751556Srgrimes		if (setjmp(jmploc.loc)) {
7761556Srgrimes			if (exception == EXSHELLPROC)
777194765Sjilles				freeparam(&saveparam);
7781556Srgrimes			else {
7791556Srgrimes				freeparam(&shellparam);
7801556Srgrimes				shellparam = saveparam;
7811556Srgrimes			}
7821556Srgrimes			poplocalvars();
7831556Srgrimes			localvars = savelocalvars;
7841556Srgrimes			handler = savehandler;
7851556Srgrimes			longjmp(handler->loc, 1);
7861556Srgrimes		}
7871556Srgrimes		handler = &jmploc;
7881556Srgrimes		for (sp = varlist.list ; sp ; sp = sp->next)
7891556Srgrimes			mklocal(sp->text);
7901556Srgrimes		funcnest++;
791185231Sstefanf		exitstatus = oexitstatus;
79235675Scracauer		if (flags & EV_TESTED)
79335675Scracauer			evaltree(cmdentry.u.func, EV_TESTED);
79435675Scracauer		else
79535675Scracauer			evaltree(cmdentry.u.func, 0);
7961556Srgrimes		funcnest--;
7971556Srgrimes		INTOFF;
7981556Srgrimes		poplocalvars();
7991556Srgrimes		localvars = savelocalvars;
8001556Srgrimes		freeparam(&shellparam);
8011556Srgrimes		shellparam = saveparam;
8021556Srgrimes		handler = savehandler;
8031556Srgrimes		popredir();
8041556Srgrimes		INTON;
8051556Srgrimes		if (evalskip == SKIPFUNC) {
8061556Srgrimes			evalskip = 0;
8071556Srgrimes			skipcount = 0;
8081556Srgrimes		}
8091556Srgrimes		if (flags & EV_EXIT)
8101556Srgrimes			exitshell(exitstatus);
8111556Srgrimes	} else if (cmdentry.cmdtype == CMDBUILTIN) {
81220425Ssteve#ifdef DEBUG
8131556Srgrimes		trputs("builtin command:  ");  trargs(argv);
81420425Ssteve#endif
8151556Srgrimes		mode = (cmdentry.u.index == EXECCMD)? 0 : REDIR_PUSH;
8161556Srgrimes		if (flags == EV_BACKCMD) {
8171556Srgrimes			memout.nleft = 0;
8181556Srgrimes			memout.nextc = memout.buf;
8191556Srgrimes			memout.bufsize = 64;
8201556Srgrimes			mode |= REDIR_BACKQ;
8211556Srgrimes		}
8221556Srgrimes		savecmdname = commandname;
8231556Srgrimes		cmdenviron = varlist.list;
8241556Srgrimes		e = -1;
825194765Sjilles		savehandler = handler;
8261556Srgrimes		if (setjmp(jmploc.loc)) {
8271556Srgrimes			e = exception;
8281556Srgrimes			exitstatus = (e == EXINT)? SIGINT+128 : 2;
8291556Srgrimes			goto cmddone;
8301556Srgrimes		}
8311556Srgrimes		handler = &jmploc;
832157601Sstefanf		redirect(cmd->ncmd.redirect, mode);
833157601Sstefanf		if (cmdentry.special)
834157601Sstefanf			listsetvar(cmdenviron);
8351556Srgrimes		commandname = argv[0];
8361556Srgrimes		argptr = argv + 1;
8371556Srgrimes		optptr = NULL;			/* initialize nextopt */
838193169Sstefanf		builtin_flags = flags;
8391556Srgrimes		exitstatus = (*builtinfunc[cmdentry.u.index])(argc, argv);
8401556Srgrimes		flushall();
8411556Srgrimescmddone:
84260592Scracauer		cmdenviron = NULL;
8431556Srgrimes		out1 = &output;
8441556Srgrimes		out2 = &errout;
8451556Srgrimes		freestdout();
8461556Srgrimes		if (e != EXSHELLPROC) {
8471556Srgrimes			commandname = savecmdname;
8481556Srgrimes			if (flags & EV_EXIT) {
8491556Srgrimes				exitshell(exitstatus);
8501556Srgrimes			}
8511556Srgrimes		}
8521556Srgrimes		handler = savehandler;
8531556Srgrimes		if (e != -1) {
85420425Ssteve			if ((e != EXERROR && e != EXEXEC)
855157601Sstefanf			    || cmdentry.special)
8561556Srgrimes				exraise(e);
8571556Srgrimes			FORCEINTON;
8581556Srgrimes		}
8591556Srgrimes		if (cmdentry.u.index != EXECCMD)
8601556Srgrimes			popredir();
8611556Srgrimes		if (flags == EV_BACKCMD) {
8621556Srgrimes			backcmd->buf = memout.buf;
8631556Srgrimes			backcmd->nleft = memout.nextc - memout.buf;
8641556Srgrimes			memout.buf = NULL;
8651556Srgrimes		}
8661556Srgrimes	} else {
86720425Ssteve#ifdef DEBUG
8681556Srgrimes		trputs("normal command:  ");  trargs(argv);
86920425Ssteve#endif
8701556Srgrimes		clearredir();
8711556Srgrimes		redirect(cmd->ncmd.redirect, 0);
8721556Srgrimes		for (sp = varlist.list ; sp ; sp = sp->next)
8731556Srgrimes			setvareq(sp->text, VEXPORT|VSTACK);
8741556Srgrimes		envp = environment();
87517987Speter		shellexec(argv, envp, pathval(), cmdentry.u.index);
8761556Srgrimes		/*NOTREACHED*/
8771556Srgrimes	}
8781556Srgrimes	goto out;
8791556Srgrimes
8801556Srgrimesparent:	/* parent process gets here (if we forked) */
8811556Srgrimes	if (mode == 0) {	/* argument to fork */
8821556Srgrimes		INTOFF;
88345916Scracauer		exitstatus = waitforjob(jp, &realstatus);
8841556Srgrimes		INTON;
88545916Scracauer		if (iflag && loopnest > 0 && WIFSIGNALED(realstatus)) {
88645266Scracauer			evalskip = SKIPBREAK;
88745266Scracauer			skipcount = loopnest;
88845266Scracauer		}
8891556Srgrimes	} else if (mode == 2) {
8901556Srgrimes		backcmd->fd = pip[0];
8911556Srgrimes		close(pip[1]);
8921556Srgrimes		backcmd->jp = jp;
8931556Srgrimes	}
8941556Srgrimes
8951556Srgrimesout:
8961556Srgrimes	if (lastarg)
8971556Srgrimes		setvar("_", lastarg, 0);
89854884Scracauer	if (do_clearcmdentry)
89954884Scracauer		clearcmdentry(0);
9001556Srgrimes	popstackmark(&smark);
9011556Srgrimes}
9021556Srgrimes
9031556Srgrimes
9041556Srgrimes
9051556Srgrimes/*
9061556Srgrimes * Search for a command.  This is called before we fork so that the
9071556Srgrimes * location of the command will be available in the parent as well as
9081556Srgrimes * the child.  The check for "goodname" is an overly conservative
9091556Srgrimes * check that the name will not be subject to expansion.
9101556Srgrimes */
9111556Srgrimes
9121556SrgrimesSTATIC void
91390111Simpprehash(union node *n)
91417987Speter{
9151556Srgrimes	struct cmdentry entry;
9161556Srgrimes
917159633Sstefanf	if (n && n->type == NCMD && n->ncmd.args)
91817987Speter		if (goodname(n->ncmd.args->narg.text))
91917987Speter			find_command(n->ncmd.args->narg.text, &entry, 0,
92017987Speter				     pathval());
9211556Srgrimes}
9221556Srgrimes
9231556Srgrimes
9241556Srgrimes
9251556Srgrimes/*
9261556Srgrimes * Builtin commands.  Builtin commands whose functions are closely
9271556Srgrimes * tied to evaluation are implemented here.
9281556Srgrimes */
9291556Srgrimes
9301556Srgrimes/*
931157601Sstefanf * No command given, or a bltin command with no arguments.
9321556Srgrimes */
9331556Srgrimes
93417987Speterint
93590111Simpbltincmd(int argc __unused, char **argv __unused)
93617987Speter{
93720425Ssteve	/*
93817987Speter	 * Preserve exitstatus of a previous possible redirection
93920425Ssteve	 * as POSIX mandates
94017987Speter	 */
9411556Srgrimes	return exitstatus;
9421556Srgrimes}
9431556Srgrimes
9441556Srgrimes
9451556Srgrimes/*
9461556Srgrimes * Handle break and continue commands.  Break, continue, and return are
9471556Srgrimes * all handled by setting the evalskip flag.  The evaluation routines
9481556Srgrimes * above all check this flag, and if it is set they start skipping
9491556Srgrimes * commands rather than executing them.  The variable skipcount is
9501556Srgrimes * the number of loops to break/continue, or the number of function
9511556Srgrimes * levels to return.  (The latter is always 1.)  It should probably
9521556Srgrimes * be an error to break out of more loops than exist, but it isn't
9531556Srgrimes * in the standard shell so we don't make it one here.
9541556Srgrimes */
9551556Srgrimes
95617987Speterint
95790111Simpbreakcmd(int argc, char **argv)
95817987Speter{
95920425Ssteve	int n = argc > 1 ? number(argv[1]) : 1;
9601556Srgrimes
9611556Srgrimes	if (n > loopnest)
9621556Srgrimes		n = loopnest;
9631556Srgrimes	if (n > 0) {
9641556Srgrimes		evalskip = (**argv == 'c')? SKIPCONT : SKIPBREAK;
9651556Srgrimes		skipcount = n;
9661556Srgrimes	}
9671556Srgrimes	return 0;
9681556Srgrimes}
9691556Srgrimes
970100437Stjr/*
971100437Stjr * The `command' command.
972100437Stjr */
973100437Stjrint
974100437Stjrcommandcmd(int argc, char **argv)
975100437Stjr{
976100437Stjr	static char stdpath[] = _PATH_STDPATH;
977100437Stjr	struct jmploc loc, *old;
978100437Stjr	struct strlist *sp;
979100437Stjr	char *path;
980100437Stjr	int ch;
981151810Sstefanf	int cmd = -1;
9821556Srgrimes
983100437Stjr	for (sp = cmdenviron; sp ; sp = sp->next)
984100437Stjr		setvareq(sp->text, VEXPORT|VSTACK);
985100437Stjr	path = pathval();
986100437Stjr
987100437Stjr	optind = optreset = 1;
988100663Stjr	opterr = 0;
989151810Sstefanf	while ((ch = getopt(argc, argv, "pvV")) != -1) {
990100437Stjr		switch (ch) {
991100437Stjr		case 'p':
992100437Stjr			path = stdpath;
993100437Stjr			break;
994151810Sstefanf		case 'v':
995151810Sstefanf			cmd = TYPECMD_SMALLV;
996151810Sstefanf			break;
997151810Sstefanf		case 'V':
998151810Sstefanf			cmd = TYPECMD_BIGV;
999151810Sstefanf			break;
1000100437Stjr		case '?':
1001100437Stjr		default:
1002100437Stjr			error("unknown option: -%c", optopt);
1003100437Stjr		}
1004100437Stjr	}
1005100437Stjr	argc -= optind;
1006100437Stjr	argv += optind;
1007100437Stjr
1008151810Sstefanf	if (cmd != -1) {
1009151810Sstefanf		if (argc != 1)
1010151810Sstefanf			error("wrong number of arguments");
1011151810Sstefanf		return typecmd_impl(2, argv - 1, cmd);
1012151810Sstefanf	}
1013100437Stjr	if (argc != 0) {
1014100437Stjr		old = handler;
1015100437Stjr		handler = &loc;
1016100437Stjr		if (setjmp(handler->loc) == 0)
1017100437Stjr			shellexec(argv, environment(), path, 0);
1018100437Stjr		handler = old;
1019100437Stjr		if (exception == EXEXEC)
1020100437Stjr			exit(exerrno);
1021100437Stjr		exraise(exception);
1022100437Stjr	}
1023100437Stjr
1024100437Stjr	/*
1025100437Stjr	 * Do nothing successfully if no command was specified;
1026100437Stjr	 * ksh also does this.
1027100437Stjr	 */
1028100437Stjr	exit(0);
1029100437Stjr}
1030100437Stjr
1031100437Stjr
10321556Srgrimes/*
10331556Srgrimes * The return command.
10341556Srgrimes */
10351556Srgrimes
103617987Speterint
103790111Simpreturncmd(int argc, char **argv)
103817987Speter{
103920425Ssteve	int ret = argc > 1 ? number(argv[1]) : oexitstatus;
10401556Srgrimes
10411556Srgrimes	if (funcnest) {
10421556Srgrimes		evalskip = SKIPFUNC;
10431556Srgrimes		skipcount = 1;
104420425Ssteve	} else {
104520425Ssteve		/* skip the rest of the file */
104620425Ssteve		evalskip = SKIPFILE;
104720425Ssteve		skipcount = 1;
10481556Srgrimes	}
10491556Srgrimes	return ret;
10501556Srgrimes}
10511556Srgrimes
10521556Srgrimes
105317987Speterint
105490111Simpfalsecmd(int argc __unused, char **argv __unused)
105517987Speter{
105617987Speter	return 1;
105717987Speter}
105817987Speter
105917987Speter
106017987Speterint
106190111Simptruecmd(int argc __unused, char **argv __unused)
106217987Speter{
10631556Srgrimes	return 0;
10641556Srgrimes}
10651556Srgrimes
10661556Srgrimes
106717987Speterint
106890111Simpexeccmd(int argc, char **argv)
106917987Speter{
10701556Srgrimes	if (argc > 1) {
107117987Speter		struct strlist *sp;
107217987Speter
10731556Srgrimes		iflag = 0;		/* exit on error */
10741556Srgrimes		mflag = 0;
10751556Srgrimes		optschanged();
107617987Speter		for (sp = cmdenviron; sp ; sp = sp->next)
107717987Speter			setvareq(sp->text, VEXPORT|VSTACK);
10781556Srgrimes		shellexec(argv + 1, environment(), pathval(), 0);
10791556Srgrimes
10801556Srgrimes	}
10811556Srgrimes	return 0;
10821556Srgrimes}
1083153091Sstefanf
1084153091Sstefanf
1085153091Sstefanfint
1086153091Sstefanftimescmd(int argc __unused, char **argv __unused)
1087153091Sstefanf{
1088153091Sstefanf	struct rusage ru;
1089153091Sstefanf	long shumins, shsmins, chumins, chsmins;
1090153091Sstefanf	double shusecs, shssecs, chusecs, chssecs;
1091153091Sstefanf
1092153091Sstefanf	if (getrusage(RUSAGE_SELF, &ru) < 0)
1093153091Sstefanf		return 1;
1094153091Sstefanf	shumins = ru.ru_utime.tv_sec / 60;
1095153091Sstefanf	shusecs = ru.ru_utime.tv_sec % 60 + ru.ru_utime.tv_usec / 1000000.;
1096153091Sstefanf	shsmins = ru.ru_stime.tv_sec / 60;
1097153091Sstefanf	shssecs = ru.ru_stime.tv_sec % 60 + ru.ru_stime.tv_usec / 1000000.;
1098153091Sstefanf	if (getrusage(RUSAGE_CHILDREN, &ru) < 0)
1099153091Sstefanf		return 1;
1100153091Sstefanf	chumins = ru.ru_utime.tv_sec / 60;
1101153091Sstefanf	chusecs = ru.ru_utime.tv_sec % 60 + ru.ru_utime.tv_usec / 1000000.;
1102153091Sstefanf	chsmins = ru.ru_stime.tv_sec / 60;
1103153091Sstefanf	chssecs = ru.ru_stime.tv_sec % 60 + ru.ru_stime.tv_usec / 1000000.;
1104153091Sstefanf	out1fmt("%ldm%.3fs %ldm%.3fs\n%ldm%.3fs %ldm%.3fs\n", shumins,
1105153091Sstefanf	    shusecs, shsmins, shssecs, chumins, chusecs, chsmins, chssecs);
1106153091Sstefanf	return 0;
1107153091Sstefanf}
1108