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