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