fix a few goofs uncovered by "make allnoconfig" testing
[oweals/busybox.git] / shell / ash.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * ash shell port for busybox
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Kenneth Almquist.
7  *
8  * Original BSD copyright notice is retained at the end of this file.
9  *
10  * Copyright (c) 1989, 1991, 1993, 1994
11  *      The Regents of the University of California.  All rights reserved.
12  *
13  * Copyright (c) 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>
14  * was re-ported from NetBSD and debianized.
15  *
16  * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
17  */
18
19 /*
20  * The following should be set to reflect the type of system you have:
21  *      JOBS -> 1 if you have Berkeley job control, 0 otherwise.
22  *      define SYSV if you are running under System V.
23  *      define DEBUG=1 to compile in debugging ('set -o debug' to turn on)
24  *      define DEBUG=2 to compile in and turn on debugging.
25  *
26  * When debugging is on, debugging info will be written to ./trace and
27  * a quit signal will generate a core dump.
28  */
29 #define DEBUG 0
30 /* Tweak debug output verbosity here */
31 #define DEBUG_TIME 0
32 #define DEBUG_PID 1
33 #define DEBUG_SIG 1
34
35 #define PROFILE 0
36
37 #define JOBS ENABLE_ASH_JOB_CONTROL
38
39 #if DEBUG
40 # ifndef _GNU_SOURCE
41 #  define _GNU_SOURCE
42 # endif
43 #endif
44
45 #include "busybox.h" /* for applet_names */
46 #include <paths.h>
47 #include <setjmp.h>
48 #include <fnmatch.h>
49
50 #include "shell_common.h"
51 #include "math.h"
52 #if ENABLE_ASH_RANDOM_SUPPORT
53 # include "random.h"
54 #else
55 # define CLEAR_RANDOM_T(rnd) ((void)0)
56 #endif
57
58 #define SKIP_definitions 1
59 #include "applet_tables.h"
60 #undef SKIP_definitions
61 #if NUM_APPLETS == 1
62 /* STANDALONE does not make sense, and won't compile */
63 # undef CONFIG_FEATURE_SH_STANDALONE
64 # undef ENABLE_FEATURE_SH_STANDALONE
65 # undef IF_FEATURE_SH_STANDALONE
66 # undef IF_NOT_FEATURE_SH_STANDALONE
67 # define ENABLE_FEATURE_SH_STANDALONE 0
68 # define IF_FEATURE_SH_STANDALONE(...)
69 # define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__
70 #endif
71
72 #ifndef PIPE_BUF
73 # define PIPE_BUF 4096           /* amount of buffering in a pipe */
74 #endif
75
76 #if !BB_MMU
77 # error "Do not even bother, ash will not run on NOMMU machine"
78 #endif
79
80
81 /* ============ Hash table sizes. Configurable. */
82
83 #define VTABSIZE 39
84 #define ATABSIZE 39
85 #define CMDTABLESIZE 31         /* should be prime */
86
87
88 /* ============ Shell options */
89
90 static const char *const optletters_optnames[] = {
91         "e"   "errexit",
92         "f"   "noglob",
93         "I"   "ignoreeof",
94         "i"   "interactive",
95         "m"   "monitor",
96         "n"   "noexec",
97         "s"   "stdin",
98         "x"   "xtrace",
99         "v"   "verbose",
100         "C"   "noclobber",
101         "a"   "allexport",
102         "b"   "notify",
103         "u"   "nounset",
104         "\0"  "vi"
105 #if ENABLE_ASH_BASH_COMPAT
106         ,"\0"  "pipefail"
107 #endif
108 #if DEBUG
109         ,"\0"  "nolog"
110         ,"\0"  "debug"
111 #endif
112 };
113
114 #define optletters(n)  optletters_optnames[n][0]
115 #define optnames(n)   (optletters_optnames[n] + 1)
116
117 enum { NOPTS = ARRAY_SIZE(optletters_optnames) };
118
119
120 /* ============ Misc data */
121
122 #define msg_illnum "Illegal number: %s"
123
124 /*
125  * We enclose jmp_buf in a structure so that we can declare pointers to
126  * jump locations.  The global variable handler contains the location to
127  * jump to when an exception occurs, and the global variable exception_type
128  * contains a code identifying the exception.  To implement nested
129  * exception handlers, the user should save the value of handler on entry
130  * to an inner scope, set handler to point to a jmploc structure for the
131  * inner scope, and restore handler on exit from the scope.
132  */
133 struct jmploc {
134         jmp_buf loc;
135 };
136
137 struct globals_misc {
138         /* pid of main shell */
139         int rootpid;
140         /* shell level: 0 for the main shell, 1 for its children, and so on */
141         int shlvl;
142 #define rootshell (!shlvl)
143         char *minusc;  /* argument to -c option */
144
145         char *curdir; // = nullstr;     /* current working directory */
146         char *physdir; // = nullstr;    /* physical working directory */
147
148         char *arg0; /* value of $0 */
149
150         struct jmploc *exception_handler;
151
152         volatile int suppress_int; /* counter */
153         volatile /*sig_atomic_t*/ smallint pending_int; /* 1 = got SIGINT */
154         /* last pending signal */
155         volatile /*sig_atomic_t*/ smallint pending_sig;
156         smallint exception_type; /* kind of exception (0..5) */
157         /* exceptions */
158 #define EXINT 0         /* SIGINT received */
159 #define EXERROR 1       /* a generic error */
160 #define EXSHELLPROC 2   /* execute a shell procedure */
161 #define EXEXEC 3        /* command execution failed */
162 #define EXEXIT 4        /* exit the shell */
163 #define EXSIG 5         /* trapped signal in wait(1) */
164
165         smallint isloginsh;
166         char nullstr[1];        /* zero length string */
167
168         char optlist[NOPTS];
169 #define eflag optlist[0]
170 #define fflag optlist[1]
171 #define Iflag optlist[2]
172 #define iflag optlist[3]
173 #define mflag optlist[4]
174 #define nflag optlist[5]
175 #define sflag optlist[6]
176 #define xflag optlist[7]
177 #define vflag optlist[8]
178 #define Cflag optlist[9]
179 #define aflag optlist[10]
180 #define bflag optlist[11]
181 #define uflag optlist[12]
182 #define viflag optlist[13]
183 #if ENABLE_ASH_BASH_COMPAT
184 # define pipefail optlist[14]
185 #else
186 # define pipefail 0
187 #endif
188 #if DEBUG
189 # define nolog optlist[14 + ENABLE_ASH_BASH_COMPAT]
190 # define debug optlist[15 + ENABLE_ASH_BASH_COMPAT]
191 #endif
192
193         /* trap handler commands */
194         /*
195          * Sigmode records the current value of the signal handlers for the various
196          * modes.  A value of zero means that the current handler is not known.
197          * S_HARD_IGN indicates that the signal was ignored on entry to the shell.
198          */
199         char sigmode[NSIG - 1];
200 #define S_DFL      1            /* default signal handling (SIG_DFL) */
201 #define S_CATCH    2            /* signal is caught */
202 #define S_IGN      3            /* signal is ignored (SIG_IGN) */
203 #define S_HARD_IGN 4            /* signal is ignored permenantly */
204
205         /* indicates specified signal received */
206         uint8_t gotsig[NSIG - 1]; /* offset by 1: "signal" 0 is meaningless */
207         uint8_t may_have_traps; /* 0: definitely no traps are set, 1: some traps may be set */
208         char *trap[NSIG];
209         char **trap_ptr;        /* used only by "trap hack" */
210
211         /* Rarely referenced stuff */
212 #if ENABLE_ASH_RANDOM_SUPPORT
213         random_t random_gen;
214 #endif
215         pid_t backgndpid;        /* pid of last background process */
216         smallint job_warning;    /* user was warned about stopped jobs (can be 2, 1 or 0). */
217 };
218 extern struct globals_misc *const ash_ptr_to_globals_misc;
219 #define G_misc (*ash_ptr_to_globals_misc)
220 #define rootpid     (G_misc.rootpid    )
221 #define shlvl       (G_misc.shlvl      )
222 #define minusc      (G_misc.minusc     )
223 #define curdir      (G_misc.curdir     )
224 #define physdir     (G_misc.physdir    )
225 #define arg0        (G_misc.arg0       )
226 #define exception_handler (G_misc.exception_handler)
227 #define exception_type    (G_misc.exception_type   )
228 #define suppress_int      (G_misc.suppress_int     )
229 #define pending_int       (G_misc.pending_int      )
230 #define pending_sig       (G_misc.pending_sig      )
231 #define isloginsh   (G_misc.isloginsh  )
232 #define nullstr     (G_misc.nullstr    )
233 #define optlist     (G_misc.optlist    )
234 #define sigmode     (G_misc.sigmode    )
235 #define gotsig      (G_misc.gotsig     )
236 #define may_have_traps    (G_misc.may_have_traps   )
237 #define trap        (G_misc.trap       )
238 #define trap_ptr    (G_misc.trap_ptr   )
239 #define random_gen  (G_misc.random_gen )
240 #define backgndpid  (G_misc.backgndpid )
241 #define job_warning (G_misc.job_warning)
242 #define INIT_G_misc() do { \
243         (*(struct globals_misc**)&ash_ptr_to_globals_misc) = xzalloc(sizeof(G_misc)); \
244         barrier(); \
245         curdir = nullstr; \
246         physdir = nullstr; \
247         trap_ptr = trap; \
248 } while (0)
249
250
251 /* ============ DEBUG */
252 #if DEBUG
253 static void trace_printf(const char *fmt, ...);
254 static void trace_vprintf(const char *fmt, va_list va);
255 # define TRACE(param)    trace_printf param
256 # define TRACEV(param)   trace_vprintf param
257 # define close(fd) do { \
258         int dfd = (fd); \
259         if (close(dfd) < 0) \
260                 bb_error_msg("bug on %d: closing %d(0x%x)", \
261                         __LINE__, dfd, dfd); \
262 } while (0)
263 #else
264 # define TRACE(param)
265 # define TRACEV(param)
266 #endif
267
268
269 /* ============ Utility functions */
270 #define xbarrier() do { __asm__ __volatile__ ("": : :"memory"); } while (0)
271
272 static int isdigit_str9(const char *str)
273 {
274         int maxlen = 9 + 1; /* max 9 digits: 999999999 */
275         while (--maxlen && isdigit(*str))
276                 str++;
277         return (*str == '\0');
278 }
279
280 static const char *var_end(const char *var)
281 {
282         while (*var)
283                 if (*var++ == '=')
284                         break;
285         return var;
286 }
287
288
289 /* ============ Interrupts / exceptions */
290 /*
291  * These macros allow the user to suspend the handling of interrupt signals
292  * over a period of time.  This is similar to SIGHOLD or to sigblock, but
293  * much more efficient and portable.  (But hacking the kernel is so much
294  * more fun than worrying about efficiency and portability. :-))
295  */
296 #define INT_OFF do { \
297         suppress_int++; \
298         xbarrier(); \
299 } while (0)
300
301 /*
302  * Called to raise an exception.  Since C doesn't include exceptions, we
303  * just do a longjmp to the exception handler.  The type of exception is
304  * stored in the global variable "exception_type".
305  */
306 static void raise_exception(int) NORETURN;
307 static void
308 raise_exception(int e)
309 {
310 #if DEBUG
311         if (exception_handler == NULL)
312                 abort();
313 #endif
314         INT_OFF;
315         exception_type = e;
316         longjmp(exception_handler->loc, 1);
317 }
318 #if DEBUG
319 #define raise_exception(e) do { \
320         TRACE(("raising exception %d on line %d\n", (e), __LINE__)); \
321         raise_exception(e); \
322 } while (0)
323 #endif
324
325 /*
326  * Called from trap.c when a SIGINT is received.  (If the user specifies
327  * that SIGINT is to be trapped or ignored using the trap builtin, then
328  * this routine is not called.)  Suppressint is nonzero when interrupts
329  * are held using the INT_OFF macro.  (The test for iflag is just
330  * defensive programming.)
331  */
332 static void raise_interrupt(void) NORETURN;
333 static void
334 raise_interrupt(void)
335 {
336         int ex_type;
337
338         pending_int = 0;
339         /* Signal is not automatically unmasked after it is raised,
340          * do it ourself - unmask all signals */
341         sigprocmask_allsigs(SIG_UNBLOCK);
342         /* pending_sig = 0; - now done in signal_handler() */
343
344         ex_type = EXSIG;
345         if (gotsig[SIGINT - 1] && !trap[SIGINT]) {
346                 if (!(rootshell && iflag)) {
347                         /* Kill ourself with SIGINT */
348                         signal(SIGINT, SIG_DFL);
349                         raise(SIGINT);
350                 }
351                 ex_type = EXINT;
352         }
353         raise_exception(ex_type);
354         /* NOTREACHED */
355 }
356 #if DEBUG
357 #define raise_interrupt() do { \
358         TRACE(("raising interrupt on line %d\n", __LINE__)); \
359         raise_interrupt(); \
360 } while (0)
361 #endif
362
363 static IF_ASH_OPTIMIZE_FOR_SIZE(inline) void
364 int_on(void)
365 {
366         xbarrier();
367         if (--suppress_int == 0 && pending_int) {
368                 raise_interrupt();
369         }
370 }
371 #define INT_ON int_on()
372 static IF_ASH_OPTIMIZE_FOR_SIZE(inline) void
373 force_int_on(void)
374 {
375         xbarrier();
376         suppress_int = 0;
377         if (pending_int)
378                 raise_interrupt();
379 }
380 #define FORCE_INT_ON force_int_on()
381
382 #define SAVE_INT(v) ((v) = suppress_int)
383
384 #define RESTORE_INT(v) do { \
385         xbarrier(); \
386         suppress_int = (v); \
387         if (suppress_int == 0 && pending_int) \
388                 raise_interrupt(); \
389 } while (0)
390
391
392 /* ============ Stdout/stderr output */
393
394 static void
395 outstr(const char *p, FILE *file)
396 {
397         INT_OFF;
398         fputs(p, file);
399         INT_ON;
400 }
401
402 static void
403 flush_stdout_stderr(void)
404 {
405         INT_OFF;
406         fflush_all();
407         INT_ON;
408 }
409
410 static void
411 outcslow(int c, FILE *dest)
412 {
413         INT_OFF;
414         putc(c, dest);
415         fflush(dest);
416         INT_ON;
417 }
418
419 static int out1fmt(const char *, ...) __attribute__((__format__(__printf__,1,2)));
420 static int
421 out1fmt(const char *fmt, ...)
422 {
423         va_list ap;
424         int r;
425
426         INT_OFF;
427         va_start(ap, fmt);
428         r = vprintf(fmt, ap);
429         va_end(ap);
430         INT_ON;
431         return r;
432 }
433
434 static int fmtstr(char *, size_t, const char *, ...) __attribute__((__format__(__printf__,3,4)));
435 static int
436 fmtstr(char *outbuf, size_t length, const char *fmt, ...)
437 {
438         va_list ap;
439         int ret;
440
441         va_start(ap, fmt);
442         INT_OFF;
443         ret = vsnprintf(outbuf, length, fmt, ap);
444         va_end(ap);
445         INT_ON;
446         return ret;
447 }
448
449 static void
450 out1str(const char *p)
451 {
452         outstr(p, stdout);
453 }
454
455 static void
456 out2str(const char *p)
457 {
458         outstr(p, stderr);
459         flush_stdout_stderr();
460 }
461
462
463 /* ============ Parser structures */
464
465 /* control characters in argument strings */
466 #define CTL_FIRST CTLESC
467 #define CTLESC       ((unsigned char)'\201')    /* escape next character */
468 #define CTLVAR       ((unsigned char)'\202')    /* variable defn */
469 #define CTLENDVAR    ((unsigned char)'\203')
470 #define CTLBACKQ     ((unsigned char)'\204')
471 #define CTLQUOTE 01             /* ored with CTLBACKQ code if in quotes */
472 /*      CTLBACKQ | CTLQUOTE == '\205' */
473 #define CTLARI       ((unsigned char)'\206')    /* arithmetic expression */
474 #define CTLENDARI    ((unsigned char)'\207')
475 #define CTLQUOTEMARK ((unsigned char)'\210')
476 #define CTL_LAST CTLQUOTEMARK
477
478 /* variable substitution byte (follows CTLVAR) */
479 #define VSTYPE  0x0f            /* type of variable substitution */
480 #define VSNUL   0x10            /* colon--treat the empty string as unset */
481 #define VSQUOTE 0x80            /* inside double quotes--suppress splitting */
482
483 /* values of VSTYPE field */
484 #define VSNORMAL        0x1     /* normal variable:  $var or ${var} */
485 #define VSMINUS         0x2     /* ${var-text} */
486 #define VSPLUS          0x3     /* ${var+text} */
487 #define VSQUESTION      0x4     /* ${var?message} */
488 #define VSASSIGN        0x5     /* ${var=text} */
489 #define VSTRIMRIGHT     0x6     /* ${var%pattern} */
490 #define VSTRIMRIGHTMAX  0x7     /* ${var%%pattern} */
491 #define VSTRIMLEFT      0x8     /* ${var#pattern} */
492 #define VSTRIMLEFTMAX   0x9     /* ${var##pattern} */
493 #define VSLENGTH        0xa     /* ${#var} */
494 #if ENABLE_ASH_BASH_COMPAT
495 #define VSSUBSTR        0xc     /* ${var:position:length} */
496 #define VSREPLACE       0xd     /* ${var/pattern/replacement} */
497 #define VSREPLACEALL    0xe     /* ${var//pattern/replacement} */
498 #endif
499
500 static const char dolatstr[] ALIGN1 = {
501         CTLVAR, VSNORMAL|VSQUOTE, '@', '=', '\0'
502 };
503
504 #define NCMD      0
505 #define NPIPE     1
506 #define NREDIR    2
507 #define NBACKGND  3
508 #define NSUBSHELL 4
509 #define NAND      5
510 #define NOR       6
511 #define NSEMI     7
512 #define NIF       8
513 #define NWHILE    9
514 #define NUNTIL   10
515 #define NFOR     11
516 #define NCASE    12
517 #define NCLIST   13
518 #define NDEFUN   14
519 #define NARG     15
520 #define NTO      16
521 #if ENABLE_ASH_BASH_COMPAT
522 #define NTO2     17
523 #endif
524 #define NCLOBBER 18
525 #define NFROM    19
526 #define NFROMTO  20
527 #define NAPPEND  21
528 #define NTOFD    22
529 #define NFROMFD  23
530 #define NHERE    24
531 #define NXHERE   25
532 #define NNOT     26
533 #define N_NUMBER 27
534
535 union node;
536
537 struct ncmd {
538         smallint type; /* Nxxxx */
539         union node *assign;
540         union node *args;
541         union node *redirect;
542 };
543
544 struct npipe {
545         smallint type;
546         smallint pipe_backgnd;
547         struct nodelist *cmdlist;
548 };
549
550 struct nredir {
551         smallint type;
552         union node *n;
553         union node *redirect;
554 };
555
556 struct nbinary {
557         smallint type;
558         union node *ch1;
559         union node *ch2;
560 };
561
562 struct nif {
563         smallint type;
564         union node *test;
565         union node *ifpart;
566         union node *elsepart;
567 };
568
569 struct nfor {
570         smallint type;
571         union node *args;
572         union node *body;
573         char *var;
574 };
575
576 struct ncase {
577         smallint type;
578         union node *expr;
579         union node *cases;
580 };
581
582 struct nclist {
583         smallint type;
584         union node *next;
585         union node *pattern;
586         union node *body;
587 };
588
589 struct narg {
590         smallint type;
591         union node *next;
592         char *text;
593         struct nodelist *backquote;
594 };
595
596 /* nfile and ndup layout must match!
597  * NTOFD (>&fdnum) uses ndup structure, but we may discover mid-flight
598  * that it is actually NTO2 (>&file), and change its type.
599  */
600 struct nfile {
601         smallint type;
602         union node *next;
603         int fd;
604         int _unused_dupfd;
605         union node *fname;
606         char *expfname;
607 };
608
609 struct ndup {
610         smallint type;
611         union node *next;
612         int fd;
613         int dupfd;
614         union node *vname;
615         char *_unused_expfname;
616 };
617
618 struct nhere {
619         smallint type;
620         union node *next;
621         int fd;
622         union node *doc;
623 };
624
625 struct nnot {
626         smallint type;
627         union node *com;
628 };
629
630 union node {
631         smallint type;
632         struct ncmd ncmd;
633         struct npipe npipe;
634         struct nredir nredir;
635         struct nbinary nbinary;
636         struct nif nif;
637         struct nfor nfor;
638         struct ncase ncase;
639         struct nclist nclist;
640         struct narg narg;
641         struct nfile nfile;
642         struct ndup ndup;
643         struct nhere nhere;
644         struct nnot nnot;
645 };
646
647 /*
648  * NODE_EOF is returned by parsecmd when it encounters an end of file.
649  * It must be distinct from NULL.
650  */
651 #define NODE_EOF ((union node *) -1L)
652
653 struct nodelist {
654         struct nodelist *next;
655         union node *n;
656 };
657
658 struct funcnode {
659         int count;
660         union node n;
661 };
662
663 /*
664  * Free a parse tree.
665  */
666 static void
667 freefunc(struct funcnode *f)
668 {
669         if (f && --f->count < 0)
670                 free(f);
671 }
672
673
674 /* ============ Debugging output */
675
676 #if DEBUG
677
678 static FILE *tracefile;
679
680 static void
681 trace_printf(const char *fmt, ...)
682 {
683         va_list va;
684
685         if (debug != 1)
686                 return;
687         if (DEBUG_TIME)
688                 fprintf(tracefile, "%u ", (int) time(NULL));
689         if (DEBUG_PID)
690                 fprintf(tracefile, "[%u] ", (int) getpid());
691         if (DEBUG_SIG)
692                 fprintf(tracefile, "pending s:%d i:%d(supp:%d) ", pending_sig, pending_int, suppress_int);
693         va_start(va, fmt);
694         vfprintf(tracefile, fmt, va);
695         va_end(va);
696 }
697
698 static void
699 trace_vprintf(const char *fmt, va_list va)
700 {
701         if (debug != 1)
702                 return;
703         if (DEBUG_TIME)
704                 fprintf(tracefile, "%u ", (int) time(NULL));
705         if (DEBUG_PID)
706                 fprintf(tracefile, "[%u] ", (int) getpid());
707         if (DEBUG_SIG)
708                 fprintf(tracefile, "pending s:%d i:%d(supp:%d) ", pending_sig, pending_int, suppress_int);
709         vfprintf(tracefile, fmt, va);
710 }
711
712 static void
713 trace_puts(const char *s)
714 {
715         if (debug != 1)
716                 return;
717         fputs(s, tracefile);
718 }
719
720 static void
721 trace_puts_quoted(char *s)
722 {
723         char *p;
724         char c;
725
726         if (debug != 1)
727                 return;
728         putc('"', tracefile);
729         for (p = s; *p; p++) {
730                 switch ((unsigned char)*p) {
731                 case '\n': c = 'n'; goto backslash;
732                 case '\t': c = 't'; goto backslash;
733                 case '\r': c = 'r'; goto backslash;
734                 case '\"': c = '\"'; goto backslash;
735                 case '\\': c = '\\'; goto backslash;
736                 case CTLESC: c = 'e'; goto backslash;
737                 case CTLVAR: c = 'v'; goto backslash;
738                 case CTLVAR+CTLQUOTE: c = 'V'; goto backslash;
739                 case CTLBACKQ: c = 'q'; goto backslash;
740                 case CTLBACKQ+CTLQUOTE: c = 'Q'; goto backslash;
741  backslash:
742                         putc('\\', tracefile);
743                         putc(c, tracefile);
744                         break;
745                 default:
746                         if (*p >= ' ' && *p <= '~')
747                                 putc(*p, tracefile);
748                         else {
749                                 putc('\\', tracefile);
750                                 putc((*p >> 6) & 03, tracefile);
751                                 putc((*p >> 3) & 07, tracefile);
752                                 putc(*p & 07, tracefile);
753                         }
754                         break;
755                 }
756         }
757         putc('"', tracefile);
758 }
759
760 static void
761 trace_puts_args(char **ap)
762 {
763         if (debug != 1)
764                 return;
765         if (!*ap)
766                 return;
767         while (1) {
768                 trace_puts_quoted(*ap);
769                 if (!*++ap) {
770                         putc('\n', tracefile);
771                         break;
772                 }
773                 putc(' ', tracefile);
774         }
775 }
776
777 static void
778 opentrace(void)
779 {
780         char s[100];
781 #ifdef O_APPEND
782         int flags;
783 #endif
784
785         if (debug != 1) {
786                 if (tracefile)
787                         fflush(tracefile);
788                 /* leave open because libedit might be using it */
789                 return;
790         }
791         strcpy(s, "./trace");
792         if (tracefile) {
793                 if (!freopen(s, "a", tracefile)) {
794                         fprintf(stderr, "Can't re-open %s\n", s);
795                         debug = 0;
796                         return;
797                 }
798         } else {
799                 tracefile = fopen(s, "a");
800                 if (tracefile == NULL) {
801                         fprintf(stderr, "Can't open %s\n", s);
802                         debug = 0;
803                         return;
804                 }
805         }
806 #ifdef O_APPEND
807         flags = fcntl(fileno(tracefile), F_GETFL);
808         if (flags >= 0)
809                 fcntl(fileno(tracefile), F_SETFL, flags | O_APPEND);
810 #endif
811         setlinebuf(tracefile);
812         fputs("\nTracing started.\n", tracefile);
813 }
814
815 static void
816 indent(int amount, char *pfx, FILE *fp)
817 {
818         int i;
819
820         for (i = 0; i < amount; i++) {
821                 if (pfx && i == amount - 1)
822                         fputs(pfx, fp);
823                 putc('\t', fp);
824         }
825 }
826
827 /* little circular references here... */
828 static void shtree(union node *n, int ind, char *pfx, FILE *fp);
829
830 static void
831 sharg(union node *arg, FILE *fp)
832 {
833         char *p;
834         struct nodelist *bqlist;
835         unsigned char subtype;
836
837         if (arg->type != NARG) {
838                 out1fmt("<node type %d>\n", arg->type);
839                 abort();
840         }
841         bqlist = arg->narg.backquote;
842         for (p = arg->narg.text; *p; p++) {
843                 switch ((unsigned char)*p) {
844                 case CTLESC:
845                         putc(*++p, fp);
846                         break;
847                 case CTLVAR:
848                         putc('$', fp);
849                         putc('{', fp);
850                         subtype = *++p;
851                         if (subtype == VSLENGTH)
852                                 putc('#', fp);
853
854                         while (*p != '=')
855                                 putc(*p++, fp);
856
857                         if (subtype & VSNUL)
858                                 putc(':', fp);
859
860                         switch (subtype & VSTYPE) {
861                         case VSNORMAL:
862                                 putc('}', fp);
863                                 break;
864                         case VSMINUS:
865                                 putc('-', fp);
866                                 break;
867                         case VSPLUS:
868                                 putc('+', fp);
869                                 break;
870                         case VSQUESTION:
871                                 putc('?', fp);
872                                 break;
873                         case VSASSIGN:
874                                 putc('=', fp);
875                                 break;
876                         case VSTRIMLEFT:
877                                 putc('#', fp);
878                                 break;
879                         case VSTRIMLEFTMAX:
880                                 putc('#', fp);
881                                 putc('#', fp);
882                                 break;
883                         case VSTRIMRIGHT:
884                                 putc('%', fp);
885                                 break;
886                         case VSTRIMRIGHTMAX:
887                                 putc('%', fp);
888                                 putc('%', fp);
889                                 break;
890                         case VSLENGTH:
891                                 break;
892                         default:
893                                 out1fmt("<subtype %d>", subtype);
894                         }
895                         break;
896                 case CTLENDVAR:
897                         putc('}', fp);
898                         break;
899                 case CTLBACKQ:
900                 case CTLBACKQ|CTLQUOTE:
901                         putc('$', fp);
902                         putc('(', fp);
903                         shtree(bqlist->n, -1, NULL, fp);
904                         putc(')', fp);
905                         break;
906                 default:
907                         putc(*p, fp);
908                         break;
909                 }
910         }
911 }
912
913 static void
914 shcmd(union node *cmd, FILE *fp)
915 {
916         union node *np;
917         int first;
918         const char *s;
919         int dftfd;
920
921         first = 1;
922         for (np = cmd->ncmd.args; np; np = np->narg.next) {
923                 if (!first)
924                         putc(' ', fp);
925                 sharg(np, fp);
926                 first = 0;
927         }
928         for (np = cmd->ncmd.redirect; np; np = np->nfile.next) {
929                 if (!first)
930                         putc(' ', fp);
931                 dftfd = 0;
932                 switch (np->nfile.type) {
933                 case NTO:      s = ">>"+1; dftfd = 1; break;
934                 case NCLOBBER: s = ">|"; dftfd = 1; break;
935                 case NAPPEND:  s = ">>"; dftfd = 1; break;
936 #if ENABLE_ASH_BASH_COMPAT
937                 case NTO2:
938 #endif
939                 case NTOFD:    s = ">&"; dftfd = 1; break;
940                 case NFROM:    s = "<"; break;
941                 case NFROMFD:  s = "<&"; break;
942                 case NFROMTO:  s = "<>"; break;
943                 default:       s = "*error*"; break;
944                 }
945                 if (np->nfile.fd != dftfd)
946                         fprintf(fp, "%d", np->nfile.fd);
947                 fputs(s, fp);
948                 if (np->nfile.type == NTOFD || np->nfile.type == NFROMFD) {
949                         fprintf(fp, "%d", np->ndup.dupfd);
950                 } else {
951                         sharg(np->nfile.fname, fp);
952                 }
953                 first = 0;
954         }
955 }
956
957 static void
958 shtree(union node *n, int ind, char *pfx, FILE *fp)
959 {
960         struct nodelist *lp;
961         const char *s;
962
963         if (n == NULL)
964                 return;
965
966         indent(ind, pfx, fp);
967
968         if (n == NODE_EOF) {
969                 fputs("<EOF>", fp);
970                 return;
971         }
972
973         switch (n->type) {
974         case NSEMI:
975                 s = "; ";
976                 goto binop;
977         case NAND:
978                 s = " && ";
979                 goto binop;
980         case NOR:
981                 s = " || ";
982  binop:
983                 shtree(n->nbinary.ch1, ind, NULL, fp);
984                 /* if (ind < 0) */
985                         fputs(s, fp);
986                 shtree(n->nbinary.ch2, ind, NULL, fp);
987                 break;
988         case NCMD:
989                 shcmd(n, fp);
990                 if (ind >= 0)
991                         putc('\n', fp);
992                 break;
993         case NPIPE:
994                 for (lp = n->npipe.cmdlist; lp; lp = lp->next) {
995                         shtree(lp->n, 0, NULL, fp);
996                         if (lp->next)
997                                 fputs(" | ", fp);
998                 }
999                 if (n->npipe.pipe_backgnd)
1000                         fputs(" &", fp);
1001                 if (ind >= 0)
1002                         putc('\n', fp);
1003                 break;
1004         default:
1005                 fprintf(fp, "<node type %d>", n->type);
1006                 if (ind >= 0)
1007                         putc('\n', fp);
1008                 break;
1009         }
1010 }
1011
1012 static void
1013 showtree(union node *n)
1014 {
1015         trace_puts("showtree called\n");
1016         shtree(n, 1, NULL, stderr);
1017 }
1018
1019 #endif /* DEBUG */
1020
1021
1022 /* ============ Parser data */
1023
1024 /*
1025  * ash_vmsg() needs parsefile->fd, hence parsefile definition is moved up.
1026  */
1027 struct strlist {
1028         struct strlist *next;
1029         char *text;
1030 };
1031
1032 struct alias;
1033
1034 struct strpush {
1035         struct strpush *prev;   /* preceding string on stack */
1036         char *prev_string;
1037         int prev_left_in_line;
1038 #if ENABLE_ASH_ALIAS
1039         struct alias *ap;       /* if push was associated with an alias */
1040 #endif
1041         char *string;           /* remember the string since it may change */
1042 };
1043
1044 struct parsefile {
1045         struct parsefile *prev; /* preceding file on stack */
1046         int linno;              /* current line */
1047         int pf_fd;              /* file descriptor (or -1 if string) */
1048         int left_in_line;       /* number of chars left in this line */
1049         int left_in_buffer;     /* number of chars left in this buffer past the line */
1050         char *next_to_pgetc;    /* next char in buffer */
1051         char *buf;              /* input buffer */
1052         struct strpush *strpush; /* for pushing strings at this level */
1053         struct strpush basestrpush; /* so pushing one is fast */
1054 };
1055
1056 static struct parsefile basepf;        /* top level input file */
1057 static struct parsefile *g_parsefile = &basepf;  /* current input file */
1058 static int startlinno;                 /* line # where last token started */
1059 static char *commandname;              /* currently executing command */
1060 static struct strlist *cmdenviron;     /* environment for builtin command */
1061 static uint8_t exitstatus;             /* exit status of last command */
1062
1063
1064 /* ============ Message printing */
1065
1066 static void
1067 ash_vmsg(const char *msg, va_list ap)
1068 {
1069         fprintf(stderr, "%s: ", arg0);
1070         if (commandname) {
1071                 if (strcmp(arg0, commandname))
1072                         fprintf(stderr, "%s: ", commandname);
1073                 if (!iflag || g_parsefile->pf_fd > 0)
1074                         fprintf(stderr, "line %d: ", startlinno);
1075         }
1076         vfprintf(stderr, msg, ap);
1077         outcslow('\n', stderr);
1078 }
1079
1080 /*
1081  * Exverror is called to raise the error exception.  If the second argument
1082  * is not NULL then error prints an error message using printf style
1083  * formatting.  It then raises the error exception.
1084  */
1085 static void ash_vmsg_and_raise(int, const char *, va_list) NORETURN;
1086 static void
1087 ash_vmsg_and_raise(int cond, const char *msg, va_list ap)
1088 {
1089 #if DEBUG
1090         if (msg) {
1091                 TRACE(("ash_vmsg_and_raise(%d, \"", cond));
1092                 TRACEV((msg, ap));
1093                 TRACE(("\") pid=%d\n", getpid()));
1094         } else
1095                 TRACE(("ash_vmsg_and_raise(%d, NULL) pid=%d\n", cond, getpid()));
1096         if (msg)
1097 #endif
1098                 ash_vmsg(msg, ap);
1099
1100         flush_stdout_stderr();
1101         raise_exception(cond);
1102         /* NOTREACHED */
1103 }
1104
1105 static void ash_msg_and_raise_error(const char *, ...) NORETURN;
1106 static void
1107 ash_msg_and_raise_error(const char *msg, ...)
1108 {
1109         va_list ap;
1110
1111         va_start(ap, msg);
1112         ash_vmsg_and_raise(EXERROR, msg, ap);
1113         /* NOTREACHED */
1114         va_end(ap);
1115 }
1116
1117 static void raise_error_syntax(const char *) NORETURN;
1118 static void
1119 raise_error_syntax(const char *msg)
1120 {
1121         ash_msg_and_raise_error("syntax error: %s", msg);
1122         /* NOTREACHED */
1123 }
1124
1125 static void ash_msg_and_raise(int, const char *, ...) NORETURN;
1126 static void
1127 ash_msg_and_raise(int cond, const char *msg, ...)
1128 {
1129         va_list ap;
1130
1131         va_start(ap, msg);
1132         ash_vmsg_and_raise(cond, msg, ap);
1133         /* NOTREACHED */
1134         va_end(ap);
1135 }
1136
1137 /*
1138  * error/warning routines for external builtins
1139  */
1140 static void
1141 ash_msg(const char *fmt, ...)
1142 {
1143         va_list ap;
1144
1145         va_start(ap, fmt);
1146         ash_vmsg(fmt, ap);
1147         va_end(ap);
1148 }
1149
1150 /*
1151  * Return a string describing an error.  The returned string may be a
1152  * pointer to a static buffer that will be overwritten on the next call.
1153  * Action describes the operation that got the error.
1154  */
1155 static const char *
1156 errmsg(int e, const char *em)
1157 {
1158         if (e == ENOENT || e == ENOTDIR) {
1159                 return em;
1160         }
1161         return strerror(e);
1162 }
1163
1164
1165 /* ============ Memory allocation */
1166
1167 #if 0
1168 /* I consider these wrappers nearly useless:
1169  * ok, they return you to nearest exception handler, but
1170  * how much memory do you leak in the process, making
1171  * memory starvation worse?
1172  */
1173 static void *
1174 ckrealloc(void * p, size_t nbytes)
1175 {
1176         p = realloc(p, nbytes);
1177         if (!p)
1178                 ash_msg_and_raise_error(bb_msg_memory_exhausted);
1179         return p;
1180 }
1181
1182 static void *
1183 ckmalloc(size_t nbytes)
1184 {
1185         return ckrealloc(NULL, nbytes);
1186 }
1187
1188 static void *
1189 ckzalloc(size_t nbytes)
1190 {
1191         return memset(ckmalloc(nbytes), 0, nbytes);
1192 }
1193
1194 static char *
1195 ckstrdup(const char *s)
1196 {
1197         char *p = strdup(s);
1198         if (!p)
1199                 ash_msg_and_raise_error(bb_msg_memory_exhausted);
1200         return p;
1201 }
1202 #else
1203 /* Using bbox equivalents. They exit if out of memory */
1204 # define ckrealloc xrealloc
1205 # define ckmalloc  xmalloc
1206 # define ckzalloc  xzalloc
1207 # define ckstrdup  xstrdup
1208 #endif
1209
1210 /*
1211  * It appears that grabstackstr() will barf with such alignments
1212  * because stalloc() will return a string allocated in a new stackblock.
1213  */
1214 #define SHELL_ALIGN(nbytes) (((nbytes) + SHELL_SIZE) & ~SHELL_SIZE)
1215 enum {
1216         /* Most machines require the value returned from malloc to be aligned
1217          * in some way.  The following macro will get this right
1218          * on many machines.  */
1219         SHELL_SIZE = sizeof(union { int i; char *cp; double d; }) - 1,
1220         /* Minimum size of a block */
1221         MINSIZE = SHELL_ALIGN(504),
1222 };
1223
1224 struct stack_block {
1225         struct stack_block *prev;
1226         char space[MINSIZE];
1227 };
1228
1229 struct stackmark {
1230         struct stack_block *stackp;
1231         char *stacknxt;
1232         size_t stacknleft;
1233         struct stackmark *marknext;
1234 };
1235
1236
1237 struct globals_memstack {
1238         struct stack_block *g_stackp; // = &stackbase;
1239         struct stackmark *markp;
1240         char *g_stacknxt; // = stackbase.space;
1241         char *sstrend; // = stackbase.space + MINSIZE;
1242         size_t g_stacknleft; // = MINSIZE;
1243         int    herefd; // = -1;
1244         struct stack_block stackbase;
1245 };
1246 extern struct globals_memstack *const ash_ptr_to_globals_memstack;
1247 #define G_memstack (*ash_ptr_to_globals_memstack)
1248 #define g_stackp     (G_memstack.g_stackp    )
1249 #define markp        (G_memstack.markp       )
1250 #define g_stacknxt   (G_memstack.g_stacknxt  )
1251 #define sstrend      (G_memstack.sstrend     )
1252 #define g_stacknleft (G_memstack.g_stacknleft)
1253 #define herefd       (G_memstack.herefd      )
1254 #define stackbase    (G_memstack.stackbase   )
1255 #define INIT_G_memstack() do { \
1256         (*(struct globals_memstack**)&ash_ptr_to_globals_memstack) = xzalloc(sizeof(G_memstack)); \
1257         barrier(); \
1258         g_stackp = &stackbase; \
1259         g_stacknxt = stackbase.space; \
1260         g_stacknleft = MINSIZE; \
1261         sstrend = stackbase.space + MINSIZE; \
1262         herefd = -1; \
1263 } while (0)
1264
1265
1266 #define stackblock()     ((void *)g_stacknxt)
1267 #define stackblocksize() g_stacknleft
1268
1269 /*
1270  * Parse trees for commands are allocated in lifo order, so we use a stack
1271  * to make this more efficient, and also to avoid all sorts of exception
1272  * handling code to handle interrupts in the middle of a parse.
1273  *
1274  * The size 504 was chosen because the Ultrix malloc handles that size
1275  * well.
1276  */
1277 static void *
1278 stalloc(size_t nbytes)
1279 {
1280         char *p;
1281         size_t aligned;
1282
1283         aligned = SHELL_ALIGN(nbytes);
1284         if (aligned > g_stacknleft) {
1285                 size_t len;
1286                 size_t blocksize;
1287                 struct stack_block *sp;
1288
1289                 blocksize = aligned;
1290                 if (blocksize < MINSIZE)
1291                         blocksize = MINSIZE;
1292                 len = sizeof(struct stack_block) - MINSIZE + blocksize;
1293                 if (len < blocksize)
1294                         ash_msg_and_raise_error(bb_msg_memory_exhausted);
1295                 INT_OFF;
1296                 sp = ckmalloc(len);
1297                 sp->prev = g_stackp;
1298                 g_stacknxt = sp->space;
1299                 g_stacknleft = blocksize;
1300                 sstrend = g_stacknxt + blocksize;
1301                 g_stackp = sp;
1302                 INT_ON;
1303         }
1304         p = g_stacknxt;
1305         g_stacknxt += aligned;
1306         g_stacknleft -= aligned;
1307         return p;
1308 }
1309
1310 static void *
1311 stzalloc(size_t nbytes)
1312 {
1313         return memset(stalloc(nbytes), 0, nbytes);
1314 }
1315
1316 static void
1317 stunalloc(void *p)
1318 {
1319 #if DEBUG
1320         if (!p || (g_stacknxt < (char *)p) || ((char *)p < g_stackp->space)) {
1321                 write(STDERR_FILENO, "stunalloc\n", 10);
1322                 abort();
1323         }
1324 #endif
1325         g_stacknleft += g_stacknxt - (char *)p;
1326         g_stacknxt = p;
1327 }
1328
1329 /*
1330  * Like strdup but works with the ash stack.
1331  */
1332 static char *
1333 ststrdup(const char *p)
1334 {
1335         size_t len = strlen(p) + 1;
1336         return memcpy(stalloc(len), p, len);
1337 }
1338
1339 static void
1340 setstackmark(struct stackmark *mark)
1341 {
1342         mark->stackp = g_stackp;
1343         mark->stacknxt = g_stacknxt;
1344         mark->stacknleft = g_stacknleft;
1345         mark->marknext = markp;
1346         markp = mark;
1347 }
1348
1349 static void
1350 popstackmark(struct stackmark *mark)
1351 {
1352         struct stack_block *sp;
1353
1354         if (!mark->stackp)
1355                 return;
1356
1357         INT_OFF;
1358         markp = mark->marknext;
1359         while (g_stackp != mark->stackp) {
1360                 sp = g_stackp;
1361                 g_stackp = sp->prev;
1362                 free(sp);
1363         }
1364         g_stacknxt = mark->stacknxt;
1365         g_stacknleft = mark->stacknleft;
1366         sstrend = mark->stacknxt + mark->stacknleft;
1367         INT_ON;
1368 }
1369
1370 /*
1371  * When the parser reads in a string, it wants to stick the string on the
1372  * stack and only adjust the stack pointer when it knows how big the
1373  * string is.  Stackblock (defined in stack.h) returns a pointer to a block
1374  * of space on top of the stack and stackblocklen returns the length of
1375  * this block.  Growstackblock will grow this space by at least one byte,
1376  * possibly moving it (like realloc).  Grabstackblock actually allocates the
1377  * part of the block that has been used.
1378  */
1379 static void
1380 growstackblock(void)
1381 {
1382         size_t newlen;
1383
1384         newlen = g_stacknleft * 2;
1385         if (newlen < g_stacknleft)
1386                 ash_msg_and_raise_error(bb_msg_memory_exhausted);
1387         if (newlen < 128)
1388                 newlen += 128;
1389
1390         if (g_stacknxt == g_stackp->space && g_stackp != &stackbase) {
1391                 struct stack_block *oldstackp;
1392                 struct stackmark *xmark;
1393                 struct stack_block *sp;
1394                 struct stack_block *prevstackp;
1395                 size_t grosslen;
1396
1397                 INT_OFF;
1398                 oldstackp = g_stackp;
1399                 sp = g_stackp;
1400                 prevstackp = sp->prev;
1401                 grosslen = newlen + sizeof(struct stack_block) - MINSIZE;
1402                 sp = ckrealloc(sp, grosslen);
1403                 sp->prev = prevstackp;
1404                 g_stackp = sp;
1405                 g_stacknxt = sp->space;
1406                 g_stacknleft = newlen;
1407                 sstrend = sp->space + newlen;
1408
1409                 /*
1410                  * Stack marks pointing to the start of the old block
1411                  * must be relocated to point to the new block
1412                  */
1413                 xmark = markp;
1414                 while (xmark != NULL && xmark->stackp == oldstackp) {
1415                         xmark->stackp = g_stackp;
1416                         xmark->stacknxt = g_stacknxt;
1417                         xmark->stacknleft = g_stacknleft;
1418                         xmark = xmark->marknext;
1419                 }
1420                 INT_ON;
1421         } else {
1422                 char *oldspace = g_stacknxt;
1423                 size_t oldlen = g_stacknleft;
1424                 char *p = stalloc(newlen);
1425
1426                 /* free the space we just allocated */
1427                 g_stacknxt = memcpy(p, oldspace, oldlen);
1428                 g_stacknleft += newlen;
1429         }
1430 }
1431
1432 static void
1433 grabstackblock(size_t len)
1434 {
1435         len = SHELL_ALIGN(len);
1436         g_stacknxt += len;
1437         g_stacknleft -= len;
1438 }
1439
1440 /*
1441  * The following routines are somewhat easier to use than the above.
1442  * The user declares a variable of type STACKSTR, which may be declared
1443  * to be a register.  The macro STARTSTACKSTR initializes things.  Then
1444  * the user uses the macro STPUTC to add characters to the string.  In
1445  * effect, STPUTC(c, p) is the same as *p++ = c except that the stack is
1446  * grown as necessary.  When the user is done, she can just leave the
1447  * string there and refer to it using stackblock().  Or she can allocate
1448  * the space for it using grabstackstr().  If it is necessary to allow
1449  * someone else to use the stack temporarily and then continue to grow
1450  * the string, the user should use grabstack to allocate the space, and
1451  * then call ungrabstr(p) to return to the previous mode of operation.
1452  *
1453  * USTPUTC is like STPUTC except that it doesn't check for overflow.
1454  * CHECKSTACKSPACE can be called before USTPUTC to ensure that there
1455  * is space for at least one character.
1456  */
1457 static void *
1458 growstackstr(void)
1459 {
1460         size_t len = stackblocksize();
1461         if (herefd >= 0 && len >= 1024) {
1462                 full_write(herefd, stackblock(), len);
1463                 return stackblock();
1464         }
1465         growstackblock();
1466         return (char *)stackblock() + len;
1467 }
1468
1469 /*
1470  * Called from CHECKSTRSPACE.
1471  */
1472 static char *
1473 makestrspace(size_t newlen, char *p)
1474 {
1475         size_t len = p - g_stacknxt;
1476         size_t size = stackblocksize();
1477
1478         for (;;) {
1479                 size_t nleft;
1480
1481                 size = stackblocksize();
1482                 nleft = size - len;
1483                 if (nleft >= newlen)
1484                         break;
1485                 growstackblock();
1486         }
1487         return (char *)stackblock() + len;
1488 }
1489
1490 static char *
1491 stack_nputstr(const char *s, size_t n, char *p)
1492 {
1493         p = makestrspace(n, p);
1494         p = (char *)memcpy(p, s, n) + n;
1495         return p;
1496 }
1497
1498 static char *
1499 stack_putstr(const char *s, char *p)
1500 {
1501         return stack_nputstr(s, strlen(s), p);
1502 }
1503
1504 static char *
1505 _STPUTC(int c, char *p)
1506 {
1507         if (p == sstrend)
1508                 p = growstackstr();
1509         *p++ = c;
1510         return p;
1511 }
1512
1513 #define STARTSTACKSTR(p)        ((p) = stackblock())
1514 #define STPUTC(c, p)            ((p) = _STPUTC((c), (p)))
1515 #define CHECKSTRSPACE(n, p) do { \
1516         char *q = (p); \
1517         size_t l = (n); \
1518         size_t m = sstrend - q; \
1519         if (l > m) \
1520                 (p) = makestrspace(l, q); \
1521 } while (0)
1522 #define USTPUTC(c, p)           (*(p)++ = (c))
1523 #define STACKSTRNUL(p) do { \
1524         if ((p) == sstrend) \
1525                 (p) = growstackstr(); \
1526         *(p) = '\0'; \
1527 } while (0)
1528 #define STUNPUTC(p)             (--(p))
1529 #define STTOPC(p)               ((p)[-1])
1530 #define STADJUST(amount, p)     ((p) += (amount))
1531
1532 #define grabstackstr(p)         stalloc((char *)(p) - (char *)stackblock())
1533 #define ungrabstackstr(s, p)    stunalloc(s)
1534 #define stackstrend()           ((void *)sstrend)
1535
1536
1537 /* ============ String helpers */
1538
1539 /*
1540  * prefix -- see if pfx is a prefix of string.
1541  */
1542 static char *
1543 prefix(const char *string, const char *pfx)
1544 {
1545         while (*pfx) {
1546                 if (*pfx++ != *string++)
1547                         return NULL;
1548         }
1549         return (char *) string;
1550 }
1551
1552 /*
1553  * Check for a valid number.  This should be elsewhere.
1554  */
1555 static int
1556 is_number(const char *p)
1557 {
1558         do {
1559                 if (!isdigit(*p))
1560                         return 0;
1561         } while (*++p != '\0');
1562         return 1;
1563 }
1564
1565 /*
1566  * Convert a string of digits to an integer, printing an error message on
1567  * failure.
1568  */
1569 static int
1570 number(const char *s)
1571 {
1572         if (!is_number(s))
1573                 ash_msg_and_raise_error(msg_illnum, s);
1574         return atoi(s);
1575 }
1576
1577 /*
1578  * Produce a possibly single quoted string suitable as input to the shell.
1579  * The return string is allocated on the stack.
1580  */
1581 static char *
1582 single_quote(const char *s)
1583 {
1584         char *p;
1585
1586         STARTSTACKSTR(p);
1587
1588         do {
1589                 char *q;
1590                 size_t len;
1591
1592                 len = strchrnul(s, '\'') - s;
1593
1594                 q = p = makestrspace(len + 3, p);
1595
1596                 *q++ = '\'';
1597                 q = (char *)memcpy(q, s, len) + len;
1598                 *q++ = '\'';
1599                 s += len;
1600
1601                 STADJUST(q - p, p);
1602
1603                 if (*s != '\'')
1604                         break;
1605                 len = 0;
1606                 do len++; while (*++s == '\'');
1607
1608                 q = p = makestrspace(len + 3, p);
1609
1610                 *q++ = '"';
1611                 q = (char *)memcpy(q, s - len, len) + len;
1612                 *q++ = '"';
1613
1614                 STADJUST(q - p, p);
1615         } while (*s);
1616
1617         USTPUTC('\0', p);
1618
1619         return stackblock();
1620 }
1621
1622
1623 /* ============ nextopt */
1624
1625 static char **argptr;                  /* argument list for builtin commands */
1626 static char *optionarg;                /* set by nextopt (like getopt) */
1627 static char *optptr;                   /* used by nextopt */
1628
1629 /*
1630  * XXX - should get rid of. Have all builtins use getopt(3).
1631  * The library getopt must have the BSD extension static variable
1632  * "optreset", otherwise it can't be used within the shell safely.
1633  *
1634  * Standard option processing (a la getopt) for builtin routines.
1635  * The only argument that is passed to nextopt is the option string;
1636  * the other arguments are unnecessary. It returns the character,
1637  * or '\0' on end of input.
1638  */
1639 static int
1640 nextopt(const char *optstring)
1641 {
1642         char *p;
1643         const char *q;
1644         char c;
1645
1646         p = optptr;
1647         if (p == NULL || *p == '\0') {
1648                 /* We ate entire "-param", take next one */
1649                 p = *argptr;
1650                 if (p == NULL)
1651                         return '\0';
1652                 if (*p != '-')
1653                         return '\0';
1654                 if (*++p == '\0') /* just "-" ? */
1655                         return '\0';
1656                 argptr++;
1657                 if (LONE_DASH(p)) /* "--" ? */
1658                         return '\0';
1659                 /* p => next "-param" */
1660         }
1661         /* p => some option char in the middle of a "-param" */
1662         c = *p++;
1663         for (q = optstring; *q != c;) {
1664                 if (*q == '\0')
1665                         ash_msg_and_raise_error("illegal option -%c", c);
1666                 if (*++q == ':')
1667                         q++;
1668         }
1669         if (*++q == ':') {
1670                 if (*p == '\0') {
1671                         p = *argptr++;
1672                         if (p == NULL)
1673                                 ash_msg_and_raise_error("no arg for -%c option", c);
1674                 }
1675                 optionarg = p;
1676                 p = NULL;
1677         }
1678         optptr = p;
1679         return c;
1680 }
1681
1682
1683 /* ============ Shell variables */
1684
1685 /*
1686  * The parsefile structure pointed to by the global variable parsefile
1687  * contains information about the current file being read.
1688  */
1689 struct shparam {
1690         int nparam;             /* # of positional parameters (without $0) */
1691 #if ENABLE_ASH_GETOPTS
1692         int optind;             /* next parameter to be processed by getopts */
1693         int optoff;             /* used by getopts */
1694 #endif
1695         unsigned char malloced; /* if parameter list dynamically allocated */
1696         char **p;               /* parameter list */
1697 };
1698
1699 /*
1700  * Free the list of positional parameters.
1701  */
1702 static void
1703 freeparam(volatile struct shparam *param)
1704 {
1705         if (param->malloced) {
1706                 char **ap, **ap1;
1707                 ap = ap1 = param->p;
1708                 while (*ap)
1709                         free(*ap++);
1710                 free(ap1);
1711         }
1712 }
1713
1714 #if ENABLE_ASH_GETOPTS
1715 static void FAST_FUNC getoptsreset(const char *value);
1716 #endif
1717
1718 struct var {
1719         struct var *next;               /* next entry in hash list */
1720         int flags;                      /* flags are defined above */
1721         const char *var_text;           /* name=value */
1722         void (*var_func)(const char *) FAST_FUNC; /* function to be called when  */
1723                                         /* the variable gets set/unset */
1724 };
1725
1726 struct localvar {
1727         struct localvar *next;          /* next local variable in list */
1728         struct var *vp;                 /* the variable that was made local */
1729         int flags;                      /* saved flags */
1730         const char *text;               /* saved text */
1731 };
1732
1733 /* flags */
1734 #define VEXPORT         0x01    /* variable is exported */
1735 #define VREADONLY       0x02    /* variable cannot be modified */
1736 #define VSTRFIXED       0x04    /* variable struct is statically allocated */
1737 #define VTEXTFIXED      0x08    /* text is statically allocated */
1738 #define VSTACK          0x10    /* text is allocated on the stack */
1739 #define VUNSET          0x20    /* the variable is not set */
1740 #define VNOFUNC         0x40    /* don't call the callback function */
1741 #define VNOSET          0x80    /* do not set variable - just readonly test */
1742 #define VNOSAVE         0x100   /* when text is on the heap before setvareq */
1743 #if ENABLE_ASH_RANDOM_SUPPORT
1744 # define VDYNAMIC       0x200   /* dynamic variable */
1745 #else
1746 # define VDYNAMIC       0
1747 #endif
1748
1749
1750 /* Need to be before varinit_data[] */
1751 #if ENABLE_LOCALE_SUPPORT
1752 static void FAST_FUNC
1753 change_lc_all(const char *value)
1754 {
1755         if (value && *value != '\0')
1756                 setlocale(LC_ALL, value);
1757 }
1758 static void FAST_FUNC
1759 change_lc_ctype(const char *value)
1760 {
1761         if (value && *value != '\0')
1762                 setlocale(LC_CTYPE, value);
1763 }
1764 #endif
1765 #if ENABLE_ASH_MAIL
1766 static void chkmail(void);
1767 static void changemail(const char *) FAST_FUNC;
1768 #endif
1769 static void changepath(const char *) FAST_FUNC;
1770 #if ENABLE_ASH_RANDOM_SUPPORT
1771 static void change_random(const char *) FAST_FUNC;
1772 #endif
1773
1774 static const struct {
1775         int flags;
1776         const char *var_text;
1777         void (*var_func)(const char *) FAST_FUNC;
1778 } varinit_data[] = {
1779         { VSTRFIXED|VTEXTFIXED       , defifsvar   , NULL            },
1780 #if ENABLE_ASH_MAIL
1781         { VSTRFIXED|VTEXTFIXED|VUNSET, "MAIL"      , changemail      },
1782         { VSTRFIXED|VTEXTFIXED|VUNSET, "MAILPATH"  , changemail      },
1783 #endif
1784         { VSTRFIXED|VTEXTFIXED       , bb_PATH_root_path, changepath },
1785         { VSTRFIXED|VTEXTFIXED       , "PS1=$ "    , NULL            },
1786         { VSTRFIXED|VTEXTFIXED       , "PS2=> "    , NULL            },
1787         { VSTRFIXED|VTEXTFIXED       , "PS4=+ "    , NULL            },
1788 #if ENABLE_ASH_GETOPTS
1789         { VSTRFIXED|VTEXTFIXED       , "OPTIND=1"  , getoptsreset    },
1790 #endif
1791 #if ENABLE_ASH_RANDOM_SUPPORT
1792         { VSTRFIXED|VTEXTFIXED|VUNSET|VDYNAMIC, "RANDOM", change_random },
1793 #endif
1794 #if ENABLE_LOCALE_SUPPORT
1795         { VSTRFIXED|VTEXTFIXED|VUNSET, "LC_ALL"    , change_lc_all   },
1796         { VSTRFIXED|VTEXTFIXED|VUNSET, "LC_CTYPE"  , change_lc_ctype },
1797 #endif
1798 #if ENABLE_FEATURE_EDITING_SAVEHISTORY
1799         { VSTRFIXED|VTEXTFIXED|VUNSET, "HISTFILE"  , NULL            },
1800 #endif
1801 };
1802
1803 struct redirtab;
1804
1805 struct globals_var {
1806         struct shparam shellparam;      /* $@ current positional parameters */
1807         struct redirtab *redirlist;
1808         int g_nullredirs;
1809         int preverrout_fd;   /* save fd2 before print debug if xflag is set. */
1810         struct var *vartab[VTABSIZE];
1811         struct var varinit[ARRAY_SIZE(varinit_data)];
1812 };
1813 extern struct globals_var *const ash_ptr_to_globals_var;
1814 #define G_var (*ash_ptr_to_globals_var)
1815 #define shellparam    (G_var.shellparam   )
1816 //#define redirlist     (G_var.redirlist    )
1817 #define g_nullredirs  (G_var.g_nullredirs )
1818 #define preverrout_fd (G_var.preverrout_fd)
1819 #define vartab        (G_var.vartab       )
1820 #define varinit       (G_var.varinit      )
1821 #define INIT_G_var() do { \
1822         unsigned i; \
1823         (*(struct globals_var**)&ash_ptr_to_globals_var) = xzalloc(sizeof(G_var)); \
1824         barrier(); \
1825         for (i = 0; i < ARRAY_SIZE(varinit_data); i++) { \
1826                 varinit[i].flags    = varinit_data[i].flags; \
1827                 varinit[i].var_text = varinit_data[i].var_text; \
1828                 varinit[i].var_func = varinit_data[i].var_func; \
1829         } \
1830 } while (0)
1831
1832 #define vifs      varinit[0]
1833 #if ENABLE_ASH_MAIL
1834 # define vmail    (&vifs)[1]
1835 # define vmpath   (&vmail)[1]
1836 # define vpath    (&vmpath)[1]
1837 #else
1838 # define vpath    (&vifs)[1]
1839 #endif
1840 #define vps1      (&vpath)[1]
1841 #define vps2      (&vps1)[1]
1842 #define vps4      (&vps2)[1]
1843 #if ENABLE_ASH_GETOPTS
1844 # define voptind  (&vps4)[1]
1845 # if ENABLE_ASH_RANDOM_SUPPORT
1846 #  define vrandom (&voptind)[1]
1847 # endif
1848 #else
1849 # if ENABLE_ASH_RANDOM_SUPPORT
1850 #  define vrandom (&vps4)[1]
1851 # endif
1852 #endif
1853
1854 /*
1855  * The following macros access the values of the above variables.
1856  * They have to skip over the name.  They return the null string
1857  * for unset variables.
1858  */
1859 #define ifsval()        (vifs.var_text + 4)
1860 #define ifsset()        ((vifs.flags & VUNSET) == 0)
1861 #if ENABLE_ASH_MAIL
1862 # define mailval()      (vmail.var_text + 5)
1863 # define mpathval()     (vmpath.var_text + 9)
1864 # define mpathset()     ((vmpath.flags & VUNSET) == 0)
1865 #endif
1866 #define pathval()       (vpath.var_text + 5)
1867 #define ps1val()        (vps1.var_text + 4)
1868 #define ps2val()        (vps2.var_text + 4)
1869 #define ps4val()        (vps4.var_text + 4)
1870 #if ENABLE_ASH_GETOPTS
1871 # define optindval()    (voptind.var_text + 7)
1872 #endif
1873
1874
1875 #define is_name(c)      ((c) == '_' || isalpha((unsigned char)(c)))
1876 #define is_in_name(c)   ((c) == '_' || isalnum((unsigned char)(c)))
1877
1878 #if ENABLE_ASH_GETOPTS
1879 static void FAST_FUNC
1880 getoptsreset(const char *value)
1881 {
1882         shellparam.optind = number(value);
1883         shellparam.optoff = -1;
1884 }
1885 #endif
1886
1887 /*
1888  * Return of a legal variable name (a letter or underscore followed by zero or
1889  * more letters, underscores, and digits).
1890  */
1891 static char* FAST_FUNC
1892 endofname(const char *name)
1893 {
1894         char *p;
1895
1896         p = (char *) name;
1897         if (!is_name(*p))
1898                 return p;
1899         while (*++p) {
1900                 if (!is_in_name(*p))
1901                         break;
1902         }
1903         return p;
1904 }
1905
1906 /*
1907  * Compares two strings up to the first = or '\0'.  The first
1908  * string must be terminated by '='; the second may be terminated by
1909  * either '=' or '\0'.
1910  */
1911 static int
1912 varcmp(const char *p, const char *q)
1913 {
1914         int c, d;
1915
1916         while ((c = *p) == (d = *q)) {
1917                 if (!c || c == '=')
1918                         goto out;
1919                 p++;
1920                 q++;
1921         }
1922         if (c == '=')
1923                 c = '\0';
1924         if (d == '=')
1925                 d = '\0';
1926  out:
1927         return c - d;
1928 }
1929
1930 /*
1931  * Find the appropriate entry in the hash table from the name.
1932  */
1933 static struct var **
1934 hashvar(const char *p)
1935 {
1936         unsigned hashval;
1937
1938         hashval = ((unsigned char) *p) << 4;
1939         while (*p && *p != '=')
1940                 hashval += (unsigned char) *p++;
1941         return &vartab[hashval % VTABSIZE];
1942 }
1943
1944 static int
1945 vpcmp(const void *a, const void *b)
1946 {
1947         return varcmp(*(const char **)a, *(const char **)b);
1948 }
1949
1950 /*
1951  * This routine initializes the builtin variables.
1952  */
1953 static void
1954 initvar(void)
1955 {
1956         struct var *vp;
1957         struct var *end;
1958         struct var **vpp;
1959
1960         /*
1961          * PS1 depends on uid
1962          */
1963 #if ENABLE_FEATURE_EDITING && ENABLE_FEATURE_EDITING_FANCY_PROMPT
1964         vps1.var_text = "PS1=\\w \\$ ";
1965 #else
1966         if (!geteuid())
1967                 vps1.var_text = "PS1=# ";
1968 #endif
1969         vp = varinit;
1970         end = vp + ARRAY_SIZE(varinit);
1971         do {
1972                 vpp = hashvar(vp->var_text);
1973                 vp->next = *vpp;
1974                 *vpp = vp;
1975         } while (++vp < end);
1976 }
1977
1978 static struct var **
1979 findvar(struct var **vpp, const char *name)
1980 {
1981         for (; *vpp; vpp = &(*vpp)->next) {
1982                 if (varcmp((*vpp)->var_text, name) == 0) {
1983                         break;
1984                 }
1985         }
1986         return vpp;
1987 }
1988
1989 /*
1990  * Find the value of a variable.  Returns NULL if not set.
1991  */
1992 static const char* FAST_FUNC
1993 lookupvar(const char *name)
1994 {
1995         struct var *v;
1996
1997         v = *findvar(hashvar(name), name);
1998         if (v) {
1999 #if ENABLE_ASH_RANDOM_SUPPORT
2000         /*
2001          * Dynamic variables are implemented roughly the same way they are
2002          * in bash. Namely, they're "special" so long as they aren't unset.
2003          * As soon as they're unset, they're no longer dynamic, and dynamic
2004          * lookup will no longer happen at that point. -- PFM.
2005          */
2006                 if (v->flags & VDYNAMIC)
2007                         v->var_func(NULL);
2008 #endif
2009                 if (!(v->flags & VUNSET))
2010                         return var_end(v->var_text);
2011         }
2012         return NULL;
2013 }
2014
2015 /*
2016  * Search the environment of a builtin command.
2017  */
2018 static const char *
2019 bltinlookup(const char *name)
2020 {
2021         struct strlist *sp;
2022
2023         for (sp = cmdenviron; sp; sp = sp->next) {
2024                 if (varcmp(sp->text, name) == 0)
2025                         return var_end(sp->text);
2026         }
2027         return lookupvar(name);
2028 }
2029
2030 /*
2031  * Same as setvar except that the variable and value are passed in
2032  * the first argument as name=value.  Since the first argument will
2033  * be actually stored in the table, it should not be a string that
2034  * will go away.
2035  * Called with interrupts off.
2036  */
2037 static void
2038 setvareq(char *s, int flags)
2039 {
2040         struct var *vp, **vpp;
2041
2042         vpp = hashvar(s);
2043         flags |= (VEXPORT & (((unsigned) (1 - aflag)) - 1));
2044         vp = *findvar(vpp, s);
2045         if (vp) {
2046                 if ((vp->flags & (VREADONLY|VDYNAMIC)) == VREADONLY) {
2047                         const char *n;
2048
2049                         if (flags & VNOSAVE)
2050                                 free(s);
2051                         n = vp->var_text;
2052                         ash_msg_and_raise_error("%.*s: is read only", strchrnul(n, '=') - n, n);
2053                 }
2054
2055                 if (flags & VNOSET)
2056                         return;
2057
2058                 if (vp->var_func && !(flags & VNOFUNC))
2059                         vp->var_func(var_end(s));
2060
2061                 if (!(vp->flags & (VTEXTFIXED|VSTACK)))
2062                         free((char*)vp->var_text);
2063
2064                 flags |= vp->flags & ~(VTEXTFIXED|VSTACK|VNOSAVE|VUNSET);
2065         } else {
2066                 /* variable s is not found */
2067                 if (flags & VNOSET)
2068                         return;
2069                 vp = ckzalloc(sizeof(*vp));
2070                 vp->next = *vpp;
2071                 /*vp->func = NULL; - ckzalloc did it */
2072                 *vpp = vp;
2073         }
2074         if (!(flags & (VTEXTFIXED|VSTACK|VNOSAVE)))
2075                 s = ckstrdup(s);
2076         vp->var_text = s;
2077         vp->flags = flags;
2078 }
2079
2080 /*
2081  * Set the value of a variable.  The flags argument is ored with the
2082  * flags of the variable.  If val is NULL, the variable is unset.
2083  */
2084 static void
2085 setvar(const char *name, const char *val, int flags)
2086 {
2087         char *p, *q;
2088         size_t namelen;
2089         char *nameeq;
2090         size_t vallen;
2091
2092         q = endofname(name);
2093         p = strchrnul(q, '=');
2094         namelen = p - name;
2095         if (!namelen || p != q)
2096                 ash_msg_and_raise_error("%.*s: bad variable name", namelen, name);
2097         vallen = 0;
2098         if (val == NULL) {
2099                 flags |= VUNSET;
2100         } else {
2101                 vallen = strlen(val);
2102         }
2103         INT_OFF;
2104         nameeq = ckmalloc(namelen + vallen + 2);
2105         p = (char *)memcpy(nameeq, name, namelen) + namelen;
2106         if (val) {
2107                 *p++ = '=';
2108                 p = (char *)memcpy(p, val, vallen) + vallen;
2109         }
2110         *p = '\0';
2111         setvareq(nameeq, flags | VNOSAVE);
2112         INT_ON;
2113 }
2114
2115 static void FAST_FUNC
2116 setvar2(const char *name, const char *val)
2117 {
2118         setvar(name, val, 0);
2119 }
2120
2121 #if ENABLE_ASH_GETOPTS
2122 /*
2123  * Safe version of setvar, returns 1 on success 0 on failure.
2124  */
2125 static int
2126 setvarsafe(const char *name, const char *val, int flags)
2127 {
2128         int err;
2129         volatile int saveint;
2130         struct jmploc *volatile savehandler = exception_handler;
2131         struct jmploc jmploc;
2132
2133         SAVE_INT(saveint);
2134         if (setjmp(jmploc.loc))
2135                 err = 1;
2136         else {
2137                 exception_handler = &jmploc;
2138                 setvar(name, val, flags);
2139                 err = 0;
2140         }
2141         exception_handler = savehandler;
2142         RESTORE_INT(saveint);
2143         return err;
2144 }
2145 #endif
2146
2147 /*
2148  * Unset the specified variable.
2149  */
2150 static int
2151 unsetvar(const char *s)
2152 {
2153         struct var **vpp;
2154         struct var *vp;
2155         int retval;
2156
2157         vpp = findvar(hashvar(s), s);
2158         vp = *vpp;
2159         retval = 2;
2160         if (vp) {
2161                 int flags = vp->flags;
2162
2163                 retval = 1;
2164                 if (flags & VREADONLY)
2165                         goto out;
2166 #if ENABLE_ASH_RANDOM_SUPPORT
2167                 vp->flags &= ~VDYNAMIC;
2168 #endif
2169                 if (flags & VUNSET)
2170                         goto ok;
2171                 if ((flags & VSTRFIXED) == 0) {
2172                         INT_OFF;
2173                         if ((flags & (VTEXTFIXED|VSTACK)) == 0)
2174                                 free((char*)vp->var_text);
2175                         *vpp = vp->next;
2176                         free(vp);
2177                         INT_ON;
2178                 } else {
2179                         setvar(s, 0, 0);
2180                         vp->flags &= ~VEXPORT;
2181                 }
2182  ok:
2183                 retval = 0;
2184         }
2185  out:
2186         return retval;
2187 }
2188
2189 /*
2190  * Process a linked list of variable assignments.
2191  */
2192 static void
2193 listsetvar(struct strlist *list_set_var, int flags)
2194 {
2195         struct strlist *lp = list_set_var;
2196
2197         if (!lp)
2198                 return;
2199         INT_OFF;
2200         do {
2201                 setvareq(lp->text, flags);
2202                 lp = lp->next;
2203         } while (lp);
2204         INT_ON;
2205 }
2206
2207 /*
2208  * Generate a list of variables satisfying the given conditions.
2209  */
2210 static char **
2211 listvars(int on, int off, char ***end)
2212 {
2213         struct var **vpp;
2214         struct var *vp;
2215         char **ep;
2216         int mask;
2217
2218         STARTSTACKSTR(ep);
2219         vpp = vartab;
2220         mask = on | off;
2221         do {
2222                 for (vp = *vpp; vp; vp = vp->next) {
2223                         if ((vp->flags & mask) == on) {
2224                                 if (ep == stackstrend())
2225                                         ep = growstackstr();
2226                                 *ep++ = (char*)vp->var_text;
2227                         }
2228                 }
2229         } while (++vpp < vartab + VTABSIZE);
2230         if (ep == stackstrend())
2231                 ep = growstackstr();
2232         if (end)
2233                 *end = ep;
2234         *ep++ = NULL;
2235         return grabstackstr(ep);
2236 }
2237
2238
2239 /* ============ Path search helper
2240  *
2241  * The variable path (passed by reference) should be set to the start
2242  * of the path before the first call; path_advance will update
2243  * this value as it proceeds.  Successive calls to path_advance will return
2244  * the possible path expansions in sequence.  If an option (indicated by
2245  * a percent sign) appears in the path entry then the global variable
2246  * pathopt will be set to point to it; otherwise pathopt will be set to
2247  * NULL.
2248  */
2249 static const char *pathopt;     /* set by path_advance */
2250
2251 static char *
2252 path_advance(const char **path, const char *name)
2253 {
2254         const char *p;
2255         char *q;
2256         const char *start;
2257         size_t len;
2258
2259         if (*path == NULL)
2260                 return NULL;
2261         start = *path;
2262         for (p = start; *p && *p != ':' && *p != '%'; p++)
2263                 continue;
2264         len = p - start + strlen(name) + 2;     /* "2" is for '/' and '\0' */
2265         while (stackblocksize() < len)
2266                 growstackblock();
2267         q = stackblock();
2268         if (p != start) {
2269                 memcpy(q, start, p - start);
2270                 q += p - start;
2271                 *q++ = '/';
2272         }
2273         strcpy(q, name);
2274         pathopt = NULL;
2275         if (*p == '%') {
2276                 pathopt = ++p;
2277                 while (*p && *p != ':')
2278                         p++;
2279         }
2280         if (*p == ':')
2281                 *path = p + 1;
2282         else
2283                 *path = NULL;
2284         return stalloc(len);
2285 }
2286
2287
2288 /* ============ Prompt */
2289
2290 static smallint doprompt;                   /* if set, prompt the user */
2291 static smallint needprompt;                 /* true if interactive and at start of line */
2292
2293 #if ENABLE_FEATURE_EDITING
2294 static line_input_t *line_input_state;
2295 static const char *cmdedit_prompt;
2296 static void
2297 putprompt(const char *s)
2298 {
2299         if (ENABLE_ASH_EXPAND_PRMT) {
2300                 free((char*)cmdedit_prompt);
2301                 cmdedit_prompt = ckstrdup(s);
2302                 return;
2303         }
2304         cmdedit_prompt = s;
2305 }
2306 #else
2307 static void
2308 putprompt(const char *s)
2309 {
2310         out2str(s);
2311 }
2312 #endif
2313
2314 #if ENABLE_ASH_EXPAND_PRMT
2315 /* expandstr() needs parsing machinery, so it is far away ahead... */
2316 static const char *expandstr(const char *ps);
2317 #else
2318 #define expandstr(s) s
2319 #endif
2320
2321 static void
2322 setprompt(int whichprompt)
2323 {
2324         const char *prompt;
2325 #if ENABLE_ASH_EXPAND_PRMT
2326         struct stackmark smark;
2327 #endif
2328
2329         needprompt = 0;
2330
2331         switch (whichprompt) {
2332         case 1:
2333                 prompt = ps1val();
2334                 break;
2335         case 2:
2336                 prompt = ps2val();
2337                 break;
2338         default:                        /* 0 */
2339                 prompt = nullstr;
2340         }
2341 #if ENABLE_ASH_EXPAND_PRMT
2342         setstackmark(&smark);
2343         stalloc(stackblocksize());
2344 #endif
2345         putprompt(expandstr(prompt));
2346 #if ENABLE_ASH_EXPAND_PRMT
2347         popstackmark(&smark);
2348 #endif
2349 }
2350
2351
2352 /* ============ The cd and pwd commands */
2353
2354 #define CD_PHYSICAL 1
2355 #define CD_PRINT 2
2356
2357 static int
2358 cdopt(void)
2359 {
2360         int flags = 0;
2361         int i, j;
2362
2363         j = 'L';
2364         while ((i = nextopt("LP")) != '\0') {
2365                 if (i != j) {
2366                         flags ^= CD_PHYSICAL;
2367                         j = i;
2368                 }
2369         }
2370
2371         return flags;
2372 }
2373
2374 /*
2375  * Update curdir (the name of the current directory) in response to a
2376  * cd command.
2377  */
2378 static const char *
2379 updatepwd(const char *dir)
2380 {
2381         char *new;
2382         char *p;
2383         char *cdcomppath;
2384         const char *lim;
2385
2386         cdcomppath = ststrdup(dir);
2387         STARTSTACKSTR(new);
2388         if (*dir != '/') {
2389                 if (curdir == nullstr)
2390                         return 0;
2391                 new = stack_putstr(curdir, new);
2392         }
2393         new = makestrspace(strlen(dir) + 2, new);
2394         lim = (char *)stackblock() + 1;
2395         if (*dir != '/') {
2396                 if (new[-1] != '/')
2397                         USTPUTC('/', new);
2398                 if (new > lim && *lim == '/')
2399                         lim++;
2400         } else {
2401                 USTPUTC('/', new);
2402                 cdcomppath++;
2403                 if (dir[1] == '/' && dir[2] != '/') {
2404                         USTPUTC('/', new);
2405                         cdcomppath++;
2406                         lim++;
2407                 }
2408         }
2409         p = strtok(cdcomppath, "/");
2410         while (p) {
2411                 switch (*p) {
2412                 case '.':
2413                         if (p[1] == '.' && p[2] == '\0') {
2414                                 while (new > lim) {
2415                                         STUNPUTC(new);
2416                                         if (new[-1] == '/')
2417                                                 break;
2418                                 }
2419                                 break;
2420                         }
2421                         if (p[1] == '\0')
2422                                 break;
2423                         /* fall through */
2424                 default:
2425                         new = stack_putstr(p, new);
2426                         USTPUTC('/', new);
2427                 }
2428                 p = strtok(0, "/");
2429         }
2430         if (new > lim)
2431                 STUNPUTC(new);
2432         *new = 0;
2433         return stackblock();
2434 }
2435
2436 /*
2437  * Find out what the current directory is. If we already know the current
2438  * directory, this routine returns immediately.
2439  */
2440 static char *
2441 getpwd(void)
2442 {
2443         char *dir = getcwd(NULL, 0); /* huh, using glibc extension? */
2444         return dir ? dir : nullstr;
2445 }
2446
2447 static void
2448 setpwd(const char *val, int setold)
2449 {
2450         char *oldcur, *dir;
2451
2452         oldcur = dir = curdir;
2453
2454         if (setold) {
2455                 setvar("OLDPWD", oldcur, VEXPORT);
2456         }
2457         INT_OFF;
2458         if (physdir != nullstr) {
2459                 if (physdir != oldcur)
2460                         free(physdir);
2461                 physdir = nullstr;
2462         }
2463         if (oldcur == val || !val) {
2464                 char *s = getpwd();
2465                 physdir = s;
2466                 if (!val)
2467                         dir = s;
2468         } else
2469                 dir = ckstrdup(val);
2470         if (oldcur != dir && oldcur != nullstr) {
2471                 free(oldcur);
2472         }
2473         curdir = dir;
2474         INT_ON;
2475         setvar("PWD", dir, VEXPORT);
2476 }
2477
2478 static void hashcd(void);
2479
2480 /*
2481  * Actually do the chdir.  We also call hashcd to let the routines in exec.c
2482  * know that the current directory has changed.
2483  */
2484 static int
2485 docd(const char *dest, int flags)
2486 {
2487         const char *dir = NULL;
2488         int err;
2489
2490         TRACE(("docd(\"%s\", %d) called\n", dest, flags));
2491
2492         INT_OFF;
2493         if (!(flags & CD_PHYSICAL)) {
2494                 dir = updatepwd(dest);
2495                 if (dir)
2496                         dest = dir;
2497         }
2498         err = chdir(dest);
2499         if (err)
2500                 goto out;
2501         setpwd(dir, 1);
2502         hashcd();
2503  out:
2504         INT_ON;
2505         return err;
2506 }
2507
2508 static int FAST_FUNC
2509 cdcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
2510 {
2511         const char *dest;
2512         const char *path;
2513         const char *p;
2514         char c;
2515         struct stat statb;
2516         int flags;
2517
2518         flags = cdopt();
2519         dest = *argptr;
2520         if (!dest)
2521                 dest = bltinlookup("HOME");
2522         else if (LONE_DASH(dest)) {
2523                 dest = bltinlookup("OLDPWD");
2524                 flags |= CD_PRINT;
2525         }
2526         if (!dest)
2527                 dest = nullstr;
2528         if (*dest == '/')
2529                 goto step7;
2530         if (*dest == '.') {
2531                 c = dest[1];
2532  dotdot:
2533                 switch (c) {
2534                 case '\0':
2535                 case '/':
2536                         goto step6;
2537                 case '.':
2538                         c = dest[2];
2539                         if (c != '.')
2540                                 goto dotdot;
2541                 }
2542         }
2543         if (!*dest)
2544                 dest = ".";
2545         path = bltinlookup("CDPATH");
2546         if (!path) {
2547  step6:
2548  step7:
2549                 p = dest;
2550                 goto docd;
2551         }
2552         do {
2553                 c = *path;
2554                 p = path_advance(&path, dest);
2555                 if (stat(p, &statb) >= 0 && S_ISDIR(statb.st_mode)) {
2556                         if (c && c != ':')
2557                                 flags |= CD_PRINT;
2558  docd:
2559                         if (!docd(p, flags))
2560                                 goto out;
2561                         break;
2562                 }
2563         } while (path);
2564         ash_msg_and_raise_error("can't cd to %s", dest);
2565         /* NOTREACHED */
2566  out:
2567         if (flags & CD_PRINT)
2568                 out1fmt("%s\n", curdir);
2569         return 0;
2570 }
2571
2572 static int FAST_FUNC
2573 pwdcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
2574 {
2575         int flags;
2576         const char *dir = curdir;
2577
2578         flags = cdopt();
2579         if (flags) {
2580                 if (physdir == nullstr)
2581                         setpwd(dir, 0);
2582                 dir = physdir;
2583         }
2584         out1fmt("%s\n", dir);
2585         return 0;
2586 }
2587
2588
2589 /* ============ ... */
2590
2591
2592 #define IBUFSIZ (ENABLE_FEATURE_EDITING ? CONFIG_FEATURE_EDITING_MAX_LEN : 1024)
2593
2594 /* Syntax classes */
2595 #define CWORD     0             /* character is nothing special */
2596 #define CNL       1             /* newline character */
2597 #define CBACK     2             /* a backslash character */
2598 #define CSQUOTE   3             /* single quote */
2599 #define CDQUOTE   4             /* double quote */
2600 #define CENDQUOTE 5             /* a terminating quote */
2601 #define CBQUOTE   6             /* backwards single quote */
2602 #define CVAR      7             /* a dollar sign */
2603 #define CENDVAR   8             /* a '}' character */
2604 #define CLP       9             /* a left paren in arithmetic */
2605 #define CRP      10             /* a right paren in arithmetic */
2606 #define CENDFILE 11             /* end of file */
2607 #define CCTL     12             /* like CWORD, except it must be escaped */
2608 #define CSPCL    13             /* these terminate a word */
2609 #define CIGN     14             /* character should be ignored */
2610
2611 #define PEOF     256
2612 #if ENABLE_ASH_ALIAS
2613 # define PEOA    257
2614 #endif
2615
2616 #define USE_SIT_FUNCTION ENABLE_ASH_OPTIMIZE_FOR_SIZE
2617
2618 #if ENABLE_SH_MATH_SUPPORT
2619 # define SIT_ITEM(a,b,c,d) (a | (b << 4) | (c << 8) | (d << 12))
2620 #else
2621 # define SIT_ITEM(a,b,c,d) (a | (b << 4) | (c << 8))
2622 #endif
2623 static const uint16_t S_I_T[] = {
2624 #if ENABLE_ASH_ALIAS
2625         SIT_ITEM(CSPCL   , CIGN     , CIGN , CIGN   ),    /* 0, PEOA */
2626 #endif
2627         SIT_ITEM(CSPCL   , CWORD    , CWORD, CWORD  ),    /* 1, ' ' */
2628         SIT_ITEM(CNL     , CNL      , CNL  , CNL    ),    /* 2, \n */
2629         SIT_ITEM(CWORD   , CCTL     , CCTL , CWORD  ),    /* 3, !*-/:=?[]~ */
2630         SIT_ITEM(CDQUOTE , CENDQUOTE, CWORD, CWORD  ),    /* 4, '"' */
2631         SIT_ITEM(CVAR    , CVAR     , CWORD, CVAR   ),    /* 5, $ */
2632         SIT_ITEM(CSQUOTE , CWORD    , CENDQUOTE, CWORD),  /* 6, "'" */
2633         SIT_ITEM(CSPCL   , CWORD    , CWORD, CLP    ),    /* 7, ( */
2634         SIT_ITEM(CSPCL   , CWORD    , CWORD, CRP    ),    /* 8, ) */
2635         SIT_ITEM(CBACK   , CBACK    , CCTL , CBACK  ),    /* 9, \ */
2636         SIT_ITEM(CBQUOTE , CBQUOTE  , CWORD, CBQUOTE),    /* 10, ` */
2637         SIT_ITEM(CENDVAR , CENDVAR  , CWORD, CENDVAR),    /* 11, } */
2638 #if !USE_SIT_FUNCTION
2639         SIT_ITEM(CENDFILE, CENDFILE , CENDFILE, CENDFILE),/* 12, PEOF */
2640         SIT_ITEM(CWORD   , CWORD    , CWORD, CWORD  ),    /* 13, 0-9A-Za-z */
2641         SIT_ITEM(CCTL    , CCTL     , CCTL , CCTL   )     /* 14, CTLESC ... */
2642 #endif
2643 #undef SIT_ITEM
2644 };
2645 /* Constants below must match table above */
2646 enum {
2647 #if ENABLE_ASH_ALIAS
2648         CSPCL_CIGN_CIGN_CIGN               , /*  0 */
2649 #endif
2650         CSPCL_CWORD_CWORD_CWORD            , /*  1 */
2651         CNL_CNL_CNL_CNL                    , /*  2 */
2652         CWORD_CCTL_CCTL_CWORD              , /*  3 */
2653         CDQUOTE_CENDQUOTE_CWORD_CWORD      , /*  4 */
2654         CVAR_CVAR_CWORD_CVAR               , /*  5 */
2655         CSQUOTE_CWORD_CENDQUOTE_CWORD      , /*  6 */
2656         CSPCL_CWORD_CWORD_CLP              , /*  7 */
2657         CSPCL_CWORD_CWORD_CRP              , /*  8 */
2658         CBACK_CBACK_CCTL_CBACK             , /*  9 */
2659         CBQUOTE_CBQUOTE_CWORD_CBQUOTE      , /* 10 */
2660         CENDVAR_CENDVAR_CWORD_CENDVAR      , /* 11 */
2661         CENDFILE_CENDFILE_CENDFILE_CENDFILE, /* 12 */
2662         CWORD_CWORD_CWORD_CWORD            , /* 13 */
2663         CCTL_CCTL_CCTL_CCTL                , /* 14 */
2664 };
2665
2666 /* c in SIT(c, syntax) must be an *unsigned char* or PEOA or PEOF,
2667  * caller must ensure proper cast on it if c is *char_ptr!
2668  */
2669 /* Values for syntax param */
2670 #define BASESYNTAX 0    /* not in quotes */
2671 #define DQSYNTAX   1    /* in double quotes */
2672 #define SQSYNTAX   2    /* in single quotes */
2673 #define ARISYNTAX  3    /* in arithmetic */
2674 #define PSSYNTAX   4    /* prompt. never passed to SIT() */
2675
2676 #if USE_SIT_FUNCTION
2677
2678 static int
2679 SIT(int c, int syntax)
2680 {
2681         static const char spec_symbls[] ALIGN1 = "\t\n !\"$&'()*-/:;<=>?[\\]`|}~";
2682 # if ENABLE_ASH_ALIAS
2683         static const uint8_t syntax_index_table[] ALIGN1 = {
2684                 1, 2, 1, 3, 4, 5, 1, 6,         /* "\t\n !\"$&'" */
2685                 7, 8, 3, 3, 3, 3, 1, 1,         /* "()*-/:;<" */
2686                 3, 1, 3, 3, 9, 3, 10, 1,        /* "=>?[\\]`|" */
2687                 11, 3                           /* "}~" */
2688         };
2689 # else
2690         static const uint8_t syntax_index_table[] ALIGN1 = {
2691                 0, 1, 0, 2, 3, 4, 0, 5,         /* "\t\n !\"$&'" */
2692                 6, 7, 2, 2, 2, 2, 0, 0,         /* "()*-/:;<" */
2693                 2, 0, 2, 2, 8, 2, 9, 0,         /* "=>?[\\]`|" */
2694                 10, 2                           /* "}~" */
2695         };
2696 # endif
2697         const char *s;
2698         int indx;
2699
2700         if (c == PEOF)
2701                 return CENDFILE;
2702 # if ENABLE_ASH_ALIAS
2703         if (c == PEOA)
2704                 indx = 0;
2705         else
2706 # endif
2707         {
2708                 /* Cast is purely for paranoia here,
2709                  * just in case someone passed signed char to us */
2710                 if ((unsigned char)c >= CTL_FIRST
2711                  && (unsigned char)c <= CTL_LAST
2712                 ) {
2713                         return CCTL;
2714                 }
2715                 s = strchrnul(spec_symbls, c);
2716                 if (*s == '\0')
2717                         return CWORD;
2718                 indx = syntax_index_table[s - spec_symbls];
2719         }
2720         return (S_I_T[indx] >> (syntax*4)) & 0xf;
2721 }
2722
2723 #else   /* !USE_SIT_FUNCTION */
2724
2725 static const uint8_t syntax_index_table[] = {
2726         /* BASESYNTAX_DQSYNTAX_SQSYNTAX_ARISYNTAX */
2727         /*   0      */ CWORD_CWORD_CWORD_CWORD,
2728         /*   1      */ CWORD_CWORD_CWORD_CWORD,
2729         /*   2      */ CWORD_CWORD_CWORD_CWORD,
2730         /*   3      */ CWORD_CWORD_CWORD_CWORD,
2731         /*   4      */ CWORD_CWORD_CWORD_CWORD,
2732         /*   5      */ CWORD_CWORD_CWORD_CWORD,
2733         /*   6      */ CWORD_CWORD_CWORD_CWORD,
2734         /*   7      */ CWORD_CWORD_CWORD_CWORD,
2735         /*   8      */ CWORD_CWORD_CWORD_CWORD,
2736         /*   9 "\t" */ CSPCL_CWORD_CWORD_CWORD,
2737         /*  10 "\n" */ CNL_CNL_CNL_CNL,
2738         /*  11      */ CWORD_CWORD_CWORD_CWORD,
2739         /*  12      */ CWORD_CWORD_CWORD_CWORD,
2740         /*  13      */ CWORD_CWORD_CWORD_CWORD,
2741         /*  14      */ CWORD_CWORD_CWORD_CWORD,
2742         /*  15      */ CWORD_CWORD_CWORD_CWORD,
2743         /*  16      */ CWORD_CWORD_CWORD_CWORD,
2744         /*  17      */ CWORD_CWORD_CWORD_CWORD,
2745         /*  18      */ CWORD_CWORD_CWORD_CWORD,
2746         /*  19      */ CWORD_CWORD_CWORD_CWORD,
2747         /*  20      */ CWORD_CWORD_CWORD_CWORD,
2748         /*  21      */ CWORD_CWORD_CWORD_CWORD,
2749         /*  22      */ CWORD_CWORD_CWORD_CWORD,
2750         /*  23      */ CWORD_CWORD_CWORD_CWORD,
2751         /*  24      */ CWORD_CWORD_CWORD_CWORD,
2752         /*  25      */ CWORD_CWORD_CWORD_CWORD,
2753         /*  26      */ CWORD_CWORD_CWORD_CWORD,
2754         /*  27      */ CWORD_CWORD_CWORD_CWORD,
2755         /*  28      */ CWORD_CWORD_CWORD_CWORD,
2756         /*  29      */ CWORD_CWORD_CWORD_CWORD,
2757         /*  30      */ CWORD_CWORD_CWORD_CWORD,
2758         /*  31      */ CWORD_CWORD_CWORD_CWORD,
2759         /*  32  " " */ CSPCL_CWORD_CWORD_CWORD,
2760         /*  33  "!" */ CWORD_CCTL_CCTL_CWORD,
2761         /*  34  """ */ CDQUOTE_CENDQUOTE_CWORD_CWORD,
2762         /*  35  "#" */ CWORD_CWORD_CWORD_CWORD,
2763         /*  36  "$" */ CVAR_CVAR_CWORD_CVAR,
2764         /*  37  "%" */ CWORD_CWORD_CWORD_CWORD,
2765         /*  38  "&" */ CSPCL_CWORD_CWORD_CWORD,
2766         /*  39  "'" */ CSQUOTE_CWORD_CENDQUOTE_CWORD,
2767         /*  40  "(" */ CSPCL_CWORD_CWORD_CLP,
2768         /*  41  ")" */ CSPCL_CWORD_CWORD_CRP,
2769         /*  42  "*" */ CWORD_CCTL_CCTL_CWORD,
2770         /*  43  "+" */ CWORD_CWORD_CWORD_CWORD,
2771         /*  44  "," */ CWORD_CWORD_CWORD_CWORD,
2772         /*  45  "-" */ CWORD_CCTL_CCTL_CWORD,
2773         /*  46  "." */ CWORD_CWORD_CWORD_CWORD,
2774         /*  47  "/" */ CWORD_CCTL_CCTL_CWORD,
2775         /*  48  "0" */ CWORD_CWORD_CWORD_CWORD,
2776         /*  49  "1" */ CWORD_CWORD_CWORD_CWORD,
2777         /*  50  "2" */ CWORD_CWORD_CWORD_CWORD,
2778         /*  51  "3" */ CWORD_CWORD_CWORD_CWORD,
2779         /*  52  "4" */ CWORD_CWORD_CWORD_CWORD,
2780         /*  53  "5" */ CWORD_CWORD_CWORD_CWORD,
2781         /*  54  "6" */ CWORD_CWORD_CWORD_CWORD,
2782         /*  55  "7" */ CWORD_CWORD_CWORD_CWORD,
2783         /*  56  "8" */ CWORD_CWORD_CWORD_CWORD,
2784         /*  57  "9" */ CWORD_CWORD_CWORD_CWORD,
2785         /*  58  ":" */ CWORD_CCTL_CCTL_CWORD,
2786         /*  59  ";" */ CSPCL_CWORD_CWORD_CWORD,
2787         /*  60  "<" */ CSPCL_CWORD_CWORD_CWORD,
2788         /*  61  "=" */ CWORD_CCTL_CCTL_CWORD,
2789         /*  62  ">" */ CSPCL_CWORD_CWORD_CWORD,
2790         /*  63  "?" */ CWORD_CCTL_CCTL_CWORD,
2791         /*  64  "@" */ CWORD_CWORD_CWORD_CWORD,
2792         /*  65  "A" */ CWORD_CWORD_CWORD_CWORD,
2793         /*  66  "B" */ CWORD_CWORD_CWORD_CWORD,
2794         /*  67  "C" */ CWORD_CWORD_CWORD_CWORD,
2795         /*  68  "D" */ CWORD_CWORD_CWORD_CWORD,
2796         /*  69  "E" */ CWORD_CWORD_CWORD_CWORD,
2797         /*  70  "F" */ CWORD_CWORD_CWORD_CWORD,
2798         /*  71  "G" */ CWORD_CWORD_CWORD_CWORD,
2799         /*  72  "H" */ CWORD_CWORD_CWORD_CWORD,
2800         /*  73  "I" */ CWORD_CWORD_CWORD_CWORD,
2801         /*  74  "J" */ CWORD_CWORD_CWORD_CWORD,
2802         /*  75  "K" */ CWORD_CWORD_CWORD_CWORD,
2803         /*  76  "L" */ CWORD_CWORD_CWORD_CWORD,
2804         /*  77  "M" */ CWORD_CWORD_CWORD_CWORD,
2805         /*  78  "N" */ CWORD_CWORD_CWORD_CWORD,
2806         /*  79  "O" */ CWORD_CWORD_CWORD_CWORD,
2807         /*  80  "P" */ CWORD_CWORD_CWORD_CWORD,
2808         /*  81  "Q" */ CWORD_CWORD_CWORD_CWORD,
2809         /*  82  "R" */ CWORD_CWORD_CWORD_CWORD,
2810         /*  83  "S" */ CWORD_CWORD_CWORD_CWORD,
2811         /*  84  "T" */ CWORD_CWORD_CWORD_CWORD,
2812         /*  85  "U" */ CWORD_CWORD_CWORD_CWORD,
2813         /*  86  "V" */ CWORD_CWORD_CWORD_CWORD,
2814         /*  87  "W" */ CWORD_CWORD_CWORD_CWORD,
2815         /*  88  "X" */ CWORD_CWORD_CWORD_CWORD,
2816         /*  89  "Y" */ CWORD_CWORD_CWORD_CWORD,
2817         /*  90  "Z" */ CWORD_CWORD_CWORD_CWORD,
2818         /*  91  "[" */ CWORD_CCTL_CCTL_CWORD,
2819         /*  92  "\" */ CBACK_CBACK_CCTL_CBACK,
2820         /*  93  "]" */ CWORD_CCTL_CCTL_CWORD,
2821         /*  94  "^" */ CWORD_CWORD_CWORD_CWORD,
2822         /*  95  "_" */ CWORD_CWORD_CWORD_CWORD,
2823         /*  96  "`" */ CBQUOTE_CBQUOTE_CWORD_CBQUOTE,
2824         /*  97  "a" */ CWORD_CWORD_CWORD_CWORD,
2825         /*  98  "b" */ CWORD_CWORD_CWORD_CWORD,
2826         /*  99  "c" */ CWORD_CWORD_CWORD_CWORD,
2827         /* 100  "d" */ CWORD_CWORD_CWORD_CWORD,
2828         /* 101  "e" */ CWORD_CWORD_CWORD_CWORD,
2829         /* 102  "f" */ CWORD_CWORD_CWORD_CWORD,
2830         /* 103  "g" */ CWORD_CWORD_CWORD_CWORD,
2831         /* 104  "h" */ CWORD_CWORD_CWORD_CWORD,
2832         /* 105  "i" */ CWORD_CWORD_CWORD_CWORD,
2833         /* 106  "j" */ CWORD_CWORD_CWORD_CWORD,
2834         /* 107  "k" */ CWORD_CWORD_CWORD_CWORD,
2835         /* 108  "l" */ CWORD_CWORD_CWORD_CWORD,
2836         /* 109  "m" */ CWORD_CWORD_CWORD_CWORD,
2837         /* 110  "n" */ CWORD_CWORD_CWORD_CWORD,
2838         /* 111  "o" */ CWORD_CWORD_CWORD_CWORD,
2839         /* 112  "p" */ CWORD_CWORD_CWORD_CWORD,
2840         /* 113  "q" */ CWORD_CWORD_CWORD_CWORD,
2841         /* 114  "r" */ CWORD_CWORD_CWORD_CWORD,
2842         /* 115  "s" */ CWORD_CWORD_CWORD_CWORD,
2843         /* 116  "t" */ CWORD_CWORD_CWORD_CWORD,
2844         /* 117  "u" */ CWORD_CWORD_CWORD_CWORD,
2845         /* 118  "v" */ CWORD_CWORD_CWORD_CWORD,
2846         /* 119  "w" */ CWORD_CWORD_CWORD_CWORD,
2847         /* 120  "x" */ CWORD_CWORD_CWORD_CWORD,
2848         /* 121  "y" */ CWORD_CWORD_CWORD_CWORD,
2849         /* 122  "z" */ CWORD_CWORD_CWORD_CWORD,
2850         /* 123  "{" */ CWORD_CWORD_CWORD_CWORD,
2851         /* 124  "|" */ CSPCL_CWORD_CWORD_CWORD,
2852         /* 125  "}" */ CENDVAR_CENDVAR_CWORD_CENDVAR,
2853         /* 126  "~" */ CWORD_CCTL_CCTL_CWORD,
2854         /* 127  del */ CWORD_CWORD_CWORD_CWORD,
2855         /* 128 0x80 */ CWORD_CWORD_CWORD_CWORD,
2856         /* 129 CTLESC       */ CCTL_CCTL_CCTL_CCTL,
2857         /* 130 CTLVAR       */ CCTL_CCTL_CCTL_CCTL,
2858         /* 131 CTLENDVAR    */ CCTL_CCTL_CCTL_CCTL,
2859         /* 132 CTLBACKQ     */ CCTL_CCTL_CCTL_CCTL,
2860         /* 133 CTLQUOTE     */ CCTL_CCTL_CCTL_CCTL,
2861         /* 134 CTLARI       */ CCTL_CCTL_CCTL_CCTL,
2862         /* 135 CTLENDARI    */ CCTL_CCTL_CCTL_CCTL,
2863         /* 136 CTLQUOTEMARK */ CCTL_CCTL_CCTL_CCTL,
2864         /* 137      */ CWORD_CWORD_CWORD_CWORD,
2865         /* 138      */ CWORD_CWORD_CWORD_CWORD,
2866         /* 139      */ CWORD_CWORD_CWORD_CWORD,
2867         /* 140      */ CWORD_CWORD_CWORD_CWORD,
2868         /* 141      */ CWORD_CWORD_CWORD_CWORD,
2869         /* 142      */ CWORD_CWORD_CWORD_CWORD,
2870         /* 143      */ CWORD_CWORD_CWORD_CWORD,
2871         /* 144      */ CWORD_CWORD_CWORD_CWORD,
2872         /* 145      */ CWORD_CWORD_CWORD_CWORD,
2873         /* 146      */ CWORD_CWORD_CWORD_CWORD,
2874         /* 147      */ CWORD_CWORD_CWORD_CWORD,
2875         /* 148      */ CWORD_CWORD_CWORD_CWORD,
2876         /* 149      */ CWORD_CWORD_CWORD_CWORD,
2877         /* 150      */ CWORD_CWORD_CWORD_CWORD,
2878         /* 151      */ CWORD_CWORD_CWORD_CWORD,
2879         /* 152      */ CWORD_CWORD_CWORD_CWORD,
2880         /* 153      */ CWORD_CWORD_CWORD_CWORD,
2881         /* 154      */ CWORD_CWORD_CWORD_CWORD,
2882         /* 155      */ CWORD_CWORD_CWORD_CWORD,
2883         /* 156      */ CWORD_CWORD_CWORD_CWORD,
2884         /* 157      */ CWORD_CWORD_CWORD_CWORD,
2885         /* 158      */ CWORD_CWORD_CWORD_CWORD,
2886         /* 159      */ CWORD_CWORD_CWORD_CWORD,
2887         /* 160      */ CWORD_CWORD_CWORD_CWORD,
2888         /* 161      */ CWORD_CWORD_CWORD_CWORD,
2889         /* 162      */ CWORD_CWORD_CWORD_CWORD,
2890         /* 163      */ CWORD_CWORD_CWORD_CWORD,
2891         /* 164      */ CWORD_CWORD_CWORD_CWORD,
2892         /* 165      */ CWORD_CWORD_CWORD_CWORD,
2893         /* 166      */ CWORD_CWORD_CWORD_CWORD,
2894         /* 167      */ CWORD_CWORD_CWORD_CWORD,
2895         /* 168      */ CWORD_CWORD_CWORD_CWORD,
2896         /* 169      */ CWORD_CWORD_CWORD_CWORD,
2897         /* 170      */ CWORD_CWORD_CWORD_CWORD,
2898         /* 171      */ CWORD_CWORD_CWORD_CWORD,
2899         /* 172      */ CWORD_CWORD_CWORD_CWORD,
2900         /* 173      */ CWORD_CWORD_CWORD_CWORD,
2901         /* 174      */ CWORD_CWORD_CWORD_CWORD,
2902         /* 175      */ CWORD_CWORD_CWORD_CWORD,
2903         /* 176      */ CWORD_CWORD_CWORD_CWORD,
2904         /* 177      */ CWORD_CWORD_CWORD_CWORD,
2905         /* 178      */ CWORD_CWORD_CWORD_CWORD,
2906         /* 179      */ CWORD_CWORD_CWORD_CWORD,
2907         /* 180      */ CWORD_CWORD_CWORD_CWORD,
2908         /* 181      */ CWORD_CWORD_CWORD_CWORD,
2909         /* 182      */ CWORD_CWORD_CWORD_CWORD,
2910         /* 183      */ CWORD_CWORD_CWORD_CWORD,
2911         /* 184      */ CWORD_CWORD_CWORD_CWORD,
2912         /* 185      */ CWORD_CWORD_CWORD_CWORD,
2913         /* 186      */ CWORD_CWORD_CWORD_CWORD,
2914         /* 187      */ CWORD_CWORD_CWORD_CWORD,
2915         /* 188      */ CWORD_CWORD_CWORD_CWORD,
2916         /* 189      */ CWORD_CWORD_CWORD_CWORD,
2917         /* 190      */ CWORD_CWORD_CWORD_CWORD,
2918         /* 191      */ CWORD_CWORD_CWORD_CWORD,
2919         /* 192      */ CWORD_CWORD_CWORD_CWORD,
2920         /* 193      */ CWORD_CWORD_CWORD_CWORD,
2921         /* 194      */ CWORD_CWORD_CWORD_CWORD,
2922         /* 195      */ CWORD_CWORD_CWORD_CWORD,
2923         /* 196      */ CWORD_CWORD_CWORD_CWORD,
2924         /* 197      */ CWORD_CWORD_CWORD_CWORD,
2925         /* 198      */ CWORD_CWORD_CWORD_CWORD,
2926         /* 199      */ CWORD_CWORD_CWORD_CWORD,
2927         /* 200      */ CWORD_CWORD_CWORD_CWORD,
2928         /* 201      */ CWORD_CWORD_CWORD_CWORD,
2929         /* 202      */ CWORD_CWORD_CWORD_CWORD,
2930         /* 203      */ CWORD_CWORD_CWORD_CWORD,
2931         /* 204      */ CWORD_CWORD_CWORD_CWORD,
2932         /* 205      */ CWORD_CWORD_CWORD_CWORD,
2933         /* 206      */ CWORD_CWORD_CWORD_CWORD,
2934         /* 207      */ CWORD_CWORD_CWORD_CWORD,
2935         /* 208      */ CWORD_CWORD_CWORD_CWORD,
2936         /* 209      */ CWORD_CWORD_CWORD_CWORD,
2937         /* 210      */ CWORD_CWORD_CWORD_CWORD,
2938         /* 211      */ CWORD_CWORD_CWORD_CWORD,
2939         /* 212      */ CWORD_CWORD_CWORD_CWORD,
2940         /* 213      */ CWORD_CWORD_CWORD_CWORD,
2941         /* 214      */ CWORD_CWORD_CWORD_CWORD,
2942         /* 215      */ CWORD_CWORD_CWORD_CWORD,
2943         /* 216      */ CWORD_CWORD_CWORD_CWORD,
2944         /* 217      */ CWORD_CWORD_CWORD_CWORD,
2945         /* 218      */ CWORD_CWORD_CWORD_CWORD,
2946         /* 219      */ CWORD_CWORD_CWORD_CWORD,
2947         /* 220      */ CWORD_CWORD_CWORD_CWORD,
2948         /* 221      */ CWORD_CWORD_CWORD_CWORD,
2949         /* 222      */ CWORD_CWORD_CWORD_CWORD,
2950         /* 223      */ CWORD_CWORD_CWORD_CWORD,
2951         /* 224      */ CWORD_CWORD_CWORD_CWORD,
2952         /* 225      */ CWORD_CWORD_CWORD_CWORD,
2953         /* 226      */ CWORD_CWORD_CWORD_CWORD,
2954         /* 227      */ CWORD_CWORD_CWORD_CWORD,
2955         /* 228      */ CWORD_CWORD_CWORD_CWORD,
2956         /* 229      */ CWORD_CWORD_CWORD_CWORD,
2957         /* 230      */ CWORD_CWORD_CWORD_CWORD,
2958         /* 231      */ CWORD_CWORD_CWORD_CWORD,
2959         /* 232      */ CWORD_CWORD_CWORD_CWORD,
2960         /* 233      */ CWORD_CWORD_CWORD_CWORD,
2961         /* 234      */ CWORD_CWORD_CWORD_CWORD,
2962         /* 235      */ CWORD_CWORD_CWORD_CWORD,
2963         /* 236      */ CWORD_CWORD_CWORD_CWORD,
2964         /* 237      */ CWORD_CWORD_CWORD_CWORD,
2965         /* 238      */ CWORD_CWORD_CWORD_CWORD,
2966         /* 239      */ CWORD_CWORD_CWORD_CWORD,
2967         /* 230      */ CWORD_CWORD_CWORD_CWORD,
2968         /* 241      */ CWORD_CWORD_CWORD_CWORD,
2969         /* 242      */ CWORD_CWORD_CWORD_CWORD,
2970         /* 243      */ CWORD_CWORD_CWORD_CWORD,
2971         /* 244      */ CWORD_CWORD_CWORD_CWORD,
2972         /* 245      */ CWORD_CWORD_CWORD_CWORD,
2973         /* 246      */ CWORD_CWORD_CWORD_CWORD,
2974         /* 247      */ CWORD_CWORD_CWORD_CWORD,
2975         /* 248      */ CWORD_CWORD_CWORD_CWORD,
2976         /* 249      */ CWORD_CWORD_CWORD_CWORD,
2977         /* 250      */ CWORD_CWORD_CWORD_CWORD,
2978         /* 251      */ CWORD_CWORD_CWORD_CWORD,
2979         /* 252      */ CWORD_CWORD_CWORD_CWORD,
2980         /* 253      */ CWORD_CWORD_CWORD_CWORD,
2981         /* 254      */ CWORD_CWORD_CWORD_CWORD,
2982         /* 255      */ CWORD_CWORD_CWORD_CWORD,
2983         /* PEOF */     CENDFILE_CENDFILE_CENDFILE_CENDFILE,
2984 # if ENABLE_ASH_ALIAS
2985         /* PEOA */     CSPCL_CIGN_CIGN_CIGN,
2986 # endif
2987 };
2988
2989 # define SIT(c, syntax) ((S_I_T[syntax_index_table[c]] >> ((syntax)*4)) & 0xf)
2990
2991 #endif  /* !USE_SIT_FUNCTION */
2992
2993
2994 /* ============ Alias handling */
2995
2996 #if ENABLE_ASH_ALIAS
2997
2998 #define ALIASINUSE 1
2999 #define ALIASDEAD  2
3000
3001 struct alias {
3002         struct alias *next;
3003         char *name;
3004         char *val;
3005         int flag;
3006 };
3007
3008
3009 static struct alias **atab; // [ATABSIZE];
3010 #define INIT_G_alias() do { \
3011         atab = xzalloc(ATABSIZE * sizeof(atab[0])); \
3012 } while (0)
3013
3014
3015 static struct alias **
3016 __lookupalias(const char *name) {
3017         unsigned int hashval;
3018         struct alias **app;
3019         const char *p;
3020         unsigned int ch;
3021
3022         p = name;
3023
3024         ch = (unsigned char)*p;
3025         hashval = ch << 4;
3026         while (ch) {
3027                 hashval += ch;
3028                 ch = (unsigned char)*++p;
3029         }
3030         app = &atab[hashval % ATABSIZE];
3031
3032         for (; *app; app = &(*app)->next) {
3033                 if (strcmp(name, (*app)->name) == 0) {
3034                         break;
3035                 }
3036         }
3037
3038         return app;
3039 }
3040
3041 static struct alias *
3042 lookupalias(const char *name, int check)
3043 {
3044         struct alias *ap = *__lookupalias(name);
3045
3046         if (check && ap && (ap->flag & ALIASINUSE))
3047                 return NULL;
3048         return ap;
3049 }
3050
3051 static struct alias *
3052 freealias(struct alias *ap)
3053 {
3054         struct alias *next;
3055
3056         if (ap->flag & ALIASINUSE) {
3057                 ap->flag |= ALIASDEAD;
3058                 return ap;
3059         }
3060
3061         next = ap->next;
3062         free(ap->name);
3063         free(ap->val);
3064         free(ap);
3065         return next;
3066 }
3067
3068 static void
3069 setalias(const char *name, const char *val)
3070 {
3071         struct alias *ap, **app;
3072
3073         app = __lookupalias(name);
3074         ap = *app;
3075         INT_OFF;
3076         if (ap) {
3077                 if (!(ap->flag & ALIASINUSE)) {
3078                         free(ap->val);
3079                 }
3080                 ap->val = ckstrdup(val);
3081                 ap->flag &= ~ALIASDEAD;
3082         } else {
3083                 /* not found */
3084                 ap = ckzalloc(sizeof(struct alias));
3085                 ap->name = ckstrdup(name);
3086                 ap->val = ckstrdup(val);
3087                 /*ap->flag = 0; - ckzalloc did it */
3088                 /*ap->next = NULL;*/
3089                 *app = ap;
3090         }
3091         INT_ON;
3092 }
3093
3094 static int
3095 unalias(const char *name)
3096 {
3097         struct alias **app;
3098
3099         app = __lookupalias(name);
3100
3101         if (*app) {
3102                 INT_OFF;
3103                 *app = freealias(*app);
3104                 INT_ON;
3105                 return 0;
3106         }
3107
3108         return 1;
3109 }
3110
3111 static void
3112 rmaliases(void)
3113 {
3114         struct alias *ap, **app;
3115         int i;
3116
3117         INT_OFF;
3118         for (i = 0; i < ATABSIZE; i++) {
3119                 app = &atab[i];
3120                 for (ap = *app; ap; ap = *app) {
3121                         *app = freealias(*app);
3122                         if (ap == *app) {
3123                                 app = &ap->next;
3124                         }
3125                 }
3126         }
3127         INT_ON;
3128 }
3129
3130 static void
3131 printalias(const struct alias *ap)
3132 {
3133         out1fmt("%s=%s\n", ap->name, single_quote(ap->val));
3134 }
3135
3136 /*
3137  * TODO - sort output
3138  */
3139 static int FAST_FUNC
3140 aliascmd(int argc UNUSED_PARAM, char **argv)
3141 {
3142         char *n, *v;
3143         int ret = 0;
3144         struct alias *ap;
3145
3146         if (!argv[1]) {
3147                 int i;
3148
3149                 for (i = 0; i < ATABSIZE; i++) {
3150                         for (ap = atab[i]; ap; ap = ap->next) {
3151                                 printalias(ap);
3152                         }
3153                 }
3154                 return 0;
3155         }
3156         while ((n = *++argv) != NULL) {
3157                 v = strchr(n+1, '=');
3158                 if (v == NULL) { /* n+1: funny ksh stuff */
3159                         ap = *__lookupalias(n);
3160                         if (ap == NULL) {
3161                                 fprintf(stderr, "%s: %s not found\n", "alias", n);
3162                                 ret = 1;
3163                         } else
3164                                 printalias(ap);
3165                 } else {
3166                         *v++ = '\0';
3167                         setalias(n, v);
3168                 }
3169         }
3170
3171         return ret;
3172 }
3173
3174 static int FAST_FUNC
3175 unaliascmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
3176 {
3177         int i;
3178
3179         while ((i = nextopt("a")) != '\0') {
3180                 if (i == 'a') {
3181                         rmaliases();
3182                         return 0;
3183                 }
3184         }
3185         for (i = 0; *argptr; argptr++) {
3186                 if (unalias(*argptr)) {
3187                         fprintf(stderr, "%s: %s not found\n", "unalias", *argptr);
3188                         i = 1;
3189                 }
3190         }
3191
3192         return i;
3193 }
3194
3195 #endif /* ASH_ALIAS */
3196
3197
3198 /* ============ jobs.c */
3199
3200 /* Mode argument to forkshell.  Don't change FORK_FG or FORK_BG. */
3201 #define FORK_FG    0
3202 #define FORK_BG    1
3203 #define FORK_NOJOB 2
3204
3205 /* mode flags for showjob(s) */
3206 #define SHOW_ONLY_PGID  0x01    /* show only pgid (jobs -p) */
3207 #define SHOW_PIDS       0x02    /* show individual pids, not just one line per job */
3208 #define SHOW_CHANGED    0x04    /* only jobs whose state has changed */
3209
3210 /*
3211  * A job structure contains information about a job.  A job is either a
3212  * single process or a set of processes contained in a pipeline.  In the
3213  * latter case, pidlist will be non-NULL, and will point to a -1 terminated
3214  * array of pids.
3215  */
3216 struct procstat {
3217         pid_t   ps_pid;         /* process id */
3218         int     ps_status;      /* last process status from wait() */
3219         char    *ps_cmd;        /* text of command being run */
3220 };
3221
3222 struct job {
3223         struct procstat ps0;    /* status of process */
3224         struct procstat *ps;    /* status or processes when more than one */
3225 #if JOBS
3226         int stopstatus;         /* status of a stopped job */
3227 #endif
3228         uint32_t
3229                 nprocs: 16,     /* number of processes */
3230                 state: 8,
3231 #define JOBRUNNING      0       /* at least one proc running */
3232 #define JOBSTOPPED      1       /* all procs are stopped */
3233 #define JOBDONE         2       /* all procs are completed */
3234 #if JOBS
3235                 sigint: 1,      /* job was killed by SIGINT */
3236                 jobctl: 1,      /* job running under job control */
3237 #endif
3238                 waited: 1,      /* true if this entry has been waited for */
3239                 used: 1,        /* true if this entry is in used */
3240                 changed: 1;     /* true if status has changed */
3241         struct job *prev_job;   /* previous job */
3242 };
3243
3244 static struct job *makejob(/*union node *,*/ int);
3245 static int forkshell(struct job *, union node *, int);
3246 static int waitforjob(struct job *);
3247
3248 #if !JOBS
3249 enum { doing_jobctl = 0 };
3250 #define setjobctl(on) do {} while (0)
3251 #else
3252 static smallint doing_jobctl; //references:8
3253 static void setjobctl(int);
3254 #endif
3255
3256 /*
3257  * Ignore a signal.
3258  */
3259 static void
3260 ignoresig(int signo)
3261 {
3262         /* Avoid unnecessary system calls. Is it already SIG_IGNed? */
3263         if (sigmode[signo - 1] != S_IGN && sigmode[signo - 1] != S_HARD_IGN) {
3264                 /* No, need to do it */
3265                 signal(signo, SIG_IGN);
3266         }
3267         sigmode[signo - 1] = S_HARD_IGN;
3268 }
3269
3270 /*
3271  * Only one usage site - in setsignal()
3272  */
3273 static void
3274 signal_handler(int signo)
3275 {
3276         gotsig[signo - 1] = 1;
3277
3278         if (signo == SIGINT && !trap[SIGINT]) {
3279                 if (!suppress_int) {
3280                         pending_sig = 0;
3281                         raise_interrupt(); /* does not return */
3282                 }
3283                 pending_int = 1;
3284         } else {
3285                 pending_sig = signo;
3286         }
3287 }
3288
3289 /*
3290  * Set the signal handler for the specified signal.  The routine figures
3291  * out what it should be set to.
3292  */
3293 static void
3294 setsignal(int signo)
3295 {
3296         char *t;
3297         char cur_act, new_act;
3298         struct sigaction act;
3299
3300         t = trap[signo];
3301         new_act = S_DFL;
3302         if (t != NULL) { /* trap for this sig is set */
3303                 new_act = S_CATCH;
3304                 if (t[0] == '\0') /* trap is "": ignore this sig */
3305                         new_act = S_IGN;
3306         }
3307
3308         if (rootshell && new_act == S_DFL) {
3309                 switch (signo) {
3310                 case SIGINT:
3311                         if (iflag || minusc || sflag == 0)
3312                                 new_act = S_CATCH;
3313                         break;
3314                 case SIGQUIT:
3315 #if DEBUG
3316                         if (debug)
3317                                 break;
3318 #endif
3319                         /* man bash:
3320                          * "In all cases, bash ignores SIGQUIT. Non-builtin
3321                          * commands run by bash have signal handlers
3322                          * set to the values inherited by the shell
3323                          * from its parent". */
3324                         new_act = S_IGN;
3325                         break;
3326                 case SIGTERM:
3327                         if (iflag)
3328                                 new_act = S_IGN;
3329                         break;
3330 #if JOBS
3331                 case SIGTSTP:
3332                 case SIGTTOU:
3333                         if (mflag)
3334                                 new_act = S_IGN;
3335                         break;
3336 #endif
3337                 }
3338         }
3339 //TODO: if !rootshell, we reset SIGQUIT to DFL,
3340 //whereas we have to restore it to what shell got on entry
3341 //from the parent. See comment above
3342
3343         t = &sigmode[signo - 1];
3344         cur_act = *t;
3345         if (cur_act == 0) {
3346                 /* current setting is not yet known */
3347                 if (sigaction(signo, NULL, &act)) {
3348                         /* pretend it worked; maybe we should give a warning,
3349                          * but other shells don't. We don't alter sigmode,
3350                          * so we retry every time.
3351                          * btw, in Linux it never fails. --vda */
3352                         return;
3353                 }
3354                 if (act.sa_handler == SIG_IGN) {
3355                         cur_act = S_HARD_IGN;
3356                         if (mflag
3357                          && (signo == SIGTSTP || signo == SIGTTIN || signo == SIGTTOU)
3358                         ) {
3359                                 cur_act = S_IGN;   /* don't hard ignore these */
3360                         }
3361                 }
3362         }
3363         if (cur_act == S_HARD_IGN || cur_act == new_act)
3364                 return;
3365
3366         act.sa_handler = SIG_DFL;
3367         switch (new_act) {
3368         case S_CATCH:
3369                 act.sa_handler = signal_handler;
3370                 act.sa_flags = 0; /* matters only if !DFL and !IGN */
3371                 sigfillset(&act.sa_mask); /* ditto */
3372                 break;
3373         case S_IGN:
3374                 act.sa_handler = SIG_IGN;
3375                 break;
3376         }
3377         sigaction_set(signo, &act);
3378
3379         *t = new_act;
3380 }
3381
3382 /* mode flags for set_curjob */
3383 #define CUR_DELETE 2
3384 #define CUR_RUNNING 1
3385 #define CUR_STOPPED 0
3386
3387 /* mode flags for dowait */
3388 #define DOWAIT_NONBLOCK WNOHANG
3389 #define DOWAIT_BLOCK    0
3390
3391 #if JOBS
3392 /* pgrp of shell on invocation */
3393 static int initialpgrp; //references:2
3394 static int ttyfd = -1; //5
3395 #endif
3396 /* array of jobs */
3397 static struct job *jobtab; //5
3398 /* size of array */
3399 static unsigned njobs; //4
3400 /* current job */
3401 static struct job *curjob; //lots
3402 /* number of presumed living untracked jobs */
3403 static int jobless; //4
3404
3405 static void
3406 set_curjob(struct job *jp, unsigned mode)
3407 {
3408         struct job *jp1;
3409         struct job **jpp, **curp;
3410
3411         /* first remove from list */
3412         jpp = curp = &curjob;
3413         do {
3414                 jp1 = *jpp;
3415                 if (jp1 == jp)
3416                         break;
3417                 jpp = &jp1->prev_job;
3418         } while (1);
3419         *jpp = jp1->prev_job;
3420
3421         /* Then re-insert in correct position */
3422         jpp = curp;
3423         switch (mode) {
3424         default:
3425 #if DEBUG
3426                 abort();
3427 #endif
3428         case CUR_DELETE:
3429                 /* job being deleted */
3430                 break;
3431         case CUR_RUNNING:
3432                 /* newly created job or backgrounded job,
3433                    put after all stopped jobs. */
3434                 do {
3435                         jp1 = *jpp;
3436 #if JOBS
3437                         if (!jp1 || jp1->state != JOBSTOPPED)
3438 #endif
3439                                 break;
3440                         jpp = &jp1->prev_job;
3441                 } while (1);
3442                 /* FALLTHROUGH */
3443 #if JOBS
3444         case CUR_STOPPED:
3445 #endif
3446                 /* newly stopped job - becomes curjob */
3447                 jp->prev_job = *jpp;
3448                 *jpp = jp;
3449                 break;
3450         }
3451 }
3452
3453 #if JOBS || DEBUG
3454 static int
3455 jobno(const struct job *jp)
3456 {
3457         return jp - jobtab + 1;
3458 }
3459 #endif
3460
3461 /*
3462  * Convert a job name to a job structure.
3463  */
3464 #if !JOBS
3465 #define getjob(name, getctl) getjob(name)
3466 #endif
3467 static struct job *
3468 getjob(const char *name, int getctl)
3469 {
3470         struct job *jp;
3471         struct job *found;
3472         const char *err_msg = "%s: no such job";
3473         unsigned num;
3474         int c;
3475         const char *p;
3476         char *(*match)(const char *, const char *);
3477
3478         jp = curjob;
3479         p = name;
3480         if (!p)
3481                 goto currentjob;
3482
3483         if (*p != '%')
3484                 goto err;
3485
3486         c = *++p;
3487         if (!c)
3488                 goto currentjob;
3489
3490         if (!p[1]) {
3491                 if (c == '+' || c == '%') {
3492  currentjob:
3493                         err_msg = "No current job";
3494                         goto check;
3495                 }
3496                 if (c == '-') {
3497                         if (jp)
3498                                 jp = jp->prev_job;
3499                         err_msg = "No previous job";
3500  check:
3501                         if (!jp)
3502                                 goto err;
3503                         goto gotit;
3504                 }
3505         }
3506
3507         if (is_number(p)) {
3508                 num = atoi(p);
3509                 if (num < njobs) {
3510                         jp = jobtab + num - 1;
3511                         if (jp->used)
3512                                 goto gotit;
3513                         goto err;
3514                 }
3515         }
3516
3517         match = prefix;
3518         if (*p == '?') {
3519                 match = strstr;
3520                 p++;
3521         }
3522
3523         found = NULL;
3524         while (jp) {
3525                 if (match(jp->ps[0].ps_cmd, p)) {
3526                         if (found)
3527                                 goto err;
3528                         found = jp;
3529                         err_msg = "%s: ambiguous";
3530                 }
3531                 jp = jp->prev_job;
3532         }
3533         if (!found)
3534                 goto err;
3535         jp = found;
3536
3537  gotit:
3538 #if JOBS
3539         err_msg = "job %s not created under job control";
3540         if (getctl && jp->jobctl == 0)
3541                 goto err;
3542 #endif
3543         return jp;
3544  err:
3545         ash_msg_and_raise_error(err_msg, name);
3546 }
3547
3548 /*
3549  * Mark a job structure as unused.
3550  */
3551 static void
3552 freejob(struct job *jp)
3553 {
3554         struct procstat *ps;
3555         int i;
3556
3557         INT_OFF;
3558         for (i = jp->nprocs, ps = jp->ps; --i >= 0; ps++) {
3559                 if (ps->ps_cmd != nullstr)
3560                         free(ps->ps_cmd);
3561         }
3562         if (jp->ps != &jp->ps0)
3563                 free(jp->ps);
3564         jp->used = 0;
3565         set_curjob(jp, CUR_DELETE);
3566         INT_ON;
3567 }
3568
3569 #if JOBS
3570 static void
3571 xtcsetpgrp(int fd, pid_t pgrp)
3572 {
3573         if (tcsetpgrp(fd, pgrp))
3574                 ash_msg_and_raise_error("can't set tty process group (%m)");
3575 }
3576
3577 /*
3578  * Turn job control on and off.
3579  *
3580  * Note:  This code assumes that the third arg to ioctl is a character
3581  * pointer, which is true on Berkeley systems but not System V.  Since
3582  * System V doesn't have job control yet, this isn't a problem now.
3583  *
3584  * Called with interrupts off.
3585  */
3586 static void
3587 setjobctl(int on)
3588 {
3589         int fd;
3590         int pgrp;
3591
3592         if (on == doing_jobctl || rootshell == 0)
3593                 return;
3594         if (on) {
3595                 int ofd;
3596                 ofd = fd = open(_PATH_TTY, O_RDWR);
3597                 if (fd < 0) {
3598         /* BTW, bash will try to open(ttyname(0)) if open("/dev/tty") fails.
3599          * That sometimes helps to acquire controlling tty.
3600          * Obviously, a workaround for bugs when someone
3601          * failed to provide a controlling tty to bash! :) */
3602                         fd = 2;
3603                         while (!isatty(fd))
3604                                 if (--fd < 0)
3605                                         goto out;
3606                 }
3607                 fd = fcntl(fd, F_DUPFD, 10);
3608                 if (ofd >= 0)
3609                         close(ofd);
3610                 if (fd < 0)
3611                         goto out;
3612                 /* fd is a tty at this point */
3613                 close_on_exec_on(fd);
3614                 do { /* while we are in the background */
3615                         pgrp = tcgetpgrp(fd);
3616                         if (pgrp < 0) {
3617  out:
3618                                 ash_msg("can't access tty; job control turned off");
3619                                 mflag = on = 0;
3620                                 goto close;
3621                         }
3622                         if (pgrp == getpgrp())
3623                                 break;
3624                         killpg(0, SIGTTIN);
3625                 } while (1);
3626                 initialpgrp = pgrp;
3627
3628                 setsignal(SIGTSTP);
3629                 setsignal(SIGTTOU);
3630                 setsignal(SIGTTIN);
3631                 pgrp = rootpid;
3632                 setpgid(0, pgrp);
3633                 xtcsetpgrp(fd, pgrp);
3634         } else {
3635                 /* turning job control off */
3636                 fd = ttyfd;
3637                 pgrp = initialpgrp;
3638                 /* was xtcsetpgrp, but this can make exiting ash
3639                  * loop forever if pty is already deleted */
3640                 tcsetpgrp(fd, pgrp);
3641                 setpgid(0, pgrp);
3642                 setsignal(SIGTSTP);
3643                 setsignal(SIGTTOU);
3644                 setsignal(SIGTTIN);
3645  close:
3646                 if (fd >= 0)
3647                         close(fd);
3648                 fd = -1;
3649         }
3650         ttyfd = fd;
3651         doing_jobctl = on;
3652 }
3653
3654 static int FAST_FUNC
3655 killcmd(int argc, char **argv)
3656 {
3657         int i = 1;
3658         if (argv[1] && strcmp(argv[1], "-l") != 0) {
3659                 do {
3660                         if (argv[i][0] == '%') {
3661                                 struct job *jp = getjob(argv[i], 0);
3662                                 unsigned pid = jp->ps[0].ps_pid;
3663                                 /* Enough space for ' -NNN<nul>' */
3664                                 argv[i] = alloca(sizeof(int)*3 + 3);
3665                                 /* kill_main has matching code to expect
3666                                  * leading space. Needed to not confuse
3667                                  * negative pids with "kill -SIGNAL_NO" syntax */
3668                                 sprintf(argv[i], " -%u", pid);
3669                         }
3670                 } while (argv[++i]);
3671         }
3672         return kill_main(argc, argv);
3673 }
3674
3675 static void
3676 showpipe(struct job *jp /*, FILE *out*/)
3677 {
3678         struct procstat *ps;
3679         struct procstat *psend;
3680
3681         psend = jp->ps + jp->nprocs;
3682         for (ps = jp->ps + 1; ps < psend; ps++)
3683                 printf(" | %s", ps->ps_cmd);
3684         outcslow('\n', stdout);
3685         flush_stdout_stderr();
3686 }
3687
3688
3689 static int
3690 restartjob(struct job *jp, int mode)
3691 {
3692         struct procstat *ps;
3693         int i;
3694         int status;
3695         pid_t pgid;
3696
3697         INT_OFF;
3698         if (jp->state == JOBDONE)
3699                 goto out;
3700         jp->state = JOBRUNNING;
3701         pgid = jp->ps[0].ps_pid;
3702         if (mode == FORK_FG)
3703                 xtcsetpgrp(ttyfd, pgid);
3704         killpg(pgid, SIGCONT);
3705         ps = jp->ps;
3706         i = jp->nprocs;
3707         do {
3708                 if (WIFSTOPPED(ps->ps_status)) {
3709                         ps->ps_status = -1;
3710                 }
3711                 ps++;
3712         } while (--i);
3713  out:
3714         status = (mode == FORK_FG) ? waitforjob(jp) : 0;
3715         INT_ON;
3716         return status;
3717 }
3718
3719 static int FAST_FUNC
3720 fg_bgcmd(int argc UNUSED_PARAM, char **argv)
3721 {
3722         struct job *jp;
3723         int mode;
3724         int retval;
3725
3726         mode = (**argv == 'f') ? FORK_FG : FORK_BG;
3727         nextopt(nullstr);
3728         argv = argptr;
3729         do {
3730                 jp = getjob(*argv, 1);
3731                 if (mode == FORK_BG) {
3732                         set_curjob(jp, CUR_RUNNING);
3733                         printf("[%d] ", jobno(jp));
3734                 }
3735                 out1str(jp->ps[0].ps_cmd);
3736                 showpipe(jp /*, stdout*/);
3737                 retval = restartjob(jp, mode);
3738         } while (*argv && *++argv);
3739         return retval;
3740 }
3741 #endif
3742
3743 static int
3744 sprint_status(char *s, int status, int sigonly)
3745 {
3746         int col;
3747         int st;
3748
3749         col = 0;
3750         if (!WIFEXITED(status)) {
3751 #if JOBS
3752                 if (WIFSTOPPED(status))
3753                         st = WSTOPSIG(status);
3754                 else
3755 #endif
3756                         st = WTERMSIG(status);
3757                 if (sigonly) {
3758                         if (st == SIGINT || st == SIGPIPE)
3759                                 goto out;
3760 #if JOBS
3761                         if (WIFSTOPPED(status))
3762                                 goto out;
3763 #endif
3764                 }
3765                 st &= 0x7f;
3766                 col = fmtstr(s, 32, strsignal(st));
3767                 if (WCOREDUMP(status)) {
3768                         col += fmtstr(s + col, 16, " (core dumped)");
3769                 }
3770         } else if (!sigonly) {
3771                 st = WEXITSTATUS(status);
3772                 if (st)
3773                         col = fmtstr(s, 16, "Done(%d)", st);
3774                 else
3775                         col = fmtstr(s, 16, "Done");
3776         }
3777  out:
3778         return col;
3779 }
3780
3781 static int
3782 dowait(int wait_flags, struct job *job)
3783 {
3784         int pid;
3785         int status;
3786         struct job *jp;
3787         struct job *thisjob;
3788         int state;
3789
3790         TRACE(("dowait(0x%x) called\n", wait_flags));
3791
3792         /* Do a wait system call. If job control is compiled in, we accept
3793          * stopped processes. wait_flags may have WNOHANG, preventing blocking.
3794          * NB: _not_ safe_waitpid, we need to detect EINTR */
3795         if (doing_jobctl)
3796                 wait_flags |= WUNTRACED;
3797         pid = waitpid(-1, &status, wait_flags);
3798         TRACE(("wait returns pid=%d, status=0x%x, errno=%d(%s)\n",
3799                                 pid, status, errno, strerror(errno)));
3800         if (pid <= 0)
3801                 return pid;
3802
3803         INT_OFF;
3804         thisjob = NULL;
3805         for (jp = curjob; jp; jp = jp->prev_job) {
3806                 struct procstat *ps;
3807                 struct procstat *psend;
3808                 if (jp->state == JOBDONE)
3809                         continue;
3810                 state = JOBDONE;
3811                 ps = jp->ps;
3812                 psend = ps + jp->nprocs;
3813                 do {
3814                         if (ps->ps_pid == pid) {
3815                                 TRACE(("Job %d: changing status of proc %d "
3816                                         "from 0x%x to 0x%x\n",
3817                                         jobno(jp), pid, ps->ps_status, status));
3818                                 ps->ps_status = status;
3819                                 thisjob = jp;
3820                         }
3821                         if (ps->ps_status == -1)
3822                                 state = JOBRUNNING;
3823 #if JOBS
3824                         if (state == JOBRUNNING)
3825                                 continue;
3826                         if (WIFSTOPPED(ps->ps_status)) {
3827                                 jp->stopstatus = ps->ps_status;
3828                                 state = JOBSTOPPED;
3829                         }
3830 #endif
3831                 } while (++ps < psend);
3832                 if (thisjob)
3833                         goto gotjob;
3834         }
3835 #if JOBS
3836         if (!WIFSTOPPED(status))
3837 #endif
3838                 jobless--;
3839         goto out;
3840
3841  gotjob:
3842         if (state != JOBRUNNING) {
3843                 thisjob->changed = 1;
3844
3845                 if (thisjob->state != state) {
3846                         TRACE(("Job %d: changing state from %d to %d\n",
3847                                 jobno(thisjob), thisjob->state, state));
3848                         thisjob->state = state;
3849 #if JOBS
3850                         if (state == JOBSTOPPED) {
3851                                 set_curjob(thisjob, CUR_STOPPED);
3852                         }
3853 #endif
3854                 }
3855         }
3856
3857  out:
3858         INT_ON;
3859
3860         if (thisjob && thisjob == job) {
3861                 char s[48 + 1];
3862                 int len;
3863
3864                 len = sprint_status(s, status, 1);
3865                 if (len) {
3866                         s[len] = '\n';
3867                         s[len + 1] = '\0';
3868                         out2str(s);
3869                 }
3870         }
3871         return pid;
3872 }
3873
3874 static int
3875 blocking_wait_with_raise_on_sig(void)
3876 {
3877         pid_t pid = dowait(DOWAIT_BLOCK, NULL);
3878         if (pid <= 0 && pending_sig)
3879                 raise_exception(EXSIG);
3880         return pid;
3881 }
3882
3883 #if JOBS
3884 static void
3885 showjob(FILE *out, struct job *jp, int mode)
3886 {
3887         struct procstat *ps;
3888         struct procstat *psend;
3889         int col;
3890         int indent_col;
3891         char s[80];
3892
3893         ps = jp->ps;
3894
3895         if (mode & SHOW_ONLY_PGID) { /* jobs -p */
3896                 /* just output process (group) id of pipeline */
3897                 fprintf(out, "%d\n", ps->ps_pid);
3898                 return;
3899         }
3900
3901         col = fmtstr(s, 16, "[%d]   ", jobno(jp));
3902         indent_col = col;
3903
3904         if (jp == curjob)
3905                 s[col - 3] = '+';
3906         else if (curjob && jp == curjob->prev_job)
3907                 s[col - 3] = '-';
3908
3909         if (mode & SHOW_PIDS)
3910                 col += fmtstr(s + col, 16, "%d ", ps->ps_pid);
3911
3912         psend = ps + jp->nprocs;
3913
3914         if (jp->state == JOBRUNNING) {
3915                 strcpy(s + col, "Running");
3916                 col += sizeof("Running") - 1;
3917         } else {
3918                 int status = psend[-1].ps_status;
3919                 if (jp->state == JOBSTOPPED)
3920                         status = jp->stopstatus;
3921                 col += sprint_status(s + col, status, 0);
3922         }
3923         /* By now, "[JOBID]*  [maybe PID] STATUS" is printed */
3924
3925         /* This loop either prints "<cmd1> | <cmd2> | <cmd3>" line
3926          * or prints several "PID             | <cmdN>" lines,
3927          * depending on SHOW_PIDS bit.
3928          * We do not print status of individual processes
3929          * between PID and <cmdN>. bash does it, but not very well:
3930          * first line shows overall job status, not process status,
3931          * making it impossible to know 1st process status.
3932          */
3933         goto start;
3934         do {
3935                 /* for each process */
3936                 s[0] = '\0';
3937                 col = 33;
3938                 if (mode & SHOW_PIDS)
3939                         col = fmtstr(s, 48, "\n%*c%d ", indent_col, ' ', ps->ps_pid) - 1;
3940  start:
3941                 fprintf(out, "%s%*c%s%s",
3942                                 s,
3943                                 33 - col >= 0 ? 33 - col : 0, ' ',
3944                                 ps == jp->ps ? "" : "| ",
3945                                 ps->ps_cmd
3946                 );
3947         } while (++ps != psend);
3948         outcslow('\n', out);
3949
3950         jp->changed = 0;
3951
3952         if (jp->state == JOBDONE) {
3953                 TRACE(("showjob: freeing job %d\n", jobno(jp)));
3954                 freejob(jp);
3955         }
3956 }
3957
3958 /*
3959  * Print a list of jobs.  If "change" is nonzero, only print jobs whose
3960  * statuses have changed since the last call to showjobs.
3961  */
3962 static void
3963 showjobs(FILE *out, int mode)
3964 {
3965         struct job *jp;
3966
3967         TRACE(("showjobs(0x%x) called\n", mode));
3968
3969         /* Handle all finished jobs */
3970         while (dowait(DOWAIT_NONBLOCK, NULL) > 0)
3971                 continue;
3972
3973         for (jp = curjob; jp; jp = jp->prev_job) {
3974                 if (!(mode & SHOW_CHANGED) || jp->changed) {
3975                         showjob(out, jp, mode);
3976                 }
3977         }
3978 }
3979
3980 static int FAST_FUNC
3981 jobscmd(int argc UNUSED_PARAM, char **argv)
3982 {
3983         int mode, m;
3984
3985         mode = 0;
3986         while ((m = nextopt("lp")) != '\0') {
3987                 if (m == 'l')
3988                         mode |= SHOW_PIDS;
3989                 else
3990                         mode |= SHOW_ONLY_PGID;
3991         }
3992
3993         argv = argptr;
3994         if (*argv) {
3995                 do
3996                         showjob(stdout, getjob(*argv, 0), mode);
3997                 while (*++argv);
3998         } else {
3999                 showjobs(stdout, mode);
4000         }
4001
4002         return 0;
4003 }
4004 #endif /* JOBS */
4005
4006 /* Called only on finished or stopped jobs (no members are running) */
4007 static int
4008 getstatus(struct job *job)
4009 {
4010         int status;
4011         int retval;
4012         struct procstat *ps;
4013
4014         /* Fetch last member's status */
4015         ps = job->ps + job->nprocs - 1;
4016         status = ps->ps_status;
4017         if (pipefail) {
4018                 /* "set -o pipefail" mode: use last _nonzero_ status */
4019                 while (status == 0 && --ps >= job->ps)
4020                         status = ps->ps_status;
4021         }
4022
4023         retval = WEXITSTATUS(status);
4024         if (!WIFEXITED(status)) {
4025 #if JOBS
4026                 retval = WSTOPSIG(status);
4027                 if (!WIFSTOPPED(status))
4028 #endif
4029                 {
4030                         /* XXX: limits number of signals */
4031                         retval = WTERMSIG(status);
4032 #if JOBS
4033                         if (retval == SIGINT)
4034                                 job->sigint = 1;
4035 #endif
4036                 }
4037                 retval += 128;
4038         }
4039         TRACE(("getstatus: job %d, nproc %d, status 0x%x, retval 0x%x\n",
4040                 jobno(job), job->nprocs, status, retval));
4041         return retval;
4042 }
4043
4044 static int FAST_FUNC
4045 waitcmd(int argc UNUSED_PARAM, char **argv)
4046 {
4047         struct job *job;
4048         int retval;
4049         struct job *jp;
4050
4051         if (pending_sig)
4052                 raise_exception(EXSIG);
4053
4054         nextopt(nullstr);
4055         retval = 0;
4056
4057         argv = argptr;
4058         if (!*argv) {
4059                 /* wait for all jobs */
4060                 for (;;) {
4061                         jp = curjob;
4062                         while (1) {
4063                                 if (!jp) /* no running procs */
4064                                         goto ret;
4065                                 if (jp->state == JOBRUNNING)
4066                                         break;
4067                                 jp->waited = 1;
4068                                 jp = jp->prev_job;
4069                         }
4070                         blocking_wait_with_raise_on_sig();
4071         /* man bash:
4072          * "When bash is waiting for an asynchronous command via
4073          * the wait builtin, the reception of a signal for which a trap
4074          * has been set will cause the wait builtin to return immediately
4075          * with an exit status greater than 128, immediately after which
4076          * the trap is executed."
4077          *
4078          * blocking_wait_with_raise_on_sig raises signal handlers
4079          * if it gets no pid (pid < 0). However,
4080          * if child sends us a signal *and immediately exits*,
4081          * blocking_wait_with_raise_on_sig gets pid > 0
4082          * and does not handle pending_sig. Check this case: */
4083                         if (pending_sig)
4084                                 raise_exception(EXSIG);
4085                 }
4086         }
4087
4088         retval = 127;
4089         do {
4090                 if (**argv != '%') {
4091                         pid_t pid = number(*argv);
4092                         job = curjob;
4093                         while (1) {
4094                                 if (!job)
4095                                         goto repeat;
4096                                 if (job->ps[job->nprocs - 1].ps_pid == pid)
4097                                         break;
4098                                 job = job->prev_job;
4099                         }
4100                 } else
4101                         job = getjob(*argv, 0);
4102                 /* loop until process terminated or stopped */
4103                 while (job->state == JOBRUNNING)
4104                         blocking_wait_with_raise_on_sig();
4105                 job->waited = 1;
4106                 retval = getstatus(job);
4107  repeat: ;
4108         } while (*++argv);
4109
4110  ret:
4111         return retval;
4112 }
4113
4114 static struct job *
4115 growjobtab(void)
4116 {
4117         size_t len;
4118         ptrdiff_t offset;
4119         struct job *jp, *jq;
4120
4121         len = njobs * sizeof(*jp);
4122         jq = jobtab;
4123         jp = ckrealloc(jq, len + 4 * sizeof(*jp));
4124
4125         offset = (char *)jp - (char *)jq;
4126         if (offset) {
4127                 /* Relocate pointers */
4128                 size_t l = len;
4129
4130                 jq = (struct job *)((char *)jq + l);
4131                 while (l) {
4132                         l -= sizeof(*jp);
4133                         jq--;
4134 #define joff(p) ((struct job *)((char *)(p) + l))
4135 #define jmove(p) (p) = (void *)((char *)(p) + offset)
4136                         if (joff(jp)->ps == &jq->ps0)
4137                                 jmove(joff(jp)->ps);
4138                         if (joff(jp)->prev_job)
4139                                 jmove(joff(jp)->prev_job);
4140                 }
4141                 if (curjob)
4142                         jmove(curjob);
4143 #undef joff
4144 #undef jmove
4145         }
4146
4147         njobs += 4;
4148         jobtab = jp;
4149         jp = (struct job *)((char *)jp + len);
4150         jq = jp + 3;
4151         do {
4152                 jq->used = 0;
4153         } while (--jq >= jp);
4154         return jp;
4155 }
4156
4157 /*
4158  * Return a new job structure.
4159  * Called with interrupts off.
4160  */
4161 static struct job *
4162 makejob(/*union node *node,*/ int nprocs)
4163 {
4164         int i;
4165         struct job *jp;
4166
4167         for (i = njobs, jp = jobtab; ; jp++) {
4168                 if (--i < 0) {
4169                         jp = growjobtab();
4170                         break;
4171                 }
4172                 if (jp->used == 0)
4173                         break;
4174                 if (jp->state != JOBDONE || !jp->waited)
4175                         continue;
4176 #if JOBS
4177                 if (doing_jobctl)
4178                         continue;
4179 #endif
4180                 freejob(jp);
4181                 break;
4182         }
4183         memset(jp, 0, sizeof(*jp));
4184 #if JOBS
4185         /* jp->jobctl is a bitfield.
4186          * "jp->jobctl |= jobctl" likely to give awful code */
4187         if (doing_jobctl)
4188                 jp->jobctl = 1;
4189 #endif
4190         jp->prev_job = curjob;
4191         curjob = jp;
4192         jp->used = 1;
4193         jp->ps = &jp->ps0;
4194         if (nprocs > 1) {
4195                 jp->ps = ckmalloc(nprocs * sizeof(struct procstat));
4196         }
4197         TRACE(("makejob(%d) returns %%%d\n", nprocs,
4198                                 jobno(jp)));
4199         return jp;
4200 }
4201
4202 #if JOBS
4203 /*
4204  * Return a string identifying a command (to be printed by the
4205  * jobs command).
4206  */
4207 static char *cmdnextc;
4208
4209 static void
4210 cmdputs(const char *s)
4211 {
4212         static const char vstype[VSTYPE + 1][3] = {
4213                 "", "}", "-", "+", "?", "=",
4214                 "%", "%%", "#", "##"
4215                 IF_ASH_BASH_COMPAT(, ":", "/", "//")
4216         };
4217
4218         const char *p, *str;
4219         char cc[2];
4220         char *nextc;
4221         unsigned char c;
4222         unsigned char subtype = 0;
4223         int quoted = 0;
4224
4225         cc[1] = '\0';
4226         nextc = makestrspace((strlen(s) + 1) * 8, cmdnextc);
4227         p = s;
4228         while ((c = *p++) != '\0') {
4229                 str = NULL;
4230                 switch (c) {
4231                 case CTLESC:
4232                         c = *p++;
4233                         break;
4234                 case CTLVAR:
4235                         subtype = *p++;
4236                         if ((subtype & VSTYPE) == VSLENGTH)
4237                                 str = "${#";
4238                         else
4239                                 str = "${";
4240                         if (!(subtype & VSQUOTE) == !(quoted & 1))
4241                                 goto dostr;
4242                         quoted ^= 1;
4243                         c = '"';
4244                         break;
4245                 case CTLENDVAR:
4246                         str = "\"}" + !(quoted & 1);
4247                         quoted >>= 1;
4248                         subtype = 0;
4249                         goto dostr;
4250                 case CTLBACKQ:
4251                         str = "$(...)";
4252                         goto dostr;
4253                 case CTLBACKQ+CTLQUOTE:
4254                         str = "\"$(...)\"";
4255                         goto dostr;
4256 #if ENABLE_SH_MATH_SUPPORT
4257                 case CTLARI:
4258                         str = "$((";
4259                         goto dostr;
4260                 case CTLENDARI:
4261                         str = "))";
4262                         goto dostr;
4263 #endif
4264                 case CTLQUOTEMARK:
4265                         quoted ^= 1;
4266                         c = '"';
4267                         break;
4268                 case '=':
4269                         if (subtype == 0)
4270                                 break;
4271                         if ((subtype & VSTYPE) != VSNORMAL)
4272                                 quoted <<= 1;
4273                         str = vstype[subtype & VSTYPE];
4274                         if (subtype & VSNUL)
4275                                 c = ':';
4276                         else
4277                                 goto checkstr;
4278                         break;
4279                 case '\'':
4280                 case '\\':
4281                 case '"':
4282                 case '$':
4283                         /* These can only happen inside quotes */
4284                         cc[0] = c;
4285                         str = cc;
4286                         c = '\\';
4287                         break;
4288                 default:
4289                         break;
4290                 }
4291                 USTPUTC(c, nextc);
4292  checkstr:
4293                 if (!str)
4294                         continue;
4295  dostr:
4296                 while ((c = *str++) != '\0') {
4297                         USTPUTC(c, nextc);
4298                 }
4299         } /* while *p++ not NUL */
4300
4301         if (quoted & 1) {
4302                 USTPUTC('"', nextc);
4303         }
4304         *nextc = 0;
4305         cmdnextc = nextc;
4306 }
4307
4308 /* cmdtxt() and cmdlist() call each other */
4309 static void cmdtxt(union node *n);
4310
4311 static void
4312 cmdlist(union node *np, int sep)
4313 {
4314         for (; np; np = np->narg.next) {
4315                 if (!sep)
4316                         cmdputs(" ");
4317                 cmdtxt(np);
4318                 if (sep && np->narg.next)
4319                         cmdputs(" ");
4320         }
4321 }
4322
4323 static void
4324 cmdtxt(union node *n)
4325 {
4326         union node *np;
4327         struct nodelist *lp;
4328         const char *p;
4329
4330         if (!n)
4331                 return;
4332         switch (n->type) {
4333         default:
4334 #if DEBUG
4335                 abort();
4336 #endif
4337         case NPIPE:
4338                 lp = n->npipe.cmdlist;
4339                 for (;;) {
4340                         cmdtxt(lp->n);
4341                         lp = lp->next;
4342                         if (!lp)
4343                                 break;
4344                         cmdputs(" | ");
4345                 }
4346                 break;
4347         case NSEMI:
4348                 p = "; ";
4349                 goto binop;
4350         case NAND:
4351                 p = " && ";
4352                 goto binop;
4353         case NOR:
4354                 p = " || ";
4355  binop:
4356                 cmdtxt(n->nbinary.ch1);
4357                 cmdputs(p);
4358                 n = n->nbinary.ch2;
4359                 goto donode;
4360         case NREDIR:
4361         case NBACKGND:
4362                 n = n->nredir.n;
4363                 goto donode;
4364         case NNOT:
4365                 cmdputs("!");
4366                 n = n->nnot.com;
4367  donode:
4368                 cmdtxt(n);
4369                 break;
4370         case NIF:
4371                 cmdputs("if ");
4372                 cmdtxt(n->nif.test);
4373                 cmdputs("; then ");
4374                 if (n->nif.elsepart) {
4375                         cmdtxt(n->nif.ifpart);
4376                         cmdputs("; else ");
4377                         n = n->nif.elsepart;
4378                 } else {
4379                         n = n->nif.ifpart;
4380                 }
4381                 p = "; fi";
4382                 goto dotail;
4383         case NSUBSHELL:
4384                 cmdputs("(");
4385                 n = n->nredir.n;
4386                 p = ")";
4387                 goto dotail;
4388         case NWHILE:
4389                 p = "while ";
4390                 goto until;
4391         case NUNTIL:
4392                 p = "until ";
4393  until:
4394                 cmdputs(p);
4395                 cmdtxt(n->nbinary.ch1);
4396                 n = n->nbinary.ch2;
4397                 p = "; done";
4398  dodo:
4399                 cmdputs("; do ");
4400  dotail:
4401                 cmdtxt(n);
4402                 goto dotail2;
4403         case NFOR:
4404                 cmdputs("for ");
4405                 cmdputs(n->nfor.var);
4406                 cmdputs(" in ");
4407                 cmdlist(n->nfor.args, 1);
4408                 n = n->nfor.body;
4409                 p = "; done";
4410                 goto dodo;
4411         case NDEFUN:
4412                 cmdputs(n->narg.text);
4413                 p = "() { ... }";
4414                 goto dotail2;
4415         case NCMD:
4416                 cmdlist(n->ncmd.args, 1);
4417                 cmdlist(n->ncmd.redirect, 0);
4418                 break;
4419         case NARG:
4420                 p = n->narg.text;
4421  dotail2:
4422                 cmdputs(p);
4423                 break;
4424         case NHERE:
4425         case NXHERE:
4426                 p = "<<...";
4427                 goto dotail2;
4428         case NCASE:
4429                 cmdputs("case ");
4430                 cmdputs(n->ncase.expr->narg.text);
4431                 cmdputs(" in ");
4432                 for (np = n->ncase.cases; np; np = np->nclist.next) {
4433                         cmdtxt(np->nclist.pattern);
4434                         cmdputs(") ");
4435                         cmdtxt(np->nclist.body);
4436                         cmdputs(";; ");
4437                 }
4438                 p = "esac";
4439                 goto dotail2;
4440         case NTO:
4441                 p = ">";
4442                 goto redir;
4443         case NCLOBBER:
4444                 p = ">|";
4445                 goto redir;
4446         case NAPPEND:
4447                 p = ">>";
4448                 goto redir;
4449 #if ENABLE_ASH_BASH_COMPAT
4450         case NTO2:
4451 #endif
4452         case NTOFD:
4453                 p = ">&";
4454                 goto redir;
4455         case NFROM:
4456                 p = "<";
4457                 goto redir;
4458         case NFROMFD:
4459                 p = "<&";
4460                 goto redir;
4461         case NFROMTO:
4462                 p = "<>";
4463  redir:
4464                 cmdputs(utoa(n->nfile.fd));
4465                 cmdputs(p);
4466                 if (n->type == NTOFD || n->type == NFROMFD) {
4467                         cmdputs(utoa(n->ndup.dupfd));
4468                         break;
4469                 }
4470                 n = n->nfile.fname;
4471                 goto donode;
4472         }
4473 }
4474
4475 static char *
4476 commandtext(union node *n)
4477 {
4478         char *name;
4479
4480         STARTSTACKSTR(cmdnextc);
4481         cmdtxt(n);
4482         name = stackblock();
4483         TRACE(("commandtext: name %p, end %p\n\t\"%s\"\n",
4484                         name, cmdnextc, cmdnextc));
4485         return ckstrdup(name);
4486 }
4487 #endif /* JOBS */
4488
4489 /*
4490  * Fork off a subshell.  If we are doing job control, give the subshell its
4491  * own process group.  Jp is a job structure that the job is to be added to.
4492  * N is the command that will be evaluated by the child.  Both jp and n may
4493  * be NULL.  The mode parameter can be one of the following:
4494  *      FORK_FG - Fork off a foreground process.
4495  *      FORK_BG - Fork off a background process.
4496  *      FORK_NOJOB - Like FORK_FG, but don't give the process its own
4497  *                   process group even if job control is on.
4498  *
4499  * When job control is turned off, background processes have their standard
4500  * input redirected to /dev/null (except for the second and later processes
4501  * in a pipeline).
4502  *
4503  * Called with interrupts off.
4504  */
4505 /*
4506  * Clear traps on a fork.
4507  */
4508 static void
4509 clear_traps(void)
4510 {
4511         char **tp;
4512
4513         for (tp = trap; tp < &trap[NSIG]; tp++) {
4514                 if (*tp && **tp) {      /* trap not NULL or "" (SIG_IGN) */
4515                         INT_OFF;
4516                         if (trap_ptr == trap)
4517                                 free(*tp);
4518                         /* else: it "belongs" to trap_ptr vector, don't free */
4519                         *tp = NULL;
4520                         if ((tp - trap) != 0)
4521                                 setsignal(tp - trap);
4522                         INT_ON;
4523                 }
4524         }
4525 }
4526
4527 /* Lives far away from here, needed for forkchild */
4528 static void closescript(void);
4529
4530 /* Called after fork(), in child */
4531 static NOINLINE void
4532 forkchild(struct job *jp, union node *n, int mode)
4533 {
4534         int oldlvl;
4535
4536         TRACE(("Child shell %d\n", getpid()));
4537         oldlvl = shlvl;
4538         shlvl++;
4539
4540         /* man bash: "Non-builtin commands run by bash have signal handlers
4541          * set to the values inherited by the shell from its parent".
4542          * Do we do it correctly? */
4543
4544         closescript();
4545
4546         if (mode == FORK_NOJOB          /* is it `xxx` ? */
4547          && n && n->type == NCMD        /* is it single cmd? */
4548         /* && n->ncmd.args->type == NARG - always true? */
4549          && n->ncmd.args && strcmp(n->ncmd.args->narg.text, "trap") == 0
4550          && n->ncmd.args->narg.next == NULL /* "trap" with no arguments */
4551         /* && n->ncmd.args->narg.backquote == NULL - do we need to check this? */
4552         ) {
4553                 TRACE(("Trap hack\n"));
4554                 /* Awful hack for `trap` or $(trap).
4555                  *
4556                  * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html
4557                  * contains an example where "trap" is executed in a subshell:
4558                  *
4559                  * save_traps=$(trap)
4560                  * ...
4561                  * eval "$save_traps"
4562                  *
4563                  * Standard does not say that "trap" in subshell shall print
4564                  * parent shell's traps. It only says that its output
4565                  * must have suitable form, but then, in the above example
4566                  * (which is not supposed to be normative), it implies that.
4567                  *
4568                  * bash (and probably other shell) does implement it
4569                  * (traps are reset to defaults, but "trap" still shows them),
4570                  * but as a result, "trap" logic is hopelessly messed up:
4571                  *
4572                  * # trap
4573                  * trap -- 'echo Ho' SIGWINCH  <--- we have a handler
4574                  * # (trap)        <--- trap is in subshell - no output (correct, traps are reset)
4575                  * # true | trap   <--- trap is in subshell - no output (ditto)
4576                  * # echo `true | trap`    <--- in subshell - output (but traps are reset!)
4577                  * trap -- 'echo Ho' SIGWINCH
4578                  * # echo `(trap)`         <--- in subshell in subshell - output
4579                  * trap -- 'echo Ho' SIGWINCH
4580                  * # echo `true | (trap)`  <--- in subshell in subshell in subshell - output!
4581                  * trap -- 'echo Ho' SIGWINCH
4582                  *
4583                  * The rules when to forget and when to not forget traps
4584                  * get really complex and nonsensical.
4585                  *
4586                  * Our solution: ONLY bare $(trap) or `trap` is special.
4587                  */
4588                 /* Save trap handler strings for trap builtin to print */
4589                 trap_ptr = memcpy(xmalloc(sizeof(trap)), trap, sizeof(trap));
4590                 /* Fall through into clearing traps */
4591         }
4592         clear_traps();
4593 #if JOBS
4594         /* do job control only in root shell */
4595         doing_jobctl = 0;
4596         if (mode != FORK_NOJOB && jp->jobctl && !oldlvl) {
4597                 pid_t pgrp;
4598
4599                 if (jp->nprocs == 0)
4600                         pgrp = getpid();
4601                 else
4602                         pgrp = jp->ps[0].ps_pid;
4603                 /* this can fail because we are doing it in the parent also */
4604                 setpgid(0, pgrp);
4605                 if (mode == FORK_FG)
4606                         xtcsetpgrp(ttyfd, pgrp);
4607                 setsignal(SIGTSTP);
4608                 setsignal(SIGTTOU);
4609         } else
4610 #endif
4611         if (mode == FORK_BG) {
4612                 /* man bash: "When job control is not in effect,
4613                  * asynchronous commands ignore SIGINT and SIGQUIT" */
4614                 ignoresig(SIGINT);
4615                 ignoresig(SIGQUIT);
4616                 if (jp->nprocs == 0) {
4617                         close(0);
4618                         if (open(bb_dev_null, O_RDONLY) != 0)
4619                                 ash_msg_and_raise_error("can't open '%s'", bb_dev_null);
4620                 }
4621         }
4622         if (!oldlvl) {
4623                 if (iflag) { /* why if iflag only? */
4624                         setsignal(SIGINT);
4625                         setsignal(SIGTERM);
4626                 }
4627                 /* man bash:
4628                  * "In all cases, bash ignores SIGQUIT. Non-builtin
4629                  * commands run by bash have signal handlers
4630                  * set to the values inherited by the shell
4631                  * from its parent".
4632                  * Take care of the second rule: */
4633                 setsignal(SIGQUIT);
4634         }
4635 #if JOBS
4636         if (n && n->type == NCMD
4637          && n->ncmd.args && strcmp(n->ncmd.args->narg.text, "jobs") == 0
4638         ) {
4639                 TRACE(("Job hack\n"));
4640                 /* "jobs": we do not want to clear job list for it,
4641                  * instead we remove only _its_ own_ job from job list.
4642                  * This makes "jobs .... | cat" more useful.
4643                  */
4644                 freejob(curjob);
4645                 return;
4646         }
4647 #endif
4648         for (jp = curjob; jp; jp = jp->prev_job)
4649                 freejob(jp);
4650         jobless = 0;
4651 }
4652
4653 /* Called after fork(), in parent */
4654 #if !JOBS
4655 #define forkparent(jp, n, mode, pid) forkparent(jp, mode, pid)
4656 #endif
4657 static void
4658 forkparent(struct job *jp, union node *n, int mode, pid_t pid)
4659 {
4660         TRACE(("In parent shell: child = %d\n", pid));
4661         if (!jp) {
4662                 while (jobless && dowait(DOWAIT_NONBLOCK, NULL) > 0)
4663                         continue;
4664                 jobless++;
4665                 return;
4666         }
4667 #if JOBS
4668         if (mode != FORK_NOJOB && jp->jobctl) {
4669                 int pgrp;
4670
4671                 if (jp->nprocs == 0)
4672                         pgrp = pid;
4673                 else
4674                         pgrp = jp->ps[0].ps_pid;
4675                 /* This can fail because we are doing it in the child also */
4676                 setpgid(pid, pgrp);
4677         }
4678 #endif
4679         if (mode == FORK_BG) {
4680                 backgndpid = pid;               /* set $! */
4681                 set_curjob(jp, CUR_RUNNING);
4682         }
4683         if (jp) {
4684                 struct procstat *ps = &jp->ps[jp->nprocs++];
4685                 ps->ps_pid = pid;
4686                 ps->ps_status = -1;
4687                 ps->ps_cmd = nullstr;
4688 #if JOBS
4689                 if (doing_jobctl && n)
4690                         ps->ps_cmd = commandtext(n);
4691 #endif
4692         }
4693 }
4694
4695 static int
4696 forkshell(struct job *jp, union node *n, int mode)
4697 {
4698         int pid;
4699
4700         TRACE(("forkshell(%%%d, %p, %d) called\n", jobno(jp), n, mode));
4701         pid = fork();
4702         if (pid < 0) {
4703                 TRACE(("Fork failed, errno=%d", errno));
4704                 if (jp)
4705                         freejob(jp);
4706                 ash_msg_and_raise_error("can't fork");
4707         }
4708         if (pid == 0) {
4709                 CLEAR_RANDOM_T(&random_gen); /* or else $RANDOM repeats in child */
4710                 forkchild(jp, n, mode);
4711         } else {
4712                 forkparent(jp, n, mode, pid);
4713         }
4714         return pid;
4715 }
4716
4717 /*
4718  * Wait for job to finish.
4719  *
4720  * Under job control we have the problem that while a child process
4721  * is running interrupts generated by the user are sent to the child
4722  * but not to the shell.  This means that an infinite loop started by
4723  * an interactive user may be hard to kill.  With job control turned off,
4724  * an interactive user may place an interactive program inside a loop.
4725  * If the interactive program catches interrupts, the user doesn't want
4726  * these interrupts to also abort the loop.  The approach we take here
4727  * is to have the shell ignore interrupt signals while waiting for a
4728  * foreground process to terminate, and then send itself an interrupt
4729  * signal if the child process was terminated by an interrupt signal.
4730  * Unfortunately, some programs want to do a bit of cleanup and then
4731  * exit on interrupt; unless these processes terminate themselves by
4732  * sending a signal to themselves (instead of calling exit) they will
4733  * confuse this approach.
4734  *
4735  * Called with interrupts off.
4736  */
4737 static int
4738 waitforjob(struct job *jp)
4739 {
4740         int st;
4741
4742         TRACE(("waitforjob(%%%d) called\n", jobno(jp)));
4743
4744         INT_OFF;
4745         while (jp->state == JOBRUNNING) {
4746                 /* In non-interactive shells, we _can_ get
4747                  * a keyboard signal here and be EINTRed,
4748                  * but we just loop back, waiting for command to complete.
4749                  *
4750                  * man bash:
4751                  * "If bash is waiting for a command to complete and receives
4752                  * a signal for which a trap has been set, the trap
4753                  * will not be executed until the command completes."
4754                  *
4755                  * Reality is that even if trap is not set, bash
4756                  * will not act on the signal until command completes.
4757                  * Try this. sleep5intoff.c:
4758                  * #include <signal.h>
4759                  * #include <unistd.h>
4760                  * int main() {
4761                  *         sigset_t set;
4762                  *         sigemptyset(&set);
4763                  *         sigaddset(&set, SIGINT);
4764                  *         sigaddset(&set, SIGQUIT);
4765                  *         sigprocmask(SIG_BLOCK, &set, NULL);
4766                  *         sleep(5);
4767                  *         return 0;
4768                  * }
4769                  * $ bash -c './sleep5intoff; echo hi'
4770                  * ^C^C^C^C <--- pressing ^C once a second
4771                  * $ _
4772                  * $ bash -c './sleep5intoff; echo hi'
4773                  * ^\^\^\^\hi <--- pressing ^\ (SIGQUIT)
4774                  * $ _
4775                  */
4776                 dowait(DOWAIT_BLOCK, jp);
4777         }
4778         INT_ON;
4779
4780         st = getstatus(jp);
4781 #if JOBS
4782         if (jp->jobctl) {
4783                 xtcsetpgrp(ttyfd, rootpid);
4784                 /*
4785                  * This is truly gross.
4786                  * If we're doing job control, then we did a TIOCSPGRP which
4787                  * caused us (the shell) to no longer be in the controlling
4788                  * session -- so we wouldn't have seen any ^C/SIGINT.  So, we
4789                  * intuit from the subprocess exit status whether a SIGINT
4790                  * occurred, and if so interrupt ourselves.  Yuck.  - mycroft
4791                  */
4792                 if (jp->sigint) /* TODO: do the same with all signals */
4793                         raise(SIGINT); /* ... by raise(jp->sig) instead? */
4794         }
4795         if (jp->state == JOBDONE)
4796 #endif
4797                 freejob(jp);
4798         return st;
4799 }
4800
4801 /*
4802  * return 1 if there are stopped jobs, otherwise 0
4803  */
4804 static int
4805 stoppedjobs(void)
4806 {
4807         struct job *jp;
4808         int retval;
4809
4810         retval = 0;
4811         if (job_warning)
4812                 goto out;
4813         jp = curjob;
4814         if (jp && jp->state == JOBSTOPPED) {
4815                 out2str("You have stopped jobs.\n");
4816                 job_warning = 2;
4817                 retval++;
4818         }
4819  out:
4820         return retval;
4821 }
4822
4823
4824 /* ============ redir.c
4825  *
4826  * Code for dealing with input/output redirection.
4827  */
4828
4829 #define EMPTY -2                /* marks an unused slot in redirtab */
4830 #define CLOSED -3               /* marks a slot of previously-closed fd */
4831
4832 /*
4833  * Open a file in noclobber mode.
4834  * The code was copied from bash.
4835  */
4836 static int
4837 noclobberopen(const char *fname)
4838 {
4839         int r, fd;
4840         struct stat finfo, finfo2;
4841
4842         /*
4843          * If the file exists and is a regular file, return an error
4844          * immediately.
4845          */
4846         r = stat(fname, &finfo);
4847         if (r == 0 && S_ISREG(finfo.st_mode)) {
4848                 errno = EEXIST;
4849                 return -1;
4850         }
4851
4852         /*
4853          * If the file was not present (r != 0), make sure we open it
4854          * exclusively so that if it is created before we open it, our open
4855          * will fail.  Make sure that we do not truncate an existing file.
4856          * Note that we don't turn on O_EXCL unless the stat failed -- if the
4857          * file was not a regular file, we leave O_EXCL off.
4858          */
4859         if (r != 0)
4860                 return open(fname, O_WRONLY|O_CREAT|O_EXCL, 0666);
4861         fd = open(fname, O_WRONLY|O_CREAT, 0666);
4862
4863         /* If the open failed, return the file descriptor right away. */
4864         if (fd < 0)
4865                 return fd;
4866
4867         /*
4868          * OK, the open succeeded, but the file may have been changed from a
4869          * non-regular file to a regular file between the stat and the open.
4870          * We are assuming that the O_EXCL open handles the case where FILENAME
4871          * did not exist and is symlinked to an existing file between the stat
4872          * and open.
4873          */
4874
4875         /*
4876          * If we can open it and fstat the file descriptor, and neither check
4877          * revealed that it was a regular file, and the file has not been
4878          * replaced, return the file descriptor.
4879          */
4880         if (fstat(fd, &finfo2) == 0 && !S_ISREG(finfo2.st_mode)
4881          && finfo.st_dev == finfo2.st_dev && finfo.st_ino == finfo2.st_ino)
4882                 return fd;
4883
4884         /* The file has been replaced.  badness. */
4885         close(fd);
4886         errno = EEXIST;
4887         return -1;
4888 }
4889
4890 /*
4891  * Handle here documents.  Normally we fork off a process to write the
4892  * data to a pipe.  If the document is short, we can stuff the data in
4893  * the pipe without forking.
4894  */
4895 /* openhere needs this forward reference */
4896 static void expandhere(union node *arg, int fd);
4897 static int
4898 openhere(union node *redir)
4899 {
4900         int pip[2];
4901         size_t len = 0;
4902
4903         if (pipe(pip) < 0)
4904                 ash_msg_and_raise_error("pipe call failed");
4905         if (redir->type == NHERE) {
4906                 len = strlen(redir->nhere.doc->narg.text);
4907                 if (len <= PIPE_BUF) {
4908                         full_write(pip[1], redir->nhere.doc->narg.text, len);
4909                         goto out;
4910                 }
4911         }
4912         if (forkshell((struct job *)NULL, (union node *)NULL, FORK_NOJOB) == 0) {
4913                 /* child */
4914                 close(pip[0]);
4915                 ignoresig(SIGINT);  //signal(SIGINT, SIG_IGN);
4916                 ignoresig(SIGQUIT); //signal(SIGQUIT, SIG_IGN);
4917                 ignoresig(SIGHUP);  //signal(SIGHUP, SIG_IGN);
4918                 ignoresig(SIGTSTP); //signal(SIGTSTP, SIG_IGN);
4919                 signal(SIGPIPE, SIG_DFL);
4920                 if (redir->type == NHERE)
4921                         full_write(pip[1], redir->nhere.doc->narg.text, len);
4922                 else /* NXHERE */
4923                         expandhere(redir->nhere.doc, pip[1]);
4924                 _exit(EXIT_SUCCESS);
4925         }
4926  out:
4927         close(pip[1]);
4928         return pip[0];
4929 }
4930
4931 static int
4932 openredirect(union node *redir)
4933 {
4934         char *fname;
4935         int f;
4936
4937         switch (redir->nfile.type) {
4938         case NFROM:
4939                 fname = redir->nfile.expfname;
4940                 f = open(fname, O_RDONLY);
4941                 if (f < 0)
4942                         goto eopen;
4943                 break;
4944         case NFROMTO:
4945                 fname = redir->nfile.expfname;
4946                 f = open(fname, O_RDWR|O_CREAT|O_TRUNC, 0666);
4947                 if (f < 0)
4948                         goto ecreate;
4949                 break;
4950         case NTO:
4951 #if ENABLE_ASH_BASH_COMPAT
4952         case NTO2:
4953 #endif
4954                 /* Take care of noclobber mode. */
4955                 if (Cflag) {
4956                         fname = redir->nfile.expfname;
4957                         f = noclobberopen(fname);
4958                         if (f < 0)
4959                                 goto ecreate;
4960                         break;
4961                 }
4962                 /* FALLTHROUGH */
4963         case NCLOBBER:
4964                 fname = redir->nfile.expfname;
4965                 f = open(fname, O_WRONLY|O_CREAT|O_TRUNC, 0666);
4966                 if (f < 0)
4967                         goto ecreate;
4968                 break;
4969         case NAPPEND:
4970                 fname = redir->nfile.expfname;
4971                 f = open(fname, O_WRONLY|O_CREAT|O_APPEND, 0666);
4972                 if (f < 0)
4973                         goto ecreate;
4974                 break;
4975         default:
4976 #if DEBUG
4977                 abort();
4978 #endif
4979                 /* Fall through to eliminate warning. */
4980 /* Our single caller does this itself */
4981 //      case NTOFD:
4982 //      case NFROMFD:
4983 //              f = -1;
4984 //              break;
4985         case NHERE:
4986         case NXHERE:
4987                 f = openhere(redir);
4988                 break;
4989         }
4990
4991         return f;
4992  ecreate:
4993         ash_msg_and_raise_error("can't create %s: %s", fname, errmsg(errno, "nonexistent directory"));
4994  eopen:
4995         ash_msg_and_raise_error("can't open %s: %s", fname, errmsg(errno, "no such file"));
4996 }
4997
4998 /*
4999  * Copy a file descriptor to be >= to.  Returns -1
5000  * if the source file descriptor is closed, EMPTY if there are no unused
5001  * file descriptors left.
5002  */
5003 /* 0x800..00: bit to set in "to" to request dup2 instead of fcntl(F_DUPFD).
5004  * old code was doing close(to) prior to copyfd() to achieve the same */
5005 enum {
5006         COPYFD_EXACT   = (int)~(INT_MAX),
5007         COPYFD_RESTORE = (int)((unsigned)COPYFD_EXACT >> 1),
5008 };
5009 static int
5010 copyfd(int from, int to)
5011 {
5012         int newfd;
5013
5014         if (to & COPYFD_EXACT) {
5015                 to &= ~COPYFD_EXACT;
5016                 /*if (from != to)*/
5017                         newfd = dup2(from, to);
5018         } else {
5019                 newfd = fcntl(from, F_DUPFD, to);
5020         }
5021         if (newfd < 0) {
5022                 if (errno == EMFILE)
5023                         return EMPTY;
5024                 /* Happens when source fd is not open: try "echo >&99" */
5025                 ash_msg_and_raise_error("%d: %m", from);
5026         }
5027         return newfd;
5028 }
5029
5030 /* Struct def and variable are moved down to the first usage site */
5031 struct two_fd_t {
5032         int orig, copy;
5033 };
5034 struct redirtab {
5035         struct redirtab *next;
5036         int nullredirs;
5037         int pair_count;
5038         struct two_fd_t two_fd[];
5039 };
5040 #define redirlist (G_var.redirlist)
5041
5042 static int need_to_remember(struct redirtab *rp, int fd)
5043 {
5044         int i;
5045
5046         if (!rp) /* remembering was not requested */
5047                 return 0;
5048
5049         for (i = 0; i < rp->pair_count; i++) {
5050                 if (rp->two_fd[i].orig == fd) {
5051                         /* already remembered */
5052                         return 0;
5053                 }
5054         }
5055         return 1;
5056 }
5057
5058 /* "hidden" fd is a fd used to read scripts, or a copy of such */
5059 static int is_hidden_fd(struct redirtab *rp, int fd)
5060 {
5061         int i;
5062         struct parsefile *pf;
5063
5064         if (fd == -1)
5065                 return 0;
5066         /* Check open scripts' fds */
5067         pf = g_parsefile;
5068         while (pf) {
5069                 /* We skip pf_fd == 0 case because of the following case:
5070                  * $ ash  # running ash interactively
5071                  * $ . ./script.sh
5072                  * and in script.sh: "exec 9>&0".
5073                  * Even though top-level pf_fd _is_ 0,
5074                  * it's still ok to use it: "read" builtin uses it,
5075                  * why should we cripple "exec" builtin?
5076                  */
5077                 if (pf->pf_fd > 0 && fd == pf->pf_fd) {
5078                         return 1;
5079                 }
5080                 pf = pf->prev;
5081         }
5082
5083         if (!rp)
5084                 return 0;
5085         /* Check saved fds of redirects */
5086         fd |= COPYFD_RESTORE;
5087         for (i = 0; i < rp->pair_count; i++) {
5088                 if (rp->two_fd[i].copy == fd) {
5089                         return 1;
5090                 }
5091         }
5092         return 0;
5093 }
5094
5095 /*
5096  * Process a list of redirection commands.  If the REDIR_PUSH flag is set,
5097  * old file descriptors are stashed away so that the redirection can be
5098  * undone by calling popredir.
5099  */
5100 /* flags passed to redirect */
5101 #define REDIR_PUSH    01        /* save previous values of file descriptors */
5102 #define REDIR_SAVEFD2 03        /* set preverrout */
5103 static void
5104 redirect(union node *redir, int flags)
5105 {
5106         struct redirtab *sv;
5107         int sv_pos;
5108         int i;
5109         int fd;
5110         int newfd;
5111         int copied_fd2 = -1;
5112
5113         g_nullredirs++;
5114         if (!redir) {
5115                 return;
5116         }
5117
5118         sv = NULL;
5119         sv_pos = 0;
5120         INT_OFF;
5121         if (flags & REDIR_PUSH) {
5122                 union node *tmp = redir;
5123                 do {
5124                         sv_pos++;
5125 #if ENABLE_ASH_BASH_COMPAT
5126                         if (tmp->nfile.type == NTO2)
5127                                 sv_pos++;
5128 #endif
5129                         tmp = tmp->nfile.next;
5130                 } while (tmp);
5131                 sv = ckmalloc(sizeof(*sv) + sv_pos * sizeof(sv->two_fd[0]));
5132                 sv->next = redirlist;
5133                 sv->pair_count = sv_pos;
5134                 redirlist = sv;
5135                 sv->nullredirs = g_nullredirs - 1;
5136                 g_nullredirs = 0;
5137                 while (sv_pos > 0) {
5138                         sv_pos--;
5139                         sv->two_fd[sv_pos].orig = sv->two_fd[sv_pos].copy = EMPTY;
5140                 }
5141         }
5142
5143         do {
5144                 int right_fd = -1;
5145                 fd = redir->nfile.fd;
5146                 if (redir->nfile.type == NTOFD || redir->nfile.type == NFROMFD) {
5147                         right_fd = redir->ndup.dupfd;
5148                         //bb_error_msg("doing %d > %d", fd, right_fd);
5149                         /* redirect from/to same file descriptor? */
5150                         if (right_fd == fd)
5151                                 continue;
5152                         /* "echo >&10" and 10 is a fd opened to a sh script? */
5153                         if (is_hidden_fd(sv, right_fd)) {
5154                                 errno = EBADF; /* as if it is closed */
5155                                 ash_msg_and_raise_error("%d: %m", right_fd);
5156                         }
5157                         newfd = -1;
5158                 } else {
5159                         newfd = openredirect(redir); /* always >= 0 */
5160                         if (fd == newfd) {
5161                                 /* Descriptor wasn't open before redirect.
5162                                  * Mark it for close in the future */
5163                                 if (need_to_remember(sv, fd)) {
5164                                         goto remember_to_close;
5165                                 }
5166                                 continue;
5167                         }
5168                 }
5169 #if ENABLE_ASH_BASH_COMPAT
5170  redirect_more:
5171 #endif
5172                 if (need_to_remember(sv, fd)) {
5173                         /* Copy old descriptor */
5174                         /* Careful to not accidentally "save"
5175                          * to the same fd as right side fd in N>&M */
5176                         int minfd = right_fd < 10 ? 10 : right_fd + 1;
5177                         i = fcntl(fd, F_DUPFD, minfd);
5178 /* You'd expect copy to be CLOEXECed. Currently these extra "saved" fds
5179  * are closed in popredir() in the child, preventing them from leaking
5180  * into child. (popredir() also cleans up the mess in case of failures)
5181  */
5182                         if (i == -1) {
5183                                 i = errno;
5184                                 if (i != EBADF) {
5185                                         /* Strange error (e.g. "too many files" EMFILE?) */
5186                                         if (newfd >= 0)
5187                                                 close(newfd);
5188                                         errno = i;
5189                                         ash_msg_and_raise_error("%d: %m", fd);
5190                                         /* NOTREACHED */
5191                                 }
5192                                 /* EBADF: it is not open - good, remember to close it */
5193  remember_to_close:
5194                                 i = CLOSED;
5195                         } else { /* fd is open, save its copy */
5196                                 /* "exec fd>&-" should not close fds
5197                                  * which point to script file(s).
5198                                  * Force them to be restored afterwards */
5199                                 if (is_hidden_fd(sv, fd))
5200                                         i |= COPYFD_RESTORE;
5201                         }
5202                         if (fd == 2)
5203                                 copied_fd2 = i;
5204                         sv->two_fd[sv_pos].orig = fd;
5205                         sv->two_fd[sv_pos].copy = i;
5206                         sv_pos++;
5207                 }
5208                 if (newfd < 0) {
5209                         /* NTOFD/NFROMFD: copy redir->ndup.dupfd to fd */
5210                         if (redir->ndup.dupfd < 0) { /* "fd>&-" */
5211                                 /* Don't want to trigger debugging */
5212                                 if (fd != -1)
5213                                         close(fd);
5214                         } else {
5215                                 copyfd(redir->ndup.dupfd, fd | COPYFD_EXACT);
5216                         }
5217                 } else if (fd != newfd) { /* move newfd to fd */
5218                         copyfd(newfd, fd | COPYFD_EXACT);
5219 #if ENABLE_ASH_BASH_COMPAT
5220                         if (!(redir->nfile.type == NTO2 && fd == 2))
5221 #endif
5222                                 close(newfd);
5223                 }
5224 #if ENABLE_ASH_BASH_COMPAT
5225                 if (redir->nfile.type == NTO2 && fd == 1) {
5226                         /* We already redirected it to fd 1, now copy it to 2 */
5227                         newfd = 1;
5228                         fd = 2;
5229                         goto redirect_more;
5230                 }
5231 #endif
5232         } while ((redir = redir->nfile.next) != NULL);
5233
5234         INT_ON;
5235         if ((flags & REDIR_SAVEFD2) && copied_fd2 >= 0)
5236                 preverrout_fd = copied_fd2;
5237 }
5238
5239 /*
5240  * Undo the effects of the last redirection.
5241  */
5242 static void
5243 popredir(int drop, int restore)
5244 {
5245         struct redirtab *rp;
5246         int i;
5247
5248         if (--g_nullredirs >= 0)
5249                 return;
5250         INT_OFF;
5251         rp = redirlist;
5252         for (i = 0; i < rp->pair_count; i++) {
5253                 int fd = rp->two_fd[i].orig;
5254                 int copy = rp->two_fd[i].copy;
5255                 if (copy == CLOSED) {
5256                         if (!drop)
5257                                 close(fd);
5258                         continue;
5259                 }
5260                 if (copy != EMPTY) {
5261                         if (!drop || (restore && (copy & COPYFD_RESTORE))) {
5262                                 copy &= ~COPYFD_RESTORE;
5263                                 /*close(fd);*/
5264                                 copyfd(copy, fd | COPYFD_EXACT);
5265                         }
5266                         close(copy & ~COPYFD_RESTORE);
5267                 }
5268         }
5269         redirlist = rp->next;
5270         g_nullredirs = rp->nullredirs;
5271         free(rp);
5272         INT_ON;
5273 }
5274
5275 /*
5276  * Undo all redirections.  Called on error or interrupt.
5277  */
5278
5279 /*
5280  * Discard all saved file descriptors.
5281  */
5282 static void
5283 clearredir(int drop)
5284 {
5285         for (;;) {
5286                 g_nullredirs = 0;
5287                 if (!redirlist)
5288                         break;
5289                 popredir(drop, /*restore:*/ 0);
5290         }
5291 }
5292
5293 static int
5294 redirectsafe(union node *redir, int flags)
5295 {
5296         int err;
5297         volatile int saveint;
5298         struct jmploc *volatile savehandler = exception_handler;
5299         struct jmploc jmploc;
5300
5301         SAVE_INT(saveint);
5302         /* "echo 9>/dev/null; echo >&9; echo result: $?" - result should be 1, not 2! */
5303         err = setjmp(jmploc.loc); // huh?? was = setjmp(jmploc.loc) * 2;
5304         if (!err) {
5305                 exception_handler = &jmploc;
5306                 redirect(redir, flags);
5307         }
5308         exception_handler = savehandler;
5309         if (err && exception_type != EXERROR)
5310                 longjmp(exception_handler->loc, 1);
5311         RESTORE_INT(saveint);
5312         return err;
5313 }
5314
5315
5316 /* ============ Routines to expand arguments to commands
5317  *
5318  * We have to deal with backquotes, shell variables, and file metacharacters.
5319  */
5320
5321 #if ENABLE_SH_MATH_SUPPORT
5322 static arith_t
5323 ash_arith(const char *s)
5324 {
5325         arith_eval_hooks_t math_hooks;
5326         arith_t result;
5327         int errcode = 0;
5328
5329         math_hooks.lookupvar = lookupvar;
5330         math_hooks.setvar    = setvar2;
5331         math_hooks.endofname = endofname;
5332
5333         INT_OFF;
5334         result = arith(s, &errcode, &math_hooks);
5335         if (errcode < 0) {
5336                 if (errcode == -3)
5337                         ash_msg_and_raise_error("exponent less than 0");
5338                 if (errcode == -2)
5339                         ash_msg_and_raise_error("divide by zero");
5340                 if (errcode == -5)
5341                         ash_msg_and_raise_error("expression recursion loop detected");
5342                 raise_error_syntax(s);
5343         }
5344         INT_ON;
5345
5346         return result;
5347 }
5348 #endif
5349
5350 /*
5351  * expandarg flags
5352  */
5353 #define EXP_FULL        0x1     /* perform word splitting & file globbing */
5354 #define EXP_TILDE       0x2     /* do normal tilde expansion */
5355 #define EXP_VARTILDE    0x4     /* expand tildes in an assignment */
5356 #define EXP_REDIR       0x8     /* file glob for a redirection (1 match only) */
5357 #define EXP_CASE        0x10    /* keeps quotes around for CASE pattern */
5358 #define EXP_RECORD      0x20    /* need to record arguments for ifs breakup */
5359 #define EXP_VARTILDE2   0x40    /* expand tildes after colons only */
5360 #define EXP_WORD        0x80    /* expand word in parameter expansion */
5361 #define EXP_QWORD       0x100   /* expand word in quoted parameter expansion */
5362 /*
5363  * rmescape() flags
5364  */
5365 #define RMESCAPE_ALLOC  0x1     /* Allocate a new string */
5366 #define RMESCAPE_GLOB   0x2     /* Add backslashes for glob */
5367 #define RMESCAPE_QUOTED 0x4     /* Remove CTLESC unless in quotes */
5368 #define RMESCAPE_GROW   0x8     /* Grow strings instead of stalloc */
5369 #define RMESCAPE_HEAP   0x10    /* Malloc strings instead of stalloc */
5370
5371 /*
5372  * Structure specifying which parts of the string should be searched
5373  * for IFS characters.
5374  */
5375 struct ifsregion {
5376         struct ifsregion *next; /* next region in list */
5377         int begoff;             /* offset of start of region */
5378         int endoff;             /* offset of end of region */
5379         int nulonly;            /* search for nul bytes only */
5380 };
5381
5382 struct arglist {
5383         struct strlist *list;
5384         struct strlist **lastp;
5385 };
5386
5387 /* output of current string */
5388 static char *expdest;
5389 /* list of back quote expressions */
5390 static struct nodelist *argbackq;
5391 /* first struct in list of ifs regions */
5392 static struct ifsregion ifsfirst;
5393 /* last struct in list */
5394 static struct ifsregion *ifslastp;
5395 /* holds expanded arg list */
5396 static struct arglist exparg;
5397
5398 /*
5399  * Our own itoa().
5400  */
5401 static int
5402 cvtnum(arith_t num)
5403 {
5404         int len;
5405
5406         expdest = makestrspace(32, expdest);
5407         len = fmtstr(expdest, 32, arith_t_fmt, num);
5408         STADJUST(len, expdest);
5409         return len;
5410 }
5411
5412 static size_t
5413 esclen(const char *start, const char *p)
5414 {
5415         size_t esc = 0;
5416
5417         while (p > start && (unsigned char)*--p == CTLESC) {
5418                 esc++;
5419         }
5420         return esc;
5421 }
5422
5423 /*
5424  * Remove any CTLESC characters from a string.
5425  */
5426 static char *
5427 rmescapes(char *str, int flag)
5428 {
5429         static const char qchars[] ALIGN1 = { CTLESC, CTLQUOTEMARK, '\0' };
5430
5431         char *p, *q, *r;
5432         unsigned inquotes;
5433         unsigned protect_against_glob;
5434         unsigned globbing;
5435
5436         p = strpbrk(str, qchars);
5437         if (!p)
5438                 return str;
5439
5440         q = p;
5441         r = str;
5442         if (flag & RMESCAPE_ALLOC) {
5443                 size_t len = p - str;
5444                 size_t fulllen = len + strlen(p) + 1;
5445
5446                 if (flag & RMESCAPE_GROW) {
5447                         int strloc = str - (char *)stackblock();
5448                         r = makestrspace(fulllen, expdest);
5449                         /* p and str may be invalidated by makestrspace */
5450                         str = (char *)stackblock() + strloc;
5451                         p = str + len;
5452                 } else if (flag & RMESCAPE_HEAP) {
5453                         r = ckmalloc(fulllen);
5454                 } else {
5455                         r = stalloc(fulllen);
5456                 }
5457                 q = r;
5458                 if (len > 0) {
5459                         q = (char *)memcpy(q, str, len) + len;
5460                 }
5461         }
5462
5463         inquotes = (flag & RMESCAPE_QUOTED) ^ RMESCAPE_QUOTED;
5464         globbing = flag & RMESCAPE_GLOB;
5465         protect_against_glob = globbing;
5466         while (*p) {
5467                 if ((unsigned char)*p == CTLQUOTEMARK) {
5468 // TODO: if no RMESCAPE_QUOTED in flags, inquotes never becomes 0
5469 // (alternates between RMESCAPE_QUOTED and ~RMESCAPE_QUOTED). Is it ok?
5470 // Note: both inquotes and protect_against_glob only affect whether
5471 // CTLESC,<ch> gets converted to <ch> or to \<ch>
5472                         inquotes = ~inquotes;
5473                         p++;
5474                         protect_against_glob = globbing;
5475                         continue;
5476                 }
5477                 if (*p == '\\') {
5478                         /* naked back slash */
5479                         protect_against_glob = 0;
5480                         goto copy;
5481                 }
5482                 if ((unsigned char)*p == CTLESC) {
5483                         p++;
5484                         if (protect_against_glob && inquotes && *p != '/') {
5485                                 *q++ = '\\';
5486                         }
5487                 }
5488                 protect_against_glob = globbing;
5489  copy:
5490                 *q++ = *p++;
5491         }
5492         *q = '\0';
5493         if (flag & RMESCAPE_GROW) {
5494                 expdest = r;
5495                 STADJUST(q - r + 1, expdest);
5496         }
5497         return r;
5498 }
5499 #define pmatch(a, b) !fnmatch((a), (b), 0)
5500
5501 /*
5502  * Prepare a pattern for a expmeta (internal glob(3)) call.
5503  *
5504  * Returns an stalloced string.
5505  */
5506 static char *
5507 preglob(const char *pattern, int quoted, int flag)
5508 {
5509         flag |= RMESCAPE_GLOB;
5510         if (quoted) {
5511                 flag |= RMESCAPE_QUOTED;
5512         }
5513         return rmescapes((char *)pattern, flag);
5514 }
5515
5516 /*
5517  * Put a string on the stack.
5518  */
5519 static void
5520 memtodest(const char *p, size_t len, int syntax, int quotes)
5521 {
5522         char *q = expdest;
5523
5524         q = makestrspace(quotes ? len * 2 : len, q);
5525
5526         while (len--) {
5527                 unsigned char c = *p++;
5528                 if (c == '\0')
5529                         continue;
5530                 if (quotes) {
5531                         int n = SIT(c, syntax);
5532                         if (n == CCTL || n == CBACK)
5533                                 USTPUTC(CTLESC, q);
5534                 }
5535                 USTPUTC(c, q);
5536         }
5537
5538         expdest = q;
5539 }
5540
5541 static void
5542 strtodest(const char *p, int syntax, int quotes)
5543 {
5544         memtodest(p, strlen(p), syntax, quotes);
5545 }
5546
5547 /*
5548  * Record the fact that we have to scan this region of the
5549  * string for IFS characters.
5550  */
5551 static void
5552 recordregion(int start, int end, int nulonly)
5553 {
5554         struct ifsregion *ifsp;
5555
5556         if (ifslastp == NULL) {
5557                 ifsp = &ifsfirst;
5558         } else {
5559                 INT_OFF;
5560                 ifsp = ckzalloc(sizeof(*ifsp));
5561                 /*ifsp->next = NULL; - ckzalloc did it */
5562                 ifslastp->next = ifsp;
5563                 INT_ON;
5564         }
5565         ifslastp = ifsp;
5566         ifslastp->begoff = start;
5567         ifslastp->endoff = end;
5568         ifslastp->nulonly = nulonly;
5569 }
5570
5571 static void
5572 removerecordregions(int endoff)
5573 {
5574         if (ifslastp == NULL)
5575                 return;
5576
5577         if (ifsfirst.endoff > endoff) {
5578                 while (ifsfirst.next != NULL) {
5579                         struct ifsregion *ifsp;
5580                         INT_OFF;
5581                         ifsp = ifsfirst.next->next;
5582                         free(ifsfirst.next);
5583                         ifsfirst.next = ifsp;
5584                         INT_ON;
5585                 }
5586                 if (ifsfirst.begoff > endoff)
5587                         ifslastp = NULL;
5588                 else {
5589                         ifslastp = &ifsfirst;
5590                         ifsfirst.endoff = endoff;
5591                 }
5592                 return;
5593         }
5594
5595         ifslastp = &ifsfirst;
5596         while (ifslastp->next && ifslastp->next->begoff < endoff)
5597                 ifslastp=ifslastp->next;
5598         while (ifslastp->next != NULL) {
5599                 struct ifsregion *ifsp;
5600                 INT_OFF;
5601                 ifsp = ifslastp->next->next;
5602                 free(ifslastp->next);
5603                 ifslastp->next = ifsp;
5604                 INT_ON;
5605         }
5606         if (ifslastp->endoff > endoff)
5607                 ifslastp->endoff = endoff;
5608 }
5609
5610 static char *
5611 exptilde(char *startp, char *p, int flags)
5612 {
5613         unsigned char c;
5614         char *name;
5615         struct passwd *pw;
5616         const char *home;
5617         int quotes = flags & (EXP_FULL | EXP_CASE | EXP_REDIR);
5618         int startloc;
5619
5620         name = p + 1;
5621
5622         while ((c = *++p) != '\0') {
5623                 switch (c) {
5624                 case CTLESC:
5625                         return startp;
5626                 case CTLQUOTEMARK:
5627                         return startp;
5628                 case ':':
5629                         if (flags & EXP_VARTILDE)
5630                                 goto done;
5631                         break;
5632                 case '/':
5633                 case CTLENDVAR:
5634                         goto done;
5635                 }
5636         }
5637  done:
5638         *p = '\0';
5639         if (*name == '\0') {
5640                 home = lookupvar("HOME");
5641         } else {
5642                 pw = getpwnam(name);
5643                 if (pw == NULL)
5644                         goto lose;
5645                 home = pw->pw_dir;
5646         }
5647         if (!home || !*home)
5648                 goto lose;
5649         *p = c;
5650         startloc = expdest - (char *)stackblock();
5651         strtodest(home, SQSYNTAX, quotes);
5652         recordregion(startloc, expdest - (char *)stackblock(), 0);
5653         return p;
5654  lose:
5655         *p = c;
5656         return startp;
5657 }
5658
5659 /*
5660  * Execute a command inside back quotes.  If it's a builtin command, we
5661  * want to save its output in a block obtained from malloc.  Otherwise
5662  * we fork off a subprocess and get the output of the command via a pipe.
5663  * Should be called with interrupts off.
5664  */
5665 struct backcmd {                /* result of evalbackcmd */
5666         int fd;                 /* file descriptor to read from */
5667         int nleft;              /* number of chars in buffer */
5668         char *buf;              /* buffer */
5669         struct job *jp;         /* job structure for command */
5670 };
5671
5672 /* These forward decls are needed to use "eval" code for backticks handling: */
5673 static uint8_t back_exitstatus; /* exit status of backquoted command */
5674 #define EV_EXIT 01              /* exit after evaluating tree */
5675 static void evaltree(union node *, int);
5676
5677 static void FAST_FUNC
5678 evalbackcmd(union node *n, struct backcmd *result)
5679 {
5680         int saveherefd;
5681
5682         result->fd = -1;
5683         result->buf = NULL;
5684         result->nleft = 0;
5685         result->jp = NULL;
5686         if (n == NULL)
5687                 goto out;
5688
5689         saveherefd = herefd;
5690         herefd = -1;
5691
5692         {
5693                 int pip[2];
5694                 struct job *jp;
5695
5696                 if (pipe(pip) < 0)
5697                         ash_msg_and_raise_error("pipe call failed");
5698                 jp = makejob(/*n,*/ 1);
5699                 if (forkshell(jp, n, FORK_NOJOB) == 0) {
5700                         FORCE_INT_ON;
5701                         close(pip[0]);
5702                         if (pip[1] != 1) {
5703                                 /*close(1);*/
5704                                 copyfd(pip[1], 1 | COPYFD_EXACT);
5705                                 close(pip[1]);
5706                         }
5707                         eflag = 0;
5708                         evaltree(n, EV_EXIT); /* actually evaltreenr... */
5709                         /* NOTREACHED */
5710                 }
5711                 close(pip[1]);
5712                 result->fd = pip[0];
5713                 result->jp = jp;
5714         }
5715         herefd = saveherefd;
5716  out:
5717         TRACE(("evalbackcmd done: fd=%d buf=0x%x nleft=%d jp=0x%x\n",
5718                 result->fd, result->buf, result->nleft, result->jp));
5719 }
5720
5721 /*
5722  * Expand stuff in backwards quotes.
5723  */
5724 static void
5725 expbackq(union node *cmd, int quoted, int quotes)
5726 {
5727         struct backcmd in;
5728         int i;
5729         char buf[128];
5730         char *p;
5731         char *dest;
5732         int startloc;
5733         int syntax = quoted ? DQSYNTAX : BASESYNTAX;
5734         struct stackmark smark;
5735
5736         INT_OFF;
5737         setstackmark(&smark);
5738         dest = expdest;
5739         startloc = dest - (char *)stackblock();
5740         grabstackstr(dest);
5741         evalbackcmd(cmd, &in);
5742         popstackmark(&smark);
5743
5744         p = in.buf;
5745         i = in.nleft;
5746         if (i == 0)
5747                 goto read;
5748         for (;;) {
5749                 memtodest(p, i, syntax, quotes);
5750  read:
5751                 if (in.fd < 0)
5752                         break;
5753                 i = nonblock_safe_read(in.fd, buf, sizeof(buf));
5754                 TRACE(("expbackq: read returns %d\n", i));
5755                 if (i <= 0)
5756                         break;
5757                 p = buf;
5758         }
5759
5760         free(in.buf);
5761         if (in.fd >= 0) {
5762                 close(in.fd);
5763                 back_exitstatus = waitforjob(in.jp);
5764         }
5765         INT_ON;
5766
5767         /* Eat all trailing newlines */
5768         dest = expdest;
5769         for (; dest > (char *)stackblock() && dest[-1] == '\n';)
5770                 STUNPUTC(dest);
5771         expdest = dest;
5772
5773         if (quoted == 0)
5774                 recordregion(startloc, dest - (char *)stackblock(), 0);
5775         TRACE(("evalbackq: size=%d: \"%.*s\"\n",
5776                 (dest - (char *)stackblock()) - startloc,
5777                 (dest - (char *)stackblock()) - startloc,
5778                 stackblock() + startloc));
5779 }
5780
5781 #if ENABLE_SH_MATH_SUPPORT
5782 /*
5783  * Expand arithmetic expression.  Backup to start of expression,
5784  * evaluate, place result in (backed up) result, adjust string position.
5785  */
5786 static void
5787 expari(int quotes)
5788 {
5789         char *p, *start;
5790         int begoff;
5791         int flag;
5792         int len;
5793
5794         /* ifsfree(); */
5795
5796         /*
5797          * This routine is slightly over-complicated for
5798          * efficiency.  Next we scan backwards looking for the
5799          * start of arithmetic.
5800          */
5801         start = stackblock();
5802         p = expdest - 1;
5803         *p = '\0';
5804         p--;
5805         do {
5806                 int esc;
5807
5808                 while ((unsigned char)*p != CTLARI) {
5809                         p--;
5810 #if DEBUG
5811                         if (p < start) {
5812                                 ash_msg_and_raise_error("missing CTLARI (shouldn't happen)");
5813                         }
5814 #endif
5815                 }
5816
5817                 esc = esclen(start, p);
5818                 if (!(esc % 2)) {
5819                         break;
5820                 }
5821
5822                 p -= esc + 1;
5823         } while (1);
5824
5825         begoff = p - start;
5826
5827         removerecordregions(begoff);
5828
5829         flag = p[1];
5830
5831         expdest = p;
5832
5833         if (quotes)
5834                 rmescapes(p + 2, 0);
5835
5836         len = cvtnum(ash_arith(p + 2));
5837
5838         if (flag != '"')
5839                 recordregion(begoff, begoff + len, 0);
5840 }
5841 #endif
5842
5843 /* argstr needs it */
5844 static char *evalvar(char *p, int flags, struct strlist *var_str_list);
5845
5846 /*
5847  * Perform variable and command substitution.  If EXP_FULL is set, output CTLESC
5848  * characters to allow for further processing.  Otherwise treat
5849  * $@ like $* since no splitting will be performed.
5850  *
5851  * var_str_list (can be NULL) is a list of "VAR=val" strings which take precedence
5852  * over shell varables. Needed for "A=a B=$A; echo $B" case - we use it
5853  * for correct expansion of "B=$A" word.
5854  */
5855 static void
5856 argstr(char *p, int flags, struct strlist *var_str_list)
5857 {
5858         static const char spclchars[] ALIGN1 = {
5859                 '=',
5860                 ':',
5861                 CTLQUOTEMARK,
5862                 CTLENDVAR,
5863                 CTLESC,
5864                 CTLVAR,
5865                 CTLBACKQ,
5866                 CTLBACKQ | CTLQUOTE,
5867 #if ENABLE_SH_MATH_SUPPORT
5868                 CTLENDARI,
5869 #endif
5870                 '\0'
5871         };
5872         const char *reject = spclchars;
5873         int quotes = flags & (EXP_FULL | EXP_CASE | EXP_REDIR); /* do CTLESC */
5874         int breakall = flags & EXP_WORD;
5875         int inquotes;
5876         size_t length;
5877         int startloc;
5878
5879         if (!(flags & EXP_VARTILDE)) {
5880                 reject += 2;
5881         } else if (flags & EXP_VARTILDE2) {
5882                 reject++;
5883         }
5884         inquotes = 0;
5885         length = 0;
5886         if (flags & EXP_TILDE) {
5887                 char *q;
5888
5889                 flags &= ~EXP_TILDE;
5890  tilde:
5891                 q = p;
5892                 if (*q == CTLESC && (flags & EXP_QWORD))
5893                         q++;
5894                 if (*q == '~')
5895                         p = exptilde(p, q, flags);
5896         }
5897  start:
5898         startloc = expdest - (char *)stackblock();
5899         for (;;) {
5900                 unsigned char c;
5901
5902                 length += strcspn(p + length, reject);
5903                 c = p[length];
5904                 if (c) {
5905                         if (!(c & 0x80)
5906 #if ENABLE_SH_MATH_SUPPORT
5907                          || c == CTLENDARI
5908 #endif
5909                         ) {
5910                                 /* c == '=' || c == ':' || c == CTLENDARI */
5911                                 length++;
5912                         }
5913                 }
5914                 if (length > 0) {
5915                         int newloc;
5916                         expdest = stack_nputstr(p, length, expdest);
5917                         newloc = expdest - (char *)stackblock();
5918                         if (breakall && !inquotes && newloc > startloc) {
5919                                 recordregion(startloc, newloc, 0);
5920                         }
5921                         startloc = newloc;
5922                 }
5923                 p += length + 1;
5924                 length = 0;
5925
5926                 switch (c) {
5927                 case '\0':
5928                         goto breakloop;
5929                 case '=':
5930                         if (flags & EXP_VARTILDE2) {
5931                                 p--;
5932                                 continue;
5933                         }
5934                         flags |= EXP_VARTILDE2;
5935                         reject++;
5936                         /* fall through */
5937                 case ':':
5938                         /*
5939                          * sort of a hack - expand tildes in variable
5940                          * assignments (after the first '=' and after ':'s).
5941                          */
5942                         if (*--p == '~') {
5943                                 goto tilde;
5944                         }
5945                         continue;
5946                 }
5947
5948                 switch (c) {
5949                 case CTLENDVAR: /* ??? */
5950                         goto breakloop;
5951                 case CTLQUOTEMARK:
5952                         /* "$@" syntax adherence hack */
5953                         if (!inquotes
5954                          && memcmp(p, dolatstr, 4) == 0
5955                          && (  p[4] == CTLQUOTEMARK
5956                             || (p[4] == CTLENDVAR && p[5] == CTLQUOTEMARK)
5957                             )
5958                         ) {
5959                                 p = evalvar(p + 1, flags, /* var_str_list: */ NULL) + 1;
5960                                 goto start;
5961                         }
5962                         inquotes = !inquotes;
5963  addquote:
5964                         if (quotes) {
5965                                 p--;
5966                                 length++;
5967                                 startloc++;
5968                         }
5969                         break;
5970                 case CTLESC:
5971                         startloc++;
5972                         length++;
5973                         goto addquote;
5974                 case CTLVAR:
5975                         p = evalvar(p, flags, var_str_list);
5976                         goto start;
5977                 case CTLBACKQ:
5978                         c = '\0';
5979                 case CTLBACKQ|CTLQUOTE:
5980                         expbackq(argbackq->n, c, quotes);
5981                         argbackq = argbackq->next;
5982                         goto start;
5983 #if ENABLE_SH_MATH_SUPPORT
5984                 case CTLENDARI:
5985                         p--;
5986                         expari(quotes);
5987                         goto start;
5988 #endif
5989                 }
5990         }
5991  breakloop:
5992         ;
5993 }
5994
5995 static char *
5996 scanleft(char *startp, char *rmesc, char *rmescend UNUSED_PARAM, char *str, int quotes,
5997         int zero)
5998 {
5999 // This commented out code was added by James Simmons <jsimmons@infradead.org>
6000 // as part of a larger change when he added support for ${var/a/b}.
6001 // However, it broke # and % operators:
6002 //
6003 //var=ababcdcd
6004 //                 ok       bad
6005 //echo ${var#ab}   abcdcd   abcdcd
6006 //echo ${var##ab}  abcdcd   abcdcd
6007 //echo ${var#a*b}  abcdcd   ababcdcd  (!)
6008 //echo ${var##a*b} cdcd     cdcd
6009 //echo ${var#?}    babcdcd  ababcdcd  (!)
6010 //echo ${var##?}   babcdcd  babcdcd
6011 //echo ${var#*}    ababcdcd babcdcd   (!)
6012 //echo ${var##*}
6013 //echo ${var%cd}   ababcd   ababcd
6014 //echo ${var%%cd}  ababcd   abab      (!)
6015 //echo ${var%c*d}  ababcd   ababcd
6016 //echo ${var%%c*d} abab     ababcdcd  (!)
6017 //echo ${var%?}    ababcdc  ababcdc
6018 //echo ${var%%?}   ababcdc  ababcdcd  (!)
6019 //echo ${var%*}    ababcdcd ababcdcd
6020 //echo ${var%%*}
6021 //
6022 // Commenting it back out helped. Remove it completely if it really
6023 // is not needed.
6024
6025         char *loc, *loc2; //, *full;
6026         char c;
6027
6028         loc = startp;
6029         loc2 = rmesc;
6030         do {
6031                 int match; // = strlen(str);
6032                 const char *s = loc2;
6033
6034                 c = *loc2;
6035                 if (zero) {
6036                         *loc2 = '\0';
6037                         s = rmesc;
6038                 }
6039                 match = pmatch(str, s); // this line was deleted
6040
6041 //              // chop off end if its '*'
6042 //              full = strrchr(str, '*');
6043 //              if (full && full != str)
6044 //                      match--;
6045 //
6046 //              // If str starts with '*' replace with s.
6047 //              if ((*str == '*') && strlen(s) >= match) {
6048 //                      full = xstrdup(s);
6049 //                      strncpy(full+strlen(s)-match+1, str+1, match-1);
6050 //              } else
6051 //                      full = xstrndup(str, match);
6052 //              match = strncmp(s, full, strlen(full));
6053 //              free(full);
6054 //
6055                 *loc2 = c;
6056                 if (match) // if (!match)
6057                         return loc;
6058                 if (quotes && (unsigned char)*loc == CTLESC)
6059                         loc++;
6060                 loc++;
6061                 loc2++;
6062         } while (c);
6063         return 0;
6064 }
6065
6066 static char *
6067 scanright(char *startp, char *rmesc, char *rmescend, char *pattern, int quotes, int match_at_start)
6068 {
6069 #if !ENABLE_ASH_OPTIMIZE_FOR_SIZE
6070         int try2optimize = match_at_start;
6071 #endif
6072         int esc = 0;
6073         char *loc;
6074         char *loc2;
6075
6076         /* If we called by "${v/pattern/repl}" or "${v//pattern/repl}":
6077          * startp="escaped_value_of_v" rmesc="raw_value_of_v"
6078          * rmescend=""(ptr to NUL in rmesc) pattern="pattern" quotes=match_at_start=1
6079          * Logic:
6080          * loc starts at NUL at the end of startp, loc2 starts at the end of rmesc,
6081          * and on each iteration they go back two/one char until they reach the beginning.
6082          * We try to find a match in "raw_value_of_v", "raw_value_of_", "raw_value_of" etc.
6083          */
6084         /* TODO: document in what other circumstances we are called. */
6085
6086         for (loc = pattern - 1, loc2 = rmescend; loc >= startp; loc2--) {
6087                 int match;
6088                 char c = *loc2;
6089                 const char *s = loc2;
6090                 if (match_at_start) {
6091                         *loc2 = '\0';
6092                         s = rmesc;
6093                 }
6094                 match = pmatch(pattern, s);
6095                 //bb_error_msg("pmatch(pattern:'%s',s:'%s'):%d", pattern, s, match);
6096                 *loc2 = c;
6097                 if (match)
6098                         return loc;
6099 #if !ENABLE_ASH_OPTIMIZE_FOR_SIZE
6100                 if (try2optimize) {
6101                         /* Maybe we can optimize this:
6102                          * if pattern ends with unescaped *, we can avoid checking
6103                          * shorter strings: if "foo*" doesnt match "raw_value_of_v",
6104                          * it wont match truncated "raw_value_of_" strings too.
6105                          */
6106                         unsigned plen = strlen(pattern);
6107                         /* Does it end with "*"? */
6108                         if (plen != 0 && pattern[--plen] == '*') {
6109                                 /* "xxxx*" is not escaped */
6110                                 /* "xxx\*" is escaped */
6111                                 /* "xx\\*" is not escaped */
6112                                 /* "x\\\*" is escaped */
6113                                 int slashes = 0;
6114                                 while (plen != 0 && pattern[--plen] == '\\')
6115                                         slashes++;
6116                                 if (!(slashes & 1))
6117                                         break; /* ends with unescaped "*" */
6118                         }
6119                         try2optimize = 0;
6120                 }
6121 #endif
6122                 loc--;
6123                 if (quotes) {
6124                         if (--esc < 0) {
6125                                 esc = esclen(startp, loc);
6126                         }
6127                         if (esc % 2) {
6128                                 esc--;
6129                                 loc--;
6130                         }
6131                 }
6132         }
6133         return 0;
6134 }
6135
6136 static void varunset(const char *, const char *, const char *, int) NORETURN;
6137 static void
6138 varunset(const char *end, const char *var, const char *umsg, int varflags)
6139 {
6140         const char *msg;
6141         const char *tail;
6142
6143         tail = nullstr;
6144         msg = "parameter not set";
6145         if (umsg) {
6146                 if ((unsigned char)*end == CTLENDVAR) {
6147                         if (varflags & VSNUL)
6148                                 tail = " or null";
6149                 } else {
6150                         msg = umsg;
6151                 }
6152         }
6153         ash_msg_and_raise_error("%.*s: %s%s", end - var - 1, var, msg, tail);
6154 }
6155
6156 #if ENABLE_ASH_BASH_COMPAT
6157 static char *
6158 parse_sub_pattern(char *arg, int inquotes)
6159 {
6160         char *idx, *repl = NULL;
6161         unsigned char c;
6162
6163         idx = arg;
6164         while (1) {
6165                 c = *arg;
6166                 if (!c)
6167                         break;
6168                 if (c == '/') {
6169                         /* Only the first '/' seen is our separator */
6170                         if (!repl) {
6171                                 repl = idx + 1;
6172                                 c = '\0';
6173                         }
6174                 }
6175                 *idx++ = c;
6176                 if (!inquotes && c == '\\' && arg[1] == '\\')
6177                         arg++; /* skip both \\, not just first one */
6178                 arg++;
6179         }
6180         *idx = c; /* NUL */
6181
6182         return repl;
6183 }
6184 #endif /* ENABLE_ASH_BASH_COMPAT */
6185
6186 static const char *
6187 subevalvar(char *p, char *str, int strloc, int subtype,
6188                 int startloc, int varflags, int quotes, struct strlist *var_str_list)
6189 {
6190         struct nodelist *saveargbackq = argbackq;
6191         char *startp;
6192         char *loc;
6193         char *rmesc, *rmescend;
6194         IF_ASH_BASH_COMPAT(char *repl = NULL;)
6195         IF_ASH_BASH_COMPAT(char null = '\0';)
6196         IF_ASH_BASH_COMPAT(int pos, len, orig_len;)
6197         int saveherefd = herefd;
6198         int amount, workloc, resetloc;
6199         int zero;
6200         char *(*scan)(char*, char*, char*, char*, int, int);
6201
6202         herefd = -1;
6203         argstr(p, (subtype != VSASSIGN && subtype != VSQUESTION) ? EXP_CASE : 0,
6204                         var_str_list);
6205         STPUTC('\0', expdest);
6206         herefd = saveherefd;
6207         argbackq = saveargbackq;
6208         startp = (char *)stackblock() + startloc;
6209
6210         switch (subtype) {
6211         case VSASSIGN:
6212                 setvar(str, startp, 0);
6213                 amount = startp - expdest;
6214                 STADJUST(amount, expdest);
6215                 return startp;
6216
6217 #if ENABLE_ASH_BASH_COMPAT
6218         case VSSUBSTR:
6219                 loc = str = stackblock() + strloc;
6220                 /* Read POS in ${var:POS:LEN} */
6221                 pos = atoi(loc); /* number(loc) errors out on "1:4" */
6222                 len = str - startp - 1;
6223
6224                 /* *loc != '\0', guaranteed by parser */
6225                 if (quotes) {
6226                         char *ptr;
6227
6228                         /* Adjust the length by the number of escapes */
6229                         for (ptr = startp; ptr < (str - 1); ptr++) {
6230                                 if ((unsigned char)*ptr == CTLESC) {
6231                                         len--;
6232                                         ptr++;
6233                                 }
6234                         }
6235                 }
6236                 orig_len = len;
6237
6238                 if (*loc++ == ':') {
6239                         /* ${var::LEN} */
6240                         len = number(loc);
6241                 } else {
6242                         /* Skip POS in ${var:POS:LEN} */
6243                         len = orig_len;
6244                         while (*loc && *loc != ':') {
6245                                 /* TODO?
6246                                  * bash complains on: var=qwe; echo ${var:1a:123}
6247                                 if (!isdigit(*loc))
6248                                         ash_msg_and_raise_error(msg_illnum, str);
6249                                  */
6250                                 loc++;
6251                         }
6252                         if (*loc++ == ':') {
6253                                 len = number(loc);
6254                         }
6255                 }
6256                 if (pos >= orig_len) {
6257                         pos = 0;
6258                         len = 0;
6259                 }
6260                 if (len > (orig_len - pos))
6261                         len = orig_len - pos;
6262
6263                 for (str = startp; pos; str++, pos--) {
6264                         if (quotes && (unsigned char)*str == CTLESC)
6265                                 str++;
6266                 }
6267                 for (loc = startp; len; len--) {
6268                         if (quotes && (unsigned char)*str == CTLESC)
6269                                 *loc++ = *str++;
6270                         *loc++ = *str++;
6271                 }
6272                 *loc = '\0';
6273                 amount = loc - expdest;
6274                 STADJUST(amount, expdest);
6275                 return loc;
6276 #endif
6277
6278         case VSQUESTION:
6279                 varunset(p, str, startp, varflags);
6280                 /* NOTREACHED */
6281         }
6282         resetloc = expdest - (char *)stackblock();
6283
6284         /* We'll comeback here if we grow the stack while handling
6285          * a VSREPLACE or VSREPLACEALL, since our pointers into the
6286          * stack will need rebasing, and we'll need to remove our work
6287          * areas each time
6288          */
6289  IF_ASH_BASH_COMPAT(restart:)
6290
6291         amount = expdest - ((char *)stackblock() + resetloc);
6292         STADJUST(-amount, expdest);
6293         startp = (char *)stackblock() + startloc;
6294
6295         rmesc = startp;
6296         rmescend = (char *)stackblock() + strloc;
6297         if (quotes) {
6298                 rmesc = rmescapes(startp, RMESCAPE_ALLOC | RMESCAPE_GROW);
6299                 if (rmesc != startp) {
6300                         rmescend = expdest;
6301                         startp = (char *)stackblock() + startloc;
6302                 }
6303         }
6304         rmescend--;
6305         str = (char *)stackblock() + strloc;
6306         preglob(str, varflags & VSQUOTE, 0);
6307         workloc = expdest - (char *)stackblock();
6308
6309 #if ENABLE_ASH_BASH_COMPAT
6310         if (subtype == VSREPLACE || subtype == VSREPLACEALL) {
6311                 char *idx, *end;
6312
6313                 if (!repl) {
6314                         repl = parse_sub_pattern(str, varflags & VSQUOTE);
6315                         if (!repl)
6316                                 repl = &null;
6317                 }
6318
6319                 /* If there's no pattern to match, return the expansion unmolested */
6320                 if (str[0] == '\0')
6321                         return 0;
6322
6323                 len = 0;
6324                 idx = startp;
6325                 end = str - 1;
6326                 while (idx < end) {
6327  try_to_match:
6328                         loc = scanright(idx, rmesc, rmescend, str, quotes, 1);
6329                         if (!loc) {
6330                                 /* No match, advance */
6331                                 char *restart_detect = stackblock();
6332  skip_matching:
6333                                 STPUTC(*idx, expdest);
6334                                 if (quotes && (unsigned char)*idx == CTLESC) {
6335                                         idx++;
6336                                         len++;
6337                                         STPUTC(*idx, expdest);
6338                                 }
6339                                 if (stackblock() != restart_detect)
6340                                         goto restart;
6341                                 idx++;
6342                                 len++;
6343                                 rmesc++;
6344                                 /* continue; - prone to quadratic behavior, smarter code: */
6345                                 if (idx >= end)
6346                                         break;
6347                                 if (str[0] == '*') {
6348                                         /* Pattern is "*foo". If "*foo" does not match "long_string",
6349                                          * it would never match "ong_string" etc, no point in trying.
6350                                          */
6351                                         goto skip_matching;
6352                                 }
6353                                 goto try_to_match;
6354                         }
6355
6356                         if (subtype == VSREPLACEALL) {
6357                                 while (idx < loc) {
6358                                         if (quotes && (unsigned char)*idx == CTLESC)
6359                                                 idx++;
6360                                         idx++;
6361                                         rmesc++;
6362                                 }
6363                         } else {
6364                                 idx = loc;
6365                         }
6366
6367                         for (loc = repl; *loc; loc++) {
6368                                 char *restart_detect = stackblock();
6369                                 STPUTC(*loc, expdest);
6370                                 if (stackblock() != restart_detect)
6371                                         goto restart;
6372                                 len++;
6373                         }
6374
6375                         if (subtype == VSREPLACE) {
6376                                 while (*idx) {
6377                                         char *restart_detect = stackblock();
6378                                         STPUTC(*idx, expdest);
6379                                         if (stackblock() != restart_detect)
6380                                                 goto restart;
6381                                         len++;
6382                                         idx++;
6383                                 }
6384                                 break;
6385                         }
6386                 }
6387
6388                 /* We've put the replaced text into a buffer at workloc, now
6389                  * move it to the right place and adjust the stack.
6390                  */
6391                 startp = stackblock() + startloc;
6392                 STPUTC('\0', expdest);
6393                 memmove(startp, stackblock() + workloc, len);
6394                 startp[len++] = '\0';
6395                 amount = expdest - ((char *)stackblock() + startloc + len - 1);
6396                 STADJUST(-amount, expdest);
6397                 return startp;
6398         }
6399 #endif /* ENABLE_ASH_BASH_COMPAT */
6400
6401         subtype -= VSTRIMRIGHT;
6402 #if DEBUG
6403         if (subtype < 0 || subtype > 7)
6404                 abort();
6405 #endif
6406         /* zero = (subtype == VSTRIMLEFT || subtype == VSTRIMLEFTMAX) */
6407         zero = subtype >> 1;
6408         /* VSTRIMLEFT/VSTRIMRIGHTMAX -> scanleft */
6409         scan = (subtype & 1) ^ zero ? scanleft : scanright;
6410
6411         loc = scan(startp, rmesc, rmescend, str, quotes, zero);
6412         if (loc) {
6413                 if (zero) {
6414                         memmove(startp, loc, str - loc);
6415                         loc = startp + (str - loc) - 1;
6416                 }
6417                 *loc = '\0';
6418                 amount = loc - expdest;
6419                 STADJUST(amount, expdest);
6420         }
6421         return loc;
6422 }
6423
6424 /*
6425  * Add the value of a specialized variable to the stack string.
6426  * name parameter (examples):
6427  * ash -c 'echo $1'      name:'1='
6428  * ash -c 'echo $qwe'    name:'qwe='
6429  * ash -c 'echo $$'      name:'$='
6430  * ash -c 'echo ${$}'    name:'$='
6431  * ash -c 'echo ${$##q}' name:'$=q'
6432  * ash -c 'echo ${#$}'   name:'$='
6433  * note: examples with bad shell syntax:
6434  * ash -c 'echo ${#$1}'  name:'$=1'
6435  * ash -c 'echo ${#1#}'  name:'1=#'
6436  */
6437 static NOINLINE ssize_t
6438 varvalue(char *name, int varflags, int flags, struct strlist *var_str_list)
6439 {
6440         const char *p;
6441         int num;
6442         int i;
6443         int sepq = 0;
6444         ssize_t len = 0;
6445         int subtype = varflags & VSTYPE;
6446         int quotes = flags & (EXP_FULL | EXP_CASE | EXP_REDIR);
6447         int quoted = varflags & VSQUOTE;
6448         int syntax = quoted ? DQSYNTAX : BASESYNTAX;
6449
6450         switch (*name) {
6451         case '$':
6452                 num = rootpid;
6453                 goto numvar;
6454         case '?':
6455                 num = exitstatus;
6456                 goto numvar;
6457         case '#':
6458                 num = shellparam.nparam;
6459                 goto numvar;
6460         case '!':
6461                 num = backgndpid;
6462                 if (num == 0)
6463                         return -1;
6464  numvar:
6465                 len = cvtnum(num);
6466                 goto check_1char_name;
6467         case '-':
6468                 expdest = makestrspace(NOPTS, expdest);
6469                 for (i = NOPTS - 1; i >= 0; i--) {
6470                         if (optlist[i]) {
6471                                 USTPUTC(optletters(i), expdest);
6472                                 len++;
6473                         }
6474                 }
6475  check_1char_name:
6476 #if 0
6477                 /* handles cases similar to ${#$1} */
6478                 if (name[2] != '\0')
6479                         raise_error_syntax("bad substitution");
6480 #endif
6481                 break;
6482         case '@': {
6483                 char **ap;
6484                 int sep;
6485
6486                 if (quoted && (flags & EXP_FULL)) {
6487                         /* note: this is not meant as PEOF value */
6488                         sep = 1 << CHAR_BIT;
6489                         goto param;
6490                 }
6491                 /* fall through */
6492         case '*':
6493                 sep = ifsset() ? (unsigned char)(ifsval()[0]) : ' ';
6494                 i = SIT(sep, syntax);
6495                 if (quotes && (i == CCTL || i == CBACK))
6496                         sepq = 1;
6497  param:
6498                 ap = shellparam.p;
6499                 if (!ap)
6500                         return -1;
6501                 while ((p = *ap++) != NULL) {
6502                         size_t partlen;
6503
6504                         partlen = strlen(p);
6505                         len += partlen;
6506
6507                         if (!(subtype == VSPLUS || subtype == VSLENGTH))
6508                                 memtodest(p, partlen, syntax, quotes);
6509
6510                         if (*ap && sep) {
6511                                 char *q;
6512
6513                                 len++;
6514                                 if (subtype == VSPLUS || subtype == VSLENGTH) {
6515                                         continue;
6516                                 }
6517                                 q = expdest;
6518                                 if (sepq)
6519                                         STPUTC(CTLESC, q);
6520                                 /* note: may put NUL despite sep != 0
6521                                  * (see sep = 1 << CHAR_BIT above) */
6522                                 STPUTC(sep, q);
6523                                 expdest = q;
6524                         }
6525                 }
6526                 return len;
6527         } /* case '@' and '*' */
6528         case '0':
6529         case '1':
6530         case '2':
6531         case '3':
6532         case '4':
6533         case '5':
6534         case '6':
6535         case '7':
6536         case '8':
6537         case '9':
6538                 num = atoi(name); /* number(name) fails on ${N#str} etc */
6539                 if (num < 0 || num > shellparam.nparam)
6540                         return -1;
6541                 p = num ? shellparam.p[num - 1] : arg0;
6542                 goto value;
6543         default:
6544                 /* NB: name has form "VAR=..." */
6545
6546                 /* "A=a B=$A" case: var_str_list is a list of "A=a" strings
6547                  * which should be considered before we check variables. */
6548                 if (var_str_list) {
6549                         unsigned name_len = (strchrnul(name, '=') - name) + 1;
6550                         p = NULL;
6551                         do {
6552                                 char *str, *eq;
6553                                 str = var_str_list->text;
6554                                 eq = strchr(str, '=');
6555                                 if (!eq) /* stop at first non-assignment */
6556                                         break;
6557                                 eq++;
6558                                 if (name_len == (unsigned)(eq - str)
6559                                  && strncmp(str, name, name_len) == 0
6560                                 ) {
6561                                         p = eq;
6562                                         /* goto value; - WRONG! */
6563                                         /* think "A=1 A=2 B=$A" */
6564                                 }
6565                                 var_str_list = var_str_list->next;
6566                         } while (var_str_list);
6567                         if (p)
6568                                 goto value;
6569                 }
6570                 p = lookupvar(name);
6571  value:
6572                 if (!p)
6573                         return -1;
6574
6575                 len = strlen(p);
6576                 if (!(subtype == VSPLUS || subtype == VSLENGTH))
6577                         memtodest(p, len, syntax, quotes);
6578                 return len;
6579         }
6580
6581         if (subtype == VSPLUS || subtype == VSLENGTH)
6582                 STADJUST(-len, expdest);
6583         return len;
6584 }
6585
6586 /*
6587  * Expand a variable, and return a pointer to the next character in the
6588  * input string.
6589  */
6590 static char *
6591 evalvar(char *p, int flags, struct strlist *var_str_list)
6592 {
6593         char varflags;
6594         char subtype;
6595         char quoted;
6596         char easy;
6597         char *var;
6598         int patloc;
6599         int startloc;
6600         ssize_t varlen;
6601
6602         varflags = (unsigned char) *p++;
6603         subtype = varflags & VSTYPE;
6604         quoted = varflags & VSQUOTE;
6605         var = p;
6606         easy = (!quoted || (*var == '@' && shellparam.nparam));
6607         startloc = expdest - (char *)stackblock();
6608         p = strchr(p, '=') + 1; //TODO: use var_end(p)?
6609
6610  again:
6611         varlen = varvalue(var, varflags, flags, var_str_list);
6612         if (varflags & VSNUL)
6613                 varlen--;
6614
6615         if (subtype == VSPLUS) {
6616                 varlen = -1 - varlen;
6617                 goto vsplus;
6618         }
6619
6620         if (subtype == VSMINUS) {
6621  vsplus:
6622                 if (varlen < 0) {
6623                         argstr(
6624                                 p, flags | EXP_TILDE |
6625                                         (quoted ? EXP_QWORD : EXP_WORD),
6626                                 var_str_list
6627                         );
6628                         goto end;
6629                 }
6630                 if (easy)
6631                         goto record;
6632                 goto end;
6633         }
6634
6635         if (subtype == VSASSIGN || subtype == VSQUESTION) {
6636                 if (varlen < 0) {
6637                         if (subevalvar(p, var, /* strloc: */ 0,
6638                                         subtype, startloc, varflags,
6639                                         /* quotes: */ 0,
6640                                         var_str_list)
6641                         ) {
6642                                 varflags &= ~VSNUL;
6643                                 /*
6644                                  * Remove any recorded regions beyond
6645                                  * start of variable
6646                                  */
6647                                 removerecordregions(startloc);
6648                                 goto again;
6649                         }
6650                         goto end;
6651                 }
6652                 if (easy)
6653                         goto record;
6654                 goto end;
6655         }
6656
6657         if (varlen < 0 && uflag)
6658                 varunset(p, var, 0, 0);
6659
6660         if (subtype == VSLENGTH) {
6661                 cvtnum(varlen > 0 ? varlen : 0);
6662                 goto record;
6663         }
6664
6665         if (subtype == VSNORMAL) {
6666                 if (easy)
6667                         goto record;
6668                 goto end;
6669         }
6670
6671 #if DEBUG
6672         switch (subtype) {
6673         case VSTRIMLEFT:
6674         case VSTRIMLEFTMAX:
6675         case VSTRIMRIGHT:
6676         case VSTRIMRIGHTMAX:
6677 #if ENABLE_ASH_BASH_COMPAT
6678         case VSSUBSTR:
6679         case VSREPLACE:
6680         case VSREPLACEALL:
6681 #endif
6682                 break;
6683         default:
6684                 abort();
6685         }
6686 #endif
6687
6688         if (varlen >= 0) {
6689                 /*
6690                  * Terminate the string and start recording the pattern
6691                  * right after it
6692                  */
6693                 STPUTC('\0', expdest);
6694                 patloc = expdest - (char *)stackblock();
6695                 if (0 == subevalvar(p, /* str: */ NULL, patloc, subtype,
6696                                 startloc, varflags,
6697 //TODO: | EXP_REDIR too? All other such places do it too
6698                                 /* quotes: */ flags & (EXP_FULL | EXP_CASE),
6699                                 var_str_list)
6700                 ) {
6701                         int amount = expdest - (
6702                                 (char *)stackblock() + patloc - 1
6703                         );
6704                         STADJUST(-amount, expdest);
6705                 }
6706                 /* Remove any recorded regions beyond start of variable */
6707                 removerecordregions(startloc);
6708  record:
6709                 recordregion(startloc, expdest - (char *)stackblock(), quoted);
6710         }
6711
6712  end:
6713         if (subtype != VSNORMAL) {      /* skip to end of alternative */
6714                 int nesting = 1;
6715                 for (;;) {
6716                         unsigned char c = *p++;
6717                         if (c == CTLESC)
6718                                 p++;
6719                         else if (c == CTLBACKQ || c == (CTLBACKQ|CTLQUOTE)) {
6720                                 if (varlen >= 0)
6721                                         argbackq = argbackq->next;
6722                         } else if (c == CTLVAR) {
6723                                 if ((*p++ & VSTYPE) != VSNORMAL)
6724                                         nesting++;
6725                         } else if (c == CTLENDVAR) {
6726                                 if (--nesting == 0)
6727                                         break;
6728                         }
6729                 }
6730         }
6731         return p;
6732 }
6733
6734 /*
6735  * Break the argument string into pieces based upon IFS and add the
6736  * strings to the argument list.  The regions of the string to be
6737  * searched for IFS characters have been stored by recordregion.
6738  */
6739 static void
6740 ifsbreakup(char *string, struct arglist *arglist)
6741 {
6742         struct ifsregion *ifsp;
6743         struct strlist *sp;
6744         char *start;
6745         char *p;
6746         char *q;
6747         const char *ifs, *realifs;
6748         int ifsspc;
6749         int nulonly;
6750
6751         start = string;
6752         if (ifslastp != NULL) {
6753                 ifsspc = 0;
6754                 nulonly = 0;
6755                 realifs = ifsset() ? ifsval() : defifs;
6756                 ifsp = &ifsfirst;
6757                 do {
6758                         p = string + ifsp->begoff;
6759                         nulonly = ifsp->nulonly;
6760                         ifs = nulonly ? nullstr : realifs;
6761                         ifsspc = 0;
6762                         while (p < string + ifsp->endoff) {
6763                                 q = p;
6764                                 if ((unsigned char)*p == CTLESC)
6765                                         p++;
6766                                 if (!strchr(ifs, *p)) {
6767                                         p++;
6768                                         continue;
6769                                 }
6770                                 if (!nulonly)
6771                                         ifsspc = (strchr(defifs, *p) != NULL);
6772                                 /* Ignore IFS whitespace at start */
6773                                 if (q == start && ifsspc) {
6774                                         p++;
6775                                         start = p;
6776                                         continue;
6777                                 }
6778                                 *q = '\0';
6779                                 sp = stzalloc(sizeof(*sp));
6780                                 sp->text = start;
6781                                 *arglist->lastp = sp;
6782                                 arglist->lastp = &sp->next;
6783                                 p++;
6784                                 if (!nulonly) {
6785                                         for (;;) {
6786                                                 if (p >= string + ifsp->endoff) {
6787                                                         break;
6788                                                 }
6789                                                 q = p;
6790                                                 if ((unsigned char)*p == CTLESC)
6791                                                         p++;
6792                                                 if (strchr(ifs, *p) == NULL) {
6793                                                         p = q;
6794                                                         break;
6795                                                 }
6796                                                 if (strchr(defifs, *p) == NULL) {
6797                                                         if (ifsspc) {
6798                                                                 p++;
6799                                                                 ifsspc = 0;
6800                                                         } else {
6801                                                                 p = q;
6802                                                                 break;
6803                                                         }
6804                                                 } else
6805                                                         p++;
6806                                         }
6807                                 }
6808                                 start = p;
6809                         } /* while */
6810                         ifsp = ifsp->next;
6811                 } while (ifsp != NULL);
6812                 if (nulonly)
6813                         goto add;
6814         }
6815
6816         if (!*start)
6817                 return;
6818
6819  add:
6820         sp = stzalloc(sizeof(*sp));
6821         sp->text = start;
6822         *arglist->lastp = sp;
6823         arglist->lastp = &sp->next;
6824 }
6825
6826 static void
6827 ifsfree(void)
6828 {
6829         struct ifsregion *p;
6830
6831         INT_OFF;
6832         p = ifsfirst.next;
6833         do {
6834                 struct ifsregion *ifsp;
6835                 ifsp = p->next;
6836                 free(p);
6837                 p = ifsp;
6838         } while (p);
6839         ifslastp = NULL;
6840         ifsfirst.next = NULL;
6841         INT_ON;
6842 }
6843
6844 /*
6845  * Add a file name to the list.
6846  */
6847 static void
6848 addfname(const char *name)
6849 {
6850         struct strlist *sp;
6851
6852         sp = stzalloc(sizeof(*sp));
6853         sp->text = ststrdup(name);
6854         *exparg.lastp = sp;
6855         exparg.lastp = &sp->next;
6856 }
6857
6858 static char *expdir;
6859
6860 /*
6861  * Do metacharacter (i.e. *, ?, [...]) expansion.
6862  */
6863 static void
6864 expmeta(char *enddir, char *name)
6865 {
6866         char *p;
6867         const char *cp;
6868         char *start;
6869         char *endname;
6870         int metaflag;
6871         struct stat statb;
6872         DIR *dirp;
6873         struct dirent *dp;
6874         int atend;
6875         int matchdot;
6876
6877         metaflag = 0;
6878         start = name;
6879         for (p = name; *p; p++) {
6880                 if (*p == '*' || *p == '?')
6881                         metaflag = 1;
6882                 else if (*p == '[') {
6883                         char *q = p + 1;
6884                         if (*q == '!')
6885                                 q++;
6886                         for (;;) {
6887                                 if (*q == '\\')
6888                                         q++;
6889                                 if (*q == '/' || *q == '\0')
6890                                         break;
6891                                 if (*++q == ']') {
6892                                         metaflag = 1;
6893                                         break;
6894                                 }
6895                         }
6896                 } else if (*p == '\\')
6897                         p++;
6898                 else if (*p == '/') {
6899                         if (metaflag)
6900                                 goto out;
6901                         start = p + 1;
6902                 }
6903         }
6904  out:
6905         if (metaflag == 0) {    /* we've reached the end of the file name */
6906                 if (enddir != expdir)
6907                         metaflag++;
6908                 p = name;
6909                 do {
6910                         if (*p == '\\')
6911                                 p++;
6912                         *enddir++ = *p;
6913                 } while (*p++);
6914                 if (metaflag == 0 || lstat(expdir, &statb) >= 0)
6915                         addfname(expdir);
6916                 return;
6917         }
6918         endname = p;
6919         if (name < start) {
6920                 p = name;
6921                 do {
6922                         if (*p == '\\')
6923                                 p++;
6924                         *enddir++ = *p++;
6925                 } while (p < start);
6926         }
6927         if (enddir == expdir) {
6928                 cp = ".";
6929         } else if (enddir == expdir + 1 && *expdir == '/') {
6930                 cp = "/";
6931         } else {
6932                 cp = expdir;
6933                 enddir[-1] = '\0';
6934         }
6935         dirp = opendir(cp);
6936         if (dirp == NULL)
6937                 return;
6938         if (enddir != expdir)
6939                 enddir[-1] = '/';
6940         if (*endname == 0) {
6941                 atend = 1;
6942         } else {
6943                 atend = 0;
6944                 *endname++ = '\0';
6945         }
6946         matchdot = 0;
6947         p = start;
6948         if (*p == '\\')
6949                 p++;
6950         if (*p == '.')
6951                 matchdot++;
6952         while (!pending_int && (dp = readdir(dirp)) != NULL) {
6953                 if (dp->d_name[0] == '.' && !matchdot)
6954                         continue;
6955                 if (pmatch(start, dp->d_name)) {
6956                         if (atend) {
6957                                 strcpy(enddir, dp->d_name);
6958                                 addfname(expdir);
6959                         } else {
6960                                 for (p = enddir, cp = dp->d_name; (*p++ = *cp++) != '\0';)
6961                                         continue;
6962                                 p[-1] = '/';
6963                                 expmeta(p, endname);
6964                         }
6965                 }
6966         }
6967         closedir(dirp);
6968         if (!atend)
6969                 endname[-1] = '/';
6970 }
6971
6972 static struct strlist *
6973 msort(struct strlist *list, int len)
6974 {
6975         struct strlist *p, *q = NULL;
6976         struct strlist **lpp;
6977         int half;
6978         int n;
6979
6980         if (len <= 1)
6981                 return list;
6982         half = len >> 1;
6983         p = list;
6984         for (n = half; --n >= 0;) {
6985                 q = p;
6986                 p = p->next;
6987         }
6988         q->next = NULL;                 /* terminate first half of list */
6989         q = msort(list, half);          /* sort first half of list */
6990         p = msort(p, len - half);               /* sort second half */
6991         lpp = &list;
6992         for (;;) {
6993 #if ENABLE_LOCALE_SUPPORT
6994                 if (strcoll(p->text, q->text) < 0)
6995 #else
6996                 if (strcmp(p->text, q->text) < 0)
6997 #endif
6998                                                 {
6999                         *lpp = p;
7000                         lpp = &p->next;
7001                         p = *lpp;
7002                         if (p == NULL) {
7003                                 *lpp = q;
7004                                 break;
7005                         }
7006                 } else {
7007                         *lpp = q;
7008                         lpp = &q->next;
7009                         q = *lpp;
7010                         if (q == NULL) {
7011                                 *lpp = p;
7012                                 break;
7013                         }
7014                 }
7015         }
7016         return list;
7017 }
7018
7019 /*
7020  * Sort the results of file name expansion.  It calculates the number of
7021  * strings to sort and then calls msort (short for merge sort) to do the
7022  * work.
7023  */
7024 static struct strlist *
7025 expsort(struct strlist *str)
7026 {
7027         int len;
7028         struct strlist *sp;
7029
7030         len = 0;
7031         for (sp = str; sp; sp = sp->next)
7032                 len++;
7033         return msort(str, len);
7034 }
7035
7036 static void
7037 expandmeta(struct strlist *str /*, int flag*/)
7038 {
7039         static const char metachars[] ALIGN1 = {
7040                 '*', '?', '[', 0
7041         };
7042         /* TODO - EXP_REDIR */
7043
7044         while (str) {
7045                 struct strlist **savelastp;
7046                 struct strlist *sp;
7047                 char *p;
7048
7049                 if (fflag)
7050                         goto nometa;
7051                 if (!strpbrk(str->text, metachars))
7052                         goto nometa;
7053                 savelastp = exparg.lastp;
7054
7055                 INT_OFF;
7056                 p = preglob(str->text, 0, RMESCAPE_ALLOC | RMESCAPE_HEAP);
7057                 {
7058                         int i = strlen(str->text);
7059                         expdir = ckmalloc(i < 2048 ? 2048 : i); /* XXX */
7060                 }
7061
7062                 expmeta(expdir, p);
7063                 free(expdir);
7064                 if (p != str->text)
7065                         free(p);
7066                 INT_ON;
7067                 if (exparg.lastp == savelastp) {
7068                         /*
7069                          * no matches
7070                          */
7071  nometa:
7072                         *exparg.lastp = str;
7073                         rmescapes(str->text, 0);
7074                         exparg.lastp = &str->next;
7075                 } else {
7076                         *exparg.lastp = NULL;
7077                         *savelastp = sp = expsort(*savelastp);
7078                         while (sp->next != NULL)
7079                                 sp = sp->next;
7080                         exparg.lastp = &sp->next;
7081                 }
7082                 str = str->next;
7083         }
7084 }
7085
7086 /*
7087  * Perform variable substitution and command substitution on an argument,
7088  * placing the resulting list of arguments in arglist.  If EXP_FULL is true,
7089  * perform splitting and file name expansion.  When arglist is NULL, perform
7090  * here document expansion.
7091  */
7092 static void
7093 expandarg(union node *arg, struct arglist *arglist, int flag)
7094 {
7095         struct strlist *sp;
7096         char *p;
7097
7098         argbackq = arg->narg.backquote;
7099         STARTSTACKSTR(expdest);
7100         ifsfirst.next = NULL;
7101         ifslastp = NULL;
7102         argstr(arg->narg.text, flag,
7103                         /* var_str_list: */ arglist ? arglist->list : NULL);
7104         p = _STPUTC('\0', expdest);
7105         expdest = p - 1;
7106         if (arglist == NULL) {
7107                 return;                 /* here document expanded */
7108         }
7109         p = grabstackstr(p);
7110         exparg.lastp = &exparg.list;
7111         /*
7112          * TODO - EXP_REDIR
7113          */
7114         if (flag & EXP_FULL) {
7115                 ifsbreakup(p, &exparg);
7116                 *exparg.lastp = NULL;
7117                 exparg.lastp = &exparg.list;
7118                 expandmeta(exparg.list /*, flag*/);
7119         } else {
7120                 if (flag & EXP_REDIR) /*XXX - for now, just remove escapes */
7121                         rmescapes(p, 0);
7122                 sp = stzalloc(sizeof(*sp));
7123                 sp->text = p;
7124                 *exparg.lastp = sp;
7125                 exparg.lastp = &sp->next;
7126         }
7127         if (ifsfirst.next)
7128                 ifsfree();
7129         *exparg.lastp = NULL;
7130         if (exparg.list) {
7131                 *arglist->lastp = exparg.list;
7132                 arglist->lastp = exparg.lastp;
7133         }
7134 }
7135
7136 /*
7137  * Expand shell variables and backquotes inside a here document.
7138  */
7139 static void
7140 expandhere(union node *arg, int fd)
7141 {
7142         herefd = fd;
7143         expandarg(arg, (struct arglist *)NULL, 0);
7144         full_write(fd, stackblock(), expdest - (char *)stackblock());
7145 }
7146
7147 /*
7148  * Returns true if the pattern matches the string.
7149  */
7150 static int
7151 patmatch(char *pattern, const char *string)
7152 {
7153         return pmatch(preglob(pattern, 0, 0), string);
7154 }
7155
7156 /*
7157  * See if a pattern matches in a case statement.
7158  */
7159 static int
7160 casematch(union node *pattern, char *val)
7161 {
7162         struct stackmark smark;
7163         int result;
7164
7165         setstackmark(&smark);
7166         argbackq = pattern->narg.backquote;
7167         STARTSTACKSTR(expdest);
7168         ifslastp = NULL;
7169         argstr(pattern->narg.text, EXP_TILDE | EXP_CASE,
7170                         /* var_str_list: */ NULL);
7171         STACKSTRNUL(expdest);
7172         result = patmatch(stackblock(), val);
7173         popstackmark(&smark);
7174         return result;
7175 }
7176
7177
7178 /* ============ find_command */
7179
7180 struct builtincmd {
7181         const char *name;
7182         int (*builtin)(int, char **) FAST_FUNC;
7183         /* unsigned flags; */
7184 };
7185 #define IS_BUILTIN_SPECIAL(b) ((b)->name[0] & 1)
7186 /* "regular" builtins always take precedence over commands,
7187  * regardless of PATH=....%builtin... position */
7188 #define IS_BUILTIN_REGULAR(b) ((b)->name[0] & 2)
7189 #define IS_BUILTIN_ASSIGN(b)  ((b)->name[0] & 4)
7190
7191 struct cmdentry {
7192         smallint cmdtype;       /* CMDxxx */
7193         union param {
7194                 int index;
7195                 /* index >= 0 for commands without path (slashes) */
7196                 /* (TODO: what exactly does the value mean? PATH position?) */
7197                 /* index == -1 for commands with slashes */
7198                 /* index == (-2 - applet_no) for NOFORK applets */
7199                 const struct builtincmd *cmd;
7200                 struct funcnode *func;
7201         } u;
7202 };
7203 /* values of cmdtype */
7204 #define CMDUNKNOWN      -1      /* no entry in table for command */
7205 #define CMDNORMAL       0       /* command is an executable program */
7206 #define CMDFUNCTION     1       /* command is a shell function */
7207 #define CMDBUILTIN      2       /* command is a shell builtin */
7208
7209 /* action to find_command() */
7210 #define DO_ERR          0x01    /* prints errors */
7211 #define DO_ABS          0x02    /* checks absolute paths */
7212 #define DO_NOFUNC       0x04    /* don't return shell functions, for command */
7213 #define DO_ALTPATH      0x08    /* using alternate path */
7214 #define DO_ALTBLTIN     0x20    /* %builtin in alt. path */
7215
7216 static void find_command(char *, struct cmdentry *, int, const char *);
7217
7218
7219 /* ============ Hashing commands */
7220
7221 /*
7222  * When commands are first encountered, they are entered in a hash table.
7223  * This ensures that a full path search will not have to be done for them
7224  * on each invocation.
7225  *
7226  * We should investigate converting to a linear search, even though that
7227  * would make the command name "hash" a misnomer.
7228  */
7229
7230 struct tblentry {
7231         struct tblentry *next;  /* next entry in hash chain */
7232         union param param;      /* definition of builtin function */
7233         smallint cmdtype;       /* CMDxxx */
7234         char rehash;            /* if set, cd done since entry created */
7235         char cmdname[1];        /* name of command */
7236 };
7237
7238 static struct tblentry **cmdtable;
7239 #define INIT_G_cmdtable() do { \
7240         cmdtable = xzalloc(CMDTABLESIZE * sizeof(cmdtable[0])); \
7241 } while (0)
7242
7243 static int builtinloc = -1;     /* index in path of %builtin, or -1 */
7244
7245
7246 static void
7247 tryexec(IF_FEATURE_SH_STANDALONE(int applet_no,) char *cmd, char **argv, char **envp)
7248 {
7249         int repeated = 0;
7250
7251 #if ENABLE_FEATURE_SH_STANDALONE
7252         if (applet_no >= 0) {
7253                 if (APPLET_IS_NOEXEC(applet_no)) {
7254                         while (*envp)
7255                                 putenv(*envp++);
7256                         run_applet_no_and_exit(applet_no, argv);
7257                 }
7258                 /* re-exec ourselves with the new arguments */
7259                 execve(bb_busybox_exec_path, argv, envp);
7260                 /* If they called chroot or otherwise made the binary no longer
7261                  * executable, fall through */
7262         }
7263 #endif
7264
7265  repeat:
7266 #ifdef SYSV
7267         do {
7268                 execve(cmd, argv, envp);
7269         } while (errno == EINTR);
7270 #else
7271         execve(cmd, argv, envp);
7272 #endif
7273         if (repeated) {
7274                 free(argv);
7275                 return;
7276         }
7277         if (errno == ENOEXEC) {
7278                 char **ap;
7279                 char **new;
7280
7281                 for (ap = argv; *ap; ap++)
7282                         continue;
7283                 ap = new = ckmalloc((ap - argv + 2) * sizeof(ap[0]));
7284                 ap[1] = cmd;
7285                 ap[0] = cmd = (char *)DEFAULT_SHELL;
7286                 ap += 2;
7287                 argv++;
7288                 while ((*ap++ = *argv++) != NULL)
7289                         continue;
7290                 argv = new;
7291                 repeated++;
7292                 goto repeat;
7293         }
7294 }
7295
7296 /*
7297  * Exec a program.  Never returns.  If you change this routine, you may
7298  * have to change the find_command routine as well.
7299  */
7300 static void shellexec(char **, const char *, int) NORETURN;
7301 static void
7302 shellexec(char **argv, const char *path, int idx)
7303 {
7304         char *cmdname;
7305         int e;
7306         char **envp;
7307         int exerrno;
7308 #if ENABLE_FEATURE_SH_STANDALONE
7309         int applet_no = -1;
7310 #endif
7311
7312         clearredir(/*drop:*/ 1);
7313         envp = listvars(VEXPORT, VUNSET, 0);
7314         if (strchr(argv[0], '/') != NULL
7315 #if ENABLE_FEATURE_SH_STANDALONE
7316          || (applet_no = find_applet_by_name(argv[0])) >= 0
7317 #endif
7318         ) {
7319                 tryexec(IF_FEATURE_SH_STANDALONE(applet_no,) argv[0], argv, envp);
7320                 e = errno;
7321         } else {
7322                 e = ENOENT;
7323                 while ((cmdname = path_advance(&path, argv[0])) != NULL) {
7324                         if (--idx < 0 && pathopt == NULL) {
7325                                 tryexec(IF_FEATURE_SH_STANDALONE(-1,) cmdname, argv, envp);
7326                                 if (errno != ENOENT && errno != ENOTDIR)
7327                                         e = errno;
7328                         }
7329                         stunalloc(cmdname);
7330                 }
7331         }
7332
7333         /* Map to POSIX errors */
7334         switch (e) {
7335         case EACCES:
7336                 exerrno = 126;
7337                 break;
7338         case ENOENT:
7339                 exerrno = 127;
7340                 break;
7341         default:
7342                 exerrno = 2;
7343                 break;
7344         }
7345         exitstatus = exerrno;
7346         TRACE(("shellexec failed for %s, errno %d, suppress_int %d\n",
7347                 argv[0], e, suppress_int));
7348         ash_msg_and_raise(EXEXEC, "%s: %s", argv[0], errmsg(e, "not found"));
7349         /* NOTREACHED */
7350 }
7351
7352 static void
7353 printentry(struct tblentry *cmdp)
7354 {
7355         int idx;
7356         const char *path;
7357         char *name;
7358
7359         idx = cmdp->param.index;
7360         path = pathval();
7361         do {
7362                 name = path_advance(&path, cmdp->cmdname);
7363                 stunalloc(name);
7364         } while (--idx >= 0);
7365         out1fmt("%s%s\n", name, (cmdp->rehash ? "*" : nullstr));
7366 }
7367
7368 /*
7369  * Clear out command entries.  The argument specifies the first entry in
7370  * PATH which has changed.
7371  */
7372 static void
7373 clearcmdentry(int firstchange)
7374 {
7375         struct tblentry **tblp;
7376         struct tblentry **pp;
7377         struct tblentry *cmdp;
7378
7379         INT_OFF;
7380         for (tblp = cmdtable; tblp < &cmdtable[CMDTABLESIZE]; tblp++) {
7381                 pp = tblp;
7382                 while ((cmdp = *pp) != NULL) {
7383                         if ((cmdp->cmdtype == CMDNORMAL &&
7384                              cmdp->param.index >= firstchange)
7385                          || (cmdp->cmdtype == CMDBUILTIN &&
7386                              builtinloc >= firstchange)
7387                         ) {
7388                                 *pp = cmdp->next;
7389                                 free(cmdp);
7390                         } else {
7391                                 pp = &cmdp->next;
7392                         }
7393                 }
7394         }
7395         INT_ON;
7396 }
7397
7398 /*
7399  * Locate a command in the command hash table.  If "add" is nonzero,
7400  * add the command to the table if it is not already present.  The
7401  * variable "lastcmdentry" is set to point to the address of the link
7402  * pointing to the entry, so that delete_cmd_entry can delete the
7403  * entry.
7404  *
7405  * Interrupts must be off if called with add != 0.
7406  */
7407 static struct tblentry **lastcmdentry;
7408
7409 static struct tblentry *
7410 cmdlookup(const char *name, int add)
7411 {
7412         unsigned int hashval;
7413         const char *p;
7414         struct tblentry *cmdp;
7415         struct tblentry **pp;
7416
7417         p = name;
7418         hashval = (unsigned char)*p << 4;
7419         while (*p)
7420                 hashval += (unsigned char)*p++;
7421         hashval &= 0x7FFF;
7422         pp = &cmdtable[hashval % CMDTABLESIZE];
7423         for (cmdp = *pp; cmdp; cmdp = cmdp->next) {
7424                 if (strcmp(cmdp->cmdname, name) == 0)
7425                         break;
7426                 pp = &cmdp->next;
7427         }
7428         if (add && cmdp == NULL) {
7429                 cmdp = *pp = ckzalloc(sizeof(struct tblentry)
7430                                 + strlen(name)
7431                                 /* + 1 - already done because
7432                                  * tblentry::cmdname is char[1] */);
7433                 /*cmdp->next = NULL; - ckzalloc did it */
7434                 cmdp->cmdtype = CMDUNKNOWN;
7435                 strcpy(cmdp->cmdname, name);
7436         }
7437         lastcmdentry = pp;
7438         return cmdp;
7439 }
7440
7441 /*
7442  * Delete the command entry returned on the last lookup.
7443  */
7444 static void
7445 delete_cmd_entry(void)
7446 {
7447         struct tblentry *cmdp;
7448
7449         INT_OFF;
7450         cmdp = *lastcmdentry;
7451         *lastcmdentry = cmdp->next;
7452         if (cmdp->cmdtype == CMDFUNCTION)
7453                 freefunc(cmdp->param.func);
7454         free(cmdp);
7455         INT_ON;
7456 }
7457
7458 /*
7459  * Add a new command entry, replacing any existing command entry for
7460  * the same name - except special builtins.
7461  */
7462 static void
7463 addcmdentry(char *name, struct cmdentry *entry)
7464 {
7465         struct tblentry *cmdp;
7466
7467         cmdp = cmdlookup(name, 1);
7468         if (cmdp->cmdtype == CMDFUNCTION) {
7469                 freefunc(cmdp->param.func);
7470         }
7471         cmdp->cmdtype = entry->cmdtype;
7472         cmdp->param = entry->u;
7473         cmdp->rehash = 0;
7474 }
7475
7476 static int FAST_FUNC
7477 hashcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
7478 {
7479         struct tblentry **pp;
7480         struct tblentry *cmdp;
7481         int c;
7482         struct cmdentry entry;
7483         char *name;
7484
7485         if (nextopt("r") != '\0') {
7486                 clearcmdentry(0);
7487                 return 0;
7488         }
7489
7490         if (*argptr == NULL) {
7491                 for (pp = cmdtable; pp < &cmdtable[CMDTABLESIZE]; pp++) {
7492                         for (cmdp = *pp; cmdp; cmdp = cmdp->next) {
7493                                 if (cmdp->cmdtype == CMDNORMAL)
7494                                         printentry(cmdp);
7495                         }
7496                 }
7497                 return 0;
7498         }
7499
7500         c = 0;
7501         while ((name = *argptr) != NULL) {
7502                 cmdp = cmdlookup(name, 0);
7503                 if (cmdp != NULL
7504                  && (cmdp->cmdtype == CMDNORMAL
7505                      || (cmdp->cmdtype == CMDBUILTIN && builtinloc >= 0))
7506                 ) {
7507                         delete_cmd_entry();
7508                 }
7509                 find_command(name, &entry, DO_ERR, pathval());
7510                 if (entry.cmdtype == CMDUNKNOWN)
7511                         c = 1;
7512                 argptr++;
7513         }
7514         return c;
7515 }
7516
7517 /*
7518  * Called when a cd is done.  Marks all commands so the next time they
7519  * are executed they will be rehashed.
7520  */
7521 static void
7522 hashcd(void)
7523 {
7524         struct tblentry **pp;
7525         struct tblentry *cmdp;
7526
7527         for (pp = cmdtable; pp < &cmdtable[CMDTABLESIZE]; pp++) {
7528                 for (cmdp = *pp; cmdp; cmdp = cmdp->next) {
7529                         if (cmdp->cmdtype == CMDNORMAL
7530                          || (cmdp->cmdtype == CMDBUILTIN
7531                              && !IS_BUILTIN_REGULAR(cmdp->param.cmd)
7532                              && builtinloc > 0)
7533                         ) {
7534                                 cmdp->rehash = 1;
7535                         }
7536                 }
7537         }
7538 }
7539
7540 /*
7541  * Fix command hash table when PATH changed.
7542  * Called before PATH is changed.  The argument is the new value of PATH;
7543  * pathval() still returns the old value at this point.
7544  * Called with interrupts off.
7545  */
7546 static void FAST_FUNC
7547 changepath(const char *new)
7548 {
7549         const char *old;
7550         int firstchange;
7551         int idx;
7552         int idx_bltin;
7553
7554         old = pathval();
7555         firstchange = 9999;     /* assume no change */
7556         idx = 0;
7557         idx_bltin = -1;
7558         for (;;) {
7559                 if (*old != *new) {
7560                         firstchange = idx;
7561                         if ((*old == '\0' && *new == ':')
7562                          || (*old == ':' && *new == '\0')
7563                         ) {
7564                                 firstchange++;
7565                         }
7566                         old = new;      /* ignore subsequent differences */
7567                 }
7568                 if (*new == '\0')
7569                         break;
7570                 if (*new == '%' && idx_bltin < 0 && prefix(new + 1, "builtin"))
7571                         idx_bltin = idx;
7572                 if (*new == ':')
7573                         idx++;
7574                 new++;
7575                 old++;
7576         }
7577         if (builtinloc < 0 && idx_bltin >= 0)
7578                 builtinloc = idx_bltin;             /* zap builtins */
7579         if (builtinloc >= 0 && idx_bltin < 0)
7580                 firstchange = 0;
7581         clearcmdentry(firstchange);
7582         builtinloc = idx_bltin;
7583 }
7584
7585 #define TEOF 0
7586 #define TNL 1
7587 #define TREDIR 2
7588 #define TWORD 3
7589 #define TSEMI 4
7590 #define TBACKGND 5
7591 #define TAND 6
7592 #define TOR 7
7593 #define TPIPE 8
7594 #define TLP 9
7595 #define TRP 10
7596 #define TENDCASE 11
7597 #define TENDBQUOTE 12
7598 #define TNOT 13
7599 #define TCASE 14
7600 #define TDO 15
7601 #define TDONE 16
7602 #define TELIF 17
7603 #define TELSE 18
7604 #define TESAC 19
7605 #define TFI 20
7606 #define TFOR 21
7607 #define TIF 22
7608 #define TIN 23
7609 #define TTHEN 24
7610 #define TUNTIL 25
7611 #define TWHILE 26
7612 #define TBEGIN 27
7613 #define TEND 28
7614 typedef smallint token_id_t;
7615
7616 /* first char is indicating which tokens mark the end of a list */
7617 static const char *const tokname_array[] = {
7618         "\1end of file",
7619         "\0newline",
7620         "\0redirection",
7621         "\0word",
7622         "\0;",
7623         "\0&",
7624         "\0&&",
7625         "\0||",
7626         "\0|",
7627         "\0(",
7628         "\1)",
7629         "\1;;",
7630         "\1`",
7631 #define KWDOFFSET 13
7632         /* the following are keywords */
7633         "\0!",
7634         "\0case",
7635         "\1do",
7636         "\1done",
7637         "\1elif",
7638         "\1else",
7639         "\1esac",
7640         "\1fi",
7641         "\0for",
7642         "\0if",
7643         "\0in",
7644         "\1then",
7645         "\0until",
7646         "\0while",
7647         "\0{",
7648         "\1}",
7649 };
7650
7651 /* Wrapper around strcmp for qsort/bsearch/... */
7652 static int
7653 pstrcmp(const void *a, const void *b)
7654 {
7655         return strcmp((char*) a, (*(char**) b) + 1);
7656 }
7657
7658 static const char *const *
7659 findkwd(const char *s)
7660 {
7661         return bsearch(s, tokname_array + KWDOFFSET,
7662                         ARRAY_SIZE(tokname_array) - KWDOFFSET,
7663                         sizeof(tokname_array[0]), pstrcmp);
7664 }
7665
7666 /*
7667  * Locate and print what a word is...
7668  */
7669 static int
7670 describe_command(char *command, int describe_command_verbose)
7671 {
7672         struct cmdentry entry;
7673         struct tblentry *cmdp;
7674 #if ENABLE_ASH_ALIAS
7675         const struct alias *ap;
7676 #endif
7677         const char *path = pathval();
7678
7679         if (describe_command_verbose) {
7680                 out1str(command);
7681         }
7682
7683         /* First look at the keywords */
7684         if (findkwd(command)) {
7685                 out1str(describe_command_verbose ? " is a shell keyword" : command);
7686                 goto out;
7687         }
7688
7689 #if ENABLE_ASH_ALIAS
7690         /* Then look at the aliases */
7691         ap = lookupalias(command, 0);
7692         if (ap != NULL) {
7693                 if (!describe_command_verbose) {
7694                         out1str("alias ");
7695                         printalias(ap);
7696                         return 0;
7697                 }
7698                 out1fmt(" is an alias for %s", ap->val);
7699                 goto out;
7700         }
7701 #endif
7702         /* Then check if it is a tracked alias */
7703         cmdp = cmdlookup(command, 0);
7704         if (cmdp != NULL) {
7705                 entry.cmdtype = cmdp->cmdtype;
7706                 entry.u = cmdp->param;
7707         } else {
7708                 /* Finally use brute force */
7709                 find_command(command, &entry, DO_ABS, path);
7710         }
7711
7712         switch (entry.cmdtype) {
7713         case CMDNORMAL: {
7714                 int j = entry.u.index;
7715                 char *p;
7716                 if (j < 0) {
7717                         p = command;
7718                 } else {
7719                         do {
7720                                 p = path_advance(&path, command);
7721                                 stunalloc(p);
7722                         } while (--j >= 0);
7723                 }
7724                 if (describe_command_verbose) {
7725                         out1fmt(" is%s %s",
7726                                 (cmdp ? " a tracked alias for" : nullstr), p
7727                         );
7728                 } else {
7729                         out1str(p);
7730                 }
7731                 break;
7732         }
7733
7734         case CMDFUNCTION:
7735                 if (describe_command_verbose) {
7736                         out1str(" is a shell function");
7737                 } else {
7738                         out1str(command);
7739                 }
7740                 break;
7741
7742         case CMDBUILTIN:
7743                 if (describe_command_verbose) {
7744                         out1fmt(" is a %sshell builtin",
7745                                 IS_BUILTIN_SPECIAL(entry.u.cmd) ?
7746                                         "special " : nullstr
7747                         );
7748                 } else {
7749                         out1str(command);
7750                 }
7751                 break;
7752
7753         default:
7754                 if (describe_command_verbose) {
7755                         out1str(": not found\n");
7756                 }
7757                 return 127;
7758         }
7759  out:
7760         out1str("\n");
7761         return 0;
7762 }
7763
7764 static int FAST_FUNC
7765 typecmd(int argc UNUSED_PARAM, char **argv)
7766 {
7767         int i = 1;
7768         int err = 0;
7769         int verbose = 1;
7770
7771         /* type -p ... ? (we don't bother checking for 'p') */
7772         if (argv[1] && argv[1][0] == '-') {
7773                 i++;
7774                 verbose = 0;
7775         }
7776         while (argv[i]) {
7777                 err |= describe_command(argv[i++], verbose);
7778         }
7779         return err;
7780 }
7781
7782 #if ENABLE_ASH_CMDCMD
7783 static int FAST_FUNC
7784 commandcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
7785 {
7786         int c;
7787         enum {
7788                 VERIFY_BRIEF = 1,
7789                 VERIFY_VERBOSE = 2,
7790         } verify = 0;
7791
7792         while ((c = nextopt("pvV")) != '\0')
7793                 if (c == 'V')
7794                         verify |= VERIFY_VERBOSE;
7795                 else if (c == 'v')
7796                         verify |= VERIFY_BRIEF;
7797 #if DEBUG
7798                 else if (c != 'p')
7799                         abort();
7800 #endif
7801         /* Mimic bash: just "command -v" doesn't complain, it's a nop */
7802         if (verify && (*argptr != NULL)) {
7803                 return describe_command(*argptr, verify - VERIFY_BRIEF);
7804         }
7805
7806         return 0;
7807 }
7808 #endif
7809
7810
7811 /* ============ eval.c */
7812
7813 static int funcblocksize;       /* size of structures in function */
7814 static int funcstringsize;      /* size of strings in node */
7815 static void *funcblock;         /* block to allocate function from */
7816 static char *funcstring;        /* block to allocate strings from */
7817
7818 /* flags in argument to evaltree */
7819 #define EV_EXIT    01           /* exit after evaluating tree */
7820 #define EV_TESTED  02           /* exit status is checked; ignore -e flag */
7821 #define EV_BACKCMD 04           /* command executing within back quotes */
7822
7823 static const uint8_t nodesize[N_NUMBER] = {
7824         [NCMD     ] = SHELL_ALIGN(sizeof(struct ncmd)),
7825         [NPIPE    ] = SHELL_ALIGN(sizeof(struct npipe)),
7826         [NREDIR   ] = SHELL_ALIGN(sizeof(struct nredir)),
7827         [NBACKGND ] = SHELL_ALIGN(sizeof(struct nredir)),
7828         [NSUBSHELL] = SHELL_ALIGN(sizeof(struct nredir)),
7829         [NAND     ] = SHELL_ALIGN(sizeof(struct nbinary)),
7830         [NOR      ] = SHELL_ALIGN(sizeof(struct nbinary)),
7831         [NSEMI    ] = SHELL_ALIGN(sizeof(struct nbinary)),
7832         [NIF      ] = SHELL_ALIGN(sizeof(struct nif)),
7833         [NWHILE   ] = SHELL_ALIGN(sizeof(struct nbinary)),
7834         [NUNTIL   ] = SHELL_ALIGN(sizeof(struct nbinary)),
7835         [NFOR     ] = SHELL_ALIGN(sizeof(struct nfor)),
7836         [NCASE    ] = SHELL_ALIGN(sizeof(struct ncase)),
7837         [NCLIST   ] = SHELL_ALIGN(sizeof(struct nclist)),
7838         [NDEFUN   ] = SHELL_ALIGN(sizeof(struct narg)),
7839         [NARG     ] = SHELL_ALIGN(sizeof(struct narg)),
7840         [NTO      ] = SHELL_ALIGN(sizeof(struct nfile)),
7841 #if ENABLE_ASH_BASH_COMPAT
7842         [NTO2     ] = SHELL_ALIGN(sizeof(struct nfile)),
7843 #endif
7844         [NCLOBBER ] = SHELL_ALIGN(sizeof(struct nfile)),
7845         [NFROM    ] = SHELL_ALIGN(sizeof(struct nfile)),
7846         [NFROMTO  ] = SHELL_ALIGN(sizeof(struct nfile)),
7847         [NAPPEND  ] = SHELL_ALIGN(sizeof(struct nfile)),
7848         [NTOFD    ] = SHELL_ALIGN(sizeof(struct ndup)),
7849         [NFROMFD  ] = SHELL_ALIGN(sizeof(struct ndup)),
7850         [NHERE    ] = SHELL_ALIGN(sizeof(struct nhere)),
7851         [NXHERE   ] = SHELL_ALIGN(sizeof(struct nhere)),
7852         [NNOT     ] = SHELL_ALIGN(sizeof(struct nnot)),
7853 };
7854
7855 static void calcsize(union node *n);
7856
7857 static void
7858 sizenodelist(struct nodelist *lp)
7859 {
7860         while (lp) {
7861                 funcblocksize += SHELL_ALIGN(sizeof(struct nodelist));
7862                 calcsize(lp->n);
7863                 lp = lp->next;
7864         }
7865 }
7866
7867 static void
7868 calcsize(union node *n)
7869 {
7870         if (n == NULL)
7871                 return;
7872         funcblocksize += nodesize[n->type];
7873         switch (n->type) {
7874         case NCMD:
7875                 calcsize(n->ncmd.redirect);
7876                 calcsize(n->ncmd.args);
7877                 calcsize(n->ncmd.assign);
7878                 break;
7879         case NPIPE:
7880                 sizenodelist(n->npipe.cmdlist);
7881                 break;
7882         case NREDIR:
7883         case NBACKGND:
7884         case NSUBSHELL:
7885                 calcsize(n->nredir.redirect);
7886                 calcsize(n->nredir.n);
7887                 break;
7888         case NAND:
7889         case NOR:
7890         case NSEMI:
7891         case NWHILE:
7892         case NUNTIL:
7893                 calcsize(n->nbinary.ch2);
7894                 calcsize(n->nbinary.ch1);
7895                 break;
7896         case NIF:
7897                 calcsize(n->nif.elsepart);
7898                 calcsize(n->nif.ifpart);
7899                 calcsize(n->nif.test);
7900                 break;
7901         case NFOR:
7902                 funcstringsize += strlen(n->nfor.var) + 1;
7903                 calcsize(n->nfor.body);
7904                 calcsize(n->nfor.args);
7905                 break;
7906         case NCASE:
7907                 calcsize(n->ncase.cases);
7908                 calcsize(n->ncase.expr);
7909                 break;
7910         case NCLIST:
7911                 calcsize(n->nclist.body);
7912                 calcsize(n->nclist.pattern);
7913                 calcsize(n->nclist.next);
7914                 break;
7915         case NDEFUN:
7916         case NARG:
7917                 sizenodelist(n->narg.backquote);
7918                 funcstringsize += strlen(n->narg.text) + 1;
7919                 calcsize(n->narg.next);
7920                 break;
7921         case NTO:
7922 #if ENABLE_ASH_BASH_COMPAT
7923         case NTO2:
7924 #endif
7925         case NCLOBBER:
7926         case NFROM:
7927         case NFROMTO:
7928         case NAPPEND:
7929                 calcsize(n->nfile.fname);
7930                 calcsize(n->nfile.next);
7931                 break;
7932         case NTOFD:
7933         case NFROMFD:
7934                 calcsize(n->ndup.vname);
7935                 calcsize(n->ndup.next);
7936         break;
7937         case NHERE:
7938         case NXHERE:
7939                 calcsize(n->nhere.doc);
7940                 calcsize(n->nhere.next);
7941                 break;
7942         case NNOT:
7943                 calcsize(n->nnot.com);
7944                 break;
7945         };
7946 }
7947
7948 static char *
7949 nodeckstrdup(char *s)
7950 {
7951         char *rtn = funcstring;
7952
7953         strcpy(funcstring, s);
7954         funcstring += strlen(s) + 1;
7955         return rtn;
7956 }
7957
7958 static union node *copynode(union node *);
7959
7960 static struct nodelist *
7961 copynodelist(struct nodelist *lp)
7962 {
7963         struct nodelist *start;
7964         struct nodelist **lpp;
7965
7966         lpp = &start;
7967         while (lp) {
7968                 *lpp = funcblock;
7969                 funcblock = (char *) funcblock + SHELL_ALIGN(sizeof(struct nodelist));
7970                 (*lpp)->n = copynode(lp->n);
7971                 lp = lp->next;
7972                 lpp = &(*lpp)->next;
7973         }
7974         *lpp = NULL;
7975         return start;
7976 }
7977
7978 static union node *
7979 copynode(union node *n)
7980 {
7981         union node *new;
7982
7983         if (n == NULL)
7984                 return NULL;
7985         new = funcblock;
7986         funcblock = (char *) funcblock + nodesize[n->type];
7987
7988         switch (n->type) {
7989         case NCMD:
7990                 new->ncmd.redirect = copynode(n->ncmd.redirect);
7991                 new->ncmd.args = copynode(n->ncmd.args);
7992                 new->ncmd.assign = copynode(n->ncmd.assign);
7993                 break;
7994         case NPIPE:
7995                 new->npipe.cmdlist = copynodelist(n->npipe.cmdlist);
7996                 new->npipe.pipe_backgnd = n->npipe.pipe_backgnd;
7997                 break;
7998         case NREDIR:
7999         case NBACKGND:
8000         case NSUBSHELL:
8001                 new->nredir.redirect = copynode(n->nredir.redirect);
8002                 new->nredir.n = copynode(n->nredir.n);
8003                 break;
8004         case NAND:
8005         case NOR:
8006         case NSEMI:
8007         case NWHILE:
8008         case NUNTIL:
8009                 new->nbinary.ch2 = copynode(n->nbinary.ch2);
8010                 new->nbinary.ch1 = copynode(n->nbinary.ch1);
8011                 break;
8012         case NIF:
8013                 new->nif.elsepart = copynode(n->nif.elsepart);
8014                 new->nif.ifpart = copynode(n->nif.ifpart);
8015                 new->nif.test = copynode(n->nif.test);
8016                 break;
8017         case NFOR:
8018                 new->nfor.var = nodeckstrdup(n->nfor.var);
8019                 new->nfor.body = copynode(n->nfor.body);
8020                 new->nfor.args = copynode(n->nfor.args);
8021                 break;
8022         case NCASE:
8023                 new->ncase.cases = copynode(n->ncase.cases);
8024                 new->ncase.expr = copynode(n->ncase.expr);
8025                 break;
8026         case NCLIST:
8027                 new->nclist.body = copynode(n->nclist.body);
8028                 new->nclist.pattern = copynode(n->nclist.pattern);
8029                 new->nclist.next = copynode(n->nclist.next);
8030                 break;
8031         case NDEFUN:
8032         case NARG:
8033                 new->narg.backquote = copynodelist(n->narg.backquote);
8034                 new->narg.text = nodeckstrdup(n->narg.text);
8035                 new->narg.next = copynode(n->narg.next);
8036                 break;
8037         case NTO:
8038 #if ENABLE_ASH_BASH_COMPAT
8039         case NTO2:
8040 #endif
8041         case NCLOBBER:
8042         case NFROM:
8043         case NFROMTO:
8044         case NAPPEND:
8045                 new->nfile.fname = copynode(n->nfile.fname);
8046                 new->nfile.fd = n->nfile.fd;
8047                 new->nfile.next = copynode(n->nfile.next);
8048                 break;
8049         case NTOFD:
8050         case NFROMFD:
8051                 new->ndup.vname = copynode(n->ndup.vname);
8052                 new->ndup.dupfd = n->ndup.dupfd;
8053                 new->ndup.fd = n->ndup.fd;
8054                 new->ndup.next = copynode(n->ndup.next);
8055                 break;
8056         case NHERE:
8057         case NXHERE:
8058                 new->nhere.doc = copynode(n->nhere.doc);
8059                 new->nhere.fd = n->nhere.fd;
8060                 new->nhere.next = copynode(n->nhere.next);
8061                 break;
8062         case NNOT:
8063                 new->nnot.com = copynode(n->nnot.com);
8064                 break;
8065         };
8066         new->type = n->type;
8067         return new;
8068 }
8069
8070 /*
8071  * Make a copy of a parse tree.
8072  */
8073 static struct funcnode *
8074 copyfunc(union node *n)
8075 {
8076         struct funcnode *f;
8077         size_t blocksize;
8078
8079         funcblocksize = offsetof(struct funcnode, n);
8080         funcstringsize = 0;
8081         calcsize(n);
8082         blocksize = funcblocksize;
8083         f = ckmalloc(blocksize + funcstringsize);
8084         funcblock = (char *) f + offsetof(struct funcnode, n);
8085         funcstring = (char *) f + blocksize;
8086         copynode(n);
8087         f->count = 0;
8088         return f;
8089 }
8090
8091 /*
8092  * Define a shell function.
8093  */
8094 static void
8095 defun(char *name, union node *func)
8096 {
8097         struct cmdentry entry;
8098
8099         INT_OFF;
8100         entry.cmdtype = CMDFUNCTION;
8101         entry.u.func = copyfunc(func);
8102         addcmdentry(name, &entry);
8103         INT_ON;
8104 }
8105
8106 /* Reasons for skipping commands (see comment on breakcmd routine) */
8107 #define SKIPBREAK      (1 << 0)
8108 #define SKIPCONT       (1 << 1)
8109 #define SKIPFUNC       (1 << 2)
8110 #define SKIPFILE       (1 << 3)
8111 #define SKIPEVAL       (1 << 4)
8112 static smallint evalskip;       /* set to SKIPxxx if we are skipping commands */
8113 static int skipcount;           /* number of levels to skip */
8114 static int funcnest;            /* depth of function calls */
8115 static int loopnest;            /* current loop nesting level */
8116
8117 /* Forward decl way out to parsing code - dotrap needs it */
8118 static int evalstring(char *s, int mask);
8119
8120 /* Called to execute a trap.
8121  * Single callsite - at the end of evaltree().
8122  * If we return non-zero, exaltree raises EXEXIT exception.
8123  *
8124  * Perhaps we should avoid entering new trap handlers
8125  * while we are executing a trap handler. [is it a TODO?]
8126  */
8127 static int
8128 dotrap(void)
8129 {
8130         uint8_t *g;
8131         int sig;
8132         uint8_t savestatus;
8133
8134         savestatus = exitstatus;
8135         pending_sig = 0;
8136         xbarrier();
8137
8138         TRACE(("dotrap entered\n"));
8139         for (sig = 1, g = gotsig; sig < NSIG; sig++, g++) {
8140                 int want_exexit;
8141                 char *t;
8142
8143                 if (*g == 0)
8144                         continue;
8145                 t = trap[sig];
8146                 /* non-trapped SIGINT is handled separately by raise_interrupt,
8147                  * don't upset it by resetting gotsig[SIGINT-1] */
8148                 if (sig == SIGINT && !t)
8149                         continue;
8150
8151                 TRACE(("sig %d is active, will run handler '%s'\n", sig, t));
8152                 *g = 0;
8153                 if (!t)
8154                         continue;
8155                 want_exexit = evalstring(t, SKIPEVAL);
8156                 exitstatus = savestatus;
8157                 if (want_exexit) {
8158                         TRACE(("dotrap returns %d\n", want_exexit));
8159                         return want_exexit;
8160                 }
8161         }
8162
8163         TRACE(("dotrap returns 0\n"));
8164         return 0;
8165 }
8166
8167 /* forward declarations - evaluation is fairly recursive business... */
8168 static void evalloop(union node *, int);
8169 static void evalfor(union node *, int);
8170 static void evalcase(union node *, int);
8171 static void evalsubshell(union node *, int);
8172 static void expredir(union node *);
8173 static void evalpipe(union node *, int);
8174 static void evalcommand(union node *, int);
8175 static int evalbltin(const struct builtincmd *, int, char **);
8176 static void prehash(union node *);
8177
8178 /*
8179  * Evaluate a parse tree.  The value is left in the global variable
8180  * exitstatus.
8181  */
8182 static void
8183 evaltree(union node *n, int flags)
8184 {
8185         struct jmploc *volatile savehandler = exception_handler;
8186         struct jmploc jmploc;
8187         int checkexit = 0;
8188         void (*evalfn)(union node *, int);
8189         int status;
8190         int int_level;
8191
8192         SAVE_INT(int_level);
8193
8194         if (n == NULL) {
8195                 TRACE(("evaltree(NULL) called\n"));
8196                 goto out1;
8197         }
8198         TRACE(("evaltree(%p: %d, %d) called\n", n, n->type, flags));
8199
8200         exception_handler = &jmploc;
8201         {
8202                 int err = setjmp(jmploc.loc);
8203                 if (err) {
8204                         /* if it was a signal, check for trap handlers */
8205                         if (exception_type == EXSIG) {
8206                                 TRACE(("exception %d (EXSIG) in evaltree, err=%d\n",
8207                                                 exception_type, err));
8208                                 goto out;
8209                         }
8210                         /* continue on the way out */
8211                         TRACE(("exception %d in evaltree, propagating err=%d\n",
8212                                         exception_type, err));
8213                         exception_handler = savehandler;
8214                         longjmp(exception_handler->loc, err);
8215                 }
8216         }
8217
8218         switch (n->type) {
8219         default:
8220 #if DEBUG
8221                 out1fmt("Node type = %d\n", n->type);
8222                 fflush_all();
8223                 break;
8224 #endif
8225         case NNOT:
8226                 evaltree(n->nnot.com, EV_TESTED);
8227                 status = !exitstatus;
8228                 goto setstatus;
8229         case NREDIR:
8230                 expredir(n->nredir.redirect);
8231                 status = redirectsafe(n->nredir.redirect, REDIR_PUSH);
8232                 if (!status) {
8233                         evaltree(n->nredir.n, flags & EV_TESTED);
8234                         status = exitstatus;
8235                 }
8236                 popredir(/*drop:*/ 0, /*restore:*/ 0 /* not sure */);
8237                 goto setstatus;
8238         case NCMD:
8239                 evalfn = evalcommand;
8240  checkexit:
8241                 if (eflag && !(flags & EV_TESTED))
8242                         checkexit = ~0;
8243                 goto calleval;
8244         case NFOR:
8245                 evalfn = evalfor;
8246                 goto calleval;
8247         case NWHILE:
8248         case NUNTIL:
8249                 evalfn = evalloop;
8250                 goto calleval;
8251         case NSUBSHELL:
8252         case NBACKGND:
8253                 evalfn = evalsubshell;
8254                 goto calleval;
8255         case NPIPE:
8256                 evalfn = evalpipe;
8257                 goto checkexit;
8258         case NCASE:
8259                 evalfn = evalcase;
8260                 goto calleval;
8261         case NAND:
8262         case NOR:
8263         case NSEMI: {
8264
8265 #if NAND + 1 != NOR
8266 #error NAND + 1 != NOR
8267 #endif
8268 #if NOR + 1 != NSEMI
8269 #error NOR + 1 != NSEMI
8270 #endif
8271                 unsigned is_or = n->type - NAND;
8272                 evaltree(
8273                         n->nbinary.ch1,
8274                         (flags | ((is_or >> 1) - 1)) & EV_TESTED
8275                 );
8276                 if (!exitstatus == is_or)
8277                         break;
8278                 if (!evalskip) {
8279                         n = n->nbinary.ch2;
8280  evaln:
8281                         evalfn = evaltree;
8282  calleval:
8283                         evalfn(n, flags);
8284                         break;
8285                 }
8286                 break;
8287         }
8288         case NIF:
8289                 evaltree(n->nif.test, EV_TESTED);
8290                 if (evalskip)
8291                         break;
8292                 if (exitstatus == 0) {
8293                         n = n->nif.ifpart;
8294                         goto evaln;
8295                 }
8296                 if (n->nif.elsepart) {
8297                         n = n->nif.elsepart;
8298                         goto evaln;
8299                 }
8300                 goto success;
8301         case NDEFUN:
8302                 defun(n->narg.text, n->narg.next);
8303  success:
8304                 status = 0;
8305  setstatus:
8306                 exitstatus = status;
8307                 break;
8308         }
8309
8310  out:
8311         exception_handler = savehandler;
8312  out1:
8313         if (checkexit & exitstatus)
8314                 evalskip |= SKIPEVAL;
8315         else if (pending_sig && dotrap())
8316                 goto exexit;
8317
8318         if (flags & EV_EXIT) {
8319  exexit:
8320                 raise_exception(EXEXIT);
8321         }
8322
8323         RESTORE_INT(int_level);
8324         TRACE(("leaving evaltree (no interrupts)\n"));
8325 }
8326
8327 #if !defined(__alpha__) || (defined(__GNUC__) && __GNUC__ >= 3)
8328 static
8329 #endif
8330 void evaltreenr(union node *, int) __attribute__ ((alias("evaltree"),__noreturn__));
8331
8332 static void
8333 evalloop(union node *n, int flags)
8334 {
8335         int status;
8336
8337         loopnest++;
8338         status = 0;
8339         flags &= EV_TESTED;
8340         for (;;) {
8341                 int i;
8342
8343                 evaltree(n->nbinary.ch1, EV_TESTED);
8344                 if (evalskip) {
8345  skipping:
8346                         if (evalskip == SKIPCONT && --skipcount <= 0) {
8347                                 evalskip = 0;
8348                                 continue;
8349                         }
8350                         if (evalskip == SKIPBREAK && --skipcount <= 0)
8351                                 evalskip = 0;
8352                         break;
8353                 }
8354                 i = exitstatus;
8355                 if (n->type != NWHILE)
8356                         i = !i;
8357                 if (i != 0)
8358                         break;
8359                 evaltree(n->nbinary.ch2, flags);
8360                 status = exitstatus;
8361                 if (evalskip)
8362                         goto skipping;
8363         }
8364         loopnest--;
8365         exitstatus = status;
8366 }
8367
8368 static void
8369 evalfor(union node *n, int flags)
8370 {
8371         struct arglist arglist;
8372         union node *argp;
8373         struct strlist *sp;
8374         struct stackmark smark;
8375
8376         setstackmark(&smark);
8377         arglist.list = NULL;
8378         arglist.lastp = &arglist.list;
8379         for (argp = n->nfor.args; argp; argp = argp->narg.next) {
8380                 expandarg(argp, &arglist, EXP_FULL | EXP_TILDE | EXP_RECORD);
8381                 /* XXX */
8382                 if (evalskip)
8383                         goto out;
8384         }
8385         *arglist.lastp = NULL;
8386
8387         exitstatus = 0;
8388         loopnest++;
8389         flags &= EV_TESTED;
8390         for (sp = arglist.list; sp; sp = sp->next) {
8391                 setvar(n->nfor.var, sp->text, 0);
8392                 evaltree(n->nfor.body, flags);
8393                 if (evalskip) {
8394                         if (evalskip == SKIPCONT && --skipcount <= 0) {
8395                                 evalskip = 0;
8396                                 continue;
8397                         }
8398                         if (evalskip == SKIPBREAK && --skipcount <= 0)
8399                                 evalskip = 0;
8400                         break;
8401                 }
8402         }
8403         loopnest--;
8404  out:
8405         popstackmark(&smark);
8406 }
8407
8408 static void
8409 evalcase(union node *n, int flags)
8410 {
8411         union node *cp;
8412         union node *patp;
8413         struct arglist arglist;
8414         struct stackmark smark;
8415
8416         setstackmark(&smark);
8417         arglist.list = NULL;
8418         arglist.lastp = &arglist.list;
8419         expandarg(n->ncase.expr, &arglist, EXP_TILDE);
8420         exitstatus = 0;
8421         for (cp = n->ncase.cases; cp && evalskip == 0; cp = cp->nclist.next) {
8422                 for (patp = cp->nclist.pattern; patp; patp = patp->narg.next) {
8423                         if (casematch(patp, arglist.list->text)) {
8424                                 if (evalskip == 0) {
8425                                         evaltree(cp->nclist.body, flags);
8426                                 }
8427                                 goto out;
8428                         }
8429                 }
8430         }
8431  out:
8432         popstackmark(&smark);
8433 }
8434
8435 /*
8436  * Kick off a subshell to evaluate a tree.
8437  */
8438 static void
8439 evalsubshell(union node *n, int flags)
8440 {
8441         struct job *jp;
8442         int backgnd = (n->type == NBACKGND);
8443         int status;
8444
8445         expredir(n->nredir.redirect);
8446         if (!backgnd && (flags & EV_EXIT) && !may_have_traps)
8447                 goto nofork;
8448         INT_OFF;
8449         jp = makejob(/*n,*/ 1);
8450         if (forkshell(jp, n, backgnd) == 0) {
8451                 /* child */
8452                 INT_ON;
8453                 flags |= EV_EXIT;
8454                 if (backgnd)
8455                         flags &= ~EV_TESTED;
8456  nofork:
8457                 redirect(n->nredir.redirect, 0);
8458                 evaltreenr(n->nredir.n, flags);
8459                 /* never returns */
8460         }
8461         status = 0;
8462         if (!backgnd)
8463                 status = waitforjob(jp);
8464         exitstatus = status;
8465         INT_ON;
8466 }
8467
8468 /*
8469  * Compute the names of the files in a redirection list.
8470  */
8471 static void fixredir(union node *, const char *, int);
8472 static void
8473 expredir(union node *n)
8474 {
8475         union node *redir;
8476
8477         for (redir = n; redir; redir = redir->nfile.next) {
8478                 struct arglist fn;
8479
8480                 fn.list = NULL;
8481                 fn.lastp = &fn.list;
8482                 switch (redir->type) {
8483                 case NFROMTO:
8484                 case NFROM:
8485                 case NTO:
8486 #if ENABLE_ASH_BASH_COMPAT
8487                 case NTO2:
8488 #endif
8489                 case NCLOBBER:
8490                 case NAPPEND:
8491                         expandarg(redir->nfile.fname, &fn, EXP_TILDE | EXP_REDIR);
8492 #if ENABLE_ASH_BASH_COMPAT
8493  store_expfname:
8494 #endif
8495                         redir->nfile.expfname = fn.list->text;
8496                         break;
8497                 case NFROMFD:
8498                 case NTOFD: /* >& */
8499                         if (redir->ndup.vname) {
8500                                 expandarg(redir->ndup.vname, &fn, EXP_FULL | EXP_TILDE);
8501                                 if (fn.list == NULL)
8502                                         ash_msg_and_raise_error("redir error");
8503 #if ENABLE_ASH_BASH_COMPAT
8504 //FIXME: we used expandarg with different args!
8505                                 if (!isdigit_str9(fn.list->text)) {
8506                                         /* >&file, not >&fd */
8507                                         if (redir->nfile.fd != 1) /* 123>&file - BAD */
8508                                                 ash_msg_and_raise_error("redir error");
8509                                         redir->type = NTO2;
8510                                         goto store_expfname;
8511                                 }
8512 #endif
8513                                 fixredir(redir, fn.list->text, 1);
8514                         }
8515                         break;
8516                 }
8517         }
8518 }
8519
8520 /*
8521  * Evaluate a pipeline.  All the processes in the pipeline are children
8522  * of the process creating the pipeline.  (This differs from some versions
8523  * of the shell, which make the last process in a pipeline the parent
8524  * of all the rest.)
8525  */
8526 static void
8527 evalpipe(union node *n, int flags)
8528 {
8529         struct job *jp;
8530         struct nodelist *lp;
8531         int pipelen;
8532         int prevfd;
8533         int pip[2];
8534
8535         TRACE(("evalpipe(0x%lx) called\n", (long)n));
8536         pipelen = 0;
8537         for (lp = n->npipe.cmdlist; lp; lp = lp->next)
8538                 pipelen++;
8539         flags |= EV_EXIT;
8540         INT_OFF;
8541         jp = makejob(/*n,*/ pipelen);
8542         prevfd = -1;
8543         for (lp = n->npipe.cmdlist; lp; lp = lp->next) {
8544                 prehash(lp->n);
8545                 pip[1] = -1;
8546                 if (lp->next) {
8547                         if (pipe(pip) < 0) {
8548                                 close(prevfd);
8549                                 ash_msg_and_raise_error("pipe call failed");
8550                         }
8551                 }
8552                 if (forkshell(jp, lp->n, n->npipe.pipe_backgnd) == 0) {
8553                         INT_ON;
8554                         if (pip[1] >= 0) {
8555                                 close(pip[0]);
8556                         }
8557                         if (prevfd > 0) {
8558                                 dup2(prevfd, 0);
8559                                 close(prevfd);
8560                         }
8561                         if (pip[1] > 1) {
8562                                 dup2(pip[1], 1);
8563                                 close(pip[1]);
8564                         }
8565                         evaltreenr(lp->n, flags);
8566                         /* never returns */
8567                 }
8568                 if (prevfd >= 0)
8569                         close(prevfd);
8570                 prevfd = pip[0];
8571                 /* Don't want to trigger debugging */
8572                 if (pip[1] != -1)
8573                         close(pip[1]);
8574         }
8575         if (n->npipe.pipe_backgnd == 0) {
8576                 exitstatus = waitforjob(jp);
8577                 TRACE(("evalpipe:  job done exit status %d\n", exitstatus));
8578         }
8579         INT_ON;
8580 }
8581
8582 /*
8583  * Controls whether the shell is interactive or not.
8584  */
8585 static void
8586 setinteractive(int on)
8587 {
8588         static smallint is_interactive;
8589
8590         if (++on == is_interactive)
8591                 return;
8592         is_interactive = on;
8593         setsignal(SIGINT);
8594         setsignal(SIGQUIT);
8595         setsignal(SIGTERM);
8596 #if !ENABLE_FEATURE_SH_EXTRA_QUIET
8597         if (is_interactive > 1) {
8598                 /* Looks like they want an interactive shell */
8599                 static smallint did_banner;
8600
8601                 if (!did_banner) {
8602                         /* note: ash and hush share this string */
8603                         out1fmt("\n\n%s %s\n"
8604                                 "Enter 'help' for a list of built-in commands."
8605                                 "\n\n",
8606                                 bb_banner,
8607                                 "built-in shell (ash)"
8608                         );
8609                         did_banner = 1;
8610                 }
8611         }
8612 #endif
8613 }
8614
8615 static void
8616 optschanged(void)
8617 {
8618 #if DEBUG
8619         opentrace();
8620 #endif
8621         setinteractive(iflag);
8622         setjobctl(mflag);
8623 #if ENABLE_FEATURE_EDITING_VI
8624         if (viflag)
8625                 line_input_state->flags |= VI_MODE;
8626         else
8627                 line_input_state->flags &= ~VI_MODE;
8628 #else
8629         viflag = 0; /* forcibly keep the option off */
8630 #endif
8631 }
8632
8633 static struct localvar *localvars;
8634
8635 /*
8636  * Called after a function returns.
8637  * Interrupts must be off.
8638  */
8639 static void
8640 poplocalvars(void)
8641 {
8642         struct localvar *lvp;
8643         struct var *vp;
8644
8645         while ((lvp = localvars) != NULL) {
8646                 localvars = lvp->next;
8647                 vp = lvp->vp;
8648                 TRACE(("poplocalvar %s\n", vp ? vp->text : "-"));
8649                 if (vp == NULL) {       /* $- saved */
8650                         memcpy(optlist, lvp->text, sizeof(optlist));
8651                         free((char*)lvp->text);
8652                         optschanged();
8653                 } else if ((lvp->flags & (VUNSET|VSTRFIXED)) == VUNSET) {
8654                         unsetvar(vp->var_text);
8655                 } else {
8656                         if (vp->var_func)
8657                                 vp->var_func(var_end(lvp->text));
8658                         if ((vp->flags & (VTEXTFIXED|VSTACK)) == 0)
8659                                 free((char*)vp->var_text);
8660                         vp->flags = lvp->flags;
8661                         vp->var_text = lvp->text;
8662                 }
8663                 free(lvp);
8664         }
8665 }
8666
8667 static int
8668 evalfun(struct funcnode *func, int argc, char **argv, int flags)
8669 {
8670         volatile struct shparam saveparam;
8671         struct localvar *volatile savelocalvars;
8672         struct jmploc *volatile savehandler;
8673         struct jmploc jmploc;
8674         int e;
8675
8676         saveparam = shellparam;
8677         savelocalvars = localvars;
8678         e = setjmp(jmploc.loc);
8679         if (e) {
8680                 goto funcdone;
8681         }
8682         INT_OFF;
8683         savehandler = exception_handler;
8684         exception_handler = &jmploc;
8685         localvars = NULL;
8686         shellparam.malloced = 0;
8687         func->count++;
8688         funcnest++;
8689         INT_ON;
8690         shellparam.nparam = argc - 1;
8691         shellparam.p = argv + 1;
8692 #if ENABLE_ASH_GETOPTS
8693         shellparam.optind = 1;
8694         shellparam.optoff = -1;
8695 #endif
8696         evaltree(&func->n, flags & EV_TESTED);
8697  funcdone:
8698         INT_OFF;
8699         funcnest--;
8700         freefunc(func);
8701         poplocalvars();
8702         localvars = savelocalvars;
8703         freeparam(&shellparam);
8704         shellparam = saveparam;
8705         exception_handler = savehandler;
8706         INT_ON;
8707         evalskip &= ~SKIPFUNC;
8708         return e;
8709 }
8710
8711 #if ENABLE_ASH_CMDCMD
8712 static char **
8713 parse_command_args(char **argv, const char **path)
8714 {
8715         char *cp, c;
8716
8717         for (;;) {
8718                 cp = *++argv;
8719                 if (!cp)
8720                         return 0;
8721                 if (*cp++ != '-')
8722                         break;
8723                 c = *cp++;
8724                 if (!c)
8725                         break;
8726                 if (c == '-' && !*cp) {
8727                         argv++;
8728                         break;
8729                 }
8730                 do {
8731                         switch (c) {
8732                         case 'p':
8733                                 *path = bb_default_path;
8734                                 break;
8735                         default:
8736                                 /* run 'typecmd' for other options */
8737                                 return 0;
8738                         }
8739                         c = *cp++;
8740                 } while (c);
8741         }
8742         return argv;
8743 }
8744 #endif
8745
8746 /*
8747  * Make a variable a local variable.  When a variable is made local, it's
8748  * value and flags are saved in a localvar structure.  The saved values
8749  * will be restored when the shell function returns.  We handle the name
8750  * "-" as a special case.
8751  */
8752 static void
8753 mklocal(char *name)
8754 {
8755         struct localvar *lvp;
8756         struct var **vpp;
8757         struct var *vp;
8758
8759         INT_OFF;
8760         lvp = ckzalloc(sizeof(struct localvar));
8761         if (LONE_DASH(name)) {
8762                 char *p;
8763                 p = ckmalloc(sizeof(optlist));
8764                 lvp->text = memcpy(p, optlist, sizeof(optlist));
8765                 vp = NULL;
8766         } else {
8767                 char *eq;
8768
8769                 vpp = hashvar(name);
8770                 vp = *findvar(vpp, name);
8771                 eq = strchr(name, '=');
8772                 if (vp == NULL) {
8773                         if (eq)
8774                                 setvareq(name, VSTRFIXED);
8775                         else
8776                                 setvar(name, NULL, VSTRFIXED);
8777                         vp = *vpp;      /* the new variable */
8778                         lvp->flags = VUNSET;
8779                 } else {
8780                         lvp->text = vp->var_text;
8781                         lvp->flags = vp->flags;
8782                         vp->flags |= VSTRFIXED|VTEXTFIXED;
8783                         if (eq)
8784                                 setvareq(name, 0);
8785                 }
8786         }
8787         lvp->vp = vp;
8788         lvp->next = localvars;
8789         localvars = lvp;
8790         INT_ON;
8791 }
8792
8793 /*
8794  * The "local" command.
8795  */
8796 static int FAST_FUNC
8797 localcmd(int argc UNUSED_PARAM, char **argv)
8798 {
8799         char *name;
8800
8801         argv = argptr;
8802         while ((name = *argv++) != NULL) {
8803                 mklocal(name);
8804         }
8805         return 0;
8806 }
8807
8808 static int FAST_FUNC
8809 falsecmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
8810 {
8811         return 1;
8812 }
8813
8814 static int FAST_FUNC
8815 truecmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
8816 {
8817         return 0;
8818 }
8819
8820 static int FAST_FUNC
8821 execcmd(int argc UNUSED_PARAM, char **argv)
8822 {
8823         if (argv[1]) {
8824                 iflag = 0;              /* exit on error */
8825                 mflag = 0;
8826                 optschanged();
8827                 shellexec(argv + 1, pathval(), 0);
8828         }
8829         return 0;
8830 }
8831
8832 /*
8833  * The return command.
8834  */
8835 static int FAST_FUNC
8836 returncmd(int argc UNUSED_PARAM, char **argv)
8837 {
8838         /*
8839          * If called outside a function, do what ksh does;
8840          * skip the rest of the file.
8841          */
8842         evalskip = funcnest ? SKIPFUNC : SKIPFILE;
8843         return argv[1] ? number(argv[1]) : exitstatus;
8844 }
8845
8846 /* Forward declarations for builtintab[] */
8847 static int breakcmd(int, char **) FAST_FUNC;
8848 static int dotcmd(int, char **) FAST_FUNC;
8849 static int evalcmd(int, char **) FAST_FUNC;
8850 static int exitcmd(int, char **) FAST_FUNC;
8851 static int exportcmd(int, char **) FAST_FUNC;
8852 #if ENABLE_ASH_GETOPTS
8853 static int getoptscmd(int, char **) FAST_FUNC;
8854 #endif
8855 #if !ENABLE_FEATURE_SH_EXTRA_QUIET
8856 static int helpcmd(int, char **) FAST_FUNC;
8857 #endif
8858 #if ENABLE_SH_MATH_SUPPORT
8859 static int letcmd(int, char **) FAST_FUNC;
8860 #endif
8861 static int readcmd(int, char **) FAST_FUNC;
8862 static int setcmd(int, char **) FAST_FUNC;
8863 static int shiftcmd(int, char **) FAST_FUNC;
8864 static int timescmd(int, char **) FAST_FUNC;
8865 static int trapcmd(int, char **) FAST_FUNC;
8866 static int umaskcmd(int, char **) FAST_FUNC;
8867 static int unsetcmd(int, char **) FAST_FUNC;
8868 static int ulimitcmd(int, char **) FAST_FUNC;
8869
8870 #define BUILTIN_NOSPEC          "0"
8871 #define BUILTIN_SPECIAL         "1"
8872 #define BUILTIN_REGULAR         "2"
8873 #define BUILTIN_SPEC_REG        "3"
8874 #define BUILTIN_ASSIGN          "4"
8875 #define BUILTIN_SPEC_ASSG       "5"
8876 #define BUILTIN_REG_ASSG        "6"
8877 #define BUILTIN_SPEC_REG_ASSG   "7"
8878
8879 /* Stubs for calling non-FAST_FUNC's */
8880 #if ENABLE_ASH_BUILTIN_ECHO
8881 static int FAST_FUNC echocmd(int argc, char **argv)   { return echo_main(argc, argv); }
8882 #endif
8883 #if ENABLE_ASH_BUILTIN_PRINTF
8884 static int FAST_FUNC printfcmd(int argc, char **argv) { return printf_main(argc, argv); }
8885 #endif
8886 #if ENABLE_ASH_BUILTIN_TEST
8887 static int FAST_FUNC testcmd(int argc, char **argv)   { return test_main(argc, argv); }
8888 #endif
8889
8890 /* Keep these in proper order since it is searched via bsearch() */
8891 static const struct builtincmd builtintab[] = {
8892         { BUILTIN_SPEC_REG      "."       , dotcmd     },
8893         { BUILTIN_SPEC_REG      ":"       , truecmd    },
8894 #if ENABLE_ASH_BUILTIN_TEST
8895         { BUILTIN_REGULAR       "["       , testcmd    },
8896 #if ENABLE_ASH_BASH_COMPAT
8897         { BUILTIN_REGULAR       "[["      , testcmd    },
8898 #endif
8899 #endif
8900 #if ENABLE_ASH_ALIAS
8901         { BUILTIN_REG_ASSG      "alias"   , aliascmd   },
8902 #endif
8903 #if JOBS
8904         { BUILTIN_REGULAR       "bg"      , fg_bgcmd   },
8905 #endif
8906         { BUILTIN_SPEC_REG      "break"   , breakcmd   },
8907         { BUILTIN_REGULAR       "cd"      , cdcmd      },
8908         { BUILTIN_NOSPEC        "chdir"   , cdcmd      },
8909 #if ENABLE_ASH_CMDCMD
8910         { BUILTIN_REGULAR       "command" , commandcmd },
8911 #endif
8912         { BUILTIN_SPEC_REG      "continue", breakcmd   },
8913 #if ENABLE_ASH_BUILTIN_ECHO
8914         { BUILTIN_REGULAR       "echo"    , echocmd    },
8915 #endif
8916         { BUILTIN_SPEC_REG      "eval"    , evalcmd    },
8917         { BUILTIN_SPEC_REG      "exec"    , execcmd    },
8918         { BUILTIN_SPEC_REG      "exit"    , exitcmd    },
8919         { BUILTIN_SPEC_REG_ASSG "export"  , exportcmd  },
8920         { BUILTIN_REGULAR       "false"   , falsecmd   },
8921 #if JOBS
8922         { BUILTIN_REGULAR       "fg"      , fg_bgcmd   },
8923 #endif
8924 #if ENABLE_ASH_GETOPTS
8925         { BUILTIN_REGULAR       "getopts" , getoptscmd },
8926 #endif
8927         { BUILTIN_NOSPEC        "hash"    , hashcmd    },
8928 #if !ENABLE_FEATURE_SH_EXTRA_QUIET
8929         { BUILTIN_NOSPEC        "help"    , helpcmd    },
8930 #endif
8931 #if JOBS
8932         { BUILTIN_REGULAR       "jobs"    , jobscmd    },
8933         { BUILTIN_REGULAR       "kill"    , killcmd    },
8934 #endif
8935 #if ENABLE_SH_MATH_SUPPORT
8936         { BUILTIN_NOSPEC        "let"     , letcmd     },
8937 #endif
8938         { BUILTIN_ASSIGN        "local"   , localcmd   },
8939 #if ENABLE_ASH_BUILTIN_PRINTF
8940         { BUILTIN_REGULAR       "printf"  , printfcmd  },
8941 #endif
8942         { BUILTIN_NOSPEC        "pwd"     , pwdcmd     },
8943         { BUILTIN_REGULAR       "read"    , readcmd    },
8944         { BUILTIN_SPEC_REG_ASSG "readonly", exportcmd  },
8945         { BUILTIN_SPEC_REG      "return"  , returncmd  },
8946         { BUILTIN_SPEC_REG      "set"     , setcmd     },
8947         { BUILTIN_SPEC_REG      "shift"   , shiftcmd   },
8948 #if ENABLE_ASH_BASH_COMPAT
8949         { BUILTIN_SPEC_REG      "source"  , dotcmd     },
8950 #endif
8951 #if ENABLE_ASH_BUILTIN_TEST
8952         { BUILTIN_REGULAR       "test"    , testcmd    },
8953 #endif
8954         { BUILTIN_SPEC_REG      "times"   , timescmd   },
8955         { BUILTIN_SPEC_REG      "trap"    , trapcmd    },
8956         { BUILTIN_REGULAR       "true"    , truecmd    },
8957         { BUILTIN_NOSPEC        "type"    , typecmd    },
8958         { BUILTIN_NOSPEC        "ulimit"  , ulimitcmd  },
8959         { BUILTIN_REGULAR       "umask"   , umaskcmd   },
8960 #if ENABLE_ASH_ALIAS
8961         { BUILTIN_REGULAR       "unalias" , unaliascmd },
8962 #endif
8963         { BUILTIN_SPEC_REG      "unset"   , unsetcmd   },
8964         { BUILTIN_REGULAR       "wait"    , waitcmd    },
8965 };
8966
8967 /* Should match the above table! */
8968 #define COMMANDCMD (builtintab + \
8969         2 + \
8970         1 * ENABLE_ASH_BUILTIN_TEST + \
8971         1 * ENABLE_ASH_BUILTIN_TEST * ENABLE_ASH_BASH_COMPAT + \
8972         1 * ENABLE_ASH_ALIAS + \
8973         1 * ENABLE_ASH_JOB_CONTROL + \
8974         3)
8975 #define EXECCMD (builtintab + \
8976         2 + \
8977         1 * ENABLE_ASH_BUILTIN_TEST + \
8978         1 * ENABLE_ASH_BUILTIN_TEST * ENABLE_ASH_BASH_COMPAT + \
8979         1 * ENABLE_ASH_ALIAS + \
8980         1 * ENABLE_ASH_JOB_CONTROL + \
8981         3 + \
8982         1 * ENABLE_ASH_CMDCMD + \
8983         1 + \
8984         ENABLE_ASH_BUILTIN_ECHO + \
8985         1)
8986
8987 /*
8988  * Search the table of builtin commands.
8989  */
8990 static struct builtincmd *
8991 find_builtin(const char *name)
8992 {
8993         struct builtincmd *bp;
8994
8995         bp = bsearch(
8996                 name, builtintab, ARRAY_SIZE(builtintab), sizeof(builtintab[0]),
8997                 pstrcmp
8998         );
8999         return bp;
9000 }
9001
9002 /*
9003  * Execute a simple command.
9004  */
9005 static int
9006 isassignment(const char *p)
9007 {
9008         const char *q = endofname(p);
9009         if (p == q)
9010                 return 0;
9011         return *q == '=';
9012 }
9013 static int FAST_FUNC
9014 bltincmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
9015 {
9016         /* Preserve exitstatus of a previous possible redirection
9017          * as POSIX mandates */
9018         return back_exitstatus;
9019 }
9020 static void
9021 evalcommand(union node *cmd, int flags)
9022 {
9023         static const struct builtincmd null_bltin = {
9024                 "\0\0", bltincmd /* why three NULs? */
9025         };
9026         struct stackmark smark;
9027         union node *argp;
9028         struct arglist arglist;
9029         struct arglist varlist;
9030         char **argv;
9031         int argc;
9032         const struct strlist *sp;
9033         struct cmdentry cmdentry;
9034         struct job *jp;
9035         char *lastarg;
9036         const char *path;
9037         int spclbltin;
9038         int status;
9039         char **nargv;
9040         struct builtincmd *bcmd;
9041         smallint cmd_is_exec;
9042         smallint pseudovarflag = 0;
9043
9044         /* First expand the arguments. */
9045         TRACE(("evalcommand(0x%lx, %d) called\n", (long)cmd, flags));
9046         setstackmark(&smark);
9047         back_exitstatus = 0;
9048
9049         cmdentry.cmdtype = CMDBUILTIN;
9050         cmdentry.u.cmd = &null_bltin;
9051         varlist.lastp = &varlist.list;
9052         *varlist.lastp = NULL;
9053         arglist.lastp = &arglist.list;
9054         *arglist.lastp = NULL;
9055
9056         argc = 0;
9057         if (cmd->ncmd.args) {
9058                 bcmd = find_builtin(cmd->ncmd.args->narg.text);
9059                 pseudovarflag = bcmd && IS_BUILTIN_ASSIGN(bcmd);
9060         }
9061
9062         for (argp = cmd->ncmd.args; argp; argp = argp->narg.next) {
9063                 struct strlist **spp;
9064
9065                 spp = arglist.lastp;
9066                 if (pseudovarflag && isassignment(argp->narg.text))
9067                         expandarg(argp, &arglist, EXP_VARTILDE);
9068                 else
9069                         expandarg(argp, &arglist, EXP_FULL | EXP_TILDE);
9070
9071                 for (sp = *spp; sp; sp = sp->next)
9072                         argc++;
9073         }
9074
9075         argv = nargv = stalloc(sizeof(char *) * (argc + 1));
9076         for (sp = arglist.list; sp; sp = sp->next) {
9077                 TRACE(("evalcommand arg: %s\n", sp->text));
9078                 *nargv++ = sp->text;
9079         }
9080         *nargv = NULL;
9081
9082         lastarg = NULL;
9083         if (iflag && funcnest == 0 && argc > 0)
9084                 lastarg = nargv[-1];
9085
9086         preverrout_fd = 2;
9087         expredir(cmd->ncmd.redirect);
9088         status = redirectsafe(cmd->ncmd.redirect, REDIR_PUSH | REDIR_SAVEFD2);
9089
9090         path = vpath.var_text;
9091         for (argp = cmd->ncmd.assign; argp; argp = argp->narg.next) {
9092                 struct strlist **spp;
9093                 char *p;
9094
9095                 spp = varlist.lastp;
9096                 expandarg(argp, &varlist, EXP_VARTILDE);
9097
9098                 /*
9099                  * Modify the command lookup path, if a PATH= assignment
9100                  * is present
9101                  */
9102                 p = (*spp)->text;
9103                 if (varcmp(p, path) == 0)
9104                         path = p;
9105         }
9106
9107         /* Print the command if xflag is set. */
9108         if (xflag) {
9109                 int n;
9110                 const char *p = " %s";
9111
9112                 p++;
9113                 fdprintf(preverrout_fd, p, expandstr(ps4val()));
9114
9115                 sp = varlist.list;
9116                 for (n = 0; n < 2; n++) {
9117                         while (sp) {
9118                                 fdprintf(preverrout_fd, p, sp->text);
9119                                 sp = sp->next;
9120                                 if (*p == '%') {
9121                                         p--;
9122                                 }
9123                         }
9124                         sp = arglist.list;
9125                 }
9126                 safe_write(preverrout_fd, "\n", 1);
9127         }
9128
9129         cmd_is_exec = 0;
9130         spclbltin = -1;
9131
9132         /* Now locate the command. */
9133         if (argc) {
9134                 const char *oldpath;
9135                 int cmd_flag = DO_ERR;
9136
9137                 path += 5;
9138                 oldpath = path;
9139                 for (;;) {
9140                         find_command(argv[0], &cmdentry, cmd_flag, path);
9141                         if (cmdentry.cmdtype == CMDUNKNOWN) {
9142                                 flush_stdout_stderr();
9143                                 status = 127;
9144                                 goto bail;
9145                         }
9146
9147                         /* implement bltin and command here */
9148                         if (cmdentry.cmdtype != CMDBUILTIN)
9149                                 break;
9150                         if (spclbltin < 0)
9151                                 spclbltin = IS_BUILTIN_SPECIAL(cmdentry.u.cmd);
9152                         if (cmdentry.u.cmd == EXECCMD)
9153                                 cmd_is_exec = 1;
9154 #if ENABLE_ASH_CMDCMD
9155                         if (cmdentry.u.cmd == COMMANDCMD) {
9156                                 path = oldpath;
9157                                 nargv = parse_command_args(argv, &path);
9158                                 if (!nargv)
9159                                         break;
9160                                 argc -= nargv - argv;
9161                                 argv = nargv;
9162                                 cmd_flag |= DO_NOFUNC;
9163                         } else
9164 #endif
9165                                 break;
9166                 }
9167         }
9168
9169         if (status) {
9170                 /* We have a redirection error. */
9171                 if (spclbltin > 0)
9172                         raise_exception(EXERROR);
9173  bail:
9174                 exitstatus = status;
9175                 goto out;
9176         }
9177
9178         /* Execute the command. */
9179         switch (cmdentry.cmdtype) {
9180         default: {
9181
9182 #if ENABLE_FEATURE_SH_NOFORK
9183 /* (1) BUG: if variables are set, we need to fork, or save/restore them
9184  *     around run_nofork_applet() call.
9185  * (2) Should this check also be done in forkshell()?
9186  *     (perhaps it should, so that "VAR=VAL nofork" at least avoids exec...)
9187  */
9188                 /* find_command() encodes applet_no as (-2 - applet_no) */
9189                 int applet_no = (- cmdentry.u.index - 2);
9190                 if (applet_no >= 0 && APPLET_IS_NOFORK(applet_no)) {
9191                         listsetvar(varlist.list, VEXPORT|VSTACK);
9192                         /* run <applet>_main() */
9193                         exitstatus = run_nofork_applet(applet_no, argv);
9194                         break;
9195                 }
9196 #endif
9197                 /* Can we avoid forking off? For example, very last command
9198                  * in a script or a subshell does not need forking,
9199                  * we can just exec it.
9200                  */
9201                 if (!(flags & EV_EXIT) || may_have_traps) {
9202                         /* No, forking off a child is necessary */
9203                         INT_OFF;
9204                         jp = makejob(/*cmd,*/ 1);
9205                         if (forkshell(jp, cmd, FORK_FG) != 0) {
9206                                 /* parent */
9207                                 exitstatus = waitforjob(jp);
9208                                 INT_ON;
9209                                 TRACE(("forked child exited with %d\n", exitstatus));
9210                                 break;
9211                         }
9212                         /* child */
9213                         FORCE_INT_ON;
9214                         /* fall through to exec'ing external program */
9215                 }
9216                 listsetvar(varlist.list, VEXPORT|VSTACK);
9217                 shellexec(argv, path, cmdentry.u.index);
9218                 /* NOTREACHED */
9219         } /* default */
9220         case CMDBUILTIN:
9221                 cmdenviron = varlist.list;
9222                 if (cmdenviron) {
9223                         struct strlist *list = cmdenviron;
9224                         int i = VNOSET;
9225                         if (spclbltin > 0 || argc == 0) {
9226                                 i = 0;
9227                                 if (cmd_is_exec && argc > 1)
9228                                         i = VEXPORT;
9229                         }
9230                         listsetvar(list, i);
9231                 }
9232                 /* Tight loop with builtins only:
9233                  * "while kill -0 $child; do true; done"
9234                  * will never exit even if $child died, unless we do this
9235                  * to reap the zombie and make kill detect that it's gone: */
9236                 dowait(DOWAIT_NONBLOCK, NULL);
9237
9238                 if (evalbltin(cmdentry.u.cmd, argc, argv)) {
9239                         int exit_status;
9240                         int i = exception_type;
9241                         if (i == EXEXIT)
9242                                 goto raise;
9243                         exit_status = 2;
9244                         if (i == EXINT)
9245                                 exit_status = 128 + SIGINT;
9246                         if (i == EXSIG)
9247                                 exit_status = 128 + pending_sig;
9248                         exitstatus = exit_status;
9249                         if (i == EXINT || spclbltin > 0) {
9250  raise:
9251                                 longjmp(exception_handler->loc, 1);
9252                         }
9253                         FORCE_INT_ON;
9254                 }
9255                 break;
9256
9257         case CMDFUNCTION:
9258                 listsetvar(varlist.list, 0);
9259                 /* See above for the rationale */
9260                 dowait(DOWAIT_NONBLOCK, NULL);
9261                 if (evalfun(cmdentry.u.func, argc, argv, flags))
9262                         goto raise;
9263                 break;
9264
9265         } /* switch */
9266
9267  out:
9268         popredir(/*drop:*/ cmd_is_exec, /*restore:*/ cmd_is_exec);
9269         if (lastarg) {
9270                 /* dsl: I think this is intended to be used to support
9271                  * '_' in 'vi' command mode during line editing...
9272                  * However I implemented that within libedit itself.
9273                  */
9274                 setvar("_", lastarg, 0);
9275         }
9276         popstackmark(&smark);
9277 }
9278
9279 static int
9280 evalbltin(const struct builtincmd *cmd, int argc, char **argv)
9281 {
9282         char *volatile savecmdname;
9283         struct jmploc *volatile savehandler;
9284         struct jmploc jmploc;
9285         int i;
9286
9287         savecmdname = commandname;
9288         i = setjmp(jmploc.loc);
9289         if (i)
9290                 goto cmddone;
9291         savehandler = exception_handler;
9292         exception_handler = &jmploc;
9293         commandname = argv[0];
9294         argptr = argv + 1;
9295         optptr = NULL;                  /* initialize nextopt */
9296         exitstatus = (*cmd->builtin)(argc, argv);
9297         flush_stdout_stderr();
9298  cmddone:
9299         exitstatus |= ferror(stdout);
9300         clearerr(stdout);
9301         commandname = savecmdname;
9302         exception_handler = savehandler;
9303
9304         return i;
9305 }
9306
9307 static int
9308 goodname(const char *p)
9309 {
9310         return !*endofname(p);
9311 }
9312
9313
9314 /*
9315  * Search for a command.  This is called before we fork so that the
9316  * location of the command will be available in the parent as well as
9317  * the child.  The check for "goodname" is an overly conservative
9318  * check that the name will not be subject to expansion.
9319  */
9320 static void
9321 prehash(union node *n)
9322 {
9323         struct cmdentry entry;
9324
9325         if (n->type == NCMD && n->ncmd.args && goodname(n->ncmd.args->narg.text))
9326                 find_command(n->ncmd.args->narg.text, &entry, 0, pathval());
9327 }
9328
9329
9330 /* ============ Builtin commands
9331  *
9332  * Builtin commands whose functions are closely tied to evaluation
9333  * are implemented here.
9334  */
9335
9336 /*
9337  * Handle break and continue commands.  Break, continue, and return are
9338  * all handled by setting the evalskip flag.  The evaluation routines
9339  * above all check this flag, and if it is set they start skipping
9340  * commands rather than executing them.  The variable skipcount is
9341  * the number of loops to break/continue, or the number of function
9342  * levels to return.  (The latter is always 1.)  It should probably
9343  * be an error to break out of more loops than exist, but it isn't
9344  * in the standard shell so we don't make it one here.
9345  */
9346 static int FAST_FUNC
9347 breakcmd(int argc UNUSED_PARAM, char **argv)
9348 {
9349         int n = argv[1] ? number(argv[1]) : 1;
9350
9351         if (n <= 0)
9352                 ash_msg_and_raise_error(msg_illnum, argv[1]);
9353         if (n > loopnest)
9354                 n = loopnest;
9355         if (n > 0) {
9356                 evalskip = (**argv == 'c') ? SKIPCONT : SKIPBREAK;
9357                 skipcount = n;
9358         }
9359         return 0;
9360 }
9361
9362
9363 /* ============ input.c
9364  *
9365  * This implements the input routines used by the parser.
9366  */
9367
9368 enum {
9369         INPUT_PUSH_FILE = 1,
9370         INPUT_NOFILE_OK = 2,
9371 };
9372
9373 static smallint checkkwd;
9374 /* values of checkkwd variable */
9375 #define CHKALIAS        0x1
9376 #define CHKKWD          0x2
9377 #define CHKNL           0x4
9378
9379 /*
9380  * Push a string back onto the input at this current parsefile level.
9381  * We handle aliases this way.
9382  */
9383 #if !ENABLE_ASH_ALIAS
9384 #define pushstring(s, ap) pushstring(s)
9385 #endif
9386 static void
9387 pushstring(char *s, struct alias *ap)
9388 {
9389         struct strpush *sp;
9390         int len;
9391
9392         len = strlen(s);
9393         INT_OFF;
9394         if (g_parsefile->strpush) {
9395                 sp = ckzalloc(sizeof(*sp));
9396                 sp->prev = g_parsefile->strpush;
9397         } else {
9398                 sp = &(g_parsefile->basestrpush);
9399         }
9400         g_parsefile->strpush = sp;
9401         sp->prev_string = g_parsefile->next_to_pgetc;
9402         sp->prev_left_in_line = g_parsefile->left_in_line;
9403 #if ENABLE_ASH_ALIAS
9404         sp->ap = ap;
9405         if (ap) {
9406                 ap->flag |= ALIASINUSE;
9407                 sp->string = s;
9408         }
9409 #endif
9410         g_parsefile->next_to_pgetc = s;
9411         g_parsefile->left_in_line = len;
9412         INT_ON;
9413 }
9414
9415 static void
9416 popstring(void)
9417 {
9418         struct strpush *sp = g_parsefile->strpush;
9419
9420         INT_OFF;
9421 #if ENABLE_ASH_ALIAS
9422         if (sp->ap) {
9423                 if (g_parsefile->next_to_pgetc[-1] == ' '
9424                  || g_parsefile->next_to_pgetc[-1] == '\t'
9425                 ) {
9426                         checkkwd |= CHKALIAS;
9427                 }
9428                 if (sp->string != sp->ap->val) {
9429                         free(sp->string);
9430                 }
9431                 sp->ap->flag &= ~ALIASINUSE;
9432                 if (sp->ap->flag & ALIASDEAD) {
9433                         unalias(sp->ap->name);
9434                 }
9435         }
9436 #endif
9437         g_parsefile->next_to_pgetc = sp->prev_string;
9438         g_parsefile->left_in_line = sp->prev_left_in_line;
9439         g_parsefile->strpush = sp->prev;
9440         if (sp != &(g_parsefile->basestrpush))
9441                 free(sp);
9442         INT_ON;
9443 }
9444
9445 //FIXME: BASH_COMPAT with "...&" does TWO pungetc():
9446 //it peeks whether it is &>, and then pushes back both chars.
9447 //This function needs to save last *next_to_pgetc to buf[0]
9448 //to make two pungetc() reliable. Currently,
9449 // pgetc (out of buf: does preadfd), pgetc, pungetc, pungetc won't work...
9450 static int
9451 preadfd(void)
9452 {
9453         int nr;
9454         char *buf = g_parsefile->buf;
9455
9456         g_parsefile->next_to_pgetc = buf;
9457 #if ENABLE_FEATURE_EDITING
9458  retry:
9459         if (!iflag || g_parsefile->pf_fd != STDIN_FILENO)
9460                 nr = nonblock_safe_read(g_parsefile->pf_fd, buf, IBUFSIZ - 1);
9461         else {
9462 #if ENABLE_FEATURE_TAB_COMPLETION
9463                 line_input_state->path_lookup = pathval();
9464 #endif
9465                 nr = read_line_input(cmdedit_prompt, buf, IBUFSIZ, line_input_state);
9466                 if (nr == 0) {
9467                         /* Ctrl+C pressed */
9468                         if (trap[SIGINT]) {
9469                                 buf[0] = '\n';
9470                                 buf[1] = '\0';
9471                                 raise(SIGINT);
9472                                 return 1;
9473                         }
9474                         goto retry;
9475                 }
9476                 if (nr < 0 && errno == 0) {
9477                         /* Ctrl+D pressed */
9478                         nr = 0;
9479                 }
9480         }
9481 #else
9482         nr = nonblock_safe_read(g_parsefile->pf_fd, buf, IBUFSIZ - 1);
9483 #endif
9484
9485 #if 0
9486 /* nonblock_safe_read() handles this problem */
9487         if (nr < 0) {
9488                 if (parsefile->fd == 0 && errno == EWOULDBLOCK) {
9489                         int flags = fcntl(0, F_GETFL);
9490                         if (flags >= 0 && (flags & O_NONBLOCK)) {
9491                                 flags &= ~O_NONBLOCK;
9492                                 if (fcntl(0, F_SETFL, flags) >= 0) {
9493                                         out2str("sh: turning off NDELAY mode\n");
9494                                         goto retry;
9495                                 }
9496                         }
9497                 }
9498         }
9499 #endif
9500         return nr;
9501 }
9502
9503 /*
9504  * Refill the input buffer and return the next input character:
9505  *
9506  * 1) If a string was pushed back on the input, pop it;
9507  * 2) If an EOF was pushed back (g_parsefile->left_in_line < -BIGNUM)
9508  *    or we are reading from a string so we can't refill the buffer,
9509  *    return EOF.
9510  * 3) If there is more stuff in this buffer, use it else call read to fill it.
9511  * 4) Process input up to the next newline, deleting nul characters.
9512  */
9513 //#define pgetc_debug(...) bb_error_msg(__VA_ARGS__)
9514 #define pgetc_debug(...) ((void)0)
9515 static int
9516 preadbuffer(void)
9517 {
9518         char *q;
9519         int more;
9520
9521         while (g_parsefile->strpush) {
9522 #if ENABLE_ASH_ALIAS
9523                 if (g_parsefile->left_in_line == -1
9524                  && g_parsefile->strpush->ap
9525                  && g_parsefile->next_to_pgetc[-1] != ' '
9526                  && g_parsefile->next_to_pgetc[-1] != '\t'
9527                 ) {
9528                         pgetc_debug("preadbuffer PEOA");
9529                         return PEOA;
9530                 }
9531 #endif
9532                 popstring();
9533                 /* try "pgetc" now: */
9534                 pgetc_debug("preadbuffer internal pgetc at %d:%p'%s'",
9535                                 g_parsefile->left_in_line,
9536                                 g_parsefile->next_to_pgetc,
9537                                 g_parsefile->next_to_pgetc);
9538                 if (--g_parsefile->left_in_line >= 0)
9539                         return (unsigned char)(*g_parsefile->next_to_pgetc++);
9540         }
9541         /* on both branches above g_parsefile->left_in_line < 0.
9542          * "pgetc" needs refilling.
9543          */
9544
9545         /* -90 is our -BIGNUM. Below we use -99 to mark "EOF on read",
9546          * pungetc() may increment it a few times.
9547          * Assuming it won't increment it to less than -90.
9548          */
9549         if (g_parsefile->left_in_line < -90 || g_parsefile->buf == NULL) {
9550                 pgetc_debug("preadbuffer PEOF1");
9551                 /* even in failure keep left_in_line and next_to_pgetc
9552                  * in lock step, for correct multi-layer pungetc.
9553                  * left_in_line was decremented before preadbuffer(),
9554                  * must inc next_to_pgetc: */
9555                 g_parsefile->next_to_pgetc++;
9556                 return PEOF;
9557         }
9558
9559         more = g_parsefile->left_in_buffer;
9560         if (more <= 0) {
9561                 flush_stdout_stderr();
9562  again:
9563                 more = preadfd();
9564                 if (more <= 0) {
9565                         /* don't try reading again */
9566                         g_parsefile->left_in_line = -99;
9567                         pgetc_debug("preadbuffer PEOF2");
9568                         g_parsefile->next_to_pgetc++;
9569                         return PEOF;
9570                 }
9571         }
9572
9573         /* Find out where's the end of line.
9574          * Set g_parsefile->left_in_line
9575          * and g_parsefile->left_in_buffer acordingly.
9576          * NUL chars are deleted.
9577          */
9578         q = g_parsefile->next_to_pgetc;
9579         for (;;) {
9580                 char c;
9581
9582                 more--;
9583
9584                 c = *q;
9585                 if (c == '\0') {
9586                         memmove(q, q + 1, more);
9587                 } else {
9588                         q++;
9589                         if (c == '\n') {
9590                                 g_parsefile->left_in_line = q - g_parsefile->next_to_pgetc - 1;
9591                                 break;
9592                         }
9593                 }
9594
9595                 if (more <= 0) {
9596                         g_parsefile->left_in_line = q - g_parsefile->next_to_pgetc - 1;
9597                         if (g_parsefile->left_in_line < 0)
9598                                 goto again;
9599                         break;
9600                 }
9601         }
9602         g_parsefile->left_in_buffer = more;
9603
9604         if (vflag) {
9605                 char save = *q;
9606                 *q = '\0';
9607                 out2str(g_parsefile->next_to_pgetc);
9608                 *q = save;
9609         }
9610
9611         pgetc_debug("preadbuffer at %d:%p'%s'",
9612                         g_parsefile->left_in_line,
9613                         g_parsefile->next_to_pgetc,
9614                         g_parsefile->next_to_pgetc);
9615         return (unsigned char)*g_parsefile->next_to_pgetc++;
9616 }
9617
9618 #define pgetc_as_macro() \
9619         (--g_parsefile->left_in_line >= 0 \
9620         ? (unsigned char)*g_parsefile->next_to_pgetc++ \
9621         : preadbuffer() \
9622         )
9623
9624 static int
9625 pgetc(void)
9626 {
9627         pgetc_debug("pgetc_fast at %d:%p'%s'",
9628                         g_parsefile->left_in_line,
9629                         g_parsefile->next_to_pgetc,
9630                         g_parsefile->next_to_pgetc);
9631         return pgetc_as_macro();
9632 }
9633
9634 #if ENABLE_ASH_OPTIMIZE_FOR_SIZE
9635 # define pgetc_fast() pgetc()
9636 #else
9637 # define pgetc_fast() pgetc_as_macro()
9638 #endif
9639
9640 #if ENABLE_ASH_ALIAS
9641 static int
9642 pgetc_without_PEOA(void)
9643 {
9644         int c;
9645         do {
9646                 pgetc_debug("pgetc_fast at %d:%p'%s'",
9647                                 g_parsefile->left_in_line,
9648                                 g_parsefile->next_to_pgetc,
9649                                 g_parsefile->next_to_pgetc);
9650                 c = pgetc_fast();
9651         } while (c == PEOA);
9652         return c;
9653 }
9654 #else
9655 # define pgetc_without_PEOA() pgetc()
9656 #endif
9657
9658 /*
9659  * Read a line from the script.
9660  */
9661 static char *
9662 pfgets(char *line, int len)
9663 {
9664         char *p = line;
9665         int nleft = len;
9666         int c;
9667
9668         while (--nleft > 0) {
9669                 c = pgetc_without_PEOA();
9670                 if (c == PEOF) {
9671                         if (p == line)
9672                                 return NULL;
9673                         break;
9674                 }
9675                 *p++ = c;
9676                 if (c == '\n')
9677                         break;
9678         }
9679         *p = '\0';
9680         return line;
9681 }
9682
9683 /*
9684  * Undo the last call to pgetc.  Only one character may be pushed back.
9685  * PEOF may be pushed back.
9686  */
9687 static void
9688 pungetc(void)
9689 {
9690         g_parsefile->left_in_line++;
9691         g_parsefile->next_to_pgetc--;
9692         pgetc_debug("pushed back to %d:%p'%s'",
9693                         g_parsefile->left_in_line,
9694                         g_parsefile->next_to_pgetc,
9695                         g_parsefile->next_to_pgetc);
9696 }
9697
9698 /*
9699  * To handle the "." command, a stack of input files is used.  Pushfile
9700  * adds a new entry to the stack and popfile restores the previous level.
9701  */
9702 static void
9703 pushfile(void)
9704 {
9705         struct parsefile *pf;
9706
9707         pf = ckzalloc(sizeof(*pf));
9708         pf->prev = g_parsefile;
9709         pf->pf_fd = -1;
9710         /*pf->strpush = NULL; - ckzalloc did it */
9711         /*pf->basestrpush.prev = NULL;*/
9712         g_parsefile = pf;
9713 }
9714
9715 static void
9716 popfile(void)
9717 {
9718         struct parsefile *pf = g_parsefile;
9719
9720         INT_OFF;
9721         if (pf->pf_fd >= 0)
9722                 close(pf->pf_fd);
9723         free(pf->buf);
9724         while (pf->strpush)
9725                 popstring();
9726         g_parsefile = pf->prev;
9727         free(pf);
9728         INT_ON;
9729 }
9730
9731 /*
9732  * Return to top level.
9733  */
9734 static void
9735 popallfiles(void)
9736 {
9737         while (g_parsefile != &basepf)
9738                 popfile();
9739 }
9740
9741 /*
9742  * Close the file(s) that the shell is reading commands from.  Called
9743  * after a fork is done.
9744  */
9745 static void
9746 closescript(void)
9747 {
9748         popallfiles();
9749         if (g_parsefile->pf_fd > 0) {
9750                 close(g_parsefile->pf_fd);
9751                 g_parsefile->pf_fd = 0;
9752         }
9753 }
9754
9755 /*
9756  * Like setinputfile, but takes an open file descriptor.  Call this with
9757  * interrupts off.
9758  */
9759 static void
9760 setinputfd(int fd, int push)
9761 {
9762         close_on_exec_on(fd);
9763         if (push) {
9764                 pushfile();
9765                 g_parsefile->buf = NULL;
9766         }
9767         g_parsefile->pf_fd = fd;
9768         if (g_parsefile->buf == NULL)
9769                 g_parsefile->buf = ckmalloc(IBUFSIZ);
9770         g_parsefile->left_in_buffer = 0;
9771         g_parsefile->left_in_line = 0;
9772         g_parsefile->linno = 1;
9773 }
9774
9775 /*
9776  * Set the input to take input from a file.  If push is set, push the
9777  * old input onto the stack first.
9778  */
9779 static int
9780 setinputfile(const char *fname, int flags)
9781 {
9782         int fd;
9783         int fd2;
9784
9785         INT_OFF;
9786         fd = open(fname, O_RDONLY);
9787         if (fd < 0) {
9788                 if (flags & INPUT_NOFILE_OK)
9789                         goto out;
9790                 ash_msg_and_raise_error("can't open '%s'", fname);
9791         }
9792         if (fd < 10) {
9793                 fd2 = copyfd(fd, 10);
9794                 close(fd);
9795                 if (fd2 < 0)
9796                         ash_msg_and_raise_error("out of file descriptors");
9797                 fd = fd2;
9798         }
9799         setinputfd(fd, flags & INPUT_PUSH_FILE);
9800  out:
9801         INT_ON;
9802         return fd;
9803 }
9804
9805 /*
9806  * Like setinputfile, but takes input from a string.
9807  */
9808 static void
9809 setinputstring(char *string)
9810 {
9811         INT_OFF;
9812         pushfile();
9813         g_parsefile->next_to_pgetc = string;
9814         g_parsefile->left_in_line = strlen(string);
9815         g_parsefile->buf = NULL;
9816         g_parsefile->linno = 1;
9817         INT_ON;
9818 }
9819
9820
9821 /* ============ mail.c
9822  *
9823  * Routines to check for mail.
9824  */
9825
9826 #if ENABLE_ASH_MAIL
9827
9828 #define MAXMBOXES 10
9829
9830 /* times of mailboxes */
9831 static time_t mailtime[MAXMBOXES];
9832 /* Set if MAIL or MAILPATH is changed. */
9833 static smallint mail_var_path_changed;
9834
9835 /*
9836  * Print appropriate message(s) if mail has arrived.
9837  * If mail_var_path_changed is set,
9838  * then the value of MAIL has mail_var_path_changed,
9839  * so we just update the values.
9840  */
9841 static void
9842 chkmail(void)
9843 {
9844         const char *mpath;
9845         char *p;
9846         char *q;
9847         time_t *mtp;
9848         struct stackmark smark;
9849         struct stat statb;
9850
9851         setstackmark(&smark);
9852         mpath = mpathset() ? mpathval() : mailval();
9853         for (mtp = mailtime; mtp < mailtime + MAXMBOXES; mtp++) {
9854                 p = path_advance(&mpath, nullstr);
9855                 if (p == NULL)
9856                         break;
9857                 if (*p == '\0')
9858                         continue;
9859                 for (q = p; *q; q++)
9860                         continue;
9861 #if DEBUG
9862                 if (q[-1] != '/')
9863                         abort();
9864 #endif
9865                 q[-1] = '\0';                   /* delete trailing '/' */
9866                 if (stat(p, &statb) < 0) {
9867                         *mtp = 0;
9868                         continue;
9869                 }
9870                 if (!mail_var_path_changed && statb.st_mtime != *mtp) {
9871                         fprintf(
9872                                 stderr, "%s\n",
9873                                 pathopt ? pathopt : "you have mail"
9874                         );
9875                 }
9876                 *mtp = statb.st_mtime;
9877         }
9878         mail_var_path_changed = 0;
9879         popstackmark(&smark);
9880 }
9881
9882 static void FAST_FUNC
9883 changemail(const char *val UNUSED_PARAM)
9884 {
9885         mail_var_path_changed = 1;
9886 }
9887
9888 #endif /* ASH_MAIL */
9889
9890
9891 /* ============ ??? */
9892
9893 /*
9894  * Set the shell parameters.
9895  */
9896 static void
9897 setparam(char **argv)
9898 {
9899         char **newparam;
9900         char **ap;
9901         int nparam;
9902
9903         for (nparam = 0; argv[nparam]; nparam++)
9904                 continue;
9905         ap = newparam = ckmalloc((nparam + 1) * sizeof(*ap));
9906         while (*argv) {
9907                 *ap++ = ckstrdup(*argv++);
9908         }
9909         *ap = NULL;
9910         freeparam(&shellparam);
9911         shellparam.malloced = 1;
9912         shellparam.nparam = nparam;
9913         shellparam.p = newparam;
9914 #if ENABLE_ASH_GETOPTS
9915         shellparam.optind = 1;
9916         shellparam.optoff = -1;
9917 #endif
9918 }
9919
9920 /*
9921  * Process shell options.  The global variable argptr contains a pointer
9922  * to the argument list; we advance it past the options.
9923  *
9924  * SUSv3 section 2.8.1 "Consequences of Shell Errors" says:
9925  * For a non-interactive shell, an error condition encountered
9926  * by a special built-in ... shall cause the shell to write a diagnostic message
9927  * to standard error and exit as shown in the following table:
9928  * Error                                           Special Built-In
9929  * ...
9930  * Utility syntax error (option or operand error)  Shall exit
9931  * ...
9932  * However, in bug 1142 (http://busybox.net/bugs/view.php?id=1142)
9933  * we see that bash does not do that (set "finishes" with error code 1 instead,
9934  * and shell continues), and people rely on this behavior!
9935  * Testcase:
9936  * set -o barfoo 2>/dev/null
9937  * echo $?
9938  *
9939  * Oh well. Let's mimic that.
9940  */
9941 static int
9942 plus_minus_o(char *name, int val)
9943 {
9944         int i;
9945
9946         if (name) {
9947                 for (i = 0; i < NOPTS; i++) {
9948                         if (strcmp(name, optnames(i)) == 0) {
9949                                 optlist[i] = val;
9950                                 return 0;
9951                         }
9952                 }
9953                 ash_msg("illegal option %co %s", val ? '-' : '+', name);
9954                 return 1;
9955         }
9956         for (i = 0; i < NOPTS; i++) {
9957                 if (val) {
9958                         out1fmt("%-16s%s\n", optnames(i), optlist[i] ? "on" : "off");
9959                 } else {
9960                         out1fmt("set %co %s\n", optlist[i] ? '-' : '+', optnames(i));
9961                 }
9962         }
9963         return 0;
9964 }
9965 static void
9966 setoption(int flag, int val)
9967 {
9968         int i;
9969
9970         for (i = 0; i < NOPTS; i++) {
9971                 if (optletters(i) == flag) {
9972                         optlist[i] = val;
9973                         return;
9974                 }
9975         }
9976         ash_msg_and_raise_error("illegal option %c%c", val ? '-' : '+', flag);
9977         /* NOTREACHED */
9978 }
9979 static int
9980 options(int cmdline)
9981 {
9982         char *p;
9983         int val;
9984         int c;
9985
9986         if (cmdline)
9987                 minusc = NULL;
9988         while ((p = *argptr) != NULL) {
9989                 c = *p++;
9990                 if (c != '-' && c != '+')
9991                         break;
9992                 argptr++;
9993                 val = 0; /* val = 0 if c == '+' */
9994                 if (c == '-') {
9995                         val = 1;
9996                         if (p[0] == '\0' || LONE_DASH(p)) {
9997                                 if (!cmdline) {
9998                                         /* "-" means turn off -x and -v */
9999                                         if (p[0] == '\0')
10000                                                 xflag = vflag = 0;
10001                                         /* "--" means reset params */
10002                                         else if (*argptr == NULL)
10003                                                 setparam(argptr);
10004                                 }
10005                                 break;    /* "-" or  "--" terminates options */
10006                         }
10007                 }
10008                 /* first char was + or - */
10009                 while ((c = *p++) != '\0') {
10010                         /* bash 3.2 indeed handles -c CMD and +c CMD the same */
10011                         if (c == 'c' && cmdline) {
10012                                 minusc = p;     /* command is after shell args */
10013                         } else if (c == 'o') {
10014                                 if (plus_minus_o(*argptr, val)) {
10015                                         /* it already printed err message */
10016                                         return 1; /* error */
10017                                 }
10018                                 if (*argptr)
10019                                         argptr++;
10020                         } else if (cmdline && (c == 'l')) { /* -l or +l == --login */
10021                                 isloginsh = 1;
10022                         /* bash does not accept +-login, we also won't */
10023                         } else if (cmdline && val && (c == '-')) { /* long options */
10024                                 if (strcmp(p, "login") == 0)
10025                                         isloginsh = 1;
10026                                 break;
10027                         } else {
10028                                 setoption(c, val);
10029                         }
10030                 }
10031         }
10032         return 0;
10033 }
10034
10035 /*
10036  * The shift builtin command.
10037  */
10038 static int FAST_FUNC
10039 shiftcmd(int argc UNUSED_PARAM, char **argv)
10040 {
10041         int n;
10042         char **ap1, **ap2;
10043
10044         n = 1;
10045         if (argv[1])
10046                 n = number(argv[1]);
10047         if (n > shellparam.nparam)
10048                 n = 0; /* bash compat, was = shellparam.nparam; */
10049         INT_OFF;
10050         shellparam.nparam -= n;
10051         for (ap1 = shellparam.p; --n >= 0; ap1++) {
10052                 if (shellparam.malloced)
10053                         free(*ap1);
10054         }
10055         ap2 = shellparam.p;
10056         while ((*ap2++ = *ap1++) != NULL)
10057                 continue;
10058 #if ENABLE_ASH_GETOPTS
10059         shellparam.optind = 1;
10060         shellparam.optoff = -1;
10061 #endif
10062         INT_ON;
10063         return 0;
10064 }
10065
10066 /*
10067  * POSIX requires that 'set' (but not export or readonly) output the
10068  * variables in lexicographic order - by the locale's collating order (sigh).
10069  * Maybe we could keep them in an ordered balanced binary tree
10070  * instead of hashed lists.
10071  * For now just roll 'em through qsort for printing...
10072  */
10073 static int
10074 showvars(const char *sep_prefix, int on, int off)
10075 {
10076         const char *sep;
10077         char **ep, **epend;
10078
10079         ep = listvars(on, off, &epend);
10080         qsort(ep, epend - ep, sizeof(char *), vpcmp);
10081
10082         sep = *sep_prefix ? " " : sep_prefix;
10083
10084         for (; ep < epend; ep++) {
10085                 const char *p;
10086                 const char *q;
10087
10088                 p = strchrnul(*ep, '=');
10089                 q = nullstr;
10090                 if (*p)
10091                         q = single_quote(++p);
10092                 out1fmt("%s%s%.*s%s\n", sep_prefix, sep, (int)(p - *ep), *ep, q);
10093         }
10094         return 0;
10095 }
10096
10097 /*
10098  * The set command builtin.
10099  */
10100 static int FAST_FUNC
10101 setcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
10102 {
10103         int retval;
10104
10105         if (!argv[1])
10106                 return showvars(nullstr, 0, VUNSET);
10107         INT_OFF;
10108         retval = 1;
10109         if (!options(0)) { /* if no parse error... */
10110                 retval = 0;
10111                 optschanged();
10112                 if (*argptr != NULL) {
10113                         setparam(argptr);
10114                 }
10115         }
10116         INT_ON;
10117         return retval;
10118 }
10119
10120 #if ENABLE_ASH_RANDOM_SUPPORT
10121 static void FAST_FUNC
10122 change_random(const char *value)
10123 {
10124         uint32_t t;
10125
10126         if (value == NULL) {
10127                 /* "get", generate */
10128                 t = next_random(&random_gen);
10129                 /* set without recursion */
10130                 setvar(vrandom.var_text, utoa(t), VNOFUNC);
10131                 vrandom.flags &= ~VNOFUNC;
10132         } else {
10133                 /* set/reset */
10134                 t = strtoul(value, NULL, 10);
10135                 INIT_RANDOM_T(&random_gen, (t ? t : 1), t);
10136         }
10137 }
10138 #endif
10139
10140 #if ENABLE_ASH_GETOPTS
10141 static int
10142 getopts(char *optstr, char *optvar, char **optfirst, int *param_optind, int *optoff)
10143 {
10144         char *p, *q;
10145         char c = '?';
10146         int done = 0;
10147         int err = 0;
10148         char s[12];
10149         char **optnext;
10150
10151         if (*param_optind < 1)
10152                 return 1;
10153         optnext = optfirst + *param_optind - 1;
10154
10155         if (*param_optind <= 1 || *optoff < 0 || (int)strlen(optnext[-1]) < *optoff)
10156                 p = NULL;
10157         else
10158                 p = optnext[-1] + *optoff;
10159         if (p == NULL || *p == '\0') {
10160                 /* Current word is done, advance */
10161                 p = *optnext;
10162                 if (p == NULL || *p != '-' || *++p == '\0') {
10163  atend:
10164                         p = NULL;
10165                         done = 1;
10166                         goto out;
10167                 }
10168                 optnext++;
10169                 if (LONE_DASH(p))        /* check for "--" */
10170                         goto atend;
10171         }
10172
10173         c = *p++;
10174         for (q = optstr; *q != c;) {
10175                 if (*q == '\0') {
10176                         if (optstr[0] == ':') {
10177                                 s[0] = c;
10178                                 s[1] = '\0';
10179                                 err |= setvarsafe("OPTARG", s, 0);
10180                         } else {
10181                                 fprintf(stderr, "Illegal option -%c\n", c);
10182                                 unsetvar("OPTARG");
10183                         }
10184                         c = '?';
10185                         goto out;
10186                 }
10187                 if (*++q == ':')
10188                         q++;
10189         }
10190
10191         if (*++q == ':') {
10192                 if (*p == '\0' && (p = *optnext) == NULL) {
10193                         if (optstr[0] == ':') {
10194                                 s[0] = c;
10195                                 s[1] = '\0';
10196                                 err |= setvarsafe("OPTARG", s, 0);
10197                                 c = ':';
10198                         } else {
10199                                 fprintf(stderr, "No arg for -%c option\n", c);
10200                                 unsetvar("OPTARG");
10201                                 c = '?';
10202                         }
10203                         goto out;
10204                 }
10205
10206                 if (p == *optnext)
10207                         optnext++;
10208                 err |= setvarsafe("OPTARG", p, 0);
10209                 p = NULL;
10210         } else
10211                 err |= setvarsafe("OPTARG", nullstr, 0);
10212  out:
10213         *optoff = p ? p - *(optnext - 1) : -1;
10214         *param_optind = optnext - optfirst + 1;
10215         fmtstr(s, sizeof(s), "%d", *param_optind);
10216         err |= setvarsafe("OPTIND", s, VNOFUNC);
10217         s[0] = c;
10218         s[1] = '\0';
10219         err |= setvarsafe(optvar, s, 0);
10220         if (err) {
10221                 *param_optind = 1;
10222                 *optoff = -1;
10223                 flush_stdout_stderr();
10224                 raise_exception(EXERROR);
10225         }
10226         return done;
10227 }
10228
10229 /*
10230  * The getopts builtin.  Shellparam.optnext points to the next argument
10231  * to be processed.  Shellparam.optptr points to the next character to
10232  * be processed in the current argument.  If shellparam.optnext is NULL,
10233  * then it's the first time getopts has been called.
10234  */
10235 static int FAST_FUNC
10236 getoptscmd(int argc, char **argv)
10237 {
10238         char **optbase;
10239
10240         if (argc < 3)
10241                 ash_msg_and_raise_error("usage: getopts optstring var [arg]");
10242         if (argc == 3) {
10243                 optbase = shellparam.p;
10244                 if (shellparam.optind > shellparam.nparam + 1) {
10245                         shellparam.optind = 1;
10246                         shellparam.optoff = -1;
10247                 }
10248         } else {
10249                 optbase = &argv[3];
10250                 if (shellparam.optind > argc - 2) {
10251                         shellparam.optind = 1;
10252                         shellparam.optoff = -1;
10253                 }
10254         }
10255
10256         return getopts(argv[1], argv[2], optbase, &shellparam.optind,
10257                         &shellparam.optoff);
10258 }
10259 #endif /* ASH_GETOPTS */
10260
10261
10262 /* ============ Shell parser */
10263
10264 struct heredoc {
10265         struct heredoc *next;   /* next here document in list */
10266         union node *here;       /* redirection node */
10267         char *eofmark;          /* string indicating end of input */
10268         smallint striptabs;     /* if set, strip leading tabs */
10269 };
10270
10271 static smallint tokpushback;           /* last token pushed back */
10272 static smallint parsebackquote;        /* nonzero if we are inside backquotes */
10273 static smallint quoteflag;             /* set if (part of) last token was quoted */
10274 static token_id_t lasttoken;           /* last token read (integer id Txxx) */
10275 static struct heredoc *heredoclist;    /* list of here documents to read */
10276 static char *wordtext;                 /* text of last word returned by readtoken */
10277 static struct nodelist *backquotelist;
10278 static union node *redirnode;
10279 static struct heredoc *heredoc;
10280
10281 static const char *
10282 tokname(char *buf, int tok)
10283 {
10284         if (tok < TSEMI)
10285                 return tokname_array[tok] + 1;
10286         sprintf(buf, "\"%s\"", tokname_array[tok] + 1);
10287         return buf;
10288 }
10289
10290 /* raise_error_unexpected_syntax:
10291  * Called when an unexpected token is read during the parse.  The argument
10292  * is the token that is expected, or -1 if more than one type of token can
10293  * occur at this point.
10294  */
10295 static void raise_error_unexpected_syntax(int) NORETURN;
10296 static void
10297 raise_error_unexpected_syntax(int token)
10298 {
10299         char msg[64];
10300         char buf[16];
10301         int l;
10302
10303         l = sprintf(msg, "unexpected %s", tokname(buf, lasttoken));
10304         if (token >= 0)
10305                 sprintf(msg + l, " (expecting %s)", tokname(buf, token));
10306         raise_error_syntax(msg);
10307         /* NOTREACHED */
10308 }
10309
10310 #define EOFMARKLEN 79
10311
10312 /* parsing is heavily cross-recursive, need these forward decls */
10313 static union node *andor(void);
10314 static union node *pipeline(void);
10315 static union node *parse_command(void);
10316 static void parseheredoc(void);
10317 static char peektoken(void);
10318 static int readtoken(void);
10319
10320 static union node *
10321 list(int nlflag)
10322 {
10323         union node *n1, *n2, *n3;
10324         int tok;
10325
10326         checkkwd = CHKNL | CHKKWD | CHKALIAS;
10327         if (nlflag == 2 && peektoken())
10328                 return NULL;
10329         n1 = NULL;
10330         for (;;) {
10331                 n2 = andor();
10332                 tok = readtoken();
10333                 if (tok == TBACKGND) {
10334                         if (n2->type == NPIPE) {
10335                                 n2->npipe.pipe_backgnd = 1;
10336                         } else {
10337                                 if (n2->type != NREDIR) {
10338                                         n3 = stzalloc(sizeof(struct nredir));
10339                                         n3->nredir.n = n2;
10340                                         /*n3->nredir.redirect = NULL; - stzalloc did it */
10341                                         n2 = n3;
10342                                 }
10343                                 n2->type = NBACKGND;
10344                         }
10345                 }
10346                 if (n1 == NULL) {
10347                         n1 = n2;
10348                 } else {
10349                         n3 = stzalloc(sizeof(struct nbinary));
10350                         n3->type = NSEMI;
10351                         n3->nbinary.ch1 = n1;
10352                         n3->nbinary.ch2 = n2;
10353                         n1 = n3;
10354                 }
10355                 switch (tok) {
10356                 case TBACKGND:
10357                 case TSEMI:
10358                         tok = readtoken();
10359                         /* fall through */
10360                 case TNL:
10361                         if (tok == TNL) {
10362                                 parseheredoc();
10363                                 if (nlflag == 1)
10364                                         return n1;
10365                         } else {
10366                                 tokpushback = 1;
10367                         }
10368                         checkkwd = CHKNL | CHKKWD | CHKALIAS;
10369                         if (peektoken())
10370                                 return n1;
10371                         break;
10372                 case TEOF:
10373                         if (heredoclist)
10374                                 parseheredoc();
10375                         else
10376                                 pungetc();              /* push back EOF on input */
10377                         return n1;
10378                 default:
10379                         if (nlflag == 1)
10380                                 raise_error_unexpected_syntax(-1);
10381                         tokpushback = 1;
10382                         return n1;
10383                 }
10384         }
10385 }
10386
10387 static union node *
10388 andor(void)
10389 {
10390         union node *n1, *n2, *n3;
10391         int t;
10392
10393         n1 = pipeline();
10394         for (;;) {
10395                 t = readtoken();
10396                 if (t == TAND) {
10397                         t = NAND;
10398                 } else if (t == TOR) {
10399                         t = NOR;
10400                 } else {
10401                         tokpushback = 1;
10402                         return n1;
10403                 }
10404                 checkkwd = CHKNL | CHKKWD | CHKALIAS;
10405                 n2 = pipeline();
10406                 n3 = stzalloc(sizeof(struct nbinary));
10407                 n3->type = t;
10408                 n3->nbinary.ch1 = n1;
10409                 n3->nbinary.ch2 = n2;
10410                 n1 = n3;
10411         }
10412 }
10413
10414 static union node *
10415 pipeline(void)
10416 {
10417         union node *n1, *n2, *pipenode;
10418         struct nodelist *lp, *prev;
10419         int negate;
10420
10421         negate = 0;
10422         TRACE(("pipeline: entered\n"));
10423         if (readtoken() == TNOT) {
10424                 negate = !negate;
10425                 checkkwd = CHKKWD | CHKALIAS;
10426         } else
10427                 tokpushback = 1;
10428         n1 = parse_command();
10429         if (readtoken() == TPIPE) {
10430                 pipenode = stzalloc(sizeof(struct npipe));
10431                 pipenode->type = NPIPE;
10432                 /*pipenode->npipe.pipe_backgnd = 0; - stzalloc did it */
10433                 lp = stzalloc(sizeof(struct nodelist));
10434                 pipenode->npipe.cmdlist = lp;
10435                 lp->n = n1;
10436                 do {
10437                         prev = lp;
10438                         lp = stzalloc(sizeof(struct nodelist));
10439                         checkkwd = CHKNL | CHKKWD | CHKALIAS;
10440                         lp->n = parse_command();
10441                         prev->next = lp;
10442                 } while (readtoken() == TPIPE);
10443                 lp->next = NULL;
10444                 n1 = pipenode;
10445         }
10446         tokpushback = 1;
10447         if (negate) {
10448                 n2 = stzalloc(sizeof(struct nnot));
10449                 n2->type = NNOT;
10450                 n2->nnot.com = n1;
10451                 return n2;
10452         }
10453         return n1;
10454 }
10455
10456 static union node *
10457 makename(void)
10458 {
10459         union node *n;
10460
10461         n = stzalloc(sizeof(struct narg));
10462         n->type = NARG;
10463         /*n->narg.next = NULL; - stzalloc did it */
10464         n->narg.text = wordtext;
10465         n->narg.backquote = backquotelist;
10466         return n;
10467 }
10468
10469 static void
10470 fixredir(union node *n, const char *text, int err)
10471 {
10472         int fd;
10473
10474         TRACE(("Fix redir %s %d\n", text, err));
10475         if (!err)
10476                 n->ndup.vname = NULL;
10477
10478         fd = bb_strtou(text, NULL, 10);
10479         if (!errno && fd >= 0)
10480                 n->ndup.dupfd = fd;
10481         else if (LONE_DASH(text))
10482                 n->ndup.dupfd = -1;
10483         else {
10484                 if (err)
10485                         raise_error_syntax("bad fd number");
10486                 n->ndup.vname = makename();
10487         }
10488 }
10489
10490 /*
10491  * Returns true if the text contains nothing to expand (no dollar signs
10492  * or backquotes).
10493  */
10494 static int
10495 noexpand(const char *text)
10496 {
10497         unsigned char c;
10498
10499         while ((c = *text++) != '\0') {
10500                 if (c == CTLQUOTEMARK)
10501                         continue;
10502                 if (c == CTLESC)
10503                         text++;
10504                 else if (SIT(c, BASESYNTAX) == CCTL)
10505                         return 0;
10506         }
10507         return 1;
10508 }
10509
10510 static void
10511 parsefname(void)
10512 {
10513         union node *n = redirnode;
10514
10515         if (readtoken() != TWORD)
10516                 raise_error_unexpected_syntax(-1);
10517         if (n->type == NHERE) {
10518                 struct heredoc *here = heredoc;
10519                 struct heredoc *p;
10520                 int i;
10521
10522                 if (quoteflag == 0)
10523                         n->type = NXHERE;
10524                 TRACE(("Here document %d\n", n->type));
10525                 if (!noexpand(wordtext) || (i = strlen(wordtext)) == 0 || i > EOFMARKLEN)
10526                         raise_error_syntax("illegal eof marker for << redirection");
10527                 rmescapes(wordtext, 0);
10528                 here->eofmark = wordtext;
10529                 here->next = NULL;
10530                 if (heredoclist == NULL)
10531                         heredoclist = here;
10532                 else {
10533                         for (p = heredoclist; p->next; p = p->next)
10534                                 continue;
10535                         p->next = here;
10536                 }
10537         } else if (n->type == NTOFD || n->type == NFROMFD) {
10538                 fixredir(n, wordtext, 0);
10539         } else {
10540                 n->nfile.fname = makename();
10541         }
10542 }
10543
10544 static union node *
10545 simplecmd(void)
10546 {
10547         union node *args, **app;
10548         union node *n = NULL;
10549         union node *vars, **vpp;
10550         union node **rpp, *redir;
10551         int savecheckkwd;
10552 #if ENABLE_ASH_BASH_COMPAT
10553         smallint double_brackets_flag = 0;
10554 #endif
10555
10556         args = NULL;
10557         app = &args;
10558         vars = NULL;
10559         vpp = &vars;
10560         redir = NULL;
10561         rpp = &redir;
10562
10563         savecheckkwd = CHKALIAS;
10564         for (;;) {
10565                 int t;
10566                 checkkwd = savecheckkwd;
10567                 t = readtoken();
10568                 switch (t) {
10569 #if ENABLE_ASH_BASH_COMPAT
10570                 case TAND: /* "&&" */
10571                 case TOR: /* "||" */
10572                         if (!double_brackets_flag) {
10573                                 tokpushback = 1;
10574                                 goto out;
10575                         }
10576                         wordtext = (char *) (t == TAND ? "-a" : "-o");
10577 #endif
10578                 case TWORD:
10579                         n = stzalloc(sizeof(struct narg));
10580                         n->type = NARG;
10581                         /*n->narg.next = NULL; - stzalloc did it */
10582                         n->narg.text = wordtext;
10583 #if ENABLE_ASH_BASH_COMPAT
10584                         if (strcmp("[[", wordtext) == 0)
10585                                 double_brackets_flag = 1;
10586                         else if (strcmp("]]", wordtext) == 0)
10587                                 double_brackets_flag = 0;
10588 #endif
10589                         n->narg.backquote = backquotelist;
10590                         if (savecheckkwd && isassignment(wordtext)) {
10591                                 *vpp = n;
10592                                 vpp = &n->narg.next;
10593                         } else {
10594                                 *app = n;
10595                                 app = &n->narg.next;
10596                                 savecheckkwd = 0;
10597                         }
10598                         break;
10599                 case TREDIR:
10600                         *rpp = n = redirnode;
10601                         rpp = &n->nfile.next;
10602                         parsefname();   /* read name of redirection file */
10603                         break;
10604                 case TLP:
10605                         if (args && app == &args->narg.next
10606                          && !vars && !redir
10607                         ) {
10608                                 struct builtincmd *bcmd;
10609                                 const char *name;
10610
10611                                 /* We have a function */
10612                                 if (readtoken() != TRP)
10613                                         raise_error_unexpected_syntax(TRP);
10614                                 name = n->narg.text;
10615                                 if (!goodname(name)
10616                                  || ((bcmd = find_builtin(name)) && IS_BUILTIN_SPECIAL(bcmd))
10617                                 ) {
10618                                         raise_error_syntax("bad function name");
10619                                 }
10620                                 n->type = NDEFUN;
10621                                 checkkwd = CHKNL | CHKKWD | CHKALIAS;
10622                                 n->narg.next = parse_command();
10623                                 return n;
10624                         }
10625                         /* fall through */
10626                 default:
10627                         tokpushback = 1;
10628                         goto out;
10629                 }
10630         }
10631  out:
10632         *app = NULL;
10633         *vpp = NULL;
10634         *rpp = NULL;
10635         n = stzalloc(sizeof(struct ncmd));
10636         n->type = NCMD;
10637         n->ncmd.args = args;
10638         n->ncmd.assign = vars;
10639         n->ncmd.redirect = redir;
10640         return n;
10641 }
10642
10643 static union node *
10644 parse_command(void)
10645 {
10646         union node *n1, *n2;
10647         union node *ap, **app;
10648         union node *cp, **cpp;
10649         union node *redir, **rpp;
10650         union node **rpp2;
10651         int t;
10652
10653         redir = NULL;
10654         rpp2 = &redir;
10655
10656         switch (readtoken()) {
10657         default:
10658                 raise_error_unexpected_syntax(-1);
10659                 /* NOTREACHED */
10660         case TIF:
10661                 n1 = stzalloc(sizeof(struct nif));
10662                 n1->type = NIF;
10663                 n1->nif.test = list(0);
10664                 if (readtoken() != TTHEN)
10665                         raise_error_unexpected_syntax(TTHEN);
10666                 n1->nif.ifpart = list(0);
10667                 n2 = n1;
10668                 while (readtoken() == TELIF) {
10669                         n2->nif.elsepart = stzalloc(sizeof(struct nif));
10670                         n2 = n2->nif.elsepart;
10671                         n2->type = NIF;
10672                         n2->nif.test = list(0);
10673                         if (readtoken() != TTHEN)
10674                                 raise_error_unexpected_syntax(TTHEN);
10675                         n2->nif.ifpart = list(0);
10676                 }
10677                 if (lasttoken == TELSE)
10678                         n2->nif.elsepart = list(0);
10679                 else {
10680                         n2->nif.elsepart = NULL;
10681                         tokpushback = 1;
10682                 }
10683                 t = TFI;
10684                 break;
10685         case TWHILE:
10686         case TUNTIL: {
10687                 int got;
10688                 n1 = stzalloc(sizeof(struct nbinary));
10689                 n1->type = (lasttoken == TWHILE) ? NWHILE : NUNTIL;
10690                 n1->nbinary.ch1 = list(0);
10691                 got = readtoken();
10692                 if (got != TDO) {
10693                         TRACE(("expecting DO got '%s' %s\n", tokname_array[got] + 1,
10694                                         got == TWORD ? wordtext : ""));
10695                         raise_error_unexpected_syntax(TDO);
10696                 }
10697                 n1->nbinary.ch2 = list(0);
10698                 t = TDONE;
10699                 break;
10700         }
10701         case TFOR:
10702                 if (readtoken() != TWORD || quoteflag || !goodname(wordtext))
10703                         raise_error_syntax("bad for loop variable");
10704                 n1 = stzalloc(sizeof(struct nfor));
10705                 n1->type = NFOR;
10706                 n1->nfor.var = wordtext;
10707                 checkkwd = CHKKWD | CHKALIAS;
10708                 if (readtoken() == TIN) {
10709                         app = &ap;
10710                         while (readtoken() == TWORD) {
10711                                 n2 = stzalloc(sizeof(struct narg));
10712                                 n2->type = NARG;
10713                                 /*n2->narg.next = NULL; - stzalloc did it */
10714                                 n2->narg.text = wordtext;
10715                                 n2->narg.backquote = backquotelist;
10716                                 *app = n2;
10717                                 app = &n2->narg.next;
10718                         }
10719                         *app = NULL;
10720                         n1->nfor.args = ap;
10721                         if (lasttoken != TNL && lasttoken != TSEMI)
10722                                 raise_error_unexpected_syntax(-1);
10723                 } else {
10724                         n2 = stzalloc(sizeof(struct narg));
10725                         n2->type = NARG;
10726                         /*n2->narg.next = NULL; - stzalloc did it */
10727                         n2->narg.text = (char *)dolatstr;
10728                         /*n2->narg.backquote = NULL;*/
10729                         n1->nfor.args = n2;
10730                         /*
10731                          * Newline or semicolon here is optional (but note
10732                          * that the original Bourne shell only allowed NL).
10733                          */
10734                         if (lasttoken != TNL && lasttoken != TSEMI)
10735                                 tokpushback = 1;
10736                 }
10737                 checkkwd = CHKNL | CHKKWD | CHKALIAS;
10738                 if (readtoken() != TDO)
10739                         raise_error_unexpected_syntax(TDO);
10740                 n1->nfor.body = list(0);
10741                 t = TDONE;
10742                 break;
10743         case TCASE:
10744                 n1 = stzalloc(sizeof(struct ncase));
10745                 n1->type = NCASE;
10746                 if (readtoken() != TWORD)
10747                         raise_error_unexpected_syntax(TWORD);
10748                 n1->ncase.expr = n2 = stzalloc(sizeof(struct narg));
10749                 n2->type = NARG;
10750                 /*n2->narg.next = NULL; - stzalloc did it */
10751                 n2->narg.text = wordtext;
10752                 n2->narg.backquote = backquotelist;
10753                 do {
10754                         checkkwd = CHKKWD | CHKALIAS;
10755                 } while (readtoken() == TNL);
10756                 if (lasttoken != TIN)
10757                         raise_error_unexpected_syntax(TIN);
10758                 cpp = &n1->ncase.cases;
10759  next_case:
10760                 checkkwd = CHKNL | CHKKWD;
10761                 t = readtoken();
10762                 while (t != TESAC) {
10763                         if (lasttoken == TLP)
10764                                 readtoken();
10765                         *cpp = cp = stzalloc(sizeof(struct nclist));
10766                         cp->type = NCLIST;
10767                         app = &cp->nclist.pattern;
10768                         for (;;) {
10769                                 *app = ap = stzalloc(sizeof(struct narg));
10770                                 ap->type = NARG;
10771                                 /*ap->narg.next = NULL; - stzalloc did it */
10772                                 ap->narg.text = wordtext;
10773                                 ap->narg.backquote = backquotelist;
10774                                 if (readtoken() != TPIPE)
10775                                         break;
10776                                 app = &ap->narg.next;
10777                                 readtoken();
10778                         }
10779                         //ap->narg.next = NULL;
10780                         if (lasttoken != TRP)
10781                                 raise_error_unexpected_syntax(TRP);
10782                         cp->nclist.body = list(2);
10783
10784                         cpp = &cp->nclist.next;
10785
10786                         checkkwd = CHKNL | CHKKWD;
10787                         t = readtoken();
10788                         if (t != TESAC) {
10789                                 if (t != TENDCASE)
10790                                         raise_error_unexpected_syntax(TENDCASE);
10791                                 goto next_case;
10792                         }
10793                 }
10794                 *cpp = NULL;
10795                 goto redir;
10796         case TLP:
10797                 n1 = stzalloc(sizeof(struct nredir));
10798                 n1->type = NSUBSHELL;
10799                 n1->nredir.n = list(0);
10800                 /*n1->nredir.redirect = NULL; - stzalloc did it */
10801                 t = TRP;
10802                 break;
10803         case TBEGIN:
10804                 n1 = list(0);
10805                 t = TEND;
10806                 break;
10807         case TWORD:
10808         case TREDIR:
10809                 tokpushback = 1;
10810                 return simplecmd();
10811         }
10812
10813         if (readtoken() != t)
10814                 raise_error_unexpected_syntax(t);
10815
10816  redir:
10817         /* Now check for redirection which may follow command */
10818         checkkwd = CHKKWD | CHKALIAS;
10819         rpp = rpp2;
10820         while (readtoken() == TREDIR) {
10821                 *rpp = n2 = redirnode;
10822                 rpp = &n2->nfile.next;
10823                 parsefname();
10824         }
10825         tokpushback = 1;
10826         *rpp = NULL;
10827         if (redir) {
10828                 if (n1->type != NSUBSHELL) {
10829                         n2 = stzalloc(sizeof(struct nredir));
10830                         n2->type = NREDIR;
10831                         n2->nredir.n = n1;
10832                         n1 = n2;
10833                 }
10834                 n1->nredir.redirect = redir;
10835         }
10836         return n1;
10837 }
10838
10839 #if ENABLE_ASH_BASH_COMPAT
10840 static int decode_dollar_squote(void)
10841 {
10842         static const char C_escapes[] ALIGN1 = "nrbtfav""x\\01234567";
10843         int c, cnt;
10844         char *p;
10845         char buf[4];
10846
10847         c = pgetc();
10848         p = strchr(C_escapes, c);
10849         if (p) {
10850                 buf[0] = c;
10851                 p = buf;
10852                 cnt = 3;
10853                 if ((unsigned char)(c - '0') <= 7) { /* \ooo */
10854                         do {
10855                                 c = pgetc();
10856                                 *++p = c;
10857                         } while ((unsigned char)(c - '0') <= 7 && --cnt);
10858                         pungetc();
10859                 } else if (c == 'x') { /* \xHH */
10860                         do {
10861                                 c = pgetc();
10862                                 *++p = c;
10863                         } while (isxdigit(c) && --cnt);
10864                         pungetc();
10865                         if (cnt == 3) { /* \x but next char is "bad" */
10866                                 c = 'x';
10867                                 goto unrecognized;
10868                         }
10869                 } else { /* simple seq like \\ or \t */
10870                         p++;
10871                 }
10872                 *p = '\0';
10873                 p = buf;
10874                 c = bb_process_escape_sequence((void*)&p);
10875         } else { /* unrecognized "\z": print both chars unless ' or " */
10876                 if (c != '\'' && c != '"') {
10877  unrecognized:
10878                         c |= 0x100; /* "please encode \, then me" */
10879                 }
10880         }
10881         return c;
10882 }
10883 #endif
10884
10885 /*
10886  * If eofmark is NULL, read a word or a redirection symbol.  If eofmark
10887  * is not NULL, read a here document.  In the latter case, eofmark is the
10888  * word which marks the end of the document and striptabs is true if
10889  * leading tabs should be stripped from the document.  The argument c
10890  * is the first character of the input token or document.
10891  *
10892  * Because C does not have internal subroutines, I have simulated them
10893  * using goto's to implement the subroutine linkage.  The following macros
10894  * will run code that appears at the end of readtoken1.
10895  */
10896 #define CHECKEND()      {goto checkend; checkend_return:;}
10897 #define PARSEREDIR()    {goto parseredir; parseredir_return:;}
10898 #define PARSESUB()      {goto parsesub; parsesub_return:;}
10899 #define PARSEBACKQOLD() {oldstyle = 1; goto parsebackq; parsebackq_oldreturn:;}
10900 #define PARSEBACKQNEW() {oldstyle = 0; goto parsebackq; parsebackq_newreturn:;}
10901 #define PARSEARITH()    {goto parsearith; parsearith_return:;}
10902 static int
10903 readtoken1(int c, int syntax, char *eofmark, int striptabs)
10904 {
10905         /* NB: syntax parameter fits into smallint */
10906         /* c parameter is an unsigned char or PEOF or PEOA */
10907         char *out;
10908         int len;
10909         char line[EOFMARKLEN + 1];
10910         struct nodelist *bqlist;
10911         smallint quotef;
10912         smallint dblquote;
10913         smallint oldstyle;
10914         smallint prevsyntax; /* syntax before arithmetic */
10915 #if ENABLE_ASH_EXPAND_PRMT
10916         smallint pssyntax;   /* we are expanding a prompt string */
10917 #endif
10918         int varnest;         /* levels of variables expansion */
10919         int arinest;         /* levels of arithmetic expansion */
10920         int parenlevel;      /* levels of parens in arithmetic */
10921         int dqvarnest;       /* levels of variables expansion within double quotes */
10922
10923         IF_ASH_BASH_COMPAT(smallint bash_dollar_squote = 0;)
10924
10925 #if __GNUC__
10926         /* Avoid longjmp clobbering */
10927         (void) &out;
10928         (void) &quotef;
10929         (void) &dblquote;
10930         (void) &varnest;
10931         (void) &arinest;
10932         (void) &parenlevel;
10933         (void) &dqvarnest;
10934         (void) &oldstyle;
10935         (void) &prevsyntax;
10936         (void) &syntax;
10937 #endif
10938         startlinno = g_parsefile->linno;
10939         bqlist = NULL;
10940         quotef = 0;
10941         oldstyle = 0;
10942         prevsyntax = 0;
10943 #if ENABLE_ASH_EXPAND_PRMT
10944         pssyntax = (syntax == PSSYNTAX);
10945         if (pssyntax)
10946                 syntax = DQSYNTAX;
10947 #endif
10948         dblquote = (syntax == DQSYNTAX);
10949         varnest = 0;
10950         arinest = 0;
10951         parenlevel = 0;
10952         dqvarnest = 0;
10953
10954         STARTSTACKSTR(out);
10955  loop:
10956         /* For each line, until end of word */
10957         {
10958                 CHECKEND();     /* set c to PEOF if at end of here document */
10959                 for (;;) {      /* until end of line or end of word */
10960                         CHECKSTRSPACE(4, out);  /* permit 4 calls to USTPUTC */
10961                         switch (SIT(c, syntax)) {
10962                         case CNL:       /* '\n' */
10963                                 if (syntax == BASESYNTAX)
10964                                         goto endword;   /* exit outer loop */
10965                                 USTPUTC(c, out);
10966                                 g_parsefile->linno++;
10967                                 if (doprompt)
10968                                         setprompt(2);
10969                                 c = pgetc();
10970                                 goto loop;              /* continue outer loop */
10971                         case CWORD:
10972                                 USTPUTC(c, out);
10973                                 break;
10974                         case CCTL:
10975                                 if (eofmark == NULL || dblquote)
10976                                         USTPUTC(CTLESC, out);
10977 #if ENABLE_ASH_BASH_COMPAT
10978                                 if (c == '\\' && bash_dollar_squote) {
10979                                         c = decode_dollar_squote();
10980                                         if (c & 0x100) {
10981                                                 USTPUTC('\\', out);
10982                                                 c = (unsigned char)c;
10983                                         }
10984                                 }
10985 #endif
10986                                 USTPUTC(c, out);
10987                                 break;
10988                         case CBACK:     /* backslash */
10989                                 c = pgetc_without_PEOA();
10990                                 if (c == PEOF) {
10991                                         USTPUTC(CTLESC, out);
10992                                         USTPUTC('\\', out);
10993                                         pungetc();
10994                                 } else if (c == '\n') {
10995                                         if (doprompt)
10996                                                 setprompt(2);
10997                                 } else {
10998 #if ENABLE_ASH_EXPAND_PRMT
10999                                         if (c == '$' && pssyntax) {
11000                                                 USTPUTC(CTLESC, out);
11001                                                 USTPUTC('\\', out);
11002                                         }
11003 #endif
11004                                         if (dblquote && c != '\\'
11005                                          && c != '`' && c != '$'
11006                                          && (c != '"' || eofmark != NULL)
11007                                         ) {
11008                                                 USTPUTC(CTLESC, out);
11009                                                 USTPUTC('\\', out);
11010                                         }
11011                                         if (SIT(c, SQSYNTAX) == CCTL)
11012                                                 USTPUTC(CTLESC, out);
11013                                         USTPUTC(c, out);
11014                                         quotef = 1;
11015                                 }
11016                                 break;
11017                         case CSQUOTE:
11018                                 syntax = SQSYNTAX;
11019  quotemark:
11020                                 if (eofmark == NULL) {
11021                                         USTPUTC(CTLQUOTEMARK, out);
11022                                 }
11023                                 break;
11024                         case CDQUOTE:
11025                                 syntax = DQSYNTAX;
11026                                 dblquote = 1;
11027                                 goto quotemark;
11028                         case CENDQUOTE:
11029                                 IF_ASH_BASH_COMPAT(bash_dollar_squote = 0;)
11030                                 if (eofmark != NULL && arinest == 0
11031                                  && varnest == 0
11032                                 ) {
11033                                         USTPUTC(c, out);
11034                                 } else {
11035                                         if (dqvarnest == 0) {
11036                                                 syntax = BASESYNTAX;
11037                                                 dblquote = 0;
11038                                         }
11039                                         quotef = 1;
11040                                         goto quotemark;
11041                                 }
11042                                 break;
11043                         case CVAR:      /* '$' */
11044                                 PARSESUB();             /* parse substitution */
11045                                 break;
11046                         case CENDVAR:   /* '}' */
11047                                 if (varnest > 0) {
11048                                         varnest--;
11049                                         if (dqvarnest > 0) {
11050                                                 dqvarnest--;
11051                                         }
11052                                         USTPUTC(CTLENDVAR, out);
11053                                 } else {
11054                                         USTPUTC(c, out);
11055                                 }
11056                                 break;
11057 #if ENABLE_SH_MATH_SUPPORT
11058                         case CLP:       /* '(' in arithmetic */
11059                                 parenlevel++;
11060                                 USTPUTC(c, out);
11061                                 break;
11062                         case CRP:       /* ')' in arithmetic */
11063                                 if (parenlevel > 0) {
11064                                         USTPUTC(c, out);
11065                                         --parenlevel;
11066                                 } else {
11067                                         if (pgetc() == ')') {
11068                                                 if (--arinest == 0) {
11069                                                         USTPUTC(CTLENDARI, out);
11070                                                         syntax = prevsyntax;
11071                                                         dblquote = (syntax == DQSYNTAX);
11072                                                 } else
11073                                                         USTPUTC(')', out);
11074                                         } else {
11075                                                 /*
11076                                                  * unbalanced parens
11077                                                  *  (don't 2nd guess - no error)
11078                                                  */
11079                                                 pungetc();
11080                                                 USTPUTC(')', out);
11081                                         }
11082                                 }
11083                                 break;
11084 #endif
11085                         case CBQUOTE:   /* '`' */
11086                                 PARSEBACKQOLD();
11087                                 break;
11088                         case CENDFILE:
11089                                 goto endword;           /* exit outer loop */
11090                         case CIGN:
11091                                 break;
11092                         default:
11093                                 if (varnest == 0) {
11094 #if ENABLE_ASH_BASH_COMPAT
11095                                         if (c == '&') {
11096                                                 if (pgetc() == '>')
11097                                                         c = 0x100 + '>'; /* flag &> */
11098                                                 pungetc();
11099                                         }
11100 #endif
11101                                         goto endword;   /* exit outer loop */
11102                                 }
11103                                 IF_ASH_ALIAS(if (c != PEOA))
11104                                         USTPUTC(c, out);
11105
11106                         }
11107                         c = pgetc_fast();
11108                 } /* for (;;) */
11109         }
11110  endword:
11111 #if ENABLE_SH_MATH_SUPPORT
11112         if (syntax == ARISYNTAX)
11113                 raise_error_syntax("missing '))'");
11114 #endif
11115         if (syntax != BASESYNTAX && !parsebackquote && eofmark == NULL)
11116                 raise_error_syntax("unterminated quoted string");
11117         if (varnest != 0) {
11118                 startlinno = g_parsefile->linno;
11119                 /* { */
11120                 raise_error_syntax("missing '}'");
11121         }
11122         USTPUTC('\0', out);
11123         len = out - (char *)stackblock();
11124         out = stackblock();
11125         if (eofmark == NULL) {
11126                 if ((c == '>' || c == '<' IF_ASH_BASH_COMPAT( || c == 0x100 + '>'))
11127                  && quotef == 0
11128                 ) {
11129                         if (isdigit_str9(out)) {
11130                                 PARSEREDIR(); /* passed as params: out, c */
11131                                 lasttoken = TREDIR;
11132                                 return lasttoken;
11133                         }
11134                         /* else: non-number X seen, interpret it
11135                          * as "NNNX>file" = "NNNX >file" */
11136                 }
11137                 pungetc();
11138         }
11139         quoteflag = quotef;
11140         backquotelist = bqlist;
11141         grabstackblock(len);
11142         wordtext = out;
11143         lasttoken = TWORD;
11144         return lasttoken;
11145 /* end of readtoken routine */
11146
11147 /*
11148  * Check to see whether we are at the end of the here document.  When this
11149  * is called, c is set to the first character of the next input line.  If
11150  * we are at the end of the here document, this routine sets the c to PEOF.
11151  */
11152 checkend: {
11153         if (eofmark) {
11154 #if ENABLE_ASH_ALIAS
11155                 if (c == PEOA)
11156                         c = pgetc_without_PEOA();
11157 #endif
11158                 if (striptabs) {
11159                         while (c == '\t') {
11160                                 c = pgetc_without_PEOA();
11161                         }
11162                 }
11163                 if (c == *eofmark) {
11164                         if (pfgets(line, sizeof(line)) != NULL) {
11165                                 char *p, *q;
11166
11167                                 p = line;
11168                                 for (q = eofmark + 1; *q && *p == *q; p++, q++)
11169                                         continue;
11170                                 if (*p == '\n' && *q == '\0') {
11171                                         c = PEOF;
11172                                         g_parsefile->linno++;
11173                                         needprompt = doprompt;
11174                                 } else {
11175                                         pushstring(line, NULL);
11176                                 }
11177                         }
11178                 }
11179         }
11180         goto checkend_return;
11181 }
11182
11183 /*
11184  * Parse a redirection operator.  The variable "out" points to a string
11185  * specifying the fd to be redirected.  The variable "c" contains the
11186  * first character of the redirection operator.
11187  */
11188 parseredir: {
11189         /* out is already checked to be a valid number or "" */
11190         int fd = (*out == '\0' ? -1 : atoi(out));
11191         union node *np;
11192
11193         np = stzalloc(sizeof(struct nfile));
11194         if (c == '>') {
11195                 np->nfile.fd = 1;
11196                 c = pgetc();
11197                 if (c == '>')
11198                         np->type = NAPPEND;
11199                 else if (c == '|')
11200                         np->type = NCLOBBER;
11201                 else if (c == '&')
11202                         np->type = NTOFD;
11203                         /* it also can be NTO2 (>&file), but we can't figure it out yet */
11204                 else {
11205                         np->type = NTO;
11206                         pungetc();
11207                 }
11208         }
11209 #if ENABLE_ASH_BASH_COMPAT
11210         else if (c == 0x100 + '>') { /* this flags &> redirection */
11211                 np->nfile.fd = 1;
11212                 pgetc(); /* this is '>', no need to check */
11213                 np->type = NTO2;
11214         }
11215 #endif
11216         else { /* c == '<' */
11217                 /*np->nfile.fd = 0; - stzalloc did it */
11218                 c = pgetc();
11219                 switch (c) {
11220                 case '<':
11221                         if (sizeof(struct nfile) != sizeof(struct nhere)) {
11222                                 np = stzalloc(sizeof(struct nhere));
11223                                 /*np->nfile.fd = 0; - stzalloc did it */
11224                         }
11225                         np->type = NHERE;
11226                         heredoc = stzalloc(sizeof(struct heredoc));
11227                         heredoc->here = np;
11228                         c = pgetc();
11229                         if (c == '-') {
11230                                 heredoc->striptabs = 1;
11231                         } else {
11232                                 /*heredoc->striptabs = 0; - stzalloc did it */
11233                                 pungetc();
11234                         }
11235                         break;
11236
11237                 case '&':
11238                         np->type = NFROMFD;
11239                         break;
11240
11241                 case '>':
11242                         np->type = NFROMTO;
11243                         break;
11244
11245                 default:
11246                         np->type = NFROM;
11247                         pungetc();
11248                         break;
11249                 }
11250         }
11251         if (fd >= 0)
11252                 np->nfile.fd = fd;
11253         redirnode = np;
11254         goto parseredir_return;
11255 }
11256
11257 /*
11258  * Parse a substitution.  At this point, we have read the dollar sign
11259  * and nothing else.
11260  */
11261
11262 /* is_special(c) evaluates to 1 for c in "!#$*-0123456789?@"; 0 otherwise
11263  * (assuming ascii char codes, as the original implementation did) */
11264 #define is_special(c) \
11265         (((unsigned)(c) - 33 < 32) \
11266                         && ((0xc1ff920dU >> ((unsigned)(c) - 33)) & 1))
11267 parsesub: {
11268         unsigned char subtype;
11269         int typeloc;
11270         int flags;
11271         char *p;
11272         static const char types[] ALIGN1 = "}-+?=";
11273
11274         c = pgetc();
11275         if (c > 255 /* PEOA or PEOF */
11276          || (c != '(' && c != '{' && !is_name(c) && !is_special(c))
11277         ) {
11278 #if ENABLE_ASH_BASH_COMPAT
11279                 if (c == '\'')
11280                         bash_dollar_squote = 1;
11281                 else
11282 #endif
11283                         USTPUTC('$', out);
11284                 pungetc();
11285         } else if (c == '(') {  /* $(command) or $((arith)) */
11286                 if (pgetc() == '(') {
11287 #if ENABLE_SH_MATH_SUPPORT
11288                         PARSEARITH();
11289 #else
11290                         raise_error_syntax("you disabled math support for $((arith)) syntax");
11291 #endif
11292                 } else {
11293                         pungetc();
11294                         PARSEBACKQNEW();
11295                 }
11296         } else {
11297                 USTPUTC(CTLVAR, out);
11298                 typeloc = out - (char *)stackblock();
11299                 USTPUTC(VSNORMAL, out);
11300                 subtype = VSNORMAL;
11301                 if (c == '{') {
11302                         c = pgetc();
11303                         if (c == '#') {
11304                                 c = pgetc();
11305                                 if (c == '}')
11306                                         c = '#';
11307                                 else
11308                                         subtype = VSLENGTH;
11309                         } else
11310                                 subtype = 0;
11311                 }
11312                 if (c <= 255 /* not PEOA or PEOF */ && is_name(c)) {
11313                         do {
11314                                 STPUTC(c, out);
11315                                 c = pgetc();
11316                         } while (c <= 255 /* not PEOA or PEOF */ && is_in_name(c));
11317                 } else if (isdigit(c)) {
11318                         do {
11319                                 STPUTC(c, out);
11320                                 c = pgetc();
11321                         } while (isdigit(c));
11322                 } else if (is_special(c)) {
11323                         USTPUTC(c, out);
11324                         c = pgetc();
11325                 } else {
11326  badsub:
11327                         raise_error_syntax("bad substitution");
11328                 }
11329                 if (c != '}' && subtype == VSLENGTH)
11330                         goto badsub;
11331
11332                 STPUTC('=', out);
11333                 flags = 0;
11334                 if (subtype == 0) {
11335                         switch (c) {
11336                         case ':':
11337                                 c = pgetc();
11338 #if ENABLE_ASH_BASH_COMPAT
11339                                 if (c == ':' || c == '$' || isdigit(c)) {
11340                                         pungetc();
11341                                         subtype = VSSUBSTR;
11342                                         break;
11343                                 }
11344 #endif
11345                                 flags = VSNUL;
11346                                 /*FALLTHROUGH*/
11347                         default:
11348                                 p = strchr(types, c);
11349                                 if (p == NULL)
11350                                         goto badsub;
11351                                 subtype = p - types + VSNORMAL;
11352                                 break;
11353                         case '%':
11354                         case '#': {
11355                                 int cc = c;
11356                                 subtype = c == '#' ? VSTRIMLEFT : VSTRIMRIGHT;
11357                                 c = pgetc();
11358                                 if (c == cc)
11359                                         subtype++;
11360                                 else
11361                                         pungetc();
11362                                 break;
11363                         }
11364 #if ENABLE_ASH_BASH_COMPAT
11365                         case '/':
11366                                 subtype = VSREPLACE;
11367                                 c = pgetc();
11368                                 if (c == '/')
11369                                         subtype++; /* VSREPLACEALL */
11370                                 else
11371                                         pungetc();
11372                                 break;
11373 #endif
11374                         }
11375                 } else {
11376                         pungetc();
11377                 }
11378                 if (dblquote || arinest)
11379                         flags |= VSQUOTE;
11380                 ((unsigned char *)stackblock())[typeloc] = subtype | flags;
11381                 if (subtype != VSNORMAL) {
11382                         varnest++;
11383                         if (dblquote || arinest) {
11384                                 dqvarnest++;
11385                         }
11386                 }
11387         }
11388         goto parsesub_return;
11389 }
11390
11391 /*
11392  * Called to parse command substitutions.  Newstyle is set if the command
11393  * is enclosed inside $(...); nlpp is a pointer to the head of the linked
11394  * list of commands (passed by reference), and savelen is the number of
11395  * characters on the top of the stack which must be preserved.
11396  */
11397 parsebackq: {
11398         struct nodelist **nlpp;
11399         smallint savepbq;
11400         union node *n;
11401         char *volatile str;
11402         struct jmploc jmploc;
11403         struct jmploc *volatile savehandler;
11404         size_t savelen;
11405         smallint saveprompt = 0;
11406
11407 #ifdef __GNUC__
11408         (void) &saveprompt;
11409 #endif
11410         savepbq = parsebackquote;
11411         if (setjmp(jmploc.loc)) {
11412                 free(str);
11413                 parsebackquote = 0;
11414                 exception_handler = savehandler;
11415                 longjmp(exception_handler->loc, 1);
11416         }
11417         INT_OFF;
11418         str = NULL;
11419         savelen = out - (char *)stackblock();
11420         if (savelen > 0) {
11421                 str = ckmalloc(savelen);
11422                 memcpy(str, stackblock(), savelen);
11423         }
11424         savehandler = exception_handler;
11425         exception_handler = &jmploc;
11426         INT_ON;
11427         if (oldstyle) {
11428                 /* We must read until the closing backquote, giving special
11429                    treatment to some slashes, and then push the string and
11430                    reread it as input, interpreting it normally.  */
11431                 char *pout;
11432                 int pc;
11433                 size_t psavelen;
11434                 char *pstr;
11435
11436
11437                 STARTSTACKSTR(pout);
11438                 for (;;) {
11439                         if (needprompt) {
11440                                 setprompt(2);
11441                         }
11442                         pc = pgetc();
11443                         switch (pc) {
11444                         case '`':
11445                                 goto done;
11446
11447                         case '\\':
11448                                 pc = pgetc();
11449                                 if (pc == '\n') {
11450                                         g_parsefile->linno++;
11451                                         if (doprompt)
11452                                                 setprompt(2);
11453                                         /*
11454                                          * If eating a newline, avoid putting
11455                                          * the newline into the new character
11456                                          * stream (via the STPUTC after the
11457                                          * switch).
11458                                          */
11459                                         continue;
11460                                 }
11461                                 if (pc != '\\' && pc != '`' && pc != '$'
11462                                  && (!dblquote || pc != '"')
11463                                 ) {
11464                                         STPUTC('\\', pout);
11465                                 }
11466                                 if (pc <= 255 /* not PEOA or PEOF */) {
11467                                         break;
11468                                 }
11469                                 /* fall through */
11470
11471                         case PEOF:
11472                         IF_ASH_ALIAS(case PEOA:)
11473                                 startlinno = g_parsefile->linno;
11474                                 raise_error_syntax("EOF in backquote substitution");
11475
11476                         case '\n':
11477                                 g_parsefile->linno++;
11478                                 needprompt = doprompt;
11479                                 break;
11480
11481                         default:
11482                                 break;
11483                         }
11484                         STPUTC(pc, pout);
11485                 }
11486  done:
11487                 STPUTC('\0', pout);
11488                 psavelen = pout - (char *)stackblock();
11489                 if (psavelen > 0) {
11490                         pstr = grabstackstr(pout);
11491                         setinputstring(pstr);
11492                 }
11493         }
11494         nlpp = &bqlist;
11495         while (*nlpp)
11496                 nlpp = &(*nlpp)->next;
11497         *nlpp = stzalloc(sizeof(**nlpp));
11498         /* (*nlpp)->next = NULL; - stzalloc did it */
11499         parsebackquote = oldstyle;
11500
11501         if (oldstyle) {
11502                 saveprompt = doprompt;
11503                 doprompt = 0;
11504         }
11505
11506         n = list(2);
11507
11508         if (oldstyle)
11509                 doprompt = saveprompt;
11510         else if (readtoken() != TRP)
11511                 raise_error_unexpected_syntax(TRP);
11512
11513         (*nlpp)->n = n;
11514         if (oldstyle) {
11515                 /*
11516                  * Start reading from old file again, ignoring any pushed back
11517                  * tokens left from the backquote parsing
11518                  */
11519                 popfile();
11520                 tokpushback = 0;
11521         }
11522         while (stackblocksize() <= savelen)
11523                 growstackblock();
11524         STARTSTACKSTR(out);
11525         if (str) {
11526                 memcpy(out, str, savelen);
11527                 STADJUST(savelen, out);
11528                 INT_OFF;
11529                 free(str);
11530                 str = NULL;
11531                 INT_ON;
11532         }
11533         parsebackquote = savepbq;
11534         exception_handler = savehandler;
11535         if (arinest || dblquote)
11536                 USTPUTC(CTLBACKQ | CTLQUOTE, out);
11537         else
11538                 USTPUTC(CTLBACKQ, out);
11539         if (oldstyle)
11540                 goto parsebackq_oldreturn;
11541         goto parsebackq_newreturn;
11542 }
11543
11544 #if ENABLE_SH_MATH_SUPPORT
11545 /*
11546  * Parse an arithmetic expansion (indicate start of one and set state)
11547  */
11548 parsearith: {
11549         if (++arinest == 1) {
11550                 prevsyntax = syntax;
11551                 syntax = ARISYNTAX;
11552                 USTPUTC(CTLARI, out);
11553                 if (dblquote)
11554                         USTPUTC('"', out);
11555                 else
11556                         USTPUTC(' ', out);
11557         } else {
11558                 /*
11559                  * we collapse embedded arithmetic expansion to
11560                  * parenthesis, which should be equivalent
11561                  */
11562                 USTPUTC('(', out);
11563         }
11564         goto parsearith_return;
11565 }
11566 #endif
11567
11568 } /* end of readtoken */
11569
11570 /*
11571  * Read the next input token.
11572  * If the token is a word, we set backquotelist to the list of cmds in
11573  *      backquotes.  We set quoteflag to true if any part of the word was
11574  *      quoted.
11575  * If the token is TREDIR, then we set redirnode to a structure containing
11576  *      the redirection.
11577  * In all cases, the variable startlinno is set to the number of the line
11578  *      on which the token starts.
11579  *
11580  * [Change comment:  here documents and internal procedures]
11581  * [Readtoken shouldn't have any arguments.  Perhaps we should make the
11582  *  word parsing code into a separate routine.  In this case, readtoken
11583  *  doesn't need to have any internal procedures, but parseword does.
11584  *  We could also make parseoperator in essence the main routine, and
11585  *  have parseword (readtoken1?) handle both words and redirection.]
11586  */
11587 #define NEW_xxreadtoken
11588 #ifdef NEW_xxreadtoken
11589 /* singles must be first! */
11590 static const char xxreadtoken_chars[7] ALIGN1 = {
11591         '\n', '(', ')', /* singles */
11592         '&', '|', ';',  /* doubles */
11593         0
11594 };
11595
11596 #define xxreadtoken_singles 3
11597 #define xxreadtoken_doubles 3
11598
11599 static const char xxreadtoken_tokens[] ALIGN1 = {
11600         TNL, TLP, TRP,          /* only single occurrence allowed */
11601         TBACKGND, TPIPE, TSEMI, /* if single occurrence */
11602         TEOF,                   /* corresponds to trailing nul */
11603         TAND, TOR, TENDCASE     /* if double occurrence */
11604 };
11605
11606 static int
11607 xxreadtoken(void)
11608 {
11609         int c;
11610
11611         if (tokpushback) {
11612                 tokpushback = 0;
11613                 return lasttoken;
11614         }
11615         if (needprompt) {
11616                 setprompt(2);
11617         }
11618         startlinno = g_parsefile->linno;
11619         for (;;) {                      /* until token or start of word found */
11620                 c = pgetc_fast();
11621                 if (c == ' ' || c == '\t' IF_ASH_ALIAS( || c == PEOA))
11622                         continue;
11623
11624                 if (c == '#') {
11625                         while ((c = pgetc()) != '\n' && c != PEOF)
11626                                 continue;
11627                         pungetc();
11628                 } else if (c == '\\') {
11629                         if (pgetc() != '\n') {
11630                                 pungetc();
11631                                 break; /* return readtoken1(...) */
11632                         }
11633                         startlinno = ++g_parsefile->linno;
11634                         if (doprompt)
11635                                 setprompt(2);
11636                 } else {
11637                         const char *p;
11638
11639                         p = xxreadtoken_chars + sizeof(xxreadtoken_chars) - 1;
11640                         if (c != PEOF) {
11641                                 if (c == '\n') {
11642                                         g_parsefile->linno++;
11643                                         needprompt = doprompt;
11644                                 }
11645
11646                                 p = strchr(xxreadtoken_chars, c);
11647                                 if (p == NULL)
11648                                         break; /* return readtoken1(...) */
11649
11650                                 if ((int)(p - xxreadtoken_chars) >= xxreadtoken_singles) {
11651                                         int cc = pgetc();
11652                                         if (cc == c) {    /* double occurrence? */
11653                                                 p += xxreadtoken_doubles + 1;
11654                                         } else {
11655                                                 pungetc();
11656 #if ENABLE_ASH_BASH_COMPAT
11657                                                 if (c == '&' && cc == '>') /* &> */
11658                                                         break; /* return readtoken1(...) */
11659 #endif
11660                                         }
11661                                 }
11662                         }
11663                         lasttoken = xxreadtoken_tokens[p - xxreadtoken_chars];
11664                         return lasttoken;
11665                 }
11666         } /* for (;;) */
11667
11668         return readtoken1(c, BASESYNTAX, (char *) NULL, 0);
11669 }
11670 #else /* old xxreadtoken */
11671 #define RETURN(token)   return lasttoken = token
11672 static int
11673 xxreadtoken(void)
11674 {
11675         int c;
11676
11677         if (tokpushback) {
11678                 tokpushback = 0;
11679                 return lasttoken;
11680         }
11681         if (needprompt) {
11682                 setprompt(2);
11683         }
11684         startlinno = g_parsefile->linno;
11685         for (;;) {      /* until token or start of word found */
11686                 c = pgetc_fast();
11687                 switch (c) {
11688                 case ' ': case '\t':
11689                 IF_ASH_ALIAS(case PEOA:)
11690                         continue;
11691                 case '#':
11692                         while ((c = pgetc()) != '\n' && c != PEOF)
11693                                 continue;
11694                         pungetc();
11695                         continue;
11696                 case '\\':
11697                         if (pgetc() == '\n') {
11698                                 startlinno = ++g_parsefile->linno;
11699                                 if (doprompt)
11700                                         setprompt(2);
11701                                 continue;
11702                         }
11703                         pungetc();
11704                         goto breakloop;
11705                 case '\n':
11706                         g_parsefile->linno++;
11707                         needprompt = doprompt;
11708                         RETURN(TNL);
11709                 case PEOF:
11710                         RETURN(TEOF);
11711                 case '&':
11712                         if (pgetc() == '&')
11713                                 RETURN(TAND);
11714                         pungetc();
11715                         RETURN(TBACKGND);
11716                 case '|':
11717                         if (pgetc() == '|')
11718                                 RETURN(TOR);
11719                         pungetc();
11720                         RETURN(TPIPE);
11721                 case ';':
11722                         if (pgetc() == ';')
11723                                 RETURN(TENDCASE);
11724                         pungetc();
11725                         RETURN(TSEMI);
11726                 case '(':
11727                         RETURN(TLP);
11728                 case ')':
11729                         RETURN(TRP);
11730                 default:
11731                         goto breakloop;
11732                 }
11733         }
11734  breakloop:
11735         return readtoken1(c, BASESYNTAX, (char *)NULL, 0);
11736 #undef RETURN
11737 }
11738 #endif /* old xxreadtoken */
11739
11740 static int
11741 readtoken(void)
11742 {
11743         int t;
11744 #if DEBUG
11745         smallint alreadyseen = tokpushback;
11746 #endif
11747
11748 #if ENABLE_ASH_ALIAS
11749  top:
11750 #endif
11751
11752         t = xxreadtoken();
11753
11754         /*
11755          * eat newlines
11756          */
11757         if (checkkwd & CHKNL) {
11758                 while (t == TNL) {
11759                         parseheredoc();
11760                         t = xxreadtoken();
11761                 }
11762         }
11763
11764         if (t != TWORD || quoteflag) {
11765                 goto out;
11766         }
11767
11768         /*
11769          * check for keywords
11770          */
11771         if (checkkwd & CHKKWD) {
11772                 const char *const *pp;
11773
11774                 pp = findkwd(wordtext);
11775                 if (pp) {
11776                         lasttoken = t = pp - tokname_array;
11777                         TRACE(("keyword '%s' recognized\n", tokname_array[t] + 1));
11778                         goto out;
11779                 }
11780         }
11781
11782         if (checkkwd & CHKALIAS) {
11783 #if ENABLE_ASH_ALIAS
11784                 struct alias *ap;
11785                 ap = lookupalias(wordtext, 1);
11786                 if (ap != NULL) {
11787                         if (*ap->val) {
11788                                 pushstring(ap->val, ap);
11789                         }
11790                         goto top;
11791                 }
11792 #endif
11793         }
11794  out:
11795         checkkwd = 0;
11796 #if DEBUG
11797         if (!alreadyseen)
11798                 TRACE(("token '%s' %s\n", tokname_array[t] + 1, t == TWORD ? wordtext : ""));
11799         else
11800                 TRACE(("reread token '%s' %s\n", tokname_array[t] + 1, t == TWORD ? wordtext : ""));
11801 #endif
11802         return t;
11803 }
11804
11805 static char
11806 peektoken(void)
11807 {
11808         int t;
11809
11810         t = readtoken();
11811         tokpushback = 1;
11812         return tokname_array[t][0];
11813 }
11814
11815 /*
11816  * Read and parse a command.  Returns NODE_EOF on end of file.
11817  * (NULL is a valid parse tree indicating a blank line.)
11818  */
11819 static union node *
11820 parsecmd(int interact)
11821 {
11822         int t;
11823
11824         tokpushback = 0;
11825         doprompt = interact;
11826         if (doprompt)
11827                 setprompt(doprompt);
11828         needprompt = 0;
11829         t = readtoken();
11830         if (t == TEOF)
11831                 return NODE_EOF;
11832         if (t == TNL)
11833                 return NULL;
11834         tokpushback = 1;
11835         return list(1);
11836 }
11837
11838 /*
11839  * Input any here documents.
11840  */
11841 static void
11842 parseheredoc(void)
11843 {
11844         struct heredoc *here;
11845         union node *n;
11846
11847         here = heredoclist;
11848         heredoclist = NULL;
11849
11850         while (here) {
11851                 if (needprompt) {
11852                         setprompt(2);
11853                 }
11854                 readtoken1(pgetc(), here->here->type == NHERE? SQSYNTAX : DQSYNTAX,
11855                                 here->eofmark, here->striptabs);
11856                 n = stzalloc(sizeof(struct narg));
11857                 n->narg.type = NARG;
11858                 /*n->narg.next = NULL; - stzalloc did it */
11859                 n->narg.text = wordtext;
11860                 n->narg.backquote = backquotelist;
11861                 here->here->nhere.doc = n;
11862                 here = here->next;
11863         }
11864 }
11865
11866
11867 /*
11868  * called by editline -- any expansions to the prompt should be added here.
11869  */
11870 #if ENABLE_ASH_EXPAND_PRMT
11871 static const char *
11872 expandstr(const char *ps)
11873 {
11874         union node n;
11875
11876         /* XXX Fix (char *) cast. It _is_ a bug. ps is variable's value,
11877          * and token processing _can_ alter it (delete NULs etc). */
11878         setinputstring((char *)ps);
11879         readtoken1(pgetc(), PSSYNTAX, nullstr, 0);
11880         popfile();
11881
11882         n.narg.type = NARG;
11883         n.narg.next = NULL;
11884         n.narg.text = wordtext;
11885         n.narg.backquote = backquotelist;
11886
11887         expandarg(&n, NULL, 0);
11888         return stackblock();
11889 }
11890 #endif
11891
11892 /*
11893  * Execute a command or commands contained in a string.
11894  */
11895 static int
11896 evalstring(char *s, int mask)
11897 {
11898         union node *n;
11899         struct stackmark smark;
11900         int skip;
11901
11902         setinputstring(s);
11903         setstackmark(&smark);
11904
11905         skip = 0;
11906         while ((n = parsecmd(0)) != NODE_EOF) {
11907                 evaltree(n, 0);
11908                 popstackmark(&smark);
11909                 skip = evalskip;
11910                 if (skip)
11911                         break;
11912         }
11913         popfile();
11914
11915         skip &= mask;
11916         evalskip = skip;
11917         return skip;
11918 }
11919
11920 /*
11921  * The eval command.
11922  */
11923 static int FAST_FUNC
11924 evalcmd(int argc UNUSED_PARAM, char **argv)
11925 {
11926         char *p;
11927         char *concat;
11928
11929         if (argv[1]) {
11930                 p = argv[1];
11931                 argv += 2;
11932                 if (argv[0]) {
11933                         STARTSTACKSTR(concat);
11934                         for (;;) {
11935                                 concat = stack_putstr(p, concat);
11936                                 p = *argv++;
11937                                 if (p == NULL)
11938                                         break;
11939                                 STPUTC(' ', concat);
11940                         }
11941                         STPUTC('\0', concat);
11942                         p = grabstackstr(concat);
11943                 }
11944                 evalstring(p, ~SKIPEVAL);
11945
11946         }
11947         return exitstatus;
11948 }
11949
11950 /*
11951  * Read and execute commands.
11952  * "Top" is nonzero for the top level command loop;
11953  * it turns on prompting if the shell is interactive.
11954  */
11955 static int
11956 cmdloop(int top)
11957 {
11958         union node *n;
11959         struct stackmark smark;
11960         int inter;
11961         int numeof = 0;
11962
11963         TRACE(("cmdloop(%d) called\n", top));
11964         for (;;) {
11965                 int skip;
11966
11967                 setstackmark(&smark);
11968 #if JOBS
11969                 if (doing_jobctl)
11970                         showjobs(stderr, SHOW_CHANGED);
11971 #endif
11972                 inter = 0;
11973                 if (iflag && top) {
11974                         inter++;
11975 #if ENABLE_ASH_MAIL
11976                         chkmail();
11977 #endif
11978                 }
11979                 n = parsecmd(inter);
11980 #if DEBUG
11981                 if (DEBUG > 2 && debug && (n != NODE_EOF))
11982                         showtree(n);
11983 #endif
11984                 if (n == NODE_EOF) {
11985                         if (!top || numeof >= 50)
11986                                 break;
11987                         if (!stoppedjobs()) {
11988                                 if (!Iflag)
11989                                         break;
11990                                 out2str("\nUse \"exit\" to leave shell.\n");
11991                         }
11992                         numeof++;
11993                 } else if (nflag == 0) {
11994                         /* job_warning can only be 2,1,0. Here 2->1, 1/0->0 */
11995                         job_warning >>= 1;
11996                         numeof = 0;
11997                         evaltree(n, 0);
11998                 }
11999                 popstackmark(&smark);
12000                 skip = evalskip;
12001
12002                 if (skip) {
12003                         evalskip = 0;
12004                         return skip & SKIPEVAL;
12005                 }
12006         }
12007         return 0;
12008 }
12009
12010 /*
12011  * Take commands from a file.  To be compatible we should do a path
12012  * search for the file, which is necessary to find sub-commands.
12013  */
12014 static char *
12015 find_dot_file(char *name)
12016 {
12017         char *fullname;
12018         const char *path = pathval();
12019         struct stat statb;
12020
12021         /* don't try this for absolute or relative paths */
12022         if (strchr(name, '/'))
12023                 return name;
12024
12025         /* IIRC standards do not say whether . is to be searched.
12026          * And it is even smaller this way, making it unconditional for now:
12027          */
12028         if (1) { /* ENABLE_ASH_BASH_COMPAT */
12029                 fullname = name;
12030                 goto try_cur_dir;
12031         }
12032
12033         while ((fullname = path_advance(&path, name)) != NULL) {
12034  try_cur_dir:
12035                 if ((stat(fullname, &statb) == 0) && S_ISREG(statb.st_mode)) {
12036                         /*
12037                          * Don't bother freeing here, since it will
12038                          * be freed by the caller.
12039                          */
12040                         return fullname;
12041                 }
12042                 if (fullname != name)
12043                         stunalloc(fullname);
12044         }
12045
12046         /* not found in the PATH */
12047         ash_msg_and_raise_error("%s: not found", name);
12048         /* NOTREACHED */
12049 }
12050
12051 static int FAST_FUNC
12052 dotcmd(int argc, char **argv)
12053 {
12054         char *fullname;
12055         struct strlist *sp;
12056         volatile struct shparam saveparam;
12057
12058         for (sp = cmdenviron; sp; sp = sp->next)
12059                 setvareq(ckstrdup(sp->text), VSTRFIXED | VTEXTFIXED);
12060
12061         if (!argv[1]) {
12062                 /* bash says: "bash: .: filename argument required" */
12063                 return 2; /* bash compat */
12064         }
12065
12066         /* "false; . empty_file; echo $?" should print 0, not 1: */
12067         exitstatus = 0;
12068
12069         fullname = find_dot_file(argv[1]);
12070
12071         argv += 2;
12072         argc -= 2;
12073         if (argc) { /* argc > 0, argv[0] != NULL */
12074                 saveparam = shellparam;
12075                 shellparam.malloced = 0;
12076                 shellparam.nparam = argc;
12077                 shellparam.p = argv;
12078         };
12079
12080         setinputfile(fullname, INPUT_PUSH_FILE);
12081         commandname = fullname;
12082         cmdloop(0);
12083         popfile();
12084
12085         if (argc) {
12086                 freeparam(&shellparam);
12087                 shellparam = saveparam;
12088         };
12089
12090         return exitstatus;
12091 }
12092
12093 static int FAST_FUNC
12094 exitcmd(int argc UNUSED_PARAM, char **argv)
12095 {
12096         if (stoppedjobs())
12097                 return 0;
12098         if (argv[1])
12099                 exitstatus = number(argv[1]);
12100         raise_exception(EXEXIT);
12101         /* NOTREACHED */
12102 }
12103
12104 /*
12105  * Read a file containing shell functions.
12106  */
12107 static void
12108 readcmdfile(char *name)
12109 {
12110         setinputfile(name, INPUT_PUSH_FILE);
12111         cmdloop(0);
12112         popfile();
12113 }
12114
12115
12116 /* ============ find_command inplementation */
12117
12118 /*
12119  * Resolve a command name.  If you change this routine, you may have to
12120  * change the shellexec routine as well.
12121  */
12122 static void
12123 find_command(char *name, struct cmdentry *entry, int act, const char *path)
12124 {
12125         struct tblentry *cmdp;
12126         int idx;
12127         int prev;
12128         char *fullname;
12129         struct stat statb;
12130         int e;
12131         int updatetbl;
12132         struct builtincmd *bcmd;
12133
12134         /* If name contains a slash, don't use PATH or hash table */
12135         if (strchr(name, '/') != NULL) {
12136                 entry->u.index = -1;
12137                 if (act & DO_ABS) {
12138                         while (stat(name, &statb) < 0) {
12139 #ifdef SYSV
12140                                 if (errno == EINTR)
12141                                         continue;
12142 #endif
12143                                 entry->cmdtype = CMDUNKNOWN;
12144                                 return;
12145                         }
12146                 }
12147                 entry->cmdtype = CMDNORMAL;
12148                 return;
12149         }
12150
12151 /* #if ENABLE_FEATURE_SH_STANDALONE... moved after builtin check */
12152
12153         updatetbl = (path == pathval());
12154         if (!updatetbl) {
12155                 act |= DO_ALTPATH;
12156                 if (strstr(path, "%builtin") != NULL)
12157                         act |= DO_ALTBLTIN;
12158         }
12159
12160         /* If name is in the table, check answer will be ok */
12161         cmdp = cmdlookup(name, 0);
12162         if (cmdp != NULL) {
12163                 int bit;
12164
12165                 switch (cmdp->cmdtype) {
12166                 default:
12167 #if DEBUG
12168                         abort();
12169 #endif
12170                 case CMDNORMAL:
12171                         bit = DO_ALTPATH;
12172                         break;
12173                 case CMDFUNCTION:
12174                         bit = DO_NOFUNC;
12175                         break;
12176                 case CMDBUILTIN:
12177                         bit = DO_ALTBLTIN;
12178                         break;
12179                 }
12180                 if (act & bit) {
12181                         updatetbl = 0;
12182                         cmdp = NULL;
12183                 } else if (cmdp->rehash == 0)
12184                         /* if not invalidated by cd, we're done */
12185                         goto success;
12186         }
12187
12188         /* If %builtin not in path, check for builtin next */
12189         bcmd = find_builtin(name);
12190         if (bcmd) {
12191                 if (IS_BUILTIN_REGULAR(bcmd))
12192                         goto builtin_success;
12193                 if (act & DO_ALTPATH) {
12194                         if (!(act & DO_ALTBLTIN))
12195                                 goto builtin_success;
12196                 } else if (builtinloc <= 0) {
12197                         goto builtin_success;
12198                 }
12199         }
12200
12201 #if ENABLE_FEATURE_SH_STANDALONE
12202         {
12203                 int applet_no = find_applet_by_name(name);
12204                 if (applet_no >= 0) {
12205                         entry->cmdtype = CMDNORMAL;
12206                         entry->u.index = -2 - applet_no;
12207                         return;
12208                 }
12209         }
12210 #endif
12211
12212         /* We have to search path. */
12213         prev = -1;              /* where to start */
12214         if (cmdp && cmdp->rehash) {     /* doing a rehash */
12215                 if (cmdp->cmdtype == CMDBUILTIN)
12216                         prev = builtinloc;
12217                 else
12218                         prev = cmdp->param.index;
12219         }
12220
12221         e = ENOENT;
12222         idx = -1;
12223  loop:
12224         while ((fullname = path_advance(&path, name)) != NULL) {
12225                 stunalloc(fullname);
12226                 /* NB: code below will still use fullname
12227                  * despite it being "unallocated" */
12228                 idx++;
12229                 if (pathopt) {
12230                         if (prefix(pathopt, "builtin")) {
12231                                 if (bcmd)
12232                                         goto builtin_success;
12233                                 continue;
12234                         }
12235                         if ((act & DO_NOFUNC)
12236                          || !prefix(pathopt, "func")
12237                         ) {     /* ignore unimplemented options */
12238                                 continue;
12239                         }
12240                 }
12241                 /* if rehash, don't redo absolute path names */
12242                 if (fullname[0] == '/' && idx <= prev) {
12243                         if (idx < prev)
12244                                 continue;
12245                         TRACE(("searchexec \"%s\": no change\n", name));
12246                         goto success;
12247                 }
12248                 while (stat(fullname, &statb) < 0) {
12249 #ifdef SYSV
12250                         if (errno == EINTR)
12251                                 continue;
12252 #endif
12253                         if (errno != ENOENT && errno != ENOTDIR)
12254                                 e = errno;
12255                         goto loop;
12256                 }
12257                 e = EACCES;     /* if we fail, this will be the error */
12258                 if (!S_ISREG(statb.st_mode))
12259                         continue;
12260                 if (pathopt) {          /* this is a %func directory */
12261                         stalloc(strlen(fullname) + 1);
12262                         /* NB: stalloc will return space pointed by fullname
12263                          * (because we don't have any intervening allocations
12264                          * between stunalloc above and this stalloc) */
12265                         readcmdfile(fullname);
12266                         cmdp = cmdlookup(name, 0);
12267                         if (cmdp == NULL || cmdp->cmdtype != CMDFUNCTION)
12268                                 ash_msg_and_raise_error("%s not defined in %s", name, fullname);
12269                         stunalloc(fullname);
12270                         goto success;
12271                 }
12272                 TRACE(("searchexec \"%s\" returns \"%s\"\n", name, fullname));
12273                 if (!updatetbl) {
12274                         entry->cmdtype = CMDNORMAL;
12275                         entry->u.index = idx;
12276                         return;
12277                 }
12278                 INT_OFF;
12279                 cmdp = cmdlookup(name, 1);
12280                 cmdp->cmdtype = CMDNORMAL;
12281                 cmdp->param.index = idx;
12282                 INT_ON;
12283                 goto success;
12284         }
12285
12286         /* We failed.  If there was an entry for this command, delete it */
12287         if (cmdp && updatetbl)
12288                 delete_cmd_entry();
12289         if (act & DO_ERR)
12290                 ash_msg("%s: %s", name, errmsg(e, "not found"));
12291         entry->cmdtype = CMDUNKNOWN;
12292         return;
12293
12294  builtin_success:
12295         if (!updatetbl) {
12296                 entry->cmdtype = CMDBUILTIN;
12297                 entry->u.cmd = bcmd;
12298                 return;
12299         }
12300         INT_OFF;
12301         cmdp = cmdlookup(name, 1);
12302         cmdp->cmdtype = CMDBUILTIN;
12303         cmdp->param.cmd = bcmd;
12304         INT_ON;
12305  success:
12306         cmdp->rehash = 0;
12307         entry->cmdtype = cmdp->cmdtype;
12308         entry->u = cmdp->param;
12309 }
12310
12311
12312 /* ============ trap.c */
12313
12314 /*
12315  * The trap builtin.
12316  */
12317 static int FAST_FUNC
12318 trapcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
12319 {
12320         char *action;
12321         char **ap;
12322         int signo, exitcode;
12323
12324         nextopt(nullstr);
12325         ap = argptr;
12326         if (!*ap) {
12327                 for (signo = 0; signo < NSIG; signo++) {
12328                         char *tr = trap_ptr[signo];
12329                         if (tr) {
12330                                 /* note: bash adds "SIG", but only if invoked
12331                                  * as "bash". If called as "sh", or if set -o posix,
12332                                  * then it prints short signal names.
12333                                  * We are printing short names: */
12334                                 out1fmt("trap -- %s %s\n",
12335                                                 single_quote(tr),
12336                                                 get_signame(signo));
12337                 /* trap_ptr != trap only if we are in special-cased `trap` code.
12338                  * In this case, we will exit very soon, no need to free(). */
12339                                 /* if (trap_ptr != trap && tp[0]) */
12340                                 /*      free(tr); */
12341                         }
12342                 }
12343                 /*
12344                 if (trap_ptr != trap) {
12345                         free(trap_ptr);
12346                         trap_ptr = trap;
12347                 }
12348                 */
12349                 return 0;
12350         }
12351
12352         action = NULL;
12353         if (ap[1])
12354                 action = *ap++;
12355         exitcode = 0;
12356         while (*ap) {
12357                 signo = get_signum(*ap);
12358                 if (signo < 0) {
12359                         /* Mimic bash message exactly */
12360                         ash_msg("%s: invalid signal specification", *ap);
12361                         exitcode = 1;
12362                         goto next;
12363                 }
12364                 INT_OFF;
12365                 if (action) {
12366                         if (LONE_DASH(action))
12367                                 action = NULL;
12368                         else
12369                                 action = ckstrdup(action);
12370                 }
12371                 free(trap[signo]);
12372                 if (action)
12373                         may_have_traps = 1;
12374                 trap[signo] = action;
12375                 if (signo != 0)
12376                         setsignal(signo);
12377                 INT_ON;
12378  next:
12379                 ap++;
12380         }
12381         return exitcode;
12382 }
12383
12384
12385 /* ============ Builtins */
12386
12387 #if !ENABLE_FEATURE_SH_EXTRA_QUIET
12388 /*
12389  * Lists available builtins
12390  */
12391 static int FAST_FUNC
12392 helpcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
12393 {
12394         unsigned col;
12395         unsigned i;
12396
12397         out1fmt(
12398                 "Built-in commands:\n"
12399                 "------------------\n");
12400         for (col = 0, i = 0; i < ARRAY_SIZE(builtintab); i++) {
12401                 col += out1fmt("%c%s", ((col == 0) ? '\t' : ' '),
12402                                         builtintab[i].name + 1);
12403                 if (col > 60) {
12404                         out1fmt("\n");
12405                         col = 0;
12406                 }
12407         }
12408 #if ENABLE_FEATURE_SH_STANDALONE
12409         {
12410                 const char *a = applet_names;
12411                 while (*a) {
12412                         col += out1fmt("%c%s", ((col == 0) ? '\t' : ' '), a);
12413                         if (col > 60) {
12414                                 out1fmt("\n");
12415                                 col = 0;
12416                         }
12417                         a += strlen(a) + 1;
12418                 }
12419         }
12420 #endif
12421         out1fmt("\n\n");
12422         return EXIT_SUCCESS;
12423 }
12424 #endif /* FEATURE_SH_EXTRA_QUIET */
12425
12426 /*
12427  * The export and readonly commands.
12428  */
12429 static int FAST_FUNC
12430 exportcmd(int argc UNUSED_PARAM, char **argv)
12431 {
12432         struct var *vp;
12433         char *name;
12434         const char *p;
12435         char **aptr;
12436         int flag = argv[0][0] == 'r' ? VREADONLY : VEXPORT;
12437
12438         if (nextopt("p") != 'p') {
12439                 aptr = argptr;
12440                 name = *aptr;
12441                 if (name) {
12442                         do {
12443                                 p = strchr(name, '=');
12444                                 if (p != NULL) {
12445                                         p++;
12446                                 } else {
12447                                         vp = *findvar(hashvar(name), name);
12448                                         if (vp) {
12449                                                 vp->flags |= flag;
12450                                                 continue;
12451                                         }
12452                                 }
12453                                 setvar(name, p, flag);
12454                         } while ((name = *++aptr) != NULL);
12455                         return 0;
12456                 }
12457         }
12458         showvars(argv[0], flag, 0);
12459         return 0;
12460 }
12461
12462 /*
12463  * Delete a function if it exists.
12464  */
12465 static void
12466 unsetfunc(const char *name)
12467 {
12468         struct tblentry *cmdp;
12469
12470         cmdp = cmdlookup(name, 0);
12471         if (cmdp!= NULL && cmdp->cmdtype == CMDFUNCTION)
12472                 delete_cmd_entry();
12473 }
12474
12475 /*
12476  * The unset builtin command.  We unset the function before we unset the
12477  * variable to allow a function to be unset when there is a readonly variable
12478  * with the same name.
12479  */
12480 static int FAST_FUNC
12481 unsetcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
12482 {
12483         char **ap;
12484         int i;
12485         int flag = 0;
12486         int ret = 0;
12487
12488         while ((i = nextopt("vf")) != '\0') {
12489                 flag = i;
12490         }
12491
12492         for (ap = argptr; *ap; ap++) {
12493                 if (flag != 'f') {
12494                         i = unsetvar(*ap);
12495                         ret |= i;
12496                         if (!(i & 2))
12497                                 continue;
12498                 }
12499                 if (flag != 'v')
12500                         unsetfunc(*ap);
12501         }
12502         return ret & 1;
12503 }
12504
12505
12506 /*      setmode.c      */
12507
12508 #include <sys/times.h>
12509
12510 static const unsigned char timescmd_str[] ALIGN1 = {
12511         ' ',  offsetof(struct tms, tms_utime),
12512         '\n', offsetof(struct tms, tms_stime),
12513         ' ',  offsetof(struct tms, tms_cutime),
12514         '\n', offsetof(struct tms, tms_cstime),
12515         0
12516 };
12517
12518 static int FAST_FUNC
12519 timescmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
12520 {
12521         long clk_tck, s, t;
12522         const unsigned char *p;
12523         struct tms buf;
12524
12525         clk_tck = sysconf(_SC_CLK_TCK);
12526         times(&buf);
12527
12528         p = timescmd_str;
12529         do {
12530                 t = *(clock_t *)(((char *) &buf) + p[1]);
12531                 s = t / clk_tck;
12532                 out1fmt("%ldm%ld.%.3lds%c",
12533                         s/60, s%60,
12534                         ((t - s * clk_tck) * 1000) / clk_tck,
12535                         p[0]);
12536         } while (*(p += 2));
12537
12538         return 0;
12539 }
12540
12541 #if ENABLE_SH_MATH_SUPPORT
12542 /*
12543  * The let builtin. partial stolen from GNU Bash, the Bourne Again SHell.
12544  * Copyright (C) 1987, 1989, 1991 Free Software Foundation, Inc.
12545  *
12546  * Copyright (C) 2003 Vladimir Oleynik <dzo@simtreas.ru>
12547  */
12548 static int FAST_FUNC
12549 letcmd(int argc UNUSED_PARAM, char **argv)
12550 {
12551         arith_t i;
12552
12553         argv++;
12554         if (!*argv)
12555                 ash_msg_and_raise_error("expression expected");
12556         do {
12557                 i = ash_arith(*argv);
12558         } while (*++argv);
12559
12560         return !i;
12561 }
12562 #endif /* SH_MATH_SUPPORT */
12563
12564
12565 /* ============ miscbltin.c
12566  *
12567  * Miscellaneous builtins.
12568  */
12569
12570 #undef rflag
12571
12572 #if defined(__GLIBC__) && __GLIBC__ == 2 && __GLIBC_MINOR__ < 1
12573 typedef enum __rlimit_resource rlim_t;
12574 #endif
12575
12576 /*
12577  * The read builtin. Options:
12578  *      -r              Do not interpret '\' specially
12579  *      -s              Turn off echo (tty only)
12580  *      -n NCHARS       Read NCHARS max
12581  *      -p PROMPT       Display PROMPT on stderr (if input is from tty)
12582  *      -t SECONDS      Timeout after SECONDS (tty or pipe only)
12583  *      -u FD           Read from given FD instead of fd 0
12584  * This uses unbuffered input, which may be avoidable in some cases.
12585  * TODO: bash also has:
12586  *      -a ARRAY        Read into array[0],[1],etc
12587  *      -d DELIM        End on DELIM char, not newline
12588  *      -e              Use line editing (tty only)
12589  */
12590 static int FAST_FUNC
12591 readcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
12592 {
12593         char *opt_n = NULL;
12594         char *opt_p = NULL;
12595         char *opt_t = NULL;
12596         char *opt_u = NULL;
12597         int read_flags = 0;
12598         const char *r;
12599         int i;
12600
12601         while ((i = nextopt("p:u:rt:n:s")) != '\0') {
12602                 switch (i) {
12603                 case 'p':
12604                         opt_p = optionarg;
12605                         break;
12606                 case 'n':
12607                         opt_n = optionarg;
12608                         break;
12609                 case 's':
12610                         read_flags |= BUILTIN_READ_SILENT;
12611                         break;
12612                 case 't':
12613                         opt_t = optionarg;
12614                         break;
12615                 case 'r':
12616                         read_flags |= BUILTIN_READ_RAW;
12617                         break;
12618                 case 'u':
12619                         opt_u = optionarg;
12620                         break;
12621                 default:
12622                         break;
12623                 }
12624         }
12625
12626         r = shell_builtin_read(setvar2,
12627                 argptr,
12628                 bltinlookup("IFS"), /* can be NULL */
12629                 read_flags,
12630                 opt_n,
12631                 opt_p,
12632                 opt_t,
12633                 opt_u
12634         );
12635
12636         if ((uintptr_t)r > 1)
12637                 ash_msg_and_raise_error(r);
12638
12639         return (uintptr_t)r;
12640 }
12641
12642 static int FAST_FUNC
12643 umaskcmd(int argc UNUSED_PARAM, char **argv)
12644 {
12645         static const char permuser[3] ALIGN1 = "ugo";
12646         static const char permmode[3] ALIGN1 = "rwx";
12647         static const short permmask[] ALIGN2 = {
12648                 S_IRUSR, S_IWUSR, S_IXUSR,
12649                 S_IRGRP, S_IWGRP, S_IXGRP,
12650                 S_IROTH, S_IWOTH, S_IXOTH
12651         };
12652
12653         /* TODO: use bb_parse_mode() instead */
12654
12655         char *ap;
12656         mode_t mask;
12657         int i;
12658         int symbolic_mode = 0;
12659
12660         while (nextopt("S") != '\0') {
12661                 symbolic_mode = 1;
12662         }
12663
12664         INT_OFF;
12665         mask = umask(0);
12666         umask(mask);
12667         INT_ON;
12668
12669         ap = *argptr;
12670         if (ap == NULL) {
12671                 if (symbolic_mode) {
12672                         char buf[18];
12673                         char *p = buf;
12674
12675                         for (i = 0; i < 3; i++) {
12676                                 int j;
12677
12678                                 *p++ = permuser[i];
12679                                 *p++ = '=';
12680                                 for (j = 0; j < 3; j++) {
12681                                         if ((mask & permmask[3 * i + j]) == 0) {
12682                                                 *p++ = permmode[j];
12683                                         }
12684                                 }
12685                                 *p++ = ',';
12686                         }
12687                         *--p = 0;
12688                         puts(buf);
12689                 } else {
12690                         out1fmt("%.4o\n", mask);
12691                 }
12692         } else {
12693                 if (isdigit((unsigned char) *ap)) {
12694                         mask = 0;
12695                         do {
12696                                 if (*ap >= '8' || *ap < '0')
12697                                         ash_msg_and_raise_error(msg_illnum, argv[1]);
12698                                 mask = (mask << 3) + (*ap - '0');
12699                         } while (*++ap != '\0');
12700                         umask(mask);
12701                 } else {
12702                         mask = ~mask & 0777;
12703                         if (!bb_parse_mode(ap, &mask)) {
12704                                 ash_msg_and_raise_error("illegal mode: %s", ap);
12705                         }
12706                         umask(~mask & 0777);
12707                 }
12708         }
12709         return 0;
12710 }
12711
12712 static int FAST_FUNC
12713 ulimitcmd(int argc UNUSED_PARAM, char **argv)
12714 {
12715         return shell_builtin_ulimit(argv);
12716 }
12717
12718 /* ============ main() and helpers */
12719
12720 /*
12721  * Called to exit the shell.
12722  */
12723 static void exitshell(void) NORETURN;
12724 static void
12725 exitshell(void)
12726 {
12727         struct jmploc loc;
12728         char *p;
12729         int status;
12730
12731         status = exitstatus;
12732         TRACE(("pid %d, exitshell(%d)\n", getpid(), status));
12733         if (setjmp(loc.loc)) {
12734                 if (exception_type == EXEXIT)
12735 /* dash bug: it just does _exit(exitstatus) here
12736  * but we have to do setjobctl(0) first!
12737  * (bug is still not fixed in dash-0.5.3 - if you run dash
12738  * under Midnight Commander, on exit from dash MC is backgrounded) */
12739                         status = exitstatus;
12740                 goto out;
12741         }
12742         exception_handler = &loc;
12743         p = trap[0];
12744         if (p) {
12745                 trap[0] = NULL;
12746                 evalstring(p, 0);
12747                 free(p);
12748         }
12749         flush_stdout_stderr();
12750  out:
12751         setjobctl(0);
12752         _exit(status);
12753         /* NOTREACHED */
12754 }
12755
12756 static void
12757 init(void)
12758 {
12759         /* from input.c: */
12760         /* we will never free this */
12761         basepf.next_to_pgetc = basepf.buf = ckmalloc(IBUFSIZ);
12762
12763         /* from trap.c: */
12764         signal(SIGCHLD, SIG_DFL);
12765         /* bash re-enables SIGHUP which is SIG_IGNed on entry.
12766          * Try: "trap '' HUP; bash; echo RET" and type "kill -HUP $$"
12767          */
12768         signal(SIGHUP, SIG_DFL);
12769
12770         /* from var.c: */
12771         {
12772                 char **envp;
12773                 const char *p;
12774                 struct stat st1, st2;
12775
12776                 initvar();
12777                 for (envp = environ; envp && *envp; envp++) {
12778                         if (strchr(*envp, '=')) {
12779                                 setvareq(*envp, VEXPORT|VTEXTFIXED);
12780                         }
12781                 }
12782
12783                 setvar("PPID", utoa(getppid()), 0);
12784
12785                 p = lookupvar("PWD");
12786                 if (p)
12787                         if (*p != '/' || stat(p, &st1) || stat(".", &st2)
12788                          || st1.st_dev != st2.st_dev || st1.st_ino != st2.st_ino)
12789                                 p = '\0';
12790                 setpwd(p, 0);
12791         }
12792 }
12793
12794 /*
12795  * Process the shell command line arguments.
12796  */
12797 static void
12798 procargs(char **argv)
12799 {
12800         int i;
12801         const char *xminusc;
12802         char **xargv;
12803
12804         xargv = argv;
12805         arg0 = xargv[0];
12806         /* if (xargv[0]) - mmm, this is always true! */
12807                 xargv++;
12808         for (i = 0; i < NOPTS; i++)
12809                 optlist[i] = 2;
12810         argptr = xargv;
12811         if (options(1)) {
12812                 /* it already printed err message */
12813                 raise_exception(EXERROR);
12814         }
12815         xargv = argptr;
12816         xminusc = minusc;
12817         if (*xargv == NULL) {
12818                 if (xminusc)
12819                         ash_msg_and_raise_error(bb_msg_requires_arg, "-c");
12820                 sflag = 1;
12821         }
12822         if (iflag == 2 && sflag == 1 && isatty(0) && isatty(1))
12823                 iflag = 1;
12824         if (mflag == 2)
12825                 mflag = iflag;
12826         for (i = 0; i < NOPTS; i++)
12827                 if (optlist[i] == 2)
12828                         optlist[i] = 0;
12829 #if DEBUG == 2
12830         debug = 1;
12831 #endif
12832         /* POSIX 1003.2: first arg after -c cmd is $0, remainder $1... */
12833         if (xminusc) {
12834                 minusc = *xargv++;
12835                 if (*xargv)
12836                         goto setarg0;
12837         } else if (!sflag) {
12838                 setinputfile(*xargv, 0);
12839  setarg0:
12840                 arg0 = *xargv++;
12841                 commandname = arg0;
12842         }
12843
12844         shellparam.p = xargv;
12845 #if ENABLE_ASH_GETOPTS
12846         shellparam.optind = 1;
12847         shellparam.optoff = -1;
12848 #endif
12849         /* assert(shellparam.malloced == 0 && shellparam.nparam == 0); */
12850         while (*xargv) {
12851                 shellparam.nparam++;
12852                 xargv++;
12853         }
12854         optschanged();
12855 }
12856
12857 /*
12858  * Read /etc/profile or .profile.
12859  */
12860 static void
12861 read_profile(const char *name)
12862 {
12863         int skip;
12864
12865         if (setinputfile(name, INPUT_PUSH_FILE | INPUT_NOFILE_OK) < 0)
12866                 return;
12867         skip = cmdloop(0);
12868         popfile();
12869         if (skip)
12870                 exitshell();
12871 }
12872
12873 /*
12874  * This routine is called when an error or an interrupt occurs in an
12875  * interactive shell and control is returned to the main command loop.
12876  */
12877 static void
12878 reset(void)
12879 {
12880         /* from eval.c: */
12881         evalskip = 0;
12882         loopnest = 0;
12883         /* from input.c: */
12884         g_parsefile->left_in_buffer = 0;
12885         g_parsefile->left_in_line = 0;      /* clear input buffer */
12886         popallfiles();
12887         /* from parser.c: */
12888         tokpushback = 0;
12889         checkkwd = 0;
12890         /* from redir.c: */
12891         clearredir(/*drop:*/ 0);
12892 }
12893
12894 #if PROFILE
12895 static short profile_buf[16384];
12896 extern int etext();
12897 #endif
12898
12899 /*
12900  * Main routine.  We initialize things, parse the arguments, execute
12901  * profiles if we're a login shell, and then call cmdloop to execute
12902  * commands.  The setjmp call sets up the location to jump to when an
12903  * exception occurs.  When an exception occurs the variable "state"
12904  * is used to figure out how far we had gotten.
12905  */
12906 int ash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
12907 int ash_main(int argc UNUSED_PARAM, char **argv)
12908 {
12909         const char *shinit;
12910         volatile smallint state;
12911         struct jmploc jmploc;
12912         struct stackmark smark;
12913
12914         /* Initialize global data */
12915         INIT_G_misc();
12916         INIT_G_memstack();
12917         INIT_G_var();
12918 #if ENABLE_ASH_ALIAS
12919         INIT_G_alias();
12920 #endif
12921         INIT_G_cmdtable();
12922
12923 #if PROFILE
12924         monitor(4, etext, profile_buf, sizeof(profile_buf), 50);
12925 #endif
12926
12927 #if ENABLE_FEATURE_EDITING
12928         line_input_state = new_line_input_t(FOR_SHELL | WITH_PATH_LOOKUP);
12929 #endif
12930         state = 0;
12931         if (setjmp(jmploc.loc)) {
12932                 smallint e;
12933                 smallint s;
12934
12935                 reset();
12936
12937                 e = exception_type;
12938                 if (e == EXERROR)
12939                         exitstatus = 2;
12940                 s = state;
12941                 if (e == EXEXIT || s == 0 || iflag == 0 || shlvl)
12942                         exitshell();
12943                 if (e == EXINT)
12944                         outcslow('\n', stderr);
12945
12946                 popstackmark(&smark);
12947                 FORCE_INT_ON; /* enable interrupts */
12948                 if (s == 1)
12949                         goto state1;
12950                 if (s == 2)
12951                         goto state2;
12952                 if (s == 3)
12953                         goto state3;
12954                 goto state4;
12955         }
12956         exception_handler = &jmploc;
12957 #if DEBUG
12958         opentrace();
12959         TRACE(("Shell args: "));
12960         trace_puts_args(argv);
12961 #endif
12962         rootpid = getpid();
12963
12964         init();
12965         setstackmark(&smark);
12966         procargs(argv);
12967
12968 #if ENABLE_FEATURE_EDITING_SAVEHISTORY
12969         if (iflag) {
12970                 const char *hp = lookupvar("HISTFILE");
12971
12972                 if (hp == NULL) {
12973                         hp = lookupvar("HOME");
12974                         if (hp != NULL) {
12975                                 char *defhp = concat_path_file(hp, ".ash_history");
12976                                 setvar("HISTFILE", defhp, 0);
12977                                 free(defhp);
12978                         }
12979                 }
12980         }
12981 #endif
12982         if (/* argv[0] && */ argv[0][0] == '-')
12983                 isloginsh = 1;
12984         if (isloginsh) {
12985                 state = 1;
12986                 read_profile("/etc/profile");
12987  state1:
12988                 state = 2;
12989                 read_profile(".profile");
12990         }
12991  state2:
12992         state = 3;
12993         if (
12994 #ifndef linux
12995          getuid() == geteuid() && getgid() == getegid() &&
12996 #endif
12997          iflag
12998         ) {
12999                 shinit = lookupvar("ENV");
13000                 if (shinit != NULL && *shinit != '\0') {
13001                         read_profile(shinit);
13002                 }
13003         }
13004  state3:
13005         state = 4;
13006         if (minusc) {
13007                 /* evalstring pushes parsefile stack.
13008                  * Ensure we don't falsely claim that 0 (stdin)
13009                  * is one of stacked source fds.
13010                  * Testcase: ash -c 'exec 1>&0' must not complain. */
13011                 // if (!sflag) g_parsefile->pf_fd = -1;
13012                 // ^^ not necessary since now we special-case fd 0
13013                 // in is_hidden_fd() to not be considered "hidden fd"
13014                 evalstring(minusc, 0);
13015         }
13016
13017         if (sflag || minusc == NULL) {
13018 #if defined MAX_HISTORY && MAX_HISTORY > 0 && ENABLE_FEATURE_EDITING_SAVEHISTORY
13019                 if (iflag) {
13020                         const char *hp = lookupvar("HISTFILE");
13021                         if (hp)
13022                                 line_input_state->hist_file = hp;
13023                 }
13024 #endif
13025  state4: /* XXX ??? - why isn't this before the "if" statement */
13026                 cmdloop(1);
13027         }
13028 #if PROFILE
13029         monitor(0);
13030 #endif
13031 #ifdef GPROF
13032         {
13033                 extern void _mcleanup(void);
13034                 _mcleanup();
13035         }
13036 #endif
13037         exitshell();
13038         /* NOTREACHED */
13039 }
13040
13041
13042 /*-
13043  * Copyright (c) 1989, 1991, 1993, 1994
13044  *      The Regents of the University of California.  All rights reserved.
13045  *
13046  * This code is derived from software contributed to Berkeley by
13047  * Kenneth Almquist.
13048  *
13049  * Redistribution and use in source and binary forms, with or without
13050  * modification, are permitted provided that the following conditions
13051  * are met:
13052  * 1. Redistributions of source code must retain the above copyright
13053  *    notice, this list of conditions and the following disclaimer.
13054  * 2. Redistributions in binary form must reproduce the above copyright
13055  *    notice, this list of conditions and the following disclaimer in the
13056  *    documentation and/or other materials provided with the distribution.
13057  * 3. Neither the name of the University nor the names of its contributors
13058  *    may be used to endorse or promote products derived from this software
13059  *    without specific prior written permission.
13060  *
13061  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
13062  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
13063  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
13064  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
13065  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
13066  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
13067  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
13068  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
13069  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
13070  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
13071  * SUCH DAMAGE.
13072  */