xref: /freebsd/bin/sh/eval.c (revision 6e8394b8baa7d5d9153ab90de6824bcd19b3b4e1)
1 /*-
2  * Copyright (c) 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Kenneth Almquist.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *	This product includes software developed by the University of
19  *	California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  */
36 
37 #ifndef lint
38 #if 0
39 static char sccsid[] = "@(#)eval.c	8.9 (Berkeley) 6/8/95";
40 #endif
41 static const char rcsid[] =
42 	"$Id: eval.c,v 1.18 1999/04/21 11:52:39 cracauer Exp $";
43 #endif /* not lint */
44 
45 #include <signal.h>
46 #include <unistd.h>
47 #include <sys/wait.h> /* For WIFSIGNALED(status) */
48 
49 /*
50  * Evaluate a command.
51  */
52 
53 #include "shell.h"
54 #include "nodes.h"
55 #include "syntax.h"
56 #include "expand.h"
57 #include "parser.h"
58 #include "jobs.h"
59 #include "eval.h"
60 #include "builtins.h"
61 #include "options.h"
62 #include "exec.h"
63 #include "redir.h"
64 #include "input.h"
65 #include "output.h"
66 #include "trap.h"
67 #include "var.h"
68 #include "memalloc.h"
69 #include "error.h"
70 #include "show.h"
71 #include "mystring.h"
72 #ifndef NO_HISTORY
73 #include "myhistedit.h"
74 #endif
75 
76 
77 /* flags in argument to evaltree */
78 #define EV_EXIT 01		/* exit after evaluating tree */
79 #define EV_TESTED 02		/* exit status is checked; ignore -e flag */
80 #define EV_BACKCMD 04		/* command executing within back quotes */
81 
82 MKINIT int evalskip;		/* set if we are skipping commands */
83 STATIC int skipcount;		/* number of levels to skip */
84 MKINIT int loopnest;		/* current loop nesting level */
85 int funcnest;			/* depth of function calls */
86 
87 
88 char *commandname;
89 struct strlist *cmdenviron;
90 int exitstatus;			/* exit status of last command */
91 int oexitstatus;		/* saved exit status */
92 
93 
94 STATIC void evalloop __P((union node *));
95 STATIC void evalfor __P((union node *));
96 STATIC void evalcase __P((union node *, int));
97 STATIC void evalsubshell __P((union node *, int));
98 STATIC void expredir __P((union node *));
99 STATIC void evalpipe __P((union node *));
100 STATIC void evalcommand __P((union node *, int, struct backcmd *));
101 STATIC void prehash __P((union node *));
102 
103 
104 /*
105  * Called to reset things after an exception.
106  */
107 
108 #ifdef mkinit
109 INCLUDE "eval.h"
110 
111 RESET {
112 	evalskip = 0;
113 	loopnest = 0;
114 	funcnest = 0;
115 }
116 
117 SHELLPROC {
118 	exitstatus = 0;
119 }
120 #endif
121 
122 
123 
124 /*
125  * The eval command.
126  */
127 
128 int
129 evalcmd(argc, argv)
130 	int argc;
131 	char **argv;
132 {
133         char *p;
134         char *concat;
135         char **ap;
136 
137         if (argc > 1) {
138                 p = argv[1];
139                 if (argc > 2) {
140                         STARTSTACKSTR(concat);
141                         ap = argv + 2;
142                         for (;;) {
143                                 while (*p)
144                                         STPUTC(*p++, concat);
145                                 if ((p = *ap++) == NULL)
146                                         break;
147                                 STPUTC(' ', concat);
148                         }
149                         STPUTC('\0', concat);
150                         p = grabstackstr(concat);
151                 }
152                 evalstring(p);
153         }
154         return exitstatus;
155 }
156 
157 
158 /*
159  * Execute a command or commands contained in a string.
160  */
161 
162 void
163 evalstring(s)
164 	char *s;
165 	{
166 	union node *n;
167 	struct stackmark smark;
168 
169 	setstackmark(&smark);
170 	setinputstring(s, 1);
171 	while ((n = parsecmd(0)) != NEOF) {
172 		evaltree(n, 0);
173 		popstackmark(&smark);
174 	}
175 	popfile();
176 	popstackmark(&smark);
177 }
178 
179 
180 
181 /*
182  * Evaluate a parse tree.  The value is left in the global variable
183  * exitstatus.
184  */
185 
186 void
187 evaltree(n, flags)
188 	union node *n;
189 	int flags;
190 {
191 	if (n == NULL) {
192 		TRACE(("evaltree(NULL) called\n"));
193 		exitstatus = 0;
194 		goto out;
195 	}
196 #ifndef NO_HISTORY
197 	displayhist = 1;	/* show history substitutions done with fc */
198 #endif
199 	TRACE(("evaltree(0x%lx: %d) called\n", (long)n, n->type));
200 	switch (n->type) {
201 	case NSEMI:
202 		evaltree(n->nbinary.ch1, 0);
203 		if (evalskip)
204 			goto out;
205 		evaltree(n->nbinary.ch2, flags);
206 		break;
207 	case NAND:
208 		evaltree(n->nbinary.ch1, EV_TESTED);
209 		if (evalskip || exitstatus != 0) {
210 			flags |= EV_TESTED;
211 			goto out;
212 		}
213 		evaltree(n->nbinary.ch2, flags);
214 		break;
215 	case NOR:
216 		evaltree(n->nbinary.ch1, EV_TESTED);
217 		if (evalskip || exitstatus == 0)
218 			goto out;
219 		evaltree(n->nbinary.ch2, flags);
220 		break;
221 	case NREDIR:
222 		expredir(n->nredir.redirect);
223 		redirect(n->nredir.redirect, REDIR_PUSH);
224 		evaltree(n->nredir.n, flags);
225 		popredir();
226 		break;
227 	case NSUBSHELL:
228 		evalsubshell(n, flags);
229 		break;
230 	case NBACKGND:
231 		evalsubshell(n, flags);
232 		break;
233 	case NIF: {
234 		evaltree(n->nif.test, EV_TESTED);
235 		if (evalskip)
236 			goto out;
237 		if (exitstatus == 0)
238 			evaltree(n->nif.ifpart, flags);
239 		else if (n->nif.elsepart)
240 			evaltree(n->nif.elsepart, flags);
241 		else
242 			exitstatus = 0;
243 		break;
244 	}
245 	case NWHILE:
246 	case NUNTIL:
247 		evalloop(n);
248 		break;
249 	case NFOR:
250 		evalfor(n);
251 		break;
252 	case NCASE:
253 		evalcase(n, flags);
254 		break;
255 	case NDEFUN:
256 		defun(n->narg.text, n->narg.next);
257 		exitstatus = 0;
258 		break;
259 	case NNOT:
260 		evaltree(n->nnot.com, EV_TESTED);
261 		exitstatus = !exitstatus;
262 		break;
263 
264 	case NPIPE:
265 		evalpipe(n);
266 		break;
267 	case NCMD:
268 		evalcommand(n, flags, (struct backcmd *)NULL);
269 		break;
270 	default:
271 		out1fmt("Node type = %d\n", n->type);
272 		flushout(&output);
273 		break;
274 	}
275 out:
276 	if (pendingsigs)
277 		dotrap();
278 	if ((flags & EV_EXIT) || (eflag && exitstatus && !(flags & EV_TESTED)))
279 		exitshell(exitstatus);
280 }
281 
282 
283 STATIC void
284 evalloop(n)
285 	union node *n;
286 {
287 	int status;
288 
289 	loopnest++;
290 	status = 0;
291 	for (;;) {
292 		evaltree(n->nbinary.ch1, EV_TESTED);
293 		if (evalskip) {
294 skipping:	  if (evalskip == SKIPCONT && --skipcount <= 0) {
295 				evalskip = 0;
296 				continue;
297 			}
298 			if (evalskip == SKIPBREAK && --skipcount <= 0)
299 				evalskip = 0;
300 			break;
301 		}
302 		if (n->type == NWHILE) {
303 			if (exitstatus != 0)
304 				break;
305 		} else {
306 			if (exitstatus == 0)
307 				break;
308 		}
309 		evaltree(n->nbinary.ch2, 0);
310 		status = exitstatus;
311 		if (evalskip)
312 			goto skipping;
313 	}
314 	loopnest--;
315 	exitstatus = status;
316 }
317 
318 
319 
320 STATIC void
321 evalfor(n)
322     union node *n;
323 {
324 	struct arglist arglist;
325 	union node *argp;
326 	struct strlist *sp;
327 	struct stackmark smark;
328 
329 	setstackmark(&smark);
330 	arglist.lastp = &arglist.list;
331 	for (argp = n->nfor.args ; argp ; argp = argp->narg.next) {
332 		oexitstatus = exitstatus;
333 		expandarg(argp, &arglist, EXP_FULL | EXP_TILDE);
334 		if (evalskip)
335 			goto out;
336 	}
337 	*arglist.lastp = NULL;
338 
339 	exitstatus = 0;
340 	loopnest++;
341 	for (sp = arglist.list ; sp ; sp = sp->next) {
342 		setvar(n->nfor.var, sp->text, 0);
343 		evaltree(n->nfor.body, 0);
344 		if (evalskip) {
345 			if (evalskip == SKIPCONT && --skipcount <= 0) {
346 				evalskip = 0;
347 				continue;
348 			}
349 			if (evalskip == SKIPBREAK && --skipcount <= 0)
350 				evalskip = 0;
351 			break;
352 		}
353 	}
354 	loopnest--;
355 out:
356 	popstackmark(&smark);
357 }
358 
359 
360 
361 STATIC void
362 evalcase(n, flags)
363 	union node *n;
364 	int flags;
365 {
366 	union node *cp;
367 	union node *patp;
368 	struct arglist arglist;
369 	struct stackmark smark;
370 
371 	setstackmark(&smark);
372 	arglist.lastp = &arglist.list;
373 	oexitstatus = exitstatus;
374 	expandarg(n->ncase.expr, &arglist, EXP_TILDE);
375 	for (cp = n->ncase.cases ; cp && evalskip == 0 ; cp = cp->nclist.next) {
376 		for (patp = cp->nclist.pattern ; patp ; patp = patp->narg.next) {
377 			if (casematch(patp, arglist.list->text)) {
378 				if (evalskip == 0) {
379 					evaltree(cp->nclist.body, flags);
380 				}
381 				goto out;
382 			}
383 		}
384 	}
385 out:
386 	popstackmark(&smark);
387 }
388 
389 
390 
391 /*
392  * Kick off a subshell to evaluate a tree.
393  */
394 
395 STATIC void
396 evalsubshell(n, flags)
397 	union node *n;
398 	int flags;
399 {
400 	struct job *jp;
401 	int backgnd = (n->type == NBACKGND);
402 
403 	expredir(n->nredir.redirect);
404 	jp = makejob(n, 1);
405 	if (forkshell(jp, n, backgnd) == 0) {
406 		if (backgnd)
407 			flags &=~ EV_TESTED;
408 		redirect(n->nredir.redirect, 0);
409 		evaltree(n->nredir.n, flags | EV_EXIT);	/* never returns */
410 	}
411 	if (! backgnd) {
412 		INTOFF;
413 		exitstatus = waitforjob(jp, (int *)NULL);
414 		INTON;
415 	}
416 }
417 
418 
419 
420 /*
421  * Compute the names of the files in a redirection list.
422  */
423 
424 STATIC void
425 expredir(n)
426 	union node *n;
427 {
428 	union node *redir;
429 
430 	for (redir = n ; redir ; redir = redir->nfile.next) {
431 		struct arglist fn;
432 		fn.lastp = &fn.list;
433 		oexitstatus = exitstatus;
434 		switch (redir->type) {
435 		case NFROM:
436 		case NTO:
437 		case NAPPEND:
438 			expandarg(redir->nfile.fname, &fn, EXP_TILDE | EXP_REDIR);
439 			redir->nfile.expfname = fn.list->text;
440 			break;
441 		case NFROMFD:
442 		case NTOFD:
443 			if (redir->ndup.vname) {
444 				expandarg(redir->ndup.vname, &fn, EXP_FULL | EXP_TILDE);
445 				fixredir(redir, fn.list->text, 1);
446 			}
447 			break;
448 		}
449 	}
450 }
451 
452 
453 
454 /*
455  * Evaluate a pipeline.  All the processes in the pipeline are children
456  * of the process creating the pipeline.  (This differs from some versions
457  * of the shell, which make the last process in a pipeline the parent
458  * of all the rest.)
459  */
460 
461 STATIC void
462 evalpipe(n)
463 	union node *n;
464 {
465 	struct job *jp;
466 	struct nodelist *lp;
467 	int pipelen;
468 	int prevfd;
469 	int pip[2];
470 
471 	TRACE(("evalpipe(0x%lx) called\n", (long)n));
472 	pipelen = 0;
473 	for (lp = n->npipe.cmdlist ; lp ; lp = lp->next)
474 		pipelen++;
475 	INTOFF;
476 	jp = makejob(n, pipelen);
477 	prevfd = -1;
478 	for (lp = n->npipe.cmdlist ; lp ; lp = lp->next) {
479 		prehash(lp->n);
480 		pip[1] = -1;
481 		if (lp->next) {
482 			if (pipe(pip) < 0) {
483 				close(prevfd);
484 				error("Pipe call failed");
485 			}
486 		}
487 		if (forkshell(jp, lp->n, n->npipe.backgnd) == 0) {
488 			INTON;
489 			if (prevfd > 0) {
490 				close(0);
491 				copyfd(prevfd, 0);
492 				close(prevfd);
493 			}
494 			if (pip[1] >= 0) {
495 				close(pip[0]);
496 				if (pip[1] != 1) {
497 					close(1);
498 					copyfd(pip[1], 1);
499 					close(pip[1]);
500 				}
501 			}
502 			evaltree(lp->n, EV_EXIT);
503 		}
504 		if (prevfd >= 0)
505 			close(prevfd);
506 		prevfd = pip[0];
507 		close(pip[1]);
508 	}
509 	INTON;
510 	if (n->npipe.backgnd == 0) {
511 		INTOFF;
512 		exitstatus = waitforjob(jp, (int *)NULL);
513 		TRACE(("evalpipe:  job done exit status %d\n", exitstatus));
514 		INTON;
515 	}
516 }
517 
518 
519 
520 /*
521  * Execute a command inside back quotes.  If it's a builtin command, we
522  * want to save its output in a block obtained from malloc.  Otherwise
523  * we fork off a subprocess and get the output of the command via a pipe.
524  * Should be called with interrupts off.
525  */
526 
527 void
528 evalbackcmd(n, result)
529 	union node *n;
530 	struct backcmd *result;
531 {
532 	int pip[2];
533 	struct job *jp;
534 	struct stackmark smark;		/* unnecessary */
535 
536 	setstackmark(&smark);
537 	result->fd = -1;
538 	result->buf = NULL;
539 	result->nleft = 0;
540 	result->jp = NULL;
541 	if (n == NULL) {
542 		exitstatus = 0;
543 		goto out;
544 	}
545 	if (n->type == NCMD) {
546 		exitstatus = oexitstatus;
547 		evalcommand(n, EV_BACKCMD, result);
548 	} else {
549 		exitstatus = 0;
550 		if (pipe(pip) < 0)
551 			error("Pipe call failed");
552 		jp = makejob(n, 1);
553 		if (forkshell(jp, n, FORK_NOJOB) == 0) {
554 			FORCEINTON;
555 			close(pip[0]);
556 			if (pip[1] != 1) {
557 				close(1);
558 				copyfd(pip[1], 1);
559 				close(pip[1]);
560 			}
561 			evaltree(n, EV_EXIT);
562 		}
563 		close(pip[1]);
564 		result->fd = pip[0];
565 		result->jp = jp;
566 	}
567 out:
568 	popstackmark(&smark);
569 	TRACE(("evalbackcmd done: fd=%d buf=0x%x nleft=%d jp=0x%x\n",
570 		result->fd, result->buf, result->nleft, result->jp));
571 }
572 
573 
574 
575 /*
576  * Execute a simple command.
577  */
578 
579 STATIC void
580 evalcommand(cmd, flags, backcmd)
581 	union node *cmd;
582 	int flags;
583 	struct backcmd *backcmd;
584 {
585 	struct stackmark smark;
586 	union node *argp;
587 	struct arglist arglist;
588 	struct arglist varlist;
589 	char **argv;
590 	int argc;
591 	char **envp;
592 	int varflag;
593 	struct strlist *sp;
594 	int mode;
595 	int pip[2];
596 	struct cmdentry cmdentry;
597 	struct job *jp;
598 	struct jmploc jmploc;
599 	struct jmploc *volatile savehandler;
600 	char *volatile savecmdname;
601 	volatile struct shparam saveparam;
602 	struct localvar *volatile savelocalvars;
603 	volatile int e;
604 	char *lastarg;
605 	int realstatus;
606 #if __GNUC__
607 	/* Avoid longjmp clobbering */
608 	(void) &argv;
609 	(void) &argc;
610 	(void) &lastarg;
611 	(void) &flags;
612 #endif
613 
614 	/* First expand the arguments. */
615 	TRACE(("evalcommand(0x%lx, %d) called\n", (long)cmd, flags));
616 	setstackmark(&smark);
617 	arglist.lastp = &arglist.list;
618 	varlist.lastp = &varlist.list;
619 	varflag = 1;
620 	oexitstatus = exitstatus;
621 	exitstatus = 0;
622 	for (argp = cmd->ncmd.args ; argp ; argp = argp->narg.next) {
623 		char *p = argp->narg.text;
624 		if (varflag && is_name(*p)) {
625 			do {
626 				p++;
627 			} while (is_in_name(*p));
628 			if (*p == '=') {
629 				expandarg(argp, &varlist, EXP_VARTILDE);
630 				continue;
631 			}
632 		}
633 		expandarg(argp, &arglist, EXP_FULL | EXP_TILDE);
634 		varflag = 0;
635 	}
636 	*arglist.lastp = NULL;
637 	*varlist.lastp = NULL;
638 	expredir(cmd->ncmd.redirect);
639 	argc = 0;
640 	for (sp = arglist.list ; sp ; sp = sp->next)
641 		argc++;
642 	argv = stalloc(sizeof (char *) * (argc + 1));
643 
644 	for (sp = arglist.list ; sp ; sp = sp->next) {
645 		TRACE(("evalcommand arg: %s\n", sp->text));
646 		*argv++ = sp->text;
647 	}
648 	*argv = NULL;
649 	lastarg = NULL;
650 	if (iflag && funcnest == 0 && argc > 0)
651 		lastarg = argv[-1];
652 	argv -= argc;
653 
654 	/* Print the command if xflag is set. */
655 	if (xflag) {
656 		outc('+', &errout);
657 		for (sp = varlist.list ; sp ; sp = sp->next) {
658 			outc(' ', &errout);
659 			out2str(sp->text);
660 		}
661 		for (sp = arglist.list ; sp ; sp = sp->next) {
662 			outc(' ', &errout);
663 			out2str(sp->text);
664 		}
665 		outc('\n', &errout);
666 		flushout(&errout);
667 	}
668 
669 	/* Now locate the command. */
670 	if (argc == 0) {
671 		cmdentry.cmdtype = CMDBUILTIN;
672 		cmdentry.u.index = BLTINCMD;
673 	} else {
674 		static const char PATH[] = "PATH=";
675 		char *path = pathval();
676 
677 		/*
678 		 * Modify the command lookup path, if a PATH= assignment
679 		 * is present
680 		 */
681 		for (sp = varlist.list ; sp ; sp = sp->next)
682 			if (strncmp(sp->text, PATH, sizeof(PATH) - 1) == 0)
683 				path = sp->text + sizeof(PATH) - 1;
684 
685 		find_command(argv[0], &cmdentry, 1, path);
686 		if (cmdentry.cmdtype == CMDUNKNOWN) {	/* command not found */
687 			exitstatus = 127;
688 			flushout(&errout);
689 			return;
690 		}
691 		/* implement the bltin builtin here */
692 		if (cmdentry.cmdtype == CMDBUILTIN && cmdentry.u.index == BLTINCMD) {
693 			for (;;) {
694 				argv++;
695 				if (--argc == 0)
696 					break;
697 				if ((cmdentry.u.index = find_builtin(*argv)) < 0) {
698 					outfmt(&errout, "%s: not found\n", *argv);
699 					exitstatus = 127;
700 					flushout(&errout);
701 					return;
702 				}
703 				if (cmdentry.u.index != BLTINCMD)
704 					break;
705 			}
706 		}
707 	}
708 
709 	/* Fork off a child process if necessary. */
710 	if (cmd->ncmd.backgnd
711 	 || (cmdentry.cmdtype == CMDNORMAL
712 	    && ((flags & EV_EXIT) == 0 || Tflag))
713 	 || ((flags & EV_BACKCMD) != 0
714 	    && (cmdentry.cmdtype != CMDBUILTIN
715 		 || cmdentry.u.index == DOTCMD
716 		 || cmdentry.u.index == EVALCMD))) {
717 		jp = makejob(cmd, 1);
718 		mode = cmd->ncmd.backgnd;
719 		if (flags & EV_BACKCMD) {
720 			mode = FORK_NOJOB;
721 			if (pipe(pip) < 0)
722 				error("Pipe call failed");
723 		}
724 		if (forkshell(jp, cmd, mode) != 0)
725 			goto parent;	/* at end of routine */
726 		if (flags & EV_BACKCMD) {
727 			FORCEINTON;
728 			close(pip[0]);
729 			if (pip[1] != 1) {
730 				close(1);
731 				copyfd(pip[1], 1);
732 				close(pip[1]);
733 			}
734 		}
735 		flags |= EV_EXIT;
736 	}
737 
738 	/* This is the child process if a fork occurred. */
739 	/* Execute the command. */
740 	if (cmdentry.cmdtype == CMDFUNCTION) {
741 #ifdef DEBUG
742 		trputs("Shell function:  ");  trargs(argv);
743 #endif
744 		redirect(cmd->ncmd.redirect, REDIR_PUSH);
745 		saveparam = shellparam;
746 		shellparam.malloc = 0;
747 		shellparam.reset = 1;
748 		shellparam.nparam = argc - 1;
749 		shellparam.p = argv + 1;
750 		shellparam.optnext = NULL;
751 		INTOFF;
752 		savelocalvars = localvars;
753 		localvars = NULL;
754 		INTON;
755 		if (setjmp(jmploc.loc)) {
756 			if (exception == EXSHELLPROC)
757 				freeparam((struct shparam *)&saveparam);
758 			else {
759 				freeparam(&shellparam);
760 				shellparam = saveparam;
761 			}
762 			poplocalvars();
763 			localvars = savelocalvars;
764 			handler = savehandler;
765 			longjmp(handler->loc, 1);
766 		}
767 		savehandler = handler;
768 		handler = &jmploc;
769 		for (sp = varlist.list ; sp ; sp = sp->next)
770 			mklocal(sp->text);
771 		funcnest++;
772 		if (flags & EV_TESTED)
773 			evaltree(cmdentry.u.func, EV_TESTED);
774 		else
775 			evaltree(cmdentry.u.func, 0);
776 		funcnest--;
777 		INTOFF;
778 		poplocalvars();
779 		localvars = savelocalvars;
780 		freeparam(&shellparam);
781 		shellparam = saveparam;
782 		handler = savehandler;
783 		popredir();
784 		INTON;
785 		if (evalskip == SKIPFUNC) {
786 			evalskip = 0;
787 			skipcount = 0;
788 		}
789 		if (flags & EV_EXIT)
790 			exitshell(exitstatus);
791 	} else if (cmdentry.cmdtype == CMDBUILTIN) {
792 #ifdef DEBUG
793 		trputs("builtin command:  ");  trargs(argv);
794 #endif
795 		mode = (cmdentry.u.index == EXECCMD)? 0 : REDIR_PUSH;
796 		if (flags == EV_BACKCMD) {
797 			memout.nleft = 0;
798 			memout.nextc = memout.buf;
799 			memout.bufsize = 64;
800 			mode |= REDIR_BACKQ;
801 		}
802 		redirect(cmd->ncmd.redirect, mode);
803 		savecmdname = commandname;
804 		cmdenviron = varlist.list;
805 		e = -1;
806 		if (setjmp(jmploc.loc)) {
807 			e = exception;
808 			exitstatus = (e == EXINT)? SIGINT+128 : 2;
809 			goto cmddone;
810 		}
811 		savehandler = handler;
812 		handler = &jmploc;
813 		commandname = argv[0];
814 		argptr = argv + 1;
815 		optptr = NULL;			/* initialize nextopt */
816 		exitstatus = (*builtinfunc[cmdentry.u.index])(argc, argv);
817 		flushall();
818 cmddone:
819 		out1 = &output;
820 		out2 = &errout;
821 		freestdout();
822 		if (e != EXSHELLPROC) {
823 			commandname = savecmdname;
824 			if (flags & EV_EXIT) {
825 				exitshell(exitstatus);
826 			}
827 		}
828 		handler = savehandler;
829 		if (e != -1) {
830 			if ((e != EXERROR && e != EXEXEC)
831 			   || cmdentry.u.index == BLTINCMD
832 			   || cmdentry.u.index == DOTCMD
833 			   || cmdentry.u.index == EVALCMD
834 #ifndef NO_HISTORY
835 			   || cmdentry.u.index == HISTCMD
836 #endif
837 			   || cmdentry.u.index == EXECCMD)
838 				exraise(e);
839 			FORCEINTON;
840 		}
841 		if (cmdentry.u.index != EXECCMD)
842 			popredir();
843 		if (flags == EV_BACKCMD) {
844 			backcmd->buf = memout.buf;
845 			backcmd->nleft = memout.nextc - memout.buf;
846 			memout.buf = NULL;
847 		}
848 	} else {
849 #ifdef DEBUG
850 		trputs("normal command:  ");  trargs(argv);
851 #endif
852 		clearredir();
853 		redirect(cmd->ncmd.redirect, 0);
854 		for (sp = varlist.list ; sp ; sp = sp->next)
855 			setvareq(sp->text, VEXPORT|VSTACK);
856 		envp = environment();
857 		shellexec(argv, envp, pathval(), cmdentry.u.index);
858 		/*NOTREACHED*/
859 	}
860 	goto out;
861 
862 parent:	/* parent process gets here (if we forked) */
863 	if (mode == 0) {	/* argument to fork */
864 		INTOFF;
865 		exitstatus = waitforjob(jp, &realstatus);
866 		INTON;
867 		if (iflag && loopnest > 0 && WIFSIGNALED(realstatus)) {
868 			evalskip = SKIPBREAK;
869 			skipcount = loopnest;
870 		}
871 	} else if (mode == 2) {
872 		backcmd->fd = pip[0];
873 		close(pip[1]);
874 		backcmd->jp = jp;
875 	}
876 
877 out:
878 	if (lastarg)
879 		setvar("_", lastarg, 0);
880 	popstackmark(&smark);
881 }
882 
883 
884 
885 /*
886  * Search for a command.  This is called before we fork so that the
887  * location of the command will be available in the parent as well as
888  * the child.  The check for "goodname" is an overly conservative
889  * check that the name will not be subject to expansion.
890  */
891 
892 STATIC void
893 prehash(n)
894 	union node *n;
895 {
896 	struct cmdentry entry;
897 
898 	if (n->type == NCMD && n->ncmd.args)
899 		if (goodname(n->ncmd.args->narg.text))
900 			find_command(n->ncmd.args->narg.text, &entry, 0,
901 				     pathval());
902 }
903 
904 
905 
906 /*
907  * Builtin commands.  Builtin commands whose functions are closely
908  * tied to evaluation are implemented here.
909  */
910 
911 /*
912  * No command given, or a bltin command with no arguments.  Set the
913  * specified variables.
914  */
915 
916 int
917 bltincmd(argc, argv)
918 	int argc __unused;
919 	char **argv __unused;
920 {
921 	listsetvar(cmdenviron);
922 	/*
923 	 * Preserve exitstatus of a previous possible redirection
924 	 * as POSIX mandates
925 	 */
926 	return exitstatus;
927 }
928 
929 
930 /*
931  * Handle break and continue commands.  Break, continue, and return are
932  * all handled by setting the evalskip flag.  The evaluation routines
933  * above all check this flag, and if it is set they start skipping
934  * commands rather than executing them.  The variable skipcount is
935  * the number of loops to break/continue, or the number of function
936  * levels to return.  (The latter is always 1.)  It should probably
937  * be an error to break out of more loops than exist, but it isn't
938  * in the standard shell so we don't make it one here.
939  */
940 
941 int
942 breakcmd(argc, argv)
943 	int argc;
944 	char **argv;
945 {
946 	int n = argc > 1 ? number(argv[1]) : 1;
947 
948 	if (n > loopnest)
949 		n = loopnest;
950 	if (n > 0) {
951 		evalskip = (**argv == 'c')? SKIPCONT : SKIPBREAK;
952 		skipcount = n;
953 	}
954 	return 0;
955 }
956 
957 
958 /*
959  * The return command.
960  */
961 
962 int
963 returncmd(argc, argv)
964 	int argc;
965 	char **argv;
966 {
967 	int ret = argc > 1 ? number(argv[1]) : oexitstatus;
968 
969 	if (funcnest) {
970 		evalskip = SKIPFUNC;
971 		skipcount = 1;
972 	} else {
973 		/* skip the rest of the file */
974 		evalskip = SKIPFILE;
975 		skipcount = 1;
976 	}
977 	return ret;
978 }
979 
980 
981 int
982 falsecmd(argc, argv)
983 	int argc __unused;
984 	char **argv __unused;
985 {
986 	return 1;
987 }
988 
989 
990 int
991 truecmd(argc, argv)
992 	int argc __unused;
993 	char **argv __unused;
994 {
995 	return 0;
996 }
997 
998 
999 int
1000 execcmd(argc, argv)
1001 	int argc;
1002 	char **argv;
1003 {
1004 	if (argc > 1) {
1005 		struct strlist *sp;
1006 
1007 		iflag = 0;		/* exit on error */
1008 		mflag = 0;
1009 		optschanged();
1010 		for (sp = cmdenviron; sp ; sp = sp->next)
1011 			setvareq(sp->text, VEXPORT|VSTACK);
1012 		shellexec(argv + 1, environment(), pathval(), 0);
1013 
1014 	}
1015 	return 0;
1016 }
1017