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