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