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