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