Merge from vendor branch GCC:
[dragonfly.git] / bin / sh / eval.c
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  * @(#)eval.c   8.9 (Berkeley) 6/8/95
37  * $FreeBSD: src/bin/sh/eval.c,v 1.53 2006/06/15 07:57:05 stefanf Exp $
38  * $DragonFly: src/bin/sh/eval.c,v 1.10 2007/01/07 01:14:53 pavalos Exp $
39  */
40
41 #include <sys/resource.h>
42 #include <sys/wait.h> /* For WIFSIGNALED(status) */
43
44 #include <errno.h>
45 #include <paths.h>
46 #include <signal.h>
47 #include <stdlib.h>
48 #include <unistd.h>
49
50 /*
51  * Evaluate a command.
52  */
53
54 #include "shell.h"
55 #include "nodes.h"
56 #include "syntax.h"
57 #include "expand.h"
58 #include "parser.h"
59 #include "jobs.h"
60 #include "eval.h"
61 #include "builtins.h"
62 #include "options.h"
63 #include "exec.h"
64 #include "redir.h"
65 #include "input.h"
66 #include "output.h"
67 #include "trap.h"
68 #include "var.h"
69 #include "memalloc.h"
70 #include "error.h"
71 #include "show.h"
72 #include "mystring.h"
73 #ifndef NO_HISTORY
74 #include "myhistedit.h"
75 #endif
76
77
78 /* flags in argument to evaltree */
79 #define EV_EXIT 01              /* exit after evaluating tree */
80 #define EV_TESTED 02            /* exit status is checked; ignore -e flag */
81 #define EV_BACKCMD 04           /* command executing within back quotes */
82
83 int evalskip;                   /* set if we are skipping commands */
84 STATIC int skipcount;           /* number of levels to skip */
85 MKINIT int loopnest;            /* current loop nesting level */
86 int funcnest;                   /* depth of function calls */
87
88
89 const char *commandname;
90 struct strlist *cmdenviron;
91 int exitstatus;                 /* exit status of last command */
92 int oexitstatus;                /* saved exit status */
93
94
95 STATIC void evalloop(union node *, int);
96 STATIC void evalfor(union node *, int);
97 STATIC void evalcase(union node *, int);
98 STATIC void evalsubshell(union node *, int);
99 STATIC void expredir(union node *);
100 STATIC void evalpipe(union node *);
101 STATIC void evalcommand(union node *, int, struct backcmd *);
102 STATIC void prehash(union node *);
103
104
105 /*
106  * Called to reset things after an exception.
107  */
108
109 #ifdef mkinit
110 INCLUDE "eval.h"
111
112 RESET {
113         evalskip = 0;
114         loopnest = 0;
115         funcnest = 0;
116 }
117
118 SHELLPROC {
119         exitstatus = 0;
120 }
121 #endif
122
123
124
125 /*
126  * The eval command.
127  */
128
129 int
130 evalcmd(int argc, char **argv)
131 {
132         char *p;
133         char *concat;
134         char **ap;
135
136         if (argc > 1) {
137                 p = argv[1];
138                 if (argc > 2) {
139                         STARTSTACKSTR(concat);
140                         ap = argv + 2;
141                         for (;;) {
142                                 while (*p)
143                                         STPUTC(*p++, concat);
144                                 if ((p = *ap++) == NULL)
145                                         break;
146                                 STPUTC(' ', concat);
147                         }
148                         STPUTC('\0', concat);
149                         p = grabstackstr(concat);
150                 }
151                 evalstring(p);
152         }
153         return exitstatus;
154 }
155
156
157 /*
158  * Execute a command or commands contained in a string.
159  */
160
161 void
162 evalstring(char *s)
163 {
164         union node *n;
165         struct stackmark smark;
166
167         setstackmark(&smark);
168         setinputstring(s, 1);
169         while ((n = parsecmd(0)) != NEOF) {
170                 evaltree(n, 0);
171                 popstackmark(&smark);
172         }
173         popfile();
174         popstackmark(&smark);
175 }
176
177
178
179 /*
180  * Evaluate a parse tree.  The value is left in the global variable
181  * exitstatus.
182  */
183
184 void
185 evaltree(union node *n, int flags)
186 {
187         int do_etest;
188
189         do_etest = 0;
190         if (n == NULL) {
191                 TRACE(("evaltree(NULL) called\n"));
192                 exitstatus = 0;
193                 goto out;
194         }
195 #ifndef NO_HISTORY
196         displayhist = 1;        /* show history substitutions done with fc */
197 #endif
198         TRACE(("evaltree(%p: %d) called\n", (void *)n, n->type));
199         switch (n->type) {
200         case NSEMI:
201                 evaltree(n->nbinary.ch1, flags & ~EV_EXIT);
202                 if (evalskip)
203                         goto out;
204                 evaltree(n->nbinary.ch2, flags);
205                 break;
206         case NAND:
207                 evaltree(n->nbinary.ch1, EV_TESTED);
208                 if (evalskip || exitstatus != 0) {
209                         goto out;
210                 }
211                 evaltree(n->nbinary.ch2, flags);
212                 break;
213         case NOR:
214                 evaltree(n->nbinary.ch1, EV_TESTED);
215                 if (evalskip || exitstatus == 0)
216                         goto out;
217                 evaltree(n->nbinary.ch2, flags);
218                 break;
219         case NREDIR:
220                 expredir(n->nredir.redirect);
221                 redirect(n->nredir.redirect, REDIR_PUSH);
222                 evaltree(n->nredir.n, flags);
223                 popredir();
224                 break;
225         case NSUBSHELL:
226                 evalsubshell(n, flags);
227                 do_etest = !(flags & EV_TESTED);
228                 break;
229         case NBACKGND:
230                 evalsubshell(n, flags);
231                 break;
232         case NIF: {
233                 evaltree(n->nif.test, EV_TESTED);
234                 if (evalskip)
235                         goto out;
236                 if (exitstatus == 0)
237                         evaltree(n->nif.ifpart, flags);
238                 else if (n->nif.elsepart)
239                         evaltree(n->nif.elsepart, flags);
240                 else
241                         exitstatus = 0;
242                 break;
243         }
244         case NWHILE:
245         case NUNTIL:
246                 evalloop(n, flags & ~EV_EXIT);
247                 break;
248         case NFOR:
249                 evalfor(n, flags & ~EV_EXIT);
250                 break;
251         case NCASE:
252                 evalcase(n, flags);
253                 break;
254         case NDEFUN:
255                 defun(n->narg.text, n->narg.next);
256                 exitstatus = 0;
257                 break;
258         case NNOT:
259                 evaltree(n->nnot.com, EV_TESTED);
260                 exitstatus = !exitstatus;
261                 break;
262
263         case NPIPE:
264                 evalpipe(n);
265                 do_etest = !(flags & EV_TESTED);
266                 break;
267         case NCMD:
268                 evalcommand(n, flags, (struct backcmd *)NULL);
269                 do_etest = !(flags & EV_TESTED);
270                 break;
271         default:
272                 out1fmt("Node type = %d\n", n->type);
273                 flushout(&output);
274                 break;
275         }
276 out:
277         if (pendingsigs)
278                 dotrap();
279         if ((flags & EV_EXIT) || (eflag && exitstatus != 0 && do_etest))
280                 exitshell(exitstatus);
281 }
282
283
284 STATIC void
285 evalloop(union node *n, int flags)
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, flags);
310                 status = exitstatus;
311                 if (evalskip)
312                         goto skipping;
313         }
314         loopnest--;
315         exitstatus = status;
316 }
317
318
319
320 STATIC void
321 evalfor(union node *n, int flags)
322 {
323         struct arglist arglist;
324         union node *argp;
325         struct strlist *sp;
326         struct stackmark smark;
327
328         setstackmark(&smark);
329         arglist.lastp = &arglist.list;
330         for (argp = n->nfor.args ; argp ; argp = argp->narg.next) {
331                 oexitstatus = exitstatus;
332                 expandarg(argp, &arglist, EXP_FULL | EXP_TILDE);
333                 if (evalskip)
334                         goto out;
335         }
336         *arglist.lastp = NULL;
337
338         exitstatus = 0;
339         loopnest++;
340         for (sp = arglist.list ; sp ; sp = sp->next) {
341                 setvar(n->nfor.var, sp->text, 0);
342                 evaltree(n->nfor.body, flags);
343                 if (evalskip) {
344                         if (evalskip == SKIPCONT && --skipcount <= 0) {
345                                 evalskip = 0;
346                                 continue;
347                         }
348                         if (evalskip == SKIPBREAK && --skipcount <= 0)
349                                 evalskip = 0;
350                         break;
351                 }
352         }
353         loopnest--;
354 out:
355         popstackmark(&smark);
356 }
357
358
359
360 STATIC void
361 evalcase(union node *n, int flags)
362 {
363         union node *cp;
364         union node *patp;
365         struct arglist arglist;
366         struct stackmark smark;
367
368         setstackmark(&smark);
369         arglist.lastp = &arglist.list;
370         oexitstatus = exitstatus;
371         expandarg(n->ncase.expr, &arglist, EXP_TILDE);
372         for (cp = n->ncase.cases ; cp && evalskip == 0 ; cp = cp->nclist.next) {
373                 for (patp = cp->nclist.pattern ; patp ; patp = patp->narg.next) {
374                         if (casematch(patp, arglist.list->text)) {
375                                 if (evalskip == 0) {
376                                         evaltree(cp->nclist.body, flags);
377                                 }
378                                 goto out;
379                         }
380                 }
381         }
382 out:
383         popstackmark(&smark);
384 }
385
386
387
388 /*
389  * Kick off a subshell to evaluate a tree.
390  */
391
392 STATIC void
393 evalsubshell(union node *n, int flags)
394 {
395         struct job *jp;
396         int backgnd = (n->type == NBACKGND);
397
398         expredir(n->nredir.redirect);
399         jp = makejob(n, 1);
400         if (forkshell(jp, n, backgnd) == 0) {
401                 if (backgnd)
402                         flags &=~ EV_TESTED;
403                 redirect(n->nredir.redirect, 0);
404                 evaltree(n->nredir.n, flags | EV_EXIT); /* never returns */
405         }
406         if (! backgnd) {
407                 INTOFF;
408                 exitstatus = waitforjob(jp, (int *)NULL);
409                 INTON;
410         }
411 }
412
413
414
415 /*
416  * Compute the names of the files in a redirection list.
417  */
418
419 STATIC void
420 expredir(union node *n)
421 {
422         union node *redir;
423
424         for (redir = n ; redir ; redir = redir->nfile.next) {
425                 struct arglist fn;
426                 fn.lastp = &fn.list;
427                 oexitstatus = exitstatus;
428                 switch (redir->type) {
429                 case NFROM:
430                 case NTO:
431                 case NFROMTO:
432                 case NAPPEND:
433                 case NCLOBBER:
434                         expandarg(redir->nfile.fname, &fn, EXP_TILDE | EXP_REDIR);
435                         redir->nfile.expfname = fn.list->text;
436                         break;
437                 case NFROMFD:
438                 case NTOFD:
439                         if (redir->ndup.vname) {
440                                 expandarg(redir->ndup.vname, &fn, EXP_FULL | EXP_TILDE);
441                                 fixredir(redir, fn.list->text, 1);
442                         }
443                         break;
444                 }
445         }
446 }
447
448
449
450 /*
451  * Evaluate a pipeline.  All the processes in the pipeline are children
452  * of the process creating the pipeline.  (This differs from some versions
453  * of the shell, which make the last process in a pipeline the parent
454  * of all the rest.)
455  */
456
457 STATIC void
458 evalpipe(union node *n)
459 {
460         struct job *jp;
461         struct nodelist *lp;
462         int pipelen;
463         int prevfd;
464         int pip[2];
465
466         TRACE(("evalpipe(%p) called\n", (void *)n));
467         pipelen = 0;
468         for (lp = n->npipe.cmdlist ; lp ; lp = lp->next)
469                 pipelen++;
470         INTOFF;
471         jp = makejob(n, pipelen);
472         prevfd = -1;
473         for (lp = n->npipe.cmdlist ; lp ; lp = lp->next) {
474                 prehash(lp->n);
475                 pip[1] = -1;
476                 if (lp->next) {
477                         if (pipe(pip) < 0) {
478                                 if (prevfd >= 0)
479                                         close(prevfd);
480                                 error("Pipe call failed: %s", strerror(errno));
481                         }
482                 }
483                 if (forkshell(jp, lp->n, n->npipe.backgnd) == 0) {
484                         INTON;
485                         if (prevfd > 0) {
486                                 dup2(prevfd, 0);
487                                 close(prevfd);
488                         }
489                         if (pip[1] >= 0) {
490                                 if (!(prevfd >= 0 && pip[0] == 0))
491                                         close(pip[0]);
492                                 if (pip[1] != 1) {
493                                         dup2(pip[1], 1);
494                                         close(pip[1]);
495                                 }
496                         }
497                         evaltree(lp->n, EV_EXIT);
498                 }
499                 if (prevfd >= 0)
500                         close(prevfd);
501                 prevfd = pip[0];
502                 close(pip[1]);
503         }
504         INTON;
505         if (n->npipe.backgnd == 0) {
506                 INTOFF;
507                 exitstatus = waitforjob(jp, (int *)NULL);
508                 TRACE(("evalpipe:  job done exit status %d\n", exitstatus));
509                 INTON;
510         }
511 }
512
513
514
515 /*
516  * Execute a command inside back quotes.  If it's a builtin command, we
517  * want to save its output in a block obtained from malloc.  Otherwise
518  * we fork off a subprocess and get the output of the command via a pipe.
519  * Should be called with interrupts off.
520  */
521
522 void
523 evalbackcmd(union node *n, struct backcmd *result)
524 {
525         int pip[2];
526         struct job *jp;
527         struct stackmark smark;         /* unnecessary */
528
529         setstackmark(&smark);
530         result->fd = -1;
531         result->buf = NULL;
532         result->nleft = 0;
533         result->jp = NULL;
534         if (n == NULL) {
535                 exitstatus = 0;
536                 goto out;
537         }
538         if (n->type == NCMD) {
539                 exitstatus = oexitstatus;
540                 evalcommand(n, EV_BACKCMD, result);
541         } else {
542                 exitstatus = 0;
543                 if (pipe(pip) < 0)
544                         error("Pipe call failed: %s", strerror(errno));
545                 jp = makejob(n, 1);
546                 if (forkshell(jp, n, FORK_NOJOB) == 0) {
547                         FORCEINTON;
548                         close(pip[0]);
549                         if (pip[1] != 1) {
550                                 dup2(pip[1], 1);
551                                 close(pip[1]);
552                         }
553                         evaltree(n, EV_EXIT);
554                 }
555                 close(pip[1]);
556                 result->fd = pip[0];
557                 result->jp = jp;
558         }
559 out:
560         popstackmark(&smark);
561         TRACE(("evalbackcmd done: fd=%d buf=%p nleft=%d jp=%p\n",
562                 result->fd, result->buf, result->nleft, result->jp));
563 }
564
565
566
567 /*
568  * Execute a simple command.
569  */
570
571 STATIC void
572 evalcommand(union node *cmd, int flags, struct backcmd *backcmd)
573 {
574         struct stackmark smark;
575         union node *argp;
576         struct arglist arglist;
577         struct arglist varlist;
578         char **argv;
579         int argc;
580         char **envp;
581         int varflag;
582         struct strlist *sp;
583         int mode;
584         int pip[2];
585         struct cmdentry cmdentry;
586         struct job *jp;
587         struct jmploc jmploc;
588         struct jmploc *volatile savehandler = NULL;
589         const char *volatile savecmdname;
590         volatile struct shparam saveparam;
591         struct localvar *volatile savelocalvars;
592         volatile int e;
593         char *lastarg;
594         int realstatus;
595         int do_clearcmdentry;
596 #if __GNUC__
597         /* Avoid longjmp clobbering */
598         (void) &argv;
599         (void) &argc;
600         (void) &lastarg;
601         (void) &flags;
602         (void) &do_clearcmdentry;
603 #endif
604
605         /* First expand the arguments. */
606         TRACE(("evalcommand(%p, %d) called\n", (void *)cmd, flags));
607         setstackmark(&smark);
608         arglist.lastp = &arglist.list;
609         varlist.lastp = &varlist.list;
610         varflag = 1;
611         do_clearcmdentry = 0;
612         oexitstatus = exitstatus;
613         exitstatus = 0;
614         for (argp = cmd->ncmd.args ; argp ; argp = argp->narg.next) {
615                 char *p = argp->narg.text;
616                 if (varflag && is_name(*p)) {
617                         do {
618                                 p++;
619                         } while (is_in_name(*p));
620                         if (*p == '=') {
621                                 expandarg(argp, &varlist, EXP_VARTILDE);
622                                 continue;
623                         }
624                 }
625                 expandarg(argp, &arglist, EXP_FULL | EXP_TILDE);
626                 varflag = 0;
627         }
628         *arglist.lastp = NULL;
629         *varlist.lastp = NULL;
630         expredir(cmd->ncmd.redirect);
631         argc = 0;
632         for (sp = arglist.list ; sp ; sp = sp->next)
633                 argc++;
634         argv = stalloc(sizeof (char *) * (argc + 1));
635
636         for (sp = arglist.list ; sp ; sp = sp->next) {
637                 TRACE(("evalcommand arg: %s\n", sp->text));
638                 *argv++ = sp->text;
639         }
640         *argv = NULL;
641         lastarg = NULL;
642         if (iflag && funcnest == 0 && argc > 0)
643                 lastarg = argv[-1];
644         argv -= argc;
645
646         /* Print the command if xflag is set. */
647         if (xflag) {
648                 char sep = 0;
649                 out2str(ps4val());
650                 for (sp = varlist.list ; sp ; sp = sp->next) {
651                         if (sep != 0)
652                                 outc(' ', &errout);
653                         out2str(sp->text);
654                         sep = ' ';
655                 }
656                 for (sp = arglist.list ; sp ; sp = sp->next) {
657                         if (sep != 0)
658                                 outc(' ', &errout);
659                         out2str(sp->text);
660                         sep = ' ';
661                 }
662                 outc('\n', &errout);
663                 flushout(&errout);
664         }
665
666         /* Now locate the command. */
667         if (argc == 0) {
668                 /* Variable assignment(s) without command */
669                 cmdentry.cmdtype = CMDBUILTIN;
670                 cmdentry.u.index = BLTINCMD;
671                 cmdentry.special = 1;
672         } else {
673                 static const char PATH[] = "PATH=";
674                 const char *path = pathval();
675
676                 /*
677                  * Modify the command lookup path, if a PATH= assignment
678                  * is present
679                  */
680                 for (sp = varlist.list ; sp ; sp = sp->next)
681                         if (strncmp(sp->text, PATH, sizeof(PATH) - 1) == 0) {
682                                 path = sp->text + sizeof(PATH) - 1;
683                                 /*
684                                  * On `PATH=... command`, we need to make
685                                  * sure that the command isn't using the
686                                  * non-updated hash table of the outer PATH
687                                  * setting and we need to make sure that
688                                  * the hash table isn't filled with items
689                                  * from the temporary setting.
690                                  *
691                                  * It would be better to forbit using and
692                                  * updating the table while this command
693                                  * runs, by the command finding mechanism
694                                  * is heavily integrated with hash handling,
695                                  * so we just delete the hash before and after
696                                  * the command runs. Partly deleting like
697                                  * changepatch() does doesn't seem worth the
698                                  * bookinging effort, since most such runs add
699                                  * directories in front of the new PATH.
700                                  */
701                                 clearcmdentry(0);
702                                 do_clearcmdentry = 1;
703                         }
704
705                 find_command(argv[0], &cmdentry, 1, path);
706                 if (cmdentry.cmdtype == CMDUNKNOWN) {   /* command not found */
707                         exitstatus = 127;
708                         flushout(&errout);
709                         return;
710                 }
711                 /* implement the bltin builtin here */
712                 if (cmdentry.cmdtype == CMDBUILTIN && cmdentry.u.index == BLTINCMD) {
713                         for (;;) {
714                                 argv++;
715                                 if (--argc == 0)
716                                         break;
717                                 if ((cmdentry.u.index = find_builtin(*argv,
718                                     &cmdentry.special)) < 0) {
719                                         outfmt(&errout, "%s: not found\n", *argv);
720                                         exitstatus = 127;
721                                         flushout(&errout);
722                                         return;
723                                 }
724                                 if (cmdentry.u.index != BLTINCMD)
725                                         break;
726                         }
727                 }
728         }
729
730         /* Fork off a child process if necessary. */
731         if (cmd->ncmd.backgnd
732          || (cmdentry.cmdtype == CMDNORMAL
733             && ((flags & EV_EXIT) == 0 || Tflag))
734          || ((flags & EV_BACKCMD) != 0
735             && (cmdentry.cmdtype != CMDBUILTIN
736                  || cmdentry.u.index == CDCMD
737                  || cmdentry.u.index == DOTCMD
738                  || cmdentry.u.index == EVALCMD))
739          || (cmdentry.cmdtype == CMDBUILTIN &&
740             cmdentry.u.index == COMMANDCMD)) {
741                 jp = makejob(cmd, 1);
742                 mode = cmd->ncmd.backgnd;
743                 if (flags & EV_BACKCMD) {
744                         mode = FORK_NOJOB;
745                         if (pipe(pip) < 0)
746                                 error("Pipe call failed: %s", strerror(errno));
747                 }
748                 if (forkshell(jp, cmd, mode) != 0)
749                         goto parent;    /* at end of routine */
750                 if (flags & EV_BACKCMD) {
751                         FORCEINTON;
752                         close(pip[0]);
753                         if (pip[1] != 1) {
754                                 dup2(pip[1], 1);
755                                 close(pip[1]);
756                         }
757                 }
758                 flags |= EV_EXIT;
759         }
760
761         /* This is the child process if a fork occurred. */
762         /* Execute the command. */
763         if (cmdentry.cmdtype == CMDFUNCTION) {
764 #ifdef DEBUG
765                 trputs("Shell function:  ");  trargs(argv);
766 #endif
767                 redirect(cmd->ncmd.redirect, REDIR_PUSH);
768                 saveparam = shellparam;
769                 shellparam.malloc = 0;
770                 shellparam.reset = 1;
771                 shellparam.nparam = argc - 1;
772                 shellparam.p = argv + 1;
773                 shellparam.optnext = NULL;
774                 INTOFF;
775                 savelocalvars = localvars;
776                 localvars = NULL;
777                 INTON;
778                 if (setjmp(jmploc.loc)) {
779                         if (exception == EXSHELLPROC)
780                                 freeparam(&saveparam);
781                         else {
782                                 freeparam(&shellparam);
783                                 shellparam = saveparam;
784                         }
785                         poplocalvars();
786                         localvars = savelocalvars;
787                         handler = savehandler;
788                         longjmp(handler->loc, 1);
789                 }
790                 savehandler = handler;
791                 handler = &jmploc;
792                 for (sp = varlist.list ; sp ; sp = sp->next)
793                         mklocal(sp->text);
794                 funcnest++;
795                 if (flags & EV_TESTED)
796                         evaltree(cmdentry.u.func, EV_TESTED);
797                 else
798                         evaltree(cmdentry.u.func, 0);
799                 funcnest--;
800                 INTOFF;
801                 poplocalvars();
802                 localvars = savelocalvars;
803                 freeparam(&shellparam);
804                 shellparam = saveparam;
805                 handler = savehandler;
806                 popredir();
807                 INTON;
808                 if (evalskip == SKIPFUNC) {
809                         evalskip = 0;
810                         skipcount = 0;
811                 }
812                 if (flags & EV_EXIT)
813                         exitshell(exitstatus);
814         } else if (cmdentry.cmdtype == CMDBUILTIN) {
815 #ifdef DEBUG
816                 trputs("builtin command:  ");  trargs(argv);
817 #endif
818                 mode = (cmdentry.u.index == EXECCMD)? 0 : REDIR_PUSH;
819                 if (flags == EV_BACKCMD) {
820                         memout.nleft = 0;
821                         memout.nextc = memout.buf;
822                         memout.bufsize = 64;
823                         mode |= REDIR_BACKQ;
824                 }
825                 savecmdname = commandname;
826                 cmdenviron = varlist.list;
827                 e = -1;
828                 if (setjmp(jmploc.loc)) {
829                         e = exception;
830                         exitstatus = (e == EXINT)? SIGINT+128 : 2;
831                         goto cmddone;
832                 }
833                 savehandler = handler;
834                 handler = &jmploc;
835                 redirect(cmd->ncmd.redirect, mode);
836                 if (cmdentry.special)
837                         listsetvar(cmdenviron);
838                 commandname = argv[0];
839                 argptr = argv + 1;
840                 optptr = NULL;                  /* initialize nextopt */
841                 exitstatus = (*builtinfunc[cmdentry.u.index])(argc, argv);
842                 flushall();
843 cmddone:
844                 cmdenviron = NULL;
845                 out1 = &output;
846                 out2 = &errout;
847                 freestdout();
848                 if (e != EXSHELLPROC) {
849                         commandname = savecmdname;
850                         if (flags & EV_EXIT) {
851                                 exitshell(exitstatus);
852                         }
853                 }
854                 handler = savehandler;
855                 if (e != -1) {
856                         if ((e != EXERROR && e != EXEXEC)
857                             || cmdentry.special)
858                                 exraise(e);
859                         FORCEINTON;
860                 }
861                 if (cmdentry.u.index != EXECCMD)
862                         popredir();
863                 if (flags == EV_BACKCMD) {
864                         backcmd->buf = memout.buf;
865                         backcmd->nleft = memout.nextc - memout.buf;
866                         memout.buf = NULL;
867                 }
868         } else {
869 #ifdef DEBUG
870                 trputs("normal command:  ");  trargs(argv);
871 #endif
872                 clearredir();
873                 redirect(cmd->ncmd.redirect, 0);
874                 for (sp = varlist.list ; sp ; sp = sp->next)
875                         setvareq(sp->text, VEXPORT|VSTACK);
876                 envp = environment();
877                 shellexec(argv, envp, pathval(), cmdentry.u.index);
878                 /*NOTREACHED*/
879         }
880         goto out;
881
882 parent: /* parent process gets here (if we forked) */
883         if (mode == 0) {        /* argument to fork */
884                 INTOFF;
885                 exitstatus = waitforjob(jp, &realstatus);
886                 INTON;
887                 if (iflag && loopnest > 0 && WIFSIGNALED(realstatus)) {
888                         evalskip = SKIPBREAK;
889                         skipcount = loopnest;
890                 }
891         } else if (mode == 2) {
892                 backcmd->fd = pip[0];
893                 close(pip[1]);
894                 backcmd->jp = jp;
895         }
896
897 out:
898         if (lastarg)
899                 setvar("_", lastarg, 0);
900         if (do_clearcmdentry)
901                 clearcmdentry(0);
902         popstackmark(&smark);
903 }
904
905
906
907 /*
908  * Search for a command.  This is called before we fork so that the
909  * location of the command will be available in the parent as well as
910  * the child.  The check for "goodname" is an overly conservative
911  * check that the name will not be subject to expansion.
912  */
913
914 STATIC void
915 prehash(union node *n)
916 {
917         struct cmdentry entry;
918
919         if (n && n->type == NCMD && n->ncmd.args)
920                 if (goodname(n->ncmd.args->narg.text))
921                         find_command(n->ncmd.args->narg.text, &entry, 0,
922                                      pathval());
923 }
924
925
926
927 /*
928  * Builtin commands.  Builtin commands whose functions are closely
929  * tied to evaluation are implemented here.
930  */
931
932 /*
933  * No command given, or a bltin command with no arguments.
934  */
935
936 int
937 bltincmd(int argc __unused, char **argv __unused)
938 {
939         /*
940          * Preserve exitstatus of a previous possible redirection
941          * as POSIX mandates
942          */
943         return exitstatus;
944 }
945
946
947 /*
948  * Handle break and continue commands.  Break, continue, and return are
949  * all handled by setting the evalskip flag.  The evaluation routines
950  * above all check this flag, and if it is set they start skipping
951  * commands rather than executing them.  The variable skipcount is
952  * the number of loops to break/continue, or the number of function
953  * levels to return.  (The latter is always 1.)  It should probably
954  * be an error to break out of more loops than exist, but it isn't
955  * in the standard shell so we don't make it one here.
956  */
957
958 int
959 breakcmd(int argc, char **argv)
960 {
961         int n = argc > 1 ? number(argv[1]) : 1;
962
963         if (n > loopnest)
964                 n = loopnest;
965         if (n > 0) {
966                 evalskip = (**argv == 'c')? SKIPCONT : SKIPBREAK;
967                 skipcount = n;
968         }
969         return 0;
970 }
971
972 /*
973  * The `command' command.
974  */
975 int
976 commandcmd(int argc, char **argv)
977 {
978         static char stdpath[] = _PATH_STDPATH;
979         struct jmploc loc, *old;
980         struct strlist *sp;
981         const char *path;
982         int ch;
983         int cmd = -1;
984
985 #ifdef __GNUC__
986         /* Avoid longjmp clobbering */
987         (void) &path;
988         (void) &argc;
989         (void) &argv;
990 #endif
991
992         for (sp = cmdenviron; sp ; sp = sp->next)
993                 setvareq(sp->text, VEXPORT|VSTACK);
994         path = pathval();
995
996         optind = optreset = 1;
997         opterr = 0;
998         while ((ch = getopt(argc, argv, "pvV")) != -1) {
999                 switch (ch) {
1000                 case 'p':
1001                         path = stdpath;
1002                         break;
1003                 case 'v':
1004                         cmd = TYPECMD_SMALLV;
1005                         break;
1006                 case 'V':
1007                         cmd = TYPECMD_BIGV;
1008                         break;
1009                 case '?':
1010                 default:
1011                         error("unknown option: -%c", optopt);
1012                 }
1013         }
1014         argc -= optind;
1015         argv += optind;
1016
1017         if (cmd != -1) {
1018                 if (argc != 1)
1019                         error("wrong number of arguments");
1020                 return typecmd_impl(2, argv - 1, cmd);
1021         }
1022         if (argc != 0) {
1023                 old = handler;
1024                 handler = &loc;
1025                 if (setjmp(handler->loc) == 0)
1026                         shellexec(argv, environment(), path, 0);
1027                 handler = old;
1028                 if (exception == EXEXEC)
1029                         exit(exerrno);
1030                 exraise(exception);
1031         }
1032
1033         /*
1034          * Do nothing successfully if no command was specified;
1035          * ksh also does this.
1036          */
1037         exit(0);
1038 }
1039
1040
1041 /*
1042  * The return command.
1043  */
1044
1045 int
1046 returncmd(int argc, char **argv)
1047 {
1048         int ret = argc > 1 ? number(argv[1]) : oexitstatus;
1049
1050         if (funcnest) {
1051                 evalskip = SKIPFUNC;
1052                 skipcount = 1;
1053         } else {
1054                 /* skip the rest of the file */
1055                 evalskip = SKIPFILE;
1056                 skipcount = 1;
1057         }
1058         return ret;
1059 }
1060
1061
1062 int
1063 falsecmd(int argc __unused, char **argv __unused)
1064 {
1065         return 1;
1066 }
1067
1068
1069 int
1070 truecmd(int argc __unused, char **argv __unused)
1071 {
1072         return 0;
1073 }
1074
1075
1076 int
1077 execcmd(int argc, char **argv)
1078 {
1079         if (argc > 1) {
1080                 struct strlist *sp;
1081
1082                 iflag = 0;              /* exit on error */
1083                 mflag = 0;
1084                 optschanged();
1085                 for (sp = cmdenviron; sp ; sp = sp->next)
1086                         setvareq(sp->text, VEXPORT|VSTACK);
1087                 shellexec(argv + 1, environment(), pathval(), 0);
1088
1089         }
1090         return 0;
1091 }
1092
1093
1094 int
1095 timescmd(int argc __unused, char **argv __unused)
1096 {
1097         struct rusage ru;
1098         long shumins, shsmins, chumins, chsmins;
1099         double shusecs, shssecs, chusecs, chssecs;
1100
1101         if (getrusage(RUSAGE_SELF, &ru) < 0)
1102                 return 1;
1103         shumins = ru.ru_utime.tv_sec / 60;
1104         shusecs = ru.ru_utime.tv_sec % 60 + ru.ru_utime.tv_usec / 1000000.;
1105         shsmins = ru.ru_stime.tv_sec / 60;
1106         shssecs = ru.ru_stime.tv_sec % 60 + ru.ru_stime.tv_usec / 1000000.;
1107         if (getrusage(RUSAGE_CHILDREN, &ru) < 0)
1108                 return 1;
1109         chumins = ru.ru_utime.tv_sec / 60;
1110         chusecs = ru.ru_utime.tv_sec % 60 + ru.ru_utime.tv_usec / 1000000.;
1111         chsmins = ru.ru_stime.tv_sec / 60;
1112         chssecs = ru.ru_stime.tv_sec % 60 + ru.ru_stime.tv_usec / 1000000.;
1113         out1fmt("%ldm%.3fs %ldm%.3fs\n%ldm%.3fs %ldm%.3fs\n", shumins,
1114             shusecs, shsmins, shssecs, chumins, chusecs, chsmins, chssecs);
1115         return 0;
1116 }