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