hush: straighten out the logic in parse_stream
[oweals/busybox.git] / shell / hush.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * A prototype Bourne shell grammar parser.
4  * Intended to follow the original Thompson and Ritchie
5  * "small and simple is beautiful" philosophy, which
6  * incidentally is a good match to today's BusyBox.
7  *
8  * Copyright (C) 2000,2001  Larry Doolittle <larry@doolittle.boa.org>
9  * Copyright (C) 2008,2009  Denys Vlasenko <vda.linux@googlemail.com>
10  *
11  * Credits:
12  *      The parser routines proper are all original material, first
13  *      written Dec 2000 and Jan 2001 by Larry Doolittle.  The
14  *      execution engine, the builtins, and much of the underlying
15  *      support has been adapted from busybox-0.49pre's lash, which is
16  *      Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
17  *      written by Erik Andersen <andersen@codepoet.org>.  That, in turn,
18  *      is based in part on ladsh.c, by Michael K. Johnson and Erik W.
19  *      Troan, which they placed in the public domain.  I don't know
20  *      how much of the Johnson/Troan code has survived the repeated
21  *      rewrites.
22  *
23  * Other credits:
24  *      o_addchr derived from similar w_addchar function in glibc-2.2.
25  *      parse_redirect, redirect_opt_num, and big chunks of main
26  *      and many builtins derived from contributions by Erik Andersen.
27  *      Miscellaneous bugfixes from Matt Kraai.
28  *
29  * There are two big (and related) architecture differences between
30  * this parser and the lash parser.  One is that this version is
31  * actually designed from the ground up to understand nearly all
32  * of the Bourne grammar.  The second, consequential change is that
33  * the parser and input reader have been turned inside out.  Now,
34  * the parser is in control, and asks for input as needed.  The old
35  * way had the input reader in control, and it asked for parsing to
36  * take place as needed.  The new way makes it much easier to properly
37  * handle the recursion implicit in the various substitutions, especially
38  * across continuation lines.
39  *
40  * TODOs:
41  *      grep for "TODO" and fix (some of them are easy)
42  *      special variables (done: PWD, PPID, RANDOM)
43  *      tilde expansion
44  *      aliases
45  *      follow IFS rules more precisely, including update semantics
46  *      builtins mandated by standards we don't support:
47  *          [un]alias, command, fc, getopts, newgrp, readonly, times
48  *      make complex ${var%...} constructs support optional
49  *      make here documents optional
50  *
51  * Bash compat TODO:
52  *      redirection of stdout+stderr: &> and >&
53  *      brace expansion: one/{two,three,four}
54  *      reserved words: function select
55  *      advanced test: [[ ]]
56  *      process substitution: <(list) and >(list)
57  *      =~: regex operator
58  *      let EXPR [EXPR...]
59  *          Each EXPR is an arithmetic expression (ARITHMETIC EVALUATION)
60  *          If the last arg evaluates to 0, let returns 1; 0 otherwise.
61  *          NB: let `echo 'a=a + 1'` - error (IOW: multi-word expansion is used)
62  *      ((EXPR))
63  *          The EXPR is evaluated according to ARITHMETIC EVALUATION.
64  *          This is exactly equivalent to let "EXPR".
65  *      $[EXPR]: synonym for $((EXPR))
66  *      export builtin should be special, its arguments are assignments
67  *          and therefore expansion of them should be "one-word" expansion:
68  *              $ export i=`echo 'a  b'` # export has one arg: "i=a  b"
69  *          compare with:
70  *              $ ls i=`echo 'a  b'`     # ls has two args: "i=a" and "b"
71  *              ls: cannot access i=a: No such file or directory
72  *              ls: cannot access b: No such file or directory
73  *          Note1: same applies to local builtin.
74  *          Note2: bash 3.2.33(1) does this only if export word itself
75  *          is not quoted:
76  *              $ export i=`echo 'aaa  bbb'`; echo "$i"
77  *              aaa  bbb
78  *              $ "export" i=`echo 'aaa  bbb'`; echo "$i"
79  *              aaa
80  *
81  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
82  */
83 #include "busybox.h"  /* for APPLET_IS_NOFORK/NOEXEC */
84 #include <malloc.h>   /* for malloc_trim */
85 #include <glob.h>
86 /* #include <dmalloc.h> */
87 #if ENABLE_HUSH_CASE
88 # include <fnmatch.h>
89 #endif
90
91 #include "shell_common.h"
92 #include "math.h"
93 #include "match.h"
94 #if ENABLE_HUSH_RANDOM_SUPPORT
95 # include "random.h"
96 #else
97 # define CLEAR_RANDOM_T(rnd) ((void)0)
98 #endif
99 #ifndef PIPE_BUF
100 # define PIPE_BUF 4096  /* amount of buffering in a pipe */
101 #endif
102
103 //applet:IF_HUSH(APPLET(hush, _BB_DIR_BIN, _BB_SUID_DROP))
104 //applet:IF_MSH(APPLET(msh, _BB_DIR_BIN, _BB_SUID_DROP))
105 //applet:IF_FEATURE_SH_IS_HUSH(APPLET_ODDNAME(sh, hush, _BB_DIR_BIN, _BB_SUID_DROP, sh))
106 //applet:IF_FEATURE_BASH_IS_HUSH(APPLET_ODDNAME(bash, hush, _BB_DIR_BIN, _BB_SUID_DROP, bash))
107
108 //kbuild:lib-$(CONFIG_HUSH) += hush.o match.o shell_common.o
109 //kbuild:lib-$(CONFIG_HUSH_RANDOM_SUPPORT) += random.o
110
111 //config:config HUSH
112 //config:       bool "hush"
113 //config:       default y
114 //config:       help
115 //config:         hush is a small shell (25k). It handles the normal flow control
116 //config:         constructs such as if/then/elif/else/fi, for/in/do/done, while loops,
117 //config:         case/esac. Redirections, here documents, $((arithmetic))
118 //config:         and functions are supported.
119 //config:
120 //config:         It will compile and work on no-mmu systems.
121 //config:
122 //config:         It does not handle select, aliases, brace expansion,
123 //config:         tilde expansion, &>file and >&file redirection of stdout+stderr.
124 //config:
125 //config:config HUSH_BASH_COMPAT
126 //config:       bool "bash-compatible extensions"
127 //config:       default y
128 //config:       depends on HUSH
129 //config:       help
130 //config:         Enable bash-compatible extensions.
131 //config:
132 //config:config HUSH_HELP
133 //config:       bool "help builtin"
134 //config:       default y
135 //config:       depends on HUSH
136 //config:       help
137 //config:         Enable help builtin in hush. Code size + ~1 kbyte.
138 //config:
139 //config:config HUSH_INTERACTIVE
140 //config:       bool "Interactive mode"
141 //config:       default y
142 //config:       depends on HUSH
143 //config:       help
144 //config:         Enable interactive mode (prompt and command editing).
145 //config:         Without this, hush simply reads and executes commands
146 //config:         from stdin just like a shell script from a file.
147 //config:         No prompt, no PS1/PS2 magic shell variables.
148 //config:
149 //config:config HUSH_JOB
150 //config:       bool "Job control"
151 //config:       default y
152 //config:       depends on HUSH_INTERACTIVE
153 //config:       help
154 //config:         Enable job control: Ctrl-Z backgrounds, Ctrl-C interrupts current
155 //config:         command (not entire shell), fg/bg builtins work. Without this option,
156 //config:         "cmd &" still works by simply spawning a process and immediately
157 //config:         prompting for next command (or executing next command in a script),
158 //config:         but no separate process group is formed.
159 //config:
160 //config:config HUSH_TICK
161 //config:       bool "Process substitution"
162 //config:       default y
163 //config:       depends on HUSH
164 //config:       help
165 //config:         Enable process substitution `command` and $(command) in hush.
166 //config:
167 //config:config HUSH_IF
168 //config:       bool "Support if/then/elif/else/fi"
169 //config:       default y
170 //config:       depends on HUSH
171 //config:       help
172 //config:         Enable if/then/elif/else/fi in hush.
173 //config:
174 //config:config HUSH_LOOPS
175 //config:       bool "Support for, while and until loops"
176 //config:       default y
177 //config:       depends on HUSH
178 //config:       help
179 //config:         Enable for, while and until loops in hush.
180 //config:
181 //config:config HUSH_CASE
182 //config:       bool "Support case ... esac statement"
183 //config:       default y
184 //config:       depends on HUSH
185 //config:       help
186 //config:         Enable case ... esac statement in hush. +400 bytes.
187 //config:
188 //config:config HUSH_FUNCTIONS
189 //config:       bool "Support funcname() { commands; } syntax"
190 //config:       default y
191 //config:       depends on HUSH
192 //config:       help
193 //config:         Enable support for shell functions in hush. +800 bytes.
194 //config:
195 //config:config HUSH_LOCAL
196 //config:       bool "Support local builtin"
197 //config:       default y
198 //config:       depends on HUSH_FUNCTIONS
199 //config:       help
200 //config:         Enable support for local variables in functions.
201 //config:
202 //config:config HUSH_RANDOM_SUPPORT
203 //config:       bool "Pseudorandom generator and $RANDOM variable"
204 //config:       default y
205 //config:       depends on HUSH
206 //config:       help
207 //config:         Enable pseudorandom generator and dynamic variable "$RANDOM".
208 //config:         Each read of "$RANDOM" will generate a new pseudorandom value.
209 //config:
210 //config:config HUSH_EXPORT_N
211 //config:       bool "Support 'export -n' option"
212 //config:       default y
213 //config:       depends on HUSH
214 //config:       help
215 //config:         export -n unexports variables. It is a bash extension.
216 //config:
217 //config:config HUSH_MODE_X
218 //config:       bool "Support 'hush -x' option and 'set -x' command"
219 //config:       default y
220 //config:       depends on HUSH
221 //config:       help
222 //config:         This instructs hush to print commands before execution.
223 //config:         Adds ~300 bytes.
224 //config:
225 //config:config MSH
226 //config:       bool "msh (deprecated: aliased to hush)"
227 //config:       default n
228 //config:       select HUSH
229 //config:       help
230 //config:         msh is deprecated and will be removed, please migrate to hush.
231 //config:
232
233 //usage:#define hush_trivial_usage NOUSAGE_STR
234 //usage:#define hush_full_usage ""
235 //usage:#define msh_trivial_usage NOUSAGE_STR
236 //usage:#define msh_full_usage ""
237
238
239 /* Build knobs */
240 #define LEAK_HUNTING 0
241 #define BUILD_AS_NOMMU 0
242 /* Enable/disable sanity checks. Ok to enable in production,
243  * only adds a bit of bloat. Set to >1 to get non-production level verbosity.
244  * Keeping 1 for now even in released versions.
245  */
246 #define HUSH_DEBUG 1
247 /* Slightly bigger (+200 bytes), but faster hush.
248  * So far it only enables a trick with counting SIGCHLDs and forks,
249  * which allows us to do fewer waitpid's.
250  * (we can detect a case where neither forks were done nor SIGCHLDs happened
251  * and therefore waitpid will return the same result as last time)
252  */
253 #define ENABLE_HUSH_FAST 0
254 /* TODO: implement simplified code for users which do not need ${var%...} ops
255  * So far ${var%...} ops are always enabled:
256  */
257 #define ENABLE_HUSH_DOLLAR_OPS 1
258
259
260 #if BUILD_AS_NOMMU
261 # undef BB_MMU
262 # undef USE_FOR_NOMMU
263 # undef USE_FOR_MMU
264 # define BB_MMU 0
265 # define USE_FOR_NOMMU(...) __VA_ARGS__
266 # define USE_FOR_MMU(...)
267 #endif
268
269 #include "NUM_APPLETS.h"
270 #if NUM_APPLETS == 1
271 /* STANDALONE does not make sense, and won't compile */
272 # undef CONFIG_FEATURE_SH_STANDALONE
273 # undef ENABLE_FEATURE_SH_STANDALONE
274 # undef IF_FEATURE_SH_STANDALONE
275 # undef IF_NOT_FEATURE_SH_STANDALONE
276 # define ENABLE_FEATURE_SH_STANDALONE 0
277 # define IF_FEATURE_SH_STANDALONE(...)
278 # define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__
279 #endif
280
281 #if !ENABLE_HUSH_INTERACTIVE
282 # undef ENABLE_FEATURE_EDITING
283 # define ENABLE_FEATURE_EDITING 0
284 # undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
285 # define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
286 #endif
287
288 /* Do we support ANY keywords? */
289 #if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
290 # define HAS_KEYWORDS 1
291 # define IF_HAS_KEYWORDS(...) __VA_ARGS__
292 # define IF_HAS_NO_KEYWORDS(...)
293 #else
294 # define HAS_KEYWORDS 0
295 # define IF_HAS_KEYWORDS(...)
296 # define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
297 #endif
298
299 /* If you comment out one of these below, it will be #defined later
300  * to perform debug printfs to stderr: */
301 #define debug_printf(...)        do {} while (0)
302 /* Finer-grained debug switches */
303 #define debug_printf_parse(...)  do {} while (0)
304 #define debug_print_tree(a, b)   do {} while (0)
305 #define debug_printf_exec(...)   do {} while (0)
306 #define debug_printf_env(...)    do {} while (0)
307 #define debug_printf_jobs(...)   do {} while (0)
308 #define debug_printf_expand(...) do {} while (0)
309 #define debug_printf_varexp(...) do {} while (0)
310 #define debug_printf_glob(...)   do {} while (0)
311 #define debug_printf_list(...)   do {} while (0)
312 #define debug_printf_subst(...)  do {} while (0)
313 #define debug_printf_clean(...)  do {} while (0)
314
315 #define ERR_PTR ((void*)(long)1)
316
317 #define JOB_STATUS_FORMAT    "[%d] %-22s %.40s\n"
318
319 #define _SPECIAL_VARS_STR     "_*@$!?#"
320 #define SPECIAL_VARS_STR     ("_*@$!?#" + 1)
321 #define NUMERIC_SPECVARS_STR ("_*@$!?#" + 3)
322 #if ENABLE_HUSH_BASH_COMPAT
323 /* Support / and // replace ops */
324 /* Note that // is stored as \ in "encoded" string representation */
325 # define VAR_ENCODED_SUBST_OPS      "\\/%#:-=+?"
326 # define VAR_SUBST_OPS             ("\\/%#:-=+?" + 1)
327 # define MINUS_PLUS_EQUAL_QUESTION ("\\/%#:-=+?" + 5)
328 #else
329 # define VAR_ENCODED_SUBST_OPS      "%#:-=+?"
330 # define VAR_SUBST_OPS              "%#:-=+?"
331 # define MINUS_PLUS_EQUAL_QUESTION ("%#:-=+?" + 3)
332 #endif
333
334 #define SPECIAL_VAR_SYMBOL   3
335
336 struct variable;
337
338 static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
339
340 /* This supports saving pointers malloced in vfork child,
341  * to be freed in the parent.
342  */
343 #if !BB_MMU
344 typedef struct nommu_save_t {
345         char **new_env;
346         struct variable *old_vars;
347         char **argv;
348         char **argv_from_re_execing;
349 } nommu_save_t;
350 #endif
351
352 enum {
353         RES_NONE  = 0,
354 #if ENABLE_HUSH_IF
355         RES_IF    ,
356         RES_THEN  ,
357         RES_ELIF  ,
358         RES_ELSE  ,
359         RES_FI    ,
360 #endif
361 #if ENABLE_HUSH_LOOPS
362         RES_FOR   ,
363         RES_WHILE ,
364         RES_UNTIL ,
365         RES_DO    ,
366         RES_DONE  ,
367 #endif
368 #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
369         RES_IN    ,
370 #endif
371 #if ENABLE_HUSH_CASE
372         RES_CASE  ,
373         /* three pseudo-keywords support contrived "case" syntax: */
374         RES_CASE_IN,   /* "case ... IN", turns into RES_MATCH when IN is observed */
375         RES_MATCH ,    /* "word)" */
376         RES_CASE_BODY, /* "this command is inside CASE" */
377         RES_ESAC  ,
378 #endif
379         RES_XXXX  ,
380         RES_SNTX
381 };
382
383 enum {
384         EXP_FLAG_GLOB = 0x200,
385         EXP_FLAG_ESC_GLOB_CHARS = 0x100,
386         EXP_FLAG_SINGLEWORD = 0x80, /* must be 0x80 */
387 };
388
389 typedef struct o_string {
390         char *data;
391         int length; /* position where data is appended */
392         int maxlen;
393         /* Protect newly added chars against globbing
394          * (by prepending \ to *, ?, [, \) */
395         int o_expflags;
396         /* At least some part of the string was inside '' or "",
397          * possibly empty one: word"", wo''rd etc. */
398         smallint has_quoted_part;
399         smallint has_empty_slot;
400         smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
401 } o_string;
402 enum {
403         MAYBE_ASSIGNMENT = 0,
404         DEFINITELY_ASSIGNMENT = 1,
405         NOT_ASSIGNMENT = 2,
406         WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */
407 };
408 /* Used for initialization: o_string foo = NULL_O_STRING; */
409 #define NULL_O_STRING { NULL }
410
411 /* I can almost use ordinary FILE*.  Is open_memstream() universally
412  * available?  Where is it documented? */
413 typedef struct in_str {
414         const char *p;
415         /* eof_flag=1: last char in ->p is really an EOF */
416         char eof_flag; /* meaningless if ->p == NULL */
417         char peek_buf[2];
418 #if ENABLE_HUSH_INTERACTIVE
419         smallint promptme;
420         smallint promptmode; /* 0: PS1, 1: PS2 */
421 #endif
422         FILE *file;
423         int (*get) (struct in_str *) FAST_FUNC;
424         int (*peek) (struct in_str *) FAST_FUNC;
425 } in_str;
426 #define i_getch(input) ((input)->get(input))
427 #define i_peek(input) ((input)->peek(input))
428
429 /* The descrip member of this structure is only used to make
430  * debugging output pretty */
431 static const struct {
432         int mode;
433         signed char default_fd;
434         char descrip[3];
435 } redir_table[] = {
436         { O_RDONLY,                  0, "<"  },
437         { O_CREAT|O_TRUNC|O_WRONLY,  1, ">"  },
438         { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
439         { O_CREAT|O_RDWR,            1, "<>" },
440         { O_RDONLY,                  0, "<<" },
441 /* Should not be needed. Bogus default_fd helps in debugging */
442 /*      { O_RDONLY,                 77, "<<" }, */
443 };
444
445 struct redir_struct {
446         struct redir_struct *next;
447         char *rd_filename;          /* filename */
448         int rd_fd;                  /* fd to redirect */
449         /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
450         int rd_dup;
451         smallint rd_type;           /* (enum redir_type) */
452         /* note: for heredocs, rd_filename contains heredoc delimiter,
453          * and subsequently heredoc itself; and rd_dup is a bitmask:
454          * bit 0: do we need to trim leading tabs?
455          * bit 1: is heredoc quoted (<<'delim' syntax) ?
456          */
457 };
458 typedef enum redir_type {
459         REDIRECT_INPUT     = 0,
460         REDIRECT_OVERWRITE = 1,
461         REDIRECT_APPEND    = 2,
462         REDIRECT_IO        = 3,
463         REDIRECT_HEREDOC   = 4,
464         REDIRECT_HEREDOC2  = 5, /* REDIRECT_HEREDOC after heredoc is loaded */
465
466         REDIRFD_CLOSE      = -3,
467         REDIRFD_SYNTAX_ERR = -2,
468         REDIRFD_TO_FILE    = -1,
469         /* otherwise, rd_fd is redirected to rd_dup */
470
471         HEREDOC_SKIPTABS = 1,
472         HEREDOC_QUOTED   = 2,
473 } redir_type;
474
475
476 struct command {
477         pid_t pid;                  /* 0 if exited */
478         int assignment_cnt;         /* how many argv[i] are assignments? */
479         smallint is_stopped;        /* is the command currently running? */
480         smallint cmd_type;          /* CMD_xxx */
481 #define CMD_NORMAL   0
482 #define CMD_SUBSHELL 1
483 #if ENABLE_HUSH_BASH_COMPAT
484 /* used for "[[ EXPR ]]" */
485 # define CMD_SINGLEWORD_NOGLOB 2
486 #endif
487 #if ENABLE_HUSH_FUNCTIONS
488 # define CMD_FUNCDEF 3
489 #endif
490
491         /* if non-NULL, this "command" is { list }, ( list ), or a compound statement */
492         struct pipe *group;
493 #if !BB_MMU
494         char *group_as_string;
495 #endif
496 #if ENABLE_HUSH_FUNCTIONS
497         struct function *child_func;
498 /* This field is used to prevent a bug here:
499  * while...do f1() {a;}; f1; f1() {b;}; f1; done
500  * When we execute "f1() {a;}" cmd, we create new function and clear
501  * cmd->group, cmd->group_as_string, cmd->argv[0].
502  * When we execute "f1() {b;}", we notice that f1 exists,
503  * and that its "parent cmd" struct is still "alive",
504  * we put those fields back into cmd->xxx
505  * (struct function has ->parent_cmd ptr to facilitate that).
506  * When we loop back, we can execute "f1() {a;}" again and set f1 correctly.
507  * Without this trick, loop would execute a;b;b;b;...
508  * instead of correct sequence a;b;a;b;...
509  * When command is freed, it severs the link
510  * (sets ->child_func->parent_cmd to NULL).
511  */
512 #endif
513         char **argv;                /* command name and arguments */
514 /* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
515  * and on execution these are substituted with their values.
516  * Substitution can make _several_ words out of one argv[n]!
517  * Example: argv[0]=='.^C*^C.' here: echo .$*.
518  * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
519  */
520         struct redir_struct *redirects; /* I/O redirections */
521 };
522 /* Is there anything in this command at all? */
523 #define IS_NULL_CMD(cmd) \
524         (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects)
525
526
527 struct pipe {
528         struct pipe *next;
529         int num_cmds;               /* total number of commands in pipe */
530         int alive_cmds;             /* number of commands running (not exited) */
531         int stopped_cmds;           /* number of commands alive, but stopped */
532 #if ENABLE_HUSH_JOB
533         int jobid;                  /* job number */
534         pid_t pgrp;                 /* process group ID for the job */
535         char *cmdtext;              /* name of job */
536 #endif
537         struct command *cmds;       /* array of commands in pipe */
538         smallint followup;          /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
539         IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
540         IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
541 };
542 typedef enum pipe_style {
543         PIPE_SEQ = 1,
544         PIPE_AND = 2,
545         PIPE_OR  = 3,
546         PIPE_BG  = 4,
547 } pipe_style;
548 /* Is there anything in this pipe at all? */
549 #define IS_NULL_PIPE(pi) \
550         ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE))
551
552 /* This holds pointers to the various results of parsing */
553 struct parse_context {
554         /* linked list of pipes */
555         struct pipe *list_head;
556         /* last pipe (being constructed right now) */
557         struct pipe *pipe;
558         /* last command in pipe (being constructed right now) */
559         struct command *command;
560         /* last redirect in command->redirects list */
561         struct redir_struct *pending_redirect;
562 #if !BB_MMU
563         o_string as_string;
564 #endif
565 #if HAS_KEYWORDS
566         smallint ctx_res_w;
567         smallint ctx_inverted; /* "! cmd | cmd" */
568 #if ENABLE_HUSH_CASE
569         smallint ctx_dsemicolon; /* ";;" seen */
570 #endif
571         /* bitmask of FLAG_xxx, for figuring out valid reserved words */
572         int old_flag;
573         /* group we are enclosed in:
574          * example: "if pipe1; pipe2; then pipe3; fi"
575          * when we see "if" or "then", we malloc and copy current context,
576          * and make ->stack point to it. then we parse pipeN.
577          * when closing "then" / fi" / whatever is found,
578          * we move list_head into ->stack->command->group,
579          * copy ->stack into current context, and delete ->stack.
580          * (parsing of { list } and ( list ) doesn't use this method)
581          */
582         struct parse_context *stack;
583 #endif
584 };
585
586 /* On program start, environ points to initial environment.
587  * putenv adds new pointers into it, unsetenv removes them.
588  * Neither of these (de)allocates the strings.
589  * setenv allocates new strings in malloc space and does putenv,
590  * and thus setenv is unusable (leaky) for shell's purposes */
591 #define setenv(...) setenv_is_leaky_dont_use()
592 struct variable {
593         struct variable *next;
594         char *varstr;        /* points to "name=" portion */
595 #if ENABLE_HUSH_LOCAL
596         unsigned func_nest_level;
597 #endif
598         int max_len;         /* if > 0, name is part of initial env; else name is malloced */
599         smallint flg_export; /* putenv should be done on this var */
600         smallint flg_read_only;
601 };
602
603 enum {
604         BC_BREAK = 1,
605         BC_CONTINUE = 2,
606 };
607
608 #if ENABLE_HUSH_FUNCTIONS
609 struct function {
610         struct function *next;
611         char *name;
612         struct command *parent_cmd;
613         struct pipe *body;
614 # if !BB_MMU
615         char *body_as_string;
616 # endif
617 };
618 #endif
619
620
621 /* "Globals" within this file */
622 /* Sorted roughly by size (smaller offsets == smaller code) */
623 struct globals {
624         /* interactive_fd != 0 means we are an interactive shell.
625          * If we are, then saved_tty_pgrp can also be != 0, meaning
626          * that controlling tty is available. With saved_tty_pgrp == 0,
627          * job control still works, but terminal signals
628          * (^C, ^Z, ^Y, ^\) won't work at all, and background
629          * process groups can only be created with "cmd &".
630          * With saved_tty_pgrp != 0, hush will use tcsetpgrp()
631          * to give tty to the foreground process group,
632          * and will take it back when the group is stopped (^Z)
633          * or killed (^C).
634          */
635 #if ENABLE_HUSH_INTERACTIVE
636         /* 'interactive_fd' is a fd# open to ctty, if we have one
637          * _AND_ if we decided to act interactively */
638         int interactive_fd;
639         const char *PS1;
640         const char *PS2;
641 # define G_interactive_fd (G.interactive_fd)
642 #else
643 # define G_interactive_fd 0
644 #endif
645 #if ENABLE_FEATURE_EDITING
646         line_input_t *line_input_state;
647 #endif
648         pid_t root_pid;
649         pid_t root_ppid;
650         pid_t last_bg_pid;
651 #if ENABLE_HUSH_RANDOM_SUPPORT
652         random_t random_gen;
653 #endif
654 #if ENABLE_HUSH_JOB
655         int run_list_level;
656         int last_jobid;
657         pid_t saved_tty_pgrp;
658         struct pipe *job_list;
659 # define G_saved_tty_pgrp (G.saved_tty_pgrp)
660 #else
661 # define G_saved_tty_pgrp 0
662 #endif
663         smallint flag_SIGINT;
664 #if ENABLE_HUSH_LOOPS
665         smallint flag_break_continue;
666 #endif
667 #if ENABLE_HUSH_FUNCTIONS
668         /* 0: outside of a function (or sourced file)
669          * -1: inside of a function, ok to use return builtin
670          * 1: return is invoked, skip all till end of func
671          */
672         smallint flag_return_in_progress;
673 #endif
674         smallint n_mode;
675 #if ENABLE_HUSH_MODE_X
676         smallint x_mode;
677 # define G_x_mode (G.x_mode)
678 #else
679 # define G_x_mode 0
680 #endif
681         smallint exiting; /* used to prevent EXIT trap recursion */
682         /* These four support $?, $#, and $1 */
683         smalluint last_exitcode;
684         /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
685         smalluint global_args_malloced;
686         smalluint inherited_set_is_saved;
687         /* how many non-NULL argv's we have. NB: $# + 1 */
688         int global_argc;
689         char **global_argv;
690 #if !BB_MMU
691         char *argv0_for_re_execing;
692 #endif
693 #if ENABLE_HUSH_LOOPS
694         unsigned depth_break_continue;
695         unsigned depth_of_loop;
696 #endif
697         const char *ifs;
698         const char *cwd;
699         struct variable *top_var; /* = &G.shell_ver (set in main()) */
700         struct variable shell_ver;
701         char **expanded_assignments;
702 #if ENABLE_HUSH_FUNCTIONS
703         struct function *top_func;
704 # if ENABLE_HUSH_LOCAL
705         struct variable **shadowed_vars_pp;
706         unsigned func_nest_level;
707 # endif
708 #endif
709         /* Signal and trap handling */
710 #if ENABLE_HUSH_FAST
711         unsigned count_SIGCHLD;
712         unsigned handled_SIGCHLD;
713         smallint we_have_children;
714 #endif
715         /* which signals have non-DFL handler (even with no traps set)? */
716         unsigned non_DFL_mask;
717         char **traps; /* char *traps[NSIG] */
718         sigset_t blocked_set;
719         sigset_t inherited_set;
720 #if HUSH_DEBUG
721         unsigned long memleak_value;
722         int debug_indent;
723 #endif
724         char user_input_buf[ENABLE_FEATURE_EDITING ? CONFIG_FEATURE_EDITING_MAX_LEN : 2];
725 };
726 #define G (*ptr_to_globals)
727 /* Not #defining name to G.name - this quickly gets unwieldy
728  * (too many defines). Also, I actually prefer to see when a variable
729  * is global, thus "G." prefix is a useful hint */
730 #define INIT_G() do { \
731         SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
732 } while (0)
733
734
735 /* Function prototypes for builtins */
736 static int builtin_cd(char **argv) FAST_FUNC;
737 static int builtin_echo(char **argv) FAST_FUNC;
738 static int builtin_eval(char **argv) FAST_FUNC;
739 static int builtin_exec(char **argv) FAST_FUNC;
740 static int builtin_exit(char **argv) FAST_FUNC;
741 static int builtin_export(char **argv) FAST_FUNC;
742 #if ENABLE_HUSH_JOB
743 static int builtin_fg_bg(char **argv) FAST_FUNC;
744 static int builtin_jobs(char **argv) FAST_FUNC;
745 #endif
746 #if ENABLE_HUSH_HELP
747 static int builtin_help(char **argv) FAST_FUNC;
748 #endif
749 #if ENABLE_HUSH_LOCAL
750 static int builtin_local(char **argv) FAST_FUNC;
751 #endif
752 #if HUSH_DEBUG
753 static int builtin_memleak(char **argv) FAST_FUNC;
754 #endif
755 #if ENABLE_PRINTF
756 static int builtin_printf(char **argv) FAST_FUNC;
757 #endif
758 static int builtin_pwd(char **argv) FAST_FUNC;
759 static int builtin_read(char **argv) FAST_FUNC;
760 static int builtin_set(char **argv) FAST_FUNC;
761 static int builtin_shift(char **argv) FAST_FUNC;
762 static int builtin_source(char **argv) FAST_FUNC;
763 static int builtin_test(char **argv) FAST_FUNC;
764 static int builtin_trap(char **argv) FAST_FUNC;
765 static int builtin_type(char **argv) FAST_FUNC;
766 static int builtin_true(char **argv) FAST_FUNC;
767 static int builtin_umask(char **argv) FAST_FUNC;
768 static int builtin_unset(char **argv) FAST_FUNC;
769 static int builtin_wait(char **argv) FAST_FUNC;
770 #if ENABLE_HUSH_LOOPS
771 static int builtin_break(char **argv) FAST_FUNC;
772 static int builtin_continue(char **argv) FAST_FUNC;
773 #endif
774 #if ENABLE_HUSH_FUNCTIONS
775 static int builtin_return(char **argv) FAST_FUNC;
776 #endif
777
778 /* Table of built-in functions.  They can be forked or not, depending on
779  * context: within pipes, they fork.  As simple commands, they do not.
780  * When used in non-forking context, they can change global variables
781  * in the parent shell process.  If forked, of course they cannot.
782  * For example, 'unset foo | whatever' will parse and run, but foo will
783  * still be set at the end. */
784 struct built_in_command {
785         const char *b_cmd;
786         int (*b_function)(char **argv) FAST_FUNC;
787 #if ENABLE_HUSH_HELP
788         const char *b_descr;
789 # define BLTIN(cmd, func, help) { cmd, func, help }
790 #else
791 # define BLTIN(cmd, func, help) { cmd, func }
792 #endif
793 };
794
795 static const struct built_in_command bltins1[] = {
796         BLTIN("."        , builtin_source  , "Run commands in a file"),
797         BLTIN(":"        , builtin_true    , NULL),
798 #if ENABLE_HUSH_JOB
799         BLTIN("bg"       , builtin_fg_bg   , "Resume a job in the background"),
800 #endif
801 #if ENABLE_HUSH_LOOPS
802         BLTIN("break"    , builtin_break   , "Exit from a loop"),
803 #endif
804         BLTIN("cd"       , builtin_cd      , "Change directory"),
805 #if ENABLE_HUSH_LOOPS
806         BLTIN("continue" , builtin_continue, "Start new loop iteration"),
807 #endif
808         BLTIN("eval"     , builtin_eval    , "Construct and run shell command"),
809         BLTIN("exec"     , builtin_exec    , "Execute command, don't return to shell"),
810         BLTIN("exit"     , builtin_exit    , "Exit"),
811         BLTIN("export"   , builtin_export  , "Set environment variables"),
812 #if ENABLE_HUSH_JOB
813         BLTIN("fg"       , builtin_fg_bg   , "Bring job into the foreground"),
814 #endif
815 #if ENABLE_HUSH_HELP
816         BLTIN("help"     , builtin_help    , NULL),
817 #endif
818 #if ENABLE_HUSH_JOB
819         BLTIN("jobs"     , builtin_jobs    , "List jobs"),
820 #endif
821 #if ENABLE_HUSH_LOCAL
822         BLTIN("local"    , builtin_local   , "Set local variables"),
823 #endif
824 #if HUSH_DEBUG
825         BLTIN("memleak"  , builtin_memleak , NULL),
826 #endif
827         BLTIN("read"     , builtin_read    , "Input into variable"),
828 #if ENABLE_HUSH_FUNCTIONS
829         BLTIN("return"   , builtin_return  , "Return from a function"),
830 #endif
831         BLTIN("set"      , builtin_set     , "Set/unset positional parameters"),
832         BLTIN("shift"    , builtin_shift   , "Shift positional parameters"),
833 #if ENABLE_HUSH_BASH_COMPAT
834         BLTIN("source"   , builtin_source  , "Run commands in a file"),
835 #endif
836         BLTIN("trap"     , builtin_trap    , "Trap signals"),
837         BLTIN("type"     , builtin_type    , "Show command type"),
838         BLTIN("ulimit"   , shell_builtin_ulimit  , "Control resource limits"),
839         BLTIN("umask"    , builtin_umask   , "Set file creation mask"),
840         BLTIN("unset"    , builtin_unset   , "Unset variables"),
841         BLTIN("wait"     , builtin_wait    , "Wait for process"),
842 };
843 /* For now, echo and test are unconditionally enabled.
844  * Maybe make it configurable? */
845 static const struct built_in_command bltins2[] = {
846         BLTIN("["        , builtin_test    , NULL),
847         BLTIN("echo"     , builtin_echo    , NULL),
848 #if ENABLE_PRINTF
849         BLTIN("printf"   , builtin_printf  , NULL),
850 #endif
851         BLTIN("pwd"      , builtin_pwd     , NULL),
852         BLTIN("test"     , builtin_test    , NULL),
853 };
854
855
856 /* Debug printouts.
857  */
858 #if HUSH_DEBUG
859 /* prevent disasters with G.debug_indent < 0 */
860 # define indent() fprintf(stderr, "%*s", (G.debug_indent * 2) & 0xff, "")
861 # define debug_enter() (G.debug_indent++)
862 # define debug_leave() (G.debug_indent--)
863 #else
864 # define indent()      ((void)0)
865 # define debug_enter() ((void)0)
866 # define debug_leave() ((void)0)
867 #endif
868
869 #ifndef debug_printf
870 # define debug_printf(...) (indent(), fprintf(stderr, __VA_ARGS__))
871 #endif
872
873 #ifndef debug_printf_parse
874 # define debug_printf_parse(...) (indent(), fprintf(stderr, __VA_ARGS__))
875 #endif
876
877 #ifndef debug_printf_exec
878 #define debug_printf_exec(...) (indent(), fprintf(stderr, __VA_ARGS__))
879 #endif
880
881 #ifndef debug_printf_env
882 # define debug_printf_env(...) (indent(), fprintf(stderr, __VA_ARGS__))
883 #endif
884
885 #ifndef debug_printf_jobs
886 # define debug_printf_jobs(...) (indent(), fprintf(stderr, __VA_ARGS__))
887 # define DEBUG_JOBS 1
888 #else
889 # define DEBUG_JOBS 0
890 #endif
891
892 #ifndef debug_printf_expand
893 # define debug_printf_expand(...) (indent(), fprintf(stderr, __VA_ARGS__))
894 # define DEBUG_EXPAND 1
895 #else
896 # define DEBUG_EXPAND 0
897 #endif
898
899 #ifndef debug_printf_varexp
900 # define debug_printf_varexp(...) (indent(), fprintf(stderr, __VA_ARGS__))
901 #endif
902
903 #ifndef debug_printf_glob
904 # define debug_printf_glob(...) (indent(), fprintf(stderr, __VA_ARGS__))
905 # define DEBUG_GLOB 1
906 #else
907 # define DEBUG_GLOB 0
908 #endif
909
910 #ifndef debug_printf_list
911 # define debug_printf_list(...) (indent(), fprintf(stderr, __VA_ARGS__))
912 #endif
913
914 #ifndef debug_printf_subst
915 # define debug_printf_subst(...) (indent(), fprintf(stderr, __VA_ARGS__))
916 #endif
917
918 #ifndef debug_printf_clean
919 # define debug_printf_clean(...) (indent(), fprintf(stderr, __VA_ARGS__))
920 # define DEBUG_CLEAN 1
921 #else
922 # define DEBUG_CLEAN 0
923 #endif
924
925 #if DEBUG_EXPAND
926 static void debug_print_strings(const char *prefix, char **vv)
927 {
928         indent();
929         fprintf(stderr, "%s:\n", prefix);
930         while (*vv)
931                 fprintf(stderr, " '%s'\n", *vv++);
932 }
933 #else
934 # define debug_print_strings(prefix, vv) ((void)0)
935 #endif
936
937
938 /* Leak hunting. Use hush_leaktool.sh for post-processing.
939  */
940 #if LEAK_HUNTING
941 static void *xxmalloc(int lineno, size_t size)
942 {
943         void *ptr = xmalloc((size + 0xff) & ~0xff);
944         fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
945         return ptr;
946 }
947 static void *xxrealloc(int lineno, void *ptr, size_t size)
948 {
949         ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
950         fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
951         return ptr;
952 }
953 static char *xxstrdup(int lineno, const char *str)
954 {
955         char *ptr = xstrdup(str);
956         fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
957         return ptr;
958 }
959 static void xxfree(void *ptr)
960 {
961         fdprintf(2, "free %p\n", ptr);
962         free(ptr);
963 }
964 # define xmalloc(s)     xxmalloc(__LINE__, s)
965 # define xrealloc(p, s) xxrealloc(__LINE__, p, s)
966 # define xstrdup(s)     xxstrdup(__LINE__, s)
967 # define free(p)        xxfree(p)
968 #endif
969
970
971 /* Syntax and runtime errors. They always abort scripts.
972  * In interactive use they usually discard unparsed and/or unexecuted commands
973  * and return to the prompt.
974  * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
975  */
976 #if HUSH_DEBUG < 2
977 # define die_if_script(lineno, ...)             die_if_script(__VA_ARGS__)
978 # define syntax_error(lineno, msg)              syntax_error(msg)
979 # define syntax_error_at(lineno, msg)           syntax_error_at(msg)
980 # define syntax_error_unterm_ch(lineno, ch)     syntax_error_unterm_ch(ch)
981 # define syntax_error_unterm_str(lineno, s)     syntax_error_unterm_str(s)
982 # define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch)
983 #endif
984
985 static void die_if_script(unsigned lineno, const char *fmt, ...)
986 {
987         va_list p;
988
989 #if HUSH_DEBUG >= 2
990         bb_error_msg("hush.c:%u", lineno);
991 #endif
992         va_start(p, fmt);
993         bb_verror_msg(fmt, p, NULL);
994         va_end(p);
995         if (!G_interactive_fd)
996                 xfunc_die();
997 }
998
999 static void syntax_error(unsigned lineno, const char *msg)
1000 {
1001         if (msg)
1002                 die_if_script(lineno, "syntax error: %s", msg);
1003         else
1004                 die_if_script(lineno, "syntax error", NULL);
1005 }
1006
1007 static void syntax_error_at(unsigned lineno, const char *msg)
1008 {
1009         die_if_script(lineno, "syntax error at '%s'", msg);
1010 }
1011
1012 static void syntax_error_unterm_str(unsigned lineno, const char *s)
1013 {
1014         die_if_script(lineno, "syntax error: unterminated %s", s);
1015 }
1016
1017 /* It so happens that all such cases are totally fatal
1018  * even if shell is interactive: EOF while looking for closing
1019  * delimiter. There is nowhere to read stuff from after that,
1020  * it's EOF! The only choice is to terminate.
1021  */
1022 static void syntax_error_unterm_ch(unsigned lineno, char ch) NORETURN;
1023 static void syntax_error_unterm_ch(unsigned lineno, char ch)
1024 {
1025         char msg[2] = { ch, '\0' };
1026         syntax_error_unterm_str(lineno, msg);
1027         xfunc_die();
1028 }
1029
1030 static void syntax_error_unexpected_ch(unsigned lineno, int ch)
1031 {
1032         char msg[2];
1033         msg[0] = ch;
1034         msg[1] = '\0';
1035         die_if_script(lineno, "syntax error: unexpected %s", ch == EOF ? "EOF" : msg);
1036 }
1037
1038 #if HUSH_DEBUG < 2
1039 # undef die_if_script
1040 # undef syntax_error
1041 # undef syntax_error_at
1042 # undef syntax_error_unterm_ch
1043 # undef syntax_error_unterm_str
1044 # undef syntax_error_unexpected_ch
1045 #else
1046 # define die_if_script(...)             die_if_script(__LINE__, __VA_ARGS__)
1047 # define syntax_error(msg)              syntax_error(__LINE__, msg)
1048 # define syntax_error_at(msg)           syntax_error_at(__LINE__, msg)
1049 # define syntax_error_unterm_ch(ch)     syntax_error_unterm_ch(__LINE__, ch)
1050 # define syntax_error_unterm_str(s)     syntax_error_unterm_str(__LINE__, s)
1051 # define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch)
1052 #endif
1053
1054
1055 #if ENABLE_HUSH_INTERACTIVE
1056 static void cmdedit_update_prompt(void);
1057 #else
1058 # define cmdedit_update_prompt() ((void)0)
1059 #endif
1060
1061
1062 /* Utility functions
1063  */
1064 /* Replace each \x with x in place, return ptr past NUL. */
1065 static char *unbackslash(char *src)
1066 {
1067         char *dst = src = strchrnul(src, '\\');
1068         while (1) {
1069                 if (*src == '\\')
1070                         src++;
1071                 if ((*dst++ = *src++) == '\0')
1072                         break;
1073         }
1074         return dst;
1075 }
1076
1077 static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
1078 {
1079         int i;
1080         unsigned count1;
1081         unsigned count2;
1082         char **v;
1083
1084         v = strings;
1085         count1 = 0;
1086         if (v) {
1087                 while (*v) {
1088                         count1++;
1089                         v++;
1090                 }
1091         }
1092         count2 = 0;
1093         v = add;
1094         while (*v) {
1095                 count2++;
1096                 v++;
1097         }
1098         v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
1099         v[count1 + count2] = NULL;
1100         i = count2;
1101         while (--i >= 0)
1102                 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
1103         return v;
1104 }
1105 #if LEAK_HUNTING
1106 static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
1107 {
1108         char **ptr = add_strings_to_strings(strings, add, need_to_dup);
1109         fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
1110         return ptr;
1111 }
1112 #define add_strings_to_strings(strings, add, need_to_dup) \
1113         xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
1114 #endif
1115
1116 /* Note: takes ownership of "add" ptr (it is not strdup'ed) */
1117 static char **add_string_to_strings(char **strings, char *add)
1118 {
1119         char *v[2];
1120         v[0] = add;
1121         v[1] = NULL;
1122         return add_strings_to_strings(strings, v, /*dup:*/ 0);
1123 }
1124 #if LEAK_HUNTING
1125 static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
1126 {
1127         char **ptr = add_string_to_strings(strings, add);
1128         fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
1129         return ptr;
1130 }
1131 #define add_string_to_strings(strings, add) \
1132         xx_add_string_to_strings(__LINE__, strings, add)
1133 #endif
1134
1135 static void free_strings(char **strings)
1136 {
1137         char **v;
1138
1139         if (!strings)
1140                 return;
1141         v = strings;
1142         while (*v) {
1143                 free(*v);
1144                 v++;
1145         }
1146         free(strings);
1147 }
1148
1149
1150 /* Helpers for setting new $n and restoring them back
1151  */
1152 typedef struct save_arg_t {
1153         char *sv_argv0;
1154         char **sv_g_argv;
1155         int sv_g_argc;
1156         smallint sv_g_malloced;
1157 } save_arg_t;
1158
1159 static void save_and_replace_G_args(save_arg_t *sv, char **argv)
1160 {
1161         int n;
1162
1163         sv->sv_argv0 = argv[0];
1164         sv->sv_g_argv = G.global_argv;
1165         sv->sv_g_argc = G.global_argc;
1166         sv->sv_g_malloced = G.global_args_malloced;
1167
1168         argv[0] = G.global_argv[0]; /* retain $0 */
1169         G.global_argv = argv;
1170         G.global_args_malloced = 0;
1171
1172         n = 1;
1173         while (*++argv)
1174                 n++;
1175         G.global_argc = n;
1176 }
1177
1178 static void restore_G_args(save_arg_t *sv, char **argv)
1179 {
1180         char **pp;
1181
1182         if (G.global_args_malloced) {
1183                 /* someone ran "set -- arg1 arg2 ...", undo */
1184                 pp = G.global_argv;
1185                 while (*++pp) /* note: does not free $0 */
1186                         free(*pp);
1187                 free(G.global_argv);
1188         }
1189         argv[0] = sv->sv_argv0;
1190         G.global_argv = sv->sv_g_argv;
1191         G.global_argc = sv->sv_g_argc;
1192         G.global_args_malloced = sv->sv_g_malloced;
1193 }
1194
1195
1196 /* Basic theory of signal handling in shell
1197  * ========================================
1198  * This does not describe what hush does, rather, it is current understanding
1199  * what it _should_ do. If it doesn't, it's a bug.
1200  * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
1201  *
1202  * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
1203  * is finished or backgrounded. It is the same in interactive and
1204  * non-interactive shells, and is the same regardless of whether
1205  * a user trap handler is installed or a shell special one is in effect.
1206  * ^C or ^Z from keyboard seems to execute "at once" because it usually
1207  * backgrounds (i.e. stops) or kills all members of currently running
1208  * pipe.
1209  *
1210  * Wait builtin in interruptible by signals for which user trap is set
1211  * or by SIGINT in interactive shell.
1212  *
1213  * Trap handlers will execute even within trap handlers. (right?)
1214  *
1215  * User trap handlers are forgotten when subshell ("(cmd)") is entered,
1216  * except for handlers set to '' (empty string).
1217  *
1218  * If job control is off, backgrounded commands ("cmd &")
1219  * have SIGINT, SIGQUIT set to SIG_IGN.
1220  *
1221  * Commands which are run in command substitution ("`cmd`")
1222  * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
1223  *
1224  * Ordinary commands have signals set to SIG_IGN/DFL as inherited
1225  * by the shell from its parent.
1226  *
1227  * Signals which differ from SIG_DFL action
1228  * (note: child (i.e., [v]forked) shell is not an interactive shell):
1229  *
1230  * SIGQUIT: ignore
1231  * SIGTERM (interactive): ignore
1232  * SIGHUP (interactive):
1233  *    send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
1234  * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
1235  *    Note that ^Z is handled not by trapping SIGTSTP, but by seeing
1236  *    that all pipe members are stopped. Try this in bash:
1237  *    while :; do :; done - ^Z does not background it
1238  *    (while :; do :; done) - ^Z backgrounds it
1239  * SIGINT (interactive): wait for last pipe, ignore the rest
1240  *    of the command line, show prompt. NB: ^C does not send SIGINT
1241  *    to interactive shell while shell is waiting for a pipe,
1242  *    since shell is bg'ed (is not in foreground process group).
1243  *    Example 1: this waits 5 sec, but does not execute ls:
1244  *    "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
1245  *    Example 2: this does not wait and does not execute ls:
1246  *    "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
1247  *    Example 3: this does not wait 5 sec, but executes ls:
1248  *    "sleep 5; ls -l" + press ^C
1249  *
1250  * (What happens to signals which are IGN on shell start?)
1251  * (What happens with signal mask on shell start?)
1252  *
1253  * Implementation in hush
1254  * ======================
1255  * We use in-kernel pending signal mask to determine which signals were sent.
1256  * We block all signals which we don't want to take action immediately,
1257  * i.e. we block all signals which need to have special handling as described
1258  * above, and all signals which have traps set.
1259  * After each pipe execution, we extract any pending signals via sigtimedwait()
1260  * and act on them.
1261  *
1262  * unsigned non_DFL_mask: a mask of such "special" signals
1263  * sigset_t blocked_set:  current blocked signal set
1264  *
1265  * "trap - SIGxxx":
1266  *    clear bit in blocked_set unless it is also in non_DFL_mask
1267  * "trap 'cmd' SIGxxx":
1268  *    set bit in blocked_set (even if 'cmd' is '')
1269  * after [v]fork, if we plan to be a shell:
1270  *    unblock signals with special interactive handling
1271  *    (child shell is not interactive),
1272  *    unset all traps except '' (note: regardless of child shell's type - {}, (), etc)
1273  * after [v]fork, if we plan to exec:
1274  *    POSIX says fork clears pending signal mask in child - no need to clear it.
1275  *    Restore blocked signal set to one inherited by shell just prior to exec.
1276  *
1277  * Note: as a result, we do not use signal handlers much. The only uses
1278  * are to count SIGCHLDs
1279  * and to restore tty pgrp on signal-induced exit.
1280  *
1281  * Note 2 (compat):
1282  * Standard says "When a subshell is entered, traps that are not being ignored
1283  * are set to the default actions". bash interprets it so that traps which
1284  * are set to '' (ignore) are NOT reset to defaults. We do the same.
1285  */
1286 enum {
1287         SPECIAL_INTERACTIVE_SIGS = 0
1288                 | (1 << SIGTERM)
1289                 | (1 << SIGINT)
1290                 | (1 << SIGHUP)
1291                 ,
1292         SPECIAL_JOB_SIGS = 0
1293 #if ENABLE_HUSH_JOB
1294                 | (1 << SIGTTIN)
1295                 | (1 << SIGTTOU)
1296                 | (1 << SIGTSTP)
1297 #endif
1298 };
1299
1300 #if ENABLE_HUSH_FAST
1301 static void SIGCHLD_handler(int sig UNUSED_PARAM)
1302 {
1303         G.count_SIGCHLD++;
1304 //bb_error_msg("[%d] SIGCHLD_handler: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
1305 }
1306 #endif
1307
1308 #if ENABLE_HUSH_JOB
1309
1310 /* After [v]fork, in child: do not restore tty pgrp on xfunc death */
1311 # define disable_restore_tty_pgrp_on_exit() (die_sleep = 0)
1312 /* After [v]fork, in parent: restore tty pgrp on xfunc death */
1313 # define enable_restore_tty_pgrp_on_exit()  (die_sleep = -1)
1314
1315 /* Restores tty foreground process group, and exits.
1316  * May be called as signal handler for fatal signal
1317  * (will resend signal to itself, producing correct exit state)
1318  * or called directly with -EXITCODE.
1319  * We also call it if xfunc is exiting. */
1320 static void sigexit(int sig) NORETURN;
1321 static void sigexit(int sig)
1322 {
1323         /* Disable all signals: job control, SIGPIPE, etc. */
1324         sigprocmask_allsigs(SIG_BLOCK);
1325
1326         /* Careful: we can end up here after [v]fork. Do not restore
1327          * tty pgrp then, only top-level shell process does that */
1328         if (G_saved_tty_pgrp && getpid() == G.root_pid)
1329                 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
1330
1331         /* Not a signal, just exit */
1332         if (sig <= 0)
1333                 _exit(- sig);
1334
1335         kill_myself_with_sig(sig); /* does not return */
1336 }
1337 #else
1338
1339 # define disable_restore_tty_pgrp_on_exit() ((void)0)
1340 # define enable_restore_tty_pgrp_on_exit()  ((void)0)
1341
1342 #endif
1343
1344 /* Restores tty foreground process group, and exits. */
1345 static void hush_exit(int exitcode) NORETURN;
1346 static void hush_exit(int exitcode)
1347 {
1348         if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) {
1349                 /* Prevent recursion:
1350                  * trap "echo Hi; exit" EXIT; exit
1351                  */
1352                 char *argv[3];
1353                 /* argv[0] is unused */
1354                 argv[1] = G.traps[0];
1355                 argv[2] = NULL;
1356                 G.traps[0] = NULL;
1357                 G.exiting = 1;
1358                 builtin_eval(argv);
1359                 /* free(argv[1]); - why bother */
1360         }
1361
1362 #if ENABLE_HUSH_JOB
1363         fflush_all();
1364         sigexit(- (exitcode & 0xff));
1365 #else
1366         exit(exitcode);
1367 #endif
1368 }
1369
1370 static int check_and_run_traps(int sig)
1371 {
1372         static const struct timespec zero_timespec;
1373         smalluint save_rcode;
1374         int last_sig = 0;
1375
1376         if (sig)
1377                 goto jump_in;
1378         while (1) {
1379                 sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec);
1380                 if (sig <= 0)
1381                         break;
1382  jump_in:
1383                 last_sig = sig;
1384                 if (G.traps && G.traps[sig]) {
1385                         if (G.traps[sig][0]) {
1386                                 /* We have user-defined handler */
1387                                 char *argv[3];
1388                                 /* argv[0] is unused */
1389                                 argv[1] = G.traps[sig];
1390                                 argv[2] = NULL;
1391                                 save_rcode = G.last_exitcode;
1392                                 builtin_eval(argv);
1393                                 G.last_exitcode = save_rcode;
1394                         } /* else: "" trap, ignoring signal */
1395                         continue;
1396                 }
1397                 /* not a trap: special action */
1398                 switch (sig) {
1399 #if ENABLE_HUSH_FAST
1400                 case SIGCHLD:
1401                         G.count_SIGCHLD++;
1402 //bb_error_msg("[%d] check_and_run_traps: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
1403                         break;
1404 #endif
1405                 case SIGINT:
1406                         /* Builtin was ^C'ed, make it look prettier: */
1407                         bb_putchar('\n');
1408                         G.flag_SIGINT = 1;
1409                         break;
1410 #if ENABLE_HUSH_JOB
1411                 case SIGHUP: {
1412                         struct pipe *job;
1413                         /* bash is observed to signal whole process groups,
1414                          * not individual processes */
1415                         for (job = G.job_list; job; job = job->next) {
1416                                 if (job->pgrp <= 0)
1417                                         continue;
1418                                 debug_printf_exec("HUPing pgrp %d\n", job->pgrp);
1419                                 if (kill(- job->pgrp, SIGHUP) == 0)
1420                                         kill(- job->pgrp, SIGCONT);
1421                         }
1422                         sigexit(SIGHUP);
1423                 }
1424 #endif
1425                 default: /* ignored: */
1426                         /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
1427                         break;
1428                 }
1429         }
1430         return last_sig;
1431 }
1432
1433
1434 static const char *get_cwd(int force)
1435 {
1436         if (force || G.cwd == NULL) {
1437                 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1438                  * we must not try to free(bb_msg_unknown) */
1439                 if (G.cwd == bb_msg_unknown)
1440                         G.cwd = NULL;
1441                 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1442                 if (!G.cwd)
1443                         G.cwd = bb_msg_unknown;
1444         }
1445         return G.cwd;
1446 }
1447
1448
1449 /*
1450  * Shell and environment variable support
1451  */
1452 static struct variable **get_ptr_to_local_var(const char *name, unsigned len)
1453 {
1454         struct variable **pp;
1455         struct variable *cur;
1456
1457         pp = &G.top_var;
1458         while ((cur = *pp) != NULL) {
1459                 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
1460                         return pp;
1461                 pp = &cur->next;
1462         }
1463         return NULL;
1464 }
1465
1466 static const char* FAST_FUNC get_local_var_value(const char *name)
1467 {
1468         struct variable **vpp;
1469         unsigned len = strlen(name);
1470
1471         if (G.expanded_assignments) {
1472                 char **cpp = G.expanded_assignments;
1473                 while (*cpp) {
1474                         char *cp = *cpp;
1475                         if (strncmp(cp, name, len) == 0 && cp[len] == '=')
1476                                 return cp + len + 1;
1477                         cpp++;
1478                 }
1479         }
1480
1481         vpp = get_ptr_to_local_var(name, len);
1482         if (vpp)
1483                 return (*vpp)->varstr + len + 1;
1484
1485         if (strcmp(name, "PPID") == 0)
1486                 return utoa(G.root_ppid);
1487         // bash compat: UID? EUID?
1488 #if ENABLE_HUSH_RANDOM_SUPPORT
1489         if (strcmp(name, "RANDOM") == 0)
1490                 return utoa(next_random(&G.random_gen));
1491 #endif
1492         return NULL;
1493 }
1494
1495 /* str holds "NAME=VAL" and is expected to be malloced.
1496  * We take ownership of it.
1497  * flg_export:
1498  *  0: do not change export flag
1499  *     (if creating new variable, flag will be 0)
1500  *  1: set export flag and putenv the variable
1501  * -1: clear export flag and unsetenv the variable
1502  * flg_read_only is set only when we handle -R var=val
1503  */
1504 #if !BB_MMU && ENABLE_HUSH_LOCAL
1505 /* all params are used */
1506 #elif BB_MMU && ENABLE_HUSH_LOCAL
1507 #define set_local_var(str, flg_export, local_lvl, flg_read_only) \
1508         set_local_var(str, flg_export, local_lvl)
1509 #elif BB_MMU && !ENABLE_HUSH_LOCAL
1510 #define set_local_var(str, flg_export, local_lvl, flg_read_only) \
1511         set_local_var(str, flg_export)
1512 #elif !BB_MMU && !ENABLE_HUSH_LOCAL
1513 #define set_local_var(str, flg_export, local_lvl, flg_read_only) \
1514         set_local_var(str, flg_export, flg_read_only)
1515 #endif
1516 static int set_local_var(char *str, int flg_export, int local_lvl, int flg_read_only)
1517 {
1518         struct variable **var_pp;
1519         struct variable *cur;
1520         char *eq_sign;
1521         int name_len;
1522
1523         eq_sign = strchr(str, '=');
1524         if (!eq_sign) { /* not expected to ever happen? */
1525                 free(str);
1526                 return -1;
1527         }
1528
1529         name_len = eq_sign - str + 1; /* including '=' */
1530         var_pp = &G.top_var;
1531         while ((cur = *var_pp) != NULL) {
1532                 if (strncmp(cur->varstr, str, name_len) != 0) {
1533                         var_pp = &cur->next;
1534                         continue;
1535                 }
1536                 /* We found an existing var with this name */
1537                 if (cur->flg_read_only) {
1538 #if !BB_MMU
1539                         if (!flg_read_only)
1540 #endif
1541                                 bb_error_msg("%s: readonly variable", str);
1542                         free(str);
1543                         return -1;
1544                 }
1545                 if (flg_export == -1) { // "&& cur->flg_export" ?
1546                         debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1547                         *eq_sign = '\0';
1548                         unsetenv(str);
1549                         *eq_sign = '=';
1550                 }
1551 #if ENABLE_HUSH_LOCAL
1552                 if (cur->func_nest_level < local_lvl) {
1553                         /* New variable is declared as local,
1554                          * and existing one is global, or local
1555                          * from enclosing function.
1556                          * Remove and save old one: */
1557                         *var_pp = cur->next;
1558                         cur->next = *G.shadowed_vars_pp;
1559                         *G.shadowed_vars_pp = cur;
1560                         /* bash 3.2.33(1) and exported vars:
1561                          * # export z=z
1562                          * # f() { local z=a; env | grep ^z; }
1563                          * # f
1564                          * z=a
1565                          * # env | grep ^z
1566                          * z=z
1567                          */
1568                         if (cur->flg_export)
1569                                 flg_export = 1;
1570                         break;
1571                 }
1572 #endif
1573                 if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) {
1574  free_and_exp:
1575                         free(str);
1576                         goto exp;
1577                 }
1578                 if (cur->max_len != 0) {
1579                         if (cur->max_len >= strlen(str)) {
1580                                 /* This one is from startup env, reuse space */
1581                                 strcpy(cur->varstr, str);
1582                                 goto free_and_exp;
1583                         }
1584                 } else {
1585                         /* max_len == 0 signifies "malloced" var, which we can
1586                          * (and has to) free */
1587                         free(cur->varstr);
1588                 }
1589                 cur->max_len = 0;
1590                 goto set_str_and_exp;
1591         }
1592
1593         /* Not found - create new variable struct */
1594         cur = xzalloc(sizeof(*cur));
1595 #if ENABLE_HUSH_LOCAL
1596         cur->func_nest_level = local_lvl;
1597 #endif
1598         cur->next = *var_pp;
1599         *var_pp = cur;
1600
1601  set_str_and_exp:
1602         cur->varstr = str;
1603 #if !BB_MMU
1604         cur->flg_read_only = flg_read_only;
1605 #endif
1606  exp:
1607         if (flg_export == 1)
1608                 cur->flg_export = 1;
1609         if (name_len == 4 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
1610                 cmdedit_update_prompt();
1611         if (cur->flg_export) {
1612                 if (flg_export == -1) {
1613                         cur->flg_export = 0;
1614                         /* unsetenv was already done */
1615                 } else {
1616                         debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1617                         return putenv(cur->varstr);
1618                 }
1619         }
1620         return 0;
1621 }
1622
1623 /* Used at startup and after each cd */
1624 static void set_pwd_var(int exp)
1625 {
1626         set_local_var(xasprintf("PWD=%s", get_cwd(/*force:*/ 1)),
1627                 /*exp:*/ exp, /*lvl:*/ 0, /*ro:*/ 0);
1628 }
1629
1630 static int unset_local_var_len(const char *name, int name_len)
1631 {
1632         struct variable *cur;
1633         struct variable **var_pp;
1634
1635         if (!name)
1636                 return EXIT_SUCCESS;
1637         var_pp = &G.top_var;
1638         while ((cur = *var_pp) != NULL) {
1639                 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1640                         if (cur->flg_read_only) {
1641                                 bb_error_msg("%s: readonly variable", name);
1642                                 return EXIT_FAILURE;
1643                         }
1644                         *var_pp = cur->next;
1645                         debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1646                         bb_unsetenv(cur->varstr);
1647                         if (name_len == 3 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
1648                                 cmdedit_update_prompt();
1649                         if (!cur->max_len)
1650                                 free(cur->varstr);
1651                         free(cur);
1652                         return EXIT_SUCCESS;
1653                 }
1654                 var_pp = &cur->next;
1655         }
1656         return EXIT_SUCCESS;
1657 }
1658
1659 static int unset_local_var(const char *name)
1660 {
1661         return unset_local_var_len(name, strlen(name));
1662 }
1663
1664 static void unset_vars(char **strings)
1665 {
1666         char **v;
1667
1668         if (!strings)
1669                 return;
1670         v = strings;
1671         while (*v) {
1672                 const char *eq = strchrnul(*v, '=');
1673                 unset_local_var_len(*v, (int)(eq - *v));
1674                 v++;
1675         }
1676         free(strings);
1677 }
1678
1679 static void FAST_FUNC set_local_var_from_halves(const char *name, const char *val)
1680 {
1681         char *var = xasprintf("%s=%s", name, val);
1682         set_local_var(var, /*flags:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
1683 }
1684
1685
1686 /*
1687  * Helpers for "var1=val1 var2=val2 cmd" feature
1688  */
1689 static void add_vars(struct variable *var)
1690 {
1691         struct variable *next;
1692
1693         while (var) {
1694                 next = var->next;
1695                 var->next = G.top_var;
1696                 G.top_var = var;
1697                 if (var->flg_export) {
1698                         debug_printf_env("%s: restoring exported '%s'\n", __func__, var->varstr);
1699                         putenv(var->varstr);
1700                 } else {
1701                         debug_printf_env("%s: restoring variable '%s'\n", __func__, var->varstr);
1702                 }
1703                 var = next;
1704         }
1705 }
1706
1707 static struct variable *set_vars_and_save_old(char **strings)
1708 {
1709         char **s;
1710         struct variable *old = NULL;
1711
1712         if (!strings)
1713                 return old;
1714         s = strings;
1715         while (*s) {
1716                 struct variable *var_p;
1717                 struct variable **var_pp;
1718                 char *eq;
1719
1720                 eq = strchr(*s, '=');
1721                 if (eq) {
1722                         var_pp = get_ptr_to_local_var(*s, eq - *s);
1723                         if (var_pp) {
1724                                 /* Remove variable from global linked list */
1725                                 var_p = *var_pp;
1726                                 debug_printf_env("%s: removing '%s'\n", __func__, var_p->varstr);
1727                                 *var_pp = var_p->next;
1728                                 /* Add it to returned list */
1729                                 var_p->next = old;
1730                                 old = var_p;
1731                         }
1732                         set_local_var(*s, /*exp:*/ 1, /*lvl:*/ 0, /*ro:*/ 0);
1733                 }
1734                 s++;
1735         }
1736         return old;
1737 }
1738
1739
1740 /*
1741  * in_str support
1742  */
1743 static int FAST_FUNC static_get(struct in_str *i)
1744 {
1745         int ch = *i->p;
1746         if (ch != '\0') {
1747                 i->p++;
1748                 return ch;
1749         }
1750         return EOF;
1751 }
1752
1753 static int FAST_FUNC static_peek(struct in_str *i)
1754 {
1755         return *i->p;
1756 }
1757
1758 #if ENABLE_HUSH_INTERACTIVE
1759
1760 static void cmdedit_update_prompt(void)
1761 {
1762         if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1763                 G.PS1 = get_local_var_value("PS1");
1764                 if (G.PS1 == NULL)
1765                         G.PS1 = "\\w \\$ ";
1766                 G.PS2 = get_local_var_value("PS2");
1767         } else {
1768                 G.PS1 = NULL;
1769         }
1770         if (G.PS2 == NULL)
1771                 G.PS2 = "> ";
1772 }
1773
1774 static const char *setup_prompt_string(int promptmode)
1775 {
1776         const char *prompt_str;
1777         debug_printf("setup_prompt_string %d ", promptmode);
1778         if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1779                 /* Set up the prompt */
1780                 if (promptmode == 0) { /* PS1 */
1781                         free((char*)G.PS1);
1782                         /* bash uses $PWD value, even if it is set by user.
1783                          * It uses current dir only if PWD is unset.
1784                          * We always use current dir. */
1785                         G.PS1 = xasprintf("%s %c ", get_cwd(0), (geteuid() != 0) ? '$' : '#');
1786                         prompt_str = G.PS1;
1787                 } else
1788                         prompt_str = G.PS2;
1789         } else
1790                 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
1791         debug_printf("result '%s'\n", prompt_str);
1792         return prompt_str;
1793 }
1794
1795 static void get_user_input(struct in_str *i)
1796 {
1797         int r;
1798         const char *prompt_str;
1799
1800         prompt_str = setup_prompt_string(i->promptmode);
1801 # if ENABLE_FEATURE_EDITING
1802         /* Enable command line editing only while a command line
1803          * is actually being read */
1804         do {
1805                 G.flag_SIGINT = 0;
1806                 /* buglet: SIGINT will not make new prompt to appear _at once_,
1807                  * only after <Enter>. (^C will work) */
1808                 r = read_line_input(prompt_str, G.user_input_buf, CONFIG_FEATURE_EDITING_MAX_LEN-1, G.line_input_state);
1809                 /* catch *SIGINT* etc (^C is handled by read_line_input) */
1810                 check_and_run_traps(0);
1811         } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
1812         i->eof_flag = (r < 0);
1813         if (i->eof_flag) { /* EOF/error detected */
1814                 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1815                 G.user_input_buf[1] = '\0';
1816         }
1817 # else
1818         do {
1819                 G.flag_SIGINT = 0;
1820                 fputs(prompt_str, stdout);
1821                 fflush_all();
1822                 G.user_input_buf[0] = r = fgetc(i->file);
1823                 /*G.user_input_buf[1] = '\0'; - already is and never changed */
1824 //do we need check_and_run_traps(0)? (maybe only if stdin)
1825         } while (G.flag_SIGINT);
1826         i->eof_flag = (r == EOF);
1827 # endif
1828         i->p = G.user_input_buf;
1829 }
1830
1831 #endif  /* INTERACTIVE */
1832
1833 /* This is the magic location that prints prompts
1834  * and gets data back from the user */
1835 static int FAST_FUNC file_get(struct in_str *i)
1836 {
1837         int ch;
1838
1839         /* If there is data waiting, eat it up */
1840         if (i->p && *i->p) {
1841 #if ENABLE_HUSH_INTERACTIVE
1842  take_cached:
1843 #endif
1844                 ch = *i->p++;
1845                 if (i->eof_flag && !*i->p)
1846                         ch = EOF;
1847                 /* note: ch is never NUL */
1848         } else {
1849                 /* need to double check i->file because we might be doing something
1850                  * more complicated by now, like sourcing or substituting. */
1851 #if ENABLE_HUSH_INTERACTIVE
1852                 if (G_interactive_fd && i->promptme && i->file == stdin) {
1853                         do {
1854                                 get_user_input(i);
1855                         } while (!*i->p); /* need non-empty line */
1856                         i->promptmode = 1; /* PS2 */
1857                         i->promptme = 0;
1858                         goto take_cached;
1859                 }
1860 #endif
1861                 do ch = fgetc(i->file); while (ch == '\0');
1862         }
1863         debug_printf("file_get: got '%c' %d\n", ch, ch);
1864 #if ENABLE_HUSH_INTERACTIVE
1865         if (ch == '\n')
1866                 i->promptme = 1;
1867 #endif
1868         return ch;
1869 }
1870
1871 /* All callers guarantee this routine will never
1872  * be used right after a newline, so prompting is not needed.
1873  */
1874 static int FAST_FUNC file_peek(struct in_str *i)
1875 {
1876         int ch;
1877         if (i->p && *i->p) {
1878                 if (i->eof_flag && !i->p[1])
1879                         return EOF;
1880                 return *i->p;
1881                 /* note: ch is never NUL */
1882         }
1883         do ch = fgetc(i->file); while (ch == '\0');
1884         i->eof_flag = (ch == EOF);
1885         i->peek_buf[0] = ch;
1886         i->peek_buf[1] = '\0';
1887         i->p = i->peek_buf;
1888         debug_printf("file_peek: got '%c' %d\n", ch, ch);
1889         return ch;
1890 }
1891
1892 static void setup_file_in_str(struct in_str *i, FILE *f)
1893 {
1894         i->peek = file_peek;
1895         i->get = file_get;
1896 #if ENABLE_HUSH_INTERACTIVE
1897         i->promptme = 1;
1898         i->promptmode = 0; /* PS1 */
1899 #endif
1900         i->file = f;
1901         i->p = NULL;
1902 }
1903
1904 static void setup_string_in_str(struct in_str *i, const char *s)
1905 {
1906         i->peek = static_peek;
1907         i->get = static_get;
1908 #if ENABLE_HUSH_INTERACTIVE
1909         i->promptme = 1;
1910         i->promptmode = 0; /* PS1 */
1911 #endif
1912         i->p = s;
1913         i->eof_flag = 0;
1914 }
1915
1916
1917 /*
1918  * o_string support
1919  */
1920 #define B_CHUNK  (32 * sizeof(char*))
1921
1922 static void o_reset_to_empty_unquoted(o_string *o)
1923 {
1924         o->length = 0;
1925         o->has_quoted_part = 0;
1926         if (o->data)
1927                 o->data[0] = '\0';
1928 }
1929
1930 static void o_free(o_string *o)
1931 {
1932         free(o->data);
1933         memset(o, 0, sizeof(*o));
1934 }
1935
1936 static ALWAYS_INLINE void o_free_unsafe(o_string *o)
1937 {
1938         free(o->data);
1939 }
1940
1941 static void o_grow_by(o_string *o, int len)
1942 {
1943         if (o->length + len > o->maxlen) {
1944                 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1945                 o->data = xrealloc(o->data, 1 + o->maxlen);
1946         }
1947 }
1948
1949 static void o_addchr(o_string *o, int ch)
1950 {
1951         debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1952         o_grow_by(o, 1);
1953         o->data[o->length] = ch;
1954         o->length++;
1955         o->data[o->length] = '\0';
1956 }
1957
1958 static void o_addblock(o_string *o, const char *str, int len)
1959 {
1960         o_grow_by(o, len);
1961         memcpy(&o->data[o->length], str, len);
1962         o->length += len;
1963         o->data[o->length] = '\0';
1964 }
1965
1966 static void o_addstr(o_string *o, const char *str)
1967 {
1968         o_addblock(o, str, strlen(str));
1969 }
1970
1971 #if !BB_MMU
1972 static void nommu_addchr(o_string *o, int ch)
1973 {
1974         if (o)
1975                 o_addchr(o, ch);
1976 }
1977 #else
1978 # define nommu_addchr(o, str) ((void)0)
1979 #endif
1980
1981 static void o_addstr_with_NUL(o_string *o, const char *str)
1982 {
1983         o_addblock(o, str, strlen(str) + 1);
1984 }
1985
1986 static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
1987 {
1988         while (len) {
1989                 len--;
1990                 o_addchr(o, *str);
1991                 if (*str++ == '\\') {
1992                         /* \z -> \\\z; \<eol> -> \\<eol> */
1993                         o_addchr(o, '\\');
1994                         if (len) {
1995                                 len--;
1996                                 o_addchr(o, '\\');
1997                                 o_addchr(o, *str++);
1998                         }
1999                 }
2000         }
2001 }
2002
2003 #undef HUSH_BRACE_EXP
2004 /*
2005  * HUSH_BRACE_EXP code needs corresponding quoting on variable expansion side.
2006  * Currently, "v='{q,w}'; echo $v" erroneously expands braces in $v.
2007  * Apparently, on unquoted $v bash still does globbing
2008  * ("v='*.txt'; echo $v" prints all .txt files),
2009  * but NOT brace expansion! Thus, there should be TWO independent
2010  * quoting mechanisms on $v expansion side: one protects
2011  * $v from brace expansion, and other additionally protects "$v" against globbing.
2012  * We have only second one.
2013  */
2014
2015 #ifdef HUSH_BRACE_EXP
2016 # define MAYBE_BRACES "{}"
2017 #else
2018 # define MAYBE_BRACES ""
2019 #endif
2020
2021 /* My analysis of quoting semantics tells me that state information
2022  * is associated with a destination, not a source.
2023  */
2024 static void o_addqchr(o_string *o, int ch)
2025 {
2026         int sz = 1;
2027         char *found = strchr("*?[\\" MAYBE_BRACES, ch);
2028         if (found)
2029                 sz++;
2030         o_grow_by(o, sz);
2031         if (found) {
2032                 o->data[o->length] = '\\';
2033                 o->length++;
2034         }
2035         o->data[o->length] = ch;
2036         o->length++;
2037         o->data[o->length] = '\0';
2038 }
2039
2040 static void o_addQchr(o_string *o, int ch)
2041 {
2042         int sz = 1;
2043         if ((o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)
2044          && strchr("*?[\\" MAYBE_BRACES, ch)
2045         ) {
2046                 sz++;
2047                 o->data[o->length] = '\\';
2048                 o->length++;
2049         }
2050         o_grow_by(o, sz);
2051         o->data[o->length] = ch;
2052         o->length++;
2053         o->data[o->length] = '\0';
2054 }
2055
2056 static void o_addqblock(o_string *o, const char *str, int len)
2057 {
2058         while (len) {
2059                 char ch;
2060                 int sz;
2061                 int ordinary_cnt = strcspn(str, "*?[\\" MAYBE_BRACES);
2062                 if (ordinary_cnt > len) /* paranoia */
2063                         ordinary_cnt = len;
2064                 o_addblock(o, str, ordinary_cnt);
2065                 if (ordinary_cnt == len)
2066                         return;
2067                 str += ordinary_cnt;
2068                 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
2069
2070                 ch = *str++;
2071                 sz = 1;
2072                 if (ch) { /* it is necessarily one of "*?[\\" MAYBE_BRACES */
2073                         sz++;
2074                         o->data[o->length] = '\\';
2075                         o->length++;
2076                 }
2077                 o_grow_by(o, sz);
2078                 o->data[o->length] = ch;
2079                 o->length++;
2080                 o->data[o->length] = '\0';
2081         }
2082 }
2083
2084 static void o_addQblock(o_string *o, const char *str, int len)
2085 {
2086         if (!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)) {
2087                 o_addblock(o, str, len);
2088                 return;
2089         }
2090         o_addqblock(o, str, len);
2091 }
2092
2093 static void o_addQstr(o_string *o, const char *str)
2094 {
2095         o_addQblock(o, str, strlen(str));
2096 }
2097
2098 /* A special kind of o_string for $VAR and `cmd` expansion.
2099  * It contains char* list[] at the beginning, which is grown in 16 element
2100  * increments. Actual string data starts at the next multiple of 16 * (char*).
2101  * list[i] contains an INDEX (int!) into this string data.
2102  * It means that if list[] needs to grow, data needs to be moved higher up
2103  * but list[i]'s need not be modified.
2104  * NB: remembering how many list[i]'s you have there is crucial.
2105  * o_finalize_list() operation post-processes this structure - calculates
2106  * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
2107  */
2108 #if DEBUG_EXPAND || DEBUG_GLOB
2109 static void debug_print_list(const char *prefix, o_string *o, int n)
2110 {
2111         char **list = (char**)o->data;
2112         int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2113         int i = 0;
2114
2115         indent();
2116         fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d glob:%d quoted:%d escape:%d\n",
2117                         prefix, list, n, string_start, o->length, o->maxlen,
2118                         !!(o->o_expflags & EXP_FLAG_GLOB),
2119                         o->has_quoted_part,
2120                         !!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
2121         while (i < n) {
2122                 indent();
2123                 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
2124                                 o->data + (int)list[i] + string_start,
2125                                 o->data + (int)list[i] + string_start);
2126                 i++;
2127         }
2128         if (n) {
2129                 const char *p = o->data + (int)list[n - 1] + string_start;
2130                 indent();
2131                 fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
2132         }
2133 }
2134 #else
2135 # define debug_print_list(prefix, o, n) ((void)0)
2136 #endif
2137
2138 /* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
2139  * in list[n] so that it points past last stored byte so far.
2140  * It returns n+1. */
2141 static int o_save_ptr_helper(o_string *o, int n)
2142 {
2143         char **list = (char**)o->data;
2144         int string_start;
2145         int string_len;
2146
2147         if (!o->has_empty_slot) {
2148                 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2149                 string_len = o->length - string_start;
2150                 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
2151                         debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
2152                         /* list[n] points to string_start, make space for 16 more pointers */
2153                         o->maxlen += 0x10 * sizeof(list[0]);
2154                         o->data = xrealloc(o->data, o->maxlen + 1);
2155                         list = (char**)o->data;
2156                         memmove(list + n + 0x10, list + n, string_len);
2157                         o->length += 0x10 * sizeof(list[0]);
2158                 } else {
2159                         debug_printf_list("list[%d]=%d string_start=%d\n",
2160                                         n, string_len, string_start);
2161                 }
2162         } else {
2163                 /* We have empty slot at list[n], reuse without growth */
2164                 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
2165                 string_len = o->length - string_start;
2166                 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
2167                                 n, string_len, string_start);
2168                 o->has_empty_slot = 0;
2169         }
2170         list[n] = (char*)(uintptr_t)string_len;
2171         return n + 1;
2172 }
2173
2174 /* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
2175 static int o_get_last_ptr(o_string *o, int n)
2176 {
2177         char **list = (char**)o->data;
2178         int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2179
2180         return ((int)(uintptr_t)list[n-1]) + string_start;
2181 }
2182
2183 #ifdef HUSH_BRACE_EXP
2184 /* There in a GNU extension, GLOB_BRACE, but it is not usable:
2185  * first, it processes even {a} (no commas), second,
2186  * I didn't manage to make it return strings when they don't match
2187  * existing files. Need to re-implement it.
2188  */
2189
2190 /* Helper */
2191 static int glob_needed(const char *s)
2192 {
2193         while (*s) {
2194                 if (*s == '\\') {
2195                         if (!s[1])
2196                                 return 0;
2197                         s += 2;
2198                         continue;
2199                 }
2200                 if (*s == '*' || *s == '[' || *s == '?' || *s == '{')
2201                         return 1;
2202                 s++;
2203         }
2204         return 0;
2205 }
2206 /* Return pointer to next closing brace or to comma */
2207 static const char *next_brace_sub(const char *cp)
2208 {
2209         unsigned depth = 0;
2210         cp++;
2211         while (*cp != '\0') {
2212                 if (*cp == '\\') {
2213                         if (*++cp == '\0')
2214                                 break;
2215                         cp++;
2216                         continue;
2217                 }
2218                 if ((*cp == '}' && depth-- == 0) || (*cp == ',' && depth == 0))
2219                         break;
2220                 if (*cp++ == '{')
2221                         depth++;
2222         }
2223
2224         return *cp != '\0' ? cp : NULL;
2225 }
2226 /* Recursive brace globber. Note: may garble pattern[]. */
2227 static int glob_brace(char *pattern, o_string *o, int n)
2228 {
2229         char *new_pattern_buf;
2230         const char *begin;
2231         const char *next;
2232         const char *rest;
2233         const char *p;
2234         size_t rest_len;
2235
2236         debug_printf_glob("glob_brace('%s')\n", pattern);
2237
2238         begin = pattern;
2239         while (1) {
2240                 if (*begin == '\0')
2241                         goto simple_glob;
2242                 if (*begin == '{') {
2243                         /* Find the first sub-pattern and at the same time
2244                          * find the rest after the closing brace */
2245                         next = next_brace_sub(begin);
2246                         if (next == NULL) {
2247                                 /* An illegal expression */
2248                                 goto simple_glob;
2249                         }
2250                         if (*next == '}') {
2251                                 /* "{abc}" with no commas - illegal
2252                                  * brace expr, disregard and skip it */
2253                                 begin = next + 1;
2254                                 continue;
2255                         }
2256                         break;
2257                 }
2258                 if (*begin == '\\' && begin[1] != '\0')
2259                         begin++;
2260                 begin++;
2261         }
2262         debug_printf_glob("begin:%s\n", begin);
2263         debug_printf_glob("next:%s\n", next);
2264
2265         /* Now find the end of the whole brace expression */
2266         rest = next;
2267         while (*rest != '}') {
2268                 rest = next_brace_sub(rest);
2269                 if (rest == NULL) {
2270                         /* An illegal expression */
2271                         goto simple_glob;
2272                 }
2273                 debug_printf_glob("rest:%s\n", rest);
2274         }
2275         rest_len = strlen(++rest) + 1;
2276
2277         /* We are sure the brace expression is well-formed */
2278
2279         /* Allocate working buffer large enough for our work */
2280         new_pattern_buf = xmalloc(strlen(pattern));
2281
2282         /* We have a brace expression.  BEGIN points to the opening {,
2283          * NEXT points past the terminator of the first element, and REST
2284          * points past the final }.  We will accumulate result names from
2285          * recursive runs for each brace alternative in the buffer using
2286          * GLOB_APPEND.  */
2287
2288         p = begin + 1;
2289         while (1) {
2290                 /* Construct the new glob expression */
2291                 memcpy(
2292                         mempcpy(
2293                                 mempcpy(new_pattern_buf,
2294                                         /* We know the prefix for all sub-patterns */
2295                                         pattern, begin - pattern),
2296                                 p, next - p),
2297                         rest, rest_len);
2298
2299                 /* Note: glob_brace() may garble new_pattern_buf[].
2300                  * That's why we re-copy prefix every time (1st memcpy above).
2301                  */
2302                 n = glob_brace(new_pattern_buf, o, n);
2303                 if (*next == '}') {
2304                         /* We saw the last entry */
2305                         break;
2306                 }
2307                 p = next + 1;
2308                 next = next_brace_sub(next);
2309         }
2310         free(new_pattern_buf);
2311         return n;
2312
2313  simple_glob:
2314         {
2315                 int gr;
2316                 glob_t globdata;
2317
2318                 memset(&globdata, 0, sizeof(globdata));
2319                 gr = glob(pattern, 0, NULL, &globdata);
2320                 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
2321                 if (gr != 0) {
2322                         if (gr == GLOB_NOMATCH) {
2323                                 globfree(&globdata);
2324                                 /* NB: garbles parameter */
2325                                 unbackslash(pattern);
2326                                 o_addstr_with_NUL(o, pattern);
2327                                 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2328                                 return o_save_ptr_helper(o, n);
2329                         }
2330                         if (gr == GLOB_NOSPACE)
2331                                 bb_error_msg_and_die(bb_msg_memory_exhausted);
2332                         /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
2333                          * but we didn't specify it. Paranoia again. */
2334                         bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
2335                 }
2336                 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
2337                         char **argv = globdata.gl_pathv;
2338                         while (1) {
2339                                 o_addstr_with_NUL(o, *argv);
2340                                 n = o_save_ptr_helper(o, n);
2341                                 argv++;
2342                                 if (!*argv)
2343                                         break;
2344                         }
2345                 }
2346                 globfree(&globdata);
2347         }
2348         return n;
2349 }
2350 /* Performs globbing on last list[],
2351  * saving each result as a new list[].
2352  */
2353 static int perform_glob(o_string *o, int n)
2354 {
2355         char *pattern, *copy;
2356
2357         debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
2358         if (!o->data)
2359                 return o_save_ptr_helper(o, n);
2360         pattern = o->data + o_get_last_ptr(o, n);
2361         debug_printf_glob("glob pattern '%s'\n", pattern);
2362         if (!glob_needed(pattern)) {
2363                 /* unbackslash last string in o in place, fix length */
2364                 o->length = unbackslash(pattern) - o->data;
2365                 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2366                 return o_save_ptr_helper(o, n);
2367         }
2368
2369         copy = xstrdup(pattern);
2370         /* "forget" pattern in o */
2371         o->length = pattern - o->data;
2372         n = glob_brace(copy, o, n);
2373         free(copy);
2374         if (DEBUG_GLOB)
2375                 debug_print_list("perform_glob returning", o, n);
2376         return n;
2377 }
2378
2379 #else /* !HUSH_BRACE_EXP */
2380
2381 /* Helper */
2382 static int glob_needed(const char *s)
2383 {
2384         while (*s) {
2385                 if (*s == '\\') {
2386                         if (!s[1])
2387                                 return 0;
2388                         s += 2;
2389                         continue;
2390                 }
2391                 if (*s == '*' || *s == '[' || *s == '?')
2392                         return 1;
2393                 s++;
2394         }
2395         return 0;
2396 }
2397 /* Performs globbing on last list[],
2398  * saving each result as a new list[].
2399  */
2400 static int perform_glob(o_string *o, int n)
2401 {
2402         glob_t globdata;
2403         int gr;
2404         char *pattern;
2405
2406         debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
2407         if (!o->data)
2408                 return o_save_ptr_helper(o, n);
2409         pattern = o->data + o_get_last_ptr(o, n);
2410         debug_printf_glob("glob pattern '%s'\n", pattern);
2411         if (!glob_needed(pattern)) {
2412  literal:
2413                 /* unbackslash last string in o in place, fix length */
2414                 o->length = unbackslash(pattern) - o->data;
2415                 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2416                 return o_save_ptr_helper(o, n);
2417         }
2418
2419         memset(&globdata, 0, sizeof(globdata));
2420         /* Can't use GLOB_NOCHECK: it does not unescape the string.
2421          * If we glob "*.\*" and don't find anything, we need
2422          * to fall back to using literal "*.*", but GLOB_NOCHECK
2423          * will return "*.\*"!
2424          */
2425         gr = glob(pattern, 0, NULL, &globdata);
2426         debug_printf_glob("glob('%s'):%d\n", pattern, gr);
2427         if (gr != 0) {
2428                 if (gr == GLOB_NOMATCH) {
2429                         globfree(&globdata);
2430                         goto literal;
2431                 }
2432                 if (gr == GLOB_NOSPACE)
2433                         bb_error_msg_and_die(bb_msg_memory_exhausted);
2434                 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
2435                  * but we didn't specify it. Paranoia again. */
2436                 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
2437         }
2438         if (globdata.gl_pathv && globdata.gl_pathv[0]) {
2439                 char **argv = globdata.gl_pathv;
2440                 /* "forget" pattern in o */
2441                 o->length = pattern - o->data;
2442                 while (1) {
2443                         o_addstr_with_NUL(o, *argv);
2444                         n = o_save_ptr_helper(o, n);
2445                         argv++;
2446                         if (!*argv)
2447                                 break;
2448                 }
2449         }
2450         globfree(&globdata);
2451         if (DEBUG_GLOB)
2452                 debug_print_list("perform_glob returning", o, n);
2453         return n;
2454 }
2455
2456 #endif /* !HUSH_BRACE_EXP */
2457
2458 /* If o->o_expflags & EXP_FLAG_GLOB, glob the string so far remembered.
2459  * Otherwise, just finish current list[] and start new */
2460 static int o_save_ptr(o_string *o, int n)
2461 {
2462         if (o->o_expflags & EXP_FLAG_GLOB) {
2463                 /* If o->has_empty_slot, list[n] was already globbed
2464                  * (if it was requested back then when it was filled)
2465                  * so don't do that again! */
2466                 if (!o->has_empty_slot)
2467                         return perform_glob(o, n); /* o_save_ptr_helper is inside */
2468         }
2469         return o_save_ptr_helper(o, n);
2470 }
2471
2472 /* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
2473 static char **o_finalize_list(o_string *o, int n)
2474 {
2475         char **list;
2476         int string_start;
2477
2478         n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
2479         if (DEBUG_EXPAND)
2480                 debug_print_list("finalized", o, n);
2481         debug_printf_expand("finalized n:%d\n", n);
2482         list = (char**)o->data;
2483         string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2484         list[--n] = NULL;
2485         while (n) {
2486                 n--;
2487                 list[n] = o->data + (int)(uintptr_t)list[n] + string_start;
2488         }
2489         return list;
2490 }
2491
2492 static void free_pipe_list(struct pipe *pi);
2493
2494 /* Returns pi->next - next pipe in the list */
2495 static struct pipe *free_pipe(struct pipe *pi)
2496 {
2497         struct pipe *next;
2498         int i;
2499
2500         debug_printf_clean("free_pipe (pid %d)\n", getpid());
2501         for (i = 0; i < pi->num_cmds; i++) {
2502                 struct command *command;
2503                 struct redir_struct *r, *rnext;
2504
2505                 command = &pi->cmds[i];
2506                 debug_printf_clean("  command %d:\n", i);
2507                 if (command->argv) {
2508                         if (DEBUG_CLEAN) {
2509                                 int a;
2510                                 char **p;
2511                                 for (a = 0, p = command->argv; *p; a++, p++) {
2512                                         debug_printf_clean("   argv[%d] = %s\n", a, *p);
2513                                 }
2514                         }
2515                         free_strings(command->argv);
2516                         //command->argv = NULL;
2517                 }
2518                 /* not "else if": on syntax error, we may have both! */
2519                 if (command->group) {
2520                         debug_printf_clean("   begin group (cmd_type:%d)\n",
2521                                         command->cmd_type);
2522                         free_pipe_list(command->group);
2523                         debug_printf_clean("   end group\n");
2524                         //command->group = NULL;
2525                 }
2526                 /* else is crucial here.
2527                  * If group != NULL, child_func is meaningless */
2528 #if ENABLE_HUSH_FUNCTIONS
2529                 else if (command->child_func) {
2530                         debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
2531                         command->child_func->parent_cmd = NULL;
2532                 }
2533 #endif
2534 #if !BB_MMU
2535                 free(command->group_as_string);
2536                 //command->group_as_string = NULL;
2537 #endif
2538                 for (r = command->redirects; r; r = rnext) {
2539                         debug_printf_clean("   redirect %d%s",
2540                                         r->rd_fd, redir_table[r->rd_type].descrip);
2541                         /* guard against the case >$FOO, where foo is unset or blank */
2542                         if (r->rd_filename) {
2543                                 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
2544                                 free(r->rd_filename);
2545                                 //r->rd_filename = NULL;
2546                         }
2547                         debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
2548                         rnext = r->next;
2549                         free(r);
2550                 }
2551                 //command->redirects = NULL;
2552         }
2553         free(pi->cmds);   /* children are an array, they get freed all at once */
2554         //pi->cmds = NULL;
2555 #if ENABLE_HUSH_JOB
2556         free(pi->cmdtext);
2557         //pi->cmdtext = NULL;
2558 #endif
2559
2560         next = pi->next;
2561         free(pi);
2562         return next;
2563 }
2564
2565 static void free_pipe_list(struct pipe *pi)
2566 {
2567         while (pi) {
2568 #if HAS_KEYWORDS
2569                 debug_printf_clean("pipe reserved word %d\n", pi->res_word);
2570 #endif
2571                 debug_printf_clean("pipe followup code %d\n", pi->followup);
2572                 pi = free_pipe(pi);
2573         }
2574 }
2575
2576
2577 /*** Parsing routines ***/
2578
2579 static struct pipe *new_pipe(void)
2580 {
2581         struct pipe *pi;
2582         pi = xzalloc(sizeof(struct pipe));
2583         /*pi->followup = 0; - deliberately invalid value */
2584         /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
2585         return pi;
2586 }
2587
2588 /* Command (member of a pipe) is complete, or we start a new pipe
2589  * if ctx->command is NULL.
2590  * No errors possible here.
2591  */
2592 static int done_command(struct parse_context *ctx)
2593 {
2594         /* The command is really already in the pipe structure, so
2595          * advance the pipe counter and make a new, null command. */
2596         struct pipe *pi = ctx->pipe;
2597         struct command *command = ctx->command;
2598
2599         if (command) {
2600                 if (IS_NULL_CMD(command)) {
2601                         debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
2602                         goto clear_and_ret;
2603                 }
2604                 pi->num_cmds++;
2605                 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
2606                 //debug_print_tree(ctx->list_head, 20);
2607         } else {
2608                 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
2609         }
2610
2611         /* Only real trickiness here is that the uncommitted
2612          * command structure is not counted in pi->num_cmds. */
2613         pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
2614         ctx->command = command = &pi->cmds[pi->num_cmds];
2615  clear_and_ret:
2616         memset(command, 0, sizeof(*command));
2617         return pi->num_cmds; /* used only for 0/nonzero check */
2618 }
2619
2620 static void done_pipe(struct parse_context *ctx, pipe_style type)
2621 {
2622         int not_null;
2623
2624         debug_printf_parse("done_pipe entered, followup %d\n", type);
2625         /* Close previous command */
2626         not_null = done_command(ctx);
2627         ctx->pipe->followup = type;
2628 #if HAS_KEYWORDS
2629         ctx->pipe->pi_inverted = ctx->ctx_inverted;
2630         ctx->ctx_inverted = 0;
2631         ctx->pipe->res_word = ctx->ctx_res_w;
2632 #endif
2633
2634         /* Without this check, even just <enter> on command line generates
2635          * tree of three NOPs (!). Which is harmless but annoying.
2636          * IOW: it is safe to do it unconditionally. */
2637         if (not_null
2638 #if ENABLE_HUSH_IF
2639          || ctx->ctx_res_w == RES_FI
2640 #endif
2641 #if ENABLE_HUSH_LOOPS
2642          || ctx->ctx_res_w == RES_DONE
2643          || ctx->ctx_res_w == RES_FOR
2644          || ctx->ctx_res_w == RES_IN
2645 #endif
2646 #if ENABLE_HUSH_CASE
2647          || ctx->ctx_res_w == RES_ESAC
2648 #endif
2649         ) {
2650                 struct pipe *new_p;
2651                 debug_printf_parse("done_pipe: adding new pipe: "
2652                                 "not_null:%d ctx->ctx_res_w:%d\n",
2653                                 not_null, ctx->ctx_res_w);
2654                 new_p = new_pipe();
2655                 ctx->pipe->next = new_p;
2656                 ctx->pipe = new_p;
2657                 /* RES_THEN, RES_DO etc are "sticky" -
2658                  * they remain set for pipes inside if/while.
2659                  * This is used to control execution.
2660                  * RES_FOR and RES_IN are NOT sticky (needed to support
2661                  * cases where variable or value happens to match a keyword):
2662                  */
2663 #if ENABLE_HUSH_LOOPS
2664                 if (ctx->ctx_res_w == RES_FOR
2665                  || ctx->ctx_res_w == RES_IN)
2666                         ctx->ctx_res_w = RES_NONE;
2667 #endif
2668 #if ENABLE_HUSH_CASE
2669                 if (ctx->ctx_res_w == RES_MATCH)
2670                         ctx->ctx_res_w = RES_CASE_BODY;
2671                 if (ctx->ctx_res_w == RES_CASE)
2672                         ctx->ctx_res_w = RES_CASE_IN;
2673 #endif
2674                 ctx->command = NULL; /* trick done_command below */
2675                 /* Create the memory for command, roughly:
2676                  * ctx->pipe->cmds = new struct command;
2677                  * ctx->command = &ctx->pipe->cmds[0];
2678                  */
2679                 done_command(ctx);
2680                 //debug_print_tree(ctx->list_head, 10);
2681         }
2682         debug_printf_parse("done_pipe return\n");
2683 }
2684
2685 static void initialize_context(struct parse_context *ctx)
2686 {
2687         memset(ctx, 0, sizeof(*ctx));
2688         ctx->pipe = ctx->list_head = new_pipe();
2689         /* Create the memory for command, roughly:
2690          * ctx->pipe->cmds = new struct command;
2691          * ctx->command = &ctx->pipe->cmds[0];
2692          */
2693         done_command(ctx);
2694 }
2695
2696 /* If a reserved word is found and processed, parse context is modified
2697  * and 1 is returned.
2698  */
2699 #if HAS_KEYWORDS
2700 struct reserved_combo {
2701         char literal[6];
2702         unsigned char res;
2703         unsigned char assignment_flag;
2704         int flag;
2705 };
2706 enum {
2707         FLAG_END   = (1 << RES_NONE ),
2708 # if ENABLE_HUSH_IF
2709         FLAG_IF    = (1 << RES_IF   ),
2710         FLAG_THEN  = (1 << RES_THEN ),
2711         FLAG_ELIF  = (1 << RES_ELIF ),
2712         FLAG_ELSE  = (1 << RES_ELSE ),
2713         FLAG_FI    = (1 << RES_FI   ),
2714 # endif
2715 # if ENABLE_HUSH_LOOPS
2716         FLAG_FOR   = (1 << RES_FOR  ),
2717         FLAG_WHILE = (1 << RES_WHILE),
2718         FLAG_UNTIL = (1 << RES_UNTIL),
2719         FLAG_DO    = (1 << RES_DO   ),
2720         FLAG_DONE  = (1 << RES_DONE ),
2721         FLAG_IN    = (1 << RES_IN   ),
2722 # endif
2723 # if ENABLE_HUSH_CASE
2724         FLAG_MATCH = (1 << RES_MATCH),
2725         FLAG_ESAC  = (1 << RES_ESAC ),
2726 # endif
2727         FLAG_START = (1 << RES_XXXX ),
2728 };
2729
2730 static const struct reserved_combo* match_reserved_word(o_string *word)
2731 {
2732         /* Mostly a list of accepted follow-up reserved words.
2733          * FLAG_END means we are done with the sequence, and are ready
2734          * to turn the compound list into a command.
2735          * FLAG_START means the word must start a new compound list.
2736          */
2737         static const struct reserved_combo reserved_list[] = {
2738 # if ENABLE_HUSH_IF
2739                 { "!",     RES_NONE,  NOT_ASSIGNMENT , 0 },
2740                 { "if",    RES_IF,    WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
2741                 { "then",  RES_THEN,  WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
2742                 { "elif",  RES_ELIF,  WORD_IS_KEYWORD, FLAG_THEN },
2743                 { "else",  RES_ELSE,  WORD_IS_KEYWORD, FLAG_FI   },
2744                 { "fi",    RES_FI,    NOT_ASSIGNMENT , FLAG_END  },
2745 # endif
2746 # if ENABLE_HUSH_LOOPS
2747                 { "for",   RES_FOR,   NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
2748                 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
2749                 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
2750                 { "in",    RES_IN,    NOT_ASSIGNMENT , FLAG_DO   },
2751                 { "do",    RES_DO,    WORD_IS_KEYWORD, FLAG_DONE },
2752                 { "done",  RES_DONE,  NOT_ASSIGNMENT , FLAG_END  },
2753 # endif
2754 # if ENABLE_HUSH_CASE
2755                 { "case",  RES_CASE,  NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
2756                 { "esac",  RES_ESAC,  NOT_ASSIGNMENT , FLAG_END  },
2757 # endif
2758         };
2759         const struct reserved_combo *r;
2760
2761         for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
2762                 if (strcmp(word->data, r->literal) == 0)
2763                         return r;
2764         }
2765         return NULL;
2766 }
2767 /* Return 0: not a keyword, 1: keyword
2768  */
2769 static int reserved_word(o_string *word, struct parse_context *ctx)
2770 {
2771 # if ENABLE_HUSH_CASE
2772         static const struct reserved_combo reserved_match = {
2773                 "",        RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
2774         };
2775 # endif
2776         const struct reserved_combo *r;
2777
2778         if (word->has_quoted_part)
2779                 return 0;
2780         r = match_reserved_word(word);
2781         if (!r)
2782                 return 0;
2783
2784         debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
2785 # if ENABLE_HUSH_CASE
2786         if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE_IN) {
2787                 /* "case word IN ..." - IN part starts first MATCH part */
2788                 r = &reserved_match;
2789         } else
2790 # endif
2791         if (r->flag == 0) { /* '!' */
2792                 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
2793                         syntax_error("! ! command");
2794                         ctx->ctx_res_w = RES_SNTX;
2795                 }
2796                 ctx->ctx_inverted = 1;
2797                 return 1;
2798         }
2799         if (r->flag & FLAG_START) {
2800                 struct parse_context *old;
2801
2802                 old = xmalloc(sizeof(*old));
2803                 debug_printf_parse("push stack %p\n", old);
2804                 *old = *ctx;   /* physical copy */
2805                 initialize_context(ctx);
2806                 ctx->stack = old;
2807         } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
2808                 syntax_error_at(word->data);
2809                 ctx->ctx_res_w = RES_SNTX;
2810                 return 1;
2811         } else {
2812                 /* "{...} fi" is ok. "{...} if" is not
2813                  * Example:
2814                  * if { echo foo; } then { echo bar; } fi */
2815                 if (ctx->command->group)
2816                         done_pipe(ctx, PIPE_SEQ);
2817         }
2818
2819         ctx->ctx_res_w = r->res;
2820         ctx->old_flag = r->flag;
2821         word->o_assignment = r->assignment_flag;
2822
2823         if (ctx->old_flag & FLAG_END) {
2824                 struct parse_context *old;
2825
2826                 done_pipe(ctx, PIPE_SEQ);
2827                 debug_printf_parse("pop stack %p\n", ctx->stack);
2828                 old = ctx->stack;
2829                 old->command->group = ctx->list_head;
2830                 old->command->cmd_type = CMD_NORMAL;
2831 # if !BB_MMU
2832                 o_addstr(&old->as_string, ctx->as_string.data);
2833                 o_free_unsafe(&ctx->as_string);
2834                 old->command->group_as_string = xstrdup(old->as_string.data);
2835                 debug_printf_parse("pop, remembering as:'%s'\n",
2836                                 old->command->group_as_string);
2837 # endif
2838                 *ctx = *old;   /* physical copy */
2839                 free(old);
2840         }
2841         return 1;
2842 }
2843 #endif /* HAS_KEYWORDS */
2844
2845 /* Word is complete, look at it and update parsing context.
2846  * Normal return is 0. Syntax errors return 1.
2847  * Note: on return, word is reset, but not o_free'd!
2848  */
2849 static int done_word(o_string *word, struct parse_context *ctx)
2850 {
2851         struct command *command = ctx->command;
2852
2853         debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
2854         if (word->length == 0 && !word->has_quoted_part) {
2855                 debug_printf_parse("done_word return 0: true null, ignored\n");
2856                 return 0;
2857         }
2858
2859         if (ctx->pending_redirect) {
2860                 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
2861                  * only if run as "bash", not "sh" */
2862                 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
2863                  * "2.7 Redirection
2864                  * ...the word that follows the redirection operator
2865                  * shall be subjected to tilde expansion, parameter expansion,
2866                  * command substitution, arithmetic expansion, and quote
2867                  * removal. Pathname expansion shall not be performed
2868                  * on the word by a non-interactive shell; an interactive
2869                  * shell may perform it, but shall do so only when
2870                  * the expansion would result in one word."
2871                  */
2872                 ctx->pending_redirect->rd_filename = xstrdup(word->data);
2873                 /* Cater for >\file case:
2874                  * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
2875                  * Same with heredocs:
2876                  * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
2877                  */
2878                 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC) {
2879                         unbackslash(ctx->pending_redirect->rd_filename);
2880                         /* Is it <<"HEREDOC"? */
2881                         if (word->has_quoted_part) {
2882                                 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
2883                         }
2884                 }
2885                 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
2886                 ctx->pending_redirect = NULL;
2887         } else {
2888                 /* If this word wasn't an assignment, next ones definitely
2889                  * can't be assignments. Even if they look like ones. */
2890                 if (word->o_assignment != DEFINITELY_ASSIGNMENT
2891                  && word->o_assignment != WORD_IS_KEYWORD
2892                 ) {
2893                         word->o_assignment = NOT_ASSIGNMENT;
2894                 } else {
2895                         if (word->o_assignment == DEFINITELY_ASSIGNMENT)
2896                                 command->assignment_cnt++;
2897                         word->o_assignment = MAYBE_ASSIGNMENT;
2898                 }
2899
2900 #if HAS_KEYWORDS
2901 # if ENABLE_HUSH_CASE
2902                 if (ctx->ctx_dsemicolon
2903                  && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
2904                 ) {
2905                         /* already done when ctx_dsemicolon was set to 1: */
2906                         /* ctx->ctx_res_w = RES_MATCH; */
2907                         ctx->ctx_dsemicolon = 0;
2908                 } else
2909 # endif
2910                 if (!command->argv /* if it's the first word... */
2911 # if ENABLE_HUSH_LOOPS
2912                  && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
2913                  && ctx->ctx_res_w != RES_IN
2914 # endif
2915 # if ENABLE_HUSH_CASE
2916                  && ctx->ctx_res_w != RES_CASE
2917 # endif
2918                 ) {
2919                         debug_printf_parse("checking '%s' for reserved-ness\n", word->data);
2920                         if (reserved_word(word, ctx)) {
2921                                 o_reset_to_empty_unquoted(word);
2922                                 debug_printf_parse("done_word return %d\n",
2923                                                 (ctx->ctx_res_w == RES_SNTX));
2924                                 return (ctx->ctx_res_w == RES_SNTX);
2925                         }
2926 # if ENABLE_HUSH_BASH_COMPAT
2927                         if (strcmp(word->data, "[[") == 0) {
2928                                 command->cmd_type = CMD_SINGLEWORD_NOGLOB;
2929                         }
2930                         /* fall through */
2931 # endif
2932                 }
2933 #endif
2934                 if (command->group) {
2935                         /* "{ echo foo; } echo bar" - bad */
2936                         syntax_error_at(word->data);
2937                         debug_printf_parse("done_word return 1: syntax error, "
2938                                         "groups and arglists don't mix\n");
2939                         return 1;
2940                 }
2941                 if (word->has_quoted_part
2942                  /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
2943                  && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
2944                  /* (otherwise it's known to be not empty and is already safe) */
2945                 ) {
2946                         /* exclude "$@" - it can expand to no word despite "" */
2947                         char *p = word->data;
2948                         while (p[0] == SPECIAL_VAR_SYMBOL
2949                             && (p[1] & 0x7f) == '@'
2950                             && p[2] == SPECIAL_VAR_SYMBOL
2951                         ) {
2952                                 p += 3;
2953                         }
2954                         if (p == word->data || p[0] != '\0') {
2955                                 /* saw no "$@", or not only "$@" but some
2956                                  * real text is there too */
2957                                 /* insert "empty variable" reference, this makes
2958                                  * e.g. "", $empty"" etc to not disappear */
2959                                 o_addchr(word, SPECIAL_VAR_SYMBOL);
2960                                 o_addchr(word, SPECIAL_VAR_SYMBOL);
2961                         }
2962                 }
2963                 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
2964                 debug_print_strings("word appended to argv", command->argv);
2965         }
2966
2967 #if ENABLE_HUSH_LOOPS
2968         if (ctx->ctx_res_w == RES_FOR) {
2969                 if (word->has_quoted_part
2970                  || !is_well_formed_var_name(command->argv[0], '\0')
2971                 ) {
2972                         /* bash says just "not a valid identifier" */
2973                         syntax_error("not a valid identifier in for");
2974                         return 1;
2975                 }
2976                 /* Force FOR to have just one word (variable name) */
2977                 /* NB: basically, this makes hush see "for v in ..."
2978                  * syntax as if it is "for v; in ...". FOR and IN become
2979                  * two pipe structs in parse tree. */
2980                 done_pipe(ctx, PIPE_SEQ);
2981         }
2982 #endif
2983 #if ENABLE_HUSH_CASE
2984         /* Force CASE to have just one word */
2985         if (ctx->ctx_res_w == RES_CASE) {
2986                 done_pipe(ctx, PIPE_SEQ);
2987         }
2988 #endif
2989
2990         o_reset_to_empty_unquoted(word);
2991
2992         debug_printf_parse("done_word return 0\n");
2993         return 0;
2994 }
2995
2996
2997 /* Peek ahead in the input to find out if we have a "&n" construct,
2998  * as in "2>&1", that represents duplicating a file descriptor.
2999  * Return:
3000  * REDIRFD_CLOSE if >&- "close fd" construct is seen,
3001  * REDIRFD_SYNTAX_ERR if syntax error,
3002  * REDIRFD_TO_FILE if no & was seen,
3003  * or the number found.
3004  */
3005 #if BB_MMU
3006 #define parse_redir_right_fd(as_string, input) \
3007         parse_redir_right_fd(input)
3008 #endif
3009 static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
3010 {
3011         int ch, d, ok;
3012
3013         ch = i_peek(input);
3014         if (ch != '&')
3015                 return REDIRFD_TO_FILE;
3016
3017         ch = i_getch(input);  /* get the & */
3018         nommu_addchr(as_string, ch);
3019         ch = i_peek(input);
3020         if (ch == '-') {
3021                 ch = i_getch(input);
3022                 nommu_addchr(as_string, ch);
3023                 return REDIRFD_CLOSE;
3024         }
3025         d = 0;
3026         ok = 0;
3027         while (ch != EOF && isdigit(ch)) {
3028                 d = d*10 + (ch-'0');
3029                 ok = 1;
3030                 ch = i_getch(input);
3031                 nommu_addchr(as_string, ch);
3032                 ch = i_peek(input);
3033         }
3034         if (ok) return d;
3035
3036 //TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
3037
3038         bb_error_msg("ambiguous redirect");
3039         return REDIRFD_SYNTAX_ERR;
3040 }
3041
3042 /* Return code is 0 normal, 1 if a syntax error is detected
3043  */
3044 static int parse_redirect(struct parse_context *ctx,
3045                 int fd,
3046                 redir_type style,
3047                 struct in_str *input)
3048 {
3049         struct command *command = ctx->command;
3050         struct redir_struct *redir;
3051         struct redir_struct **redirp;
3052         int dup_num;
3053
3054         dup_num = REDIRFD_TO_FILE;
3055         if (style != REDIRECT_HEREDOC) {
3056                 /* Check for a '>&1' type redirect */
3057                 dup_num = parse_redir_right_fd(&ctx->as_string, input);
3058                 if (dup_num == REDIRFD_SYNTAX_ERR)
3059                         return 1;
3060         } else {
3061                 int ch = i_peek(input);
3062                 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
3063                 if (dup_num) { /* <<-... */
3064                         ch = i_getch(input);
3065                         nommu_addchr(&ctx->as_string, ch);
3066                         ch = i_peek(input);
3067                 }
3068         }
3069
3070         if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
3071                 int ch = i_peek(input);
3072                 if (ch == '|') {
3073                         /* >|FILE redirect ("clobbering" >).
3074                          * Since we do not support "set -o noclobber" yet,
3075                          * >| and > are the same for now. Just eat |.
3076                          */
3077                         ch = i_getch(input);
3078                         nommu_addchr(&ctx->as_string, ch);
3079                 }
3080         }
3081
3082         /* Create a new redir_struct and append it to the linked list */
3083         redirp = &command->redirects;
3084         while ((redir = *redirp) != NULL) {
3085                 redirp = &(redir->next);
3086         }
3087         *redirp = redir = xzalloc(sizeof(*redir));
3088         /* redir->next = NULL; */
3089         /* redir->rd_filename = NULL; */
3090         redir->rd_type = style;
3091         redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
3092
3093         debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
3094                                 redir_table[style].descrip);
3095
3096         redir->rd_dup = dup_num;
3097         if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
3098                 /* Erik had a check here that the file descriptor in question
3099                  * is legit; I postpone that to "run time"
3100                  * A "-" representation of "close me" shows up as a -3 here */
3101                 debug_printf_parse("duplicating redirect '%d>&%d'\n",
3102                                 redir->rd_fd, redir->rd_dup);
3103         } else {
3104                 /* Set ctx->pending_redirect, so we know what to do at the
3105                  * end of the next parsed word. */
3106                 ctx->pending_redirect = redir;
3107         }
3108         return 0;
3109 }
3110
3111 /* If a redirect is immediately preceded by a number, that number is
3112  * supposed to tell which file descriptor to redirect.  This routine
3113  * looks for such preceding numbers.  In an ideal world this routine
3114  * needs to handle all the following classes of redirects...
3115  *     echo 2>foo     # redirects fd  2 to file "foo", nothing passed to echo
3116  *     echo 49>foo    # redirects fd 49 to file "foo", nothing passed to echo
3117  *     echo -2>foo    # redirects fd  1 to file "foo",    "-2" passed to echo
3118  *     echo 49x>foo   # redirects fd  1 to file "foo",   "49x" passed to echo
3119  *
3120  * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3121  * "2.7 Redirection
3122  * ... If n is quoted, the number shall not be recognized as part of
3123  * the redirection expression. For example:
3124  * echo \2>a
3125  * writes the character 2 into file a"
3126  * We are getting it right by setting ->has_quoted_part on any \<char>
3127  *
3128  * A -1 return means no valid number was found,
3129  * the caller should use the appropriate default for this redirection.
3130  */
3131 static int redirect_opt_num(o_string *o)
3132 {
3133         int num;
3134
3135         if (o->data == NULL)
3136                 return -1;
3137         num = bb_strtou(o->data, NULL, 10);
3138         if (errno || num < 0)
3139                 return -1;
3140         o_reset_to_empty_unquoted(o);
3141         return num;
3142 }
3143
3144 #if BB_MMU
3145 #define fetch_till_str(as_string, input, word, skip_tabs) \
3146         fetch_till_str(input, word, skip_tabs)
3147 #endif
3148 static char *fetch_till_str(o_string *as_string,
3149                 struct in_str *input,
3150                 const char *word,
3151                 int heredoc_flags)
3152 {
3153         o_string heredoc = NULL_O_STRING;
3154         int past_EOL = 0;
3155         int prev = 0; /* not \ */
3156         int ch;
3157
3158         goto jump_in;
3159         while (1) {
3160                 ch = i_getch(input);
3161                 nommu_addchr(as_string, ch);
3162                 if (ch == '\n'
3163                 /* TODO: or EOF? (heredoc delimiter may end with <eof>, not only <eol>) */
3164                  && ((heredoc_flags & HEREDOC_QUOTED) || prev != '\\')
3165                 ) {
3166                         if (strcmp(heredoc.data + past_EOL, word) == 0) {
3167                                 heredoc.data[past_EOL] = '\0';
3168                                 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
3169                                 return heredoc.data;
3170                         }
3171                         do {
3172                                 o_addchr(&heredoc, '\n');
3173                                 prev = 0; /* not \ */
3174                                 past_EOL = heredoc.length;
3175  jump_in:
3176                                 do {
3177                                         ch = i_getch(input);
3178                                         nommu_addchr(as_string, ch);
3179                                 } while ((heredoc_flags & HEREDOC_SKIPTABS) && ch == '\t');
3180                         } while (ch == '\n');
3181                 }
3182                 if (ch == EOF) {
3183                         o_free_unsafe(&heredoc);
3184                         return NULL;
3185                 }
3186                 o_addchr(&heredoc, ch);
3187                 if (prev == '\\' && ch == '\\')
3188                         /* Correctly handle foo\\<eol> (not a line cont.) */
3189                         prev = 0; /* not \ */
3190                 else
3191                         prev = ch;
3192                 nommu_addchr(as_string, ch);
3193         }
3194 }
3195
3196 /* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
3197  * and load them all. There should be exactly heredoc_cnt of them.
3198  */
3199 static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
3200 {
3201         struct pipe *pi = ctx->list_head;
3202
3203         while (pi && heredoc_cnt) {
3204                 int i;
3205                 struct command *cmd = pi->cmds;
3206
3207                 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
3208                                 pi->num_cmds,
3209                                 cmd->argv ? cmd->argv[0] : "NONE");
3210                 for (i = 0; i < pi->num_cmds; i++) {
3211                         struct redir_struct *redir = cmd->redirects;
3212
3213                         debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
3214                                         i, cmd->argv ? cmd->argv[0] : "NONE");
3215                         while (redir) {
3216                                 if (redir->rd_type == REDIRECT_HEREDOC) {
3217                                         char *p;
3218
3219                                         redir->rd_type = REDIRECT_HEREDOC2;
3220                                         /* redir->rd_dup is (ab)used to indicate <<- */
3221                                         p = fetch_till_str(&ctx->as_string, input,
3222                                                         redir->rd_filename, redir->rd_dup);
3223                                         if (!p) {
3224                                                 syntax_error("unexpected EOF in here document");
3225                                                 return 1;
3226                                         }
3227                                         free(redir->rd_filename);
3228                                         redir->rd_filename = p;
3229                                         heredoc_cnt--;
3230                                 }
3231                                 redir = redir->next;
3232                         }
3233                         cmd++;
3234                 }
3235                 pi = pi->next;
3236         }
3237 #if 0
3238         /* Should be 0. If it isn't, it's a parse error */
3239         if (heredoc_cnt)
3240                 bb_error_msg_and_die("heredoc BUG 2");
3241 #endif
3242         return 0;
3243 }
3244
3245
3246 static int run_list(struct pipe *pi);
3247 #if BB_MMU
3248 #define parse_stream(pstring, input, end_trigger) \
3249         parse_stream(input, end_trigger)
3250 #endif
3251 static struct pipe *parse_stream(char **pstring,
3252                 struct in_str *input,
3253                 int end_trigger);
3254
3255
3256 #if !ENABLE_HUSH_FUNCTIONS
3257 #define parse_group(dest, ctx, input, ch) \
3258         parse_group(ctx, input, ch)
3259 #endif
3260 static int parse_group(o_string *dest, struct parse_context *ctx,
3261         struct in_str *input, int ch)
3262 {
3263         /* dest contains characters seen prior to ( or {.
3264          * Typically it's empty, but for function defs,
3265          * it contains function name (without '()'). */
3266         struct pipe *pipe_list;
3267         int endch;
3268         struct command *command = ctx->command;
3269
3270         debug_printf_parse("parse_group entered\n");
3271 #if ENABLE_HUSH_FUNCTIONS
3272         if (ch == '(' && !dest->has_quoted_part) {
3273                 if (dest->length)
3274                         if (done_word(dest, ctx))
3275                                 return 1;
3276                 if (!command->argv)
3277                         goto skip; /* (... */
3278                 if (command->argv[1]) { /* word word ... (... */
3279                         syntax_error_unexpected_ch('(');
3280                         return 1;
3281                 }
3282                 /* it is "word(..." or "word (..." */
3283                 do
3284                         ch = i_getch(input);
3285                 while (ch == ' ' || ch == '\t');
3286                 if (ch != ')') {
3287                         syntax_error_unexpected_ch(ch);
3288                         return 1;
3289                 }
3290                 nommu_addchr(&ctx->as_string, ch);
3291                 do
3292                         ch = i_getch(input);
3293                 while (ch == ' ' || ch == '\t' || ch == '\n');
3294                 if (ch != '{') {
3295                         syntax_error_unexpected_ch(ch);
3296                         return 1;
3297                 }
3298                 nommu_addchr(&ctx->as_string, ch);
3299                 command->cmd_type = CMD_FUNCDEF;
3300                 goto skip;
3301         }
3302 #endif
3303
3304 #if 0 /* Prevented by caller */
3305         if (command->argv /* word [word]{... */
3306          || dest->length /* word{... */
3307          || dest->has_quoted_part /* ""{... */
3308         ) {
3309                 syntax_error(NULL);
3310                 debug_printf_parse("parse_group return 1: "
3311                         "syntax error, groups and arglists don't mix\n");
3312                 return 1;
3313         }
3314 #endif
3315
3316 #if ENABLE_HUSH_FUNCTIONS
3317  skip:
3318 #endif
3319         endch = '}';
3320         if (ch == '(') {
3321                 endch = ')';
3322                 command->cmd_type = CMD_SUBSHELL;
3323         } else {
3324                 /* bash does not allow "{echo...", requires whitespace */
3325                 ch = i_getch(input);
3326                 if (ch != ' ' && ch != '\t' && ch != '\n') {
3327                         syntax_error_unexpected_ch(ch);
3328                         return 1;
3329                 }
3330                 nommu_addchr(&ctx->as_string, ch);
3331         }
3332
3333         {
3334 #if BB_MMU
3335 # define as_string NULL
3336 #else
3337                 char *as_string = NULL;
3338 #endif
3339                 pipe_list = parse_stream(&as_string, input, endch);
3340 #if !BB_MMU
3341                 if (as_string)
3342                         o_addstr(&ctx->as_string, as_string);
3343 #endif
3344                 /* empty ()/{} or parse error? */
3345                 if (!pipe_list || pipe_list == ERR_PTR) {
3346                         /* parse_stream already emitted error msg */
3347                         if (!BB_MMU)
3348                                 free(as_string);
3349                         debug_printf_parse("parse_group return 1: "
3350                                 "parse_stream returned %p\n", pipe_list);
3351                         return 1;
3352                 }
3353                 command->group = pipe_list;
3354 #if !BB_MMU
3355                 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
3356                 command->group_as_string = as_string;
3357                 debug_printf_parse("end of group, remembering as:'%s'\n",
3358                                 command->group_as_string);
3359 #endif
3360 #undef as_string
3361         }
3362         debug_printf_parse("parse_group return 0\n");
3363         return 0;
3364         /* command remains "open", available for possible redirects */
3365 }
3366
3367 #if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_DOLLAR_OPS
3368 /* Subroutines for copying $(...) and `...` things */
3369 static void add_till_backquote(o_string *dest, struct in_str *input);
3370 /* '...' */
3371 static void add_till_single_quote(o_string *dest, struct in_str *input)
3372 {
3373         while (1) {
3374                 int ch = i_getch(input);
3375                 if (ch == EOF) {
3376                         syntax_error_unterm_ch('\'');
3377                         /*xfunc_die(); - redundant */
3378                 }
3379                 if (ch == '\'')
3380                         return;
3381                 o_addchr(dest, ch);
3382         }
3383 }
3384 /* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
3385 static void add_till_double_quote(o_string *dest, struct in_str *input)
3386 {
3387         while (1) {
3388                 int ch = i_getch(input);
3389                 if (ch == EOF) {
3390                         syntax_error_unterm_ch('"');
3391                         /*xfunc_die(); - redundant */
3392                 }
3393                 if (ch == '"')
3394                         return;
3395                 if (ch == '\\') {  /* \x. Copy both chars. */
3396                         o_addchr(dest, ch);
3397                         ch = i_getch(input);
3398                 }
3399                 o_addchr(dest, ch);
3400                 if (ch == '`') {
3401                         add_till_backquote(dest, input);
3402                         o_addchr(dest, ch);
3403                         continue;
3404                 }
3405                 //if (ch == '$') ...
3406         }
3407 }
3408 /* Process `cmd` - copy contents until "`" is seen. Complicated by
3409  * \` quoting.
3410  * "Within the backquoted style of command substitution, backslash
3411  * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
3412  * The search for the matching backquote shall be satisfied by the first
3413  * backquote found without a preceding backslash; during this search,
3414  * if a non-escaped backquote is encountered within a shell comment,
3415  * a here-document, an embedded command substitution of the $(command)
3416  * form, or a quoted string, undefined results occur. A single-quoted
3417  * or double-quoted string that begins, but does not end, within the
3418  * "`...`" sequence produces undefined results."
3419  * Example                               Output
3420  * echo `echo '\'TEST\`echo ZZ\`BEST`    \TESTZZBEST
3421  */
3422 static void add_till_backquote(o_string *dest, struct in_str *input)
3423 {
3424         while (1) {
3425                 int ch = i_getch(input);
3426                 if (ch == EOF) {
3427                         syntax_error_unterm_ch('`');
3428                         /*xfunc_die(); - redundant */
3429                 }
3430                 if (ch == '`')
3431                         return;
3432                 if (ch == '\\') {
3433                         /* \x. Copy both chars unless it is \` */
3434                         int ch2 = i_getch(input);
3435                         if (ch2 == EOF) {
3436                                 syntax_error_unterm_ch('`');
3437                                 /*xfunc_die(); - redundant */
3438                         }
3439                         if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
3440                                 o_addchr(dest, ch);
3441                         ch = ch2;
3442                 }
3443                 o_addchr(dest, ch);
3444         }
3445 }
3446 /* Process $(cmd) - copy contents until ")" is seen. Complicated by
3447  * quoting and nested ()s.
3448  * "With the $(command) style of command substitution, all characters
3449  * following the open parenthesis to the matching closing parenthesis
3450  * constitute the command. Any valid shell script can be used for command,
3451  * except a script consisting solely of redirections which produces
3452  * unspecified results."
3453  * Example                              Output
3454  * echo $(echo '(TEST)' BEST)           (TEST) BEST
3455  * echo $(echo 'TEST)' BEST)            TEST) BEST
3456  * echo $(echo \(\(TEST\) BEST)         ((TEST) BEST
3457  *
3458  * Also adapted to eat ${var%...} and $((...)) constructs, since ... part
3459  * can contain arbitrary constructs, just like $(cmd).
3460  * In bash compat mode, it needs to also be able to stop on ':' or '/'
3461  * for ${var:N[:M]} and ${var/P[/R]} parsing.
3462  */
3463 #define DOUBLE_CLOSE_CHAR_FLAG 0x80
3464 static int add_till_closing_bracket(o_string *dest, struct in_str *input, unsigned end_ch)
3465 {
3466         int ch;
3467         char dbl = end_ch & DOUBLE_CLOSE_CHAR_FLAG;
3468 # if ENABLE_HUSH_BASH_COMPAT
3469         char end_char2 = end_ch >> 8;
3470 # endif
3471         end_ch &= (DOUBLE_CLOSE_CHAR_FLAG - 1);
3472
3473         while (1) {
3474                 ch = i_getch(input);
3475                 if (ch == EOF) {
3476                         syntax_error_unterm_ch(end_ch);
3477                         /*xfunc_die(); - redundant */
3478                 }
3479                 if (ch == end_ch  IF_HUSH_BASH_COMPAT( || ch == end_char2)) {
3480                         if (!dbl)
3481                                 break;
3482                         /* we look for closing )) of $((EXPR)) */
3483                         if (i_peek(input) == end_ch) {
3484                                 i_getch(input); /* eat second ')' */
3485                                 break;
3486                         }
3487                 }
3488                 o_addchr(dest, ch);
3489                 if (ch == '(' || ch == '{') {
3490                         ch = (ch == '(' ? ')' : '}');
3491                         add_till_closing_bracket(dest, input, ch);
3492                         o_addchr(dest, ch);
3493                         continue;
3494                 }
3495                 if (ch == '\'') {
3496                         add_till_single_quote(dest, input);
3497                         o_addchr(dest, ch);
3498                         continue;
3499                 }
3500                 if (ch == '"') {
3501                         add_till_double_quote(dest, input);
3502                         o_addchr(dest, ch);
3503                         continue;
3504                 }
3505                 if (ch == '`') {
3506                         add_till_backquote(dest, input);
3507                         o_addchr(dest, ch);
3508                         continue;
3509                 }
3510                 if (ch == '\\') {
3511                         /* \x. Copy verbatim. Important for  \(, \) */
3512                         ch = i_getch(input);
3513                         if (ch == EOF) {
3514                                 syntax_error_unterm_ch(')');
3515                                 /*xfunc_die(); - redundant */
3516                         }
3517                         o_addchr(dest, ch);
3518                         continue;
3519                 }
3520         }
3521         return ch;
3522 }
3523 #endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_DOLLAR_OPS */
3524
3525 /* Return code: 0 for OK, 1 for syntax error */
3526 #if BB_MMU
3527 #define parse_dollar(as_string, dest, input) \
3528         parse_dollar(dest, input)
3529 #define as_string NULL
3530 #endif
3531 static int parse_dollar(o_string *as_string,
3532                 o_string *dest,
3533                 struct in_str *input)
3534 {
3535         int ch = i_peek(input);  /* first character after the $ */
3536         unsigned char quote_mask = (dest->o_expflags & EXP_FLAG_ESC_GLOB_CHARS) ? 0x80 : 0;
3537
3538         debug_printf_parse("parse_dollar entered: ch='%c'\n", ch);
3539         if (isalpha(ch)) {
3540                 ch = i_getch(input);
3541                 nommu_addchr(as_string, ch);
3542  make_var:
3543                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3544                 while (1) {
3545                         debug_printf_parse(": '%c'\n", ch);
3546                         o_addchr(dest, ch | quote_mask);
3547                         quote_mask = 0;
3548                         ch = i_peek(input);
3549                         if (!isalnum(ch) && ch != '_')
3550                                 break;
3551                         ch = i_getch(input);
3552                         nommu_addchr(as_string, ch);
3553                 }
3554                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3555         } else if (isdigit(ch)) {
3556  make_one_char_var:
3557                 ch = i_getch(input);
3558                 nommu_addchr(as_string, ch);
3559                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3560                 debug_printf_parse(": '%c'\n", ch);
3561                 o_addchr(dest, ch | quote_mask);
3562                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3563         } else switch (ch) {
3564         case '$': /* pid */
3565         case '!': /* last bg pid */
3566         case '?': /* last exit code */
3567         case '#': /* number of args */
3568         case '*': /* args */
3569         case '@': /* args */
3570                 goto make_one_char_var;
3571         case '{': {
3572                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3573
3574                 ch = i_getch(input); /* eat '{' */
3575                 nommu_addchr(as_string, ch);
3576
3577                 ch = i_getch(input); /* first char after '{' */
3578                 nommu_addchr(as_string, ch);
3579                 /* It should be ${?}, or ${#var},
3580                  * or even ${?+subst} - operator acting on a special variable,
3581                  * or the beginning of variable name.
3582                  */
3583                 if (!strchr(_SPECIAL_VARS_STR, ch) && !isalnum(ch)) { /* not one of those */
3584  bad_dollar_syntax:
3585                         syntax_error_unterm_str("${name}");
3586                         debug_printf_parse("parse_dollar return 1: unterminated ${name}\n");
3587                         return 1;
3588                 }
3589                 ch |= quote_mask;
3590
3591                 /* It's possible to just call add_till_closing_bracket() at this point.
3592                  * However, this regresses some of our testsuite cases
3593                  * which check invalid constructs like ${%}.
3594                  * Oh well... let's check that the var name part is fine... */
3595
3596                 while (1) {
3597                         unsigned pos;
3598
3599                         o_addchr(dest, ch);
3600                         debug_printf_parse(": '%c'\n", ch);
3601
3602                         ch = i_getch(input);
3603                         nommu_addchr(as_string, ch);
3604                         if (ch == '}')
3605                                 break;
3606
3607                         if (!isalnum(ch) && ch != '_') {
3608                                 unsigned end_ch;
3609                                 unsigned char last_ch;
3610                                 /* handle parameter expansions
3611                                  * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
3612                                  */
3613                                 if (!strchr(VAR_SUBST_OPS, ch)) /* ${var<bad_char>... */
3614                                         goto bad_dollar_syntax;
3615
3616                                 /* Eat everything until closing '}' (or ':') */
3617                                 end_ch = '}';
3618                                 if (ENABLE_HUSH_BASH_COMPAT
3619                                  && ch == ':'
3620                                  && !strchr(MINUS_PLUS_EQUAL_QUESTION, i_peek(input))
3621                                 ) {
3622                                         /* It's ${var:N[:M]} thing */
3623                                         end_ch = '}' * 0x100 + ':';
3624                                 }
3625                                 if (ENABLE_HUSH_BASH_COMPAT
3626                                  && ch == '/'
3627                                 ) {
3628                                         /* It's ${var/[/]pattern[/repl]} thing */
3629                                         if (i_peek(input) == '/') { /* ${var//pattern[/repl]}? */
3630                                                 i_getch(input);
3631                                                 nommu_addchr(as_string, '/');
3632                                                 ch = '\\';
3633                                         }
3634                                         end_ch = '}' * 0x100 + '/';
3635                                 }
3636                                 o_addchr(dest, ch);
3637  again:
3638                                 if (!BB_MMU)
3639                                         pos = dest->length;
3640 #if ENABLE_HUSH_DOLLAR_OPS
3641                                 last_ch = add_till_closing_bracket(dest, input, end_ch);
3642 #else
3643 #error Simple code to only allow ${var} is not implemented
3644 #endif
3645                                 if (as_string) {
3646                                         o_addstr(as_string, dest->data + pos);
3647                                         o_addchr(as_string, last_ch);
3648                                 }
3649
3650                                 if (ENABLE_HUSH_BASH_COMPAT && (end_ch & 0xff00)) {
3651                                         /* close the first block: */
3652                                         o_addchr(dest, SPECIAL_VAR_SYMBOL);
3653                                         /* while parsing N from ${var:N[:M]}
3654                                          * or pattern from ${var/[/]pattern[/repl]} */
3655                                         if ((end_ch & 0xff) == last_ch) {
3656                                                 /* got ':' or '/'- parse the rest */
3657                                                 end_ch = '}';
3658                                                 goto again;
3659                                         }
3660                                         /* got '}' */
3661                                         if (end_ch == '}' * 0x100 + ':') {
3662                                                 /* it's ${var:N} - emulate :999999999 */
3663                                                 o_addstr(dest, "999999999");
3664                                         } /* else: it's ${var/[/]pattern} */
3665                                 }
3666                                 break;
3667                         }
3668                 }
3669                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3670                 break;
3671         }
3672 #if ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK
3673         case '(': {
3674                 unsigned pos;
3675
3676                 ch = i_getch(input);
3677                 nommu_addchr(as_string, ch);
3678 # if ENABLE_SH_MATH_SUPPORT
3679                 if (i_peek(input) == '(') {
3680                         ch = i_getch(input);
3681                         nommu_addchr(as_string, ch);
3682                         o_addchr(dest, SPECIAL_VAR_SYMBOL);
3683                         o_addchr(dest, /*quote_mask |*/ '+');
3684                         if (!BB_MMU)
3685                                 pos = dest->length;
3686                         add_till_closing_bracket(dest, input, ')' | DOUBLE_CLOSE_CHAR_FLAG);
3687                         if (as_string) {
3688                                 o_addstr(as_string, dest->data + pos);
3689                                 o_addchr(as_string, ')');
3690                                 o_addchr(as_string, ')');
3691                         }
3692                         o_addchr(dest, SPECIAL_VAR_SYMBOL);
3693                         break;
3694                 }
3695 # endif
3696 # if ENABLE_HUSH_TICK
3697                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3698                 o_addchr(dest, quote_mask | '`');
3699                 if (!BB_MMU)
3700                         pos = dest->length;
3701                 add_till_closing_bracket(dest, input, ')');
3702                 if (as_string) {
3703                         o_addstr(as_string, dest->data + pos);
3704                         o_addchr(as_string, ')');
3705                 }
3706                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3707 # endif
3708                 break;
3709         }
3710 #endif
3711         case '_':
3712                 ch = i_getch(input);
3713                 nommu_addchr(as_string, ch);
3714                 ch = i_peek(input);
3715                 if (isalnum(ch)) { /* it's $_name or $_123 */
3716                         ch = '_';
3717                         goto make_var;
3718                 }
3719                 /* else: it's $_ */
3720         /* TODO: $_ and $-: */
3721         /* $_ Shell or shell script name; or last argument of last command
3722          * (if last command wasn't a pipe; if it was, bash sets $_ to "");
3723          * but in command's env, set to full pathname used to invoke it */
3724         /* $- Option flags set by set builtin or shell options (-i etc) */
3725         default:
3726                 o_addQchr(dest, '$');
3727         }
3728         debug_printf_parse("parse_dollar return 0\n");
3729         return 0;
3730 #undef as_string
3731 }
3732
3733 #if BB_MMU
3734 #define parse_stream_dquoted(as_string, dest, input, dquote_end) \
3735         parse_stream_dquoted(dest, input, dquote_end)
3736 #define as_string NULL
3737 #endif
3738 static int parse_stream_dquoted(o_string *as_string,
3739                 o_string *dest,
3740                 struct in_str *input,
3741                 int dquote_end)
3742 {
3743         int ch;
3744         int next;
3745
3746  again:
3747         ch = i_getch(input);
3748         if (ch != EOF)
3749                 nommu_addchr(as_string, ch);
3750         if (ch == dquote_end) { /* may be only '"' or EOF */
3751                 if (dest->o_assignment == NOT_ASSIGNMENT)
3752                         dest->o_expflags ^= EXP_FLAG_ESC_GLOB_CHARS;
3753                 debug_printf_parse("parse_stream_dquoted return 0\n");
3754                 return 0;
3755         }
3756         /* note: can't move it above ch == dquote_end check! */
3757         if (ch == EOF) {
3758                 syntax_error_unterm_ch('"');
3759                 /*xfunc_die(); - redundant */
3760         }
3761         next = '\0';
3762         if (ch != '\n') {
3763                 next = i_peek(input);
3764         }
3765         debug_printf_parse("\" ch=%c (%d) escape=%d\n",
3766                         ch, ch, !!(dest->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
3767         if (ch == '\\') {
3768                 if (next == EOF) {
3769                         syntax_error("\\<eof>");
3770                         xfunc_die();
3771                 }
3772                 /* bash:
3773                  * "The backslash retains its special meaning [in "..."]
3774                  * only when followed by one of the following characters:
3775                  * $, `, ", \, or <newline>.  A double quote may be quoted
3776                  * within double quotes by preceding it with a backslash."
3777                  * NB: in (unquoted) heredoc, above does not apply to ".
3778                  */
3779                 if (next == dquote_end || strchr("$`\\\n", next) != NULL) {
3780                         ch = i_getch(input);
3781                         if (ch != '\n') {
3782                                 o_addqchr(dest, ch);
3783                                 nommu_addchr(as_string, ch);
3784                         }
3785                 } else {
3786                         o_addqchr(dest, '\\');
3787                         nommu_addchr(as_string, '\\');
3788                 }
3789                 goto again;
3790         }
3791         if (ch == '$') {
3792                 if (parse_dollar(as_string, dest, input) != 0) {
3793                         debug_printf_parse("parse_stream_dquoted return 1: "
3794                                         "parse_dollar returned non-0\n");
3795                         return 1;
3796                 }
3797                 goto again;
3798         }
3799 #if ENABLE_HUSH_TICK
3800         if (ch == '`') {
3801                 //unsigned pos = dest->length;
3802                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3803                 o_addchr(dest, 0x80 | '`');
3804                 add_till_backquote(dest, input);
3805                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3806                 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
3807                 goto again;
3808         }
3809 #endif
3810         o_addQchr(dest, ch);
3811         if (ch == '='
3812          && (dest->o_assignment == MAYBE_ASSIGNMENT
3813             || dest->o_assignment == WORD_IS_KEYWORD)
3814          && is_well_formed_var_name(dest->data, '=')
3815         ) {
3816                 dest->o_assignment = DEFINITELY_ASSIGNMENT;
3817         }
3818         goto again;
3819 #undef as_string
3820 }
3821
3822 /*
3823  * Scan input until EOF or end_trigger char.
3824  * Return a list of pipes to execute, or NULL on EOF
3825  * or if end_trigger character is met.
3826  * On syntax error, exit is shell is not interactive,
3827  * reset parsing machinery and start parsing anew,
3828  * or return ERR_PTR.
3829  */
3830 static struct pipe *parse_stream(char **pstring,
3831                 struct in_str *input,
3832                 int end_trigger)
3833 {
3834         struct parse_context ctx;
3835         o_string dest = NULL_O_STRING;
3836         int heredoc_cnt;
3837
3838         /* Single-quote triggers a bypass of the main loop until its mate is
3839          * found.  When recursing, quote state is passed in via dest->o_expflags.
3840          */
3841         debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
3842                         end_trigger ? end_trigger : 'X');
3843         debug_enter();
3844
3845         /* If very first arg is "" or '', dest.data may end up NULL.
3846          * Preventing this: */
3847         o_addchr(&dest, '\0');
3848         dest.length = 0;
3849
3850         /* We used to separate words on $IFS here. This was wrong.
3851          * $IFS is used only for word splitting when $var is expanded,
3852          * here we should use blank chars as separators, not $IFS
3853          */
3854
3855  reset: /* we come back here only on syntax errors in interactive shell */
3856
3857 #if ENABLE_HUSH_INTERACTIVE
3858         input->promptmode = 0; /* PS1 */
3859 #endif
3860         if (MAYBE_ASSIGNMENT != 0)
3861                 dest.o_assignment = MAYBE_ASSIGNMENT;
3862         initialize_context(&ctx);
3863         heredoc_cnt = 0;
3864         while (1) {
3865                 const char *is_blank;
3866                 const char *is_special;
3867                 int ch;
3868                 int next;
3869                 int redir_fd;
3870                 redir_type redir_style;
3871
3872                 ch = i_getch(input);
3873                 debug_printf_parse(": ch=%c (%d) escape=%d\n",
3874                                 ch, ch, !!(dest.o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
3875                 if (ch == EOF) {
3876                         struct pipe *pi;
3877
3878                         if (heredoc_cnt) {
3879                                 syntax_error_unterm_str("here document");
3880                                 goto parse_error;
3881                         }
3882                         /* end_trigger == '}' case errors out earlier,
3883                          * checking only ')' */
3884                         if (end_trigger == ')') {
3885                                 syntax_error_unterm_ch('('); /* exits */
3886                                 /* goto parse_error; */
3887                         }
3888
3889                         if (done_word(&dest, &ctx)) {
3890                                 goto parse_error;
3891                         }
3892                         o_free(&dest);
3893                         done_pipe(&ctx, PIPE_SEQ);
3894                         pi = ctx.list_head;
3895                         /* If we got nothing... */
3896                         /* (this makes bare "&" cmd a no-op.
3897                          * bash says: "syntax error near unexpected token '&'") */
3898                         if (pi->num_cmds == 0
3899                             IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
3900                         ) {
3901                                 free_pipe_list(pi);
3902                                 pi = NULL;
3903                         }
3904 #if !BB_MMU
3905                         debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
3906                         if (pstring)
3907                                 *pstring = ctx.as_string.data;
3908                         else
3909                                 o_free_unsafe(&ctx.as_string);
3910 #endif
3911                         debug_leave();
3912                         debug_printf_parse("parse_stream return %p\n", pi);
3913                         return pi;
3914                 }
3915                 nommu_addchr(&ctx.as_string, ch);
3916
3917                 next = '\0';
3918                 if (ch != '\n')
3919                         next = i_peek(input);
3920
3921                 is_special = "{}<>;&|()#'" /* special outside of "str" */
3922                                 "\\$\"" IF_HUSH_TICK("`"); /* always special */
3923                 /* Are { and } special here? */
3924                 if (ctx.command->argv /* word [word]{... - non-special */
3925                  || dest.length       /* word{... - non-special */
3926                  || dest.has_quoted_part     /* ""{... - non-special */
3927                  || (next != ';'             /* }; - special */
3928                     && next != ')'           /* }) - special */
3929                     && next != '&'           /* }& and }&& ... - special */
3930                     && next != '|'           /* }|| ... - special */
3931                     && !strchr(defifs, next) /* {word - non-special */
3932                     )
3933                 ) {
3934                         /* They are not special, skip "{}" */
3935                         is_special += 2;
3936                 }
3937                 is_special = strchr(is_special, ch);
3938                 is_blank = strchr(defifs, ch);
3939
3940                 if (!is_special && !is_blank) { /* ordinary char */
3941  ordinary_char:
3942                         o_addQchr(&dest, ch);
3943                         if ((dest.o_assignment == MAYBE_ASSIGNMENT
3944                             || dest.o_assignment == WORD_IS_KEYWORD)
3945                          && ch == '='
3946                          && is_well_formed_var_name(dest.data, '=')
3947                         ) {
3948                                 dest.o_assignment = DEFINITELY_ASSIGNMENT;
3949                         }
3950                         continue;
3951                 }
3952
3953                 if (is_blank) {
3954                         if (done_word(&dest, &ctx)) {
3955                                 goto parse_error;
3956                         }
3957                         if (ch == '\n') {
3958 #if ENABLE_HUSH_CASE
3959                                 /* "case ... in <newline> word) ..." -
3960                                  * newlines are ignored (but ';' wouldn't be) */
3961                                 if (ctx.command->argv == NULL
3962                                  && ctx.ctx_res_w == RES_MATCH
3963                                 ) {
3964                                         continue;
3965                                 }
3966 #endif
3967                                 /* Treat newline as a command separator. */
3968                                 done_pipe(&ctx, PIPE_SEQ);
3969                                 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
3970                                 if (heredoc_cnt) {
3971                                         if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
3972                                                 goto parse_error;
3973                                         }
3974                                         heredoc_cnt = 0;
3975                                 }
3976                                 dest.o_assignment = MAYBE_ASSIGNMENT;
3977                                 ch = ';';
3978                                 /* note: if (is_blank) continue;
3979                                  * will still trigger for us */
3980                         }
3981                 }
3982
3983                 /* "cmd}" or "cmd }..." without semicolon or &:
3984                  * } is an ordinary char in this case, even inside { cmd; }
3985                  * Pathological example: { ""}; } should exec "}" cmd
3986                  */
3987                 if (ch == '}') {
3988                         if (!IS_NULL_CMD(ctx.command) /* cmd } */
3989                          || dest.length != 0 /* word} */
3990                          || dest.has_quoted_part    /* ""} */
3991                         ) {
3992                                 goto ordinary_char;
3993                         }
3994                         if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */
3995                                 goto skip_end_trigger;
3996                         /* else: } does terminate a group */
3997                 }
3998
3999                 if (end_trigger && end_trigger == ch
4000                  && (ch != ';' || heredoc_cnt == 0)
4001 #if ENABLE_HUSH_CASE
4002                  && (ch != ')'
4003                     || ctx.ctx_res_w != RES_MATCH
4004                     || (!dest.has_quoted_part && strcmp(dest.data, "esac") == 0)
4005                     )
4006 #endif
4007                 ) {
4008                         if (heredoc_cnt) {
4009                                 /* This is technically valid:
4010                                  * { cat <<HERE; }; echo Ok
4011                                  * heredoc
4012                                  * heredoc
4013                                  * HERE
4014                                  * but we don't support this.
4015                                  * We require heredoc to be in enclosing {}/(),
4016                                  * if any.
4017                                  */
4018                                 syntax_error_unterm_str("here document");
4019                                 goto parse_error;
4020                         }
4021                         if (done_word(&dest, &ctx)) {
4022                                 goto parse_error;
4023                         }
4024                         done_pipe(&ctx, PIPE_SEQ);
4025                         dest.o_assignment = MAYBE_ASSIGNMENT;
4026                         /* Do we sit outside of any if's, loops or case's? */
4027                         if (!HAS_KEYWORDS
4028                          IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
4029                         ) {
4030                                 o_free(&dest);
4031 #if !BB_MMU
4032                                 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
4033                                 if (pstring)
4034                                         *pstring = ctx.as_string.data;
4035                                 else
4036                                         o_free_unsafe(&ctx.as_string);
4037 #endif
4038                                 debug_leave();
4039                                 debug_printf_parse("parse_stream return %p: "
4040                                                 "end_trigger char found\n",
4041                                                 ctx.list_head);
4042                                 return ctx.list_head;
4043                         }
4044                 }
4045  skip_end_trigger:
4046                 if (is_blank)
4047                         continue;
4048
4049                 /* Catch <, > before deciding whether this word is
4050                  * an assignment. a=1 2>z b=2: b=2 is still assignment */
4051                 switch (ch) {
4052                 case '>':
4053                         redir_fd = redirect_opt_num(&dest);
4054                         if (done_word(&dest, &ctx)) {
4055                                 goto parse_error;
4056                         }
4057                         redir_style = REDIRECT_OVERWRITE;
4058                         if (next == '>') {
4059                                 redir_style = REDIRECT_APPEND;
4060                                 ch = i_getch(input);
4061                                 nommu_addchr(&ctx.as_string, ch);
4062                         }
4063 #if 0
4064                         else if (next == '(') {
4065                                 syntax_error(">(process) not supported");
4066                                 goto parse_error;
4067                         }
4068 #endif
4069                         if (parse_redirect(&ctx, redir_fd, redir_style, input))
4070                                 goto parse_error;
4071                         continue; /* back to top of while (1) */
4072                 case '<':
4073                         redir_fd = redirect_opt_num(&dest);
4074                         if (done_word(&dest, &ctx)) {
4075                                 goto parse_error;
4076                         }
4077                         redir_style = REDIRECT_INPUT;
4078                         if (next == '<') {
4079                                 redir_style = REDIRECT_HEREDOC;
4080                                 heredoc_cnt++;
4081                                 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
4082                                 ch = i_getch(input);
4083                                 nommu_addchr(&ctx.as_string, ch);
4084                         } else if (next == '>') {
4085                                 redir_style = REDIRECT_IO;
4086                                 ch = i_getch(input);
4087                                 nommu_addchr(&ctx.as_string, ch);
4088                         }
4089 #if 0
4090                         else if (next == '(') {
4091                                 syntax_error("<(process) not supported");
4092                                 goto parse_error;
4093                         }
4094 #endif
4095                         if (parse_redirect(&ctx, redir_fd, redir_style, input))
4096                                 goto parse_error;
4097                         continue; /* back to top of while (1) */
4098                 }
4099
4100                 if (dest.o_assignment == MAYBE_ASSIGNMENT
4101                  /* check that we are not in word in "a=1 2>word b=1": */
4102                  && !ctx.pending_redirect
4103                 ) {
4104                         /* ch is a special char and thus this word
4105                          * cannot be an assignment */
4106                         dest.o_assignment = NOT_ASSIGNMENT;
4107                 }
4108
4109                 /* Note: nommu_addchr(&ctx.as_string, ch) is already done */
4110
4111                 switch (ch) {
4112                 case '#':
4113                         if (dest.length == 0) {
4114                                 while (1) {
4115                                         ch = i_peek(input);
4116                                         if (ch == EOF || ch == '\n')
4117                                                 break;
4118                                         i_getch(input);
4119                                         /* note: we do not add it to &ctx.as_string */
4120                                 }
4121                                 nommu_addchr(&ctx.as_string, '\n');
4122                         } else {
4123                                 o_addQchr(&dest, ch);
4124                         }
4125                         break;
4126                 case '\\':
4127                         if (next == EOF) {
4128                                 syntax_error("\\<eof>");
4129                                 xfunc_die();
4130                         }
4131                         ch = i_getch(input);
4132                         if (ch != '\n') {
4133                                 o_addchr(&dest, '\\');
4134                                 /*nommu_addchr(&ctx.as_string, '\\'); - already done */
4135                                 o_addchr(&dest, ch);
4136                                 nommu_addchr(&ctx.as_string, ch);
4137                                 /* Example: echo Hello \2>file
4138                                  * we need to know that word 2 is quoted */
4139                                 dest.has_quoted_part = 1;
4140                         }
4141 #if !BB_MMU
4142                         else {
4143                                 /* It's "\<newline>". Remove trailing '\' from ctx.as_string */
4144                                 ctx.as_string.data[--ctx.as_string.length] = '\0';
4145                         }
4146 #endif
4147                         break;
4148                 case '$':
4149                         if (parse_dollar(&ctx.as_string, &dest, input) != 0) {
4150                                 debug_printf_parse("parse_stream parse error: "
4151                                         "parse_dollar returned non-0\n");
4152                                 goto parse_error;
4153                         }
4154                         break;
4155                 case '\'':
4156                         dest.has_quoted_part = 1;
4157                         while (1) {
4158                                 ch = i_getch(input);
4159                                 if (ch == EOF) {
4160                                         syntax_error_unterm_ch('\'');
4161                                         /*xfunc_die(); - redundant */
4162                                 }
4163                                 nommu_addchr(&ctx.as_string, ch);
4164                                 if (ch == '\'')
4165                                         break;
4166                                 o_addqchr(&dest, ch);
4167                         }
4168                         break;
4169                 case '"':
4170                         dest.has_quoted_part = 1;
4171                         if (dest.o_assignment == NOT_ASSIGNMENT)
4172                                 dest.o_expflags ^= EXP_FLAG_ESC_GLOB_CHARS;
4173                         if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"'))
4174                                 goto parse_error;
4175                         break;
4176 #if ENABLE_HUSH_TICK
4177                 case '`': {
4178                         unsigned pos;
4179
4180                         o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4181                         o_addchr(&dest, '`');
4182                         pos = dest.length;
4183                         add_till_backquote(&dest, input);
4184 # if !BB_MMU
4185                         o_addstr(&ctx.as_string, dest.data + pos);
4186                         o_addchr(&ctx.as_string, '`');
4187 # endif
4188                         o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4189                         //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
4190                         break;
4191                 }
4192 #endif
4193                 case ';':
4194 #if ENABLE_HUSH_CASE
4195  case_semi:
4196 #endif
4197                         if (done_word(&dest, &ctx)) {
4198                                 goto parse_error;
4199                         }
4200                         done_pipe(&ctx, PIPE_SEQ);
4201 #if ENABLE_HUSH_CASE
4202                         /* Eat multiple semicolons, detect
4203                          * whether it means something special */
4204                         while (1) {
4205                                 ch = i_peek(input);
4206                                 if (ch != ';')
4207                                         break;
4208                                 ch = i_getch(input);
4209                                 nommu_addchr(&ctx.as_string, ch);
4210                                 if (ctx.ctx_res_w == RES_CASE_BODY) {
4211                                         ctx.ctx_dsemicolon = 1;
4212                                         ctx.ctx_res_w = RES_MATCH;
4213                                         break;
4214                                 }
4215                         }
4216 #endif
4217  new_cmd:
4218                         /* We just finished a cmd. New one may start
4219                          * with an assignment */
4220                         dest.o_assignment = MAYBE_ASSIGNMENT;
4221                         break;
4222                 case '&':
4223                         if (done_word(&dest, &ctx)) {
4224                                 goto parse_error;
4225                         }
4226                         if (next == '&') {
4227                                 ch = i_getch(input);
4228                                 nommu_addchr(&ctx.as_string, ch);
4229                                 done_pipe(&ctx, PIPE_AND);
4230                         } else {
4231                                 done_pipe(&ctx, PIPE_BG);
4232                         }
4233                         goto new_cmd;
4234                 case '|':
4235                         if (done_word(&dest, &ctx)) {
4236                                 goto parse_error;
4237                         }
4238 #if ENABLE_HUSH_CASE
4239                         if (ctx.ctx_res_w == RES_MATCH)
4240                                 break; /* we are in case's "word | word)" */
4241 #endif
4242                         if (next == '|') { /* || */
4243                                 ch = i_getch(input);
4244                                 nommu_addchr(&ctx.as_string, ch);
4245                                 done_pipe(&ctx, PIPE_OR);
4246                         } else {
4247                                 /* we could pick up a file descriptor choice here
4248                                  * with redirect_opt_num(), but bash doesn't do it.
4249                                  * "echo foo 2| cat" yields "foo 2". */
4250                                 done_command(&ctx);
4251 #if !BB_MMU
4252                                 o_reset_to_empty_unquoted(&ctx.as_string);
4253 #endif
4254                         }
4255                         goto new_cmd;
4256                 case '(':
4257 #if ENABLE_HUSH_CASE
4258                         /* "case... in [(]word)..." - skip '(' */
4259                         if (ctx.ctx_res_w == RES_MATCH
4260                          && ctx.command->argv == NULL /* not (word|(... */
4261                          && dest.length == 0 /* not word(... */
4262                          && dest.has_quoted_part == 0 /* not ""(... */
4263                         ) {
4264                                 continue;
4265                         }
4266 #endif
4267                 case '{':
4268                         if (parse_group(&dest, &ctx, input, ch) != 0) {
4269                                 goto parse_error;
4270                         }
4271                         goto new_cmd;
4272                 case ')':
4273 #if ENABLE_HUSH_CASE
4274                         if (ctx.ctx_res_w == RES_MATCH)
4275                                 goto case_semi;
4276 #endif
4277                 case '}':
4278                         /* proper use of this character is caught by end_trigger:
4279                          * if we see {, we call parse_group(..., end_trigger='}')
4280                          * and it will match } earlier (not here). */
4281                         syntax_error_unexpected_ch(ch);
4282                         goto parse_error;
4283                 default:
4284                         if (HUSH_DEBUG)
4285                                 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
4286                 }
4287         } /* while (1) */
4288
4289  parse_error:
4290         {
4291                 struct parse_context *pctx;
4292                 IF_HAS_KEYWORDS(struct parse_context *p2;)
4293
4294                 /* Clean up allocated tree.
4295                  * Sample for finding leaks on syntax error recovery path.
4296                  * Run it from interactive shell, watch pmap `pidof hush`.
4297                  * while if false; then false; fi; do break; fi
4298                  * Samples to catch leaks at execution:
4299                  * while if (true | {true;}); then echo ok; fi; do break; done
4300                  * while if (true | {true;}); then echo ok; fi; do (if echo ok; break; then :; fi) | cat; break; done
4301                  */
4302                 pctx = &ctx;
4303                 do {
4304                         /* Update pipe/command counts,
4305                          * otherwise freeing may miss some */
4306                         done_pipe(pctx, PIPE_SEQ);
4307                         debug_printf_clean("freeing list %p from ctx %p\n",
4308                                         pctx->list_head, pctx);
4309                         debug_print_tree(pctx->list_head, 0);
4310                         free_pipe_list(pctx->list_head);
4311                         debug_printf_clean("freed list %p\n", pctx->list_head);
4312 #if !BB_MMU
4313                         o_free_unsafe(&pctx->as_string);
4314 #endif
4315                         IF_HAS_KEYWORDS(p2 = pctx->stack;)
4316                         if (pctx != &ctx) {
4317                                 free(pctx);
4318                         }
4319                         IF_HAS_KEYWORDS(pctx = p2;)
4320                 } while (HAS_KEYWORDS && pctx);
4321                 /* Free text, clear all dest fields */
4322                 o_free(&dest);
4323                 /* If we are not in top-level parse, we return,
4324                  * our caller will propagate error.
4325                  */
4326                 if (end_trigger != ';') {
4327 #if !BB_MMU
4328                         if (pstring)
4329                                 *pstring = NULL;
4330 #endif
4331                         debug_leave();
4332                         return ERR_PTR;
4333                 }
4334                 /* Discard cached input, force prompt */
4335                 input->p = NULL;
4336                 IF_HUSH_INTERACTIVE(input->promptme = 1;)
4337                 goto reset;
4338         }
4339 }
4340
4341
4342 /*** Execution routines ***/
4343
4344 /* Expansion can recurse, need forward decls: */
4345 static char *expand_string_to_string(const char *str);
4346 static int process_command_subs(o_string *dest, const char *s);
4347
4348 /* expand_strvec_to_strvec() takes a list of strings, expands
4349  * all variable references within and returns a pointer to
4350  * a list of expanded strings, possibly with larger number
4351  * of strings. (Think VAR="a b"; echo $VAR).
4352  * This new list is allocated as a single malloc block.
4353  * NULL-terminated list of char* pointers is at the beginning of it,
4354  * followed by strings themselves.
4355  * Caller can deallocate entire list by single free(list). */
4356
4357 /* Store given string, finalizing the word and starting new one whenever
4358  * we encounter IFS char(s). This is used for expanding variable values.
4359  * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
4360 static int expand_on_ifs(o_string *output, int n, const char *str)
4361 {
4362         while (1) {
4363                 int word_len = strcspn(str, G.ifs);
4364                 if (word_len) {
4365                         if (output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)
4366                                 o_addqblock(output, str, word_len);
4367                         else if (!(output->o_expflags & EXP_FLAG_GLOB))
4368                                 o_addblock(output, str, word_len);
4369                         else /* if (!escape && glob) */ {
4370                                 /* Protect backslashes against globbing up :)
4371                                  * Example: "v='\*'; echo b$v"
4372                                  */
4373                                 o_addblock_duplicate_backslash(output, str, word_len);
4374                                 /*/ Why can't we do it easier? */
4375                                 /*o_addblock(output, str, word_len); - WRONG: "v='\*'; echo Z$v" prints "Z*" instead of "Z\*" */
4376                                 /*o_addqblock(output, str, word_len); - WRONG: "v='*'; echo Z$v" prints "Z*" instead of Z* files */
4377                         }
4378                         str += word_len;
4379                 }
4380                 if (!*str)  /* EOL - do not finalize word */
4381                         break;
4382                 o_addchr(output, '\0');
4383                 debug_print_list("expand_on_ifs", output, n);
4384                 n = o_save_ptr(output, n);
4385                 str += strspn(str, G.ifs); /* skip ifs chars */
4386         }
4387         debug_print_list("expand_on_ifs[1]", output, n);
4388         return n;
4389 }
4390
4391 /* Helper to expand $((...)) and heredoc body. These act as if
4392  * they are in double quotes, with the exception that they are not :).
4393  * Just the rules are similar: "expand only $var and `cmd`"
4394  *
4395  * Returns malloced string.
4396  * As an optimization, we return NULL if expansion is not needed.
4397  */
4398 static char *expand_pseudo_dquoted(const char *str)
4399 {
4400         char *exp_str;
4401         struct in_str input;
4402         o_string dest = NULL_O_STRING;
4403
4404         if (!strchr(str, '$')
4405          && !strchr(str, '\\')
4406 #if ENABLE_HUSH_TICK
4407          && !strchr(str, '`')
4408 #endif
4409         ) {
4410                 return NULL;
4411         }
4412
4413         /* We need to expand. Example:
4414          * echo $(($a + `echo 1`)) $((1 + $((2)) ))
4415          */
4416         setup_string_in_str(&input, str);
4417         parse_stream_dquoted(NULL, &dest, &input, EOF);
4418         //bb_error_msg("'%s' -> '%s'", str, dest.data);
4419         exp_str = expand_string_to_string(dest.data);
4420         //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
4421         o_free_unsafe(&dest);
4422         return exp_str;
4423 }
4424
4425 #if ENABLE_SH_MATH_SUPPORT
4426 static arith_t expand_and_evaluate_arith(const char *arg, int *errcode_p)
4427 {
4428         arith_eval_hooks_t hooks;
4429         arith_t res;
4430         char *exp_str;
4431
4432         hooks.lookupvar = get_local_var_value;
4433         hooks.setvar = set_local_var_from_halves;
4434         //hooks.endofname = endofname;
4435         exp_str = expand_pseudo_dquoted(arg);
4436         res = arith(exp_str ? exp_str : arg, errcode_p, &hooks);
4437         free(exp_str);
4438         return res;
4439 }
4440 #endif
4441
4442 #if ENABLE_HUSH_BASH_COMPAT
4443 /* ${var/[/]pattern[/repl]} helpers */
4444 static char *strstr_pattern(char *val, const char *pattern, int *size)
4445 {
4446         while (1) {
4447                 char *end = scan_and_match(val, pattern, SCAN_MOVE_FROM_RIGHT + SCAN_MATCH_LEFT_HALF);
4448                 debug_printf_varexp("val:'%s' pattern:'%s' end:'%s'\n", val, pattern, end);
4449                 if (end) {
4450                         *size = end - val;
4451                         return val;
4452                 }
4453                 if (*val == '\0')
4454                         return NULL;
4455                 /* Optimization: if "*pat" did not match the start of "string",
4456                  * we know that "tring", "ring" etc will not match too:
4457                  */
4458                 if (pattern[0] == '*')
4459                         return NULL;
4460                 val++;
4461         }
4462 }
4463 static char *replace_pattern(char *val, const char *pattern, const char *repl, char exp_op)
4464 {
4465         char *result = NULL;
4466         unsigned res_len = 0;
4467         unsigned repl_len = strlen(repl);
4468
4469         while (1) {
4470                 int size;
4471                 char *s = strstr_pattern(val, pattern, &size);
4472                 if (!s)
4473                         break;
4474
4475                 result = xrealloc(result, res_len + (s - val) + repl_len + 1);
4476                 memcpy(result + res_len, val, s - val);
4477                 res_len += s - val;
4478                 strcpy(result + res_len, repl);
4479                 res_len += repl_len;
4480                 debug_printf_varexp("val:'%s' s:'%s' result:'%s'\n", val, s, result);
4481
4482                 val = s + size;
4483                 if (exp_op == '/')
4484                         break;
4485         }
4486         if (val[0] && result) {
4487                 result = xrealloc(result, res_len + strlen(val) + 1);
4488                 strcpy(result + res_len, val);
4489                 debug_printf_varexp("val:'%s' result:'%s'\n", val, result);
4490         }
4491         debug_printf_varexp("result:'%s'\n", result);
4492         return result;
4493 }
4494 #endif
4495
4496 /* Helper:
4497  * Handles <SPECIAL_VAR_SYMBOL>varname...<SPECIAL_VAR_SYMBOL> construct.
4498  */
4499 static NOINLINE const char *expand_one_var(char **to_be_freed_pp, char *arg, char **pp, char first_ch)
4500 {
4501         const char *val = NULL;
4502         char *to_be_freed = NULL;
4503         char *p = *pp;
4504         char *var;
4505         char first_char;
4506         char exp_op;
4507         char exp_save = exp_save; /* for compiler */
4508         char *exp_saveptr; /* points to expansion operator */
4509         char *exp_word = exp_word; /* for compiler */
4510
4511         *p = '\0'; /* replace trailing SPECIAL_VAR_SYMBOL */
4512         var = arg;
4513         exp_saveptr = arg[1] ? strchr(VAR_ENCODED_SUBST_OPS, arg[1]) : NULL;
4514         first_char = arg[0] = first_ch & 0x7f;
4515         exp_op = 0;
4516
4517         if (first_char == '#'      /* ${#... */
4518          && arg[1] && !exp_saveptr /* not ${#} and not ${#<op_char>...} */
4519         ) {
4520                 /* It must be length operator: ${#var} */
4521                 var++;
4522                 exp_op = 'L';
4523         } else {
4524                 /* Maybe handle parameter expansion */
4525                 if (exp_saveptr /* if 2nd char is one of expansion operators */
4526                  && strchr(NUMERIC_SPECVARS_STR, first_char) /* 1st char is special variable */
4527                 ) {
4528                         /* ${?:0}, ${#[:]%0} etc */
4529                         exp_saveptr = var + 1;
4530                 } else {
4531                         /* ${?}, ${var}, ${var:0}, ${var[:]%0} etc */
4532                         exp_saveptr = var+1 + strcspn(var+1, VAR_ENCODED_SUBST_OPS);
4533                 }
4534                 exp_op = exp_save = *exp_saveptr;
4535                 if (exp_op) {
4536                         exp_word = exp_saveptr + 1;
4537                         if (exp_op == ':') {
4538                                 exp_op = *exp_word++;
4539 //TODO: try ${var:} and ${var:bogus} in non-bash config
4540                                 if (ENABLE_HUSH_BASH_COMPAT
4541                                  && (!exp_op || !strchr(MINUS_PLUS_EQUAL_QUESTION, exp_op))
4542                                 ) {
4543                                         /* oops... it's ${var:N[:M]}, not ${var:?xxx} or some such */
4544                                         exp_op = ':';
4545                                         exp_word--;
4546                                 }
4547                         }
4548                         *exp_saveptr = '\0';
4549                 } /* else: it's not an expansion op, but bare ${var} */
4550         }
4551
4552         /* Look up the variable in question */
4553         if (isdigit(var[0])) {
4554                 /* parse_dollar should have vetted var for us */
4555                 int n = xatoi_positive(var);
4556                 if (n < G.global_argc)
4557                         val = G.global_argv[n];
4558                 /* else val remains NULL: $N with too big N */
4559         } else {
4560                 switch (var[0]) {
4561                 case '$': /* pid */
4562                         val = utoa(G.root_pid);
4563                         break;
4564                 case '!': /* bg pid */
4565                         val = G.last_bg_pid ? utoa(G.last_bg_pid) : "";
4566                         break;
4567                 case '?': /* exitcode */
4568                         val = utoa(G.last_exitcode);
4569                         break;
4570                 case '#': /* argc */
4571                         val = utoa(G.global_argc ? G.global_argc-1 : 0);
4572                         break;
4573                 default:
4574                         val = get_local_var_value(var);
4575                 }
4576         }
4577
4578         /* Handle any expansions */
4579         if (exp_op == 'L') {
4580                 debug_printf_expand("expand: length(%s)=", val);
4581                 val = utoa(val ? strlen(val) : 0);
4582                 debug_printf_expand("%s\n", val);
4583         } else if (exp_op) {
4584                 if (exp_op == '%' || exp_op == '#') {
4585                         /* Standard-mandated substring removal ops:
4586                          * ${parameter%word} - remove smallest suffix pattern
4587                          * ${parameter%%word} - remove largest suffix pattern
4588                          * ${parameter#word} - remove smallest prefix pattern
4589                          * ${parameter##word} - remove largest prefix pattern
4590                          *
4591                          * Word is expanded to produce a glob pattern.
4592                          * Then var's value is matched to it and matching part removed.
4593                          */
4594                         if (val && val[0]) {
4595                                 char *exp_exp_word;
4596                                 char *loc;
4597                                 unsigned scan_flags = pick_scan(exp_op, *exp_word);
4598                                 if (exp_op == *exp_word)        /* ## or %% */
4599                                         exp_word++;
4600 //TODO: avoid xstrdup unless needed
4601 // (see HACK ALERT below for an example)
4602                                 val = to_be_freed = xstrdup(val);
4603 //TODO: fix expansion rules:
4604                                 exp_exp_word = expand_pseudo_dquoted(exp_word);
4605                                 if (exp_exp_word)
4606                                         exp_word = exp_exp_word;
4607                                 loc = scan_and_match(to_be_freed, exp_word, scan_flags);
4608                                 //bb_error_msg("op:%c str:'%s' pat:'%s' res:'%s'",
4609                                 //              exp_op, to_be_freed, exp_word, loc);
4610                                 free(exp_exp_word);
4611                                 if (loc) { /* match was found */
4612                                         if (scan_flags & SCAN_MATCH_LEFT_HALF) /* #[#] */
4613                                                 val = loc;
4614                                         else /* %[%] */
4615                                                 *loc = '\0';
4616                                 }
4617                         }
4618                 }
4619 #if ENABLE_HUSH_BASH_COMPAT
4620                 else if (exp_op == '/' || exp_op == '\\') {
4621                         /* It's ${var/[/]pattern[/repl]} thing.
4622                          * Note that in encoded form it has TWO parts:
4623                          * var/pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
4624                          */
4625                         /* Empty variable always gives nothing: */
4626                         // "v=''; echo ${v/*/w}" prints "", not "w"
4627                         if (val && val[0]) {
4628                                 /* It's ${var/[/]pattern[/repl]} thing */
4629                                 /*
4630                                  * Pattern is taken literally, while
4631                                  * repl should be unbackslashed and globbed
4632                                  * by the usual expansion rules:
4633                                  * >az; >bz;
4634                                  * v='a bz'; echo "${v/a*z/a*z}" prints "a*z"
4635                                  * v='a bz'; echo "${v/a*z/\z}"  prints "\z"
4636                                  * v='a bz'; echo ${v/a*z/a*z}   prints "az"
4637                                  * v='a bz'; echo ${v/a*z/\z}    prints "z"
4638                                  * (note that a*z _pattern_ is never globbed!)
4639                                  */
4640 //TODO: fix expansion rules:
4641                                 char *pattern, *repl, *t;
4642                                 pattern = expand_pseudo_dquoted(exp_word);
4643                                 if (!pattern)
4644                                         pattern = xstrdup(exp_word);
4645                                 debug_printf_varexp("pattern:'%s'->'%s'\n", exp_word, pattern);
4646                                 *p++ = SPECIAL_VAR_SYMBOL;
4647                                 exp_word = p;
4648                                 p = strchr(p, SPECIAL_VAR_SYMBOL);
4649                                 *p = '\0';
4650                                 repl = expand_pseudo_dquoted(exp_word);
4651                                 debug_printf_varexp("repl:'%s'->'%s'\n", exp_word, repl);
4652                                 /* HACK ALERT. We depend here on the fact that
4653                                  * G.global_argv and results of utoa and get_local_var_value
4654                                  * are actually in writable memory:
4655                                  * replace_pattern momentarily stores NULs there. */
4656                                 t = (char*)val;
4657                                 to_be_freed = replace_pattern(t,
4658                                                 pattern,
4659                                                 (repl ? repl : exp_word),
4660                                                 exp_op);
4661                                 if (to_be_freed) /* at least one replace happened */
4662                                         val = to_be_freed;
4663                                 free(pattern);
4664                                 free(repl);
4665                         }
4666                 }
4667 #endif
4668                 else if (exp_op == ':') {
4669 #if ENABLE_HUSH_BASH_COMPAT && ENABLE_SH_MATH_SUPPORT
4670                         /* It's ${var:N[:M]} bashism.
4671                          * Note that in encoded form it has TWO parts:
4672                          * var:N<SPECIAL_VAR_SYMBOL>M<SPECIAL_VAR_SYMBOL>
4673                          */
4674                         arith_t beg, len;
4675                         int errcode = 0;
4676
4677                         beg = expand_and_evaluate_arith(exp_word, &errcode);
4678                         debug_printf_varexp("beg:'%s'=%lld\n", exp_word, (long long)beg);
4679                         *p++ = SPECIAL_VAR_SYMBOL;
4680                         exp_word = p;
4681                         p = strchr(p, SPECIAL_VAR_SYMBOL);
4682                         *p = '\0';
4683                         len = expand_and_evaluate_arith(exp_word, &errcode);
4684                         debug_printf_varexp("len:'%s'=%lld\n", exp_word, (long long)len);
4685
4686                         if (errcode >= 0 && len >= 0) { /* bash compat: len < 0 is illegal */
4687                                 if (beg < 0) /* bash compat */
4688                                         beg = 0;
4689                                 debug_printf_varexp("from val:'%s'\n", val);
4690                                 if (len == 0 || !val || beg >= strlen(val))
4691                                         val = "";
4692                                 else {
4693                                         /* Paranoia. What if user entered 9999999999999
4694                                          * which fits in arith_t but not int? */
4695                                         if (len >= INT_MAX)
4696                                                 len = INT_MAX;
4697                                         val = to_be_freed = xstrndup(val + beg, len);
4698                                 }
4699                                 debug_printf_varexp("val:'%s'\n", val);
4700                         } else
4701 #endif
4702                         {
4703                                 die_if_script("malformed ${%s:...}", var);
4704                                 val = "";
4705                         }
4706                 } else { /* one of "-=+?" */
4707                         /* Standard-mandated substitution ops:
4708                          * ${var?word} - indicate error if unset
4709                          *      If var is unset, word (or a message indicating it is unset
4710                          *      if word is null) is written to standard error
4711                          *      and the shell exits with a non-zero exit status.
4712                          *      Otherwise, the value of var is substituted.
4713                          * ${var-word} - use default value
4714                          *      If var is unset, word is substituted.
4715                          * ${var=word} - assign and use default value
4716                          *      If var is unset, word is assigned to var.
4717                          *      In all cases, final value of var is substituted.
4718                          * ${var+word} - use alternative value
4719                          *      If var is unset, null is substituted.
4720                          *      Otherwise, word is substituted.
4721                          *
4722                          * Word is subjected to tilde expansion, parameter expansion,
4723                          * command substitution, and arithmetic expansion.
4724                          * If word is not needed, it is not expanded.
4725                          *
4726                          * Colon forms (${var:-word}, ${var:=word} etc) do the same,
4727                          * but also treat null var as if it is unset.
4728                          */
4729                         int use_word = (!val || ((exp_save == ':') && !val[0]));
4730                         if (exp_op == '+')
4731                                 use_word = !use_word;
4732                         debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
4733                                         (exp_save == ':') ? "true" : "false", use_word);
4734                         if (use_word) {
4735                                 to_be_freed = expand_pseudo_dquoted(exp_word);
4736                                 if (to_be_freed)
4737                                         exp_word = to_be_freed;
4738                                 if (exp_op == '?') {
4739                                         /* mimic bash message */
4740                                         die_if_script("%s: %s",
4741                                                 var,
4742                                                 exp_word[0] ? exp_word : "parameter null or not set"
4743                                         );
4744 //TODO: how interactive bash aborts expansion mid-command?
4745                                 } else {
4746                                         val = exp_word;
4747                                 }
4748
4749                                 if (exp_op == '=') {
4750                                         /* ${var=[word]} or ${var:=[word]} */
4751                                         if (isdigit(var[0]) || var[0] == '#') {
4752                                                 /* mimic bash message */
4753                                                 die_if_script("$%s: cannot assign in this way", var);
4754                                                 val = NULL;
4755                                         } else {
4756                                                 char *new_var = xasprintf("%s=%s", var, val);
4757                                                 set_local_var(new_var, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
4758                                         }
4759                                 }
4760                         }
4761                 } /* one of "-=+?" */
4762
4763                 *exp_saveptr = exp_save;
4764         } /* if (exp_op) */
4765
4766         arg[0] = first_ch;
4767
4768         *pp = p;
4769         *to_be_freed_pp = to_be_freed;
4770         return val;
4771 }
4772
4773 /* Expand all variable references in given string, adding words to list[]
4774  * at n, n+1,... positions. Return updated n (so that list[n] is next one
4775  * to be filled). This routine is extremely tricky: has to deal with
4776  * variables/parameters with whitespace, $* and $@, and constructs like
4777  * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
4778 static NOINLINE int expand_vars_to_list(o_string *output, int n, char *arg)
4779 {
4780         /* output->o_expflags & EXP_FLAG_SINGLEWORD (0x80) if we are in
4781          * expansion of right-hand side of assignment == 1-element expand.
4782          */
4783         char ored_ch;
4784         char *p;
4785
4786         ored_ch = 0;
4787
4788         debug_printf_expand("expand_vars_to_list: arg:'%s' singleword:%x\n", arg,
4789                         !!(output->o_expflags & EXP_FLAG_SINGLEWORD));
4790         debug_print_list("expand_vars_to_list", output, n);
4791         n = o_save_ptr(output, n);
4792         debug_print_list("expand_vars_to_list[0]", output, n);
4793
4794         while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
4795                 char first_ch;
4796                 char *to_be_freed = NULL;
4797                 const char *val = NULL;
4798 #if ENABLE_HUSH_TICK
4799                 o_string subst_result = NULL_O_STRING;
4800 #endif
4801 #if ENABLE_SH_MATH_SUPPORT
4802                 char arith_buf[sizeof(arith_t)*3 + 2];
4803 #endif
4804                 o_addblock(output, arg, p - arg);
4805                 debug_print_list("expand_vars_to_list[1]", output, n);
4806                 arg = ++p;
4807                 p = strchr(p, SPECIAL_VAR_SYMBOL);
4808
4809                 first_ch = arg[0] | (output->o_expflags & EXP_FLAG_SINGLEWORD);
4810                 /* "$@" is special. Even if quoted, it can still
4811                  * expand to nothing (not even an empty string) */
4812                 if ((first_ch & 0x7f) != '@')
4813                         ored_ch |= first_ch;
4814
4815                 switch (first_ch & 0x7f) {
4816                 /* Highest bit in first_ch indicates that var is double-quoted */
4817                 case '*':
4818                 case '@': {
4819                         int i;
4820                         if (!G.global_argv[1])
4821                                 break;
4822                         i = 1;
4823                         ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
4824                         if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
4825                                 int sv = output->o_expflags;
4826                                 /* unquoted var's contents should be globbed, so don't escape */
4827                                 output->o_expflags &= ~EXP_FLAG_ESC_GLOB_CHARS;
4828                                 while (G.global_argv[i]) {
4829                                         n = expand_on_ifs(output, n, G.global_argv[i]);
4830                                         debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
4831                                         if (G.global_argv[i++][0] && G.global_argv[i]) {
4832                                                 /* this argv[] is not empty and not last:
4833                                                  * put terminating NUL, start new word */
4834                                                 o_addchr(output, '\0');
4835                                                 debug_print_list("expand_vars_to_list[2]", output, n);
4836                                                 n = o_save_ptr(output, n);
4837                                                 debug_print_list("expand_vars_to_list[3]", output, n);
4838                                         }
4839                                 }
4840                                 output->o_expflags = sv;
4841                         } else
4842                         /* If EXP_FLAG_SINGLEWORD, we handle assignment 'a=....$@.....'
4843                          * and in this case should treat it like '$*' - see 'else...' below */
4844                         if (first_ch == ('@'|0x80)  /* quoted $@ */
4845                          && !(output->o_expflags & EXP_FLAG_SINGLEWORD)
4846                         ) {
4847                                 while (1) {
4848                                         o_addQstr(output, G.global_argv[i]);
4849                                         if (++i >= G.global_argc)
4850                                                 break;
4851                                         o_addchr(output, '\0');
4852                                         debug_print_list("expand_vars_to_list[4]", output, n);
4853                                         n = o_save_ptr(output, n);
4854                                 }
4855                         } else { /* quoted $*: add as one word */
4856                                 while (1) {
4857                                         o_addQstr(output, G.global_argv[i]);
4858                                         if (!G.global_argv[++i])
4859                                                 break;
4860                                         if (G.ifs[0])
4861                                                 o_addchr(output, G.ifs[0]);
4862                                 }
4863                         }
4864                         break;
4865                 }
4866                 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
4867                         /* "Empty variable", used to make "" etc to not disappear */
4868                         arg++;
4869                         ored_ch = 0x80;
4870                         break;
4871 #if ENABLE_HUSH_TICK
4872                 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
4873                         *p = '\0';
4874                         arg++;
4875                         /* Can't just stuff it into output o_string,
4876                          * expanded result may need to be globbed
4877                          * and $IFS-splitted */
4878                         debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
4879                         G.last_exitcode = process_command_subs(&subst_result, arg);
4880                         debug_printf_subst("SUBST RES:%d '%s'\n", G.last_exitcode, subst_result.data);
4881                         val = subst_result.data;
4882                         goto store_val;
4883 #endif
4884 #if ENABLE_SH_MATH_SUPPORT
4885                 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
4886                         arith_t res;
4887                         int errcode;
4888
4889                         arg++; /* skip '+' */
4890                         *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
4891                         debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
4892                         res = expand_and_evaluate_arith(arg, &errcode);
4893
4894                         if (errcode < 0) {
4895                                 const char *msg = "error in arithmetic";
4896                                 switch (errcode) {
4897                                 case -3:
4898                                         msg = "exponent less than 0";
4899                                         break;
4900                                 case -2:
4901                                         msg = "divide by 0";
4902                                         break;
4903                                 case -5:
4904                                         msg = "expression recursion loop detected";
4905                                         break;
4906                                 }
4907                                 die_if_script(msg);
4908                         }
4909                         debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res);
4910                         sprintf(arith_buf, arith_t_fmt, res);
4911                         val = arith_buf;
4912                         break;
4913                 }
4914 #endif
4915                 default:
4916                         val = expand_one_var(&to_be_freed, arg, &p, first_ch);
4917  IF_HUSH_TICK(store_val:)
4918                         if (!(first_ch & 0x80)) { /* unquoted $VAR */
4919                                 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val,
4920                                                 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
4921                                 if (val && val[0]) {
4922                                         /* unquoted var's contents should be globbed, so don't escape */
4923                                         int sv = output->o_expflags;
4924                                         output->o_expflags &= ~EXP_FLAG_ESC_GLOB_CHARS;
4925                                         n = expand_on_ifs(output, n, val);
4926                                         val = NULL;
4927                                         output->o_expflags = sv;
4928                                 }
4929                         } else { /* quoted $VAR, val will be appended below */
4930                                 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val,
4931                                                 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
4932                         }
4933                         break;
4934
4935                 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
4936
4937                 if (val && val[0]) {
4938                         o_addQstr(output, val);
4939                 }
4940                 free(to_be_freed);
4941                 /* Do the check to avoid writing to a const string */
4942                 if (*p != SPECIAL_VAR_SYMBOL)
4943                         *p = SPECIAL_VAR_SYMBOL;
4944
4945 #if ENABLE_HUSH_TICK
4946                 o_free(&subst_result);
4947 #endif
4948                 arg = ++p;
4949         } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
4950
4951         if (arg[0]) {
4952                 debug_print_list("expand_vars_to_list[a]", output, n);
4953                 /* this part is literal, and it was already pre-quoted
4954                  * if needed (much earlier), do not use o_addQstr here! */
4955                 o_addstr_with_NUL(output, arg);
4956                 debug_print_list("expand_vars_to_list[b]", output, n);
4957         } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
4958          && !(ored_ch & 0x80) /* and all vars were not quoted. */
4959         ) {
4960                 n--;
4961                 /* allow to reuse list[n] later without re-growth */
4962                 output->has_empty_slot = 1;
4963         } else {
4964                 o_addchr(output, '\0');
4965         }
4966
4967         return n;
4968 }
4969
4970 static char **expand_variables(char **argv, unsigned expflags)
4971 {
4972         int n;
4973         char **list;
4974         o_string output = NULL_O_STRING;
4975
4976         output.o_expflags = expflags;
4977
4978         n = 0;
4979         while (*argv) {
4980                 n = expand_vars_to_list(&output, n, *argv);
4981                 argv++;
4982         }
4983         debug_print_list("expand_variables", &output, n);
4984
4985         /* output.data (malloced in one block) gets returned in "list" */
4986         list = o_finalize_list(&output, n);
4987         debug_print_strings("expand_variables[1]", list);
4988         return list;
4989 }
4990
4991 static char **expand_strvec_to_strvec(char **argv)
4992 {
4993         return expand_variables(argv, EXP_FLAG_GLOB | EXP_FLAG_ESC_GLOB_CHARS);
4994 }
4995
4996 #if ENABLE_HUSH_BASH_COMPAT
4997 static char **expand_strvec_to_strvec_singleword_noglob(char **argv)
4998 {
4999         return expand_variables(argv, EXP_FLAG_SINGLEWORD);
5000 }
5001 #endif
5002
5003 /* Used for expansion of right hand of assignments,
5004  * $((...)), heredocs, variable espansion parts.
5005  *
5006  * NB: should NOT do globbing!
5007  * "export v=/bin/c*; env | grep ^v=" outputs "v=/bin/c*"
5008  */
5009 static char *expand_string_to_string(const char *str)
5010 {
5011         char *argv[2], **list;
5012
5013         /* This is generally an optimization, but it also
5014          * handles "", which otherwise trips over !list[0] check below.
5015          * (is this ever happens that we actually get str="" here?)
5016          */
5017         if (!strchr(str, SPECIAL_VAR_SYMBOL) && !strchr(str, '\\')) {
5018                 //TODO: Can use on strings with \ too, just unbackslash() them?
5019                 debug_printf_expand("string_to_string(fast)='%s'\n", str);
5020                 return xstrdup(str);
5021         }
5022
5023         argv[0] = (char*)str;
5024         argv[1] = NULL;
5025         list = expand_variables(argv, EXP_FLAG_ESC_GLOB_CHARS | EXP_FLAG_SINGLEWORD);
5026         if (HUSH_DEBUG)
5027                 if (!list[0] || list[1])
5028                         bb_error_msg_and_die("BUG in varexp2");
5029         /* actually, just move string 2*sizeof(char*) bytes back */
5030         overlapping_strcpy((char*)list, list[0]);
5031         unbackslash((char*)list);
5032         debug_printf_expand("string_to_string='%s'\n", (char*)list);
5033         return (char*)list;
5034 }
5035
5036 /* Used for "eval" builtin */
5037 static char* expand_strvec_to_string(char **argv)
5038 {
5039         char **list;
5040
5041         list = expand_variables(argv, EXP_FLAG_SINGLEWORD);
5042         /* Convert all NULs to spaces */
5043         if (list[0]) {
5044                 int n = 1;
5045                 while (list[n]) {
5046                         if (HUSH_DEBUG)
5047                                 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
5048                                         bb_error_msg_and_die("BUG in varexp3");
5049                         /* bash uses ' ' regardless of $IFS contents */
5050                         list[n][-1] = ' ';
5051                         n++;
5052                 }
5053         }
5054         overlapping_strcpy((char*)list, list[0]);
5055         debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
5056         return (char*)list;
5057 }
5058
5059 static char **expand_assignments(char **argv, int count)
5060 {
5061         int i;
5062         char **p;
5063
5064         G.expanded_assignments = p = NULL;
5065         /* Expand assignments into one string each */
5066         for (i = 0; i < count; i++) {
5067                 G.expanded_assignments = p = add_string_to_strings(p, expand_string_to_string(argv[i]));
5068         }
5069         G.expanded_assignments = NULL;
5070         return p;
5071 }
5072
5073
5074 #if BB_MMU
5075 /* never called */
5076 void re_execute_shell(char ***to_free, const char *s,
5077                 char *g_argv0, char **g_argv,
5078                 char **builtin_argv) NORETURN;
5079
5080 static void reset_traps_to_defaults(void)
5081 {
5082         /* This function is always called in a child shell
5083          * after fork (not vfork, NOMMU doesn't use this function).
5084          */
5085         unsigned sig;
5086         unsigned mask;
5087
5088         /* Child shells are not interactive.
5089          * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
5090          * Testcase: (while :; do :; done) + ^Z should background.
5091          * Same goes for SIGTERM, SIGHUP, SIGINT.
5092          */
5093         if (!G.traps && !(G.non_DFL_mask & SPECIAL_INTERACTIVE_SIGS))
5094                 return; /* already no traps and no SPECIAL_INTERACTIVE_SIGS */
5095
5096         /* Switching off SPECIAL_INTERACTIVE_SIGS.
5097          * Stupid. It can be done with *single* &= op, but we can't use
5098          * the fact that G.blocked_set is implemented as a bitmask
5099          * in libc... */
5100         mask = (SPECIAL_INTERACTIVE_SIGS >> 1);
5101         sig = 1;
5102         while (1) {
5103                 if (mask & 1) {
5104                         /* Careful. Only if no trap or trap is not "" */
5105                         if (!G.traps || !G.traps[sig] || G.traps[sig][0])
5106                                 sigdelset(&G.blocked_set, sig);
5107                 }
5108                 mask >>= 1;
5109                 if (!mask)
5110                         break;
5111                 sig++;
5112         }
5113         /* Our homegrown sig mask is saner to work with :) */
5114         G.non_DFL_mask &= ~SPECIAL_INTERACTIVE_SIGS;
5115
5116         /* Resetting all traps to default except empty ones */
5117         mask = G.non_DFL_mask;
5118         if (G.traps) for (sig = 0; sig < NSIG; sig++, mask >>= 1) {
5119                 if (!G.traps[sig] || !G.traps[sig][0])
5120                         continue;
5121                 free(G.traps[sig]);
5122                 G.traps[sig] = NULL;
5123                 /* There is no signal for 0 (EXIT) */
5124                 if (sig == 0)
5125                         continue;
5126                 /* There was a trap handler, we just removed it.
5127                  * But if sig still has non-DFL handling,
5128                  * we should not unblock the sig. */
5129                 if (mask & 1)
5130                         continue;
5131                 sigdelset(&G.blocked_set, sig);
5132         }
5133         sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
5134 }
5135
5136 #else /* !BB_MMU */
5137
5138 static void re_execute_shell(char ***to_free, const char *s,
5139                 char *g_argv0, char **g_argv,
5140                 char **builtin_argv) NORETURN;
5141 static void re_execute_shell(char ***to_free, const char *s,
5142                 char *g_argv0, char **g_argv,
5143                 char **builtin_argv)
5144 {
5145 # define NOMMU_HACK_FMT ("-$%x:%x:%x:%x:%x:%llx" IF_HUSH_LOOPS(":%x"))
5146         /* delims + 2 * (number of bytes in printed hex numbers) */
5147         char param_buf[sizeof(NOMMU_HACK_FMT) + 2 * (sizeof(int)*6 + sizeof(long long)*1)];
5148         char *heredoc_argv[4];
5149         struct variable *cur;
5150 # if ENABLE_HUSH_FUNCTIONS
5151         struct function *funcp;
5152 # endif
5153         char **argv, **pp;
5154         unsigned cnt;
5155         unsigned long long empty_trap_mask;
5156
5157         if (!g_argv0) { /* heredoc */
5158                 argv = heredoc_argv;
5159                 argv[0] = (char *) G.argv0_for_re_execing;
5160                 argv[1] = (char *) "-<";
5161                 argv[2] = (char *) s;
5162                 argv[3] = NULL;
5163                 pp = &argv[3]; /* used as pointer to empty environment */
5164                 goto do_exec;
5165         }
5166
5167         cnt = 0;
5168         pp = builtin_argv;
5169         if (pp) while (*pp++)
5170                 cnt++;
5171
5172         empty_trap_mask = 0;
5173         if (G.traps) {
5174                 int sig;
5175                 for (sig = 1; sig < NSIG; sig++) {
5176                         if (G.traps[sig] && !G.traps[sig][0])
5177                                 empty_trap_mask |= 1LL << sig;
5178                 }
5179         }
5180
5181         sprintf(param_buf, NOMMU_HACK_FMT
5182                         , (unsigned) G.root_pid
5183                         , (unsigned) G.root_ppid
5184                         , (unsigned) G.last_bg_pid
5185                         , (unsigned) G.last_exitcode
5186                         , cnt
5187                         , empty_trap_mask
5188                         IF_HUSH_LOOPS(, G.depth_of_loop)
5189                         );
5190 # undef NOMMU_HACK_FMT
5191         /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<etc...> <vars...> <funcs...>
5192          * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
5193          */
5194         cnt += 6;
5195         for (cur = G.top_var; cur; cur = cur->next) {
5196                 if (!cur->flg_export || cur->flg_read_only)
5197                         cnt += 2;
5198         }
5199 # if ENABLE_HUSH_FUNCTIONS
5200         for (funcp = G.top_func; funcp; funcp = funcp->next)
5201                 cnt += 3;
5202 # endif
5203         pp = g_argv;
5204         while (*pp++)
5205                 cnt++;
5206         *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
5207         *pp++ = (char *) G.argv0_for_re_execing;
5208         *pp++ = param_buf;
5209         for (cur = G.top_var; cur; cur = cur->next) {
5210                 if (strcmp(cur->varstr, hush_version_str) == 0)
5211                         continue;
5212                 if (cur->flg_read_only) {
5213                         *pp++ = (char *) "-R";
5214                         *pp++ = cur->varstr;
5215                 } else if (!cur->flg_export) {
5216                         *pp++ = (char *) "-V";
5217                         *pp++ = cur->varstr;
5218                 }
5219         }
5220 # if ENABLE_HUSH_FUNCTIONS
5221         for (funcp = G.top_func; funcp; funcp = funcp->next) {
5222                 *pp++ = (char *) "-F";
5223                 *pp++ = funcp->name;
5224                 *pp++ = funcp->body_as_string;
5225         }
5226 # endif
5227         /* We can pass activated traps here. Say, -Tnn:trap_string
5228          *
5229          * However, POSIX says that subshells reset signals with traps
5230          * to SIG_DFL.
5231          * I tested bash-3.2 and it not only does that with true subshells
5232          * of the form ( list ), but with any forked children shells.
5233          * I set trap "echo W" WINCH; and then tried:
5234          *
5235          * { echo 1; sleep 20; echo 2; } &
5236          * while true; do echo 1; sleep 20; echo 2; break; done &
5237          * true | { echo 1; sleep 20; echo 2; } | cat
5238          *
5239          * In all these cases sending SIGWINCH to the child shell
5240          * did not run the trap. If I add trap "echo V" WINCH;
5241          * _inside_ group (just before echo 1), it works.
5242          *
5243          * I conclude it means we don't need to pass active traps here.
5244          * Even if we would use signal handlers instead of signal masking
5245          * in order to implement trap handling,
5246          * exec syscall below resets signals to SIG_DFL for us.
5247          */
5248         *pp++ = (char *) "-c";
5249         *pp++ = (char *) s;
5250         if (builtin_argv) {
5251                 while (*++builtin_argv)
5252                         *pp++ = *builtin_argv;
5253                 *pp++ = (char *) "";
5254         }
5255         *pp++ = g_argv0;
5256         while (*g_argv)
5257                 *pp++ = *g_argv++;
5258         /* *pp = NULL; - is already there */
5259         pp = environ;
5260
5261  do_exec:
5262         debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
5263         sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
5264         execve(bb_busybox_exec_path, argv, pp);
5265         /* Fallback. Useful for init=/bin/hush usage etc */
5266         if (argv[0][0] == '/')
5267                 execve(argv[0], argv, pp);
5268         xfunc_error_retval = 127;
5269         bb_error_msg_and_die("can't re-execute the shell");
5270 }
5271 #endif  /* !BB_MMU */
5272
5273
5274 static int run_and_free_list(struct pipe *pi);
5275
5276 /* Executing from string: eval, sh -c '...'
5277  *          or from file: /etc/profile, . file, sh <script>, sh (intereactive)
5278  * end_trigger controls how often we stop parsing
5279  * NUL: parse all, execute, return
5280  * ';': parse till ';' or newline, execute, repeat till EOF
5281  */
5282 static void parse_and_run_stream(struct in_str *inp, int end_trigger)
5283 {
5284         /* Why we need empty flag?
5285          * An obscure corner case "false; ``; echo $?":
5286          * empty command in `` should still set $? to 0.
5287          * But we can't just set $? to 0 at the start,
5288          * this breaks "false; echo `echo $?`" case.
5289          */
5290         bool empty = 1;
5291         while (1) {
5292                 struct pipe *pipe_list;
5293
5294                 pipe_list = parse_stream(NULL, inp, end_trigger);
5295                 if (!pipe_list) { /* EOF */
5296                         if (empty)
5297                                 G.last_exitcode = 0;
5298                         break;
5299                 }
5300                 debug_print_tree(pipe_list, 0);
5301                 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
5302                 run_and_free_list(pipe_list);
5303                 empty = 0;
5304         }
5305 }
5306
5307 static void parse_and_run_string(const char *s)
5308 {
5309         struct in_str input;
5310         setup_string_in_str(&input, s);
5311         parse_and_run_stream(&input, '\0');
5312 }
5313
5314 static void parse_and_run_file(FILE *f)
5315 {
5316         struct in_str input;
5317         setup_file_in_str(&input, f);
5318         parse_and_run_stream(&input, ';');
5319 }
5320
5321 #if ENABLE_HUSH_TICK
5322 static FILE *generate_stream_from_string(const char *s, pid_t *pid_p)
5323 {
5324         pid_t pid;
5325         int channel[2];
5326 # if !BB_MMU
5327         char **to_free = NULL;
5328 # endif
5329
5330         xpipe(channel);
5331         pid = BB_MMU ? xfork() : xvfork();
5332         if (pid == 0) { /* child */
5333                 disable_restore_tty_pgrp_on_exit();
5334                 /* Process substitution is not considered to be usual
5335                  * 'command execution'.
5336                  * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
5337                  */
5338                 bb_signals(0
5339                         + (1 << SIGTSTP)
5340                         + (1 << SIGTTIN)
5341                         + (1 << SIGTTOU)
5342                         , SIG_IGN);
5343                 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
5344                 close(channel[0]); /* NB: close _first_, then move fd! */
5345                 xmove_fd(channel[1], 1);
5346                 /* Prevent it from trying to handle ctrl-z etc */
5347                 IF_HUSH_JOB(G.run_list_level = 1;)
5348                 /* Awful hack for `trap` or $(trap).
5349                  *
5350                  * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html
5351                  * contains an example where "trap" is executed in a subshell:
5352                  *
5353                  * save_traps=$(trap)
5354                  * ...
5355                  * eval "$save_traps"
5356                  *
5357                  * Standard does not say that "trap" in subshell shall print
5358                  * parent shell's traps. It only says that its output
5359                  * must have suitable form, but then, in the above example
5360                  * (which is not supposed to be normative), it implies that.
5361                  *
5362                  * bash (and probably other shell) does implement it
5363                  * (traps are reset to defaults, but "trap" still shows them),
5364                  * but as a result, "trap" logic is hopelessly messed up:
5365                  *
5366                  * # trap
5367                  * trap -- 'echo Ho' SIGWINCH  <--- we have a handler
5368                  * # (trap)        <--- trap is in subshell - no output (correct, traps are reset)
5369                  * # true | trap   <--- trap is in subshell - no output (ditto)
5370                  * # echo `true | trap`    <--- in subshell - output (but traps are reset!)
5371                  * trap -- 'echo Ho' SIGWINCH
5372                  * # echo `(trap)`         <--- in subshell in subshell - output
5373                  * trap -- 'echo Ho' SIGWINCH
5374                  * # echo `true | (trap)`  <--- in subshell in subshell in subshell - output!
5375                  * trap -- 'echo Ho' SIGWINCH
5376                  *
5377                  * The rules when to forget and when to not forget traps
5378                  * get really complex and nonsensical.
5379                  *
5380                  * Our solution: ONLY bare $(trap) or `trap` is special.
5381                  */
5382                 s = skip_whitespace(s);
5383                 if (strncmp(s, "trap", 4) == 0
5384                  && skip_whitespace(s + 4)[0] == '\0'
5385                 ) {
5386                         static const char *const argv[] = { NULL, NULL };
5387                         builtin_trap((char**)argv);
5388                         exit(0); /* not _exit() - we need to fflush */
5389                 }
5390 # if BB_MMU
5391                 reset_traps_to_defaults();
5392                 parse_and_run_string(s);
5393                 _exit(G.last_exitcode);
5394 # else
5395         /* We re-execute after vfork on NOMMU. This makes this script safe:
5396          * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
5397          * huge=`cat BIG` # was blocking here forever
5398          * echo OK
5399          */
5400                 re_execute_shell(&to_free,
5401                                 s,
5402                                 G.global_argv[0],
5403                                 G.global_argv + 1,
5404                                 NULL);
5405 # endif
5406         }
5407
5408         /* parent */
5409         *pid_p = pid;
5410 # if ENABLE_HUSH_FAST
5411         G.count_SIGCHLD++;
5412 //bb_error_msg("[%d] fork in generate_stream_from_string:"
5413 //              " G.count_SIGCHLD:%d G.handled_SIGCHLD:%d",
5414 //              getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
5415 # endif
5416         enable_restore_tty_pgrp_on_exit();
5417 # if !BB_MMU
5418         free(to_free);
5419 # endif
5420         close(channel[1]);
5421         close_on_exec_on(channel[0]);
5422         return xfdopen_for_read(channel[0]);
5423 }
5424
5425 /* Return code is exit status of the process that is run. */
5426 static int process_command_subs(o_string *dest, const char *s)
5427 {
5428         FILE *fp;
5429         struct in_str pipe_str;
5430         pid_t pid;
5431         int status, ch, eol_cnt;
5432
5433         fp = generate_stream_from_string(s, &pid);
5434
5435         /* Now send results of command back into original context */
5436         setup_file_in_str(&pipe_str, fp);
5437         eol_cnt = 0;
5438         while ((ch = i_getch(&pipe_str)) != EOF) {
5439                 if (ch == '\n') {
5440                         eol_cnt++;
5441                         continue;
5442                 }
5443                 while (eol_cnt) {
5444                         o_addchr(dest, '\n');
5445                         eol_cnt--;
5446                 }
5447                 o_addQchr(dest, ch);
5448         }
5449
5450         debug_printf("done reading from `cmd` pipe, closing it\n");
5451         fclose(fp);
5452         /* We need to extract exitcode. Test case
5453          * "true; echo `sleep 1; false` $?"
5454          * should print 1 */
5455         safe_waitpid(pid, &status, 0);
5456         debug_printf("child exited. returning its exitcode:%d\n", WEXITSTATUS(status));
5457         return WEXITSTATUS(status);
5458 }
5459 #endif /* ENABLE_HUSH_TICK */
5460
5461
5462 static void setup_heredoc(struct redir_struct *redir)
5463 {
5464         struct fd_pair pair;
5465         pid_t pid;
5466         int len, written;
5467         /* the _body_ of heredoc (misleading field name) */
5468         const char *heredoc = redir->rd_filename;
5469         char *expanded;
5470 #if !BB_MMU
5471         char **to_free;
5472 #endif
5473
5474         expanded = NULL;
5475         if (!(redir->rd_dup & HEREDOC_QUOTED)) {
5476                 expanded = expand_pseudo_dquoted(heredoc);
5477                 if (expanded)
5478                         heredoc = expanded;
5479         }
5480         len = strlen(heredoc);
5481
5482         close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
5483         xpiped_pair(pair);
5484         xmove_fd(pair.rd, redir->rd_fd);
5485
5486         /* Try writing without forking. Newer kernels have
5487          * dynamically growing pipes. Must use non-blocking write! */
5488         ndelay_on(pair.wr);
5489         while (1) {
5490                 written = write(pair.wr, heredoc, len);
5491                 if (written <= 0)
5492                         break;
5493                 len -= written;
5494                 if (len == 0) {
5495                         close(pair.wr);
5496                         free(expanded);
5497                         return;
5498                 }
5499                 heredoc += written;
5500         }
5501         ndelay_off(pair.wr);
5502
5503         /* Okay, pipe buffer was not big enough */
5504         /* Note: we must not create a stray child (bastard? :)
5505          * for the unsuspecting parent process. Child creates a grandchild
5506          * and exits before parent execs the process which consumes heredoc
5507          * (that exec happens after we return from this function) */
5508 #if !BB_MMU
5509         to_free = NULL;
5510 #endif
5511         pid = xvfork();
5512         if (pid == 0) {
5513                 /* child */
5514                 disable_restore_tty_pgrp_on_exit();
5515                 pid = BB_MMU ? xfork() : xvfork();
5516                 if (pid != 0)
5517                         _exit(0);
5518                 /* grandchild */
5519                 close(redir->rd_fd); /* read side of the pipe */
5520 #if BB_MMU
5521                 full_write(pair.wr, heredoc, len); /* may loop or block */
5522                 _exit(0);
5523 #else
5524                 /* Delegate blocking writes to another process */
5525                 xmove_fd(pair.wr, STDOUT_FILENO);
5526                 re_execute_shell(&to_free, heredoc, NULL, NULL, NULL);
5527 #endif
5528         }
5529         /* parent */
5530 #if ENABLE_HUSH_FAST
5531         G.count_SIGCHLD++;
5532 //bb_error_msg("[%d] fork in setup_heredoc: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
5533 #endif
5534         enable_restore_tty_pgrp_on_exit();
5535 #if !BB_MMU
5536         free(to_free);
5537 #endif
5538         close(pair.wr);
5539         free(expanded);
5540         wait(NULL); /* wait till child has died */
5541 }
5542
5543 /* squirrel != NULL means we squirrel away copies of stdin, stdout,
5544  * and stderr if they are redirected. */
5545 static int setup_redirects(struct command *prog, int squirrel[])
5546 {
5547         int openfd, mode;
5548         struct redir_struct *redir;
5549
5550         for (redir = prog->redirects; redir; redir = redir->next) {
5551                 if (redir->rd_type == REDIRECT_HEREDOC2) {
5552                         /* rd_fd<<HERE case */
5553                         if (squirrel && redir->rd_fd < 3
5554                          && squirrel[redir->rd_fd] < 0
5555                         ) {
5556                                 squirrel[redir->rd_fd] = dup(redir->rd_fd);
5557                         }
5558                         /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
5559                          * of the heredoc */
5560                         debug_printf_parse("set heredoc '%s'\n",
5561                                         redir->rd_filename);
5562                         setup_heredoc(redir);
5563                         continue;
5564                 }
5565
5566                 if (redir->rd_dup == REDIRFD_TO_FILE) {
5567                         /* rd_fd<*>file case (<*> is <,>,>>,<>) */
5568                         char *p;
5569                         if (redir->rd_filename == NULL) {
5570                                 /* Something went wrong in the parse.
5571                                  * Pretend it didn't happen */
5572                                 bb_error_msg("bug in redirect parse");
5573                                 continue;
5574                         }
5575                         mode = redir_table[redir->rd_type].mode;
5576                         p = expand_string_to_string(redir->rd_filename);
5577                         openfd = open_or_warn(p, mode);
5578                         free(p);
5579                         if (openfd < 0) {
5580                         /* this could get lost if stderr has been redirected, but
5581                          * bash and ash both lose it as well (though zsh doesn't!) */
5582 //what the above comment tries to say?
5583                                 return 1;
5584                         }
5585                 } else {
5586                         /* rd_fd<*>rd_dup or rd_fd<*>- cases */
5587                         openfd = redir->rd_dup;
5588                 }
5589
5590                 if (openfd != redir->rd_fd) {
5591                         if (squirrel && redir->rd_fd < 3
5592                          && squirrel[redir->rd_fd] < 0
5593                         ) {
5594                                 squirrel[redir->rd_fd] = dup(redir->rd_fd);
5595                         }
5596                         if (openfd == REDIRFD_CLOSE) {
5597                                 /* "n>-" means "close me" */
5598                                 close(redir->rd_fd);
5599                         } else {
5600                                 xdup2(openfd, redir->rd_fd);
5601                                 if (redir->rd_dup == REDIRFD_TO_FILE)
5602                                         close(openfd);
5603                         }
5604                 }
5605         }
5606         return 0;
5607 }
5608
5609 static void restore_redirects(int squirrel[])
5610 {
5611         int i, fd;
5612         for (i = 0; i < 3; i++) {
5613                 fd = squirrel[i];
5614                 if (fd != -1) {
5615                         /* We simply die on error */
5616                         xmove_fd(fd, i);
5617                 }
5618         }
5619 }
5620
5621 static char *find_in_path(const char *arg)
5622 {
5623         char *ret = NULL;
5624         const char *PATH = get_local_var_value("PATH");
5625
5626         if (!PATH)
5627                 return NULL;
5628
5629         while (1) {
5630                 const char *end = strchrnul(PATH, ':');
5631                 int sz = end - PATH; /* must be int! */
5632
5633                 free(ret);
5634                 if (sz != 0) {
5635                         ret = xasprintf("%.*s/%s", sz, PATH, arg);
5636                 } else {
5637                         /* We have xxx::yyyy in $PATH,
5638                          * it means "use current dir" */
5639                         ret = xstrdup(arg);
5640                 }
5641                 if (access(ret, F_OK) == 0)
5642                         break;
5643
5644                 if (*end == '\0') {
5645                         free(ret);
5646                         return NULL;
5647                 }
5648                 PATH = end + 1;
5649         }
5650
5651         return ret;
5652 }
5653
5654 static const struct built_in_command *find_builtin_helper(const char *name,
5655                 const struct built_in_command *x,
5656                 const struct built_in_command *end)
5657 {
5658         while (x != end) {
5659                 if (strcmp(name, x->b_cmd) != 0) {
5660                         x++;
5661                         continue;
5662                 }
5663                 debug_printf_exec("found builtin '%s'\n", name);
5664                 return x;
5665         }
5666         return NULL;
5667 }
5668 static const struct built_in_command *find_builtin1(const char *name)
5669 {
5670         return find_builtin_helper(name, bltins1, &bltins1[ARRAY_SIZE(bltins1)]);
5671 }
5672 static const struct built_in_command *find_builtin(const char *name)
5673 {
5674         const struct built_in_command *x = find_builtin1(name);
5675         if (x)
5676                 return x;
5677         return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]);
5678 }
5679
5680 #if ENABLE_HUSH_FUNCTIONS
5681 static struct function **find_function_slot(const char *name)
5682 {
5683         struct function **funcpp = &G.top_func;
5684         while (*funcpp) {
5685                 if (strcmp(name, (*funcpp)->name) == 0) {
5686                         break;
5687                 }
5688                 funcpp = &(*funcpp)->next;
5689         }
5690         return funcpp;
5691 }
5692
5693 static const struct function *find_function(const char *name)
5694 {
5695         const struct function *funcp = *find_function_slot(name);
5696         if (funcp)
5697                 debug_printf_exec("found function '%s'\n", name);
5698         return funcp;
5699 }
5700
5701 /* Note: takes ownership on name ptr */
5702 static struct function *new_function(char *name)
5703 {
5704         struct function **funcpp = find_function_slot(name);
5705         struct function *funcp = *funcpp;
5706
5707         if (funcp != NULL) {
5708                 struct command *cmd = funcp->parent_cmd;
5709                 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
5710                 if (!cmd) {
5711                         debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
5712                         free(funcp->name);
5713                         /* Note: if !funcp->body, do not free body_as_string!
5714                          * This is a special case of "-F name body" function:
5715                          * body_as_string was not malloced! */
5716                         if (funcp->body) {
5717                                 free_pipe_list(funcp->body);
5718 # if !BB_MMU
5719                                 free(funcp->body_as_string);
5720 # endif
5721                         }
5722                 } else {
5723                         debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
5724                         cmd->argv[0] = funcp->name;
5725                         cmd->group = funcp->body;
5726 # if !BB_MMU
5727                         cmd->group_as_string = funcp->body_as_string;
5728 # endif
5729                 }
5730         } else {
5731                 debug_printf_exec("remembering new function '%s'\n", name);
5732                 funcp = *funcpp = xzalloc(sizeof(*funcp));
5733                 /*funcp->next = NULL;*/
5734         }
5735
5736         funcp->name = name;
5737         return funcp;
5738 }
5739
5740 static void unset_func(const char *name)
5741 {
5742         struct function **funcpp = find_function_slot(name);
5743         struct function *funcp = *funcpp;
5744
5745         if (funcp != NULL) {
5746                 debug_printf_exec("freeing function '%s'\n", funcp->name);
5747                 *funcpp = funcp->next;
5748                 /* funcp is unlinked now, deleting it.
5749                  * Note: if !funcp->body, the function was created by
5750                  * "-F name body", do not free ->body_as_string
5751                  * and ->name as they were not malloced. */
5752                 if (funcp->body) {
5753                         free_pipe_list(funcp->body);
5754                         free(funcp->name);
5755 # if !BB_MMU
5756                         free(funcp->body_as_string);
5757 # endif
5758                 }
5759                 free(funcp);
5760         }
5761 }
5762
5763 # if BB_MMU
5764 #define exec_function(to_free, funcp, argv) \
5765         exec_function(funcp, argv)
5766 # endif
5767 static void exec_function(char ***to_free,
5768                 const struct function *funcp,
5769                 char **argv) NORETURN;
5770 static void exec_function(char ***to_free,
5771                 const struct function *funcp,
5772                 char **argv)
5773 {
5774 # if BB_MMU
5775         int n = 1;
5776
5777         argv[0] = G.global_argv[0];
5778         G.global_argv = argv;
5779         while (*++argv)
5780                 n++;
5781         G.global_argc = n;
5782         /* On MMU, funcp->body is always non-NULL */
5783         n = run_list(funcp->body);
5784         fflush_all();
5785         _exit(n);
5786 # else
5787         re_execute_shell(to_free,
5788                         funcp->body_as_string,
5789                         G.global_argv[0],
5790                         argv + 1,
5791                         NULL);
5792 # endif
5793 }
5794
5795 static int run_function(const struct function *funcp, char **argv)
5796 {
5797         int rc;
5798         save_arg_t sv;
5799         smallint sv_flg;
5800
5801         save_and_replace_G_args(&sv, argv);
5802
5803         /* "we are in function, ok to use return" */
5804         sv_flg = G.flag_return_in_progress;
5805         G.flag_return_in_progress = -1;
5806 # if ENABLE_HUSH_LOCAL
5807         G.func_nest_level++;
5808 # endif
5809
5810         /* On MMU, funcp->body is always non-NULL */
5811 # if !BB_MMU
5812         if (!funcp->body) {
5813                 /* Function defined by -F */
5814                 parse_and_run_string(funcp->body_as_string);
5815                 rc = G.last_exitcode;
5816         } else
5817 # endif
5818         {
5819                 rc = run_list(funcp->body);
5820         }
5821
5822 # if ENABLE_HUSH_LOCAL
5823         {
5824                 struct variable *var;
5825                 struct variable **var_pp;
5826
5827                 var_pp = &G.top_var;
5828                 while ((var = *var_pp) != NULL) {
5829                         if (var->func_nest_level < G.func_nest_level) {
5830                                 var_pp = &var->next;
5831                                 continue;
5832                         }
5833                         /* Unexport */
5834                         if (var->flg_export)
5835                                 bb_unsetenv(var->varstr);
5836                         /* Remove from global list */
5837                         *var_pp = var->next;
5838                         /* Free */
5839                         if (!var->max_len)
5840                                 free(var->varstr);
5841                         free(var);
5842                 }
5843                 G.func_nest_level--;
5844         }
5845 # endif
5846         G.flag_return_in_progress = sv_flg;
5847
5848         restore_G_args(&sv, argv);
5849
5850         return rc;
5851 }
5852 #endif /* ENABLE_HUSH_FUNCTIONS */
5853
5854
5855 #if BB_MMU
5856 #define exec_builtin(to_free, x, argv) \
5857         exec_builtin(x, argv)
5858 #else
5859 #define exec_builtin(to_free, x, argv) \
5860         exec_builtin(to_free, argv)
5861 #endif
5862 static void exec_builtin(char ***to_free,
5863                 const struct built_in_command *x,
5864                 char **argv) NORETURN;
5865 static void exec_builtin(char ***to_free,
5866                 const struct built_in_command *x,
5867                 char **argv)
5868 {
5869 #if BB_MMU
5870         int rcode = x->b_function(argv);
5871         fflush_all();
5872         _exit(rcode);
5873 #else
5874         /* On NOMMU, we must never block!
5875          * Example: { sleep 99 | read line; } & echo Ok
5876          */
5877         re_execute_shell(to_free,
5878                         argv[0],
5879                         G.global_argv[0],
5880                         G.global_argv + 1,
5881                         argv);
5882 #endif
5883 }
5884
5885
5886 static void execvp_or_die(char **argv) NORETURN;
5887 static void execvp_or_die(char **argv)
5888 {
5889         debug_printf_exec("execing '%s'\n", argv[0]);
5890         sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
5891         execvp(argv[0], argv);
5892         bb_perror_msg("can't execute '%s'", argv[0]);
5893         _exit(127); /* bash compat */
5894 }
5895
5896 #if ENABLE_HUSH_MODE_X
5897 static void dump_cmd_in_x_mode(char **argv)
5898 {
5899         if (G_x_mode && argv) {
5900                 /* We want to output the line in one write op */
5901                 char *buf, *p;
5902                 int len;
5903                 int n;
5904
5905                 len = 3;
5906                 n = 0;
5907                 while (argv[n])
5908                         len += strlen(argv[n++]) + 1;
5909                 buf = xmalloc(len);
5910                 buf[0] = '+';
5911                 p = buf + 1;
5912                 n = 0;
5913                 while (argv[n])
5914                         p += sprintf(p, " %s", argv[n++]);
5915                 *p++ = '\n';
5916                 *p = '\0';
5917                 fputs(buf, stderr);
5918                 free(buf);
5919         }
5920 }
5921 #else
5922 # define dump_cmd_in_x_mode(argv) ((void)0)
5923 #endif
5924
5925 #if BB_MMU
5926 #define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
5927         pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
5928 #define pseudo_exec(nommu_save, command, argv_expanded) \
5929         pseudo_exec(command, argv_expanded)
5930 #endif
5931
5932 /* Called after [v]fork() in run_pipe, or from builtin_exec.
5933  * Never returns.
5934  * Don't exit() here.  If you don't exec, use _exit instead.
5935  * The at_exit handlers apparently confuse the calling process,
5936  * in particular stdin handling.  Not sure why? -- because of vfork! (vda) */
5937 static void pseudo_exec_argv(nommu_save_t *nommu_save,
5938                 char **argv, int assignment_cnt,
5939                 char **argv_expanded) NORETURN;
5940 static NOINLINE void pseudo_exec_argv(nommu_save_t *nommu_save,
5941                 char **argv, int assignment_cnt,
5942                 char **argv_expanded)
5943 {
5944         char **new_env;
5945
5946         new_env = expand_assignments(argv, assignment_cnt);
5947         dump_cmd_in_x_mode(new_env);
5948
5949         if (!argv[assignment_cnt]) {
5950                 /* Case when we are here: ... | var=val | ...
5951                  * (note that we do not exit early, i.e., do not optimize out
5952                  * expand_assignments(): think about ... | var=`sleep 1` | ...
5953                  */
5954                 free_strings(new_env);
5955                 _exit(EXIT_SUCCESS);
5956         }
5957
5958 #if BB_MMU
5959         set_vars_and_save_old(new_env);
5960         free(new_env); /* optional */
5961         /* we can also destroy set_vars_and_save_old's return value,
5962          * to save memory */
5963 #else
5964         nommu_save->new_env = new_env;
5965         nommu_save->old_vars = set_vars_and_save_old(new_env);
5966 #endif
5967
5968         if (argv_expanded) {
5969                 argv = argv_expanded;
5970         } else {
5971                 argv = expand_strvec_to_strvec(argv + assignment_cnt);
5972 #if !BB_MMU
5973                 nommu_save->argv = argv;
5974 #endif
5975         }
5976         dump_cmd_in_x_mode(argv);
5977
5978 #if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
5979         if (strchr(argv[0], '/') != NULL)
5980                 goto skip;
5981 #endif
5982
5983         /* Check if the command matches any of the builtins.
5984          * Depending on context, this might be redundant.  But it's
5985          * easier to waste a few CPU cycles than it is to figure out
5986          * if this is one of those cases.
5987          */
5988         {
5989                 /* On NOMMU, it is more expensive to re-execute shell
5990                  * just in order to run echo or test builtin.
5991                  * It's better to skip it here and run corresponding
5992                  * non-builtin later. */
5993                 const struct built_in_command *x;
5994                 x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]);
5995                 if (x) {
5996                         exec_builtin(&nommu_save->argv_from_re_execing, x, argv);
5997                 }
5998         }
5999 #if ENABLE_HUSH_FUNCTIONS
6000         /* Check if the command matches any functions */
6001         {
6002                 const struct function *funcp = find_function(argv[0]);
6003                 if (funcp) {
6004                         exec_function(&nommu_save->argv_from_re_execing, funcp, argv);
6005                 }
6006         }
6007 #endif
6008
6009 #if ENABLE_FEATURE_SH_STANDALONE
6010         /* Check if the command matches any busybox applets */
6011         {
6012                 int a = find_applet_by_name(argv[0]);
6013                 if (a >= 0) {
6014 # if BB_MMU /* see above why on NOMMU it is not allowed */
6015                         if (APPLET_IS_NOEXEC(a)) {
6016                                 debug_printf_exec("running applet '%s'\n", argv[0]);
6017                                 run_applet_no_and_exit(a, argv);
6018                         }
6019 # endif
6020                         /* Re-exec ourselves */
6021                         debug_printf_exec("re-execing applet '%s'\n", argv[0]);
6022                         sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
6023                         execv(bb_busybox_exec_path, argv);
6024                         /* If they called chroot or otherwise made the binary no longer
6025                          * executable, fall through */
6026                 }
6027         }
6028 #endif
6029
6030 #if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
6031  skip:
6032 #endif
6033         execvp_or_die(argv);
6034 }
6035
6036 /* Called after [v]fork() in run_pipe
6037  */
6038 static void pseudo_exec(nommu_save_t *nommu_save,
6039                 struct command *command,
6040                 char **argv_expanded) NORETURN;
6041 static void pseudo_exec(nommu_save_t *nommu_save,
6042                 struct command *command,
6043                 char **argv_expanded)
6044 {
6045         if (command->argv) {
6046                 pseudo_exec_argv(nommu_save, command->argv,
6047                                 command->assignment_cnt, argv_expanded);
6048         }
6049
6050         if (command->group) {
6051                 /* Cases when we are here:
6052                  * ( list )
6053                  * { list } &
6054                  * ... | ( list ) | ...
6055                  * ... | { list } | ...
6056                  */
6057 #if BB_MMU
6058                 int rcode;
6059                 debug_printf_exec("pseudo_exec: run_list\n");
6060                 reset_traps_to_defaults();
6061                 rcode = run_list(command->group);
6062                 /* OK to leak memory by not calling free_pipe_list,
6063                  * since this process is about to exit */
6064                 _exit(rcode);
6065 #else
6066                 re_execute_shell(&nommu_save->argv_from_re_execing,
6067                                 command->group_as_string,
6068                                 G.global_argv[0],
6069                                 G.global_argv + 1,
6070                                 NULL);
6071 #endif
6072         }
6073
6074         /* Case when we are here: ... | >file */
6075         debug_printf_exec("pseudo_exec'ed null command\n");
6076         _exit(EXIT_SUCCESS);
6077 }
6078
6079 #if ENABLE_HUSH_JOB
6080 static const char *get_cmdtext(struct pipe *pi)
6081 {
6082         char **argv;
6083         char *p;
6084         int len;
6085
6086         /* This is subtle. ->cmdtext is created only on first backgrounding.
6087          * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
6088          * On subsequent bg argv is trashed, but we won't use it */
6089         if (pi->cmdtext)
6090                 return pi->cmdtext;
6091         argv = pi->cmds[0].argv;
6092         if (!argv || !argv[0]) {
6093                 pi->cmdtext = xzalloc(1);
6094                 return pi->cmdtext;
6095         }
6096
6097         len = 0;
6098         do {
6099                 len += strlen(*argv) + 1;
6100         } while (*++argv);
6101         p = xmalloc(len);
6102         pi->cmdtext = p;
6103         argv = pi->cmds[0].argv;
6104         do {
6105                 len = strlen(*argv);
6106                 memcpy(p, *argv, len);
6107                 p += len;
6108                 *p++ = ' ';
6109         } while (*++argv);
6110         p[-1] = '\0';
6111         return pi->cmdtext;
6112 }
6113
6114 static void insert_bg_job(struct pipe *pi)
6115 {
6116         struct pipe *job, **jobp;
6117         int i;
6118
6119         /* Linear search for the ID of the job to use */
6120         pi->jobid = 1;
6121         for (job = G.job_list; job; job = job->next)
6122                 if (job->jobid >= pi->jobid)
6123                         pi->jobid = job->jobid + 1;
6124
6125         /* Add job to the list of running jobs */
6126         jobp = &G.job_list;
6127         while ((job = *jobp) != NULL)
6128                 jobp = &job->next;
6129         job = *jobp = xmalloc(sizeof(*job));
6130
6131         *job = *pi; /* physical copy */
6132         job->next = NULL;
6133         job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
6134         /* Cannot copy entire pi->cmds[] vector! This causes double frees */
6135         for (i = 0; i < pi->num_cmds; i++) {
6136                 job->cmds[i].pid = pi->cmds[i].pid;
6137                 /* all other fields are not used and stay zero */
6138         }
6139         job->cmdtext = xstrdup(get_cmdtext(pi));
6140
6141         if (G_interactive_fd)
6142                 printf("[%d] %d %s\n", job->jobid, job->cmds[0].pid, job->cmdtext);
6143         G.last_jobid = job->jobid;
6144 }
6145
6146 static void remove_bg_job(struct pipe *pi)
6147 {
6148         struct pipe *prev_pipe;
6149
6150         if (pi == G.job_list) {
6151                 G.job_list = pi->next;
6152         } else {
6153                 prev_pipe = G.job_list;
6154                 while (prev_pipe->next != pi)
6155                         prev_pipe = prev_pipe->next;
6156                 prev_pipe->next = pi->next;
6157         }
6158         if (G.job_list)
6159                 G.last_jobid = G.job_list->jobid;
6160         else
6161                 G.last_jobid = 0;
6162 }
6163
6164 /* Remove a backgrounded job */
6165 static void delete_finished_bg_job(struct pipe *pi)
6166 {
6167         remove_bg_job(pi);
6168         free_pipe(pi);
6169 }
6170 #endif /* JOB */
6171
6172 /* Check to see if any processes have exited -- if they
6173  * have, figure out why and see if a job has completed */
6174 static int checkjobs(struct pipe *fg_pipe)
6175 {
6176         int attributes;
6177         int status;
6178 #if ENABLE_HUSH_JOB
6179         struct pipe *pi;
6180 #endif
6181         pid_t childpid;
6182         int rcode = 0;
6183
6184         debug_printf_jobs("checkjobs %p\n", fg_pipe);
6185
6186         attributes = WUNTRACED;
6187         if (fg_pipe == NULL)
6188                 attributes |= WNOHANG;
6189
6190         errno = 0;
6191 #if ENABLE_HUSH_FAST
6192         if (G.handled_SIGCHLD == G.count_SIGCHLD) {
6193 //bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p",
6194 //getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe);
6195                 /* There was neither fork nor SIGCHLD since last waitpid */
6196                 /* Avoid doing waitpid syscall if possible */
6197                 if (!G.we_have_children) {
6198                         errno = ECHILD;
6199                         return -1;
6200                 }
6201                 if (fg_pipe == NULL) { /* is WNOHANG set? */
6202                         /* We have children, but they did not exit
6203                          * or stop yet (we saw no SIGCHLD) */
6204                         return 0;
6205                 }
6206                 /* else: !WNOHANG, waitpid will block, can't short-circuit */
6207         }
6208 #endif
6209
6210 /* Do we do this right?
6211  * bash-3.00# sleep 20 | false
6212  * <ctrl-Z pressed>
6213  * [3]+  Stopped          sleep 20 | false
6214  * bash-3.00# echo $?
6215  * 1   <========== bg pipe is not fully done, but exitcode is already known!
6216  * [hush 1.14.0: yes we do it right]
6217  */
6218  wait_more:
6219         while (1) {
6220                 int i;
6221                 int dead;
6222
6223 #if ENABLE_HUSH_FAST
6224                 i = G.count_SIGCHLD;
6225 #endif
6226                 childpid = waitpid(-1, &status, attributes);
6227                 if (childpid <= 0) {
6228                         if (childpid && errno != ECHILD)
6229                                 bb_perror_msg("waitpid");
6230 #if ENABLE_HUSH_FAST
6231                         else { /* Until next SIGCHLD, waitpid's are useless */
6232                                 G.we_have_children = (childpid == 0);
6233                                 G.handled_SIGCHLD = i;
6234 //bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6235                         }
6236 #endif
6237                         break;
6238                 }
6239                 dead = WIFEXITED(status) || WIFSIGNALED(status);
6240
6241 #if DEBUG_JOBS
6242                 if (WIFSTOPPED(status))
6243                         debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
6244                                         childpid, WSTOPSIG(status), WEXITSTATUS(status));
6245                 if (WIFSIGNALED(status))
6246                         debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
6247                                         childpid, WTERMSIG(status), WEXITSTATUS(status));
6248                 if (WIFEXITED(status))
6249                         debug_printf_jobs("pid %d exited, exitcode %d\n",
6250                                         childpid, WEXITSTATUS(status));
6251 #endif
6252                 /* Were we asked to wait for fg pipe? */
6253                 if (fg_pipe) {
6254                         for (i = 0; i < fg_pipe->num_cmds; i++) {
6255                                 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
6256                                 if (fg_pipe->cmds[i].pid != childpid)
6257                                         continue;
6258                                 if (dead) {
6259                                         fg_pipe->cmds[i].pid = 0;
6260                                         fg_pipe->alive_cmds--;
6261                                         if (i == fg_pipe->num_cmds - 1) {
6262                                                 /* last process gives overall exitstatus */
6263                                                 rcode = WEXITSTATUS(status);
6264                                                 /* bash prints killer signal's name for *last*
6265                                                  * process in pipe (prints just newline for SIGINT).
6266                                                  * Mimic this. Example: "sleep 5" + (^\ or kill -QUIT)
6267                                                  */
6268                                                 if (WIFSIGNALED(status)) {
6269                                                         int sig = WTERMSIG(status);
6270                                                         printf("%s\n", sig == SIGINT ? "" : get_signame(sig));
6271                                                         /* TODO: MIPS has 128 sigs (1..128), what if sig==128 here?
6272                                                          * Maybe we need to use sig | 128? */
6273                                                         rcode = sig + 128;
6274                                                 }
6275                                                 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
6276                                         }
6277                                 } else {
6278                                         fg_pipe->cmds[i].is_stopped = 1;
6279                                         fg_pipe->stopped_cmds++;
6280                                 }
6281                                 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
6282                                                 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
6283                                 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
6284                                         /* All processes in fg pipe have exited or stopped */
6285 /* Note: *non-interactive* bash does not continue if all processes in fg pipe
6286  * are stopped. Testcase: "cat | cat" in a script (not on command line!)
6287  * and "killall -STOP cat" */
6288                                         if (G_interactive_fd) {
6289 #if ENABLE_HUSH_JOB
6290                                                 if (fg_pipe->alive_cmds)
6291                                                         insert_bg_job(fg_pipe);
6292 #endif
6293                                                 return rcode;
6294                                         }
6295                                         if (!fg_pipe->alive_cmds)
6296                                                 return rcode;
6297                                 }
6298                                 /* There are still running processes in the fg pipe */
6299                                 goto wait_more; /* do waitpid again */
6300                         }
6301                         /* it wasnt fg_pipe, look for process in bg pipes */
6302                 }
6303
6304 #if ENABLE_HUSH_JOB
6305                 /* We asked to wait for bg or orphaned children */
6306                 /* No need to remember exitcode in this case */
6307                 for (pi = G.job_list; pi; pi = pi->next) {
6308                         for (i = 0; i < pi->num_cmds; i++) {
6309                                 if (pi->cmds[i].pid == childpid)
6310                                         goto found_pi_and_prognum;
6311                         }
6312                 }
6313                 /* Happens when shell is used as init process (init=/bin/sh) */
6314                 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
6315                 continue; /* do waitpid again */
6316
6317  found_pi_and_prognum:
6318                 if (dead) {
6319                         /* child exited */
6320                         pi->cmds[i].pid = 0;
6321                         pi->alive_cmds--;
6322                         if (!pi->alive_cmds) {
6323                                 if (G_interactive_fd)
6324                                         printf(JOB_STATUS_FORMAT, pi->jobid,
6325                                                         "Done", pi->cmdtext);
6326                                 delete_finished_bg_job(pi);
6327                         }
6328                 } else {
6329                         /* child stopped */
6330                         pi->cmds[i].is_stopped = 1;
6331                         pi->stopped_cmds++;
6332                 }
6333 #endif
6334         } /* while (waitpid succeeds)... */
6335
6336         return rcode;
6337 }
6338
6339 #if ENABLE_HUSH_JOB
6340 static int checkjobs_and_fg_shell(struct pipe *fg_pipe)
6341 {
6342         pid_t p;
6343         int rcode = checkjobs(fg_pipe);
6344         if (G_saved_tty_pgrp) {
6345                 /* Job finished, move the shell to the foreground */
6346                 p = getpgrp(); /* our process group id */
6347                 debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p);
6348                 tcsetpgrp(G_interactive_fd, p);
6349         }
6350         return rcode;
6351 }
6352 #endif
6353
6354 /* Start all the jobs, but don't wait for anything to finish.
6355  * See checkjobs().
6356  *
6357  * Return code is normally -1, when the caller has to wait for children
6358  * to finish to determine the exit status of the pipe.  If the pipe
6359  * is a simple builtin command, however, the action is done by the
6360  * time run_pipe returns, and the exit code is provided as the
6361  * return value.
6362  *
6363  * Returns -1 only if started some children. IOW: we have to
6364  * mask out retvals of builtins etc with 0xff!
6365  *
6366  * The only case when we do not need to [v]fork is when the pipe
6367  * is single, non-backgrounded, non-subshell command. Examples:
6368  * cmd ; ...   { list } ; ...
6369  * cmd && ...  { list } && ...
6370  * cmd || ...  { list } || ...
6371  * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
6372  * or (if SH_STANDALONE) an applet, and we can run the { list }
6373  * with run_list. If it isn't one of these, we fork and exec cmd.
6374  *
6375  * Cases when we must fork:
6376  * non-single:   cmd | cmd
6377  * backgrounded: cmd &     { list } &
6378  * subshell:     ( list ) [&]
6379  */
6380 #if !ENABLE_HUSH_MODE_X
6381 #define redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel, char argv_expanded) \
6382         redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel)
6383 #endif
6384 static int redirect_and_varexp_helper(char ***new_env_p,
6385                 struct variable **old_vars_p,
6386                 struct command *command,
6387                 int squirrel[3],
6388                 char **argv_expanded)
6389 {
6390         /* setup_redirects acts on file descriptors, not FILEs.
6391          * This is perfect for work that comes after exec().
6392          * Is it really safe for inline use?  Experimentally,
6393          * things seem to work. */
6394         int rcode = setup_redirects(command, squirrel);
6395         if (rcode == 0) {
6396                 char **new_env = expand_assignments(command->argv, command->assignment_cnt);
6397                 *new_env_p = new_env;
6398                 dump_cmd_in_x_mode(new_env);
6399                 dump_cmd_in_x_mode(argv_expanded);
6400                 if (old_vars_p)
6401                         *old_vars_p = set_vars_and_save_old(new_env);
6402         }
6403         return rcode;
6404 }
6405 static NOINLINE int run_pipe(struct pipe *pi)
6406 {
6407         static const char *const null_ptr = NULL;
6408
6409         int cmd_no;
6410         int next_infd;
6411         struct command *command;
6412         char **argv_expanded;
6413         char **argv;
6414         /* it is not always needed, but we aim to smaller code */
6415         int squirrel[] = { -1, -1, -1 };
6416         int rcode;
6417
6418         debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
6419         debug_enter();
6420
6421         /* Testcase: set -- q w e; (IFS='' echo "$*"; IFS=''; echo "$*"); echo "$*"
6422          * Result should be 3 lines: q w e, qwe, q w e
6423          */
6424         G.ifs = get_local_var_value("IFS");
6425         if (!G.ifs)
6426                 G.ifs = defifs;
6427
6428         IF_HUSH_JOB(pi->pgrp = -1;)
6429         pi->stopped_cmds = 0;
6430         command = &pi->cmds[0];
6431         argv_expanded = NULL;
6432
6433         if (pi->num_cmds != 1
6434          || pi->followup == PIPE_BG
6435          || command->cmd_type == CMD_SUBSHELL
6436         ) {
6437                 goto must_fork;
6438         }
6439
6440         pi->alive_cmds = 1;
6441
6442         debug_printf_exec(": group:%p argv:'%s'\n",
6443                 command->group, command->argv ? command->argv[0] : "NONE");
6444
6445         if (command->group) {
6446 #if ENABLE_HUSH_FUNCTIONS
6447                 if (command->cmd_type == CMD_FUNCDEF) {
6448                         /* "executing" func () { list } */
6449                         struct function *funcp;
6450
6451                         funcp = new_function(command->argv[0]);
6452                         /* funcp->name is already set to argv[0] */
6453                         funcp->body = command->group;
6454 # if !BB_MMU
6455                         funcp->body_as_string = command->group_as_string;
6456                         command->group_as_string = NULL;
6457 # endif
6458                         command->group = NULL;
6459                         command->argv[0] = NULL;
6460                         debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
6461                         funcp->parent_cmd = command;
6462                         command->child_func = funcp;
6463
6464                         debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
6465                         debug_leave();
6466                         return EXIT_SUCCESS;
6467                 }
6468 #endif
6469                 /* { list } */
6470                 debug_printf("non-subshell group\n");
6471                 rcode = 1; /* exitcode if redir failed */
6472                 if (setup_redirects(command, squirrel) == 0) {
6473                         debug_printf_exec(": run_list\n");
6474                         rcode = run_list(command->group) & 0xff;
6475                 }
6476                 restore_redirects(squirrel);
6477                 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
6478                 debug_leave();
6479                 debug_printf_exec("run_pipe: return %d\n", rcode);
6480                 return rcode;
6481         }
6482
6483         argv = command->argv ? command->argv : (char **) &null_ptr;
6484         {
6485                 const struct built_in_command *x;
6486 #if ENABLE_HUSH_FUNCTIONS
6487                 const struct function *funcp;
6488 #else
6489                 enum { funcp = 0 };
6490 #endif
6491                 char **new_env = NULL;
6492                 struct variable *old_vars = NULL;
6493
6494                 if (argv[command->assignment_cnt] == NULL) {
6495                         /* Assignments, but no command */
6496                         /* Ensure redirects take effect (that is, create files).
6497                          * Try "a=t >file" */
6498 #if 0 /* A few cases in testsuite fail with this code. FIXME */
6499                         rcode = redirect_and_varexp_helper(&new_env, /*old_vars:*/ NULL, command, squirrel, /*argv_expanded:*/ NULL);
6500                         /* Set shell variables */
6501                         if (new_env) {
6502                                 argv = new_env;
6503                                 while (*argv) {
6504                                         set_local_var(*argv, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
6505                                         /* Do we need to flag set_local_var() errors?
6506                                          * "assignment to readonly var" and "putenv error"
6507                                          */
6508                                         argv++;
6509                                 }
6510                         }
6511                         /* Redirect error sets $? to 1. Otherwise,
6512                          * if evaluating assignment value set $?, retain it.
6513                          * Try "false; q=`exit 2`; echo $?" - should print 2: */
6514                         if (rcode == 0)
6515                                 rcode = G.last_exitcode;
6516                         /* Exit, _skipping_ variable restoring code: */
6517                         goto clean_up_and_ret0;
6518
6519 #else /* Older, bigger, but more correct code */
6520
6521                         rcode = setup_redirects(command, squirrel);
6522                         restore_redirects(squirrel);
6523                         /* Set shell variables */
6524                         if (G_x_mode)
6525                                 bb_putchar_stderr('+');
6526                         while (*argv) {
6527                                 char *p = expand_string_to_string(*argv);
6528                                 if (G_x_mode)
6529                                         fprintf(stderr, " %s", p);
6530                                 debug_printf_exec("set shell var:'%s'->'%s'\n",
6531                                                 *argv, p);
6532                                 set_local_var(p, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
6533                                 /* Do we need to flag set_local_var() errors?
6534                                  * "assignment to readonly var" and "putenv error"
6535                                  */
6536                                 argv++;
6537                         }
6538                         if (G_x_mode)
6539                                 bb_putchar_stderr('\n');
6540                         /* Redirect error sets $? to 1. Otherwise,
6541                          * if evaluating assignment value set $?, retain it.
6542                          * Try "false; q=`exit 2`; echo $?" - should print 2: */
6543                         if (rcode == 0)
6544                                 rcode = G.last_exitcode;
6545                         IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
6546                         debug_leave();
6547                         debug_printf_exec("run_pipe: return %d\n", rcode);
6548                         return rcode;
6549 #endif
6550                 }
6551
6552                 /* Expand the rest into (possibly) many strings each */
6553                 if (0) {}
6554 #if ENABLE_HUSH_BASH_COMPAT
6555                 else if (command->cmd_type == CMD_SINGLEWORD_NOGLOB) {
6556                         argv_expanded = expand_strvec_to_strvec_singleword_noglob(argv + command->assignment_cnt);
6557                 }
6558 #endif
6559                 else {
6560                         argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
6561                 }
6562
6563                 /* if someone gives us an empty string: `cmd with empty output` */
6564                 if (!argv_expanded[0]) {
6565                         free(argv_expanded);
6566                         debug_leave();
6567                         return G.last_exitcode;
6568                 }
6569
6570                 x = find_builtin(argv_expanded[0]);
6571 #if ENABLE_HUSH_FUNCTIONS
6572                 funcp = NULL;
6573                 if (!x)
6574                         funcp = find_function(argv_expanded[0]);
6575 #endif
6576                 if (x || funcp) {
6577                         if (!funcp) {
6578                                 if (x->b_function == builtin_exec && argv_expanded[1] == NULL) {
6579                                         debug_printf("exec with redirects only\n");
6580                                         rcode = setup_redirects(command, NULL);
6581                                         goto clean_up_and_ret1;
6582                                 }
6583                         }
6584                         rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, squirrel, argv_expanded);
6585                         if (rcode == 0) {
6586                                 if (!funcp) {
6587                                         debug_printf_exec(": builtin '%s' '%s'...\n",
6588                                                 x->b_cmd, argv_expanded[1]);
6589                                         rcode = x->b_function(argv_expanded) & 0xff;
6590                                         fflush_all();
6591                                 }
6592 #if ENABLE_HUSH_FUNCTIONS
6593                                 else {
6594 # if ENABLE_HUSH_LOCAL
6595                                         struct variable **sv;
6596                                         sv = G.shadowed_vars_pp;
6597                                         G.shadowed_vars_pp = &old_vars;
6598 # endif
6599                                         debug_printf_exec(": function '%s' '%s'...\n",
6600                                                 funcp->name, argv_expanded[1]);
6601                                         rcode = run_function(funcp, argv_expanded) & 0xff;
6602 # if ENABLE_HUSH_LOCAL
6603                                         G.shadowed_vars_pp = sv;
6604 # endif
6605                                 }
6606 #endif
6607                         }
6608  clean_up_and_ret:
6609                         unset_vars(new_env);
6610                         add_vars(old_vars);
6611 /* clean_up_and_ret0: */
6612                         restore_redirects(squirrel);
6613  clean_up_and_ret1:
6614                         free(argv_expanded);
6615                         IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
6616                         debug_leave();
6617                         debug_printf_exec("run_pipe return %d\n", rcode);
6618                         return rcode;
6619                 }
6620
6621                 if (ENABLE_FEATURE_SH_STANDALONE) {
6622                         int n = find_applet_by_name(argv_expanded[0]);
6623                         if (n >= 0 && APPLET_IS_NOFORK(n)) {
6624                                 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, squirrel, argv_expanded);
6625                                 if (rcode == 0) {
6626                                         debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
6627                                                 argv_expanded[0], argv_expanded[1]);
6628                                         rcode = run_nofork_applet(n, argv_expanded);
6629                                 }
6630                                 goto clean_up_and_ret;
6631                         }
6632                 }
6633                 /* It is neither builtin nor applet. We must fork. */
6634         }
6635
6636  must_fork:
6637         /* NB: argv_expanded may already be created, and that
6638          * might include `cmd` runs! Do not rerun it! We *must*
6639          * use argv_expanded if it's non-NULL */
6640
6641         /* Going to fork a child per each pipe member */
6642         pi->alive_cmds = 0;
6643         next_infd = 0;
6644
6645         cmd_no = 0;
6646         while (cmd_no < pi->num_cmds) {
6647                 struct fd_pair pipefds;
6648 #if !BB_MMU
6649                 volatile nommu_save_t nommu_save;
6650                 nommu_save.new_env = NULL;
6651                 nommu_save.old_vars = NULL;
6652                 nommu_save.argv = NULL;
6653                 nommu_save.argv_from_re_execing = NULL;
6654 #endif
6655                 command = &pi->cmds[cmd_no];
6656                 cmd_no++;
6657                 if (command->argv) {
6658                         debug_printf_exec(": pipe member '%s' '%s'...\n",
6659                                         command->argv[0], command->argv[1]);
6660                 } else {
6661                         debug_printf_exec(": pipe member with no argv\n");
6662                 }
6663
6664                 /* pipes are inserted between pairs of commands */
6665                 pipefds.rd = 0;
6666                 pipefds.wr = 1;
6667                 if (cmd_no < pi->num_cmds)
6668                         xpiped_pair(pipefds);
6669
6670                 command->pid = BB_MMU ? fork() : vfork();
6671                 if (!command->pid) { /* child */
6672 #if ENABLE_HUSH_JOB
6673                         disable_restore_tty_pgrp_on_exit();
6674                         CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
6675
6676                         /* Every child adds itself to new process group
6677                          * with pgid == pid_of_first_child_in_pipe */
6678                         if (G.run_list_level == 1 && G_interactive_fd) {
6679                                 pid_t pgrp;
6680                                 pgrp = pi->pgrp;
6681                                 if (pgrp < 0) /* true for 1st process only */
6682                                         pgrp = getpid();
6683                                 if (setpgid(0, pgrp) == 0
6684                                  && pi->followup != PIPE_BG
6685                                  && G_saved_tty_pgrp /* we have ctty */
6686                                 ) {
6687                                         /* We do it in *every* child, not just first,
6688                                          * to avoid races */
6689                                         tcsetpgrp(G_interactive_fd, pgrp);
6690                                 }
6691                         }
6692 #endif
6693                         if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
6694                                 /* 1st cmd in backgrounded pipe
6695                                  * should have its stdin /dev/null'ed */
6696                                 close(0);
6697                                 if (open(bb_dev_null, O_RDONLY))
6698                                         xopen("/", O_RDONLY);
6699                         } else {
6700                                 xmove_fd(next_infd, 0);
6701                         }
6702                         xmove_fd(pipefds.wr, 1);
6703                         if (pipefds.rd > 1)
6704                                 close(pipefds.rd);
6705                         /* Like bash, explicit redirects override pipes,
6706                          * and the pipe fd is available for dup'ing. */
6707                         if (setup_redirects(command, NULL))
6708                                 _exit(1);
6709
6710                         /* Restore default handlers just prior to exec */
6711                         /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
6712
6713                         /* Stores to nommu_save list of env vars putenv'ed
6714                          * (NOMMU, on MMU we don't need that) */
6715                         /* cast away volatility... */
6716                         pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
6717                         /* pseudo_exec() does not return */
6718                 }
6719
6720                 /* parent or error */
6721 #if ENABLE_HUSH_FAST
6722                 G.count_SIGCHLD++;
6723 //bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6724 #endif
6725                 enable_restore_tty_pgrp_on_exit();
6726 #if !BB_MMU
6727                 /* Clean up after vforked child */
6728                 free(nommu_save.argv);
6729                 free(nommu_save.argv_from_re_execing);
6730                 unset_vars(nommu_save.new_env);
6731                 add_vars(nommu_save.old_vars);
6732 #endif
6733                 free(argv_expanded);
6734                 argv_expanded = NULL;
6735                 if (command->pid < 0) { /* [v]fork failed */
6736                         /* Clearly indicate, was it fork or vfork */
6737                         bb_perror_msg(BB_MMU ? "vfork"+1 : "vfork");
6738                 } else {
6739                         pi->alive_cmds++;
6740 #if ENABLE_HUSH_JOB
6741                         /* Second and next children need to know pid of first one */
6742                         if (pi->pgrp < 0)
6743                                 pi->pgrp = command->pid;
6744 #endif
6745                 }
6746
6747                 if (cmd_no > 1)
6748                         close(next_infd);
6749                 if (cmd_no < pi->num_cmds)
6750                         close(pipefds.wr);
6751                 /* Pass read (output) pipe end to next iteration */
6752                 next_infd = pipefds.rd;
6753         }
6754
6755         if (!pi->alive_cmds) {
6756                 debug_leave();
6757                 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
6758                 return 1;
6759         }
6760
6761         debug_leave();
6762         debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
6763         return -1;
6764 }
6765
6766 #ifndef debug_print_tree
6767 static void debug_print_tree(struct pipe *pi, int lvl)
6768 {
6769         static const char *const PIPE[] = {
6770                 [PIPE_SEQ] = "SEQ",
6771                 [PIPE_AND] = "AND",
6772                 [PIPE_OR ] = "OR" ,
6773                 [PIPE_BG ] = "BG" ,
6774         };
6775         static const char *RES[] = {
6776                 [RES_NONE ] = "NONE" ,
6777 # if ENABLE_HUSH_IF
6778                 [RES_IF   ] = "IF"   ,
6779                 [RES_THEN ] = "THEN" ,
6780                 [RES_ELIF ] = "ELIF" ,
6781                 [RES_ELSE ] = "ELSE" ,
6782                 [RES_FI   ] = "FI"   ,
6783 # endif
6784 # if ENABLE_HUSH_LOOPS
6785                 [RES_FOR  ] = "FOR"  ,
6786                 [RES_WHILE] = "WHILE",
6787                 [RES_UNTIL] = "UNTIL",
6788                 [RES_DO   ] = "DO"   ,
6789                 [RES_DONE ] = "DONE" ,
6790 # endif
6791 # if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
6792                 [RES_IN   ] = "IN"   ,
6793 # endif
6794 # if ENABLE_HUSH_CASE
6795                 [RES_CASE ] = "CASE" ,
6796                 [RES_CASE_IN ] = "CASE_IN" ,
6797                 [RES_MATCH] = "MATCH",
6798                 [RES_CASE_BODY] = "CASE_BODY",
6799                 [RES_ESAC ] = "ESAC" ,
6800 # endif
6801                 [RES_XXXX ] = "XXXX" ,
6802                 [RES_SNTX ] = "SNTX" ,
6803         };
6804         static const char *const CMDTYPE[] = {
6805                 "{}",
6806                 "()",
6807                 "[noglob]",
6808 # if ENABLE_HUSH_FUNCTIONS
6809                 "func()",
6810 # endif
6811         };
6812
6813         int pin, prn;
6814
6815         pin = 0;
6816         while (pi) {
6817                 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
6818                                 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
6819                 prn = 0;
6820                 while (prn < pi->num_cmds) {
6821                         struct command *command = &pi->cmds[prn];
6822                         char **argv = command->argv;
6823
6824                         fprintf(stderr, "%*s cmd %d assignment_cnt:%d",
6825                                         lvl*2, "", prn,
6826                                         command->assignment_cnt);
6827                         if (command->group) {
6828                                 fprintf(stderr, " group %s: (argv=%p)%s%s\n",
6829                                                 CMDTYPE[command->cmd_type],
6830                                                 argv
6831 # if !BB_MMU
6832                                                 , " group_as_string:", command->group_as_string
6833 # else
6834                                                 , "", ""
6835 # endif
6836                                 );
6837                                 debug_print_tree(command->group, lvl+1);
6838                                 prn++;
6839                                 continue;
6840                         }
6841                         if (argv) while (*argv) {
6842                                 fprintf(stderr, " '%s'", *argv);
6843                                 argv++;
6844                         }
6845                         fprintf(stderr, "\n");
6846                         prn++;
6847                 }
6848                 pi = pi->next;
6849                 pin++;
6850         }
6851 }
6852 #endif /* debug_print_tree */
6853
6854 /* NB: called by pseudo_exec, and therefore must not modify any
6855  * global data until exec/_exit (we can be a child after vfork!) */
6856 static int run_list(struct pipe *pi)
6857 {
6858 #if ENABLE_HUSH_CASE
6859         char *case_word = NULL;
6860 #endif
6861 #if ENABLE_HUSH_LOOPS
6862         struct pipe *loop_top = NULL;
6863         char **for_lcur = NULL;
6864         char **for_list = NULL;
6865 #endif
6866         smallint last_followup;
6867         smalluint rcode;
6868 #if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
6869         smalluint cond_code = 0;
6870 #else
6871         enum { cond_code = 0 };
6872 #endif
6873 #if HAS_KEYWORDS
6874         smallint rword;      /* RES_foo */
6875         smallint last_rword; /* ditto */
6876 #endif
6877
6878         debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
6879         debug_enter();
6880
6881 #if ENABLE_HUSH_LOOPS
6882         /* Check syntax for "for" */
6883         for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
6884                 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
6885                         continue;
6886                 /* current word is FOR or IN (BOLD in comments below) */
6887                 if (cpipe->next == NULL) {
6888                         syntax_error("malformed for");
6889                         debug_leave();
6890                         debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
6891                         return 1;
6892                 }
6893                 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
6894                 if (cpipe->next->res_word == RES_DO)
6895                         continue;
6896                 /* next word is not "do". It must be "in" then ("FOR v in ...") */
6897                 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
6898                  || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
6899                 ) {
6900                         syntax_error("malformed for");
6901                         debug_leave();
6902                         debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
6903                         return 1;
6904                 }
6905         }
6906 #endif
6907
6908         /* Past this point, all code paths should jump to ret: label
6909          * in order to return, no direct "return" statements please.
6910          * This helps to ensure that no memory is leaked. */
6911
6912 #if ENABLE_HUSH_JOB
6913         G.run_list_level++;
6914 #endif
6915
6916 #if HAS_KEYWORDS
6917         rword = RES_NONE;
6918         last_rword = RES_XXXX;
6919 #endif
6920         last_followup = PIPE_SEQ;
6921         rcode = G.last_exitcode;
6922
6923         /* Go through list of pipes, (maybe) executing them. */
6924         for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
6925                 if (G.flag_SIGINT)
6926                         break;
6927
6928                 IF_HAS_KEYWORDS(rword = pi->res_word;)
6929                 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
6930                                 rword, cond_code, last_rword);
6931 #if ENABLE_HUSH_LOOPS
6932                 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
6933                  && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
6934                 ) {
6935                         /* start of a loop: remember where loop starts */
6936                         loop_top = pi;
6937                         G.depth_of_loop++;
6938                 }
6939 #endif
6940                 /* Still in the same "if...", "then..." or "do..." branch? */
6941                 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
6942                         if ((rcode == 0 && last_followup == PIPE_OR)
6943                          || (rcode != 0 && last_followup == PIPE_AND)
6944                         ) {
6945                                 /* It is "<true> || CMD" or "<false> && CMD"
6946                                  * and we should not execute CMD */
6947                                 debug_printf_exec("skipped cmd because of || or &&\n");
6948                                 last_followup = pi->followup;
6949                                 continue;
6950                         }
6951                 }
6952                 last_followup = pi->followup;
6953                 IF_HAS_KEYWORDS(last_rword = rword;)
6954 #if ENABLE_HUSH_IF
6955                 if (cond_code) {
6956                         if (rword == RES_THEN) {
6957                                 /* if false; then ... fi has exitcode 0! */
6958                                 G.last_exitcode = rcode = EXIT_SUCCESS;
6959                                 /* "if <false> THEN cmd": skip cmd */
6960                                 continue;
6961                         }
6962                 } else {
6963                         if (rword == RES_ELSE || rword == RES_ELIF) {
6964                                 /* "if <true> then ... ELSE/ELIF cmd":
6965                                  * skip cmd and all following ones */
6966                                 break;
6967                         }
6968                 }
6969 #endif
6970 #if ENABLE_HUSH_LOOPS
6971                 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
6972                         if (!for_lcur) {
6973                                 /* first loop through for */
6974
6975                                 static const char encoded_dollar_at[] ALIGN1 = {
6976                                         SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
6977                                 }; /* encoded representation of "$@" */
6978                                 static const char *const encoded_dollar_at_argv[] = {
6979                                         encoded_dollar_at, NULL
6980                                 }; /* argv list with one element: "$@" */
6981                                 char **vals;
6982
6983                                 vals = (char**)encoded_dollar_at_argv;
6984                                 if (pi->next->res_word == RES_IN) {
6985                                         /* if no variable values after "in" we skip "for" */
6986                                         if (!pi->next->cmds[0].argv) {
6987                                                 G.last_exitcode = rcode = EXIT_SUCCESS;
6988                                                 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
6989                                                 break;
6990                                         }
6991                                         vals = pi->next->cmds[0].argv;
6992                                 } /* else: "for var; do..." -> assume "$@" list */
6993                                 /* create list of variable values */
6994                                 debug_print_strings("for_list made from", vals);
6995                                 for_list = expand_strvec_to_strvec(vals);
6996                                 for_lcur = for_list;
6997                                 debug_print_strings("for_list", for_list);
6998                         }
6999                         if (!*for_lcur) {
7000                                 /* "for" loop is over, clean up */
7001                                 free(for_list);
7002                                 for_list = NULL;
7003                                 for_lcur = NULL;
7004                                 break;
7005                         }
7006                         /* Insert next value from for_lcur */
7007                         /* note: *for_lcur already has quotes removed, $var expanded, etc */
7008                         set_local_var(xasprintf("%s=%s", pi->cmds[0].argv[0], *for_lcur++), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
7009                         continue;
7010                 }
7011                 if (rword == RES_IN) {
7012                         continue; /* "for v IN list;..." - "in" has no cmds anyway */
7013                 }
7014                 if (rword == RES_DONE) {
7015                         continue; /* "done" has no cmds too */
7016                 }
7017 #endif
7018 #if ENABLE_HUSH_CASE
7019                 if (rword == RES_CASE) {
7020                         case_word = expand_strvec_to_string(pi->cmds->argv);
7021                         continue;
7022                 }
7023                 if (rword == RES_MATCH) {
7024                         char **argv;
7025
7026                         if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
7027                                 break;
7028                         /* all prev words didn't match, does this one match? */
7029                         argv = pi->cmds->argv;
7030                         while (*argv) {
7031                                 char *pattern = expand_string_to_string(*argv);
7032                                 /* TODO: which FNM_xxx flags to use? */
7033                                 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
7034                                 free(pattern);
7035                                 if (cond_code == 0) { /* match! we will execute this branch */
7036                                         free(case_word); /* make future "word)" stop */
7037                                         case_word = NULL;
7038                                         break;
7039                                 }
7040                                 argv++;
7041                         }
7042                         continue;
7043                 }
7044                 if (rword == RES_CASE_BODY) { /* inside of a case branch */
7045                         if (cond_code != 0)
7046                                 continue; /* not matched yet, skip this pipe */
7047                 }
7048 #endif
7049                 /* Just pressing <enter> in shell should check for jobs.
7050                  * OTOH, in non-interactive shell this is useless
7051                  * and only leads to extra job checks */
7052                 if (pi->num_cmds == 0) {
7053                         if (G_interactive_fd)
7054                                 goto check_jobs_and_continue;
7055                         continue;
7056                 }
7057
7058                 /* After analyzing all keywords and conditions, we decided
7059                  * to execute this pipe. NB: have to do checkjobs(NULL)
7060                  * after run_pipe to collect any background children,
7061                  * even if list execution is to be stopped. */
7062                 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
7063                 {
7064                         int r;
7065 #if ENABLE_HUSH_LOOPS
7066                         G.flag_break_continue = 0;
7067 #endif
7068                         rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
7069                         if (r != -1) {
7070                                 /* We ran a builtin, function, or group.
7071                                  * rcode is already known
7072                                  * and we don't need to wait for anything. */
7073                                 G.last_exitcode = rcode;
7074                                 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
7075                                 check_and_run_traps(0);
7076 #if ENABLE_HUSH_LOOPS
7077                                 /* Was it "break" or "continue"? */
7078                                 if (G.flag_break_continue) {
7079                                         smallint fbc = G.flag_break_continue;
7080                                         /* We might fall into outer *loop*,
7081                                          * don't want to break it too */
7082                                         if (loop_top) {
7083                                                 G.depth_break_continue--;
7084                                                 if (G.depth_break_continue == 0)
7085                                                         G.flag_break_continue = 0;
7086                                                 /* else: e.g. "continue 2" should *break* once, *then* continue */
7087                                         } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
7088                                         if (G.depth_break_continue != 0 || fbc == BC_BREAK)
7089                                                 goto check_jobs_and_break;
7090                                         /* "continue": simulate end of loop */
7091                                         rword = RES_DONE;
7092                                         continue;
7093                                 }
7094 #endif
7095 #if ENABLE_HUSH_FUNCTIONS
7096                                 if (G.flag_return_in_progress == 1) {
7097                                         /* same as "goto check_jobs_and_break" */
7098                                         checkjobs(NULL);
7099                                         break;
7100                                 }
7101 #endif
7102                         } else if (pi->followup == PIPE_BG) {
7103                                 /* What does bash do with attempts to background builtins? */
7104                                 /* even bash 3.2 doesn't do that well with nested bg:
7105                                  * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
7106                                  * I'm NOT treating inner &'s as jobs */
7107                                 check_and_run_traps(0);
7108 #if ENABLE_HUSH_JOB
7109                                 if (G.run_list_level == 1)
7110                                         insert_bg_job(pi);
7111 #endif
7112                                 /* Last command's pid goes to $! */
7113                                 G.last_bg_pid = pi->cmds[pi->num_cmds - 1].pid;
7114                                 G.last_exitcode = rcode = EXIT_SUCCESS;
7115                                 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
7116                         } else {
7117 #if ENABLE_HUSH_JOB
7118                                 if (G.run_list_level == 1 && G_interactive_fd) {
7119                                         /* Waits for completion, then fg's main shell */
7120                                         rcode = checkjobs_and_fg_shell(pi);
7121                                         debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
7122                                         check_and_run_traps(0);
7123                                 } else
7124 #endif
7125                                 { /* This one just waits for completion */
7126                                         rcode = checkjobs(pi);
7127                                         debug_printf_exec(": checkjobs exitcode %d\n", rcode);
7128                                         check_and_run_traps(0);
7129                                 }
7130                                 G.last_exitcode = rcode;
7131                         }
7132                 }
7133
7134                 /* Analyze how result affects subsequent commands */
7135 #if ENABLE_HUSH_IF
7136                 if (rword == RES_IF || rword == RES_ELIF)
7137                         cond_code = rcode;
7138 #endif
7139 #if ENABLE_HUSH_LOOPS
7140                 /* Beware of "while false; true; do ..."! */
7141                 if (pi->next && pi->next->res_word == RES_DO) {
7142                         if (rword == RES_WHILE) {
7143                                 if (rcode) {
7144                                         /* "while false; do...done" - exitcode 0 */
7145                                         G.last_exitcode = rcode = EXIT_SUCCESS;
7146                                         debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
7147                                         goto check_jobs_and_break;
7148                                 }
7149                         }
7150                         if (rword == RES_UNTIL) {
7151                                 if (!rcode) {
7152                                         debug_printf_exec(": until expr is true: breaking\n");
7153  check_jobs_and_break:
7154                                         checkjobs(NULL);
7155                                         break;
7156                                 }
7157                         }
7158                 }
7159 #endif
7160
7161  check_jobs_and_continue:
7162                 checkjobs(NULL);
7163         } /* for (pi) */
7164
7165 #if ENABLE_HUSH_JOB
7166         G.run_list_level--;
7167 #endif
7168 #if ENABLE_HUSH_LOOPS
7169         if (loop_top)
7170                 G.depth_of_loop--;
7171         free(for_list);
7172 #endif
7173 #if ENABLE_HUSH_CASE
7174         free(case_word);
7175 #endif
7176         debug_leave();
7177         debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
7178         return rcode;
7179 }
7180
7181 /* Select which version we will use */
7182 static int run_and_free_list(struct pipe *pi)
7183 {
7184         int rcode = 0;
7185         debug_printf_exec("run_and_free_list entered\n");
7186         if (!G.n_mode) {
7187                 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
7188                 rcode = run_list(pi);
7189         }
7190         /* free_pipe_list has the side effect of clearing memory.
7191          * In the long run that function can be merged with run_list,
7192          * but doing that now would hobble the debugging effort. */
7193         free_pipe_list(pi);
7194         debug_printf_exec("run_and_free_list return %d\n", rcode);
7195         return rcode;
7196 }
7197
7198
7199 /* Called a few times only (or even once if "sh -c") */
7200 static void init_sigmasks(void)
7201 {
7202         unsigned sig;
7203         unsigned mask;
7204         sigset_t old_blocked_set;
7205
7206         if (!G.inherited_set_is_saved) {
7207                 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
7208                 G.inherited_set = G.blocked_set;
7209         }
7210         old_blocked_set = G.blocked_set;
7211
7212         mask = (1 << SIGQUIT);
7213         if (G_interactive_fd) {
7214                 mask = (1 << SIGQUIT) | SPECIAL_INTERACTIVE_SIGS;
7215                 if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */
7216                         mask |= SPECIAL_JOB_SIGS;
7217         }
7218         G.non_DFL_mask = mask;
7219
7220         sig = 0;
7221         while (mask) {
7222                 if (mask & 1)
7223                         sigaddset(&G.blocked_set, sig);
7224                 mask >>= 1;
7225                 sig++;
7226         }
7227         sigdelset(&G.blocked_set, SIGCHLD);
7228
7229         if (memcmp(&old_blocked_set, &G.blocked_set, sizeof(old_blocked_set)) != 0)
7230                 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7231
7232         /* POSIX allows shell to re-enable SIGCHLD
7233          * even if it was SIG_IGN on entry */
7234 #if ENABLE_HUSH_FAST
7235         G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
7236         if (!G.inherited_set_is_saved)
7237                 signal(SIGCHLD, SIGCHLD_handler);
7238 #else
7239         if (!G.inherited_set_is_saved)
7240                 signal(SIGCHLD, SIG_DFL);
7241 #endif
7242
7243         G.inherited_set_is_saved = 1;
7244 }
7245
7246 #if ENABLE_HUSH_JOB
7247 /* helper */
7248 static void maybe_set_to_sigexit(int sig)
7249 {
7250         void (*handler)(int);
7251         /* non_DFL_mask'ed signals are, well, masked,
7252          * no need to set handler for them.
7253          */
7254         if (!((G.non_DFL_mask >> sig) & 1)) {
7255                 handler = signal(sig, sigexit);
7256                 if (handler == SIG_IGN) /* oops... restore back to IGN! */
7257                         signal(sig, handler);
7258         }
7259 }
7260 /* Set handlers to restore tty pgrp and exit */
7261 static void set_fatal_handlers(void)
7262 {
7263         /* We _must_ restore tty pgrp on fatal signals */
7264         if (HUSH_DEBUG) {
7265                 maybe_set_to_sigexit(SIGILL );
7266                 maybe_set_to_sigexit(SIGFPE );
7267                 maybe_set_to_sigexit(SIGBUS );
7268                 maybe_set_to_sigexit(SIGSEGV);
7269                 maybe_set_to_sigexit(SIGTRAP);
7270         } /* else: hush is perfect. what SEGV? */
7271         maybe_set_to_sigexit(SIGABRT);
7272         /* bash 3.2 seems to handle these just like 'fatal' ones */
7273         maybe_set_to_sigexit(SIGPIPE);
7274         maybe_set_to_sigexit(SIGALRM);
7275         /* if we are interactive, SIGHUP, SIGTERM and SIGINT are masked.
7276          * if we aren't interactive... but in this case
7277          * we never want to restore pgrp on exit, and this fn is not called */
7278         /*maybe_set_to_sigexit(SIGHUP );*/
7279         /*maybe_set_to_sigexit(SIGTERM);*/
7280         /*maybe_set_to_sigexit(SIGINT );*/
7281 }
7282 #endif
7283
7284 static int set_mode(const char cstate, const char mode)
7285 {
7286         int state = (cstate == '-' ? 1 : 0);
7287         switch (mode) {
7288                 case 'n': G.n_mode = state; break;
7289                 case 'x': IF_HUSH_MODE_X(G_x_mode = state;) break;
7290                 default:  return EXIT_FAILURE;
7291         }
7292         return EXIT_SUCCESS;
7293 }
7294
7295 int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
7296 int hush_main(int argc, char **argv)
7297 {
7298         int opt;
7299         unsigned builtin_argc;
7300         char **e;
7301         struct variable *cur_var;
7302
7303         INIT_G();
7304         if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, it is already done */
7305                 G.last_exitcode = EXIT_SUCCESS;
7306 #if !BB_MMU
7307         G.argv0_for_re_execing = argv[0];
7308 #endif
7309         /* Deal with HUSH_VERSION */
7310         G.shell_ver.flg_export = 1;
7311         G.shell_ver.flg_read_only = 1;
7312         /* Code which handles ${var/P/R} needs writable values for all variables,
7313          * therefore we xstrdup: */
7314         G.shell_ver.varstr = xstrdup(hush_version_str),
7315         G.top_var = &G.shell_ver;
7316         /* Create shell local variables from the values
7317          * currently living in the environment */
7318         debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
7319         unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
7320         cur_var = G.top_var;
7321         e = environ;
7322         if (e) while (*e) {
7323                 char *value = strchr(*e, '=');
7324                 if (value) { /* paranoia */
7325                         cur_var->next = xzalloc(sizeof(*cur_var));
7326                         cur_var = cur_var->next;
7327                         cur_var->varstr = *e;
7328                         cur_var->max_len = strlen(*e);
7329                         cur_var->flg_export = 1;
7330                 }
7331                 e++;
7332         }
7333         /* (Re)insert HUSH_VERSION into env (AFTER we scanned the env!) */
7334         debug_printf_env("putenv '%s'\n", G.shell_ver.varstr);
7335         putenv(G.shell_ver.varstr);
7336
7337         /* Export PWD */
7338         set_pwd_var(/*exp:*/ 1);
7339         /* bash also exports SHLVL and _,
7340          * and sets (but doesn't export) the following variables:
7341          * BASH=/bin/bash
7342          * BASH_VERSINFO=([0]="3" [1]="2" [2]="0" [3]="1" [4]="release" [5]="i386-pc-linux-gnu")
7343          * BASH_VERSION='3.2.0(1)-release'
7344          * HOSTTYPE=i386
7345          * MACHTYPE=i386-pc-linux-gnu
7346          * OSTYPE=linux-gnu
7347          * HOSTNAME=<xxxxxxxxxx>
7348          * PPID=<NNNNN> - we also do it elsewhere
7349          * EUID=<NNNNN>
7350          * UID=<NNNNN>
7351          * GROUPS=()
7352          * LINES=<NNN>
7353          * COLUMNS=<NNN>
7354          * BASH_ARGC=()
7355          * BASH_ARGV=()
7356          * BASH_LINENO=()
7357          * BASH_SOURCE=()
7358          * DIRSTACK=()
7359          * PIPESTATUS=([0]="0")
7360          * HISTFILE=/<xxx>/.bash_history
7361          * HISTFILESIZE=500
7362          * HISTSIZE=500
7363          * MAILCHECK=60
7364          * PATH=/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:.
7365          * SHELL=/bin/bash
7366          * SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor
7367          * TERM=dumb
7368          * OPTERR=1
7369          * OPTIND=1
7370          * IFS=$' \t\n'
7371          * PS1='\s-\v\$ '
7372          * PS2='> '
7373          * PS4='+ '
7374          */
7375
7376 #if ENABLE_FEATURE_EDITING
7377         G.line_input_state = new_line_input_t(FOR_SHELL);
7378 #endif
7379         G.global_argc = argc;
7380         G.global_argv = argv;
7381         /* Initialize some more globals to non-zero values */
7382         cmdedit_update_prompt();
7383
7384         if (setjmp(die_jmp)) {
7385                 /* xfunc has failed! die die die */
7386                 /* no EXIT traps, this is an escape hatch! */
7387                 G.exiting = 1;
7388                 hush_exit(xfunc_error_retval);
7389         }
7390
7391         /* Shell is non-interactive at first. We need to call
7392          * init_sigmasks() if we are going to execute "sh <script>",
7393          * "sh -c <cmds>" or login shell's /etc/profile and friends.
7394          * If we later decide that we are interactive, we run init_sigmasks()
7395          * in order to intercept (more) signals.
7396          */
7397
7398         /* Parse options */
7399         /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
7400         builtin_argc = 0;
7401         while (1) {
7402                 opt = getopt(argc, argv, "+c:xins"
7403 #if !BB_MMU
7404                                 "<:$:R:V:"
7405 # if ENABLE_HUSH_FUNCTIONS
7406                                 "F:"
7407 # endif
7408 #endif
7409                 );
7410                 if (opt <= 0)
7411                         break;
7412                 switch (opt) {
7413                 case 'c':
7414                         /* Possibilities:
7415                          * sh ... -c 'script'
7416                          * sh ... -c 'script' ARG0 [ARG1...]
7417                          * On NOMMU, if builtin_argc != 0,
7418                          * sh ... -c 'builtin' BARGV... "" ARG0 [ARG1...]
7419                          * "" needs to be replaced with NULL
7420                          * and BARGV vector fed to builtin function.
7421                          * Note: the form without ARG0 never happens:
7422                          * sh ... -c 'builtin' BARGV... ""
7423                          */
7424                         if (!G.root_pid) {
7425                                 G.root_pid = getpid();
7426                                 G.root_ppid = getppid();
7427                         }
7428                         G.global_argv = argv + optind;
7429                         G.global_argc = argc - optind;
7430                         if (builtin_argc) {
7431                                 /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */
7432                                 const struct built_in_command *x;
7433
7434                                 init_sigmasks();
7435                                 x = find_builtin(optarg);
7436                                 if (x) { /* paranoia */
7437                                         G.global_argc -= builtin_argc; /* skip [BARGV...] "" */
7438                                         G.global_argv += builtin_argc;
7439                                         G.global_argv[-1] = NULL; /* replace "" */
7440                                         G.last_exitcode = x->b_function(argv + optind - 1);
7441                                 }
7442                                 goto final_return;
7443                         }
7444                         if (!G.global_argv[0]) {
7445                                 /* -c 'script' (no params): prevent empty $0 */
7446                                 G.global_argv--; /* points to argv[i] of 'script' */
7447                                 G.global_argv[0] = argv[0];
7448                                 G.global_argc++;
7449                         } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */
7450                         init_sigmasks();
7451                         parse_and_run_string(optarg);
7452                         goto final_return;
7453                 case 'i':
7454                         /* Well, we cannot just declare interactiveness,
7455                          * we have to have some stuff (ctty, etc) */
7456                         /* G_interactive_fd++; */
7457                         break;
7458                 case 's':
7459                         /* "-s" means "read from stdin", but this is how we always
7460                          * operate, so simply do nothing here. */
7461                         break;
7462 #if !BB_MMU
7463                 case '<': /* "big heredoc" support */
7464                         full_write1_str(optarg);
7465                         _exit(0);
7466                 case '$': {
7467                         unsigned long long empty_trap_mask;
7468
7469                         G.root_pid = bb_strtou(optarg, &optarg, 16);
7470                         optarg++;
7471                         G.root_ppid = bb_strtou(optarg, &optarg, 16);
7472                         optarg++;
7473                         G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
7474                         optarg++;
7475                         G.last_exitcode = bb_strtou(optarg, &optarg, 16);
7476                         optarg++;
7477                         builtin_argc = bb_strtou(optarg, &optarg, 16);
7478                         optarg++;
7479                         empty_trap_mask = bb_strtoull(optarg, &optarg, 16);
7480                         if (empty_trap_mask != 0) {
7481                                 int sig;
7482                                 init_sigmasks();
7483                                 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
7484                                 for (sig = 1; sig < NSIG; sig++) {
7485                                         if (empty_trap_mask & (1LL << sig)) {
7486                                                 G.traps[sig] = xzalloc(1); /* == xstrdup(""); */
7487                                                 sigaddset(&G.blocked_set, sig);
7488                                         }
7489                                 }
7490                                 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7491                         }
7492 # if ENABLE_HUSH_LOOPS
7493                         optarg++;
7494                         G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
7495 # endif
7496                         break;
7497                 }
7498                 case 'R':
7499                 case 'V':
7500                         set_local_var(xstrdup(optarg), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ opt == 'R');
7501                         break;
7502 # if ENABLE_HUSH_FUNCTIONS
7503                 case 'F': {
7504                         struct function *funcp = new_function(optarg);
7505                         /* funcp->name is already set to optarg */
7506                         /* funcp->body is set to NULL. It's a special case. */
7507                         funcp->body_as_string = argv[optind];
7508                         optind++;
7509                         break;
7510                 }
7511 # endif
7512 #endif
7513                 case 'n':
7514                 case 'x':
7515                         if (set_mode('-', opt) == 0) /* no error */
7516                                 break;
7517                 default:
7518 #ifndef BB_VER
7519                         fprintf(stderr, "Usage: sh [FILE]...\n"
7520                                         "   or: sh -c command [args]...\n\n");
7521                         exit(EXIT_FAILURE);
7522 #else
7523                         bb_show_usage();
7524 #endif
7525                 }
7526         } /* option parsing loop */
7527
7528         if (!G.root_pid) {
7529                 G.root_pid = getpid();
7530                 G.root_ppid = getppid();
7531         }
7532
7533         /* If we are login shell... */
7534         if (argv[0] && argv[0][0] == '-') {
7535                 FILE *input;
7536                 debug_printf("sourcing /etc/profile\n");
7537                 input = fopen_for_read("/etc/profile");
7538                 if (input != NULL) {
7539                         close_on_exec_on(fileno(input));
7540                         init_sigmasks();
7541                         parse_and_run_file(input);
7542                         fclose(input);
7543                 }
7544                 /* bash: after sourcing /etc/profile,
7545                  * tries to source (in the given order):
7546                  * ~/.bash_profile, ~/.bash_login, ~/.profile,
7547                  * stopping on first found. --noprofile turns this off.
7548                  * bash also sources ~/.bash_logout on exit.
7549                  * If called as sh, skips .bash_XXX files.
7550                  */
7551         }
7552
7553         if (argv[optind]) {
7554                 FILE *input;
7555                 /*
7556                  * "bash <script>" (which is never interactive (unless -i?))
7557                  * sources $BASH_ENV here (without scanning $PATH).
7558                  * If called as sh, does the same but with $ENV.
7559                  */
7560                 debug_printf("running script '%s'\n", argv[optind]);
7561                 G.global_argv = argv + optind;
7562                 G.global_argc = argc - optind;
7563                 input = xfopen_for_read(argv[optind]);
7564                 close_on_exec_on(fileno(input));
7565                 init_sigmasks();
7566                 parse_and_run_file(input);
7567 #if ENABLE_FEATURE_CLEAN_UP
7568                 fclose(input);
7569 #endif
7570                 goto final_return;
7571         }
7572
7573         /* Up to here, shell was non-interactive. Now it may become one.
7574          * NB: don't forget to (re)run init_sigmasks() as needed.
7575          */
7576
7577         /* A shell is interactive if the '-i' flag was given,
7578          * or if all of the following conditions are met:
7579          *    no -c command
7580          *    no arguments remaining or the -s flag given
7581          *    standard input is a terminal
7582          *    standard output is a terminal
7583          * Refer to Posix.2, the description of the 'sh' utility.
7584          */
7585 #if ENABLE_HUSH_JOB
7586         if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
7587                 G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
7588                 debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp);
7589                 if (G_saved_tty_pgrp < 0)
7590                         G_saved_tty_pgrp = 0;
7591
7592                 /* try to dup stdin to high fd#, >= 255 */
7593                 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
7594                 if (G_interactive_fd < 0) {
7595                         /* try to dup to any fd */
7596                         G_interactive_fd = dup(STDIN_FILENO);
7597                         if (G_interactive_fd < 0) {
7598                                 /* give up */
7599                                 G_interactive_fd = 0;
7600                                 G_saved_tty_pgrp = 0;
7601                         }
7602                 }
7603 // TODO: track & disallow any attempts of user
7604 // to (inadvertently) close/redirect G_interactive_fd
7605         }
7606         debug_printf("interactive_fd:%d\n", G_interactive_fd);
7607         if (G_interactive_fd) {
7608                 close_on_exec_on(G_interactive_fd);
7609
7610                 if (G_saved_tty_pgrp) {
7611                         /* If we were run as 'hush &', sleep until we are
7612                          * in the foreground (tty pgrp == our pgrp).
7613                          * If we get started under a job aware app (like bash),
7614                          * make sure we are now in charge so we don't fight over
7615                          * who gets the foreground */
7616                         while (1) {
7617                                 pid_t shell_pgrp = getpgrp();
7618                                 G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
7619                                 if (G_saved_tty_pgrp == shell_pgrp)
7620                                         break;
7621                                 /* send TTIN to ourself (should stop us) */
7622                                 kill(- shell_pgrp, SIGTTIN);
7623                         }
7624                 }
7625
7626                 /* Block some signals */
7627                 init_sigmasks();
7628
7629                 if (G_saved_tty_pgrp) {
7630                         /* Set other signals to restore saved_tty_pgrp */
7631                         set_fatal_handlers();
7632                         /* Put ourselves in our own process group
7633                          * (bash, too, does this only if ctty is available) */
7634                         bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
7635                         /* Grab control of the terminal */
7636                         tcsetpgrp(G_interactive_fd, getpid());
7637                 }
7638                 /* -1 is special - makes xfuncs longjmp, not exit
7639                  * (we reset die_sleep = 0 whereever we [v]fork) */
7640                 enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */
7641         } else {
7642                 init_sigmasks();
7643         }
7644 #elif ENABLE_HUSH_INTERACTIVE
7645         /* No job control compiled in, only prompt/line editing */
7646         if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
7647                 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
7648                 if (G_interactive_fd < 0) {
7649                         /* try to dup to any fd */
7650                         G_interactive_fd = dup(STDIN_FILENO);
7651                         if (G_interactive_fd < 0)
7652                                 /* give up */
7653                                 G_interactive_fd = 0;
7654                 }
7655         }
7656         if (G_interactive_fd) {
7657                 close_on_exec_on(G_interactive_fd);
7658         }
7659         init_sigmasks();
7660 #else
7661         /* We have interactiveness code disabled */
7662         init_sigmasks();
7663 #endif
7664         /* bash:
7665          * if interactive but not a login shell, sources ~/.bashrc
7666          * (--norc turns this off, --rcfile <file> overrides)
7667          */
7668
7669         if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
7670                 /* note: ash and hush share this string */
7671                 printf("\n\n%s %s\n"
7672                         IF_HUSH_HELP("Enter 'help' for a list of built-in commands.\n")
7673                         "\n",
7674                         bb_banner,
7675                         "hush - the humble shell"
7676                 );
7677         }
7678
7679         parse_and_run_file(stdin);
7680
7681  final_return:
7682 #if ENABLE_FEATURE_CLEAN_UP
7683         if (G.cwd != bb_msg_unknown)
7684                 free((char*)G.cwd);
7685         cur_var = G.top_var->next;
7686         while (cur_var) {
7687                 struct variable *tmp = cur_var;
7688                 if (!cur_var->max_len)
7689                         free(cur_var->varstr);
7690                 cur_var = cur_var->next;
7691                 free(tmp);
7692         }
7693 #endif
7694         hush_exit(G.last_exitcode);
7695 }
7696
7697
7698 #if ENABLE_MSH
7699 int msh_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
7700 int msh_main(int argc, char **argv)
7701 {
7702         //bb_error_msg("msh is deprecated, please use hush instead");
7703         return hush_main(argc, argv);
7704 }
7705 #endif
7706
7707
7708 /*
7709  * Built-ins
7710  */
7711 static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM)
7712 {
7713         return 0;
7714 }
7715
7716 static int run_applet_main(char **argv, int (*applet_main_func)(int argc, char **argv))
7717 {
7718         int argc = 0;
7719         while (*argv) {
7720                 argc++;
7721                 argv++;
7722         }
7723         return applet_main_func(argc, argv - argc);
7724 }
7725
7726 static int FAST_FUNC builtin_test(char **argv)
7727 {
7728         return run_applet_main(argv, test_main);
7729 }
7730
7731 static int FAST_FUNC builtin_echo(char **argv)
7732 {
7733         return run_applet_main(argv, echo_main);
7734 }
7735
7736 #if ENABLE_PRINTF
7737 static int FAST_FUNC builtin_printf(char **argv)
7738 {
7739         return run_applet_main(argv, printf_main);
7740 }
7741 #endif
7742
7743 static char **skip_dash_dash(char **argv)
7744 {
7745         argv++;
7746         if (argv[0] && argv[0][0] == '-' && argv[0][1] == '-' && argv[0][2] == '\0')
7747                 argv++;
7748         return argv;
7749 }
7750
7751 static int FAST_FUNC builtin_eval(char **argv)
7752 {
7753         int rcode = EXIT_SUCCESS;
7754
7755         argv = skip_dash_dash(argv);
7756         if (*argv) {
7757                 char *str = expand_strvec_to_string(argv);
7758                 /* bash:
7759                  * eval "echo Hi; done" ("done" is syntax error):
7760                  * "echo Hi" will not execute too.
7761                  */
7762                 parse_and_run_string(str);
7763                 free(str);
7764                 rcode = G.last_exitcode;
7765         }
7766         return rcode;
7767 }
7768
7769 static int FAST_FUNC builtin_cd(char **argv)
7770 {
7771         const char *newdir;
7772
7773         argv = skip_dash_dash(argv);
7774         newdir = argv[0];
7775         if (newdir == NULL) {
7776                 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
7777                  * bash says "bash: cd: HOME not set" and does nothing
7778                  * (exitcode 1)
7779                  */
7780                 const char *home = get_local_var_value("HOME");
7781                 newdir = home ? home : "/";
7782         }
7783         if (chdir(newdir)) {
7784                 /* Mimic bash message exactly */
7785                 bb_perror_msg("cd: %s", newdir);
7786                 return EXIT_FAILURE;
7787         }
7788         /* Read current dir (get_cwd(1) is inside) and set PWD.
7789          * Note: do not enforce exporting. If PWD was unset or unexported,
7790          * set it again, but do not export. bash does the same.
7791          */
7792         set_pwd_var(/*exp:*/ 0);
7793         return EXIT_SUCCESS;
7794 }
7795
7796 static int FAST_FUNC builtin_exec(char **argv)
7797 {
7798         argv = skip_dash_dash(argv);
7799         if (argv[0] == NULL)
7800                 return EXIT_SUCCESS; /* bash does this */
7801
7802         /* Careful: we can end up here after [v]fork. Do not restore
7803          * tty pgrp then, only top-level shell process does that */
7804         if (G_saved_tty_pgrp && getpid() == G.root_pid)
7805                 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
7806
7807         /* TODO: if exec fails, bash does NOT exit! We do.
7808          * We'll need to undo sigprocmask (it's inside execvp_or_die)
7809          * and tcsetpgrp, and this is inherently racy.
7810          */
7811         execvp_or_die(argv);
7812 }
7813
7814 static int FAST_FUNC builtin_exit(char **argv)
7815 {
7816         debug_printf_exec("%s()\n", __func__);
7817
7818         /* interactive bash:
7819          * # trap "echo EEE" EXIT
7820          * # exit
7821          * exit
7822          * There are stopped jobs.
7823          * (if there are _stopped_ jobs, running ones don't count)
7824          * # exit
7825          * exit
7826          # EEE (then bash exits)
7827          *
7828          * we can use G.exiting = -1 as indicator "last cmd was exit"
7829          */
7830
7831         /* note: EXIT trap is run by hush_exit */
7832         argv = skip_dash_dash(argv);
7833         if (argv[0] == NULL)
7834                 hush_exit(G.last_exitcode);
7835         /* mimic bash: exit 123abc == exit 255 + error msg */
7836         xfunc_error_retval = 255;
7837         /* bash: exit -2 == exit 254, no error msg */
7838         hush_exit(xatoi(argv[0]) & 0xff);
7839 }
7840
7841 static void print_escaped(const char *s)
7842 {
7843         if (*s == '\'')
7844                 goto squote;
7845         do {
7846                 const char *p = strchrnul(s, '\'');
7847                 /* print 'xxxx', possibly just '' */
7848                 printf("'%.*s'", (int)(p - s), s);
7849                 if (*p == '\0')
7850                         break;
7851                 s = p;
7852  squote:
7853                 /* s points to '; print "'''...'''" */
7854                 putchar('"');
7855                 do putchar('\''); while (*++s == '\'');
7856                 putchar('"');
7857         } while (*s);
7858 }
7859
7860 #if !ENABLE_HUSH_LOCAL
7861 #define helper_export_local(argv, exp, lvl) \
7862         helper_export_local(argv, exp)
7863 #endif
7864 static void helper_export_local(char **argv, int exp, int lvl)
7865 {
7866         do {
7867                 char *name = *argv;
7868                 char *name_end = strchrnul(name, '=');
7869
7870                 /* So far we do not check that name is valid (TODO?) */
7871
7872                 if (*name_end == '\0') {
7873                         struct variable *var, **vpp;
7874
7875                         vpp = get_ptr_to_local_var(name, name_end - name);
7876                         var = vpp ? *vpp : NULL;
7877
7878                         if (exp == -1) { /* unexporting? */
7879                                 /* export -n NAME (without =VALUE) */
7880                                 if (var) {
7881                                         var->flg_export = 0;
7882                                         debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
7883                                         unsetenv(name);
7884                                 } /* else: export -n NOT_EXISTING_VAR: no-op */
7885                                 continue;
7886                         }
7887                         if (exp == 1) { /* exporting? */
7888                                 /* export NAME (without =VALUE) */
7889                                 if (var) {
7890                                         var->flg_export = 1;
7891                                         debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
7892                                         putenv(var->varstr);
7893                                         continue;
7894                                 }
7895                         }
7896                         /* Exporting non-existing variable.
7897                          * bash does not put it in environment,
7898                          * but remembers that it is exported,
7899                          * and does put it in env when it is set later.
7900                          * We just set it to "" and export. */
7901                         /* Or, it's "local NAME" (without =VALUE).
7902                          * bash sets the value to "". */
7903                         name = xasprintf("%s=", name);
7904                 } else {
7905                         /* (Un)exporting/making local NAME=VALUE */
7906                         name = xstrdup(name);
7907                 }
7908                 set_local_var(name, /*exp:*/ exp, /*lvl:*/ lvl, /*ro:*/ 0);
7909         } while (*++argv);
7910 }
7911
7912 static int FAST_FUNC builtin_export(char **argv)
7913 {
7914         unsigned opt_unexport;
7915
7916 #if ENABLE_HUSH_EXPORT_N
7917         /* "!": do not abort on errors */
7918         opt_unexport = getopt32(argv, "!n");
7919         if (opt_unexport == (uint32_t)-1)
7920                 return EXIT_FAILURE;
7921         argv += optind;
7922 #else
7923         opt_unexport = 0;
7924         argv++;
7925 #endif
7926
7927         if (argv[0] == NULL) {
7928                 char **e = environ;
7929                 if (e) {
7930                         while (*e) {
7931 #if 0
7932                                 puts(*e++);
7933 #else
7934                                 /* ash emits: export VAR='VAL'
7935                                  * bash: declare -x VAR="VAL"
7936                                  * we follow ash example */
7937                                 const char *s = *e++;
7938                                 const char *p = strchr(s, '=');
7939
7940                                 if (!p) /* wtf? take next variable */
7941                                         continue;
7942                                 /* export var= */
7943                                 printf("export %.*s", (int)(p - s) + 1, s);
7944                                 print_escaped(p + 1);
7945                                 putchar('\n');
7946 #endif
7947                         }
7948                         /*fflush_all(); - done after each builtin anyway */
7949                 }
7950                 return EXIT_SUCCESS;
7951         }
7952
7953         helper_export_local(argv, (opt_unexport ? -1 : 1), 0);
7954
7955         return EXIT_SUCCESS;
7956 }
7957
7958 #if ENABLE_HUSH_LOCAL
7959 static int FAST_FUNC builtin_local(char **argv)
7960 {
7961         if (G.func_nest_level == 0) {
7962                 bb_error_msg("%s: not in a function", argv[0]);
7963                 return EXIT_FAILURE; /* bash compat */
7964         }
7965         helper_export_local(argv, 0, G.func_nest_level);
7966         return EXIT_SUCCESS;
7967 }
7968 #endif
7969
7970 static int FAST_FUNC builtin_trap(char **argv)
7971 {
7972         int sig;
7973         char *new_cmd;
7974
7975         if (!G.traps)
7976                 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
7977
7978         argv++;
7979         if (!*argv) {
7980                 int i;
7981                 /* No args: print all trapped */
7982                 for (i = 0; i < NSIG; ++i) {
7983                         if (G.traps[i]) {
7984                                 printf("trap -- ");
7985                                 print_escaped(G.traps[i]);
7986                                 /* note: bash adds "SIG", but only if invoked
7987                                  * as "bash". If called as "sh", or if set -o posix,
7988                                  * then it prints short signal names.
7989                                  * We are printing short names: */
7990                                 printf(" %s\n", get_signame(i));
7991                         }
7992                 }
7993                 /*fflush_all(); - done after each builtin anyway */
7994                 return EXIT_SUCCESS;
7995         }
7996
7997         new_cmd = NULL;
7998         /* If first arg is a number: reset all specified signals */
7999         sig = bb_strtou(*argv, NULL, 10);
8000         if (errno == 0) {
8001                 int ret;
8002  process_sig_list:
8003                 ret = EXIT_SUCCESS;
8004                 while (*argv) {
8005                         sig = get_signum(*argv++);
8006                         if (sig < 0 || sig >= NSIG) {
8007                                 ret = EXIT_FAILURE;
8008                                 /* Mimic bash message exactly */
8009                                 bb_perror_msg("trap: %s: invalid signal specification", argv[-1]);
8010                                 continue;
8011                         }
8012
8013                         free(G.traps[sig]);
8014                         G.traps[sig] = xstrdup(new_cmd);
8015
8016                         debug_printf("trap: setting SIG%s (%i) to '%s'\n",
8017                                 get_signame(sig), sig, G.traps[sig]);
8018
8019                         /* There is no signal for 0 (EXIT) */
8020                         if (sig == 0)
8021                                 continue;
8022
8023                         if (new_cmd) {
8024                                 sigaddset(&G.blocked_set, sig);
8025                         } else {
8026                                 /* There was a trap handler, we are removing it
8027                                  * (if sig has non-DFL handling,
8028                                  * we don't need to do anything) */
8029                                 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
8030                                         continue;
8031                                 sigdelset(&G.blocked_set, sig);
8032                         }
8033                 }
8034                 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
8035                 return ret;
8036         }
8037
8038         if (!argv[1]) { /* no second arg */
8039                 bb_error_msg("trap: invalid arguments");
8040                 return EXIT_FAILURE;
8041         }
8042
8043         /* First arg is "-": reset all specified to default */
8044         /* First arg is "--": skip it, the rest is "handler SIGs..." */
8045         /* Everything else: set arg as signal handler
8046          * (includes "" case, which ignores signal) */
8047         if (argv[0][0] == '-') {
8048                 if (argv[0][1] == '\0') { /* "-" */
8049                         /* new_cmd remains NULL: "reset these sigs" */
8050                         goto reset_traps;
8051                 }
8052                 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
8053                         argv++;
8054                 }
8055                 /* else: "-something", no special meaning */
8056         }
8057         new_cmd = *argv;
8058  reset_traps:
8059         argv++;
8060         goto process_sig_list;
8061 }
8062
8063 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */
8064 static int FAST_FUNC builtin_type(char **argv)
8065 {
8066         int ret = EXIT_SUCCESS;
8067
8068         while (*++argv) {
8069                 const char *type;
8070                 char *path = NULL;
8071
8072                 if (0) {} /* make conditional compile easier below */
8073                 /*else if (find_alias(*argv))
8074                         type = "an alias";*/
8075 #if ENABLE_HUSH_FUNCTIONS
8076                 else if (find_function(*argv))
8077                         type = "a function";
8078 #endif
8079                 else if (find_builtin(*argv))
8080                         type = "a shell builtin";
8081                 else if ((path = find_in_path(*argv)) != NULL)
8082                         type = path;
8083                 else {
8084                         bb_error_msg("type: %s: not found", *argv);
8085                         ret = EXIT_FAILURE;
8086                         continue;
8087                 }
8088
8089                 printf("%s is %s\n", *argv, type);
8090                 free(path);
8091         }
8092
8093         return ret;
8094 }
8095
8096 #if ENABLE_HUSH_JOB
8097 /* built-in 'fg' and 'bg' handler */
8098 static int FAST_FUNC builtin_fg_bg(char **argv)
8099 {
8100         int i, jobnum;
8101         struct pipe *pi;
8102
8103         if (!G_interactive_fd)
8104                 return EXIT_FAILURE;
8105
8106         /* If they gave us no args, assume they want the last backgrounded task */
8107         if (!argv[1]) {
8108                 for (pi = G.job_list; pi; pi = pi->next) {
8109                         if (pi->jobid == G.last_jobid) {
8110                                 goto found;
8111                         }
8112                 }
8113                 bb_error_msg("%s: no current job", argv[0]);
8114                 return EXIT_FAILURE;
8115         }
8116         if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
8117                 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
8118                 return EXIT_FAILURE;
8119         }
8120         for (pi = G.job_list; pi; pi = pi->next) {
8121                 if (pi->jobid == jobnum) {
8122                         goto found;
8123                 }
8124         }
8125         bb_error_msg("%s: %d: no such job", argv[0], jobnum);
8126         return EXIT_FAILURE;
8127  found:
8128         /* TODO: bash prints a string representation
8129          * of job being foregrounded (like "sleep 1 | cat") */
8130         if (argv[0][0] == 'f' && G_saved_tty_pgrp) {
8131                 /* Put the job into the foreground.  */
8132                 tcsetpgrp(G_interactive_fd, pi->pgrp);
8133         }
8134
8135         /* Restart the processes in the job */
8136         debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
8137         for (i = 0; i < pi->num_cmds; i++) {
8138                 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
8139                 pi->cmds[i].is_stopped = 0;
8140         }
8141         pi->stopped_cmds = 0;
8142
8143         i = kill(- pi->pgrp, SIGCONT);
8144         if (i < 0) {
8145                 if (errno == ESRCH) {
8146                         delete_finished_bg_job(pi);
8147                         return EXIT_SUCCESS;
8148                 }
8149                 bb_perror_msg("kill (SIGCONT)");
8150         }
8151
8152         if (argv[0][0] == 'f') {
8153                 remove_bg_job(pi);
8154                 return checkjobs_and_fg_shell(pi);
8155         }
8156         return EXIT_SUCCESS;
8157 }
8158 #endif
8159
8160 #if ENABLE_HUSH_HELP
8161 static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM)
8162 {
8163         const struct built_in_command *x;
8164
8165         printf(
8166                 "Built-in commands:\n"
8167                 "------------------\n");
8168         for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) {
8169                 if (x->b_descr)
8170                         printf("%-10s%s\n", x->b_cmd, x->b_descr);
8171         }
8172         bb_putchar('\n');
8173         return EXIT_SUCCESS;
8174 }
8175 #endif
8176
8177 #if ENABLE_HUSH_JOB
8178 static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM)
8179 {
8180         struct pipe *job;
8181         const char *status_string;
8182
8183         for (job = G.job_list; job; job = job->next) {
8184                 if (job->alive_cmds == job->stopped_cmds)
8185                         status_string = "Stopped";
8186                 else
8187                         status_string = "Running";
8188
8189                 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
8190         }
8191         return EXIT_SUCCESS;
8192 }
8193 #endif
8194
8195 #if HUSH_DEBUG
8196 static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM)
8197 {
8198         void *p;
8199         unsigned long l;
8200
8201 # ifdef M_TRIM_THRESHOLD
8202         /* Optional. Reduces probability of false positives */
8203         malloc_trim(0);
8204 # endif
8205         /* Crude attempt to find where "free memory" starts,
8206          * sans fragmentation. */
8207         p = malloc(240);
8208         l = (unsigned long)p;
8209         free(p);
8210         p = malloc(3400);
8211         if (l < (unsigned long)p) l = (unsigned long)p;
8212         free(p);
8213
8214         if (!G.memleak_value)
8215                 G.memleak_value = l;
8216
8217         l -= G.memleak_value;
8218         if ((long)l < 0)
8219                 l = 0;
8220         l /= 1024;
8221         if (l > 127)
8222                 l = 127;
8223
8224         /* Exitcode is "how many kilobytes we leaked since 1st call" */
8225         return l;
8226 }
8227 #endif
8228
8229 static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM)
8230 {
8231         puts(get_cwd(0));
8232         return EXIT_SUCCESS;
8233 }
8234
8235 static int FAST_FUNC builtin_read(char **argv)
8236 {
8237         const char *r;
8238         char *opt_n = NULL;
8239         char *opt_p = NULL;
8240         char *opt_t = NULL;
8241         char *opt_u = NULL;
8242         int read_flags;
8243
8244         /* "!": do not abort on errors.
8245          * Option string must start with "sr" to match BUILTIN_READ_xxx
8246          */
8247         read_flags = getopt32(argv, "!srn:p:t:u:", &opt_n, &opt_p, &opt_t, &opt_u);
8248         if (read_flags == (uint32_t)-1)
8249                 return EXIT_FAILURE;
8250         argv += optind;
8251
8252         r = shell_builtin_read(set_local_var_from_halves,
8253                 argv,
8254                 get_local_var_value("IFS"), /* can be NULL */
8255                 read_flags,
8256                 opt_n,
8257                 opt_p,
8258                 opt_t,
8259                 opt_u
8260         );
8261
8262         if ((uintptr_t)r > 1) {
8263                 bb_error_msg("%s", r);
8264                 r = (char*)(uintptr_t)1;
8265         }
8266
8267         return (uintptr_t)r;
8268 }
8269
8270 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
8271  * built-in 'set' handler
8272  * SUSv3 says:
8273  * set [-abCefhmnuvx] [-o option] [argument...]
8274  * set [+abCefhmnuvx] [+o option] [argument...]
8275  * set -- [argument...]
8276  * set -o
8277  * set +o
8278  * Implementations shall support the options in both their hyphen and
8279  * plus-sign forms. These options can also be specified as options to sh.
8280  * Examples:
8281  * Write out all variables and their values: set
8282  * Set $1, $2, and $3 and set "$#" to 3: set c a b
8283  * Turn on the -x and -v options: set -xv
8284  * Unset all positional parameters: set --
8285  * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
8286  * Set the positional parameters to the expansion of x, even if x expands
8287  * with a leading '-' or '+': set -- $x
8288  *
8289  * So far, we only support "set -- [argument...]" and some of the short names.
8290  */
8291 static int FAST_FUNC builtin_set(char **argv)
8292 {
8293         int n;
8294         char **pp, **g_argv;
8295         char *arg = *++argv;
8296
8297         if (arg == NULL) {
8298                 struct variable *e;
8299                 for (e = G.top_var; e; e = e->next)
8300                         puts(e->varstr);
8301                 return EXIT_SUCCESS;
8302         }
8303
8304         do {
8305                 if (!strcmp(arg, "--")) {
8306                         ++argv;
8307                         goto set_argv;
8308                 }
8309                 if (arg[0] != '+' && arg[0] != '-')
8310                         break;
8311                 for (n = 1; arg[n]; ++n)
8312                         if (set_mode(arg[0], arg[n]))
8313                                 goto error;
8314         } while ((arg = *++argv) != NULL);
8315         /* Now argv[0] is 1st argument */
8316
8317         if (arg == NULL)
8318                 return EXIT_SUCCESS;
8319  set_argv:
8320
8321         /* NB: G.global_argv[0] ($0) is never freed/changed */
8322         g_argv = G.global_argv;
8323         if (G.global_args_malloced) {
8324                 pp = g_argv;
8325                 while (*++pp)
8326                         free(*pp);
8327                 g_argv[1] = NULL;
8328         } else {
8329                 G.global_args_malloced = 1;
8330                 pp = xzalloc(sizeof(pp[0]) * 2);
8331                 pp[0] = g_argv[0]; /* retain $0 */
8332                 g_argv = pp;
8333         }
8334         /* This realloc's G.global_argv */
8335         G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
8336
8337         n = 1;
8338         while (*++pp)
8339                 n++;
8340         G.global_argc = n;
8341
8342         return EXIT_SUCCESS;
8343
8344         /* Nothing known, so abort */
8345  error:
8346         bb_error_msg("set: %s: invalid option", arg);
8347         return EXIT_FAILURE;
8348 }
8349
8350 static int FAST_FUNC builtin_shift(char **argv)
8351 {
8352         int n = 1;
8353         argv = skip_dash_dash(argv);
8354         if (argv[0]) {
8355                 n = atoi(argv[0]);
8356         }
8357         if (n >= 0 && n < G.global_argc) {
8358                 if (G.global_args_malloced) {
8359                         int m = 1;
8360                         while (m <= n)
8361                                 free(G.global_argv[m++]);
8362                 }
8363                 G.global_argc -= n;
8364                 memmove(&G.global_argv[1], &G.global_argv[n+1],
8365                                 G.global_argc * sizeof(G.global_argv[0]));
8366                 return EXIT_SUCCESS;
8367         }
8368         return EXIT_FAILURE;
8369 }
8370
8371 static int FAST_FUNC builtin_source(char **argv)
8372 {
8373         char *arg_path, *filename;
8374         FILE *input;
8375         save_arg_t sv;
8376 #if ENABLE_HUSH_FUNCTIONS
8377         smallint sv_flg;
8378 #endif
8379
8380         argv = skip_dash_dash(argv);
8381         filename = argv[0];
8382         if (!filename) {
8383                 /* bash says: "bash: .: filename argument required" */
8384                 return 2; /* bash compat */
8385         }
8386         arg_path = NULL;
8387         if (!strchr(filename, '/')) {
8388                 arg_path = find_in_path(filename);
8389                 if (arg_path)
8390                         filename = arg_path;
8391         }
8392         input = fopen_or_warn(filename, "r");
8393         free(arg_path);
8394         if (!input) {
8395                 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
8396                 return EXIT_FAILURE;
8397         }
8398         close_on_exec_on(fileno(input));
8399
8400 #if ENABLE_HUSH_FUNCTIONS
8401         sv_flg = G.flag_return_in_progress;
8402         /* "we are inside sourced file, ok to use return" */
8403         G.flag_return_in_progress = -1;
8404 #endif
8405         save_and_replace_G_args(&sv, argv);
8406
8407         parse_and_run_file(input);
8408         fclose(input);
8409
8410         restore_G_args(&sv, argv);
8411 #if ENABLE_HUSH_FUNCTIONS
8412         G.flag_return_in_progress = sv_flg;
8413 #endif
8414
8415         return G.last_exitcode;
8416 }
8417
8418 static int FAST_FUNC builtin_umask(char **argv)
8419 {
8420         int rc;
8421         mode_t mask;
8422
8423         mask = umask(0);
8424         argv = skip_dash_dash(argv);
8425         if (argv[0]) {
8426                 mode_t old_mask = mask;
8427
8428                 mask ^= 0777;
8429                 rc = bb_parse_mode(argv[0], &mask);
8430                 mask ^= 0777;
8431                 if (rc == 0) {
8432                         mask = old_mask;
8433                         /* bash messages:
8434                          * bash: umask: 'q': invalid symbolic mode operator
8435                          * bash: umask: 999: octal number out of range
8436                          */
8437                         bb_error_msg("%s: invalid mode '%s'", "umask", argv[0]);
8438                 }
8439         } else {
8440                 rc = 1;
8441                 /* Mimic bash */
8442                 printf("%04o\n", (unsigned) mask);
8443                 /* fall through and restore mask which we set to 0 */
8444         }
8445         umask(mask);
8446
8447         return !rc; /* rc != 0 - success */
8448 }
8449
8450 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
8451 static int FAST_FUNC builtin_unset(char **argv)
8452 {
8453         int ret;
8454         unsigned opts;
8455
8456         /* "!": do not abort on errors */
8457         /* "+": stop at 1st non-option */
8458         opts = getopt32(argv, "!+vf");
8459         if (opts == (unsigned)-1)
8460                 return EXIT_FAILURE;
8461         if (opts == 3) {
8462                 bb_error_msg("unset: -v and -f are exclusive");
8463                 return EXIT_FAILURE;
8464         }
8465         argv += optind;
8466
8467         ret = EXIT_SUCCESS;
8468         while (*argv) {
8469                 if (!(opts & 2)) { /* not -f */
8470                         if (unset_local_var(*argv)) {
8471                                 /* unset <nonexistent_var> doesn't fail.
8472                                  * Error is when one tries to unset RO var.
8473                                  * Message was printed by unset_local_var. */
8474                                 ret = EXIT_FAILURE;
8475                         }
8476                 }
8477 #if ENABLE_HUSH_FUNCTIONS
8478                 else {
8479                         unset_func(*argv);
8480                 }
8481 #endif
8482                 argv++;
8483         }
8484         return ret;
8485 }
8486
8487 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
8488 static int FAST_FUNC builtin_wait(char **argv)
8489 {
8490         int ret = EXIT_SUCCESS;
8491         int status, sig;
8492
8493         argv = skip_dash_dash(argv);
8494         if (argv[0] == NULL) {
8495                 /* Don't care about wait results */
8496                 /* Note 1: must wait until there are no more children */
8497                 /* Note 2: must be interruptible */
8498                 /* Examples:
8499                  * $ sleep 3 & sleep 6 & wait
8500                  * [1] 30934 sleep 3
8501                  * [2] 30935 sleep 6
8502                  * [1] Done                   sleep 3
8503                  * [2] Done                   sleep 6
8504                  * $ sleep 3 & sleep 6 & wait
8505                  * [1] 30936 sleep 3
8506                  * [2] 30937 sleep 6
8507                  * [1] Done                   sleep 3
8508                  * ^C <-- after ~4 sec from keyboard
8509                  * $
8510                  */
8511                 sigaddset(&G.blocked_set, SIGCHLD);
8512                 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
8513                 while (1) {
8514                         checkjobs(NULL);
8515                         if (errno == ECHILD)
8516                                 break;
8517                         /* Wait for SIGCHLD or any other signal of interest */
8518                         /* sigtimedwait with infinite timeout: */
8519                         sig = sigwaitinfo(&G.blocked_set, NULL);
8520                         if (sig > 0) {
8521                                 sig = check_and_run_traps(sig);
8522                                 if (sig && sig != SIGCHLD) { /* see note 2 */
8523                                         ret = 128 + sig;
8524                                         break;
8525                                 }
8526                         }
8527                 }
8528                 sigdelset(&G.blocked_set, SIGCHLD);
8529                 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
8530                 return ret;
8531         }
8532
8533         /* This is probably buggy wrt interruptible-ness */
8534         while (*argv) {
8535                 pid_t pid = bb_strtou(*argv, NULL, 10);
8536                 if (errno) {
8537                         /* mimic bash message */
8538                         bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
8539                         return EXIT_FAILURE;
8540                 }
8541                 if (waitpid(pid, &status, 0) == pid) {
8542                         if (WIFSIGNALED(status))
8543                                 ret = 128 + WTERMSIG(status);
8544                         else if (WIFEXITED(status))
8545                                 ret = WEXITSTATUS(status);
8546                         else /* wtf? */
8547                                 ret = EXIT_FAILURE;
8548                 } else {
8549                         bb_perror_msg("wait %s", *argv);
8550                         ret = 127;
8551                 }
8552                 argv++;
8553         }
8554
8555         return ret;
8556 }
8557
8558 #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
8559 static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
8560 {
8561         if (argv[1]) {
8562                 def = bb_strtou(argv[1], NULL, 10);
8563                 if (errno || def < def_min || argv[2]) {
8564                         bb_error_msg("%s: bad arguments", argv[0]);
8565                         def = UINT_MAX;
8566                 }
8567         }
8568         return def;
8569 }
8570 #endif
8571
8572 #if ENABLE_HUSH_LOOPS
8573 static int FAST_FUNC builtin_break(char **argv)
8574 {
8575         unsigned depth;
8576         if (G.depth_of_loop == 0) {
8577                 bb_error_msg("%s: only meaningful in a loop", argv[0]);
8578                 return EXIT_SUCCESS; /* bash compat */
8579         }
8580         G.flag_break_continue++; /* BC_BREAK = 1 */
8581
8582         G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
8583         if (depth == UINT_MAX)
8584                 G.flag_break_continue = BC_BREAK;
8585         if (G.depth_of_loop < depth)
8586                 G.depth_break_continue = G.depth_of_loop;
8587
8588         return EXIT_SUCCESS;
8589 }
8590
8591 static int FAST_FUNC builtin_continue(char **argv)
8592 {
8593         G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
8594         return builtin_break(argv);
8595 }
8596 #endif
8597
8598 #if ENABLE_HUSH_FUNCTIONS
8599 static int FAST_FUNC builtin_return(char **argv)
8600 {
8601         int rc;
8602
8603         if (G.flag_return_in_progress != -1) {
8604                 bb_error_msg("%s: not in a function or sourced script", argv[0]);
8605                 return EXIT_FAILURE; /* bash compat */
8606         }
8607
8608         G.flag_return_in_progress = 1;
8609
8610         /* bash:
8611          * out of range: wraps around at 256, does not error out
8612          * non-numeric param:
8613          * f() { false; return qwe; }; f; echo $?
8614          * bash: return: qwe: numeric argument required  <== we do this
8615          * 255  <== we also do this
8616          */
8617         rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
8618         return rc;
8619 }
8620 #endif