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