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