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