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