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