hush: fix a=abc; c=c; echo ${a%${c}}
[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                                                 {
2642                                                         char *exp_exp_word = expand_pseudo_dquoted(exp_word);
2643                                                         if (exp_exp_word)
2644                                                                 exp_word = exp_exp_word;
2645                                                         loc = scan(to_be_freed, exp_word, match_at_left);
2646                                                         //bb_error_msg("op:%c str:'%s' pat:'%s' res:'%s'",
2647                                                         //              exp_op, to_be_freed, exp_word, loc);
2648                                                         free(exp_exp_word);
2649                                                 }
2650                                                 if (loc) { /* match was found */
2651                                                         if (match_at_left) /* # or ## */
2652                                                                 val = loc;
2653                                                         else /* % or %% */
2654                                                                 *loc = '\0';
2655                                                 }
2656                                         }
2657                                 } else if (!strchr("%#:-=+?"+3, exp_op)) {
2658 #if ENABLE_HUSH_BASH_COMPAT
2659         /* exp_op is ':' and next char isn't a subst operator.
2660          * Assuming it's ${var:[N][:M]} bashism.
2661          * TODO: N, M can be expressions similar to $((EXPR)): 2+2, 2+var etc
2662          */
2663                                         char *end;
2664                                         unsigned len = INT_MAX;
2665                                         unsigned beg = 0;
2666                                         end = --exp_word;
2667                                         if (*exp_word != ':') /* not ${var::...} */
2668                                                 beg = bb_strtou(exp_word, &end, 0);
2669                                         //bb_error_msg("beg:'%s'=%u end:'%s'", exp_word, beg, end);
2670                                         if (*end == ':') {
2671                                                 if (end[1] != '\0') /* not ${var:NUM:} */
2672                                                         len = bb_strtou(end + 1, &end, 0);
2673                                                 else {
2674                                                         len = 0;
2675                                                         end++;
2676                                                 }
2677                                                 //bb_error_msg("len:%u end:'%s'", len, end);
2678                                         }
2679                                         if (*end == '\0') {
2680                                                 //bb_error_msg("from val:'%s'", val);
2681                                                 if (len == 0 || !val || beg >= strlen(val))
2682                                                         val = "";
2683                                                 else
2684                                                         val = to_be_freed = xstrndup(val + beg, len);
2685                                                 //bb_error_msg("val:'%s'", val);
2686                                         } else
2687 #endif
2688                                         {
2689                                                 die_if_script("malformed ${%s...}", var);
2690                                                 val = "";
2691                                         }
2692                                 } else { /* one of "-=+?" */
2693         /* Standard-mandated substitution ops:
2694          * ${var?word} - indicate error if unset
2695          *      If var is unset, word (or a message indicating it is unset
2696          *      if word is null) is written to standard error
2697          *      and the shell exits with a non-zero exit status.
2698          *      Otherwise, the value of var is substituted.
2699          * ${var-word} - use default value
2700          *      If var is unset, word is substituted.
2701          * ${var=word} - assign and use default value
2702          *      If var is unset, word is assigned to var.
2703          *      In all cases, final value of var is substituted.
2704          * ${var+word} - use alternative value
2705          *      If var is unset, null is substituted.
2706          *      Otherwise, word is substituted.
2707          *
2708          * Word is subjected to tilde expansion, parameter expansion,
2709          * command substitution, and arithmetic expansion.
2710          * If word is not needed, it is not expanded.
2711          *
2712          * Colon forms (${var:-word}, ${var:=word} etc) do the same,
2713          * but also treat null var as if it is unset.
2714          */
2715                                         int use_word = (!val || ((exp_save == ':') && !val[0]));
2716                                         if (exp_op == '+')
2717                                                 use_word = !use_word;
2718                                         debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
2719                                                 (exp_save == ':') ? "true" : "false", use_word);
2720                                         if (use_word) {
2721                                                 to_be_freed = expand_pseudo_dquoted(exp_word);
2722                                                 if (to_be_freed)
2723                                                         exp_word = to_be_freed;
2724                                                 if (exp_op == '?') {
2725                                                         /* mimic bash message */
2726                                                         die_if_script("%s: %s",
2727                                                                 var,
2728                                                                 exp_word[0] ? exp_word : "parameter null or not set"
2729                                                         );
2730 //TODO: how interactive bash aborts expansion mid-command?
2731                                                 } else {
2732                                                         val = exp_word;
2733                                                 }
2734
2735                                                 if (exp_op == '=') {
2736                                                         /* ${var=[word]} or ${var:=[word]} */
2737                                                         if (isdigit(var[0]) || var[0] == '#') {
2738                                                                 /* mimic bash message */
2739                                                                 die_if_script("$%s: cannot assign in this way", var);
2740                                                                 val = NULL;
2741                                                         } else {
2742                                                                 char *new_var = xasprintf("%s=%s", var, val);
2743                                                                 set_local_var(new_var, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
2744                                                         }
2745                                                 }
2746                                         }
2747                                 }
2748
2749                                 *exp_saveptr = exp_save;
2750                         } /* if (exp_op) */
2751
2752                         arg[0] = first_ch;
2753 #if ENABLE_HUSH_TICK
2754  store_val:
2755 #endif
2756                         if (!(first_ch & 0x80)) { /* unquoted $VAR */
2757                                 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, output->o_escape);
2758                                 if (val) {
2759                                         /* unquoted var's contents should be globbed, so don't escape */
2760                                         smallint sv = output->o_escape;
2761                                         output->o_escape = 0;
2762                                         n = expand_on_ifs(output, n, val);
2763                                         val = NULL;
2764                                         output->o_escape = sv;
2765                                 }
2766                         } else { /* quoted $VAR, val will be appended below */
2767                                 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, output->o_escape);
2768                         }
2769                 } /* default: */
2770                 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
2771
2772                 if (val) {
2773                         o_addQstr(output, val, strlen(val));
2774                 }
2775                 free(to_be_freed);
2776                 /* Do the check to avoid writing to a const string */
2777                 if (*p != SPECIAL_VAR_SYMBOL)
2778                         *p = SPECIAL_VAR_SYMBOL;
2779
2780 #if ENABLE_HUSH_TICK
2781                 o_free(&subst_result);
2782 #endif
2783                 arg = ++p;
2784         } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
2785
2786         if (arg[0]) {
2787                 debug_print_list("expand_vars_to_list[a]", output, n);
2788                 /* this part is literal, and it was already pre-quoted
2789                  * if needed (much earlier), do not use o_addQstr here! */
2790                 o_addstr_with_NUL(output, arg);
2791                 debug_print_list("expand_vars_to_list[b]", output, n);
2792         } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
2793          && !(ored_ch & 0x80) /* and all vars were not quoted. */
2794         ) {
2795                 n--;
2796                 /* allow to reuse list[n] later without re-growth */
2797                 output->has_empty_slot = 1;
2798         } else {
2799                 o_addchr(output, '\0');
2800         }
2801         return n;
2802 }
2803
2804 static char **expand_variables(char **argv, int or_mask)
2805 {
2806         int n;
2807         char **list;
2808         char **v;
2809         o_string output = NULL_O_STRING;
2810
2811         if (or_mask & 0x100) {
2812                 output.o_escape = 1; /* protect against globbing for "$var" */
2813                 /* (unquoted $var will temporarily switch it off) */
2814                 output.o_glob = 1;
2815         }
2816
2817         n = 0;
2818         v = argv;
2819         while (*v) {
2820                 n = expand_vars_to_list(&output, n, *v, (unsigned char)or_mask);
2821                 v++;
2822         }
2823         debug_print_list("expand_variables", &output, n);
2824
2825         /* output.data (malloced in one block) gets returned in "list" */
2826         list = o_finalize_list(&output, n);
2827         debug_print_strings("expand_variables[1]", list);
2828         return list;
2829 }
2830
2831 static char **expand_strvec_to_strvec(char **argv)
2832 {
2833         return expand_variables(argv, 0x100);
2834 }
2835
2836 #if ENABLE_HUSH_BASH_COMPAT
2837 static char **expand_strvec_to_strvec_singleword_noglob(char **argv)
2838 {
2839         return expand_variables(argv, 0x80);
2840 }
2841 #endif
2842
2843 #ifdef CMD_SINGLEWORD_NOGLOB_COND
2844 static char **expand_strvec_to_strvec_singleword_noglob_cond(char **argv)
2845 {
2846         int n;
2847         char **list;
2848         char **v;
2849         o_string output = NULL_O_STRING;
2850
2851         n = 0;
2852         v = argv;
2853         while (*v) {
2854                 int is_var = is_well_formed_var_name(*v, '=');
2855                 /* is_var * 0x80: singleword expansion for vars */
2856                 n = expand_vars_to_list(&output, n, *v, is_var * 0x80);
2857
2858                 /* Subtle! expand_vars_to_list did not glob last word yet.
2859                  * It does this only when fed with further data.
2860                  * Therefore we set globbing flags AFTER it, not before:
2861                  */
2862
2863                 /* if it is not recognizably abc=...; then: */
2864                 output.o_escape = !is_var; /* protect against globbing for "$var" */
2865                 /* (unquoted $var will temporarily switch it off) */
2866                 output.o_glob = !is_var; /* and indeed do globbing */
2867                 v++;
2868         }
2869         debug_print_list("expand_cond", &output, n);
2870
2871         /* output.data (malloced in one block) gets returned in "list" */
2872         list = o_finalize_list(&output, n);
2873         debug_print_strings("expand_cond[1]", list);
2874         return list;
2875 }
2876 #endif
2877
2878 /* Used for expansion of right hand of assignments */
2879 /* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs
2880  * "v=/bin/c*" */
2881 static char *expand_string_to_string(const char *str)
2882 {
2883         char *argv[2], **list;
2884
2885         argv[0] = (char*)str;
2886         argv[1] = NULL;
2887         list = expand_variables(argv, 0x80); /* 0x80: singleword expansion */
2888         if (HUSH_DEBUG)
2889                 if (!list[0] || list[1])
2890                         bb_error_msg_and_die("BUG in varexp2");
2891         /* actually, just move string 2*sizeof(char*) bytes back */
2892         overlapping_strcpy((char*)list, list[0]);
2893         unbackslash((char*)list);
2894         debug_printf_expand("string_to_string='%s'\n", (char*)list);
2895         return (char*)list;
2896 }
2897
2898 /* Used for "eval" builtin */
2899 static char* expand_strvec_to_string(char **argv)
2900 {
2901         char **list;
2902
2903         list = expand_variables(argv, 0x80);
2904         /* Convert all NULs to spaces */
2905         if (list[0]) {
2906                 int n = 1;
2907                 while (list[n]) {
2908                         if (HUSH_DEBUG)
2909                                 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2910                                         bb_error_msg_and_die("BUG in varexp3");
2911                         /* bash uses ' ' regardless of $IFS contents */
2912                         list[n][-1] = ' ';
2913                         n++;
2914                 }
2915         }
2916         overlapping_strcpy((char*)list, list[0]);
2917         debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
2918         return (char*)list;
2919 }
2920
2921 static char **expand_assignments(char **argv, int count)
2922 {
2923         int i;
2924         char **p = NULL;
2925         /* Expand assignments into one string each */
2926         for (i = 0; i < count; i++) {
2927                 p = add_string_to_strings(p, expand_string_to_string(argv[i]));
2928         }
2929         return p;
2930 }
2931
2932
2933 #if BB_MMU
2934 /* never called */
2935 void re_execute_shell(char ***to_free, const char *s,
2936                 char *g_argv0, char **g_argv,
2937                 char **builtin_argv) NORETURN;
2938
2939 static void reset_traps_to_defaults(void)
2940 {
2941         /* This function is always called in a child shell
2942          * after fork (not vfork, NOMMU doesn't use this function).
2943          */
2944         unsigned sig;
2945         unsigned mask;
2946
2947         /* Child shells are not interactive.
2948          * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
2949          * Testcase: (while :; do :; done) + ^Z should background.
2950          * Same goes for SIGTERM, SIGHUP, SIGINT.
2951          */
2952         if (!G.traps && !(G.non_DFL_mask & SPECIAL_INTERACTIVE_SIGS))
2953                 return; /* already no traps and no SPECIAL_INTERACTIVE_SIGS */
2954
2955         /* Switching off SPECIAL_INTERACTIVE_SIGS.
2956          * Stupid. It can be done with *single* &= op, but we can't use
2957          * the fact that G.blocked_set is implemented as a bitmask
2958          * in libc... */
2959         mask = (SPECIAL_INTERACTIVE_SIGS >> 1);
2960         sig = 1;
2961         while (1) {
2962                 if (mask & 1) {
2963                         /* Careful. Only if no trap or trap is not "" */
2964                         if (!G.traps || !G.traps[sig] || G.traps[sig][0])
2965                                 sigdelset(&G.blocked_set, sig);
2966                 }
2967                 mask >>= 1;
2968                 if (!mask)
2969                         break;
2970                 sig++;
2971         }
2972         /* Our homegrown sig mask is saner to work with :) */
2973         G.non_DFL_mask &= ~SPECIAL_INTERACTIVE_SIGS;
2974
2975         /* Resetting all traps to default except empty ones */
2976         mask = G.non_DFL_mask;
2977         if (G.traps) for (sig = 0; sig < NSIG; sig++, mask >>= 1) {
2978                 if (!G.traps[sig] || !G.traps[sig][0])
2979                         continue;
2980                 free(G.traps[sig]);
2981                 G.traps[sig] = NULL;
2982                 /* There is no signal for 0 (EXIT) */
2983                 if (sig == 0)
2984                         continue;
2985                 /* There was a trap handler, we just removed it.
2986                  * But if sig still has non-DFL handling,
2987                  * we should not unblock the sig. */
2988                 if (mask & 1)
2989                         continue;
2990                 sigdelset(&G.blocked_set, sig);
2991         }
2992         sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
2993 }
2994
2995 #else /* !BB_MMU */
2996
2997 static void re_execute_shell(char ***to_free, const char *s,
2998                 char *g_argv0, char **g_argv,
2999                 char **builtin_argv) NORETURN;
3000 static void re_execute_shell(char ***to_free, const char *s,
3001                 char *g_argv0, char **g_argv,
3002                 char **builtin_argv)
3003 {
3004 #define NOMMU_HACK_FMT ("-$%x:%x:%x:%x:%x:%llx" IF_HUSH_LOOPS(":%x"))
3005         /* delims + 2 * (number of bytes in printed hex numbers) */
3006         char param_buf[sizeof(NOMMU_HACK_FMT) + 2 * (sizeof(int)*6 + sizeof(long long)*1)];
3007         char *heredoc_argv[4];
3008         struct variable *cur;
3009 # if ENABLE_HUSH_FUNCTIONS
3010         struct function *funcp;
3011 # endif
3012         char **argv, **pp;
3013         unsigned cnt;
3014         unsigned long long empty_trap_mask;
3015
3016         if (!g_argv0) { /* heredoc */
3017                 argv = heredoc_argv;
3018                 argv[0] = (char *) G.argv0_for_re_execing;
3019                 argv[1] = (char *) "-<";
3020                 argv[2] = (char *) s;
3021                 argv[3] = NULL;
3022                 pp = &argv[3]; /* used as pointer to empty environment */
3023                 goto do_exec;
3024         }
3025
3026         cnt = 0;
3027         pp = builtin_argv;
3028         if (pp) while (*pp++)
3029                 cnt++;
3030
3031         empty_trap_mask = 0;
3032         if (G.traps) {
3033                 int sig;
3034                 for (sig = 1; sig < NSIG; sig++) {
3035                         if (G.traps[sig] && !G.traps[sig][0])
3036                                 empty_trap_mask |= 1LL << sig;
3037                 }
3038         }
3039
3040         sprintf(param_buf, NOMMU_HACK_FMT
3041                         , (unsigned) G.root_pid
3042                         , (unsigned) G.root_ppid
3043                         , (unsigned) G.last_bg_pid
3044                         , (unsigned) G.last_exitcode
3045                         , cnt
3046                         , empty_trap_mask
3047                         IF_HUSH_LOOPS(, G.depth_of_loop)
3048                         );
3049 #undef NOMMU_HACK_FMT
3050         /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<etc...> <vars...> <funcs...>
3051          * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
3052          */
3053         cnt += 6;
3054         for (cur = G.top_var; cur; cur = cur->next) {
3055                 if (!cur->flg_export || cur->flg_read_only)
3056                         cnt += 2;
3057         }
3058 # if ENABLE_HUSH_FUNCTIONS
3059         for (funcp = G.top_func; funcp; funcp = funcp->next)
3060                 cnt += 3;
3061 # endif
3062         pp = g_argv;
3063         while (*pp++)
3064                 cnt++;
3065         *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
3066         *pp++ = (char *) G.argv0_for_re_execing;
3067         *pp++ = param_buf;
3068         for (cur = G.top_var; cur; cur = cur->next) {
3069                 if (cur->varstr == hush_version_str)
3070                         continue;
3071                 if (cur->flg_read_only) {
3072                         *pp++ = (char *) "-R";
3073                         *pp++ = cur->varstr;
3074                 } else if (!cur->flg_export) {
3075                         *pp++ = (char *) "-V";
3076                         *pp++ = cur->varstr;
3077                 }
3078         }
3079 # if ENABLE_HUSH_FUNCTIONS
3080         for (funcp = G.top_func; funcp; funcp = funcp->next) {
3081                 *pp++ = (char *) "-F";
3082                 *pp++ = funcp->name;
3083                 *pp++ = funcp->body_as_string;
3084         }
3085 # endif
3086         /* We can pass activated traps here. Say, -Tnn:trap_string
3087          *
3088          * However, POSIX says that subshells reset signals with traps
3089          * to SIG_DFL.
3090          * I tested bash-3.2 and it not only does that with true subshells
3091          * of the form ( list ), but with any forked children shells.
3092          * I set trap "echo W" WINCH; and then tried:
3093          *
3094          * { echo 1; sleep 20; echo 2; } &
3095          * while true; do echo 1; sleep 20; echo 2; break; done &
3096          * true | { echo 1; sleep 20; echo 2; } | cat
3097          *
3098          * In all these cases sending SIGWINCH to the child shell
3099          * did not run the trap. If I add trap "echo V" WINCH;
3100          * _inside_ group (just before echo 1), it works.
3101          *
3102          * I conclude it means we don't need to pass active traps here.
3103          * Even if we would use signal handlers instead of signal masking
3104          * in order to implement trap handling,
3105          * exec syscall below resets signals to SIG_DFL for us.
3106          */
3107         *pp++ = (char *) "-c";
3108         *pp++ = (char *) s;
3109         if (builtin_argv) {
3110                 while (*++builtin_argv)
3111                         *pp++ = *builtin_argv;
3112                 *pp++ = (char *) "";
3113         }
3114         *pp++ = g_argv0;
3115         while (*g_argv)
3116                 *pp++ = *g_argv++;
3117         /* *pp = NULL; - is already there */
3118         pp = environ;
3119
3120  do_exec:
3121         debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
3122         sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
3123         execve(bb_busybox_exec_path, argv, pp);
3124         /* Fallback. Useful for init=/bin/hush usage etc */
3125         if (argv[0][0] == '/')
3126                 execve(argv[0], argv, pp);
3127         xfunc_error_retval = 127;
3128         bb_error_msg_and_die("can't re-execute the shell");
3129 }
3130 #endif  /* !BB_MMU */
3131
3132
3133 static void setup_heredoc(struct redir_struct *redir)
3134 {
3135         struct fd_pair pair;
3136         pid_t pid;
3137         int len, written;
3138         /* the _body_ of heredoc (misleading field name) */
3139         const char *heredoc = redir->rd_filename;
3140         char *expanded;
3141 #if !BB_MMU
3142         char **to_free;
3143 #endif
3144
3145         expanded = NULL;
3146         if (!(redir->rd_dup & HEREDOC_QUOTED)) {
3147                 expanded = expand_pseudo_dquoted(heredoc);
3148                 if (expanded)
3149                         heredoc = expanded;
3150         }
3151         len = strlen(heredoc);
3152
3153         close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
3154         xpiped_pair(pair);
3155         xmove_fd(pair.rd, redir->rd_fd);
3156
3157         /* Try writing without forking. Newer kernels have
3158          * dynamically growing pipes. Must use non-blocking write! */
3159         ndelay_on(pair.wr);
3160         while (1) {
3161                 written = write(pair.wr, heredoc, len);
3162                 if (written <= 0)
3163                         break;
3164                 len -= written;
3165                 if (len == 0) {
3166                         close(pair.wr);
3167                         free(expanded);
3168                         return;
3169                 }
3170                 heredoc += written;
3171         }
3172         ndelay_off(pair.wr);
3173
3174         /* Okay, pipe buffer was not big enough */
3175         /* Note: we must not create a stray child (bastard? :)
3176          * for the unsuspecting parent process. Child creates a grandchild
3177          * and exits before parent execs the process which consumes heredoc
3178          * (that exec happens after we return from this function) */
3179 #if !BB_MMU
3180         to_free = NULL;
3181 #endif
3182         pid = vfork();
3183         if (pid < 0)
3184                 bb_perror_msg_and_die("vfork");
3185         if (pid == 0) {
3186                 /* child */
3187                 disable_restore_tty_pgrp_on_exit();
3188                 pid = BB_MMU ? fork() : vfork();
3189                 if (pid < 0)
3190                         bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
3191                 if (pid != 0)
3192                         _exit(0);
3193                 /* grandchild */
3194                 close(redir->rd_fd); /* read side of the pipe */
3195 #if BB_MMU
3196                 full_write(pair.wr, heredoc, len); /* may loop or block */
3197                 _exit(0);
3198 #else
3199                 /* Delegate blocking writes to another process */
3200                 xmove_fd(pair.wr, STDOUT_FILENO);
3201                 re_execute_shell(&to_free, heredoc, NULL, NULL, NULL);
3202 #endif
3203         }
3204         /* parent */
3205 #if ENABLE_HUSH_FAST
3206         G.count_SIGCHLD++;
3207 //bb_error_msg("[%d] fork in setup_heredoc: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
3208 #endif
3209         enable_restore_tty_pgrp_on_exit();
3210 #if !BB_MMU
3211         free(to_free);
3212 #endif
3213         close(pair.wr);
3214         free(expanded);
3215         wait(NULL); /* wait till child has died */
3216 }
3217
3218 /* squirrel != NULL means we squirrel away copies of stdin, stdout,
3219  * and stderr if they are redirected. */
3220 static int setup_redirects(struct command *prog, int squirrel[])
3221 {
3222         int openfd, mode;
3223         struct redir_struct *redir;
3224
3225         for (redir = prog->redirects; redir; redir = redir->next) {
3226                 if (redir->rd_type == REDIRECT_HEREDOC2) {
3227                         /* rd_fd<<HERE case */
3228                         if (squirrel && redir->rd_fd < 3
3229                          && squirrel[redir->rd_fd] < 0
3230                         ) {
3231                                 squirrel[redir->rd_fd] = dup(redir->rd_fd);
3232                         }
3233                         /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
3234                          * of the heredoc */
3235                         debug_printf_parse("set heredoc '%s'\n",
3236                                         redir->rd_filename);
3237                         setup_heredoc(redir);
3238                         continue;
3239                 }
3240
3241                 if (redir->rd_dup == REDIRFD_TO_FILE) {
3242                         /* rd_fd<*>file case (<*> is <,>,>>,<>) */
3243                         char *p;
3244                         if (redir->rd_filename == NULL) {
3245                                 /* Something went wrong in the parse.
3246                                  * Pretend it didn't happen */
3247                                 bb_error_msg("bug in redirect parse");
3248                                 continue;
3249                         }
3250                         mode = redir_table[redir->rd_type].mode;
3251                         p = expand_string_to_string(redir->rd_filename);
3252                         openfd = open_or_warn(p, mode);
3253                         free(p);
3254                         if (openfd < 0) {
3255                         /* this could get lost if stderr has been redirected, but
3256                          * bash and ash both lose it as well (though zsh doesn't!) */
3257 //what the above comment tries to say?
3258                                 return 1;
3259                         }
3260                 } else {
3261                         /* rd_fd<*>rd_dup or rd_fd<*>- cases */
3262                         openfd = redir->rd_dup;
3263                 }
3264
3265                 if (openfd != redir->rd_fd) {
3266                         if (squirrel && redir->rd_fd < 3
3267                          && squirrel[redir->rd_fd] < 0
3268                         ) {
3269                                 squirrel[redir->rd_fd] = dup(redir->rd_fd);
3270                         }
3271                         if (openfd == REDIRFD_CLOSE) {
3272                                 /* "n>-" means "close me" */
3273                                 close(redir->rd_fd);
3274                         } else {
3275                                 xdup2(openfd, redir->rd_fd);
3276                                 if (redir->rd_dup == REDIRFD_TO_FILE)
3277                                         close(openfd);
3278                         }
3279                 }
3280         }
3281         return 0;
3282 }
3283
3284 static void restore_redirects(int squirrel[])
3285 {
3286         int i, fd;
3287         for (i = 0; i < 3; i++) {
3288                 fd = squirrel[i];
3289                 if (fd != -1) {
3290                         /* We simply die on error */
3291                         xmove_fd(fd, i);
3292                 }
3293         }
3294 }
3295
3296
3297 static void free_pipe_list(struct pipe *head);
3298
3299 /* Return code is the exit status of the pipe */
3300 static void free_pipe(struct pipe *pi)
3301 {
3302         char **p;
3303         struct command *command;
3304         struct redir_struct *r, *rnext;
3305         int a, i;
3306
3307         if (pi->stopped_cmds > 0) /* why? */
3308                 return;
3309         debug_printf_clean("run pipe: (pid %d)\n", getpid());
3310         for (i = 0; i < pi->num_cmds; i++) {
3311                 command = &pi->cmds[i];
3312                 debug_printf_clean("  command %d:\n", i);
3313                 if (command->argv) {
3314                         for (a = 0, p = command->argv; *p; a++, p++) {
3315                                 debug_printf_clean("   argv[%d] = %s\n", a, *p);
3316                         }
3317                         free_strings(command->argv);
3318                         command->argv = NULL;
3319                 }
3320                 /* not "else if": on syntax error, we may have both! */
3321                 if (command->group) {
3322                         debug_printf_clean("   begin group (cmd_type:%d)\n",
3323                                         command->cmd_type);
3324                         free_pipe_list(command->group);
3325                         debug_printf_clean("   end group\n");
3326                         command->group = NULL;
3327                 }
3328                 /* else is crucial here.
3329                  * If group != NULL, child_func is meaningless */
3330 #if ENABLE_HUSH_FUNCTIONS
3331                 else if (command->child_func) {
3332                         debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
3333                         command->child_func->parent_cmd = NULL;
3334                 }
3335 #endif
3336 #if !BB_MMU
3337                 free(command->group_as_string);
3338                 command->group_as_string = NULL;
3339 #endif
3340                 for (r = command->redirects; r; r = rnext) {
3341                         debug_printf_clean("   redirect %d%s",
3342                                         r->rd_fd, redir_table[r->rd_type].descrip);
3343                         /* guard against the case >$FOO, where foo is unset or blank */
3344                         if (r->rd_filename) {
3345                                 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
3346                                 free(r->rd_filename);
3347                                 r->rd_filename = NULL;
3348                         }
3349                         debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
3350                         rnext = r->next;
3351                         free(r);
3352                 }
3353                 command->redirects = NULL;
3354         }
3355         free(pi->cmds);   /* children are an array, they get freed all at once */
3356         pi->cmds = NULL;
3357 #if ENABLE_HUSH_JOB
3358         free(pi->cmdtext);
3359         pi->cmdtext = NULL;
3360 #endif
3361 }
3362
3363 static void free_pipe_list(struct pipe *head)
3364 {
3365         struct pipe *pi, *next;
3366
3367         for (pi = head; pi; pi = next) {
3368 #if HAS_KEYWORDS
3369                 debug_printf_clean(" pipe reserved word %d\n", pi->res_word);
3370 #endif
3371                 free_pipe(pi);
3372                 debug_printf_clean("pipe followup code %d\n", pi->followup);
3373                 next = pi->next;
3374                 /*pi->next = NULL;*/
3375                 free(pi);
3376         }
3377 }
3378
3379
3380 static int run_list(struct pipe *pi);
3381 #if BB_MMU
3382 #define parse_stream(pstring, input, end_trigger) \
3383         parse_stream(input, end_trigger)
3384 #endif
3385 static struct pipe *parse_stream(char **pstring,
3386                 struct in_str *input,
3387                 int end_trigger);
3388 static void parse_and_run_string(const char *s);
3389
3390
3391 static char *find_in_path(const char *arg)
3392 {
3393         char *ret = NULL;
3394         const char *PATH = get_local_var_value("PATH");
3395
3396         if (!PATH)
3397                 return NULL;
3398
3399         while (1) {
3400                 const char *end = strchrnul(PATH, ':');
3401                 int sz = end - PATH; /* must be int! */
3402
3403                 free(ret);
3404                 if (sz != 0) {
3405                         ret = xasprintf("%.*s/%s", sz, PATH, arg);
3406                 } else {
3407                         /* We have xxx::yyyy in $PATH,
3408                          * it means "use current dir" */
3409                         ret = xstrdup(arg);
3410                 }
3411                 if (access(ret, F_OK) == 0)
3412                         break;
3413
3414                 if (*end == '\0') {
3415                         free(ret);
3416                         return NULL;
3417                 }
3418                 PATH = end + 1;
3419         }
3420
3421         return ret;
3422 }
3423
3424 static const struct built_in_command* find_builtin_helper(const char *name,
3425                 const struct built_in_command *x,
3426                 const struct built_in_command *end)
3427 {
3428         while (x != end) {
3429                 if (strcmp(name, x->b_cmd) != 0) {
3430                         x++;
3431                         continue;
3432                 }
3433                 debug_printf_exec("found builtin '%s'\n", name);
3434                 return x;
3435         }
3436         return NULL;
3437 }
3438 static const struct built_in_command* find_builtin1(const char *name)
3439 {
3440         return find_builtin_helper(name, bltins1, &bltins1[ARRAY_SIZE(bltins1)]);
3441 }
3442 static const struct built_in_command* find_builtin(const char *name)
3443 {
3444         const struct built_in_command *x = find_builtin1(name);
3445         if (x)
3446                 return x;
3447         return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]);
3448 }
3449
3450 #if ENABLE_HUSH_FUNCTIONS
3451 static struct function **find_function_slot(const char *name)
3452 {
3453         struct function **funcpp = &G.top_func;
3454         while (*funcpp) {
3455                 if (strcmp(name, (*funcpp)->name) == 0) {
3456                         break;
3457                 }
3458                 funcpp = &(*funcpp)->next;
3459         }
3460         return funcpp;
3461 }
3462
3463 static const struct function *find_function(const char *name)
3464 {
3465         const struct function *funcp = *find_function_slot(name);
3466         if (funcp)
3467                 debug_printf_exec("found function '%s'\n", name);
3468         return funcp;
3469 }
3470
3471 /* Note: takes ownership on name ptr */
3472 static struct function *new_function(char *name)
3473 {
3474         struct function **funcpp = find_function_slot(name);
3475         struct function *funcp = *funcpp;
3476
3477         if (funcp != NULL) {
3478                 struct command *cmd = funcp->parent_cmd;
3479                 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
3480                 if (!cmd) {
3481                         debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
3482                         free(funcp->name);
3483                         /* Note: if !funcp->body, do not free body_as_string!
3484                          * This is a special case of "-F name body" function:
3485                          * body_as_string was not malloced! */
3486                         if (funcp->body) {
3487                                 free_pipe_list(funcp->body);
3488 # if !BB_MMU
3489                                 free(funcp->body_as_string);
3490 # endif
3491                         }
3492                 } else {
3493                         debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
3494                         cmd->argv[0] = funcp->name;
3495                         cmd->group = funcp->body;
3496 # if !BB_MMU
3497                         cmd->group_as_string = funcp->body_as_string;
3498 # endif
3499                 }
3500         } else {
3501                 debug_printf_exec("remembering new function '%s'\n", name);
3502                 funcp = *funcpp = xzalloc(sizeof(*funcp));
3503                 /*funcp->next = NULL;*/
3504         }
3505
3506         funcp->name = name;
3507         return funcp;
3508 }
3509
3510 static void unset_func(const char *name)
3511 {
3512         struct function **funcpp = find_function_slot(name);
3513         struct function *funcp = *funcpp;
3514
3515         if (funcp != NULL) {
3516                 debug_printf_exec("freeing function '%s'\n", funcp->name);
3517                 *funcpp = funcp->next;
3518                 /* funcp is unlinked now, deleting it.
3519                  * Note: if !funcp->body, the function was created by
3520                  * "-F name body", do not free ->body_as_string
3521                  * and ->name as they were not malloced. */
3522                 if (funcp->body) {
3523                         free_pipe_list(funcp->body);
3524                         free(funcp->name);
3525 # if !BB_MMU
3526                         free(funcp->body_as_string);
3527 # endif
3528                 }
3529                 free(funcp);
3530         }
3531 }
3532
3533 # if BB_MMU
3534 #define exec_function(to_free, funcp, argv) \
3535         exec_function(funcp, argv)
3536 # endif
3537 static void exec_function(char ***to_free,
3538                 const struct function *funcp,
3539                 char **argv) NORETURN;
3540 static void exec_function(char ***to_free,
3541                 const struct function *funcp,
3542                 char **argv)
3543 {
3544 # if BB_MMU
3545         int n = 1;
3546
3547         argv[0] = G.global_argv[0];
3548         G.global_argv = argv;
3549         while (*++argv)
3550                 n++;
3551         G.global_argc = n;
3552         /* On MMU, funcp->body is always non-NULL */
3553         n = run_list(funcp->body);
3554         fflush_all();
3555         _exit(n);
3556 # else
3557         re_execute_shell(to_free,
3558                         funcp->body_as_string,
3559                         G.global_argv[0],
3560                         argv + 1,
3561                         NULL);
3562 # endif
3563 }
3564
3565 static int run_function(const struct function *funcp, char **argv)
3566 {
3567         int rc;
3568         save_arg_t sv;
3569         smallint sv_flg;
3570
3571         save_and_replace_G_args(&sv, argv);
3572
3573         /* "we are in function, ok to use return" */
3574         sv_flg = G.flag_return_in_progress;
3575         G.flag_return_in_progress = -1;
3576 # if ENABLE_HUSH_LOCAL
3577         G.func_nest_level++;
3578 # endif
3579
3580         /* On MMU, funcp->body is always non-NULL */
3581 # if !BB_MMU
3582         if (!funcp->body) {
3583                 /* Function defined by -F */
3584                 parse_and_run_string(funcp->body_as_string);
3585                 rc = G.last_exitcode;
3586         } else
3587 # endif
3588         {
3589                 rc = run_list(funcp->body);
3590         }
3591
3592 # if ENABLE_HUSH_LOCAL
3593         {
3594                 struct variable *var;
3595                 struct variable **var_pp;
3596
3597                 var_pp = &G.top_var;
3598                 while ((var = *var_pp) != NULL) {
3599                         if (var->func_nest_level < G.func_nest_level) {
3600                                 var_pp = &var->next;
3601                                 continue;
3602                         }
3603                         /* Unexport */
3604                         if (var->flg_export)
3605                                 bb_unsetenv(var->varstr);
3606                         /* Remove from global list */
3607                         *var_pp = var->next;
3608                         /* Free */
3609                         if (!var->max_len)
3610                                 free(var->varstr);
3611                         free(var);
3612                 }
3613                 G.func_nest_level--;
3614         }
3615 # endif
3616         G.flag_return_in_progress = sv_flg;
3617
3618         restore_G_args(&sv, argv);
3619
3620         return rc;
3621 }
3622 #endif /* ENABLE_HUSH_FUNCTIONS */
3623
3624
3625 #if BB_MMU
3626 #define exec_builtin(to_free, x, argv) \
3627         exec_builtin(x, argv)
3628 #else
3629 #define exec_builtin(to_free, x, argv) \
3630         exec_builtin(to_free, argv)
3631 #endif
3632 static void exec_builtin(char ***to_free,
3633                 const struct built_in_command *x,
3634                 char **argv) NORETURN;
3635 static void exec_builtin(char ***to_free,
3636                 const struct built_in_command *x,
3637                 char **argv)
3638 {
3639 #if BB_MMU
3640         int rcode = x->b_function(argv);
3641         fflush_all();
3642         _exit(rcode);
3643 #else
3644         /* On NOMMU, we must never block!
3645          * Example: { sleep 99 | read line; } & echo Ok
3646          */
3647         re_execute_shell(to_free,
3648                         argv[0],
3649                         G.global_argv[0],
3650                         G.global_argv + 1,
3651                         argv);
3652 #endif
3653 }
3654
3655
3656 static void execvp_or_die(char **argv) NORETURN;
3657 static void execvp_or_die(char **argv)
3658 {
3659         debug_printf_exec("execing '%s'\n", argv[0]);
3660         sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
3661         execvp(argv[0], argv);
3662         bb_perror_msg("can't execute '%s'", argv[0]);
3663         _exit(127); /* bash compat */
3664 }
3665
3666 #if BB_MMU
3667 #define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
3668         pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
3669 #define pseudo_exec(nommu_save, command, argv_expanded) \
3670         pseudo_exec(command, argv_expanded)
3671 #endif
3672
3673 /* Called after [v]fork() in run_pipe, or from builtin_exec.
3674  * Never returns.
3675  * Don't exit() here.  If you don't exec, use _exit instead.
3676  * The at_exit handlers apparently confuse the calling process,
3677  * in particular stdin handling.  Not sure why? -- because of vfork! (vda) */
3678 static void pseudo_exec_argv(nommu_save_t *nommu_save,
3679                 char **argv, int assignment_cnt,
3680                 char **argv_expanded) NORETURN;
3681 static NOINLINE void pseudo_exec_argv(nommu_save_t *nommu_save,
3682                 char **argv, int assignment_cnt,
3683                 char **argv_expanded)
3684 {
3685         char **new_env;
3686
3687         /* Case when we are here: ... | var=val | ... */
3688         if (!argv[assignment_cnt])
3689                 _exit(EXIT_SUCCESS);
3690
3691         new_env = expand_assignments(argv, assignment_cnt);
3692 #if BB_MMU
3693         set_vars_and_save_old(new_env);
3694         free(new_env); /* optional */
3695         /* we can also destroy set_vars_and_save_old's return value,
3696          * to save memory */
3697 #else
3698         nommu_save->new_env = new_env;
3699         nommu_save->old_vars = set_vars_and_save_old(new_env);
3700 #endif
3701         if (argv_expanded) {
3702                 argv = argv_expanded;
3703         } else {
3704                 argv = expand_strvec_to_strvec(argv + assignment_cnt);
3705 #if !BB_MMU
3706                 nommu_save->argv = argv;
3707 #endif
3708         }
3709
3710 #if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
3711         if (strchr(argv[0], '/') != NULL)
3712                 goto skip;
3713 #endif
3714
3715         /* Check if the command matches any of the builtins.
3716          * Depending on context, this might be redundant.  But it's
3717          * easier to waste a few CPU cycles than it is to figure out
3718          * if this is one of those cases.
3719          */
3720         {
3721                 /* On NOMMU, it is more expensive to re-execute shell
3722                  * just in order to run echo or test builtin.
3723                  * It's better to skip it here and run corresponding
3724                  * non-builtin later. */
3725                 const struct built_in_command *x;
3726                 x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]);
3727                 if (x) {
3728                         exec_builtin(&nommu_save->argv_from_re_execing, x, argv);
3729                 }
3730         }
3731 #if ENABLE_HUSH_FUNCTIONS
3732         /* Check if the command matches any functions */
3733         {
3734                 const struct function *funcp = find_function(argv[0]);
3735                 if (funcp) {
3736                         exec_function(&nommu_save->argv_from_re_execing, funcp, argv);
3737                 }
3738         }
3739 #endif
3740
3741 #if ENABLE_FEATURE_SH_STANDALONE
3742         /* Check if the command matches any busybox applets */
3743         {
3744                 int a = find_applet_by_name(argv[0]);
3745                 if (a >= 0) {
3746 # if BB_MMU /* see above why on NOMMU it is not allowed */
3747                         if (APPLET_IS_NOEXEC(a)) {
3748                                 debug_printf_exec("running applet '%s'\n", argv[0]);
3749                                 run_applet_no_and_exit(a, argv);
3750                         }
3751 # endif
3752                         /* Re-exec ourselves */
3753                         debug_printf_exec("re-execing applet '%s'\n", argv[0]);
3754                         sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
3755                         execv(bb_busybox_exec_path, argv);
3756                         /* If they called chroot or otherwise made the binary no longer
3757                          * executable, fall through */
3758                 }
3759         }
3760 #endif
3761
3762 #if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
3763  skip:
3764 #endif
3765         execvp_or_die(argv);
3766 }
3767
3768 /* Called after [v]fork() in run_pipe
3769  */
3770 static void pseudo_exec(nommu_save_t *nommu_save,
3771                 struct command *command,
3772                 char **argv_expanded) NORETURN;
3773 static void pseudo_exec(nommu_save_t *nommu_save,
3774                 struct command *command,
3775                 char **argv_expanded)
3776 {
3777         if (command->argv) {
3778                 pseudo_exec_argv(nommu_save, command->argv,
3779                                 command->assignment_cnt, argv_expanded);
3780         }
3781
3782         if (command->group) {
3783                 /* Cases when we are here:
3784                  * ( list )
3785                  * { list } &
3786                  * ... | ( list ) | ...
3787                  * ... | { list } | ...
3788                  */
3789 #if BB_MMU
3790                 int rcode;
3791                 debug_printf_exec("pseudo_exec: run_list\n");
3792                 reset_traps_to_defaults();
3793                 rcode = run_list(command->group);
3794                 /* OK to leak memory by not calling free_pipe_list,
3795                  * since this process is about to exit */
3796                 _exit(rcode);
3797 #else
3798                 re_execute_shell(&nommu_save->argv_from_re_execing,
3799                                 command->group_as_string,
3800                                 G.global_argv[0],
3801                                 G.global_argv + 1,
3802                                 NULL);
3803 #endif
3804         }
3805
3806         /* Case when we are here: ... | >file */
3807         debug_printf_exec("pseudo_exec'ed null command\n");
3808         _exit(EXIT_SUCCESS);
3809 }
3810
3811 #if ENABLE_HUSH_JOB
3812 static const char *get_cmdtext(struct pipe *pi)
3813 {
3814         char **argv;
3815         char *p;
3816         int len;
3817
3818         /* This is subtle. ->cmdtext is created only on first backgrounding.
3819          * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
3820          * On subsequent bg argv is trashed, but we won't use it */
3821         if (pi->cmdtext)
3822                 return pi->cmdtext;
3823         argv = pi->cmds[0].argv;
3824         if (!argv || !argv[0]) {
3825                 pi->cmdtext = xzalloc(1);
3826                 return pi->cmdtext;
3827         }
3828
3829         len = 0;
3830         do {
3831                 len += strlen(*argv) + 1;
3832         } while (*++argv);
3833         p = xmalloc(len);
3834         pi->cmdtext = p;
3835         argv = pi->cmds[0].argv;
3836         do {
3837                 len = strlen(*argv);
3838                 memcpy(p, *argv, len);
3839                 p += len;
3840                 *p++ = ' ';
3841         } while (*++argv);
3842         p[-1] = '\0';
3843         return pi->cmdtext;
3844 }
3845
3846 static void insert_bg_job(struct pipe *pi)
3847 {
3848         struct pipe *job, **jobp;
3849         int i;
3850
3851         /* Linear search for the ID of the job to use */
3852         pi->jobid = 1;
3853         for (job = G.job_list; job; job = job->next)
3854                 if (job->jobid >= pi->jobid)
3855                         pi->jobid = job->jobid + 1;
3856
3857         /* Add job to the list of running jobs */
3858         jobp = &G.job_list;
3859         while ((job = *jobp) != NULL)
3860                 jobp = &job->next;
3861         job = *jobp = xmalloc(sizeof(*job));
3862
3863         *job = *pi; /* physical copy */
3864         job->next = NULL;
3865         job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
3866         /* Cannot copy entire pi->cmds[] vector! This causes double frees */
3867         for (i = 0; i < pi->num_cmds; i++) {
3868                 job->cmds[i].pid = pi->cmds[i].pid;
3869                 /* all other fields are not used and stay zero */
3870         }
3871         job->cmdtext = xstrdup(get_cmdtext(pi));
3872
3873         if (G_interactive_fd)
3874                 printf("[%d] %d %s\n", job->jobid, job->cmds[0].pid, job->cmdtext);
3875         /* Last command's pid goes to $! */
3876         G.last_bg_pid = job->cmds[job->num_cmds - 1].pid;
3877         G.last_jobid = job->jobid;
3878 }
3879
3880 static void remove_bg_job(struct pipe *pi)
3881 {
3882         struct pipe *prev_pipe;
3883
3884         if (pi == G.job_list) {
3885                 G.job_list = pi->next;
3886         } else {
3887                 prev_pipe = G.job_list;
3888                 while (prev_pipe->next != pi)
3889                         prev_pipe = prev_pipe->next;
3890                 prev_pipe->next = pi->next;
3891         }
3892         if (G.job_list)
3893                 G.last_jobid = G.job_list->jobid;
3894         else
3895                 G.last_jobid = 0;
3896 }
3897
3898 /* Remove a backgrounded job */
3899 static void delete_finished_bg_job(struct pipe *pi)
3900 {
3901         remove_bg_job(pi);
3902         pi->stopped_cmds = 0;
3903         free_pipe(pi);
3904         free(pi);
3905 }
3906 #endif /* JOB */
3907
3908 /* Check to see if any processes have exited -- if they
3909  * have, figure out why and see if a job has completed */
3910 static int checkjobs(struct pipe* fg_pipe)
3911 {
3912         int attributes;
3913         int status;
3914 #if ENABLE_HUSH_JOB
3915         struct pipe *pi;
3916 #endif
3917         pid_t childpid;
3918         int rcode = 0;
3919
3920         debug_printf_jobs("checkjobs %p\n", fg_pipe);
3921
3922         attributes = WUNTRACED;
3923         if (fg_pipe == NULL)
3924                 attributes |= WNOHANG;
3925
3926         errno = 0;
3927 #if ENABLE_HUSH_FAST
3928         if (G.handled_SIGCHLD == G.count_SIGCHLD) {
3929 //bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p",
3930 //getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe);
3931                 /* There was neither fork nor SIGCHLD since last waitpid */
3932                 /* Avoid doing waitpid syscall if possible */
3933                 if (!G.we_have_children) {
3934                         errno = ECHILD;
3935                         return -1;
3936                 }
3937                 if (fg_pipe == NULL) { /* is WNOHANG set? */
3938                         /* We have children, but they did not exit
3939                          * or stop yet (we saw no SIGCHLD) */
3940                         return 0;
3941                 }
3942                 /* else: !WNOHANG, waitpid will block, can't short-circuit */
3943         }
3944 #endif
3945
3946 /* Do we do this right?
3947  * bash-3.00# sleep 20 | false
3948  * <ctrl-Z pressed>
3949  * [3]+  Stopped          sleep 20 | false
3950  * bash-3.00# echo $?
3951  * 1   <========== bg pipe is not fully done, but exitcode is already known!
3952  * [hush 1.14.0: yes we do it right]
3953  */
3954  wait_more:
3955         while (1) {
3956                 int i;
3957                 int dead;
3958
3959 #if ENABLE_HUSH_FAST
3960                 i = G.count_SIGCHLD;
3961 #endif
3962                 childpid = waitpid(-1, &status, attributes);
3963                 if (childpid <= 0) {
3964                         if (childpid && errno != ECHILD)
3965                                 bb_perror_msg("waitpid");
3966 #if ENABLE_HUSH_FAST
3967                         else { /* Until next SIGCHLD, waitpid's are useless */
3968                                 G.we_have_children = (childpid == 0);
3969                                 G.handled_SIGCHLD = i;
3970 //bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
3971                         }
3972 #endif
3973                         break;
3974                 }
3975                 dead = WIFEXITED(status) || WIFSIGNALED(status);
3976
3977 #if DEBUG_JOBS
3978                 if (WIFSTOPPED(status))
3979                         debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
3980                                         childpid, WSTOPSIG(status), WEXITSTATUS(status));
3981                 if (WIFSIGNALED(status))
3982                         debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
3983                                         childpid, WTERMSIG(status), WEXITSTATUS(status));
3984                 if (WIFEXITED(status))
3985                         debug_printf_jobs("pid %d exited, exitcode %d\n",
3986                                         childpid, WEXITSTATUS(status));
3987 #endif
3988                 /* Were we asked to wait for fg pipe? */
3989                 if (fg_pipe) {
3990                         for (i = 0; i < fg_pipe->num_cmds; i++) {
3991                                 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
3992                                 if (fg_pipe->cmds[i].pid != childpid)
3993                                         continue;
3994                                 if (dead) {
3995                                         fg_pipe->cmds[i].pid = 0;
3996                                         fg_pipe->alive_cmds--;
3997                                         if (i == fg_pipe->num_cmds - 1) {
3998                                                 /* last process gives overall exitstatus */
3999                                                 rcode = WEXITSTATUS(status);
4000                                                 /* bash prints killer signal's name for *last*
4001                                                  * process in pipe (prints just newline for SIGINT).
4002                                                  * Mimic this. Example: "sleep 5" + (^\ or kill -QUIT)
4003                                                  */
4004                                                 if (WIFSIGNALED(status)) {
4005                                                         int sig = WTERMSIG(status);
4006                                                         printf("%s\n", sig == SIGINT ? "" : get_signame(sig));
4007                                                         /* TODO: MIPS has 128 sigs (1..128), what if sig==128 here?
4008                                                          * Maybe we need to use sig | 128? */
4009                                                         rcode = sig + 128;
4010                                                 }
4011                                                 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
4012                                         }
4013                                 } else {
4014                                         fg_pipe->cmds[i].is_stopped = 1;
4015                                         fg_pipe->stopped_cmds++;
4016                                 }
4017                                 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
4018                                                 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
4019                                 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
4020                                         /* All processes in fg pipe have exited or stopped */
4021 /* Note: *non-interactive* bash does not continue if all processes in fg pipe
4022  * are stopped. Testcase: "cat | cat" in a script (not on command line!)
4023  * and "killall -STOP cat" */
4024                                         if (G_interactive_fd) {
4025 #if ENABLE_HUSH_JOB
4026                                                 if (fg_pipe->alive_cmds)
4027                                                         insert_bg_job(fg_pipe);
4028 #endif
4029                                                 return rcode;
4030                                         }
4031                                         if (!fg_pipe->alive_cmds)
4032                                                 return rcode;
4033                                 }
4034                                 /* There are still running processes in the fg pipe */
4035                                 goto wait_more; /* do waitpid again */
4036                         }
4037                         /* it wasnt fg_pipe, look for process in bg pipes */
4038                 }
4039
4040 #if ENABLE_HUSH_JOB
4041                 /* We asked to wait for bg or orphaned children */
4042                 /* No need to remember exitcode in this case */
4043                 for (pi = G.job_list; pi; pi = pi->next) {
4044                         for (i = 0; i < pi->num_cmds; i++) {
4045                                 if (pi->cmds[i].pid == childpid)
4046                                         goto found_pi_and_prognum;
4047                         }
4048                 }
4049                 /* Happens when shell is used as init process (init=/bin/sh) */
4050                 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
4051                 continue; /* do waitpid again */
4052
4053  found_pi_and_prognum:
4054                 if (dead) {
4055                         /* child exited */
4056                         pi->cmds[i].pid = 0;
4057                         pi->alive_cmds--;
4058                         if (!pi->alive_cmds) {
4059                                 if (G_interactive_fd)
4060                                         printf(JOB_STATUS_FORMAT, pi->jobid,
4061                                                         "Done", pi->cmdtext);
4062                                 delete_finished_bg_job(pi);
4063                         }
4064                 } else {
4065                         /* child stopped */
4066                         pi->cmds[i].is_stopped = 1;
4067                         pi->stopped_cmds++;
4068                 }
4069 #endif
4070         } /* while (waitpid succeeds)... */
4071
4072         return rcode;
4073 }
4074
4075 #if ENABLE_HUSH_JOB
4076 static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
4077 {
4078         pid_t p;
4079         int rcode = checkjobs(fg_pipe);
4080         if (G_saved_tty_pgrp) {
4081                 /* Job finished, move the shell to the foreground */
4082                 p = getpgrp(); /* our process group id */
4083                 debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p);
4084                 tcsetpgrp(G_interactive_fd, p);
4085         }
4086         return rcode;
4087 }
4088 #endif
4089
4090 /* Start all the jobs, but don't wait for anything to finish.
4091  * See checkjobs().
4092  *
4093  * Return code is normally -1, when the caller has to wait for children
4094  * to finish to determine the exit status of the pipe.  If the pipe
4095  * is a simple builtin command, however, the action is done by the
4096  * time run_pipe returns, and the exit code is provided as the
4097  * return value.
4098  *
4099  * Returns -1 only if started some children. IOW: we have to
4100  * mask out retvals of builtins etc with 0xff!
4101  *
4102  * The only case when we do not need to [v]fork is when the pipe
4103  * is single, non-backgrounded, non-subshell command. Examples:
4104  * cmd ; ...   { list } ; ...
4105  * cmd && ...  { list } && ...
4106  * cmd || ...  { list } || ...
4107  * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
4108  * or (if SH_STANDALONE) an applet, and we can run the { list }
4109  * with run_list. If it isn't one of these, we fork and exec cmd.
4110  *
4111  * Cases when we must fork:
4112  * non-single:   cmd | cmd
4113  * backgrounded: cmd &     { list } &
4114  * subshell:     ( list ) [&]
4115  */
4116 static NOINLINE int run_pipe(struct pipe *pi)
4117 {
4118         static const char *const null_ptr = NULL;
4119         int i;
4120         int nextin;
4121         struct command *command;
4122         char **argv_expanded;
4123         char **argv;
4124         char *p;
4125         /* it is not always needed, but we aim to smaller code */
4126         int squirrel[] = { -1, -1, -1 };
4127         int rcode;
4128
4129         debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
4130         debug_enter();
4131
4132         IF_HUSH_JOB(pi->pgrp = -1;)
4133         pi->stopped_cmds = 0;
4134         command = &(pi->cmds[0]);
4135         argv_expanded = NULL;
4136
4137         if (pi->num_cmds != 1
4138          || pi->followup == PIPE_BG
4139          || command->cmd_type == CMD_SUBSHELL
4140         ) {
4141                 goto must_fork;
4142         }
4143
4144         pi->alive_cmds = 1;
4145
4146         debug_printf_exec(": group:%p argv:'%s'\n",
4147                 command->group, command->argv ? command->argv[0] : "NONE");
4148
4149         if (command->group) {
4150 #if ENABLE_HUSH_FUNCTIONS
4151                 if (command->cmd_type == CMD_FUNCDEF) {
4152                         /* "executing" func () { list } */
4153                         struct function *funcp;
4154
4155                         funcp = new_function(command->argv[0]);
4156                         /* funcp->name is already set to argv[0] */
4157                         funcp->body = command->group;
4158 # if !BB_MMU
4159                         funcp->body_as_string = command->group_as_string;
4160                         command->group_as_string = NULL;
4161 # endif
4162                         command->group = NULL;
4163                         command->argv[0] = NULL;
4164                         debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
4165                         funcp->parent_cmd = command;
4166                         command->child_func = funcp;
4167
4168                         debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
4169                         debug_leave();
4170                         return EXIT_SUCCESS;
4171                 }
4172 #endif
4173                 /* { list } */
4174                 debug_printf("non-subshell group\n");
4175                 rcode = 1; /* exitcode if redir failed */
4176                 if (setup_redirects(command, squirrel) == 0) {
4177                         debug_printf_exec(": run_list\n");
4178                         rcode = run_list(command->group) & 0xff;
4179                 }
4180                 restore_redirects(squirrel);
4181                 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
4182                 debug_leave();
4183                 debug_printf_exec("run_pipe: return %d\n", rcode);
4184                 return rcode;
4185         }
4186
4187         argv = command->argv ? command->argv : (char **) &null_ptr;
4188         {
4189                 const struct built_in_command *x;
4190 #if ENABLE_HUSH_FUNCTIONS
4191                 const struct function *funcp;
4192 #else
4193                 enum { funcp = 0 };
4194 #endif
4195                 char **new_env = NULL;
4196                 struct variable *old_vars = NULL;
4197
4198                 if (argv[command->assignment_cnt] == NULL) {
4199                         /* Assignments, but no command */
4200                         /* Ensure redirects take effect (that is, create files).
4201                          * Try "a=t >file": */
4202                         rcode = setup_redirects(command, squirrel);
4203                         restore_redirects(squirrel);
4204                         /* Set shell variables */
4205                         while (*argv) {
4206                                 p = expand_string_to_string(*argv);
4207                                 debug_printf_exec("set shell var:'%s'->'%s'\n",
4208                                                 *argv, p);
4209                                 set_local_var(p, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
4210                                 argv++;
4211                         }
4212                         /* Redirect error sets $? to 1. Othervise,
4213                          * if evaluating assignment value set $?, retain it.
4214                          * Try "false; q=`exit 2`; echo $?" - should print 2: */
4215                         if (rcode == 0)
4216                                 rcode = G.last_exitcode;
4217                         /* Do we need to flag set_local_var() errors?
4218                          * "assignment to readonly var" and "putenv error"
4219                          */
4220                         IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
4221                         debug_leave();
4222                         debug_printf_exec("run_pipe: return %d\n", rcode);
4223                         return rcode;
4224                 }
4225
4226                 /* Expand the rest into (possibly) many strings each */
4227                 if (0) {}
4228 #if ENABLE_HUSH_BASH_COMPAT
4229                 else if (command->cmd_type == CMD_SINGLEWORD_NOGLOB) {
4230                         argv_expanded = expand_strvec_to_strvec_singleword_noglob(argv + command->assignment_cnt);
4231                 }
4232 #endif
4233 #ifdef CMD_SINGLEWORD_NOGLOB_COND
4234                 else if (command->cmd_type == CMD_SINGLEWORD_NOGLOB_COND) {
4235                         argv_expanded = expand_strvec_to_strvec_singleword_noglob_cond(argv + command->assignment_cnt);
4236
4237                 }
4238 #endif
4239                 else {
4240                         argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
4241                 }
4242
4243                 /* if someone gives us an empty string: `cmd with empty output` */
4244                 if (!argv_expanded[0]) {
4245                         free(argv_expanded);
4246                         debug_leave();
4247                         return G.last_exitcode;
4248                 }
4249
4250                 x = find_builtin(argv_expanded[0]);
4251 #if ENABLE_HUSH_FUNCTIONS
4252                 funcp = NULL;
4253                 if (!x)
4254                         funcp = find_function(argv_expanded[0]);
4255 #endif
4256                 if (x || funcp) {
4257                         if (!funcp) {
4258                                 if (x->b_function == builtin_exec && argv_expanded[1] == NULL) {
4259                                         debug_printf("exec with redirects only\n");
4260                                         rcode = setup_redirects(command, NULL);
4261                                         goto clean_up_and_ret1;
4262                                 }
4263                         }
4264                         /* setup_redirects acts on file descriptors, not FILEs.
4265                          * This is perfect for work that comes after exec().
4266                          * Is it really safe for inline use?  Experimentally,
4267                          * things seem to work. */
4268                         rcode = setup_redirects(command, squirrel);
4269                         if (rcode == 0) {
4270                                 new_env = expand_assignments(argv, command->assignment_cnt);
4271                                 old_vars = set_vars_and_save_old(new_env);
4272                                 if (!funcp) {
4273                                         debug_printf_exec(": builtin '%s' '%s'...\n",
4274                                                 x->b_cmd, argv_expanded[1]);
4275                                         rcode = x->b_function(argv_expanded) & 0xff;
4276                                         fflush_all();
4277                                 }
4278 #if ENABLE_HUSH_FUNCTIONS
4279                                 else {
4280 # if ENABLE_HUSH_LOCAL
4281                                         struct variable **sv;
4282                                         sv = G.shadowed_vars_pp;
4283                                         G.shadowed_vars_pp = &old_vars;
4284 # endif
4285                                         debug_printf_exec(": function '%s' '%s'...\n",
4286                                                 funcp->name, argv_expanded[1]);
4287                                         rcode = run_function(funcp, argv_expanded) & 0xff;
4288 # if ENABLE_HUSH_LOCAL
4289                                         G.shadowed_vars_pp = sv;
4290 # endif
4291                                 }
4292 #endif
4293                         }
4294 #if ENABLE_FEATURE_SH_STANDALONE
4295  clean_up_and_ret:
4296 #endif
4297                         restore_redirects(squirrel);
4298                         unset_vars(new_env);
4299                         add_vars(old_vars);
4300  clean_up_and_ret1:
4301                         free(argv_expanded);
4302                         IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
4303                         debug_leave();
4304                         debug_printf_exec("run_pipe return %d\n", rcode);
4305                         return rcode;
4306                 }
4307
4308 #if ENABLE_FEATURE_SH_STANDALONE
4309                 i = find_applet_by_name(argv_expanded[0]);
4310                 if (i >= 0 && APPLET_IS_NOFORK(i)) {
4311                         rcode = setup_redirects(command, squirrel);
4312                         if (rcode == 0) {
4313                                 new_env = expand_assignments(argv, command->assignment_cnt);
4314                                 old_vars = set_vars_and_save_old(new_env);
4315                                 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
4316                                         argv_expanded[0], argv_expanded[1]);
4317                                 rcode = run_nofork_applet(i, argv_expanded);
4318                         }
4319                         goto clean_up_and_ret;
4320                 }
4321 #endif
4322                 /* It is neither builtin nor applet. We must fork. */
4323         }
4324
4325  must_fork:
4326         /* NB: argv_expanded may already be created, and that
4327          * might include `cmd` runs! Do not rerun it! We *must*
4328          * use argv_expanded if it's non-NULL */
4329
4330         /* Going to fork a child per each pipe member */
4331         pi->alive_cmds = 0;
4332         nextin = 0;
4333
4334         for (i = 0; i < pi->num_cmds; i++) {
4335                 struct fd_pair pipefds;
4336 #if !BB_MMU
4337                 volatile nommu_save_t nommu_save;
4338                 nommu_save.new_env = NULL;
4339                 nommu_save.old_vars = NULL;
4340                 nommu_save.argv = NULL;
4341                 nommu_save.argv_from_re_execing = NULL;
4342 #endif
4343                 command = &(pi->cmds[i]);
4344                 if (command->argv) {
4345                         debug_printf_exec(": pipe member '%s' '%s'...\n",
4346                                         command->argv[0], command->argv[1]);
4347                 } else {
4348                         debug_printf_exec(": pipe member with no argv\n");
4349                 }
4350
4351                 /* pipes are inserted between pairs of commands */
4352                 pipefds.rd = 0;
4353                 pipefds.wr = 1;
4354                 if ((i + 1) < pi->num_cmds)
4355                         xpiped_pair(pipefds);
4356
4357                 command->pid = BB_MMU ? fork() : vfork();
4358                 if (!command->pid) { /* child */
4359 #if ENABLE_HUSH_JOB
4360                         disable_restore_tty_pgrp_on_exit();
4361                         CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
4362
4363                         /* Every child adds itself to new process group
4364                          * with pgid == pid_of_first_child_in_pipe */
4365                         if (G.run_list_level == 1 && G_interactive_fd) {
4366                                 pid_t pgrp;
4367                                 pgrp = pi->pgrp;
4368                                 if (pgrp < 0) /* true for 1st process only */
4369                                         pgrp = getpid();
4370                                 if (setpgid(0, pgrp) == 0
4371                                  && pi->followup != PIPE_BG
4372                                  && G_saved_tty_pgrp /* we have ctty */
4373                                 ) {
4374                                         /* We do it in *every* child, not just first,
4375                                          * to avoid races */
4376                                         tcsetpgrp(G_interactive_fd, pgrp);
4377                                 }
4378                         }
4379 #endif
4380                         if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
4381                                 /* 1st cmd in backgrounded pipe
4382                                  * should have its stdin /dev/null'ed */
4383                                 close(0);
4384                                 if (open(bb_dev_null, O_RDONLY))
4385                                         xopen("/", O_RDONLY);
4386                         } else {
4387                                 xmove_fd(nextin, 0);
4388                         }
4389                         xmove_fd(pipefds.wr, 1);
4390                         if (pipefds.rd > 1)
4391                                 close(pipefds.rd);
4392                         /* Like bash, explicit redirects override pipes,
4393                          * and the pipe fd is available for dup'ing. */
4394                         if (setup_redirects(command, NULL))
4395                                 _exit(1);
4396
4397                         /* Restore default handlers just prior to exec */
4398                         /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
4399
4400                         /* Stores to nommu_save list of env vars putenv'ed
4401                          * (NOMMU, on MMU we don't need that) */
4402                         /* cast away volatility... */
4403                         pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
4404                         /* pseudo_exec() does not return */
4405                 }
4406
4407                 /* parent or error */
4408 #if ENABLE_HUSH_FAST
4409                 G.count_SIGCHLD++;
4410 //bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
4411 #endif
4412                 enable_restore_tty_pgrp_on_exit();
4413 #if !BB_MMU
4414                 /* Clean up after vforked child */
4415                 free(nommu_save.argv);
4416                 free(nommu_save.argv_from_re_execing);
4417                 unset_vars(nommu_save.new_env);
4418                 add_vars(nommu_save.old_vars);
4419 #endif
4420                 free(argv_expanded);
4421                 argv_expanded = NULL;
4422                 if (command->pid < 0) { /* [v]fork failed */
4423                         /* Clearly indicate, was it fork or vfork */
4424                         bb_perror_msg(BB_MMU ? "fork" : "vfork");
4425                 } else {
4426                         pi->alive_cmds++;
4427 #if ENABLE_HUSH_JOB
4428                         /* Second and next children need to know pid of first one */
4429                         if (pi->pgrp < 0)
4430                                 pi->pgrp = command->pid;
4431 #endif
4432                 }
4433
4434                 if (i)
4435                         close(nextin);
4436                 if ((i + 1) < pi->num_cmds)
4437                         close(pipefds.wr);
4438                 /* Pass read (output) pipe end to next iteration */
4439                 nextin = pipefds.rd;
4440         }
4441
4442         if (!pi->alive_cmds) {
4443                 debug_leave();
4444                 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
4445                 return 1;
4446         }
4447
4448         debug_leave();
4449         debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
4450         return -1;
4451 }
4452
4453 #ifndef debug_print_tree
4454 static void debug_print_tree(struct pipe *pi, int lvl)
4455 {
4456         static const char *const PIPE[] = {
4457                 [PIPE_SEQ] = "SEQ",
4458                 [PIPE_AND] = "AND",
4459                 [PIPE_OR ] = "OR" ,
4460                 [PIPE_BG ] = "BG" ,
4461         };
4462         static const char *RES[] = {
4463                 [RES_NONE ] = "NONE" ,
4464 # if ENABLE_HUSH_IF
4465                 [RES_IF   ] = "IF"   ,
4466                 [RES_THEN ] = "THEN" ,
4467                 [RES_ELIF ] = "ELIF" ,
4468                 [RES_ELSE ] = "ELSE" ,
4469                 [RES_FI   ] = "FI"   ,
4470 # endif
4471 # if ENABLE_HUSH_LOOPS
4472                 [RES_FOR  ] = "FOR"  ,
4473                 [RES_WHILE] = "WHILE",
4474                 [RES_UNTIL] = "UNTIL",
4475                 [RES_DO   ] = "DO"   ,
4476                 [RES_DONE ] = "DONE" ,
4477 # endif
4478 # if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
4479                 [RES_IN   ] = "IN"   ,
4480 # endif
4481 # if ENABLE_HUSH_CASE
4482                 [RES_CASE ] = "CASE" ,
4483                 [RES_CASE_IN ] = "CASE_IN" ,
4484                 [RES_MATCH] = "MATCH",
4485                 [RES_CASE_BODY] = "CASE_BODY",
4486                 [RES_ESAC ] = "ESAC" ,
4487 # endif
4488                 [RES_XXXX ] = "XXXX" ,
4489                 [RES_SNTX ] = "SNTX" ,
4490         };
4491         static const char *const CMDTYPE[] = {
4492                 "{}",
4493                 "()",
4494                 "[noglob]",
4495 # if ENABLE_HUSH_FUNCTIONS
4496                 "func()",
4497 # endif
4498         };
4499
4500         int pin, prn;
4501
4502         pin = 0;
4503         while (pi) {
4504                 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
4505                                 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
4506                 prn = 0;
4507                 while (prn < pi->num_cmds) {
4508                         struct command *command = &pi->cmds[prn];
4509                         char **argv = command->argv;
4510
4511                         fprintf(stderr, "%*s cmd %d assignment_cnt:%d",
4512                                         lvl*2, "", prn,
4513                                         command->assignment_cnt);
4514                         if (command->group) {
4515                                 fprintf(stderr, " group %s: (argv=%p)%s%s\n",
4516                                                 CMDTYPE[command->cmd_type],
4517                                                 argv
4518 #if !BB_MMU
4519                                                 , " group_as_string:", command->group_as_string
4520 #else
4521                                                 , "", ""
4522 #endif
4523                                 );
4524                                 debug_print_tree(command->group, lvl+1);
4525                                 prn++;
4526                                 continue;
4527                         }
4528                         if (argv) while (*argv) {
4529                                 fprintf(stderr, " '%s'", *argv);
4530                                 argv++;
4531                         }
4532                         fprintf(stderr, "\n");
4533                         prn++;
4534                 }
4535                 pi = pi->next;
4536                 pin++;
4537         }
4538 }
4539 #endif /* debug_print_tree */
4540
4541 /* NB: called by pseudo_exec, and therefore must not modify any
4542  * global data until exec/_exit (we can be a child after vfork!) */
4543 static int run_list(struct pipe *pi)
4544 {
4545 #if ENABLE_HUSH_CASE
4546         char *case_word = NULL;
4547 #endif
4548 #if ENABLE_HUSH_LOOPS
4549         struct pipe *loop_top = NULL;
4550         char **for_lcur = NULL;
4551         char **for_list = NULL;
4552 #endif
4553         smallint last_followup;
4554         smalluint rcode;
4555 #if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
4556         smalluint cond_code = 0;
4557 #else
4558         enum { cond_code = 0 };
4559 #endif
4560 #if HAS_KEYWORDS
4561         smallint rword; /* enum reserved_style */
4562         smallint last_rword; /* ditto */
4563 #endif
4564
4565         debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
4566         debug_enter();
4567
4568 #if ENABLE_HUSH_LOOPS
4569         /* Check syntax for "for" */
4570         for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
4571                 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
4572                         continue;
4573                 /* current word is FOR or IN (BOLD in comments below) */
4574                 if (cpipe->next == NULL) {
4575                         syntax_error("malformed for");
4576                         debug_leave();
4577                         debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
4578                         return 1;
4579                 }
4580                 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
4581                 if (cpipe->next->res_word == RES_DO)
4582                         continue;
4583                 /* next word is not "do". It must be "in" then ("FOR v in ...") */
4584                 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
4585                  || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
4586                 ) {
4587                         syntax_error("malformed for");
4588                         debug_leave();
4589                         debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
4590                         return 1;
4591                 }
4592         }
4593 #endif
4594
4595         /* Past this point, all code paths should jump to ret: label
4596          * in order to return, no direct "return" statements please.
4597          * This helps to ensure that no memory is leaked. */
4598
4599 #if ENABLE_HUSH_JOB
4600         G.run_list_level++;
4601 #endif
4602
4603 #if HAS_KEYWORDS
4604         rword = RES_NONE;
4605         last_rword = RES_XXXX;
4606 #endif
4607         last_followup = PIPE_SEQ;
4608         rcode = G.last_exitcode;
4609
4610         /* Go through list of pipes, (maybe) executing them. */
4611         for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
4612                 if (G.flag_SIGINT)
4613                         break;
4614
4615                 IF_HAS_KEYWORDS(rword = pi->res_word;)
4616                 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
4617                                 rword, cond_code, last_rword);
4618 #if ENABLE_HUSH_LOOPS
4619                 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
4620                  && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
4621                 ) {
4622                         /* start of a loop: remember where loop starts */
4623                         loop_top = pi;
4624                         G.depth_of_loop++;
4625                 }
4626 #endif
4627                 /* Still in the same "if...", "then..." or "do..." branch? */
4628                 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
4629                         if ((rcode == 0 && last_followup == PIPE_OR)
4630                          || (rcode != 0 && last_followup == PIPE_AND)
4631                         ) {
4632                                 /* It is "<true> || CMD" or "<false> && CMD"
4633                                  * and we should not execute CMD */
4634                                 debug_printf_exec("skipped cmd because of || or &&\n");
4635                                 last_followup = pi->followup;
4636                                 continue;
4637                         }
4638                 }
4639                 last_followup = pi->followup;
4640                 IF_HAS_KEYWORDS(last_rword = rword;)
4641 #if ENABLE_HUSH_IF
4642                 if (cond_code) {
4643                         if (rword == RES_THEN) {
4644                                 /* if false; then ... fi has exitcode 0! */
4645                                 G.last_exitcode = rcode = EXIT_SUCCESS;
4646                                 /* "if <false> THEN cmd": skip cmd */
4647                                 continue;
4648                         }
4649                 } else {
4650                         if (rword == RES_ELSE || rword == RES_ELIF) {
4651                                 /* "if <true> then ... ELSE/ELIF cmd":
4652                                  * skip cmd and all following ones */
4653                                 break;
4654                         }
4655                 }
4656 #endif
4657 #if ENABLE_HUSH_LOOPS
4658                 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
4659                         if (!for_lcur) {
4660                                 /* first loop through for */
4661
4662                                 static const char encoded_dollar_at[] ALIGN1 = {
4663                                         SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
4664                                 }; /* encoded representation of "$@" */
4665                                 static const char *const encoded_dollar_at_argv[] = {
4666                                         encoded_dollar_at, NULL
4667                                 }; /* argv list with one element: "$@" */
4668                                 char **vals;
4669
4670                                 vals = (char**)encoded_dollar_at_argv;
4671                                 if (pi->next->res_word == RES_IN) {
4672                                         /* if no variable values after "in" we skip "for" */
4673                                         if (!pi->next->cmds[0].argv) {
4674                                                 G.last_exitcode = rcode = EXIT_SUCCESS;
4675                                                 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
4676                                                 break;
4677                                         }
4678                                         vals = pi->next->cmds[0].argv;
4679                                 } /* else: "for var; do..." -> assume "$@" list */
4680                                 /* create list of variable values */
4681                                 debug_print_strings("for_list made from", vals);
4682                                 for_list = expand_strvec_to_strvec(vals);
4683                                 for_lcur = for_list;
4684                                 debug_print_strings("for_list", for_list);
4685                         }
4686                         if (!*for_lcur) {
4687                                 /* "for" loop is over, clean up */
4688                                 free(for_list);
4689                                 for_list = NULL;
4690                                 for_lcur = NULL;
4691                                 break;
4692                         }
4693                         /* Insert next value from for_lcur */
4694                         /* note: *for_lcur already has quotes removed, $var expanded, etc */
4695                         set_local_var(xasprintf("%s=%s", pi->cmds[0].argv[0], *for_lcur++), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
4696                         continue;
4697                 }
4698                 if (rword == RES_IN) {
4699                         continue; /* "for v IN list;..." - "in" has no cmds anyway */
4700                 }
4701                 if (rword == RES_DONE) {
4702                         continue; /* "done" has no cmds too */
4703                 }
4704 #endif
4705 #if ENABLE_HUSH_CASE
4706                 if (rword == RES_CASE) {
4707                         case_word = expand_strvec_to_string(pi->cmds->argv);
4708                         continue;
4709                 }
4710                 if (rword == RES_MATCH) {
4711                         char **argv;
4712
4713                         if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
4714                                 break;
4715                         /* all prev words didn't match, does this one match? */
4716                         argv = pi->cmds->argv;
4717                         while (*argv) {
4718                                 char *pattern = expand_string_to_string(*argv);
4719                                 /* TODO: which FNM_xxx flags to use? */
4720                                 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
4721                                 free(pattern);
4722                                 if (cond_code == 0) { /* match! we will execute this branch */
4723                                         free(case_word); /* make future "word)" stop */
4724                                         case_word = NULL;
4725                                         break;
4726                                 }
4727                                 argv++;
4728                         }
4729                         continue;
4730                 }
4731                 if (rword == RES_CASE_BODY) { /* inside of a case branch */
4732                         if (cond_code != 0)
4733                                 continue; /* not matched yet, skip this pipe */
4734                 }
4735 #endif
4736                 /* Just pressing <enter> in shell should check for jobs.
4737                  * OTOH, in non-interactive shell this is useless
4738                  * and only leads to extra job checks */
4739                 if (pi->num_cmds == 0) {
4740                         if (G_interactive_fd)
4741                                 goto check_jobs_and_continue;
4742                         continue;
4743                 }
4744
4745                 /* After analyzing all keywords and conditions, we decided
4746                  * to execute this pipe. NB: have to do checkjobs(NULL)
4747                  * after run_pipe to collect any background children,
4748                  * even if list execution is to be stopped. */
4749                 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
4750                 {
4751                         int r;
4752 #if ENABLE_HUSH_LOOPS
4753                         G.flag_break_continue = 0;
4754 #endif
4755                         rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
4756                         if (r != -1) {
4757                                 /* We ran a builtin, function, or group.
4758                                  * rcode is already known
4759                                  * and we don't need to wait for anything. */
4760                                 G.last_exitcode = rcode;
4761                                 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
4762                                 check_and_run_traps(0);
4763 #if ENABLE_HUSH_LOOPS
4764                                 /* Was it "break" or "continue"? */
4765                                 if (G.flag_break_continue) {
4766                                         smallint fbc = G.flag_break_continue;
4767                                         /* We might fall into outer *loop*,
4768                                          * don't want to break it too */
4769                                         if (loop_top) {
4770                                                 G.depth_break_continue--;
4771                                                 if (G.depth_break_continue == 0)
4772                                                         G.flag_break_continue = 0;
4773                                                 /* else: e.g. "continue 2" should *break* once, *then* continue */
4774                                         } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
4775                                         if (G.depth_break_continue != 0 || fbc == BC_BREAK)
4776                                                 goto check_jobs_and_break;
4777                                         /* "continue": simulate end of loop */
4778                                         rword = RES_DONE;
4779                                         continue;
4780                                 }
4781 #endif
4782 #if ENABLE_HUSH_FUNCTIONS
4783                                 if (G.flag_return_in_progress == 1) {
4784                                         /* same as "goto check_jobs_and_break" */
4785                                         checkjobs(NULL);
4786                                         break;
4787                                 }
4788 #endif
4789                         } else if (pi->followup == PIPE_BG) {
4790                                 /* What does bash do with attempts to background builtins? */
4791                                 /* even bash 3.2 doesn't do that well with nested bg:
4792                                  * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
4793                                  * I'm NOT treating inner &'s as jobs */
4794                                 check_and_run_traps(0);
4795 #if ENABLE_HUSH_JOB
4796                                 if (G.run_list_level == 1)
4797                                         insert_bg_job(pi);
4798 #endif
4799                                 G.last_exitcode = rcode = EXIT_SUCCESS;
4800                                 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
4801                         } else {
4802 #if ENABLE_HUSH_JOB
4803                                 if (G.run_list_level == 1 && G_interactive_fd) {
4804                                         /* Waits for completion, then fg's main shell */
4805                                         rcode = checkjobs_and_fg_shell(pi);
4806                                         debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
4807                                         check_and_run_traps(0);
4808                                 } else
4809 #endif
4810                                 { /* This one just waits for completion */
4811                                         rcode = checkjobs(pi);
4812                                         debug_printf_exec(": checkjobs exitcode %d\n", rcode);
4813                                         check_and_run_traps(0);
4814                                 }
4815                                 G.last_exitcode = rcode;
4816                         }
4817                 }
4818
4819                 /* Analyze how result affects subsequent commands */
4820 #if ENABLE_HUSH_IF
4821                 if (rword == RES_IF || rword == RES_ELIF)
4822                         cond_code = rcode;
4823 #endif
4824 #if ENABLE_HUSH_LOOPS
4825                 /* Beware of "while false; true; do ..."! */
4826                 if (pi->next && pi->next->res_word == RES_DO) {
4827                         if (rword == RES_WHILE) {
4828                                 if (rcode) {
4829                                         /* "while false; do...done" - exitcode 0 */
4830                                         G.last_exitcode = rcode = EXIT_SUCCESS;
4831                                         debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
4832                                         goto check_jobs_and_break;
4833                                 }
4834                         }
4835                         if (rword == RES_UNTIL) {
4836                                 if (!rcode) {
4837                                         debug_printf_exec(": until expr is true: breaking\n");
4838  check_jobs_and_break:
4839                                         checkjobs(NULL);
4840                                         break;
4841                                 }
4842                         }
4843                 }
4844 #endif
4845
4846  check_jobs_and_continue:
4847                 checkjobs(NULL);
4848         } /* for (pi) */
4849
4850 #if ENABLE_HUSH_JOB
4851         G.run_list_level--;
4852 #endif
4853 #if ENABLE_HUSH_LOOPS
4854         if (loop_top)
4855                 G.depth_of_loop--;
4856         free(for_list);
4857 #endif
4858 #if ENABLE_HUSH_CASE
4859         free(case_word);
4860 #endif
4861         debug_leave();
4862         debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
4863         return rcode;
4864 }
4865
4866 /* Select which version we will use */
4867 static int run_and_free_list(struct pipe *pi)
4868 {
4869         int rcode = 0;
4870         debug_printf_exec("run_and_free_list entered\n");
4871         if (!G.fake_mode) {
4872                 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
4873                 rcode = run_list(pi);
4874         }
4875         /* free_pipe_list has the side effect of clearing memory.
4876          * In the long run that function can be merged with run_list,
4877          * but doing that now would hobble the debugging effort. */
4878         free_pipe_list(pi);
4879         debug_printf_exec("run_and_free_list return %d\n", rcode);
4880         return rcode;
4881 }
4882
4883
4884 static struct pipe *new_pipe(void)
4885 {
4886         struct pipe *pi;
4887         pi = xzalloc(sizeof(struct pipe));
4888         /*pi->followup = 0; - deliberately invalid value */
4889         /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
4890         return pi;
4891 }
4892
4893 /* Command (member of a pipe) is complete, or we start a new pipe
4894  * if ctx->command is NULL.
4895  * No errors possible here.
4896  */
4897 static int done_command(struct parse_context *ctx)
4898 {
4899         /* The command is really already in the pipe structure, so
4900          * advance the pipe counter and make a new, null command. */
4901         struct pipe *pi = ctx->pipe;
4902         struct command *command = ctx->command;
4903
4904         if (command) {
4905                 if (IS_NULL_CMD(command)) {
4906                         debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
4907                         goto clear_and_ret;
4908                 }
4909                 pi->num_cmds++;
4910                 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
4911                 //debug_print_tree(ctx->list_head, 20);
4912         } else {
4913                 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
4914         }
4915
4916         /* Only real trickiness here is that the uncommitted
4917          * command structure is not counted in pi->num_cmds. */
4918         pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
4919         ctx->command = command = &pi->cmds[pi->num_cmds];
4920  clear_and_ret:
4921         memset(command, 0, sizeof(*command));
4922         return pi->num_cmds; /* used only for 0/nonzero check */
4923 }
4924
4925 static void done_pipe(struct parse_context *ctx, pipe_style type)
4926 {
4927         int not_null;
4928
4929         debug_printf_parse("done_pipe entered, followup %d\n", type);
4930         /* Close previous command */
4931         not_null = done_command(ctx);
4932         ctx->pipe->followup = type;
4933 #if HAS_KEYWORDS
4934         ctx->pipe->pi_inverted = ctx->ctx_inverted;
4935         ctx->ctx_inverted = 0;
4936         ctx->pipe->res_word = ctx->ctx_res_w;
4937 #endif
4938
4939         /* Without this check, even just <enter> on command line generates
4940          * tree of three NOPs (!). Which is harmless but annoying.
4941          * IOW: it is safe to do it unconditionally. */
4942         if (not_null
4943 #if ENABLE_HUSH_IF
4944          || ctx->ctx_res_w == RES_FI
4945 #endif
4946 #if ENABLE_HUSH_LOOPS
4947          || ctx->ctx_res_w == RES_DONE
4948          || ctx->ctx_res_w == RES_FOR
4949          || ctx->ctx_res_w == RES_IN
4950 #endif
4951 #if ENABLE_HUSH_CASE
4952          || ctx->ctx_res_w == RES_ESAC
4953 #endif
4954         ) {
4955                 struct pipe *new_p;
4956                 debug_printf_parse("done_pipe: adding new pipe: "
4957                                 "not_null:%d ctx->ctx_res_w:%d\n",
4958                                 not_null, ctx->ctx_res_w);
4959                 new_p = new_pipe();
4960                 ctx->pipe->next = new_p;
4961                 ctx->pipe = new_p;
4962                 /* RES_THEN, RES_DO etc are "sticky" -
4963                  * they remain set for pipes inside if/while.
4964                  * This is used to control execution.
4965                  * RES_FOR and RES_IN are NOT sticky (needed to support
4966                  * cases where variable or value happens to match a keyword):
4967                  */
4968 #if ENABLE_HUSH_LOOPS
4969                 if (ctx->ctx_res_w == RES_FOR
4970                  || ctx->ctx_res_w == RES_IN)
4971                         ctx->ctx_res_w = RES_NONE;
4972 #endif
4973 #if ENABLE_HUSH_CASE
4974                 if (ctx->ctx_res_w == RES_MATCH)
4975                         ctx->ctx_res_w = RES_CASE_BODY;
4976                 if (ctx->ctx_res_w == RES_CASE)
4977                         ctx->ctx_res_w = RES_CASE_IN;
4978 #endif
4979                 ctx->command = NULL; /* trick done_command below */
4980                 /* Create the memory for command, roughly:
4981                  * ctx->pipe->cmds = new struct command;
4982                  * ctx->command = &ctx->pipe->cmds[0];
4983                  */
4984                 done_command(ctx);
4985                 //debug_print_tree(ctx->list_head, 10);
4986         }
4987         debug_printf_parse("done_pipe return\n");
4988 }
4989
4990 static void initialize_context(struct parse_context *ctx)
4991 {
4992         memset(ctx, 0, sizeof(*ctx));
4993         ctx->pipe = ctx->list_head = new_pipe();
4994         /* Create the memory for command, roughly:
4995          * ctx->pipe->cmds = new struct command;
4996          * ctx->command = &ctx->pipe->cmds[0];
4997          */
4998         done_command(ctx);
4999 }
5000
5001 /* If a reserved word is found and processed, parse context is modified
5002  * and 1 is returned.
5003  */
5004 #if HAS_KEYWORDS
5005 struct reserved_combo {
5006         char literal[6];
5007         unsigned char res;
5008         unsigned char assignment_flag;
5009         int flag;
5010 };
5011 enum {
5012         FLAG_END   = (1 << RES_NONE ),
5013 # if ENABLE_HUSH_IF
5014         FLAG_IF    = (1 << RES_IF   ),
5015         FLAG_THEN  = (1 << RES_THEN ),
5016         FLAG_ELIF  = (1 << RES_ELIF ),
5017         FLAG_ELSE  = (1 << RES_ELSE ),
5018         FLAG_FI    = (1 << RES_FI   ),
5019 # endif
5020 # if ENABLE_HUSH_LOOPS
5021         FLAG_FOR   = (1 << RES_FOR  ),
5022         FLAG_WHILE = (1 << RES_WHILE),
5023         FLAG_UNTIL = (1 << RES_UNTIL),
5024         FLAG_DO    = (1 << RES_DO   ),
5025         FLAG_DONE  = (1 << RES_DONE ),
5026         FLAG_IN    = (1 << RES_IN   ),
5027 # endif
5028 # if ENABLE_HUSH_CASE
5029         FLAG_MATCH = (1 << RES_MATCH),
5030         FLAG_ESAC  = (1 << RES_ESAC ),
5031 # endif
5032         FLAG_START = (1 << RES_XXXX ),
5033 };
5034
5035 static const struct reserved_combo* match_reserved_word(o_string *word)
5036 {
5037         /* Mostly a list of accepted follow-up reserved words.
5038          * FLAG_END means we are done with the sequence, and are ready
5039          * to turn the compound list into a command.
5040          * FLAG_START means the word must start a new compound list.
5041          */
5042         static const struct reserved_combo reserved_list[] = {
5043 # if ENABLE_HUSH_IF
5044                 { "!",     RES_NONE,  NOT_ASSIGNMENT , 0 },
5045                 { "if",    RES_IF,    WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
5046                 { "then",  RES_THEN,  WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
5047                 { "elif",  RES_ELIF,  WORD_IS_KEYWORD, FLAG_THEN },
5048                 { "else",  RES_ELSE,  WORD_IS_KEYWORD, FLAG_FI   },
5049                 { "fi",    RES_FI,    NOT_ASSIGNMENT , FLAG_END  },
5050 # endif
5051 # if ENABLE_HUSH_LOOPS
5052                 { "for",   RES_FOR,   NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
5053                 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
5054                 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
5055                 { "in",    RES_IN,    NOT_ASSIGNMENT , FLAG_DO   },
5056                 { "do",    RES_DO,    WORD_IS_KEYWORD, FLAG_DONE },
5057                 { "done",  RES_DONE,  NOT_ASSIGNMENT , FLAG_END  },
5058 # endif
5059 # if ENABLE_HUSH_CASE
5060                 { "case",  RES_CASE,  NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
5061                 { "esac",  RES_ESAC,  NOT_ASSIGNMENT , FLAG_END  },
5062 # endif
5063         };
5064         const struct reserved_combo *r;
5065
5066         for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
5067                 if (strcmp(word->data, r->literal) == 0)
5068                         return r;
5069         }
5070         return NULL;
5071 }
5072 /* Return 0: not a keyword, 1: keyword
5073  */
5074 static int reserved_word(o_string *word, struct parse_context *ctx)
5075 {
5076 # if ENABLE_HUSH_CASE
5077         static const struct reserved_combo reserved_match = {
5078                 "",        RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
5079         };
5080 # endif
5081         const struct reserved_combo *r;
5082
5083         if (word->o_quoted)
5084                 return 0;
5085         r = match_reserved_word(word);
5086         if (!r)
5087                 return 0;
5088
5089         debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
5090 # if ENABLE_HUSH_CASE
5091         if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE_IN) {
5092                 /* "case word IN ..." - IN part starts first MATCH part */
5093                 r = &reserved_match;
5094         } else
5095 # endif
5096         if (r->flag == 0) { /* '!' */
5097                 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
5098                         syntax_error("! ! command");
5099                         ctx->ctx_res_w = RES_SNTX;
5100                 }
5101                 ctx->ctx_inverted = 1;
5102                 return 1;
5103         }
5104         if (r->flag & FLAG_START) {
5105                 struct parse_context *old;
5106
5107                 old = xmalloc(sizeof(*old));
5108                 debug_printf_parse("push stack %p\n", old);
5109                 *old = *ctx;   /* physical copy */
5110                 initialize_context(ctx);
5111                 ctx->stack = old;
5112         } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
5113                 syntax_error_at(word->data);
5114                 ctx->ctx_res_w = RES_SNTX;
5115                 return 1;
5116         } else {
5117                 /* "{...} fi" is ok. "{...} if" is not
5118                  * Example:
5119                  * if { echo foo; } then { echo bar; } fi */
5120                 if (ctx->command->group)
5121                         done_pipe(ctx, PIPE_SEQ);
5122         }
5123
5124         ctx->ctx_res_w = r->res;
5125         ctx->old_flag = r->flag;
5126         word->o_assignment = r->assignment_flag;
5127
5128         if (ctx->old_flag & FLAG_END) {
5129                 struct parse_context *old;
5130
5131                 done_pipe(ctx, PIPE_SEQ);
5132                 debug_printf_parse("pop stack %p\n", ctx->stack);
5133                 old = ctx->stack;
5134                 old->command->group = ctx->list_head;
5135                 old->command->cmd_type = CMD_NORMAL;
5136 # if !BB_MMU
5137                 o_addstr(&old->as_string, ctx->as_string.data);
5138                 o_free_unsafe(&ctx->as_string);
5139                 old->command->group_as_string = xstrdup(old->as_string.data);
5140                 debug_printf_parse("pop, remembering as:'%s'\n",
5141                                 old->command->group_as_string);
5142 # endif
5143                 *ctx = *old;   /* physical copy */
5144                 free(old);
5145         }
5146         return 1;
5147 }
5148 #endif /* HAS_KEYWORDS */
5149
5150 /* Word is complete, look at it and update parsing context.
5151  * Normal return is 0. Syntax errors return 1.
5152  * Note: on return, word is reset, but not o_free'd!
5153  */
5154 static int done_word(o_string *word, struct parse_context *ctx)
5155 {
5156         struct command *command = ctx->command;
5157
5158         debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
5159         if (word->length == 0 && word->o_quoted == 0) {
5160                 debug_printf_parse("done_word return 0: true null, ignored\n");
5161                 return 0;
5162         }
5163
5164         if (ctx->pending_redirect) {
5165                 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
5166                  * only if run as "bash", not "sh" */
5167                 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
5168                  * "2.7 Redirection
5169                  * ...the word that follows the redirection operator
5170                  * shall be subjected to tilde expansion, parameter expansion,
5171                  * command substitution, arithmetic expansion, and quote
5172                  * removal. Pathname expansion shall not be performed
5173                  * on the word by a non-interactive shell; an interactive
5174                  * shell may perform it, but shall do so only when
5175                  * the expansion would result in one word."
5176                  */
5177                 ctx->pending_redirect->rd_filename = xstrdup(word->data);
5178                 /* Cater for >\file case:
5179                  * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
5180                  * Same with heredocs:
5181                  * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
5182                  */
5183                 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC) {
5184                         unbackslash(ctx->pending_redirect->rd_filename);
5185                         /* Is it <<"HEREDOC"? */
5186                         if (word->o_quoted) {
5187                                 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
5188                         }
5189                 }
5190                 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
5191                 ctx->pending_redirect = NULL;
5192         } else {
5193                 /* If this word wasn't an assignment, next ones definitely
5194                  * can't be assignments. Even if they look like ones. */
5195                 if (word->o_assignment != DEFINITELY_ASSIGNMENT
5196                  && word->o_assignment != WORD_IS_KEYWORD
5197                 ) {
5198                         word->o_assignment = NOT_ASSIGNMENT;
5199                 } else {
5200                         if (word->o_assignment == DEFINITELY_ASSIGNMENT)
5201                                 command->assignment_cnt++;
5202                         word->o_assignment = MAYBE_ASSIGNMENT;
5203                 }
5204
5205 #if HAS_KEYWORDS
5206 # if ENABLE_HUSH_CASE
5207                 if (ctx->ctx_dsemicolon
5208                  && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
5209                 ) {
5210                         /* already done when ctx_dsemicolon was set to 1: */
5211                         /* ctx->ctx_res_w = RES_MATCH; */
5212                         ctx->ctx_dsemicolon = 0;
5213                 } else
5214 # endif
5215                 if (!command->argv /* if it's the first word... */
5216 # if ENABLE_HUSH_LOOPS
5217                  && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
5218                  && ctx->ctx_res_w != RES_IN
5219 # endif
5220 # if ENABLE_HUSH_CASE
5221                  && ctx->ctx_res_w != RES_CASE
5222 # endif
5223                 ) {
5224                         debug_printf_parse("checking '%s' for reserved-ness\n", word->data);
5225                         if (reserved_word(word, ctx)) {
5226                                 o_reset_to_empty_unquoted(word);
5227                                 debug_printf_parse("done_word return %d\n",
5228                                                 (ctx->ctx_res_w == RES_SNTX));
5229                                 return (ctx->ctx_res_w == RES_SNTX);
5230                         }
5231 # ifdef CMD_SINGLEWORD_NOGLOB_COND
5232                         if (strcmp(word->data, "export") == 0
5233 #  if ENABLE_HUSH_LOCAL
5234                          || strcmp(word->data, "local") == 0
5235 #  endif
5236                         ) {
5237                                 command->cmd_type = CMD_SINGLEWORD_NOGLOB_COND;
5238                         } else
5239 # endif
5240 # if ENABLE_HUSH_BASH_COMPAT
5241                         if (strcmp(word->data, "[[") == 0) {
5242                                 command->cmd_type = CMD_SINGLEWORD_NOGLOB;
5243                         }
5244                         /* fall through */
5245 # endif
5246                 }
5247 #endif
5248                 if (command->group) {
5249                         /* "{ echo foo; } echo bar" - bad */
5250                         syntax_error_at(word->data);
5251                         debug_printf_parse("done_word return 1: syntax error, "
5252                                         "groups and arglists don't mix\n");
5253                         return 1;
5254                 }
5255                 if (word->o_quoted /* word had "xx" or 'xx' at least as part of it. */
5256                  /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
5257                  && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
5258                  /* (otherwise it's known to be not empty and is already safe) */
5259                 ) {
5260                         /* exclude "$@" - it can expand to no word despite "" */
5261                         char *p = word->data;
5262                         while (p[0] == SPECIAL_VAR_SYMBOL
5263                             && (p[1] & 0x7f) == '@'
5264                             && p[2] == SPECIAL_VAR_SYMBOL
5265                         ) {
5266                                 p += 3;
5267                         }
5268                         if (p == word->data || p[0] != '\0') {
5269                                 /* saw no "$@", or not only "$@" but some
5270                                  * real text is there too */
5271                                 /* insert "empty variable" reference, this makes
5272                                  * e.g. "", $empty"" etc to not disappear */
5273                                 o_addchr(word, SPECIAL_VAR_SYMBOL);
5274                                 o_addchr(word, SPECIAL_VAR_SYMBOL);
5275                         }
5276                 }
5277                 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
5278                 debug_print_strings("word appended to argv", command->argv);
5279         }
5280
5281 #if ENABLE_HUSH_LOOPS
5282         if (ctx->ctx_res_w == RES_FOR) {
5283                 if (word->o_quoted
5284                  || !is_well_formed_var_name(command->argv[0], '\0')
5285                 ) {
5286                         /* bash says just "not a valid identifier" */
5287                         syntax_error("not a valid identifier in for");
5288                         return 1;
5289                 }
5290                 /* Force FOR to have just one word (variable name) */
5291                 /* NB: basically, this makes hush see "for v in ..."
5292                  * syntax as if it is "for v; in ...". FOR and IN become
5293                  * two pipe structs in parse tree. */
5294                 done_pipe(ctx, PIPE_SEQ);
5295         }
5296 #endif
5297 #if ENABLE_HUSH_CASE
5298         /* Force CASE to have just one word */
5299         if (ctx->ctx_res_w == RES_CASE) {
5300                 done_pipe(ctx, PIPE_SEQ);
5301         }
5302 #endif
5303
5304         o_reset_to_empty_unquoted(word);
5305
5306         debug_printf_parse("done_word return 0\n");
5307         return 0;
5308 }
5309
5310
5311 /* Peek ahead in the input to find out if we have a "&n" construct,
5312  * as in "2>&1", that represents duplicating a file descriptor.
5313  * Return:
5314  * REDIRFD_CLOSE if >&- "close fd" construct is seen,
5315  * REDIRFD_SYNTAX_ERR if syntax error,
5316  * REDIRFD_TO_FILE if no & was seen,
5317  * or the number found.
5318  */
5319 #if BB_MMU
5320 #define parse_redir_right_fd(as_string, input) \
5321         parse_redir_right_fd(input)
5322 #endif
5323 static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
5324 {
5325         int ch, d, ok;
5326
5327         ch = i_peek(input);
5328         if (ch != '&')
5329                 return REDIRFD_TO_FILE;
5330
5331         ch = i_getch(input);  /* get the & */
5332         nommu_addchr(as_string, ch);
5333         ch = i_peek(input);
5334         if (ch == '-') {
5335                 ch = i_getch(input);
5336                 nommu_addchr(as_string, ch);
5337                 return REDIRFD_CLOSE;
5338         }
5339         d = 0;
5340         ok = 0;
5341         while (ch != EOF && isdigit(ch)) {
5342                 d = d*10 + (ch-'0');
5343                 ok = 1;
5344                 ch = i_getch(input);
5345                 nommu_addchr(as_string, ch);
5346                 ch = i_peek(input);
5347         }
5348         if (ok) return d;
5349
5350 //TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
5351
5352         bb_error_msg("ambiguous redirect");
5353         return REDIRFD_SYNTAX_ERR;
5354 }
5355
5356 /* Return code is 0 normal, 1 if a syntax error is detected
5357  */
5358 static int parse_redirect(struct parse_context *ctx,
5359                 int fd,
5360                 redir_type style,
5361                 struct in_str *input)
5362 {
5363         struct command *command = ctx->command;
5364         struct redir_struct *redir;
5365         struct redir_struct **redirp;
5366         int dup_num;
5367
5368         dup_num = REDIRFD_TO_FILE;
5369         if (style != REDIRECT_HEREDOC) {
5370                 /* Check for a '>&1' type redirect */
5371                 dup_num = parse_redir_right_fd(&ctx->as_string, input);
5372                 if (dup_num == REDIRFD_SYNTAX_ERR)
5373                         return 1;
5374         } else {
5375                 int ch = i_peek(input);
5376                 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
5377                 if (dup_num) { /* <<-... */
5378                         ch = i_getch(input);
5379                         nommu_addchr(&ctx->as_string, ch);
5380                         ch = i_peek(input);
5381                 }
5382         }
5383
5384         if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
5385                 int ch = i_peek(input);
5386                 if (ch == '|') {
5387                         /* >|FILE redirect ("clobbering" >).
5388                          * Since we do not support "set -o noclobber" yet,
5389                          * >| and > are the same for now. Just eat |.
5390                          */
5391                         ch = i_getch(input);
5392                         nommu_addchr(&ctx->as_string, ch);
5393                 }
5394         }
5395
5396         /* Create a new redir_struct and append it to the linked list */
5397         redirp = &command->redirects;
5398         while ((redir = *redirp) != NULL) {
5399                 redirp = &(redir->next);
5400         }
5401         *redirp = redir = xzalloc(sizeof(*redir));
5402         /* redir->next = NULL; */
5403         /* redir->rd_filename = NULL; */
5404         redir->rd_type = style;
5405         redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
5406
5407         debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
5408                                 redir_table[style].descrip);
5409
5410         redir->rd_dup = dup_num;
5411         if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
5412                 /* Erik had a check here that the file descriptor in question
5413                  * is legit; I postpone that to "run time"
5414                  * A "-" representation of "close me" shows up as a -3 here */
5415                 debug_printf_parse("duplicating redirect '%d>&%d'\n",
5416                                 redir->rd_fd, redir->rd_dup);
5417         } else {
5418                 /* Set ctx->pending_redirect, so we know what to do at the
5419                  * end of the next parsed word. */
5420                 ctx->pending_redirect = redir;
5421         }
5422         return 0;
5423 }
5424
5425 /* If a redirect is immediately preceded by a number, that number is
5426  * supposed to tell which file descriptor to redirect.  This routine
5427  * looks for such preceding numbers.  In an ideal world this routine
5428  * needs to handle all the following classes of redirects...
5429  *     echo 2>foo     # redirects fd  2 to file "foo", nothing passed to echo
5430  *     echo 49>foo    # redirects fd 49 to file "foo", nothing passed to echo
5431  *     echo -2>foo    # redirects fd  1 to file "foo",    "-2" passed to echo
5432  *     echo 49x>foo   # redirects fd  1 to file "foo",   "49x" passed to echo
5433  *
5434  * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
5435  * "2.7 Redirection
5436  * ... If n is quoted, the number shall not be recognized as part of
5437  * the redirection expression. For example:
5438  * echo \2>a
5439  * writes the character 2 into file a"
5440  * We are getting it right by setting ->o_quoted on any \<char>
5441  *
5442  * A -1 return means no valid number was found,
5443  * the caller should use the appropriate default for this redirection.
5444  */
5445 static int redirect_opt_num(o_string *o)
5446 {
5447         int num;
5448
5449         if (o->data == NULL)
5450                 return -1;
5451         num = bb_strtou(o->data, NULL, 10);
5452         if (errno || num < 0)
5453                 return -1;
5454         o_reset_to_empty_unquoted(o);
5455         return num;
5456 }
5457
5458 #if BB_MMU
5459 #define fetch_till_str(as_string, input, word, skip_tabs) \
5460         fetch_till_str(input, word, skip_tabs)
5461 #endif
5462 static char *fetch_till_str(o_string *as_string,
5463                 struct in_str *input,
5464                 const char *word,
5465                 int skip_tabs)
5466 {
5467         o_string heredoc = NULL_O_STRING;
5468         int past_EOL = 0;
5469         int ch;
5470
5471         goto jump_in;
5472         while (1) {
5473                 ch = i_getch(input);
5474                 nommu_addchr(as_string, ch);
5475                 if (ch == '\n') {
5476                         if (strcmp(heredoc.data + past_EOL, word) == 0) {
5477                                 heredoc.data[past_EOL] = '\0';
5478                                 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
5479                                 return heredoc.data;
5480                         }
5481                         do {
5482                                 o_addchr(&heredoc, ch);
5483                                 past_EOL = heredoc.length;
5484  jump_in:
5485                                 do {
5486                                         ch = i_getch(input);
5487                                         nommu_addchr(as_string, ch);
5488                                 } while (skip_tabs && ch == '\t');
5489                         } while (ch == '\n');
5490                 }
5491                 if (ch == EOF) {
5492                         o_free_unsafe(&heredoc);
5493                         return NULL;
5494                 }
5495                 o_addchr(&heredoc, ch);
5496                 nommu_addchr(as_string, ch);
5497         }
5498 }
5499
5500 /* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
5501  * and load them all. There should be exactly heredoc_cnt of them.
5502  */
5503 static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
5504 {
5505         struct pipe *pi = ctx->list_head;
5506
5507         while (pi && heredoc_cnt) {
5508                 int i;
5509                 struct command *cmd = pi->cmds;
5510
5511                 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
5512                                 pi->num_cmds,
5513                                 cmd->argv ? cmd->argv[0] : "NONE");
5514                 for (i = 0; i < pi->num_cmds; i++) {
5515                         struct redir_struct *redir = cmd->redirects;
5516
5517                         debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
5518                                         i, cmd->argv ? cmd->argv[0] : "NONE");
5519                         while (redir) {
5520                                 if (redir->rd_type == REDIRECT_HEREDOC) {
5521                                         char *p;
5522
5523                                         redir->rd_type = REDIRECT_HEREDOC2;
5524                                         /* redir->rd_dup is (ab)used to indicate <<- */
5525                                         p = fetch_till_str(&ctx->as_string, input,
5526                                                 redir->rd_filename, redir->rd_dup & HEREDOC_SKIPTABS);
5527                                         if (!p) {
5528                                                 syntax_error("unexpected EOF in here document");
5529                                                 return 1;
5530                                         }
5531                                         free(redir->rd_filename);
5532                                         redir->rd_filename = p;
5533                                         heredoc_cnt--;
5534                                 }
5535                                 redir = redir->next;
5536                         }
5537                         cmd++;
5538                 }
5539                 pi = pi->next;
5540         }
5541 #if 0
5542         /* Should be 0. If it isn't, it's a parse error */
5543         if (heredoc_cnt)
5544                 bb_error_msg_and_die("heredoc BUG 2");
5545 #endif
5546         return 0;
5547 }
5548
5549
5550 #if ENABLE_HUSH_TICK
5551 static FILE *generate_stream_from_string(const char *s, pid_t *pid_p)
5552 {
5553         pid_t pid;
5554         int channel[2];
5555 # if !BB_MMU
5556         char **to_free = NULL;
5557 # endif
5558
5559         xpipe(channel);
5560         pid = BB_MMU ? fork() : vfork();
5561         if (pid < 0)
5562                 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
5563
5564         if (pid == 0) { /* child */
5565                 disable_restore_tty_pgrp_on_exit();
5566                 /* Process substitution is not considered to be usual
5567                  * 'command execution'.
5568                  * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
5569                  */
5570                 bb_signals(0
5571                         + (1 << SIGTSTP)
5572                         + (1 << SIGTTIN)
5573                         + (1 << SIGTTOU)
5574                         , SIG_IGN);
5575                 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
5576                 close(channel[0]); /* NB: close _first_, then move fd! */
5577                 xmove_fd(channel[1], 1);
5578                 /* Prevent it from trying to handle ctrl-z etc */
5579                 IF_HUSH_JOB(G.run_list_level = 1;)
5580                 /* Awful hack for `trap` or $(trap).
5581                  *
5582                  * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html
5583                  * contains an example where "trap" is executed in a subshell:
5584                  *
5585                  * save_traps=$(trap)
5586                  * ...
5587                  * eval "$save_traps"
5588                  *
5589                  * Standard does not say that "trap" in subshell shall print
5590                  * parent shell's traps. It only says that its output
5591                  * must have suitable form, but then, in the above example
5592                  * (which is not supposed to be normative), it implies that.
5593                  *
5594                  * bash (and probably other shell) does implement it
5595                  * (traps are reset to defaults, but "trap" still shows them),
5596                  * but as a result, "trap" logic is hopelessly messed up:
5597                  *
5598                  * # trap
5599                  * trap -- 'echo Ho' SIGWINCH  <--- we have a handler
5600                  * # (trap)        <--- trap is in subshell - no output (correct, traps are reset)
5601                  * # true | trap   <--- trap is in subshell - no output (ditto)
5602                  * # echo `true | trap`    <--- in subshell - output (but traps are reset!)
5603                  * trap -- 'echo Ho' SIGWINCH
5604                  * # echo `(trap)`         <--- in subshell in subshell - output
5605                  * trap -- 'echo Ho' SIGWINCH
5606                  * # echo `true | (trap)`  <--- in subshell in subshell in subshell - output!
5607                  * trap -- 'echo Ho' SIGWINCH
5608                  *
5609                  * The rules when to forget and when to not forget traps
5610                  * get really complex and nonsensical.
5611                  *
5612                  * Our solution: ONLY bare $(trap) or `trap` is special.
5613                  */
5614                 s = skip_whitespace(s);
5615                 if (strncmp(s, "trap", 4) == 0 && (*skip_whitespace(s + 4) == '\0'))
5616                 {
5617                         static const char *const argv[] = { NULL, NULL };
5618                         builtin_trap((char**)argv);
5619                         exit(0); /* not _exit() - we need to fflush */
5620                 }
5621 # if BB_MMU
5622                 reset_traps_to_defaults();
5623                 parse_and_run_string(s);
5624                 _exit(G.last_exitcode);
5625 # else
5626         /* We re-execute after vfork on NOMMU. This makes this script safe:
5627          * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
5628          * huge=`cat BIG` # was blocking here forever
5629          * echo OK
5630          */
5631                 re_execute_shell(&to_free,
5632                                 s,
5633                                 G.global_argv[0],
5634                                 G.global_argv + 1,
5635                                 NULL);
5636 # endif
5637         }
5638
5639         /* parent */
5640         *pid_p = pid;
5641 # if ENABLE_HUSH_FAST
5642         G.count_SIGCHLD++;
5643 //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);
5644 # endif
5645         enable_restore_tty_pgrp_on_exit();
5646 # if !BB_MMU
5647         free(to_free);
5648 # endif
5649         close(channel[1]);
5650         close_on_exec_on(channel[0]);
5651         return xfdopen_for_read(channel[0]);
5652 }
5653
5654 /* Return code is exit status of the process that is run. */
5655 static int process_command_subs(o_string *dest, const char *s)
5656 {
5657         FILE *fp;
5658         struct in_str pipe_str;
5659         pid_t pid;
5660         int status, ch, eol_cnt;
5661
5662         fp = generate_stream_from_string(s, &pid);
5663
5664         /* Now send results of command back into original context */
5665         setup_file_in_str(&pipe_str, fp);
5666         eol_cnt = 0;
5667         while ((ch = i_getch(&pipe_str)) != EOF) {
5668                 if (ch == '\n') {
5669                         eol_cnt++;
5670                         continue;
5671                 }
5672                 while (eol_cnt) {
5673                         o_addchr(dest, '\n');
5674                         eol_cnt--;
5675                 }
5676                 o_addQchr(dest, ch);
5677         }
5678
5679         debug_printf("done reading from `cmd` pipe, closing it\n");
5680         fclose(fp);
5681         /* We need to extract exitcode. Test case
5682          * "true; echo `sleep 1; false` $?"
5683          * should print 1 */
5684         safe_waitpid(pid, &status, 0);
5685         debug_printf("child exited. returning its exitcode:%d\n", WEXITSTATUS(status));
5686         return WEXITSTATUS(status);
5687 }
5688 #endif /* ENABLE_HUSH_TICK */
5689
5690 #if !ENABLE_HUSH_FUNCTIONS
5691 #define parse_group(dest, ctx, input, ch) \
5692         parse_group(ctx, input, ch)
5693 #endif
5694 static int parse_group(o_string *dest, struct parse_context *ctx,
5695         struct in_str *input, int ch)
5696 {
5697         /* dest contains characters seen prior to ( or {.
5698          * Typically it's empty, but for function defs,
5699          * it contains function name (without '()'). */
5700         struct pipe *pipe_list;
5701         int endch;
5702         struct command *command = ctx->command;
5703
5704         debug_printf_parse("parse_group entered\n");
5705 #if ENABLE_HUSH_FUNCTIONS
5706         if (ch == '(' && !dest->o_quoted) {
5707                 if (dest->length)
5708                         if (done_word(dest, ctx))
5709                                 return 1;
5710                 if (!command->argv)
5711                         goto skip; /* (... */
5712                 if (command->argv[1]) { /* word word ... (... */
5713                         syntax_error_unexpected_ch('(');
5714                         return 1;
5715                 }
5716                 /* it is "word(..." or "word (..." */
5717                 do
5718                         ch = i_getch(input);
5719                 while (ch == ' ' || ch == '\t');
5720                 if (ch != ')') {
5721                         syntax_error_unexpected_ch(ch);
5722                         return 1;
5723                 }
5724                 nommu_addchr(&ctx->as_string, ch);
5725                 do
5726                         ch = i_getch(input);
5727                 while (ch == ' ' || ch == '\t' || ch == '\n');
5728                 if (ch != '{') {
5729                         syntax_error_unexpected_ch(ch);
5730                         return 1;
5731                 }
5732                 nommu_addchr(&ctx->as_string, ch);
5733                 command->cmd_type = CMD_FUNCDEF;
5734                 goto skip;
5735         }
5736 #endif
5737
5738 #if 0 /* Prevented by caller */
5739         if (command->argv /* word [word]{... */
5740          || dest->length /* word{... */
5741          || dest->o_quoted /* ""{... */
5742         ) {
5743                 syntax_error(NULL);
5744                 debug_printf_parse("parse_group return 1: "
5745                         "syntax error, groups and arglists don't mix\n");
5746                 return 1;
5747         }
5748 #endif
5749
5750 #if ENABLE_HUSH_FUNCTIONS
5751  skip:
5752 #endif
5753         endch = '}';
5754         if (ch == '(') {
5755                 endch = ')';
5756                 command->cmd_type = CMD_SUBSHELL;
5757         } else {
5758                 /* bash does not allow "{echo...", requires whitespace */
5759                 ch = i_getch(input);
5760                 if (ch != ' ' && ch != '\t' && ch != '\n') {
5761                         syntax_error_unexpected_ch(ch);
5762                         return 1;
5763                 }
5764                 nommu_addchr(&ctx->as_string, ch);
5765         }
5766
5767         {
5768 #if !BB_MMU
5769                 char *as_string = NULL;
5770 #endif
5771                 pipe_list = parse_stream(&as_string, input, endch);
5772 #if !BB_MMU
5773                 if (as_string)
5774                         o_addstr(&ctx->as_string, as_string);
5775 #endif
5776                 /* empty ()/{} or parse error? */
5777                 if (!pipe_list || pipe_list == ERR_PTR) {
5778                         /* parse_stream already emitted error msg */
5779 #if !BB_MMU
5780                         free(as_string);
5781 #endif
5782                         debug_printf_parse("parse_group return 1: "
5783                                 "parse_stream returned %p\n", pipe_list);
5784                         return 1;
5785                 }
5786                 command->group = pipe_list;
5787 #if !BB_MMU
5788                 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
5789                 command->group_as_string = as_string;
5790                 debug_printf_parse("end of group, remembering as:'%s'\n",
5791                                 command->group_as_string);
5792 #endif
5793         }
5794         debug_printf_parse("parse_group return 0\n");
5795         return 0;
5796         /* command remains "open", available for possible redirects */
5797 }
5798
5799 #if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT
5800 /* Subroutines for copying $(...) and `...` things */
5801 static void add_till_backquote(o_string *dest, struct in_str *input);
5802 /* '...' */
5803 static void add_till_single_quote(o_string *dest, struct in_str *input)
5804 {
5805         while (1) {
5806                 int ch = i_getch(input);
5807                 if (ch == EOF) {
5808                         syntax_error_unterm_ch('\'');
5809                         /*xfunc_die(); - redundant */
5810                 }
5811                 if (ch == '\'')
5812                         return;
5813                 o_addchr(dest, ch);
5814         }
5815 }
5816 /* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
5817 static void add_till_double_quote(o_string *dest, struct in_str *input)
5818 {
5819         while (1) {
5820                 int ch = i_getch(input);
5821                 if (ch == EOF) {
5822                         syntax_error_unterm_ch('"');
5823                         /*xfunc_die(); - redundant */
5824                 }
5825                 if (ch == '"')
5826                         return;
5827                 if (ch == '\\') {  /* \x. Copy both chars. */
5828                         o_addchr(dest, ch);
5829                         ch = i_getch(input);
5830                 }
5831                 o_addchr(dest, ch);
5832                 if (ch == '`') {
5833                         add_till_backquote(dest, input);
5834                         o_addchr(dest, ch);
5835                         continue;
5836                 }
5837                 //if (ch == '$') ...
5838         }
5839 }
5840 /* Process `cmd` - copy contents until "`" is seen. Complicated by
5841  * \` quoting.
5842  * "Within the backquoted style of command substitution, backslash
5843  * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
5844  * The search for the matching backquote shall be satisfied by the first
5845  * backquote found without a preceding backslash; during this search,
5846  * if a non-escaped backquote is encountered within a shell comment,
5847  * a here-document, an embedded command substitution of the $(command)
5848  * form, or a quoted string, undefined results occur. A single-quoted
5849  * or double-quoted string that begins, but does not end, within the
5850  * "`...`" sequence produces undefined results."
5851  * Example                               Output
5852  * echo `echo '\'TEST\`echo ZZ\`BEST`    \TESTZZBEST
5853  */
5854 static void add_till_backquote(o_string *dest, struct in_str *input)
5855 {
5856         while (1) {
5857                 int ch = i_getch(input);
5858                 if (ch == EOF) {
5859                         syntax_error_unterm_ch('`');
5860                         /*xfunc_die(); - redundant */
5861                 }
5862                 if (ch == '`')
5863                         return;
5864                 if (ch == '\\') {
5865                         /* \x. Copy both chars unless it is \` */
5866                         int ch2 = i_getch(input);
5867                         if (ch2 == EOF) {
5868                                 syntax_error_unterm_ch('`');
5869                                 /*xfunc_die(); - redundant */
5870                         }
5871                         if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
5872                                 o_addchr(dest, ch);
5873                         ch = ch2;
5874                 }
5875                 o_addchr(dest, ch);
5876         }
5877 }
5878 /* Process $(cmd) - copy contents until ")" is seen. Complicated by
5879  * quoting and nested ()s.
5880  * "With the $(command) style of command substitution, all characters
5881  * following the open parenthesis to the matching closing parenthesis
5882  * constitute the command. Any valid shell script can be used for command,
5883  * except a script consisting solely of redirections which produces
5884  * unspecified results."
5885  * Example                              Output
5886  * echo $(echo '(TEST)' BEST)           (TEST) BEST
5887  * echo $(echo 'TEST)' BEST)            TEST) BEST
5888  * echo $(echo \(\(TEST\) BEST)         ((TEST) BEST
5889  *
5890  * BUG: enter: echo $(( `printf '(\x28 1'` + `echo 2))` ))
5891  * on the command line, press Enter. You get > prompt which is impossible
5892  * to exit with ^C.
5893  */
5894 #define DOUBLE_CLOSE_CHAR_FLAG 0x80
5895 static void add_till_closing_paren(o_string *dest, struct in_str *input, char end_ch)
5896 {
5897         int count = 0;
5898         char dbl = end_ch & DOUBLE_CLOSE_CHAR_FLAG;
5899         end_ch &= (DOUBLE_CLOSE_CHAR_FLAG-1);
5900         while (1) {
5901                 int ch = i_getch(input);
5902                 if (ch == EOF) {
5903                         syntax_error_unterm_ch(')');
5904                         /*xfunc_die(); - redundant */
5905                 }
5906                 if (ch == '(' || ch == '{')
5907                         count++;
5908                 if (ch == ')' || ch == '}') {
5909                         count--;
5910                         if (count < 0 && ch == end_ch) {
5911                                 if (!dbl)
5912                                         break;
5913                                 if (i_peek(input) == ')') {
5914                                         i_getch(input);
5915                                         break;
5916                                 }
5917                         }
5918                 }
5919                 o_addchr(dest, ch);
5920                 if (ch == '\'') {
5921                         add_till_single_quote(dest, input);
5922                         o_addchr(dest, ch);
5923                         continue;
5924                 }
5925                 if (ch == '"') {
5926                         add_till_double_quote(dest, input);
5927                         o_addchr(dest, ch);
5928                         continue;
5929                 }
5930                 if (ch == '\\') {
5931                         /* \x. Copy verbatim. Important for  \(, \) */
5932                         ch = i_getch(input);
5933                         if (ch == EOF) {
5934                                 syntax_error_unterm_ch(')');
5935                                 /*xfunc_die(); - redundant */
5936                         }
5937                         o_addchr(dest, ch);
5938                         continue;
5939                 }
5940         }
5941 }
5942 #endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */
5943
5944 /* Return code: 0 for OK, 1 for syntax error */
5945 #if BB_MMU
5946 #define handle_dollar(as_string, dest, input) \
5947         handle_dollar(dest, input)
5948 #endif
5949 static int handle_dollar(o_string *as_string,
5950                 o_string *dest,
5951                 struct in_str *input)
5952 {
5953         int ch = i_peek(input);  /* first character after the $ */
5954         unsigned char quote_mask = dest->o_escape ? 0x80 : 0;
5955
5956         debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
5957         if (isalpha(ch)) {
5958                 ch = i_getch(input);
5959                 nommu_addchr(as_string, ch);
5960  make_var:
5961                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5962                 while (1) {
5963                         debug_printf_parse(": '%c'\n", ch);
5964                         o_addchr(dest, ch | quote_mask);
5965                         quote_mask = 0;
5966                         ch = i_peek(input);
5967                         if (!isalnum(ch) && ch != '_')
5968                                 break;
5969                         ch = i_getch(input);
5970                         nommu_addchr(as_string, ch);
5971                 }
5972                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5973         } else if (isdigit(ch)) {
5974  make_one_char_var:
5975                 ch = i_getch(input);
5976                 nommu_addchr(as_string, ch);
5977                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5978                 debug_printf_parse(": '%c'\n", ch);
5979                 o_addchr(dest, ch | quote_mask);
5980                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5981         } else switch (ch) {
5982         case '$': /* pid */
5983         case '!': /* last bg pid */
5984         case '?': /* last exit code */
5985         case '#': /* number of args */
5986         case '*': /* args */
5987         case '@': /* args */
5988                 goto make_one_char_var;
5989         case '{': {
5990                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5991
5992                 ch = i_getch(input); /* eat '{' */
5993                 nommu_addchr(as_string, ch);
5994
5995                 ch = i_getch(input); /* first char after '{' */
5996                 nommu_addchr(as_string, ch);
5997                 /* It should be ${?}, or ${#var},
5998                  * or even ${?+subst} - operator acting on a special variable,
5999                  * or the beginning of variable name.
6000                  */
6001                 if (!strchr("$!?#*@_", ch) && !isalnum(ch)) { /* not one of those */
6002  bad_dollar_syntax:
6003                         syntax_error_unterm_str("${name}");
6004                         debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
6005                         return 1;
6006                 }
6007                 ch |= quote_mask;
6008
6009                 /* It's possible to just call add_till_closing_paren() at this point.
6010                  * However, this regresses some of our testsuite cases
6011                  * which check invalid constructs like ${%}.
6012                  * Oh well... let's check that the var name part is fine... */
6013
6014                 while (1) {
6015                         o_addchr(dest, ch);
6016                         debug_printf_parse(": '%c'\n", ch);
6017
6018                         ch = i_getch(input);
6019                         nommu_addchr(as_string, ch);
6020                         if (ch == '}')
6021                                 break;
6022
6023                         if (!isalnum(ch) && ch != '_') {
6024                                 /* handle parameter expansions
6025                                  * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
6026                                  */
6027                                 if (!strchr("%#:-=+?", ch)) /* ${var<bad_char>... */
6028                                         goto bad_dollar_syntax;
6029                                 /* Eat everything until closing '}' */
6030                                 o_addchr(dest, ch);
6031 //TODO: add nommu_addchr hack here
6032                                 add_till_closing_paren(dest, input, '}');
6033                                 break;
6034                         }
6035                 }
6036                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6037                 break;
6038         }
6039 #if ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK
6040         case '(': {
6041 # if !BB_MMU
6042                 int pos;
6043 # endif
6044                 ch = i_getch(input);
6045                 nommu_addchr(as_string, ch);
6046 # if ENABLE_SH_MATH_SUPPORT
6047                 if (i_peek(input) == '(') {
6048                         ch = i_getch(input);
6049                         nommu_addchr(as_string, ch);
6050                         o_addchr(dest, SPECIAL_VAR_SYMBOL);
6051                         o_addchr(dest, /*quote_mask |*/ '+');
6052 #  if !BB_MMU
6053                         pos = dest->length;
6054 #  endif
6055                         add_till_closing_paren(dest, input, ')' | DOUBLE_CLOSE_CHAR_FLAG);
6056 #  if !BB_MMU
6057                         if (as_string) {
6058                                 o_addstr(as_string, dest->data + pos);
6059                                 o_addchr(as_string, ')');
6060                                 o_addchr(as_string, ')');
6061                         }
6062 #  endif
6063                         o_addchr(dest, SPECIAL_VAR_SYMBOL);
6064                         break;
6065                 }
6066 # endif
6067 # if ENABLE_HUSH_TICK
6068                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6069                 o_addchr(dest, quote_mask | '`');
6070 #  if !BB_MMU
6071                 pos = dest->length;
6072 #  endif
6073                 add_till_closing_paren(dest, input, ')');
6074 #  if !BB_MMU
6075                 if (as_string) {
6076                         o_addstr(as_string, dest->data + pos);
6077                         o_addchr(as_string, ')');
6078                 }
6079 #  endif
6080                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6081 # endif
6082                 break;
6083         }
6084 #endif
6085         case '_':
6086                 ch = i_getch(input);
6087                 nommu_addchr(as_string, ch);
6088                 ch = i_peek(input);
6089                 if (isalnum(ch)) { /* it's $_name or $_123 */
6090                         ch = '_';
6091                         goto make_var;
6092                 }
6093                 /* else: it's $_ */
6094         /* TODO: $_ and $-: */
6095         /* $_ Shell or shell script name; or last argument of last command
6096          * (if last command wasn't a pipe; if it was, bash sets $_ to "");
6097          * but in command's env, set to full pathname used to invoke it */
6098         /* $- Option flags set by set builtin or shell options (-i etc) */
6099         default:
6100                 o_addQchr(dest, '$');
6101         }
6102         debug_printf_parse("handle_dollar return 0\n");
6103         return 0;
6104 }
6105
6106 #if BB_MMU
6107 #define parse_stream_dquoted(as_string, dest, input, dquote_end) \
6108         parse_stream_dquoted(dest, input, dquote_end)
6109 #endif
6110 static int parse_stream_dquoted(o_string *as_string,
6111                 o_string *dest,
6112                 struct in_str *input,
6113                 int dquote_end)
6114 {
6115         int ch;
6116         int next;
6117
6118  again:
6119         ch = i_getch(input);
6120         if (ch != EOF)
6121                 nommu_addchr(as_string, ch);
6122         if (ch == dquote_end) { /* may be only '"' or EOF */
6123                 if (dest->o_assignment == NOT_ASSIGNMENT)
6124                         dest->o_escape ^= 1;
6125                 debug_printf_parse("parse_stream_dquoted return 0\n");
6126                 return 0;
6127         }
6128         /* note: can't move it above ch == dquote_end check! */
6129         if (ch == EOF) {
6130                 syntax_error_unterm_ch('"');
6131                 /*xfunc_die(); - redundant */
6132         }
6133         next = '\0';
6134         if (ch != '\n') {
6135                 next = i_peek(input);
6136         }
6137         debug_printf_parse("\" ch=%c (%d) escape=%d\n",
6138                                         ch, ch, dest->o_escape);
6139         if (ch == '\\') {
6140                 if (next == EOF) {
6141                         syntax_error("\\<eof>");
6142                         xfunc_die();
6143                 }
6144                 /* bash:
6145                  * "The backslash retains its special meaning [in "..."]
6146                  * only when followed by one of the following characters:
6147                  * $, `, ", \, or <newline>.  A double quote may be quoted
6148                  * within double quotes by preceding it with a backslash."
6149                  */
6150                 if (strchr("$`\"\\\n", next) != NULL) {
6151                         ch = i_getch(input);
6152                         if (ch != '\n') {
6153                                 o_addqchr(dest, ch);
6154                                 nommu_addchr(as_string, ch);
6155                         }
6156                 } else {
6157                         o_addqchr(dest, '\\');
6158                         nommu_addchr(as_string, '\\');
6159                 }
6160                 goto again;
6161         }
6162         if (ch == '$') {
6163                 if (handle_dollar(as_string, dest, input) != 0) {
6164                         debug_printf_parse("parse_stream_dquoted return 1: "
6165                                         "handle_dollar returned non-0\n");
6166                         return 1;
6167                 }
6168                 goto again;
6169         }
6170 #if ENABLE_HUSH_TICK
6171         if (ch == '`') {
6172                 //int pos = dest->length;
6173                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6174                 o_addchr(dest, 0x80 | '`');
6175                 add_till_backquote(dest, input);
6176                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6177                 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
6178                 goto again;
6179         }
6180 #endif
6181         o_addQchr(dest, ch);
6182         if (ch == '='
6183          && (dest->o_assignment == MAYBE_ASSIGNMENT
6184             || dest->o_assignment == WORD_IS_KEYWORD)
6185          && is_well_formed_var_name(dest->data, '=')
6186         ) {
6187                 dest->o_assignment = DEFINITELY_ASSIGNMENT;
6188         }
6189         goto again;
6190 }
6191
6192 /*
6193  * Scan input until EOF or end_trigger char.
6194  * Return a list of pipes to execute, or NULL on EOF
6195  * or if end_trigger character is met.
6196  * On syntax error, exit is shell is not interactive,
6197  * reset parsing machinery and start parsing anew,
6198  * or return ERR_PTR.
6199  */
6200 static struct pipe *parse_stream(char **pstring,
6201                 struct in_str *input,
6202                 int end_trigger)
6203 {
6204         struct parse_context ctx;
6205         o_string dest = NULL_O_STRING;
6206         int is_in_dquote;
6207         int heredoc_cnt;
6208
6209         /* Double-quote state is handled in the state variable is_in_dquote.
6210          * A single-quote triggers a bypass of the main loop until its mate is
6211          * found.  When recursing, quote state is passed in via dest->o_escape.
6212          */
6213         debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
6214                         end_trigger ? end_trigger : 'X');
6215         debug_enter();
6216
6217         /* If very first arg is "" or '', dest.data may end up NULL.
6218          * Preventing this: */
6219         o_addchr(&dest, '\0');
6220         dest.length = 0;
6221
6222         G.ifs = get_local_var_value("IFS");
6223         if (G.ifs == NULL)
6224                 G.ifs = defifs;
6225
6226  reset:
6227 #if ENABLE_HUSH_INTERACTIVE
6228         input->promptmode = 0; /* PS1 */
6229 #endif
6230         /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */
6231         initialize_context(&ctx);
6232         is_in_dquote = 0;
6233         heredoc_cnt = 0;
6234         while (1) {
6235                 const char *is_ifs;
6236                 const char *is_special;
6237                 int ch;
6238                 int next;
6239                 int redir_fd;
6240                 redir_type redir_style;
6241
6242                 if (is_in_dquote) {
6243                         /* dest.o_quoted = 1; - already is (see below) */
6244                         if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) {
6245                                 goto parse_error;
6246                         }
6247                         /* We reached closing '"' */
6248                         is_in_dquote = 0;
6249                 }
6250                 ch = i_getch(input);
6251                 debug_printf_parse(": ch=%c (%d) escape=%d\n",
6252                                                 ch, ch, dest.o_escape);
6253                 if (ch == EOF) {
6254                         struct pipe *pi;
6255
6256                         if (heredoc_cnt) {
6257                                 syntax_error_unterm_str("here document");
6258                                 goto parse_error;
6259                         }
6260                         /* end_trigger == '}' case errors out earlier,
6261                          * checking only ')' */
6262                         if (end_trigger == ')') {
6263                                 syntax_error_unterm_ch('('); /* exits */
6264                                 /* goto parse_error; */
6265                         }
6266
6267                         if (done_word(&dest, &ctx)) {
6268                                 goto parse_error;
6269                         }
6270                         o_free(&dest);
6271                         done_pipe(&ctx, PIPE_SEQ);
6272                         pi = ctx.list_head;
6273                         /* If we got nothing... */
6274                         /* (this makes bare "&" cmd a no-op.
6275                          * bash says: "syntax error near unexpected token '&'") */
6276                         if (pi->num_cmds == 0
6277                             IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
6278                         ) {
6279                                 free_pipe_list(pi);
6280                                 pi = NULL;
6281                         }
6282 #if !BB_MMU
6283                         debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
6284                         if (pstring)
6285                                 *pstring = ctx.as_string.data;
6286                         else
6287                                 o_free_unsafe(&ctx.as_string);
6288 #endif
6289                         debug_leave();
6290                         debug_printf_parse("parse_stream return %p\n", pi);
6291                         return pi;
6292                 }
6293                 nommu_addchr(&ctx.as_string, ch);
6294
6295                 next = '\0';
6296                 if (ch != '\n')
6297                         next = i_peek(input);
6298
6299                 is_special = "{}<>;&|()#'" /* special outside of "str" */
6300                                 "\\$\"" IF_HUSH_TICK("`"); /* always special */
6301                 /* Are { and } special here? */
6302                 if (ctx.command->argv /* word [word]{... - non-special */
6303                  || dest.length       /* word{... - non-special */
6304                  || dest.o_quoted     /* ""{... - non-special */
6305                  || (next != ';'            /* }; - special */
6306                     && next != ')'          /* }) - special */
6307                     && next != '&'          /* }& and }&& ... - special */
6308                     && next != '|'          /* }|| ... - special */
6309                     && !strchr(G.ifs, next) /* {word - non-special */
6310                     )
6311                 ) {
6312                         /* They are not special, skip "{}" */
6313                         is_special += 2;
6314                 }
6315                 is_special = strchr(is_special, ch);
6316                 is_ifs = strchr(G.ifs, ch);
6317
6318                 if (!is_special && !is_ifs) { /* ordinary char */
6319  ordinary_char:
6320                         o_addQchr(&dest, ch);
6321                         if ((dest.o_assignment == MAYBE_ASSIGNMENT
6322                             || dest.o_assignment == WORD_IS_KEYWORD)
6323                          && ch == '='
6324                          && is_well_formed_var_name(dest.data, '=')
6325                         ) {
6326                                 dest.o_assignment = DEFINITELY_ASSIGNMENT;
6327                         }
6328                         continue;
6329                 }
6330
6331                 if (is_ifs) {
6332                         if (done_word(&dest, &ctx)) {
6333                                 goto parse_error;
6334                         }
6335                         if (ch == '\n') {
6336 #if ENABLE_HUSH_CASE
6337                                 /* "case ... in <newline> word) ..." -
6338                                  * newlines are ignored (but ';' wouldn't be) */
6339                                 if (ctx.command->argv == NULL
6340                                  && ctx.ctx_res_w == RES_MATCH
6341                                 ) {
6342                                         continue;
6343                                 }
6344 #endif
6345                                 /* Treat newline as a command separator. */
6346                                 done_pipe(&ctx, PIPE_SEQ);
6347                                 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
6348                                 if (heredoc_cnt) {
6349                                         if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
6350                                                 goto parse_error;
6351                                         }
6352                                         heredoc_cnt = 0;
6353                                 }
6354                                 dest.o_assignment = MAYBE_ASSIGNMENT;
6355                                 ch = ';';
6356                                 /* note: if (is_ifs) continue;
6357                                  * will still trigger for us */
6358                         }
6359                 }
6360
6361                 /* "cmd}" or "cmd }..." without semicolon or &:
6362                  * } is an ordinary char in this case, even inside { cmd; }
6363                  * Pathological example: { ""}; } should exec "}" cmd
6364                  */
6365                 if (ch == '}') {
6366                         if (!IS_NULL_CMD(ctx.command) /* cmd } */
6367                          || dest.length != 0 /* word} */
6368                          || dest.o_quoted    /* ""} */
6369                         ) {
6370                                 goto ordinary_char;
6371                         }
6372                         if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */
6373                                 goto skip_end_trigger;
6374                         /* else: } does terminate a group */
6375                 }
6376
6377                 if (end_trigger && end_trigger == ch
6378                  && (ch != ';' || heredoc_cnt == 0)
6379 #if ENABLE_HUSH_CASE
6380                  && (ch != ')'
6381                     || ctx.ctx_res_w != RES_MATCH
6382                     || (!dest.o_quoted && strcmp(dest.data, "esac") == 0)
6383                     )
6384 #endif
6385                 ) {
6386                         if (heredoc_cnt) {
6387                                 /* This is technically valid:
6388                                  * { cat <<HERE; }; echo Ok
6389                                  * heredoc
6390                                  * heredoc
6391                                  * HERE
6392                                  * but we don't support this.
6393                                  * We require heredoc to be in enclosing {}/(),
6394                                  * if any.
6395                                  */
6396                                 syntax_error_unterm_str("here document");
6397                                 goto parse_error;
6398                         }
6399                         if (done_word(&dest, &ctx)) {
6400                                 goto parse_error;
6401                         }
6402                         done_pipe(&ctx, PIPE_SEQ);
6403                         dest.o_assignment = MAYBE_ASSIGNMENT;
6404                         /* Do we sit outside of any if's, loops or case's? */
6405                         if (!HAS_KEYWORDS
6406                          IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
6407                         ) {
6408                                 o_free(&dest);
6409 #if !BB_MMU
6410                                 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
6411                                 if (pstring)
6412                                         *pstring = ctx.as_string.data;
6413                                 else
6414                                         o_free_unsafe(&ctx.as_string);
6415 #endif
6416                                 debug_leave();
6417                                 debug_printf_parse("parse_stream return %p: "
6418                                                 "end_trigger char found\n",
6419                                                 ctx.list_head);
6420                                 return ctx.list_head;
6421                         }
6422                 }
6423  skip_end_trigger:
6424                 if (is_ifs)
6425                         continue;
6426
6427                 /* Catch <, > before deciding whether this word is
6428                  * an assignment. a=1 2>z b=2: b=2 is still assignment */
6429                 switch (ch) {
6430                 case '>':
6431                         redir_fd = redirect_opt_num(&dest);
6432                         if (done_word(&dest, &ctx)) {
6433                                 goto parse_error;
6434                         }
6435                         redir_style = REDIRECT_OVERWRITE;
6436                         if (next == '>') {
6437                                 redir_style = REDIRECT_APPEND;
6438                                 ch = i_getch(input);
6439                                 nommu_addchr(&ctx.as_string, ch);
6440                         }
6441 #if 0
6442                         else if (next == '(') {
6443                                 syntax_error(">(process) not supported");
6444                                 goto parse_error;
6445                         }
6446 #endif
6447                         if (parse_redirect(&ctx, redir_fd, redir_style, input))
6448                                 goto parse_error;
6449                         continue; /* back to top of while (1) */
6450                 case '<':
6451                         redir_fd = redirect_opt_num(&dest);
6452                         if (done_word(&dest, &ctx)) {
6453                                 goto parse_error;
6454                         }
6455                         redir_style = REDIRECT_INPUT;
6456                         if (next == '<') {
6457                                 redir_style = REDIRECT_HEREDOC;
6458                                 heredoc_cnt++;
6459                                 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
6460                                 ch = i_getch(input);
6461                                 nommu_addchr(&ctx.as_string, ch);
6462                         } else if (next == '>') {
6463                                 redir_style = REDIRECT_IO;
6464                                 ch = i_getch(input);
6465                                 nommu_addchr(&ctx.as_string, ch);
6466                         }
6467 #if 0
6468                         else if (next == '(') {
6469                                 syntax_error("<(process) not supported");
6470                                 goto parse_error;
6471                         }
6472 #endif
6473                         if (parse_redirect(&ctx, redir_fd, redir_style, input))
6474                                 goto parse_error;
6475                         continue; /* back to top of while (1) */
6476                 }
6477
6478                 if (dest.o_assignment == MAYBE_ASSIGNMENT
6479                  /* check that we are not in word in "a=1 2>word b=1": */
6480                  && !ctx.pending_redirect
6481                 ) {
6482                         /* ch is a special char and thus this word
6483                          * cannot be an assignment */
6484                         dest.o_assignment = NOT_ASSIGNMENT;
6485                 }
6486
6487                 /* Note: nommu_addchr(&ctx.as_string, ch) is already done */
6488
6489                 switch (ch) {
6490                 case '#':
6491                         if (dest.length == 0) {
6492                                 while (1) {
6493                                         ch = i_peek(input);
6494                                         if (ch == EOF || ch == '\n')
6495                                                 break;
6496                                         i_getch(input);
6497                                         /* note: we do not add it to &ctx.as_string */
6498                                 }
6499                                 nommu_addchr(&ctx.as_string, '\n');
6500                         } else {
6501                                 o_addQchr(&dest, ch);
6502                         }
6503                         break;
6504                 case '\\':
6505                         if (next == EOF) {
6506                                 syntax_error("\\<eof>");
6507                                 xfunc_die();
6508                         }
6509                         ch = i_getch(input);
6510                         if (ch != '\n') {
6511                                 o_addchr(&dest, '\\');
6512                                 /*nommu_addchr(&ctx.as_string, '\\'); - already done */
6513                                 o_addchr(&dest, ch);
6514                                 nommu_addchr(&ctx.as_string, ch);
6515                                 /* Example: echo Hello \2>file
6516                                  * we need to know that word 2 is quoted */
6517                                 dest.o_quoted = 1;
6518                         }
6519 #if !BB_MMU
6520                         else {
6521                                 /* It's "\<newline>". Remove trailing '\' from ctx.as_string */
6522                                 ctx.as_string.data[--ctx.as_string.length] = '\0';
6523                         }
6524 #endif
6525                         break;
6526                 case '$':
6527                         if (handle_dollar(&ctx.as_string, &dest, input) != 0) {
6528                                 debug_printf_parse("parse_stream parse error: "
6529                                         "handle_dollar returned non-0\n");
6530                                 goto parse_error;
6531                         }
6532                         break;
6533                 case '\'':
6534                         dest.o_quoted = 1;
6535                         while (1) {
6536                                 ch = i_getch(input);
6537                                 if (ch == EOF) {
6538                                         syntax_error_unterm_ch('\'');
6539                                         /*xfunc_die(); - redundant */
6540                                 }
6541                                 nommu_addchr(&ctx.as_string, ch);
6542                                 if (ch == '\'')
6543                                         break;
6544                                 o_addqchr(&dest, ch);
6545                         }
6546                         break;
6547                 case '"':
6548                         dest.o_quoted = 1;
6549                         is_in_dquote ^= 1; /* invert */
6550                         if (dest.o_assignment == NOT_ASSIGNMENT)
6551                                 dest.o_escape ^= 1;
6552                         break;
6553 #if ENABLE_HUSH_TICK
6554                 case '`': {
6555 #if !BB_MMU
6556                         int pos;
6557 #endif
6558                         o_addchr(&dest, SPECIAL_VAR_SYMBOL);
6559                         o_addchr(&dest, '`');
6560 #if !BB_MMU
6561                         pos = dest.length;
6562 #endif
6563                         add_till_backquote(&dest, input);
6564 #if !BB_MMU
6565                         o_addstr(&ctx.as_string, dest.data + pos);
6566                         o_addchr(&ctx.as_string, '`');
6567 #endif
6568                         o_addchr(&dest, SPECIAL_VAR_SYMBOL);
6569                         //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
6570                         break;
6571                 }
6572 #endif
6573                 case ';':
6574 #if ENABLE_HUSH_CASE
6575  case_semi:
6576 #endif
6577                         if (done_word(&dest, &ctx)) {
6578                                 goto parse_error;
6579                         }
6580                         done_pipe(&ctx, PIPE_SEQ);
6581 #if ENABLE_HUSH_CASE
6582                         /* Eat multiple semicolons, detect
6583                          * whether it means something special */
6584                         while (1) {
6585                                 ch = i_peek(input);
6586                                 if (ch != ';')
6587                                         break;
6588                                 ch = i_getch(input);
6589                                 nommu_addchr(&ctx.as_string, ch);
6590                                 if (ctx.ctx_res_w == RES_CASE_BODY) {
6591                                         ctx.ctx_dsemicolon = 1;
6592                                         ctx.ctx_res_w = RES_MATCH;
6593                                         break;
6594                                 }
6595                         }
6596 #endif
6597  new_cmd:
6598                         /* We just finished a cmd. New one may start
6599                          * with an assignment */
6600                         dest.o_assignment = MAYBE_ASSIGNMENT;
6601                         break;
6602                 case '&':
6603                         if (done_word(&dest, &ctx)) {
6604                                 goto parse_error;
6605                         }
6606                         if (next == '&') {
6607                                 ch = i_getch(input);
6608                                 nommu_addchr(&ctx.as_string, ch);
6609                                 done_pipe(&ctx, PIPE_AND);
6610                         } else {
6611                                 done_pipe(&ctx, PIPE_BG);
6612                         }
6613                         goto new_cmd;
6614                 case '|':
6615                         if (done_word(&dest, &ctx)) {
6616                                 goto parse_error;
6617                         }
6618 #if ENABLE_HUSH_CASE
6619                         if (ctx.ctx_res_w == RES_MATCH)
6620                                 break; /* we are in case's "word | word)" */
6621 #endif
6622                         if (next == '|') { /* || */
6623                                 ch = i_getch(input);
6624                                 nommu_addchr(&ctx.as_string, ch);
6625                                 done_pipe(&ctx, PIPE_OR);
6626                         } else {
6627                                 /* we could pick up a file descriptor choice here
6628                                  * with redirect_opt_num(), but bash doesn't do it.
6629                                  * "echo foo 2| cat" yields "foo 2". */
6630                                 done_command(&ctx);
6631 #if !BB_MMU
6632                                 o_reset_to_empty_unquoted(&ctx.as_string);
6633 #endif
6634                         }
6635                         goto new_cmd;
6636                 case '(':
6637 #if ENABLE_HUSH_CASE
6638                         /* "case... in [(]word)..." - skip '(' */
6639                         if (ctx.ctx_res_w == RES_MATCH
6640                          && ctx.command->argv == NULL /* not (word|(... */
6641                          && dest.length == 0 /* not word(... */
6642                          && dest.o_quoted == 0 /* not ""(... */
6643                         ) {
6644                                 continue;
6645                         }
6646 #endif
6647                 case '{':
6648                         if (parse_group(&dest, &ctx, input, ch) != 0) {
6649                                 goto parse_error;
6650                         }
6651                         goto new_cmd;
6652                 case ')':
6653 #if ENABLE_HUSH_CASE
6654                         if (ctx.ctx_res_w == RES_MATCH)
6655                                 goto case_semi;
6656 #endif
6657                 case '}':
6658                         /* proper use of this character is caught by end_trigger:
6659                          * if we see {, we call parse_group(..., end_trigger='}')
6660                          * and it will match } earlier (not here). */
6661                         syntax_error_unexpected_ch(ch);
6662                         goto parse_error;
6663                 default:
6664                         if (HUSH_DEBUG)
6665                                 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
6666                 }
6667         } /* while (1) */
6668
6669  parse_error:
6670         {
6671                 struct parse_context *pctx;
6672                 IF_HAS_KEYWORDS(struct parse_context *p2;)
6673
6674                 /* Clean up allocated tree.
6675                  * Sample for finding leaks on syntax error recovery path.
6676                  * Run it from interactive shell, watch pmap `pidof hush`.
6677                  * while if false; then false; fi; do break; fi
6678                  * Samples to catch leaks at execution:
6679                  * while if (true | {true;}); then echo ok; fi; do break; done
6680                  * while if (true | {true;}); then echo ok; fi; do (if echo ok; break; then :; fi) | cat; break; done
6681                  */
6682                 pctx = &ctx;
6683                 do {
6684                         /* Update pipe/command counts,
6685                          * otherwise freeing may miss some */
6686                         done_pipe(pctx, PIPE_SEQ);
6687                         debug_printf_clean("freeing list %p from ctx %p\n",
6688                                         pctx->list_head, pctx);
6689                         debug_print_tree(pctx->list_head, 0);
6690                         free_pipe_list(pctx->list_head);
6691                         debug_printf_clean("freed list %p\n", pctx->list_head);
6692 #if !BB_MMU
6693                         o_free_unsafe(&pctx->as_string);
6694 #endif
6695                         IF_HAS_KEYWORDS(p2 = pctx->stack;)
6696                         if (pctx != &ctx) {
6697                                 free(pctx);
6698                         }
6699                         IF_HAS_KEYWORDS(pctx = p2;)
6700                 } while (HAS_KEYWORDS && pctx);
6701                 /* Free text, clear all dest fields */
6702                 o_free(&dest);
6703                 /* If we are not in top-level parse, we return,
6704                  * our caller will propagate error.
6705                  */
6706                 if (end_trigger != ';') {
6707 #if !BB_MMU
6708                         if (pstring)
6709                                 *pstring = NULL;
6710 #endif
6711                         debug_leave();
6712                         return ERR_PTR;
6713                 }
6714                 /* Discard cached input, force prompt */
6715                 input->p = NULL;
6716                 IF_HUSH_INTERACTIVE(input->promptme = 1;)
6717                 goto reset;
6718         }
6719 }
6720
6721 /* Executing from string: eval, sh -c '...'
6722  *          or from file: /etc/profile, . file, sh <script>, sh (intereactive)
6723  * end_trigger controls how often we stop parsing
6724  * NUL: parse all, execute, return
6725  * ';': parse till ';' or newline, execute, repeat till EOF
6726  */
6727 static void parse_and_run_stream(struct in_str *inp, int end_trigger)
6728 {
6729         /* Why we need empty flag?
6730          * An obscure corner case "false; ``; echo $?":
6731          * empty command in `` should still set $? to 0.
6732          * But we can't just set $? to 0 at the start,
6733          * this breaks "false; echo `echo $?`" case.
6734          */
6735         bool empty = 1;
6736         while (1) {
6737                 struct pipe *pipe_list;
6738
6739                 pipe_list = parse_stream(NULL, inp, end_trigger);
6740                 if (!pipe_list) { /* EOF */
6741                         if (empty)
6742                                 G.last_exitcode = 0;
6743                         break;
6744                 }
6745                 debug_print_tree(pipe_list, 0);
6746                 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
6747                 run_and_free_list(pipe_list);
6748                 empty = 0;
6749         }
6750 }
6751
6752 static void parse_and_run_string(const char *s)
6753 {
6754         struct in_str input;
6755         setup_string_in_str(&input, s);
6756         parse_and_run_stream(&input, '\0');
6757 }
6758
6759 static void parse_and_run_file(FILE *f)
6760 {
6761         struct in_str input;
6762         setup_file_in_str(&input, f);
6763         parse_and_run_stream(&input, ';');
6764 }
6765
6766 /* Called a few times only (or even once if "sh -c") */
6767 static void init_sigmasks(void)
6768 {
6769         unsigned sig;
6770         unsigned mask;
6771         sigset_t old_blocked_set;
6772
6773         if (!G.inherited_set_is_saved) {
6774                 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
6775                 G.inherited_set = G.blocked_set;
6776         }
6777         old_blocked_set = G.blocked_set;
6778
6779         mask = (1 << SIGQUIT);
6780         if (G_interactive_fd) {
6781                 mask = (1 << SIGQUIT) | SPECIAL_INTERACTIVE_SIGS;
6782                 if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */
6783                         mask |= SPECIAL_JOB_SIGS;
6784         }
6785         G.non_DFL_mask = mask;
6786
6787         sig = 0;
6788         while (mask) {
6789                 if (mask & 1)
6790                         sigaddset(&G.blocked_set, sig);
6791                 mask >>= 1;
6792                 sig++;
6793         }
6794         sigdelset(&G.blocked_set, SIGCHLD);
6795
6796         if (memcmp(&old_blocked_set, &G.blocked_set, sizeof(old_blocked_set)) != 0)
6797                 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
6798
6799         /* POSIX allows shell to re-enable SIGCHLD
6800          * even if it was SIG_IGN on entry */
6801 #if ENABLE_HUSH_FAST
6802         G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
6803         if (!G.inherited_set_is_saved)
6804                 signal(SIGCHLD, SIGCHLD_handler);
6805 #else
6806         if (!G.inherited_set_is_saved)
6807                 signal(SIGCHLD, SIG_DFL);
6808 #endif
6809
6810         G.inherited_set_is_saved = 1;
6811 }
6812
6813 #if ENABLE_HUSH_JOB
6814 /* helper */
6815 static void maybe_set_to_sigexit(int sig)
6816 {
6817         void (*handler)(int);
6818         /* non_DFL_mask'ed signals are, well, masked,
6819          * no need to set handler for them.
6820          */
6821         if (!((G.non_DFL_mask >> sig) & 1)) {
6822                 handler = signal(sig, sigexit);
6823                 if (handler == SIG_IGN) /* oops... restore back to IGN! */
6824                         signal(sig, handler);
6825         }
6826 }
6827 /* Set handlers to restore tty pgrp and exit */
6828 static void set_fatal_handlers(void)
6829 {
6830         /* We _must_ restore tty pgrp on fatal signals */
6831         if (HUSH_DEBUG) {
6832                 maybe_set_to_sigexit(SIGILL );
6833                 maybe_set_to_sigexit(SIGFPE );
6834                 maybe_set_to_sigexit(SIGBUS );
6835                 maybe_set_to_sigexit(SIGSEGV);
6836                 maybe_set_to_sigexit(SIGTRAP);
6837         } /* else: hush is perfect. what SEGV? */
6838         maybe_set_to_sigexit(SIGABRT);
6839         /* bash 3.2 seems to handle these just like 'fatal' ones */
6840         maybe_set_to_sigexit(SIGPIPE);
6841         maybe_set_to_sigexit(SIGALRM);
6842         /* if we are interactive, SIGHUP, SIGTERM and SIGINT are masked.
6843          * if we aren't interactive... but in this case
6844          * we never want to restore pgrp on exit, and this fn is not called */
6845         /*maybe_set_to_sigexit(SIGHUP );*/
6846         /*maybe_set_to_sigexit(SIGTERM);*/
6847         /*maybe_set_to_sigexit(SIGINT );*/
6848 }
6849 #endif
6850
6851 static int set_mode(const char cstate, const char mode)
6852 {
6853         int state = (cstate == '-' ? 1 : 0);
6854         switch (mode) {
6855                 case 'n': G.fake_mode = state; break;
6856                 case 'x': /*G.debug_mode = state;*/ break;
6857                 default:  return EXIT_FAILURE;
6858         }
6859         return EXIT_SUCCESS;
6860 }
6861
6862 int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
6863 int hush_main(int argc, char **argv)
6864 {
6865         static const struct variable const_shell_ver = {
6866                 .next = NULL,
6867                 .varstr = (char*)hush_version_str,
6868                 .max_len = 1, /* 0 can provoke free(name) */
6869                 .flg_export = 1,
6870                 .flg_read_only = 1,
6871         };
6872         int opt;
6873         unsigned builtin_argc;
6874         char **e;
6875         struct variable *cur_var;
6876
6877         INIT_G();
6878         if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, it is already done */
6879                 G.last_exitcode = EXIT_SUCCESS;
6880 #if !BB_MMU
6881         G.argv0_for_re_execing = argv[0];
6882 #endif
6883         /* Deal with HUSH_VERSION */
6884         G.shell_ver = const_shell_ver; /* copying struct here */
6885         G.top_var = &G.shell_ver;
6886         debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
6887         unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
6888         /* Initialize our shell local variables with the values
6889          * currently living in the environment */
6890         cur_var = G.top_var;
6891         e = environ;
6892         if (e) while (*e) {
6893                 char *value = strchr(*e, '=');
6894                 if (value) { /* paranoia */
6895                         cur_var->next = xzalloc(sizeof(*cur_var));
6896                         cur_var = cur_var->next;
6897                         cur_var->varstr = *e;
6898                         cur_var->max_len = strlen(*e);
6899                         cur_var->flg_export = 1;
6900                 }
6901                 e++;
6902         }
6903         /* reinstate HUSH_VERSION */
6904         debug_printf_env("putenv '%s'\n", hush_version_str);
6905         putenv((char *)hush_version_str);
6906
6907         /* Export PWD */
6908         set_pwd_var(/*exp:*/ 1);
6909         /* bash also exports SHLVL and _,
6910          * and sets (but doesn't export) the following variables:
6911          * BASH=/bin/bash
6912          * BASH_VERSINFO=([0]="3" [1]="2" [2]="0" [3]="1" [4]="release" [5]="i386-pc-linux-gnu")
6913          * BASH_VERSION='3.2.0(1)-release'
6914          * HOSTTYPE=i386
6915          * MACHTYPE=i386-pc-linux-gnu
6916          * OSTYPE=linux-gnu
6917          * HOSTNAME=<xxxxxxxxxx>
6918          * PPID=<NNNNN> - we also do it elsewhere
6919          * EUID=<NNNNN>
6920          * UID=<NNNNN>
6921          * GROUPS=()
6922          * LINES=<NNN>
6923          * COLUMNS=<NNN>
6924          * BASH_ARGC=()
6925          * BASH_ARGV=()
6926          * BASH_LINENO=()
6927          * BASH_SOURCE=()
6928          * DIRSTACK=()
6929          * PIPESTATUS=([0]="0")
6930          * HISTFILE=/<xxx>/.bash_history
6931          * HISTFILESIZE=500
6932          * HISTSIZE=500
6933          * MAILCHECK=60
6934          * PATH=/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:.
6935          * SHELL=/bin/bash
6936          * SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor
6937          * TERM=dumb
6938          * OPTERR=1
6939          * OPTIND=1
6940          * IFS=$' \t\n'
6941          * PS1='\s-\v\$ '
6942          * PS2='> '
6943          * PS4='+ '
6944          */
6945
6946 #if ENABLE_FEATURE_EDITING
6947         G.line_input_state = new_line_input_t(FOR_SHELL);
6948 #endif
6949         G.global_argc = argc;
6950         G.global_argv = argv;
6951         /* Initialize some more globals to non-zero values */
6952         cmdedit_update_prompt();
6953
6954         if (setjmp(die_jmp)) {
6955                 /* xfunc has failed! die die die */
6956                 /* no EXIT traps, this is an escape hatch! */
6957                 G.exiting = 1;
6958                 hush_exit(xfunc_error_retval);
6959         }
6960
6961         /* Shell is non-interactive at first. We need to call
6962          * init_sigmasks() if we are going to execute "sh <script>",
6963          * "sh -c <cmds>" or login shell's /etc/profile and friends.
6964          * If we later decide that we are interactive, we run init_sigmasks()
6965          * in order to intercept (more) signals.
6966          */
6967
6968         /* Parse options */
6969         /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
6970         builtin_argc = 0;
6971         while (1) {
6972                 opt = getopt(argc, argv, "+c:xins"
6973 #if !BB_MMU
6974                                 "<:$:R:V:"
6975 # if ENABLE_HUSH_FUNCTIONS
6976                                 "F:"
6977 # endif
6978 #endif
6979                 );
6980                 if (opt <= 0)
6981                         break;
6982                 switch (opt) {
6983                 case 'c':
6984                         /* Possibilities:
6985                          * sh ... -c 'script'
6986                          * sh ... -c 'script' ARG0 [ARG1...]
6987                          * On NOMMU, if builtin_argc != 0,
6988                          * sh ... -c 'builtin' BARGV... "" ARG0 [ARG1...]
6989                          * "" needs to be replaced with NULL
6990                          * and BARGV vector fed to builtin function.
6991                          * Note: the form without ARG0 never happens:
6992                          * sh ... -c 'builtin' BARGV... ""
6993                          */
6994                         if (!G.root_pid) {
6995                                 G.root_pid = getpid();
6996                                 G.root_ppid = getppid();
6997                         }
6998                         G.global_argv = argv + optind;
6999                         G.global_argc = argc - optind;
7000                         if (builtin_argc) {
7001                                 /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */
7002                                 const struct built_in_command *x;
7003
7004                                 init_sigmasks();
7005                                 x = find_builtin(optarg);
7006                                 if (x) { /* paranoia */
7007                                         G.global_argc -= builtin_argc; /* skip [BARGV...] "" */
7008                                         G.global_argv += builtin_argc;
7009                                         G.global_argv[-1] = NULL; /* replace "" */
7010                                         G.last_exitcode = x->b_function(argv + optind - 1);
7011                                 }
7012                                 goto final_return;
7013                         }
7014                         if (!G.global_argv[0]) {
7015                                 /* -c 'script' (no params): prevent empty $0 */
7016                                 G.global_argv--; /* points to argv[i] of 'script' */
7017                                 G.global_argv[0] = argv[0];
7018                                 G.global_argc--;
7019                         } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */
7020                         init_sigmasks();
7021                         parse_and_run_string(optarg);
7022                         goto final_return;
7023                 case 'i':
7024                         /* Well, we cannot just declare interactiveness,
7025                          * we have to have some stuff (ctty, etc) */
7026                         /* G_interactive_fd++; */
7027                         break;
7028                 case 's':
7029                         /* "-s" means "read from stdin", but this is how we always
7030                          * operate, so simply do nothing here. */
7031                         break;
7032 #if !BB_MMU
7033                 case '<': /* "big heredoc" support */
7034                         full_write(STDOUT_FILENO, optarg, strlen(optarg));
7035                         _exit(0);
7036                 case '$': {
7037                         unsigned long long empty_trap_mask;
7038
7039                         G.root_pid = bb_strtou(optarg, &optarg, 16);
7040                         optarg++;
7041                         G.root_ppid = bb_strtou(optarg, &optarg, 16);
7042                         optarg++;
7043                         G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
7044                         optarg++;
7045                         G.last_exitcode = bb_strtou(optarg, &optarg, 16);
7046                         optarg++;
7047                         builtin_argc = bb_strtou(optarg, &optarg, 16);
7048                         optarg++;
7049                         empty_trap_mask = bb_strtoull(optarg, &optarg, 16);
7050                         if (empty_trap_mask != 0) {
7051                                 int sig;
7052                                 init_sigmasks();
7053                                 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
7054                                 for (sig = 1; sig < NSIG; sig++) {
7055                                         if (empty_trap_mask & (1LL << sig)) {
7056                                                 G.traps[sig] = xzalloc(1); /* == xstrdup(""); */
7057                                                 sigaddset(&G.blocked_set, sig);
7058                                         }
7059                                 }
7060                                 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7061                         }
7062 # if ENABLE_HUSH_LOOPS
7063                         optarg++;
7064                         G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
7065 # endif
7066                         break;
7067                 }
7068                 case 'R':
7069                 case 'V':
7070                         set_local_var(xstrdup(optarg), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ opt == 'R');
7071                         break;
7072 # if ENABLE_HUSH_FUNCTIONS
7073                 case 'F': {
7074                         struct function *funcp = new_function(optarg);
7075                         /* funcp->name is already set to optarg */
7076                         /* funcp->body is set to NULL. It's a special case. */
7077                         funcp->body_as_string = argv[optind];
7078                         optind++;
7079                         break;
7080                 }
7081 # endif
7082 #endif
7083                 case 'n':
7084                 case 'x':
7085                         if (!set_mode('-', opt))
7086                                 break;
7087                 default:
7088 #ifndef BB_VER
7089                         fprintf(stderr, "Usage: sh [FILE]...\n"
7090                                         "   or: sh -c command [args]...\n\n");
7091                         exit(EXIT_FAILURE);
7092 #else
7093                         bb_show_usage();
7094 #endif
7095                 }
7096         } /* option parsing loop */
7097
7098         if (!G.root_pid) {
7099                 G.root_pid = getpid();
7100                 G.root_ppid = getppid();
7101         }
7102
7103         /* If we are login shell... */
7104         if (argv[0] && argv[0][0] == '-') {
7105                 FILE *input;
7106                 debug_printf("sourcing /etc/profile\n");
7107                 input = fopen_for_read("/etc/profile");
7108                 if (input != NULL) {
7109                         close_on_exec_on(fileno(input));
7110                         init_sigmasks();
7111                         parse_and_run_file(input);
7112                         fclose(input);
7113                 }
7114                 /* bash: after sourcing /etc/profile,
7115                  * tries to source (in the given order):
7116                  * ~/.bash_profile, ~/.bash_login, ~/.profile,
7117                  * stopping on first found. --noprofile turns this off.
7118                  * bash also sources ~/.bash_logout on exit.
7119                  * If called as sh, skips .bash_XXX files.
7120                  */
7121         }
7122
7123         if (argv[optind]) {
7124                 FILE *input;
7125                 /*
7126                  * "bash <script>" (which is never interactive (unless -i?))
7127                  * sources $BASH_ENV here (without scanning $PATH).
7128                  * If called as sh, does the same but with $ENV.
7129                  */
7130                 debug_printf("running script '%s'\n", argv[optind]);
7131                 G.global_argv = argv + optind;
7132                 G.global_argc = argc - optind;
7133                 input = xfopen_for_read(argv[optind]);
7134                 close_on_exec_on(fileno(input));
7135                 init_sigmasks();
7136                 parse_and_run_file(input);
7137 #if ENABLE_FEATURE_CLEAN_UP
7138                 fclose(input);
7139 #endif
7140                 goto final_return;
7141         }
7142
7143         /* Up to here, shell was non-interactive. Now it may become one.
7144          * NB: don't forget to (re)run init_sigmasks() as needed.
7145          */
7146
7147         /* A shell is interactive if the '-i' flag was given,
7148          * or if all of the following conditions are met:
7149          *    no -c command
7150          *    no arguments remaining or the -s flag given
7151          *    standard input is a terminal
7152          *    standard output is a terminal
7153          * Refer to Posix.2, the description of the 'sh' utility.
7154          */
7155 #if ENABLE_HUSH_JOB
7156         if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
7157                 G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
7158                 debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp);
7159                 if (G_saved_tty_pgrp < 0)
7160                         G_saved_tty_pgrp = 0;
7161
7162                 /* try to dup stdin to high fd#, >= 255 */
7163                 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
7164                 if (G_interactive_fd < 0) {
7165                         /* try to dup to any fd */
7166                         G_interactive_fd = dup(STDIN_FILENO);
7167                         if (G_interactive_fd < 0) {
7168                                 /* give up */
7169                                 G_interactive_fd = 0;
7170                                 G_saved_tty_pgrp = 0;
7171                         }
7172                 }
7173 // TODO: track & disallow any attempts of user
7174 // to (inadvertently) close/redirect G_interactive_fd
7175         }
7176         debug_printf("interactive_fd:%d\n", G_interactive_fd);
7177         if (G_interactive_fd) {
7178                 close_on_exec_on(G_interactive_fd);
7179
7180                 if (G_saved_tty_pgrp) {
7181                         /* If we were run as 'hush &', sleep until we are
7182                          * in the foreground (tty pgrp == our pgrp).
7183                          * If we get started under a job aware app (like bash),
7184                          * make sure we are now in charge so we don't fight over
7185                          * who gets the foreground */
7186                         while (1) {
7187                                 pid_t shell_pgrp = getpgrp();
7188                                 G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
7189                                 if (G_saved_tty_pgrp == shell_pgrp)
7190                                         break;
7191                                 /* send TTIN to ourself (should stop us) */
7192                                 kill(- shell_pgrp, SIGTTIN);
7193                         }
7194                 }
7195
7196                 /* Block some signals */
7197                 init_sigmasks();
7198
7199                 if (G_saved_tty_pgrp) {
7200                         /* Set other signals to restore saved_tty_pgrp */
7201                         set_fatal_handlers();
7202                         /* Put ourselves in our own process group
7203                          * (bash, too, does this only if ctty is available) */
7204                         bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
7205                         /* Grab control of the terminal */
7206                         tcsetpgrp(G_interactive_fd, getpid());
7207                 }
7208                 /* -1 is special - makes xfuncs longjmp, not exit
7209                  * (we reset die_sleep = 0 whereever we [v]fork) */
7210                 enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */
7211         } else {
7212                 init_sigmasks();
7213         }
7214 #elif ENABLE_HUSH_INTERACTIVE
7215         /* No job control compiled in, only prompt/line editing */
7216         if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
7217                 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
7218                 if (G_interactive_fd < 0) {
7219                         /* try to dup to any fd */
7220                         G_interactive_fd = dup(STDIN_FILENO);
7221                         if (G_interactive_fd < 0)
7222                                 /* give up */
7223                                 G_interactive_fd = 0;
7224                 }
7225         }
7226         if (G_interactive_fd) {
7227                 close_on_exec_on(G_interactive_fd);
7228         }
7229         init_sigmasks();
7230 #else
7231         /* We have interactiveness code disabled */
7232         init_sigmasks();
7233 #endif
7234         /* bash:
7235          * if interactive but not a login shell, sources ~/.bashrc
7236          * (--norc turns this off, --rcfile <file> overrides)
7237          */
7238
7239         if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
7240                 /* note: ash and hush share this string */
7241                 printf("\n\n%s %s\n"
7242                         IF_HUSH_HELP("Enter 'help' for a list of built-in commands.\n")
7243                         "\n",
7244                         bb_banner,
7245                         "hush - the humble shell"
7246                 );
7247         }
7248
7249         parse_and_run_file(stdin);
7250
7251  final_return:
7252 #if ENABLE_FEATURE_CLEAN_UP
7253         if (G.cwd != bb_msg_unknown)
7254                 free((char*)G.cwd);
7255         cur_var = G.top_var->next;
7256         while (cur_var) {
7257                 struct variable *tmp = cur_var;
7258                 if (!cur_var->max_len)
7259                         free(cur_var->varstr);
7260                 cur_var = cur_var->next;
7261                 free(tmp);
7262         }
7263 #endif
7264         hush_exit(G.last_exitcode);
7265 }
7266
7267
7268 #if ENABLE_LASH
7269 int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
7270 int lash_main(int argc, char **argv)
7271 {
7272         bb_error_msg("lash is deprecated, please use hush instead");
7273         return hush_main(argc, argv);
7274 }
7275 #endif
7276
7277 #if ENABLE_MSH
7278 int msh_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
7279 int msh_main(int argc, char **argv)
7280 {
7281         //bb_error_msg("msh is deprecated, please use hush instead");
7282         return hush_main(argc, argv);
7283 }
7284 #endif
7285
7286
7287 /*
7288  * Built-ins
7289  */
7290 static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM)
7291 {
7292         return 0;
7293 }
7294
7295 static int run_applet_main(char **argv, int (*applet_main_func)(int argc, char **argv))
7296 {
7297         int argc = 0;
7298         while (*argv) {
7299                 argc++;
7300                 argv++;
7301         }
7302         return applet_main_func(argc, argv - argc);
7303 }
7304
7305 static int FAST_FUNC builtin_test(char **argv)
7306 {
7307         return run_applet_main(argv, test_main);
7308 }
7309
7310 static int FAST_FUNC builtin_echo(char **argv)
7311 {
7312         return run_applet_main(argv, echo_main);
7313 }
7314
7315 #if ENABLE_PRINTF
7316 static int FAST_FUNC builtin_printf(char **argv)
7317 {
7318         return run_applet_main(argv, printf_main);
7319 }
7320 #endif
7321
7322 static char **skip_dash_dash(char **argv)
7323 {
7324         argv++;
7325         if (argv[0] && argv[0][0] == '-' && argv[0][1] == '-' && argv[0][2] == '\0')
7326                 argv++;
7327         return argv;
7328 }
7329
7330 static int FAST_FUNC builtin_eval(char **argv)
7331 {
7332         int rcode = EXIT_SUCCESS;
7333
7334         argv = skip_dash_dash(argv);
7335         if (*argv) {
7336                 char *str = expand_strvec_to_string(argv);
7337                 /* bash:
7338                  * eval "echo Hi; done" ("done" is syntax error):
7339                  * "echo Hi" will not execute too.
7340                  */
7341                 parse_and_run_string(str);
7342                 free(str);
7343                 rcode = G.last_exitcode;
7344         }
7345         return rcode;
7346 }
7347
7348 static int FAST_FUNC builtin_cd(char **argv)
7349 {
7350         const char *newdir;
7351
7352         argv = skip_dash_dash(argv);
7353         newdir = argv[0];
7354         if (newdir == NULL) {
7355                 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
7356                  * bash says "bash: cd: HOME not set" and does nothing
7357                  * (exitcode 1)
7358                  */
7359                 const char *home = get_local_var_value("HOME");
7360                 newdir = home ? home : "/";
7361         }
7362         if (chdir(newdir)) {
7363                 /* Mimic bash message exactly */
7364                 bb_perror_msg("cd: %s", newdir);
7365                 return EXIT_FAILURE;
7366         }
7367         /* Read current dir (get_cwd(1) is inside) and set PWD.
7368          * Note: do not enforce exporting. If PWD was unset or unexported,
7369          * set it again, but do not export. bash does the same.
7370          */
7371         set_pwd_var(/*exp:*/ 0);
7372         return EXIT_SUCCESS;
7373 }
7374
7375 static int FAST_FUNC builtin_exec(char **argv)
7376 {
7377         argv = skip_dash_dash(argv);
7378         if (argv[0] == NULL)
7379                 return EXIT_SUCCESS; /* bash does this */
7380
7381         /* Careful: we can end up here after [v]fork. Do not restore
7382          * tty pgrp then, only top-level shell process does that */
7383         if (G_saved_tty_pgrp && getpid() == G.root_pid)
7384                 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
7385
7386         /* TODO: if exec fails, bash does NOT exit! We do.
7387          * We'll need to undo sigprocmask (it's inside execvp_or_die)
7388          * and tcsetpgrp, and this is inherently racy.
7389          */
7390         execvp_or_die(argv);
7391 }
7392
7393 static int FAST_FUNC builtin_exit(char **argv)
7394 {
7395         debug_printf_exec("%s()\n", __func__);
7396
7397         /* interactive bash:
7398          * # trap "echo EEE" EXIT
7399          * # exit
7400          * exit
7401          * There are stopped jobs.
7402          * (if there are _stopped_ jobs, running ones don't count)
7403          * # exit
7404          * exit
7405          # EEE (then bash exits)
7406          *
7407          * we can use G.exiting = -1 as indicator "last cmd was exit"
7408          */
7409
7410         /* note: EXIT trap is run by hush_exit */
7411         argv = skip_dash_dash(argv);
7412         if (argv[0] == NULL)
7413                 hush_exit(G.last_exitcode);
7414         /* mimic bash: exit 123abc == exit 255 + error msg */
7415         xfunc_error_retval = 255;
7416         /* bash: exit -2 == exit 254, no error msg */
7417         hush_exit(xatoi(argv[0]) & 0xff);
7418 }
7419
7420 static void print_escaped(const char *s)
7421 {
7422         if (*s == '\'')
7423                 goto squote;
7424         do {
7425                 const char *p = strchrnul(s, '\'');
7426                 /* print 'xxxx', possibly just '' */
7427                 printf("'%.*s'", (int)(p - s), s);
7428                 if (*p == '\0')
7429                         break;
7430                 s = p;
7431  squote:
7432                 /* s points to '; print "'''...'''" */
7433                 putchar('"');
7434                 do putchar('\''); while (*++s == '\'');
7435                 putchar('"');
7436         } while (*s);
7437 }
7438
7439 #if !ENABLE_HUSH_LOCAL
7440 #define helper_export_local(argv, exp, lvl) \
7441         helper_export_local(argv, exp)
7442 #endif
7443 static void helper_export_local(char **argv, int exp, int lvl)
7444 {
7445         do {
7446                 char *name = *argv;
7447
7448                 /* So far we do not check that name is valid (TODO?) */
7449
7450                 if (strchr(name, '=') == NULL) {
7451                         struct variable *var;
7452
7453                         var = get_local_var(name);
7454                         if (exp == -1) { /* unexporting? */
7455                                 /* export -n NAME (without =VALUE) */
7456                                 if (var) {
7457                                         var->flg_export = 0;
7458                                         debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
7459                                         unsetenv(name);
7460                                 } /* else: export -n NOT_EXISTING_VAR: no-op */
7461                                 continue;
7462                         }
7463                         if (exp == 1) { /* exporting? */
7464                                 /* export NAME (without =VALUE) */
7465                                 if (var) {
7466                                         var->flg_export = 1;
7467                                         debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
7468                                         putenv(var->varstr);
7469                                         continue;
7470                                 }
7471                         }
7472                         /* Exporting non-existing variable.
7473                          * bash does not put it in environment,
7474                          * but remembers that it is exported,
7475                          * and does put it in env when it is set later.
7476                          * We just set it to "" and export. */
7477                         /* Or, it's "local NAME" (without =VALUE).
7478                          * bash sets the value to "". */
7479                         name = xasprintf("%s=", name);
7480                 } else {
7481                         /* (Un)exporting/making local NAME=VALUE */
7482                         name = xstrdup(name);
7483                 }
7484                 set_local_var(name, /*exp:*/ exp, /*lvl:*/ lvl, /*ro:*/ 0);
7485         } while (*++argv);
7486 }
7487
7488 static int FAST_FUNC builtin_export(char **argv)
7489 {
7490         unsigned opt_unexport;
7491
7492 #if ENABLE_HUSH_EXPORT_N
7493         /* "!": do not abort on errors */
7494         opt_unexport = getopt32(argv, "!n");
7495         if (opt_unexport == (uint32_t)-1)
7496                 return EXIT_FAILURE;
7497         argv += optind;
7498 #else
7499         opt_unexport = 0;
7500         argv++;
7501 #endif
7502
7503         if (argv[0] == NULL) {
7504                 char **e = environ;
7505                 if (e) {
7506                         while (*e) {
7507 #if 0
7508                                 puts(*e++);
7509 #else
7510                                 /* ash emits: export VAR='VAL'
7511                                  * bash: declare -x VAR="VAL"
7512                                  * we follow ash example */
7513                                 const char *s = *e++;
7514                                 const char *p = strchr(s, '=');
7515
7516                                 if (!p) /* wtf? take next variable */
7517                                         continue;
7518                                 /* export var= */
7519                                 printf("export %.*s", (int)(p - s) + 1, s);
7520                                 print_escaped(p + 1);
7521                                 putchar('\n');
7522 #endif
7523                         }
7524                         /*fflush_all(); - done after each builtin anyway */
7525                 }
7526                 return EXIT_SUCCESS;
7527         }
7528
7529         helper_export_local(argv, (opt_unexport ? -1 : 1), 0);
7530
7531         return EXIT_SUCCESS;
7532 }
7533
7534 #if ENABLE_HUSH_LOCAL
7535 static int FAST_FUNC builtin_local(char **argv)
7536 {
7537         if (G.func_nest_level == 0) {
7538                 bb_error_msg("%s: not in a function", argv[0]);
7539                 return EXIT_FAILURE; /* bash compat */
7540         }
7541         helper_export_local(argv, 0, G.func_nest_level);
7542         return EXIT_SUCCESS;
7543 }
7544 #endif
7545
7546 static int FAST_FUNC builtin_trap(char **argv)
7547 {
7548         int sig;
7549         char *new_cmd;
7550
7551         if (!G.traps)
7552                 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
7553
7554         argv++;
7555         if (!*argv) {
7556                 int i;
7557                 /* No args: print all trapped */
7558                 for (i = 0; i < NSIG; ++i) {
7559                         if (G.traps[i]) {
7560                                 printf("trap -- ");
7561                                 print_escaped(G.traps[i]);
7562                                 /* note: bash adds "SIG", but only if invoked
7563                                  * as "bash". If called as "sh", or if set -o posix,
7564                                  * then it prints short signal names.
7565                                  * We are printing short names: */
7566                                 printf(" %s\n", get_signame(i));
7567                         }
7568                 }
7569                 /*fflush_all(); - done after each builtin anyway */
7570                 return EXIT_SUCCESS;
7571         }
7572
7573         new_cmd = NULL;
7574         /* If first arg is a number: reset all specified signals */
7575         sig = bb_strtou(*argv, NULL, 10);
7576         if (errno == 0) {
7577                 int ret;
7578  process_sig_list:
7579                 ret = EXIT_SUCCESS;
7580                 while (*argv) {
7581                         sig = get_signum(*argv++);
7582                         if (sig < 0 || sig >= NSIG) {
7583                                 ret = EXIT_FAILURE;
7584                                 /* Mimic bash message exactly */
7585                                 bb_perror_msg("trap: %s: invalid signal specification", argv[-1]);
7586                                 continue;
7587                         }
7588
7589                         free(G.traps[sig]);
7590                         G.traps[sig] = xstrdup(new_cmd);
7591
7592                         debug_printf("trap: setting SIG%s (%i) to '%s'\n",
7593                                 get_signame(sig), sig, G.traps[sig]);
7594
7595                         /* There is no signal for 0 (EXIT) */
7596                         if (sig == 0)
7597                                 continue;
7598
7599                         if (new_cmd) {
7600                                 sigaddset(&G.blocked_set, sig);
7601                         } else {
7602                                 /* There was a trap handler, we are removing it
7603                                  * (if sig has non-DFL handling,
7604                                  * we don't need to do anything) */
7605                                 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
7606                                         continue;
7607                                 sigdelset(&G.blocked_set, sig);
7608                         }
7609                 }
7610                 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7611                 return ret;
7612         }
7613
7614         if (!argv[1]) { /* no second arg */
7615                 bb_error_msg("trap: invalid arguments");
7616                 return EXIT_FAILURE;
7617         }
7618
7619         /* First arg is "-": reset all specified to default */
7620         /* First arg is "--": skip it, the rest is "handler SIGs..." */
7621         /* Everything else: set arg as signal handler
7622          * (includes "" case, which ignores signal) */
7623         if (argv[0][0] == '-') {
7624                 if (argv[0][1] == '\0') { /* "-" */
7625                         /* new_cmd remains NULL: "reset these sigs" */
7626                         goto reset_traps;
7627                 }
7628                 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
7629                         argv++;
7630                 }
7631                 /* else: "-something", no special meaning */
7632         }
7633         new_cmd = *argv;
7634  reset_traps:
7635         argv++;
7636         goto process_sig_list;
7637 }
7638
7639 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */
7640 static int FAST_FUNC builtin_type(char **argv)
7641 {
7642         int ret = EXIT_SUCCESS;
7643
7644         while (*++argv) {
7645                 const char *type;
7646                 char *path = NULL;
7647
7648                 if (0) {} /* make conditional compile easier below */
7649                 /*else if (find_alias(*argv))
7650                         type = "an alias";*/
7651 #if ENABLE_HUSH_FUNCTIONS
7652                 else if (find_function(*argv))
7653                         type = "a function";
7654 #endif
7655                 else if (find_builtin(*argv))
7656                         type = "a shell builtin";
7657                 else if ((path = find_in_path(*argv)) != NULL)
7658                         type = path;
7659                 else {
7660                         bb_error_msg("type: %s: not found", *argv);
7661                         ret = EXIT_FAILURE;
7662                         continue;
7663                 }
7664
7665                 printf("%s is %s\n", *argv, type);
7666                 free(path);
7667         }
7668
7669         return ret;
7670 }
7671
7672 #if ENABLE_HUSH_JOB
7673 /* built-in 'fg' and 'bg' handler */
7674 static int FAST_FUNC builtin_fg_bg(char **argv)
7675 {
7676         int i, jobnum;
7677         struct pipe *pi;
7678
7679         if (!G_interactive_fd)
7680                 return EXIT_FAILURE;
7681
7682         /* If they gave us no args, assume they want the last backgrounded task */
7683         if (!argv[1]) {
7684                 for (pi = G.job_list; pi; pi = pi->next) {
7685                         if (pi->jobid == G.last_jobid) {
7686                                 goto found;
7687                         }
7688                 }
7689                 bb_error_msg("%s: no current job", argv[0]);
7690                 return EXIT_FAILURE;
7691         }
7692         if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
7693                 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
7694                 return EXIT_FAILURE;
7695         }
7696         for (pi = G.job_list; pi; pi = pi->next) {
7697                 if (pi->jobid == jobnum) {
7698                         goto found;
7699                 }
7700         }
7701         bb_error_msg("%s: %d: no such job", argv[0], jobnum);
7702         return EXIT_FAILURE;
7703  found:
7704         /* TODO: bash prints a string representation
7705          * of job being foregrounded (like "sleep 1 | cat") */
7706         if (argv[0][0] == 'f' && G_saved_tty_pgrp) {
7707                 /* Put the job into the foreground.  */
7708                 tcsetpgrp(G_interactive_fd, pi->pgrp);
7709         }
7710
7711         /* Restart the processes in the job */
7712         debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
7713         for (i = 0; i < pi->num_cmds; i++) {
7714                 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
7715                 pi->cmds[i].is_stopped = 0;
7716         }
7717         pi->stopped_cmds = 0;
7718
7719         i = kill(- pi->pgrp, SIGCONT);
7720         if (i < 0) {
7721                 if (errno == ESRCH) {
7722                         delete_finished_bg_job(pi);
7723                         return EXIT_SUCCESS;
7724                 }
7725                 bb_perror_msg("kill (SIGCONT)");
7726         }
7727
7728         if (argv[0][0] == 'f') {
7729                 remove_bg_job(pi);
7730                 return checkjobs_and_fg_shell(pi);
7731         }
7732         return EXIT_SUCCESS;
7733 }
7734 #endif
7735
7736 #if ENABLE_HUSH_HELP
7737 static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM)
7738 {
7739         const struct built_in_command *x;
7740
7741         printf(
7742                 "Built-in commands:\n"
7743                 "------------------\n");
7744         for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) {
7745                 if (x->b_descr)
7746                         printf("%-10s%s\n", x->b_cmd, x->b_descr);
7747         }
7748         bb_putchar('\n');
7749         return EXIT_SUCCESS;
7750 }
7751 #endif
7752
7753 #if ENABLE_HUSH_JOB
7754 static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM)
7755 {
7756         struct pipe *job;
7757         const char *status_string;
7758
7759         for (job = G.job_list; job; job = job->next) {
7760                 if (job->alive_cmds == job->stopped_cmds)
7761                         status_string = "Stopped";
7762                 else
7763                         status_string = "Running";
7764
7765                 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
7766         }
7767         return EXIT_SUCCESS;
7768 }
7769 #endif
7770
7771 #if HUSH_DEBUG
7772 static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM)
7773 {
7774         void *p;
7775         unsigned long l;
7776
7777 # ifdef M_TRIM_THRESHOLD
7778         /* Optional. Reduces probability of false positives */
7779         malloc_trim(0);
7780 # endif
7781         /* Crude attempt to find where "free memory" starts,
7782          * sans fragmentation. */
7783         p = malloc(240);
7784         l = (unsigned long)p;
7785         free(p);
7786         p = malloc(3400);
7787         if (l < (unsigned long)p) l = (unsigned long)p;
7788         free(p);
7789
7790         if (!G.memleak_value)
7791                 G.memleak_value = l;
7792
7793         l -= G.memleak_value;
7794         if ((long)l < 0)
7795                 l = 0;
7796         l /= 1024;
7797         if (l > 127)
7798                 l = 127;
7799
7800         /* Exitcode is "how many kilobytes we leaked since 1st call" */
7801         return l;
7802 }
7803 #endif
7804
7805 static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM)
7806 {
7807         puts(get_cwd(0));
7808         return EXIT_SUCCESS;
7809 }
7810
7811 static int FAST_FUNC builtin_read(char **argv)
7812 {
7813         const char *r;
7814         char *opt_n = NULL;
7815         char *opt_p = NULL;
7816         char *opt_t = NULL;
7817         char *opt_u = NULL;
7818         int read_flags;
7819
7820         /* "!": do not abort on errors.
7821          * Option string must start with "sr" to match BUILTIN_READ_xxx
7822          */
7823         read_flags = getopt32(argv, "!srn:p:t:u:", &opt_n, &opt_p, &opt_t, &opt_u);
7824         if (read_flags == (uint32_t)-1)
7825                 return EXIT_FAILURE;
7826         argv += optind;
7827
7828         r = shell_builtin_read(set_local_var_from_halves,
7829                 argv,
7830                 get_local_var_value("IFS"), /* can be NULL */
7831                 read_flags,
7832                 opt_n,
7833                 opt_p,
7834                 opt_t,
7835                 opt_u
7836         );
7837
7838         if ((uintptr_t)r > 1) {
7839                 bb_error_msg("%s", r);
7840                 r = (char*)(uintptr_t)1;
7841         }
7842
7843         return (uintptr_t)r;
7844 }
7845
7846 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
7847  * built-in 'set' handler
7848  * SUSv3 says:
7849  * set [-abCefhmnuvx] [-o option] [argument...]
7850  * set [+abCefhmnuvx] [+o option] [argument...]
7851  * set -- [argument...]
7852  * set -o
7853  * set +o
7854  * Implementations shall support the options in both their hyphen and
7855  * plus-sign forms. These options can also be specified as options to sh.
7856  * Examples:
7857  * Write out all variables and their values: set
7858  * Set $1, $2, and $3 and set "$#" to 3: set c a b
7859  * Turn on the -x and -v options: set -xv
7860  * Unset all positional parameters: set --
7861  * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
7862  * Set the positional parameters to the expansion of x, even if x expands
7863  * with a leading '-' or '+': set -- $x
7864  *
7865  * So far, we only support "set -- [argument...]" and some of the short names.
7866  */
7867 static int FAST_FUNC builtin_set(char **argv)
7868 {
7869         int n;
7870         char **pp, **g_argv;
7871         char *arg = *++argv;
7872
7873         if (arg == NULL) {
7874                 struct variable *e;
7875                 for (e = G.top_var; e; e = e->next)
7876                         puts(e->varstr);
7877                 return EXIT_SUCCESS;
7878         }
7879
7880         do {
7881                 if (!strcmp(arg, "--")) {
7882                         ++argv;
7883                         goto set_argv;
7884                 }
7885                 if (arg[0] != '+' && arg[0] != '-')
7886                         break;
7887                 for (n = 1; arg[n]; ++n)
7888                         if (set_mode(arg[0], arg[n]))
7889                                 goto error;
7890         } while ((arg = *++argv) != NULL);
7891         /* Now argv[0] is 1st argument */
7892
7893         if (arg == NULL)
7894                 return EXIT_SUCCESS;
7895  set_argv:
7896
7897         /* NB: G.global_argv[0] ($0) is never freed/changed */
7898         g_argv = G.global_argv;
7899         if (G.global_args_malloced) {
7900                 pp = g_argv;
7901                 while (*++pp)
7902                         free(*pp);
7903                 g_argv[1] = NULL;
7904         } else {
7905                 G.global_args_malloced = 1;
7906                 pp = xzalloc(sizeof(pp[0]) * 2);
7907                 pp[0] = g_argv[0]; /* retain $0 */
7908                 g_argv = pp;
7909         }
7910         /* This realloc's G.global_argv */
7911         G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
7912
7913         n = 1;
7914         while (*++pp)
7915                 n++;
7916         G.global_argc = n;
7917
7918         return EXIT_SUCCESS;
7919
7920         /* Nothing known, so abort */
7921  error:
7922         bb_error_msg("set: %s: invalid option", arg);
7923         return EXIT_FAILURE;
7924 }
7925
7926 static int FAST_FUNC builtin_shift(char **argv)
7927 {
7928         int n = 1;
7929         argv = skip_dash_dash(argv);
7930         if (argv[0]) {
7931                 n = atoi(argv[0]);
7932         }
7933         if (n >= 0 && n < G.global_argc) {
7934                 if (G.global_args_malloced) {
7935                         int m = 1;
7936                         while (m <= n)
7937                                 free(G.global_argv[m++]);
7938                 }
7939                 G.global_argc -= n;
7940                 memmove(&G.global_argv[1], &G.global_argv[n+1],
7941                                 G.global_argc * sizeof(G.global_argv[0]));
7942                 return EXIT_SUCCESS;
7943         }
7944         return EXIT_FAILURE;
7945 }
7946
7947 static int FAST_FUNC builtin_source(char **argv)
7948 {
7949         char *arg_path, *filename;
7950         FILE *input;
7951         save_arg_t sv;
7952 #if ENABLE_HUSH_FUNCTIONS
7953         smallint sv_flg;
7954 #endif
7955
7956         argv = skip_dash_dash(argv);
7957         filename = argv[0];
7958         if (!filename) {
7959                 /* bash says: "bash: .: filename argument required" */
7960                 return 2; /* bash compat */
7961         }
7962         arg_path = NULL;
7963         if (!strchr(filename, '/')) {
7964                 arg_path = find_in_path(filename);
7965                 if (arg_path)
7966                         filename = arg_path;
7967         }
7968         input = fopen_or_warn(filename, "r");
7969         free(arg_path);
7970         if (!input) {
7971                 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
7972                 return EXIT_FAILURE;
7973         }
7974         close_on_exec_on(fileno(input));
7975
7976 #if ENABLE_HUSH_FUNCTIONS
7977         sv_flg = G.flag_return_in_progress;
7978         /* "we are inside sourced file, ok to use return" */
7979         G.flag_return_in_progress = -1;
7980 #endif
7981         save_and_replace_G_args(&sv, argv);
7982
7983         parse_and_run_file(input);
7984         fclose(input);
7985
7986         restore_G_args(&sv, argv);
7987 #if ENABLE_HUSH_FUNCTIONS
7988         G.flag_return_in_progress = sv_flg;
7989 #endif
7990
7991         return G.last_exitcode;
7992 }
7993
7994 static int FAST_FUNC builtin_umask(char **argv)
7995 {
7996         int rc;
7997         mode_t mask;
7998
7999         mask = umask(0);
8000         argv = skip_dash_dash(argv);
8001         if (argv[0]) {
8002                 mode_t old_mask = mask;
8003
8004                 mask ^= 0777;
8005                 rc = bb_parse_mode(argv[0], &mask);
8006                 mask ^= 0777;
8007                 if (rc == 0) {
8008                         mask = old_mask;
8009                         /* bash messages:
8010                          * bash: umask: 'q': invalid symbolic mode operator
8011                          * bash: umask: 999: octal number out of range
8012                          */
8013                         bb_error_msg("%s: invalid mode '%s'", "umask", argv[0]);
8014                 }
8015         } else {
8016                 rc = 1;
8017                 /* Mimic bash */
8018                 printf("%04o\n", (unsigned) mask);
8019                 /* fall through and restore mask which we set to 0 */
8020         }
8021         umask(mask);
8022
8023         return !rc; /* rc != 0 - success */
8024 }
8025
8026 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
8027 static int FAST_FUNC builtin_unset(char **argv)
8028 {
8029         int ret;
8030         unsigned opts;
8031
8032         /* "!": do not abort on errors */
8033         /* "+": stop at 1st non-option */
8034         opts = getopt32(argv, "!+vf");
8035         if (opts == (unsigned)-1)
8036                 return EXIT_FAILURE;
8037         if (opts == 3) {
8038                 bb_error_msg("unset: -v and -f are exclusive");
8039                 return EXIT_FAILURE;
8040         }
8041         argv += optind;
8042
8043         ret = EXIT_SUCCESS;
8044         while (*argv) {
8045                 if (!(opts & 2)) { /* not -f */
8046                         if (unset_local_var(*argv)) {
8047                                 /* unset <nonexistent_var> doesn't fail.
8048                                  * Error is when one tries to unset RO var.
8049                                  * Message was printed by unset_local_var. */
8050                                 ret = EXIT_FAILURE;
8051                         }
8052                 }
8053 #if ENABLE_HUSH_FUNCTIONS
8054                 else {
8055                         unset_func(*argv);
8056                 }
8057 #endif
8058                 argv++;
8059         }
8060         return ret;
8061 }
8062
8063 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
8064 static int FAST_FUNC builtin_wait(char **argv)
8065 {
8066         int ret = EXIT_SUCCESS;
8067         int status, sig;
8068
8069         argv = skip_dash_dash(argv);
8070         if (argv[0] == NULL) {
8071                 /* Don't care about wait results */
8072                 /* Note 1: must wait until there are no more children */
8073                 /* Note 2: must be interruptible */
8074                 /* Examples:
8075                  * $ sleep 3 & sleep 6 & wait
8076                  * [1] 30934 sleep 3
8077                  * [2] 30935 sleep 6
8078                  * [1] Done                   sleep 3
8079                  * [2] Done                   sleep 6
8080                  * $ sleep 3 & sleep 6 & wait
8081                  * [1] 30936 sleep 3
8082                  * [2] 30937 sleep 6
8083                  * [1] Done                   sleep 3
8084                  * ^C <-- after ~4 sec from keyboard
8085                  * $
8086                  */
8087                 sigaddset(&G.blocked_set, SIGCHLD);
8088                 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
8089                 while (1) {
8090                         checkjobs(NULL);
8091                         if (errno == ECHILD)
8092                                 break;
8093                         /* Wait for SIGCHLD or any other signal of interest */
8094                         /* sigtimedwait with infinite timeout: */
8095                         sig = sigwaitinfo(&G.blocked_set, NULL);
8096                         if (sig > 0) {
8097                                 sig = check_and_run_traps(sig);
8098                                 if (sig && sig != SIGCHLD) { /* see note 2 */
8099                                         ret = 128 + sig;
8100                                         break;
8101                                 }
8102                         }
8103                 }
8104                 sigdelset(&G.blocked_set, SIGCHLD);
8105                 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
8106                 return ret;
8107         }
8108
8109         /* This is probably buggy wrt interruptible-ness */
8110         while (*argv) {
8111                 pid_t pid = bb_strtou(*argv, NULL, 10);
8112                 if (errno) {
8113                         /* mimic bash message */
8114                         bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
8115                         return EXIT_FAILURE;
8116                 }
8117                 if (waitpid(pid, &status, 0) == pid) {
8118                         if (WIFSIGNALED(status))
8119                                 ret = 128 + WTERMSIG(status);
8120                         else if (WIFEXITED(status))
8121                                 ret = WEXITSTATUS(status);
8122                         else /* wtf? */
8123                                 ret = EXIT_FAILURE;
8124                 } else {
8125                         bb_perror_msg("wait %s", *argv);
8126                         ret = 127;
8127                 }
8128                 argv++;
8129         }
8130
8131         return ret;
8132 }
8133
8134 #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
8135 static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
8136 {
8137         if (argv[1]) {
8138                 def = bb_strtou(argv[1], NULL, 10);
8139                 if (errno || def < def_min || argv[2]) {
8140                         bb_error_msg("%s: bad arguments", argv[0]);
8141                         def = UINT_MAX;
8142                 }
8143         }
8144         return def;
8145 }
8146 #endif
8147
8148 #if ENABLE_HUSH_LOOPS
8149 static int FAST_FUNC builtin_break(char **argv)
8150 {
8151         unsigned depth;
8152         if (G.depth_of_loop == 0) {
8153                 bb_error_msg("%s: only meaningful in a loop", argv[0]);
8154                 return EXIT_SUCCESS; /* bash compat */
8155         }
8156         G.flag_break_continue++; /* BC_BREAK = 1 */
8157
8158         G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
8159         if (depth == UINT_MAX)
8160                 G.flag_break_continue = BC_BREAK;
8161         if (G.depth_of_loop < depth)
8162                 G.depth_break_continue = G.depth_of_loop;
8163
8164         return EXIT_SUCCESS;
8165 }
8166
8167 static int FAST_FUNC builtin_continue(char **argv)
8168 {
8169         G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
8170         return builtin_break(argv);
8171 }
8172 #endif
8173
8174 #if ENABLE_HUSH_FUNCTIONS
8175 static int FAST_FUNC builtin_return(char **argv)
8176 {
8177         int rc;
8178
8179         if (G.flag_return_in_progress != -1) {
8180                 bb_error_msg("%s: not in a function or sourced script", argv[0]);
8181                 return EXIT_FAILURE; /* bash compat */
8182         }
8183
8184         G.flag_return_in_progress = 1;
8185
8186         /* bash:
8187          * out of range: wraps around at 256, does not error out
8188          * non-numeric param:
8189          * f() { false; return qwe; }; f; echo $?
8190          * bash: return: qwe: numeric argument required  <== we do this
8191          * 255  <== we also do this
8192          */
8193         rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
8194         return rc;
8195 }
8196 #endif