hush: cosmetics. no code changes
[oweals/busybox.git] / shell / hush.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * A prototype Bourne shell grammar parser.
4  * Intended to follow the original Thompson and Ritchie
5  * "small and simple is beautiful" philosophy, which
6  * incidentally is a good match to today's BusyBox.
7  *
8  * Copyright (C) 2000,2001  Larry Doolittle <larry@doolittle.boa.org>
9  * Copyright (C) 2008,2009  Denys Vlasenko <vda.linux@googlemail.com>
10  *
11  * Credits:
12  *      The parser routines proper are all original material, first
13  *      written Dec 2000 and Jan 2001 by Larry Doolittle.  The
14  *      execution engine, the builtins, and much of the underlying
15  *      support has been adapted from busybox-0.49pre's lash, which is
16  *      Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
17  *      written by Erik Andersen <andersen@codepoet.org>.  That, in turn,
18  *      is based in part on ladsh.c, by Michael K. Johnson and Erik W.
19  *      Troan, which they placed in the public domain.  I don't know
20  *      how much of the Johnson/Troan code has survived the repeated
21  *      rewrites.
22  *
23  * Other credits:
24  *      o_addchr derived from similar w_addchar function in glibc-2.2.
25  *      parse_redirect, redirect_opt_num, and big chunks of main
26  *      and many builtins derived from contributions by Erik Andersen.
27  *      Miscellaneous bugfixes from Matt Kraai.
28  *
29  * There are two big (and related) architecture differences between
30  * this parser and the lash parser.  One is that this version is
31  * actually designed from the ground up to understand nearly all
32  * of the Bourne grammar.  The second, consequential change is that
33  * the parser and input reader have been turned inside out.  Now,
34  * the parser is in control, and asks for input as needed.  The old
35  * way had the input reader in control, and it asked for parsing to
36  * take place as needed.  The new way makes it much easier to properly
37  * handle the recursion implicit in the various substitutions, especially
38  * across continuation lines.
39  *
40  * POSIX syntax not implemented:
41  *      aliases
42  *      <(list) and >(list) Process Substitution
43  *      Tilde Expansion
44  *
45  * Bash stuff (optionally enabled):
46  *      &> and >& redirection of stdout+stderr
47  *      Brace Expansion
48  *      reserved words: [[ ]] function select
49  *      substrings ${var:1:5}
50  *      let EXPR [EXPR...]
51  *        Each EXPR is an arithmetic expression (ARITHMETIC EVALUATION)
52  *        If the last arg evaluates to 0, let returns 1; 0 otherwise.
53  *        NB: let `echo 'a=a + 1'` - error (IOW: multi-word expansion is used)
54  *      ((EXPR))
55  *        The EXPR is evaluated according to ARITHMETIC EVALUATION.
56  *        This is exactly equivalent to let "expression".
57  *
58  * TODOs:
59  *      grep for "TODO" and fix (some of them are easy)
60  *      builtins: ulimit
61  *      special variables (done: PWD)
62  *      follow IFS rules more precisely, including update semantics
63  *      export builtin should be special, its arguments are assignments
64  *          and therefore expansion of them should be "one-word" expansion:
65  *              $ export i=`echo 'a  b'` # export has one arg: "i=a  b"
66  *          compare with:
67  *              $ ls i=`echo 'a  b'`     # ls has two args: "i=a" and "b"
68  *              ls: cannot access i=a: No such file or directory
69  *              ls: cannot access b: No such file or directory
70  *          Note1: same applies to local builtin.
71  *          Note2: bash 3.2.33(1) does this only if export word itself
72  *          is not quoted:
73  *              $ export i=`echo 'aaa  bbb'`; echo "$i"
74  *              aaa  bbb
75  *              $ "export" i=`echo 'aaa  bbb'`; echo "$i"
76  *              aaa
77  *
78  * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
79  */
80 #include "busybox.h"  /* for APPLET_IS_NOFORK/NOEXEC */
81 #include <malloc.h>   /* for malloc_trim */
82 #include <glob.h>
83 /* #include <dmalloc.h> */
84 #if ENABLE_HUSH_CASE
85 # include <fnmatch.h>
86 #endif
87 #include "math.h"
88 #include "match.h"
89 #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 ? BUFSIZ : 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(NULL); /* flush all streams */
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, BUFSIZ-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(stdout);
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(NULL);
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(NULL);
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 #if BB_MMU
3326 #define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
3327         pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
3328 #define pseudo_exec(nommu_save, command, argv_expanded) \
3329         pseudo_exec(command, argv_expanded)
3330 #endif
3331
3332 /* Called after [v]fork() in run_pipe, or from builtin_exec.
3333  * Never returns.
3334  * Don't exit() here.  If you don't exec, use _exit instead.
3335  * The at_exit handlers apparently confuse the calling process,
3336  * in particular stdin handling.  Not sure why? -- because of vfork! (vda) */
3337 static void pseudo_exec_argv(nommu_save_t *nommu_save,
3338                 char **argv, int assignment_cnt,
3339                 char **argv_expanded) NORETURN;
3340 static void pseudo_exec_argv(nommu_save_t *nommu_save,
3341                 char **argv, int assignment_cnt,
3342                 char **argv_expanded)
3343 {
3344         char **new_env;
3345
3346         /* Case when we are here: ... | var=val | ... */
3347         if (!argv[assignment_cnt])
3348                 _exit(EXIT_SUCCESS);
3349
3350         new_env = expand_assignments(argv, assignment_cnt);
3351 #if BB_MMU
3352         set_vars_and_save_old(new_env);
3353         free(new_env); /* optional */
3354         /* we can also destroy set_vars_and_save_old's return value,
3355          * to save memory */
3356 #else
3357         nommu_save->new_env = new_env;
3358         nommu_save->old_vars = set_vars_and_save_old(new_env);
3359 #endif
3360         if (argv_expanded) {
3361                 argv = argv_expanded;
3362         } else {
3363                 argv = expand_strvec_to_strvec(argv + assignment_cnt);
3364 #if !BB_MMU
3365                 nommu_save->argv = argv;
3366 #endif
3367         }
3368
3369 #if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
3370         if (strchr(argv[0], '/') != NULL)
3371                 goto skip;
3372 #endif
3373
3374         /* Check if the command matches any of the builtins.
3375          * Depending on context, this might be redundant.  But it's
3376          * easier to waste a few CPU cycles than it is to figure out
3377          * if this is one of those cases.
3378          */
3379         {
3380                 /* On NOMMU, it is more expensive to re-execute shell
3381                  * just in order to run echo or test builtin.
3382                  * It's better to skip it here and run corresponding
3383                  * non-builtin later. */
3384                 const struct built_in_command *x;
3385                 x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]);
3386                 if (x) {
3387                         exec_builtin(&nommu_save->argv_from_re_execing, x, argv);
3388                 }
3389         }
3390 #if ENABLE_HUSH_FUNCTIONS
3391         /* Check if the command matches any functions */
3392         {
3393                 const struct function *funcp = find_function(argv[0]);
3394                 if (funcp) {
3395                         exec_function(&nommu_save->argv_from_re_execing, funcp, argv);
3396                 }
3397         }
3398 #endif
3399
3400 #if ENABLE_FEATURE_SH_STANDALONE
3401         /* Check if the command matches any busybox applets */
3402         {
3403                 int a = find_applet_by_name(argv[0]);
3404                 if (a >= 0) {
3405 # if BB_MMU /* see above why on NOMMU it is not allowed */
3406                         if (APPLET_IS_NOEXEC(a)) {
3407                                 debug_printf_exec("running applet '%s'\n", argv[0]);
3408                                 run_applet_no_and_exit(a, argv);
3409                         }
3410 # endif
3411                         /* Re-exec ourselves */
3412                         debug_printf_exec("re-execing applet '%s'\n", argv[0]);
3413                         sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
3414                         execv(bb_busybox_exec_path, argv);
3415                         /* If they called chroot or otherwise made the binary no longer
3416                          * executable, fall through */
3417                 }
3418         }
3419 #endif
3420
3421 #if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
3422  skip:
3423 #endif
3424         debug_printf_exec("execing '%s'\n", argv[0]);
3425         sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
3426         execvp(argv[0], argv);
3427         bb_perror_msg("can't execute '%s'", argv[0]);
3428         _exit(127); /* bash compat */
3429 }
3430
3431 /* Called after [v]fork() in run_pipe
3432  */
3433 static void pseudo_exec(nommu_save_t *nommu_save,
3434                 struct command *command,
3435                 char **argv_expanded) NORETURN;
3436 static void pseudo_exec(nommu_save_t *nommu_save,
3437                 struct command *command,
3438                 char **argv_expanded)
3439 {
3440         if (command->argv) {
3441                 pseudo_exec_argv(nommu_save, command->argv,
3442                                 command->assignment_cnt, argv_expanded);
3443         }
3444
3445         if (command->group) {
3446                 /* Cases when we are here:
3447                  * ( list )
3448                  * { list } &
3449                  * ... | ( list ) | ...
3450                  * ... | { list } | ...
3451                  */
3452 #if BB_MMU
3453                 int rcode;
3454                 debug_printf_exec("pseudo_exec: run_list\n");
3455                 reset_traps_to_defaults();
3456                 rcode = run_list(command->group);
3457                 /* OK to leak memory by not calling free_pipe_list,
3458                  * since this process is about to exit */
3459                 _exit(rcode);
3460 #else
3461                 re_execute_shell(&nommu_save->argv_from_re_execing,
3462                                 command->group_as_string,
3463                                 G.global_argv[0],
3464                                 G.global_argv + 1,
3465                                 NULL);
3466 #endif
3467         }
3468
3469         /* Case when we are here: ... | >file */
3470         debug_printf_exec("pseudo_exec'ed null command\n");
3471         _exit(EXIT_SUCCESS);
3472 }
3473
3474 #if ENABLE_HUSH_JOB
3475 static const char *get_cmdtext(struct pipe *pi)
3476 {
3477         char **argv;
3478         char *p;
3479         int len;
3480
3481         /* This is subtle. ->cmdtext is created only on first backgrounding.
3482          * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
3483          * On subsequent bg argv is trashed, but we won't use it */
3484         if (pi->cmdtext)
3485                 return pi->cmdtext;
3486         argv = pi->cmds[0].argv;
3487         if (!argv || !argv[0]) {
3488                 pi->cmdtext = xzalloc(1);
3489                 return pi->cmdtext;
3490         }
3491
3492         len = 0;
3493         do {
3494                 len += strlen(*argv) + 1;
3495         } while (*++argv);
3496         p = xmalloc(len);
3497         pi->cmdtext = p;
3498         argv = pi->cmds[0].argv;
3499         do {
3500                 len = strlen(*argv);
3501                 memcpy(p, *argv, len);
3502                 p += len;
3503                 *p++ = ' ';
3504         } while (*++argv);
3505         p[-1] = '\0';
3506         return pi->cmdtext;
3507 }
3508
3509 static void insert_bg_job(struct pipe *pi)
3510 {
3511         struct pipe *job, **jobp;
3512         int i;
3513
3514         /* Linear search for the ID of the job to use */
3515         pi->jobid = 1;
3516         for (job = G.job_list; job; job = job->next)
3517                 if (job->jobid >= pi->jobid)
3518                         pi->jobid = job->jobid + 1;
3519
3520         /* Add job to the list of running jobs */
3521         jobp = &G.job_list;
3522         while ((job = *jobp) != NULL)
3523                 jobp = &job->next;
3524         job = *jobp = xmalloc(sizeof(*job));
3525
3526         *job = *pi; /* physical copy */
3527         job->next = NULL;
3528         job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
3529         /* Cannot copy entire pi->cmds[] vector! This causes double frees */
3530         for (i = 0; i < pi->num_cmds; i++) {
3531                 job->cmds[i].pid = pi->cmds[i].pid;
3532                 /* all other fields are not used and stay zero */
3533         }
3534         job->cmdtext = xstrdup(get_cmdtext(pi));
3535
3536         if (G_interactive_fd)
3537                 printf("[%d] %d %s\n", job->jobid, job->cmds[0].pid, job->cmdtext);
3538         /* Last command's pid goes to $! */
3539         G.last_bg_pid = job->cmds[job->num_cmds - 1].pid;
3540         G.last_jobid = job->jobid;
3541 }
3542
3543 static void remove_bg_job(struct pipe *pi)
3544 {
3545         struct pipe *prev_pipe;
3546
3547         if (pi == G.job_list) {
3548                 G.job_list = pi->next;
3549         } else {
3550                 prev_pipe = G.job_list;
3551                 while (prev_pipe->next != pi)
3552                         prev_pipe = prev_pipe->next;
3553                 prev_pipe->next = pi->next;
3554         }
3555         if (G.job_list)
3556                 G.last_jobid = G.job_list->jobid;
3557         else
3558                 G.last_jobid = 0;
3559 }
3560
3561 /* Remove a backgrounded job */
3562 static void delete_finished_bg_job(struct pipe *pi)
3563 {
3564         remove_bg_job(pi);
3565         pi->stopped_cmds = 0;
3566         free_pipe(pi);
3567         free(pi);
3568 }
3569 #endif /* JOB */
3570
3571 /* Check to see if any processes have exited -- if they
3572  * have, figure out why and see if a job has completed */
3573 static int checkjobs(struct pipe* fg_pipe)
3574 {
3575         int attributes;
3576         int status;
3577 #if ENABLE_HUSH_JOB
3578         struct pipe *pi;
3579 #endif
3580         pid_t childpid;
3581         int rcode = 0;
3582
3583         debug_printf_jobs("checkjobs %p\n", fg_pipe);
3584
3585         attributes = WUNTRACED;
3586         if (fg_pipe == NULL)
3587                 attributes |= WNOHANG;
3588
3589         errno = 0;
3590 #if ENABLE_HUSH_FAST
3591         if (G.handled_SIGCHLD == G.count_SIGCHLD) {
3592 //bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p",
3593 //getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe);
3594                 /* There was neither fork nor SIGCHLD since last waitpid */
3595                 /* Avoid doing waitpid syscall if possible */
3596                 if (!G.we_have_children) {
3597                         errno = ECHILD;
3598                         return -1;
3599                 }
3600                 if (fg_pipe == NULL) { /* is WNOHANG set? */
3601                         /* We have children, but they did not exit
3602                          * or stop yet (we saw no SIGCHLD) */
3603                         return 0;
3604                 }
3605                 /* else: !WNOHANG, waitpid will block, can't short-circuit */
3606         }
3607 #endif
3608
3609 /* Do we do this right?
3610  * bash-3.00# sleep 20 | false
3611  * <ctrl-Z pressed>
3612  * [3]+  Stopped          sleep 20 | false
3613  * bash-3.00# echo $?
3614  * 1   <========== bg pipe is not fully done, but exitcode is already known!
3615  * [hush 1.14.0: yes we do it right]
3616  */
3617  wait_more:
3618         while (1) {
3619                 int i;
3620                 int dead;
3621
3622 #if ENABLE_HUSH_FAST
3623                 i = G.count_SIGCHLD;
3624 #endif
3625                 childpid = waitpid(-1, &status, attributes);
3626                 if (childpid <= 0) {
3627                         if (childpid && errno != ECHILD)
3628                                 bb_perror_msg("waitpid");
3629 #if ENABLE_HUSH_FAST
3630                         else { /* Until next SIGCHLD, waitpid's are useless */
3631                                 G.we_have_children = (childpid == 0);
3632                                 G.handled_SIGCHLD = i;
3633 //bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
3634                         }
3635 #endif
3636                         break;
3637                 }
3638                 dead = WIFEXITED(status) || WIFSIGNALED(status);
3639
3640 #if DEBUG_JOBS
3641                 if (WIFSTOPPED(status))
3642                         debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
3643                                         childpid, WSTOPSIG(status), WEXITSTATUS(status));
3644                 if (WIFSIGNALED(status))
3645                         debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
3646                                         childpid, WTERMSIG(status), WEXITSTATUS(status));
3647                 if (WIFEXITED(status))
3648                         debug_printf_jobs("pid %d exited, exitcode %d\n",
3649                                         childpid, WEXITSTATUS(status));
3650 #endif
3651                 /* Were we asked to wait for fg pipe? */
3652                 if (fg_pipe) {
3653                         for (i = 0; i < fg_pipe->num_cmds; i++) {
3654                                 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
3655                                 if (fg_pipe->cmds[i].pid != childpid)
3656                                         continue;
3657                                 if (dead) {
3658                                         fg_pipe->cmds[i].pid = 0;
3659                                         fg_pipe->alive_cmds--;
3660                                         if (i == fg_pipe->num_cmds - 1) {
3661                                                 /* last process gives overall exitstatus */
3662                                                 /* Note: is WIFSIGNALED, WEXITSTATUS = sig + 128 */
3663                                                 rcode = WEXITSTATUS(status);
3664                                                 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
3665                                                 /* bash prints killer signal's name for *last*
3666                                                  * process in pipe (prints just newline for SIGINT).
3667                                                  * Mimic this. Example: "sleep 5" + (^\ or kill -QUIT)
3668                                                  */
3669                                                 if (WIFSIGNALED(status)) {
3670                                                         int sig = WTERMSIG(status);
3671                                                         printf("%s\n", sig == SIGINT ? "" : get_signame(sig));
3672                                                 }
3673                                         }
3674                                 } else {
3675                                         fg_pipe->cmds[i].is_stopped = 1;
3676                                         fg_pipe->stopped_cmds++;
3677                                 }
3678                                 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
3679                                                 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
3680                                 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
3681                                         /* All processes in fg pipe have exited or stopped */
3682 /* Note: *non-interactive* bash does not continue if all processes in fg pipe
3683  * are stopped. Testcase: "cat | cat" in a script (not on command line!)
3684  * and "killall -STOP cat" */
3685                                         if (G_interactive_fd) {
3686 #if ENABLE_HUSH_JOB
3687                                                 if (fg_pipe->alive_cmds)
3688                                                         insert_bg_job(fg_pipe);
3689 #endif
3690                                                 return rcode;
3691                                         }
3692                                         if (!fg_pipe->alive_cmds)
3693                                                 return rcode;
3694                                 }
3695                                 /* There are still running processes in the fg pipe */
3696                                 goto wait_more; /* do waitpid again */
3697                         }
3698                         /* it wasnt fg_pipe, look for process in bg pipes */
3699                 }
3700
3701 #if ENABLE_HUSH_JOB
3702                 /* We asked to wait for bg or orphaned children */
3703                 /* No need to remember exitcode in this case */
3704                 for (pi = G.job_list; pi; pi = pi->next) {
3705                         for (i = 0; i < pi->num_cmds; i++) {
3706                                 if (pi->cmds[i].pid == childpid)
3707                                         goto found_pi_and_prognum;
3708                         }
3709                 }
3710                 /* Happens when shell is used as init process (init=/bin/sh) */
3711                 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
3712                 continue; /* do waitpid again */
3713
3714  found_pi_and_prognum:
3715                 if (dead) {
3716                         /* child exited */
3717                         pi->cmds[i].pid = 0;
3718                         pi->alive_cmds--;
3719                         if (!pi->alive_cmds) {
3720                                 if (G_interactive_fd)
3721                                         printf(JOB_STATUS_FORMAT, pi->jobid,
3722                                                         "Done", pi->cmdtext);
3723                                 delete_finished_bg_job(pi);
3724                         }
3725                 } else {
3726                         /* child stopped */
3727                         pi->cmds[i].is_stopped = 1;
3728                         pi->stopped_cmds++;
3729                 }
3730 #endif
3731         } /* while (waitpid succeeds)... */
3732
3733         return rcode;
3734 }
3735
3736 #if ENABLE_HUSH_JOB
3737 static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
3738 {
3739         pid_t p;
3740         int rcode = checkjobs(fg_pipe);
3741         if (G_saved_tty_pgrp) {
3742                 /* Job finished, move the shell to the foreground */
3743                 p = getpgrp(); /* our process group id */
3744                 debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p);
3745                 tcsetpgrp(G_interactive_fd, p);
3746         }
3747         return rcode;
3748 }
3749 #endif
3750
3751 /* Start all the jobs, but don't wait for anything to finish.
3752  * See checkjobs().
3753  *
3754  * Return code is normally -1, when the caller has to wait for children
3755  * to finish to determine the exit status of the pipe.  If the pipe
3756  * is a simple builtin command, however, the action is done by the
3757  * time run_pipe returns, and the exit code is provided as the
3758  * return value.
3759  *
3760  * Returns -1 only if started some children. IOW: we have to
3761  * mask out retvals of builtins etc with 0xff!
3762  *
3763  * The only case when we do not need to [v]fork is when the pipe
3764  * is single, non-backgrounded, non-subshell command. Examples:
3765  * cmd ; ...   { list } ; ...
3766  * cmd && ...  { list } && ...
3767  * cmd || ...  { list } || ...
3768  * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
3769  * or (if SH_STANDALONE) an applet, and we can run the { list }
3770  * with run_list. If it isn't one of these, we fork and exec cmd.
3771  *
3772  * Cases when we must fork:
3773  * non-single:   cmd | cmd
3774  * backgrounded: cmd &     { list } &
3775  * subshell:     ( list ) [&]
3776  */
3777 static NOINLINE int run_pipe(struct pipe *pi)
3778 {
3779         static const char *const null_ptr = NULL;
3780         int i;
3781         int nextin;
3782         struct command *command;
3783         char **argv_expanded;
3784         char **argv;
3785         char *p;
3786         /* it is not always needed, but we aim to smaller code */
3787         int squirrel[] = { -1, -1, -1 };
3788         int rcode;
3789
3790         debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
3791         debug_enter();
3792
3793         IF_HUSH_JOB(pi->pgrp = -1;)
3794         pi->stopped_cmds = 0;
3795         command = &(pi->cmds[0]);
3796         argv_expanded = NULL;
3797
3798         if (pi->num_cmds != 1
3799          || pi->followup == PIPE_BG
3800          || command->cmd_type == CMD_SUBSHELL
3801         ) {
3802                 goto must_fork;
3803         }
3804
3805         pi->alive_cmds = 1;
3806
3807         debug_printf_exec(": group:%p argv:'%s'\n",
3808                 command->group, command->argv ? command->argv[0] : "NONE");
3809
3810         if (command->group) {
3811 #if ENABLE_HUSH_FUNCTIONS
3812                 if (command->cmd_type == CMD_FUNCDEF) {
3813                         /* "executing" func () { list } */
3814                         struct function *funcp;
3815
3816                         funcp = new_function(command->argv[0]);
3817                         /* funcp->name is already set to argv[0] */
3818                         funcp->body = command->group;
3819 # if !BB_MMU
3820                         funcp->body_as_string = command->group_as_string;
3821                         command->group_as_string = NULL;
3822 # endif
3823                         command->group = NULL;
3824                         command->argv[0] = NULL;
3825                         debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
3826                         funcp->parent_cmd = command;
3827                         command->child_func = funcp;
3828
3829                         debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
3830                         debug_leave();
3831                         return EXIT_SUCCESS;
3832                 }
3833 #endif
3834                 /* { list } */
3835                 debug_printf("non-subshell group\n");
3836                 rcode = 1; /* exitcode if redir failed */
3837                 if (setup_redirects(command, squirrel) == 0) {
3838                         debug_printf_exec(": run_list\n");
3839                         rcode = run_list(command->group) & 0xff;
3840                 }
3841                 restore_redirects(squirrel);
3842                 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
3843                 debug_leave();
3844                 debug_printf_exec("run_pipe: return %d\n", rcode);
3845                 return rcode;
3846         }
3847
3848         argv = command->argv ? command->argv : (char **) &null_ptr;
3849         {
3850                 const struct built_in_command *x;
3851 #if ENABLE_HUSH_FUNCTIONS
3852                 const struct function *funcp;
3853 #else
3854                 enum { funcp = 0 };
3855 #endif
3856                 char **new_env = NULL;
3857                 struct variable *old_vars = NULL;
3858
3859                 if (argv[command->assignment_cnt] == NULL) {
3860                         /* Assignments, but no command */
3861                         /* Ensure redirects take effect. Try "a=t >file" */
3862                         rcode = setup_redirects(command, squirrel);
3863                         restore_redirects(squirrel);
3864                         /* Set shell variables */
3865                         while (*argv) {
3866                                 p = expand_string_to_string(*argv);
3867                                 debug_printf_exec("set shell var:'%s'->'%s'\n",
3868                                                 *argv, p);
3869                                 set_local_var(p, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
3870                                 argv++;
3871                         }
3872                         /* Do we need to flag set_local_var() errors?
3873                          * "assignment to readonly var" and "putenv error"
3874                          */
3875                         IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
3876                         debug_leave();
3877                         debug_printf_exec("run_pipe: return %d\n", rcode);
3878                         return rcode;
3879                 }
3880
3881                 /* Expand the rest into (possibly) many strings each */
3882                 if (0) {}
3883 #if ENABLE_HUSH_BASH_COMPAT
3884                 else if (command->cmd_type == CMD_SINGLEWORD_NOGLOB) {
3885                         argv_expanded = expand_strvec_to_strvec_singleword_noglob(argv + command->assignment_cnt);
3886                 }
3887 #endif
3888 #ifdef CMD_SINGLEWORD_NOGLOB_COND
3889                 else if (command->cmd_type == CMD_SINGLEWORD_NOGLOB_COND) {
3890                         argv_expanded = expand_strvec_to_strvec_singleword_noglob_cond(argv + command->assignment_cnt);
3891
3892                 }
3893 #endif
3894                 else {
3895                         argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
3896                 }
3897
3898                 /* if someone gives us an empty string: `cmd with empty output` */
3899                 if (!argv_expanded[0]) {
3900                         debug_leave();
3901                         return 0;
3902                 }
3903
3904                 x = find_builtin(argv_expanded[0]);
3905 #if ENABLE_HUSH_FUNCTIONS
3906                 funcp = NULL;
3907                 if (!x)
3908                         funcp = find_function(argv_expanded[0]);
3909 #endif
3910                 if (x || funcp) {
3911                         if (!funcp) {
3912                                 if (x->function == builtin_exec && argv_expanded[1] == NULL) {
3913                                         debug_printf("exec with redirects only\n");
3914                                         rcode = setup_redirects(command, NULL);
3915                                         goto clean_up_and_ret1;
3916                                 }
3917                         }
3918                         /* setup_redirects acts on file descriptors, not FILEs.
3919                          * This is perfect for work that comes after exec().
3920                          * Is it really safe for inline use?  Experimentally,
3921                          * things seem to work. */
3922                         rcode = setup_redirects(command, squirrel);
3923                         if (rcode == 0) {
3924                                 new_env = expand_assignments(argv, command->assignment_cnt);
3925                                 old_vars = set_vars_and_save_old(new_env);
3926                                 if (!funcp) {
3927                                         debug_printf_exec(": builtin '%s' '%s'...\n",
3928                                                 x->cmd, argv_expanded[1]);
3929                                         rcode = x->function(argv_expanded) & 0xff;
3930                                         fflush(NULL);
3931                                 }
3932 #if ENABLE_HUSH_FUNCTIONS
3933                                 else {
3934 # if ENABLE_HUSH_LOCAL
3935                                         struct variable **sv;
3936                                         sv = G.shadowed_vars_pp;
3937                                         G.shadowed_vars_pp = &old_vars;
3938 # endif
3939                                         debug_printf_exec(": function '%s' '%s'...\n",
3940                                                 funcp->name, argv_expanded[1]);
3941                                         rcode = run_function(funcp, argv_expanded) & 0xff;
3942 # if ENABLE_HUSH_LOCAL
3943                                         G.shadowed_vars_pp = sv;
3944 # endif
3945                                 }
3946 #endif
3947                         }
3948 #if ENABLE_FEATURE_SH_STANDALONE
3949  clean_up_and_ret:
3950 #endif
3951                         restore_redirects(squirrel);
3952                         unset_vars(new_env);
3953                         add_vars(old_vars);
3954  clean_up_and_ret1:
3955                         free(argv_expanded);
3956                         IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
3957                         debug_leave();
3958                         debug_printf_exec("run_pipe return %d\n", rcode);
3959                         return rcode;
3960                 }
3961
3962 #if ENABLE_FEATURE_SH_STANDALONE
3963                 i = find_applet_by_name(argv_expanded[0]);
3964                 if (i >= 0 && APPLET_IS_NOFORK(i)) {
3965                         rcode = setup_redirects(command, squirrel);
3966                         if (rcode == 0) {
3967                                 new_env = expand_assignments(argv, command->assignment_cnt);
3968                                 old_vars = set_vars_and_save_old(new_env);
3969                                 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
3970                                         argv_expanded[0], argv_expanded[1]);
3971                                 rcode = run_nofork_applet(i, argv_expanded);
3972                         }
3973                         goto clean_up_and_ret;
3974                 }
3975 #endif
3976                 /* It is neither builtin nor applet. We must fork. */
3977         }
3978
3979  must_fork:
3980         /* NB: argv_expanded may already be created, and that
3981          * might include `cmd` runs! Do not rerun it! We *must*
3982          * use argv_expanded if it's non-NULL */
3983
3984         /* Going to fork a child per each pipe member */
3985         pi->alive_cmds = 0;
3986         nextin = 0;
3987
3988         for (i = 0; i < pi->num_cmds; i++) {
3989                 struct fd_pair pipefds;
3990 #if !BB_MMU
3991                 volatile nommu_save_t nommu_save;
3992                 nommu_save.new_env = NULL;
3993                 nommu_save.old_vars = NULL;
3994                 nommu_save.argv = NULL;
3995                 nommu_save.argv_from_re_execing = NULL;
3996 #endif
3997                 command = &(pi->cmds[i]);
3998                 if (command->argv) {
3999                         debug_printf_exec(": pipe member '%s' '%s'...\n",
4000                                         command->argv[0], command->argv[1]);
4001                 } else {
4002                         debug_printf_exec(": pipe member with no argv\n");
4003                 }
4004
4005                 /* pipes are inserted between pairs of commands */
4006                 pipefds.rd = 0;
4007                 pipefds.wr = 1;
4008                 if ((i + 1) < pi->num_cmds)
4009                         xpiped_pair(pipefds);
4010
4011                 command->pid = BB_MMU ? fork() : vfork();
4012                 if (!command->pid) { /* child */
4013 #if ENABLE_HUSH_JOB
4014                         disable_restore_tty_pgrp_on_exit();
4015                         CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
4016
4017                         /* Every child adds itself to new process group
4018                          * with pgid == pid_of_first_child_in_pipe */
4019                         if (G.run_list_level == 1 && G_interactive_fd) {
4020                                 pid_t pgrp;
4021                                 pgrp = pi->pgrp;
4022                                 if (pgrp < 0) /* true for 1st process only */
4023                                         pgrp = getpid();
4024                                 if (setpgid(0, pgrp) == 0
4025                                  && pi->followup != PIPE_BG
4026                                  && G_saved_tty_pgrp /* we have ctty */
4027                                 ) {
4028                                         /* We do it in *every* child, not just first,
4029                                          * to avoid races */
4030                                         tcsetpgrp(G_interactive_fd, pgrp);
4031                                 }
4032                         }
4033 #endif
4034                         if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
4035                                 /* 1st cmd in backgrounded pipe
4036                                  * should have its stdin /dev/null'ed */
4037                                 close(0);
4038                                 if (open(bb_dev_null, O_RDONLY))
4039                                         xopen("/", O_RDONLY);
4040                         } else {
4041                                 xmove_fd(nextin, 0);
4042                         }
4043                         xmove_fd(pipefds.wr, 1);
4044                         if (pipefds.rd > 1)
4045                                 close(pipefds.rd);
4046                         /* Like bash, explicit redirects override pipes,
4047                          * and the pipe fd is available for dup'ing. */
4048                         if (setup_redirects(command, NULL))
4049                                 _exit(1);
4050
4051                         /* Restore default handlers just prior to exec */
4052                         /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
4053
4054                         /* Stores to nommu_save list of env vars putenv'ed
4055                          * (NOMMU, on MMU we don't need that) */
4056                         /* cast away volatility... */
4057                         pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
4058                         /* pseudo_exec() does not return */
4059                 }
4060
4061                 /* parent or error */
4062 #if ENABLE_HUSH_FAST
4063                 G.count_SIGCHLD++;
4064 //bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
4065 #endif
4066                 enable_restore_tty_pgrp_on_exit();
4067 #if !BB_MMU
4068                 /* Clean up after vforked child */
4069                 free(nommu_save.argv);
4070                 free(nommu_save.argv_from_re_execing);
4071                 unset_vars(nommu_save.new_env);
4072                 add_vars(nommu_save.old_vars);
4073 #endif
4074                 free(argv_expanded);
4075                 argv_expanded = NULL;
4076                 if (command->pid < 0) { /* [v]fork failed */
4077                         /* Clearly indicate, was it fork or vfork */
4078                         bb_perror_msg(BB_MMU ? "fork" : "vfork");
4079                 } else {
4080                         pi->alive_cmds++;
4081 #if ENABLE_HUSH_JOB
4082                         /* Second and next children need to know pid of first one */
4083                         if (pi->pgrp < 0)
4084                                 pi->pgrp = command->pid;
4085 #endif
4086                 }
4087
4088                 if (i)
4089                         close(nextin);
4090                 if ((i + 1) < pi->num_cmds)
4091                         close(pipefds.wr);
4092                 /* Pass read (output) pipe end to next iteration */
4093                 nextin = pipefds.rd;
4094         }
4095
4096         if (!pi->alive_cmds) {
4097                 debug_leave();
4098                 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
4099                 return 1;
4100         }
4101
4102         debug_leave();
4103         debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
4104         return -1;
4105 }
4106
4107 #ifndef debug_print_tree
4108 static void debug_print_tree(struct pipe *pi, int lvl)
4109 {
4110         static const char *const PIPE[] = {
4111                 [PIPE_SEQ] = "SEQ",
4112                 [PIPE_AND] = "AND",
4113                 [PIPE_OR ] = "OR" ,
4114                 [PIPE_BG ] = "BG" ,
4115         };
4116         static const char *RES[] = {
4117                 [RES_NONE ] = "NONE" ,
4118 # if ENABLE_HUSH_IF
4119                 [RES_IF   ] = "IF"   ,
4120                 [RES_THEN ] = "THEN" ,
4121                 [RES_ELIF ] = "ELIF" ,
4122                 [RES_ELSE ] = "ELSE" ,
4123                 [RES_FI   ] = "FI"   ,
4124 # endif
4125 # if ENABLE_HUSH_LOOPS
4126                 [RES_FOR  ] = "FOR"  ,
4127                 [RES_WHILE] = "WHILE",
4128                 [RES_UNTIL] = "UNTIL",
4129                 [RES_DO   ] = "DO"   ,
4130                 [RES_DONE ] = "DONE" ,
4131 # endif
4132 # if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
4133                 [RES_IN   ] = "IN"   ,
4134 # endif
4135 # if ENABLE_HUSH_CASE
4136                 [RES_CASE ] = "CASE" ,
4137                 [RES_CASE_IN ] = "CASE_IN" ,
4138                 [RES_MATCH] = "MATCH",
4139                 [RES_CASE_BODY] = "CASE_BODY",
4140                 [RES_ESAC ] = "ESAC" ,
4141 # endif
4142                 [RES_XXXX ] = "XXXX" ,
4143                 [RES_SNTX ] = "SNTX" ,
4144         };
4145         static const char *const CMDTYPE[] = {
4146                 "{}",
4147                 "()",
4148                 "[noglob]",
4149 # if ENABLE_HUSH_FUNCTIONS
4150                 "func()",
4151 # endif
4152         };
4153
4154         int pin, prn;
4155
4156         pin = 0;
4157         while (pi) {
4158                 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
4159                                 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
4160                 prn = 0;
4161                 while (prn < pi->num_cmds) {
4162                         struct command *command = &pi->cmds[prn];
4163                         char **argv = command->argv;
4164
4165                         fprintf(stderr, "%*s cmd %d assignment_cnt:%d",
4166                                         lvl*2, "", prn,
4167                                         command->assignment_cnt);
4168                         if (command->group) {
4169                                 fprintf(stderr, " group %s: (argv=%p)\n",
4170                                                 CMDTYPE[command->cmd_type],
4171                                                 argv);
4172                                 debug_print_tree(command->group, lvl+1);
4173                                 prn++;
4174                                 continue;
4175                         }
4176                         if (argv) while (*argv) {
4177                                 fprintf(stderr, " '%s'", *argv);
4178                                 argv++;
4179                         }
4180                         fprintf(stderr, "\n");
4181                         prn++;
4182                 }
4183                 pi = pi->next;
4184                 pin++;
4185         }
4186 }
4187 #endif /* debug_print_tree */
4188
4189 /* NB: called by pseudo_exec, and therefore must not modify any
4190  * global data until exec/_exit (we can be a child after vfork!) */
4191 static int run_list(struct pipe *pi)
4192 {
4193 #if ENABLE_HUSH_CASE
4194         char *case_word = NULL;
4195 #endif
4196 #if ENABLE_HUSH_LOOPS
4197         struct pipe *loop_top = NULL;
4198         char **for_lcur = NULL;
4199         char **for_list = NULL;
4200 #endif
4201         smallint last_followup;
4202         smalluint rcode;
4203 #if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
4204         smalluint cond_code = 0;
4205 #else
4206         enum { cond_code = 0 };
4207 #endif
4208 #if HAS_KEYWORDS
4209         smallint rword; /* enum reserved_style */
4210         smallint last_rword; /* ditto */
4211 #endif
4212
4213         debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
4214         debug_enter();
4215
4216 #if ENABLE_HUSH_LOOPS
4217         /* Check syntax for "for" */
4218         for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
4219                 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
4220                         continue;
4221                 /* current word is FOR or IN (BOLD in comments below) */
4222                 if (cpipe->next == NULL) {
4223                         syntax_error("malformed for");
4224                         debug_leave();
4225                         debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
4226                         return 1;
4227                 }
4228                 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
4229                 if (cpipe->next->res_word == RES_DO)
4230                         continue;
4231                 /* next word is not "do". It must be "in" then ("FOR v in ...") */
4232                 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
4233                  || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
4234                 ) {
4235                         syntax_error("malformed for");
4236                         debug_leave();
4237                         debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
4238                         return 1;
4239                 }
4240         }
4241 #endif
4242
4243         /* Past this point, all code paths should jump to ret: label
4244          * in order to return, no direct "return" statements please.
4245          * This helps to ensure that no memory is leaked. */
4246
4247 #if ENABLE_HUSH_JOB
4248         G.run_list_level++;
4249 #endif
4250
4251 #if HAS_KEYWORDS
4252         rword = RES_NONE;
4253         last_rword = RES_XXXX;
4254 #endif
4255         last_followup = PIPE_SEQ;
4256         rcode = G.last_exitcode;
4257
4258         /* Go through list of pipes, (maybe) executing them. */
4259         for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
4260                 if (G.flag_SIGINT)
4261                         break;
4262
4263                 IF_HAS_KEYWORDS(rword = pi->res_word;)
4264                 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
4265                                 rword, cond_code, last_rword);
4266 #if ENABLE_HUSH_LOOPS
4267                 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
4268                  && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
4269                 ) {
4270                         /* start of a loop: remember where loop starts */
4271                         loop_top = pi;
4272                         G.depth_of_loop++;
4273                 }
4274 #endif
4275                 /* Still in the same "if...", "then..." or "do..." branch? */
4276                 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
4277                         if ((rcode == 0 && last_followup == PIPE_OR)
4278                          || (rcode != 0 && last_followup == PIPE_AND)
4279                         ) {
4280                                 /* It is "<true> || CMD" or "<false> && CMD"
4281                                  * and we should not execute CMD */
4282                                 debug_printf_exec("skipped cmd because of || or &&\n");
4283                                 last_followup = pi->followup;
4284                                 continue;
4285                         }
4286                 }
4287                 last_followup = pi->followup;
4288                 IF_HAS_KEYWORDS(last_rword = rword;)
4289 #if ENABLE_HUSH_IF
4290                 if (cond_code) {
4291                         if (rword == RES_THEN) {
4292                                 /* if false; then ... fi has exitcode 0! */
4293                                 G.last_exitcode = rcode = EXIT_SUCCESS;
4294                                 /* "if <false> THEN cmd": skip cmd */
4295                                 continue;
4296                         }
4297                 } else {
4298                         if (rword == RES_ELSE || rword == RES_ELIF) {
4299                                 /* "if <true> then ... ELSE/ELIF cmd":
4300                                  * skip cmd and all following ones */
4301                                 break;
4302                         }
4303                 }
4304 #endif
4305 #if ENABLE_HUSH_LOOPS
4306                 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
4307                         if (!for_lcur) {
4308                                 /* first loop through for */
4309
4310                                 static const char encoded_dollar_at[] ALIGN1 = {
4311                                         SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
4312                                 }; /* encoded representation of "$@" */
4313                                 static const char *const encoded_dollar_at_argv[] = {
4314                                         encoded_dollar_at, NULL
4315                                 }; /* argv list with one element: "$@" */
4316                                 char **vals;
4317
4318                                 vals = (char**)encoded_dollar_at_argv;
4319                                 if (pi->next->res_word == RES_IN) {
4320                                         /* if no variable values after "in" we skip "for" */
4321                                         if (!pi->next->cmds[0].argv) {
4322                                                 G.last_exitcode = rcode = EXIT_SUCCESS;
4323                                                 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
4324                                                 break;
4325                                         }
4326                                         vals = pi->next->cmds[0].argv;
4327                                 } /* else: "for var; do..." -> assume "$@" list */
4328                                 /* create list of variable values */
4329                                 debug_print_strings("for_list made from", vals);
4330                                 for_list = expand_strvec_to_strvec(vals);
4331                                 for_lcur = for_list;
4332                                 debug_print_strings("for_list", for_list);
4333                         }
4334                         if (!*for_lcur) {
4335                                 /* "for" loop is over, clean up */
4336                                 free(for_list);
4337                                 for_list = NULL;
4338                                 for_lcur = NULL;
4339                                 break;
4340                         }
4341                         /* Insert next value from for_lcur */
4342                         /* note: *for_lcur already has quotes removed, $var expanded, etc */
4343                         set_local_var(xasprintf("%s=%s", pi->cmds[0].argv[0], *for_lcur++), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
4344                         continue;
4345                 }
4346                 if (rword == RES_IN) {
4347                         continue; /* "for v IN list;..." - "in" has no cmds anyway */
4348                 }
4349                 if (rword == RES_DONE) {
4350                         continue; /* "done" has no cmds too */
4351                 }
4352 #endif
4353 #if ENABLE_HUSH_CASE
4354                 if (rword == RES_CASE) {
4355                         case_word = expand_strvec_to_string(pi->cmds->argv);
4356                         continue;
4357                 }
4358                 if (rword == RES_MATCH) {
4359                         char **argv;
4360
4361                         if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
4362                                 break;
4363                         /* all prev words didn't match, does this one match? */
4364                         argv = pi->cmds->argv;
4365                         while (*argv) {
4366                                 char *pattern = expand_string_to_string(*argv);
4367                                 /* TODO: which FNM_xxx flags to use? */
4368                                 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
4369                                 free(pattern);
4370                                 if (cond_code == 0) { /* match! we will execute this branch */
4371                                         free(case_word); /* make future "word)" stop */
4372                                         case_word = NULL;
4373                                         break;
4374                                 }
4375                                 argv++;
4376                         }
4377                         continue;
4378                 }
4379                 if (rword == RES_CASE_BODY) { /* inside of a case branch */
4380                         if (cond_code != 0)
4381                                 continue; /* not matched yet, skip this pipe */
4382                 }
4383 #endif
4384                 /* Just pressing <enter> in shell should check for jobs.
4385                  * OTOH, in non-interactive shell this is useless
4386                  * and only leads to extra job checks */
4387                 if (pi->num_cmds == 0) {
4388                         if (G_interactive_fd)
4389                                 goto check_jobs_and_continue;
4390                         continue;
4391                 }
4392
4393                 /* After analyzing all keywords and conditions, we decided
4394                  * to execute this pipe. NB: have to do checkjobs(NULL)
4395                  * after run_pipe to collect any background children,
4396                  * even if list execution is to be stopped. */
4397                 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
4398                 {
4399                         int r;
4400 #if ENABLE_HUSH_LOOPS
4401                         G.flag_break_continue = 0;
4402 #endif
4403                         rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
4404                         if (r != -1) {
4405                                 /* We ran a builtin, function, or group.
4406                                  * rcode is already known
4407                                  * and we don't need to wait for anything. */
4408                                 G.last_exitcode = rcode;
4409                                 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
4410                                 check_and_run_traps(0);
4411 #if ENABLE_HUSH_LOOPS
4412                                 /* Was it "break" or "continue"? */
4413                                 if (G.flag_break_continue) {
4414                                         smallint fbc = G.flag_break_continue;
4415                                         /* We might fall into outer *loop*,
4416                                          * don't want to break it too */
4417                                         if (loop_top) {
4418                                                 G.depth_break_continue--;
4419                                                 if (G.depth_break_continue == 0)
4420                                                         G.flag_break_continue = 0;
4421                                                 /* else: e.g. "continue 2" should *break* once, *then* continue */
4422                                         } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
4423                                         if (G.depth_break_continue != 0 || fbc == BC_BREAK)
4424                                                 goto check_jobs_and_break;
4425                                         /* "continue": simulate end of loop */
4426                                         rword = RES_DONE;
4427                                         continue;
4428                                 }
4429 #endif
4430 #if ENABLE_HUSH_FUNCTIONS
4431                                 if (G.flag_return_in_progress == 1) {
4432                                         /* same as "goto check_jobs_and_break" */
4433                                         checkjobs(NULL);
4434                                         break;
4435                                 }
4436 #endif
4437                         } else if (pi->followup == PIPE_BG) {
4438                                 /* What does bash do with attempts to background builtins? */
4439                                 /* even bash 3.2 doesn't do that well with nested bg:
4440                                  * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
4441                                  * I'm NOT treating inner &'s as jobs */
4442                                 check_and_run_traps(0);
4443 #if ENABLE_HUSH_JOB
4444                                 if (G.run_list_level == 1)
4445                                         insert_bg_job(pi);
4446 #endif
4447                                 G.last_exitcode = rcode = EXIT_SUCCESS;
4448                                 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
4449                         } else {
4450 #if ENABLE_HUSH_JOB
4451                                 if (G.run_list_level == 1 && G_interactive_fd) {
4452                                         /* Waits for completion, then fg's main shell */
4453                                         rcode = checkjobs_and_fg_shell(pi);
4454                                         debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
4455                                         check_and_run_traps(0);
4456                                 } else
4457 #endif
4458                                 { /* This one just waits for completion */
4459                                         rcode = checkjobs(pi);
4460                                         debug_printf_exec(": checkjobs exitcode %d\n", rcode);
4461                                         check_and_run_traps(0);
4462                                 }
4463                                 G.last_exitcode = rcode;
4464                         }
4465                 }
4466
4467                 /* Analyze how result affects subsequent commands */
4468 #if ENABLE_HUSH_IF
4469                 if (rword == RES_IF || rword == RES_ELIF)
4470                         cond_code = rcode;
4471 #endif
4472 #if ENABLE_HUSH_LOOPS
4473                 /* Beware of "while false; true; do ..."! */
4474                 if (pi->next && pi->next->res_word == RES_DO) {
4475                         if (rword == RES_WHILE) {
4476                                 if (rcode) {
4477                                         /* "while false; do...done" - exitcode 0 */
4478                                         G.last_exitcode = rcode = EXIT_SUCCESS;
4479                                         debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
4480                                         goto check_jobs_and_break;
4481                                 }
4482                         }
4483                         if (rword == RES_UNTIL) {
4484                                 if (!rcode) {
4485                                         debug_printf_exec(": until expr is true: breaking\n");
4486  check_jobs_and_break:
4487                                         checkjobs(NULL);
4488                                         break;
4489                                 }
4490                         }
4491                 }
4492 #endif
4493
4494  check_jobs_and_continue:
4495                 checkjobs(NULL);
4496         } /* for (pi) */
4497
4498 #if ENABLE_HUSH_JOB
4499         G.run_list_level--;
4500 #endif
4501 #if ENABLE_HUSH_LOOPS
4502         if (loop_top)
4503                 G.depth_of_loop--;
4504         free(for_list);
4505 #endif
4506 #if ENABLE_HUSH_CASE
4507         free(case_word);
4508 #endif
4509         debug_leave();
4510         debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
4511         return rcode;
4512 }
4513
4514 /* Select which version we will use */
4515 static int run_and_free_list(struct pipe *pi)
4516 {
4517         int rcode = 0;
4518         debug_printf_exec("run_and_free_list entered\n");
4519         if (!G.fake_mode) {
4520                 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
4521                 rcode = run_list(pi);
4522         }
4523         /* free_pipe_list has the side effect of clearing memory.
4524          * In the long run that function can be merged with run_list,
4525          * but doing that now would hobble the debugging effort. */
4526         free_pipe_list(pi);
4527         debug_printf_exec("run_and_free_list return %d\n", rcode);
4528         return rcode;
4529 }
4530
4531
4532 static struct pipe *new_pipe(void)
4533 {
4534         struct pipe *pi;
4535         pi = xzalloc(sizeof(struct pipe));
4536         /*pi->followup = 0; - deliberately invalid value */
4537         /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
4538         return pi;
4539 }
4540
4541 /* Command (member of a pipe) is complete, or we start a new pipe
4542  * if ctx->command is NULL.
4543  * No errors possible here.
4544  */
4545 static int done_command(struct parse_context *ctx)
4546 {
4547         /* The command is really already in the pipe structure, so
4548          * advance the pipe counter and make a new, null command. */
4549         struct pipe *pi = ctx->pipe;
4550         struct command *command = ctx->command;
4551
4552         if (command) {
4553                 if (IS_NULL_CMD(command)) {
4554                         debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
4555                         goto clear_and_ret;
4556                 }
4557                 pi->num_cmds++;
4558                 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
4559                 //debug_print_tree(ctx->list_head, 20);
4560         } else {
4561                 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
4562         }
4563
4564         /* Only real trickiness here is that the uncommitted
4565          * command structure is not counted in pi->num_cmds. */
4566         pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
4567         ctx->command = command = &pi->cmds[pi->num_cmds];
4568  clear_and_ret:
4569         memset(command, 0, sizeof(*command));
4570         return pi->num_cmds; /* used only for 0/nonzero check */
4571 }
4572
4573 static void done_pipe(struct parse_context *ctx, pipe_style type)
4574 {
4575         int not_null;
4576
4577         debug_printf_parse("done_pipe entered, followup %d\n", type);
4578         /* Close previous command */
4579         not_null = done_command(ctx);
4580         ctx->pipe->followup = type;
4581 #if HAS_KEYWORDS
4582         ctx->pipe->pi_inverted = ctx->ctx_inverted;
4583         ctx->ctx_inverted = 0;
4584         ctx->pipe->res_word = ctx->ctx_res_w;
4585 #endif
4586
4587         /* Without this check, even just <enter> on command line generates
4588          * tree of three NOPs (!). Which is harmless but annoying.
4589          * IOW: it is safe to do it unconditionally. */
4590         if (not_null
4591 #if ENABLE_HUSH_IF
4592          || ctx->ctx_res_w == RES_FI
4593 #endif
4594 #if ENABLE_HUSH_LOOPS
4595          || ctx->ctx_res_w == RES_DONE
4596          || ctx->ctx_res_w == RES_FOR
4597          || ctx->ctx_res_w == RES_IN
4598 #endif
4599 #if ENABLE_HUSH_CASE
4600          || ctx->ctx_res_w == RES_ESAC
4601 #endif
4602         ) {
4603                 struct pipe *new_p;
4604                 debug_printf_parse("done_pipe: adding new pipe: "
4605                                 "not_null:%d ctx->ctx_res_w:%d\n",
4606                                 not_null, ctx->ctx_res_w);
4607                 new_p = new_pipe();
4608                 ctx->pipe->next = new_p;
4609                 ctx->pipe = new_p;
4610                 /* RES_THEN, RES_DO etc are "sticky" -
4611                  * they remain set for pipes inside if/while.
4612                  * This is used to control execution.
4613                  * RES_FOR and RES_IN are NOT sticky (needed to support
4614                  * cases where variable or value happens to match a keyword):
4615                  */
4616 #if ENABLE_HUSH_LOOPS
4617                 if (ctx->ctx_res_w == RES_FOR
4618                  || ctx->ctx_res_w == RES_IN)
4619                         ctx->ctx_res_w = RES_NONE;
4620 #endif
4621 #if ENABLE_HUSH_CASE
4622                 if (ctx->ctx_res_w == RES_MATCH)
4623                         ctx->ctx_res_w = RES_CASE_BODY;
4624                 if (ctx->ctx_res_w == RES_CASE)
4625                         ctx->ctx_res_w = RES_CASE_IN;
4626 #endif
4627                 ctx->command = NULL; /* trick done_command below */
4628                 /* Create the memory for command, roughly:
4629                  * ctx->pipe->cmds = new struct command;
4630                  * ctx->command = &ctx->pipe->cmds[0];
4631                  */
4632                 done_command(ctx);
4633                 //debug_print_tree(ctx->list_head, 10);
4634         }
4635         debug_printf_parse("done_pipe return\n");
4636 }
4637
4638 static void initialize_context(struct parse_context *ctx)
4639 {
4640         memset(ctx, 0, sizeof(*ctx));
4641         ctx->pipe = ctx->list_head = new_pipe();
4642         /* Create the memory for command, roughly:
4643          * ctx->pipe->cmds = new struct command;
4644          * ctx->command = &ctx->pipe->cmds[0];
4645          */
4646         done_command(ctx);
4647 }
4648
4649 /* If a reserved word is found and processed, parse context is modified
4650  * and 1 is returned.
4651  */
4652 #if HAS_KEYWORDS
4653 struct reserved_combo {
4654         char literal[6];
4655         unsigned char res;
4656         unsigned char assignment_flag;
4657         int flag;
4658 };
4659 enum {
4660         FLAG_END   = (1 << RES_NONE ),
4661 # if ENABLE_HUSH_IF
4662         FLAG_IF    = (1 << RES_IF   ),
4663         FLAG_THEN  = (1 << RES_THEN ),
4664         FLAG_ELIF  = (1 << RES_ELIF ),
4665         FLAG_ELSE  = (1 << RES_ELSE ),
4666         FLAG_FI    = (1 << RES_FI   ),
4667 # endif
4668 # if ENABLE_HUSH_LOOPS
4669         FLAG_FOR   = (1 << RES_FOR  ),
4670         FLAG_WHILE = (1 << RES_WHILE),
4671         FLAG_UNTIL = (1 << RES_UNTIL),
4672         FLAG_DO    = (1 << RES_DO   ),
4673         FLAG_DONE  = (1 << RES_DONE ),
4674         FLAG_IN    = (1 << RES_IN   ),
4675 # endif
4676 # if ENABLE_HUSH_CASE
4677         FLAG_MATCH = (1 << RES_MATCH),
4678         FLAG_ESAC  = (1 << RES_ESAC ),
4679 # endif
4680         FLAG_START = (1 << RES_XXXX ),
4681 };
4682
4683 static const struct reserved_combo* match_reserved_word(o_string *word)
4684 {
4685         /* Mostly a list of accepted follow-up reserved words.
4686          * FLAG_END means we are done with the sequence, and are ready
4687          * to turn the compound list into a command.
4688          * FLAG_START means the word must start a new compound list.
4689          */
4690         static const struct reserved_combo reserved_list[] = {
4691 # if ENABLE_HUSH_IF
4692                 { "!",     RES_NONE,  NOT_ASSIGNMENT , 0 },
4693                 { "if",    RES_IF,    WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
4694                 { "then",  RES_THEN,  WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
4695                 { "elif",  RES_ELIF,  WORD_IS_KEYWORD, FLAG_THEN },
4696                 { "else",  RES_ELSE,  WORD_IS_KEYWORD, FLAG_FI   },
4697                 { "fi",    RES_FI,    NOT_ASSIGNMENT , FLAG_END  },
4698 # endif
4699 # if ENABLE_HUSH_LOOPS
4700                 { "for",   RES_FOR,   NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
4701                 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
4702                 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
4703                 { "in",    RES_IN,    NOT_ASSIGNMENT , FLAG_DO   },
4704                 { "do",    RES_DO,    WORD_IS_KEYWORD, FLAG_DONE },
4705                 { "done",  RES_DONE,  NOT_ASSIGNMENT , FLAG_END  },
4706 # endif
4707 # if ENABLE_HUSH_CASE
4708                 { "case",  RES_CASE,  NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
4709                 { "esac",  RES_ESAC,  NOT_ASSIGNMENT , FLAG_END  },
4710 # endif
4711         };
4712         const struct reserved_combo *r;
4713
4714         for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
4715                 if (strcmp(word->data, r->literal) == 0)
4716                         return r;
4717         }
4718         return NULL;
4719 }
4720 /* Return 0: not a keyword, 1: keyword
4721  */
4722 static int reserved_word(o_string *word, struct parse_context *ctx)
4723 {
4724 # if ENABLE_HUSH_CASE
4725         static const struct reserved_combo reserved_match = {
4726                 "",        RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
4727         };
4728 # endif
4729         const struct reserved_combo *r;
4730
4731         if (word->o_quoted)
4732                 return 0;
4733         r = match_reserved_word(word);
4734         if (!r)
4735                 return 0;
4736
4737         debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
4738 # if ENABLE_HUSH_CASE
4739         if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE_IN) {
4740                 /* "case word IN ..." - IN part starts first MATCH part */
4741                 r = &reserved_match;
4742         } else
4743 # endif
4744         if (r->flag == 0) { /* '!' */
4745                 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
4746                         syntax_error("! ! command");
4747                         ctx->ctx_res_w = RES_SNTX;
4748                 }
4749                 ctx->ctx_inverted = 1;
4750                 return 1;
4751         }
4752         if (r->flag & FLAG_START) {
4753                 struct parse_context *old;
4754
4755                 old = xmalloc(sizeof(*old));
4756                 debug_printf_parse("push stack %p\n", old);
4757                 *old = *ctx;   /* physical copy */
4758                 initialize_context(ctx);
4759                 ctx->stack = old;
4760         } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
4761                 syntax_error_at(word->data);
4762                 ctx->ctx_res_w = RES_SNTX;
4763                 return 1;
4764         } else {
4765                 /* "{...} fi" is ok. "{...} if" is not
4766                  * Example:
4767                  * if { echo foo; } then { echo bar; } fi */
4768                 if (ctx->command->group)
4769                         done_pipe(ctx, PIPE_SEQ);
4770         }
4771
4772         ctx->ctx_res_w = r->res;
4773         ctx->old_flag = r->flag;
4774         word->o_assignment = r->assignment_flag;
4775
4776         if (ctx->old_flag & FLAG_END) {
4777                 struct parse_context *old;
4778
4779                 done_pipe(ctx, PIPE_SEQ);
4780                 debug_printf_parse("pop stack %p\n", ctx->stack);
4781                 old = ctx->stack;
4782                 old->command->group = ctx->list_head;
4783                 old->command->cmd_type = CMD_NORMAL;
4784 # if !BB_MMU
4785                 o_addstr(&old->as_string, ctx->as_string.data);
4786                 o_free_unsafe(&ctx->as_string);
4787                 old->command->group_as_string = xstrdup(old->as_string.data);
4788                 debug_printf_parse("pop, remembering as:'%s'\n",
4789                                 old->command->group_as_string);
4790 # endif
4791                 *ctx = *old;   /* physical copy */
4792                 free(old);
4793         }
4794         return 1;
4795 }
4796 #endif /* HAS_KEYWORDS */
4797
4798 /* Word is complete, look at it and update parsing context.
4799  * Normal return is 0. Syntax errors return 1.
4800  * Note: on return, word is reset, but not o_free'd!
4801  */
4802 static int done_word(o_string *word, struct parse_context *ctx)
4803 {
4804         struct command *command = ctx->command;
4805
4806         debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
4807         if (word->length == 0 && word->o_quoted == 0) {
4808                 debug_printf_parse("done_word return 0: true null, ignored\n");
4809                 return 0;
4810         }
4811
4812         if (ctx->pending_redirect) {
4813                 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
4814                  * only if run as "bash", not "sh" */
4815                 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4816                  * "2.7 Redirection
4817                  * ...the word that follows the redirection operator
4818                  * shall be subjected to tilde expansion, parameter expansion,
4819                  * command substitution, arithmetic expansion, and quote
4820                  * removal. Pathname expansion shall not be performed
4821                  * on the word by a non-interactive shell; an interactive
4822                  * shell may perform it, but shall do so only when
4823                  * the expansion would result in one word."
4824                  */
4825                 ctx->pending_redirect->rd_filename = xstrdup(word->data);
4826                 /* Cater for >\file case:
4827                  * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
4828                  * Same with heredocs:
4829                  * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
4830                  */
4831                 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC) {
4832                         unbackslash(ctx->pending_redirect->rd_filename);
4833                         /* Is it <<"HEREDOC"? */
4834                         if (word->o_quoted) {
4835                                 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
4836                         }
4837                 }
4838                 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
4839                 ctx->pending_redirect = NULL;
4840         } else {
4841                 /* If this word wasn't an assignment, next ones definitely
4842                  * can't be assignments. Even if they look like ones. */
4843                 if (word->o_assignment != DEFINITELY_ASSIGNMENT
4844                  && word->o_assignment != WORD_IS_KEYWORD
4845                 ) {
4846                         word->o_assignment = NOT_ASSIGNMENT;
4847                 } else {
4848                         if (word->o_assignment == DEFINITELY_ASSIGNMENT)
4849                                 command->assignment_cnt++;
4850                         word->o_assignment = MAYBE_ASSIGNMENT;
4851                 }
4852
4853 #if HAS_KEYWORDS
4854 # if ENABLE_HUSH_CASE
4855                 if (ctx->ctx_dsemicolon
4856                  && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
4857                 ) {
4858                         /* already done when ctx_dsemicolon was set to 1: */
4859                         /* ctx->ctx_res_w = RES_MATCH; */
4860                         ctx->ctx_dsemicolon = 0;
4861                 } else
4862 # endif
4863                 if (!command->argv /* if it's the first word... */
4864 # if ENABLE_HUSH_LOOPS
4865                  && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
4866                  && ctx->ctx_res_w != RES_IN
4867 # endif
4868 # if ENABLE_HUSH_CASE
4869                  && ctx->ctx_res_w != RES_CASE
4870 # endif
4871                 ) {
4872                         debug_printf_parse("checking '%s' for reserved-ness\n", word->data);
4873                         if (reserved_word(word, ctx)) {
4874                                 o_reset_to_empty_unquoted(word);
4875                                 debug_printf_parse("done_word return %d\n",
4876                                                 (ctx->ctx_res_w == RES_SNTX));
4877                                 return (ctx->ctx_res_w == RES_SNTX);
4878                         }
4879 # ifdef CMD_SINGLEWORD_NOGLOB_COND
4880                         if (strcmp(word->data, "export") == 0
4881 #  if ENABLE_HUSH_LOCAL
4882                          || strcmp(word->data, "local") == 0
4883 #  endif
4884                         ) {
4885                                 command->cmd_type = CMD_SINGLEWORD_NOGLOB_COND;
4886                         } else
4887 # endif
4888 # if ENABLE_HUSH_BASH_COMPAT
4889                         if (strcmp(word->data, "[[") == 0) {
4890                                 command->cmd_type = CMD_SINGLEWORD_NOGLOB;
4891                         }
4892                         /* fall through */
4893 # endif
4894                 }
4895 #endif
4896                 if (command->group) {
4897                         /* "{ echo foo; } echo bar" - bad */
4898                         syntax_error_at(word->data);
4899                         debug_printf_parse("done_word return 1: syntax error, "
4900                                         "groups and arglists don't mix\n");
4901                         return 1;
4902                 }
4903                 if (word->o_quoted /* word had "xx" or 'xx' at least as part of it. */
4904                  /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
4905                  && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
4906                  /* (otherwise it's known to be not empty and is already safe) */
4907                 ) {
4908                         /* exclude "$@" - it can expand to no word despite "" */
4909                         char *p = word->data;
4910                         while (p[0] == SPECIAL_VAR_SYMBOL
4911                             && (p[1] & 0x7f) == '@'
4912                             && p[2] == SPECIAL_VAR_SYMBOL
4913                         ) {
4914                                 p += 3;
4915                         }
4916                         if (p == word->data || p[0] != '\0') {
4917                                 /* saw no "$@", or not only "$@" but some
4918                                  * real text is there too */
4919                                 /* insert "empty variable" reference, this makes
4920                                  * e.g. "", $empty"" etc to not disappear */
4921                                 o_addchr(word, SPECIAL_VAR_SYMBOL);
4922                                 o_addchr(word, SPECIAL_VAR_SYMBOL);
4923                         }
4924                 }
4925                 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
4926                 debug_print_strings("word appended to argv", command->argv);
4927         }
4928
4929 #if ENABLE_HUSH_LOOPS
4930         if (ctx->ctx_res_w == RES_FOR) {
4931                 if (word->o_quoted
4932                  || !is_well_formed_var_name(command->argv[0], '\0')
4933                 ) {
4934                         /* bash says just "not a valid identifier" */
4935                         syntax_error("not a valid identifier in for");
4936                         return 1;
4937                 }
4938                 /* Force FOR to have just one word (variable name) */
4939                 /* NB: basically, this makes hush see "for v in ..."
4940                  * syntax as if it is "for v; in ...". FOR and IN become
4941                  * two pipe structs in parse tree. */
4942                 done_pipe(ctx, PIPE_SEQ);
4943         }
4944 #endif
4945 #if ENABLE_HUSH_CASE
4946         /* Force CASE to have just one word */
4947         if (ctx->ctx_res_w == RES_CASE) {
4948                 done_pipe(ctx, PIPE_SEQ);
4949         }
4950 #endif
4951
4952         o_reset_to_empty_unquoted(word);
4953
4954         debug_printf_parse("done_word return 0\n");
4955         return 0;
4956 }
4957
4958
4959 /* Peek ahead in the input to find out if we have a "&n" construct,
4960  * as in "2>&1", that represents duplicating a file descriptor.
4961  * Return:
4962  * REDIRFD_CLOSE if >&- "close fd" construct is seen,
4963  * REDIRFD_SYNTAX_ERR if syntax error,
4964  * REDIRFD_TO_FILE if no & was seen,
4965  * or the number found.
4966  */
4967 #if BB_MMU
4968 #define parse_redir_right_fd(as_string, input) \
4969         parse_redir_right_fd(input)
4970 #endif
4971 static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
4972 {
4973         int ch, d, ok;
4974
4975         ch = i_peek(input);
4976         if (ch != '&')
4977                 return REDIRFD_TO_FILE;
4978
4979         ch = i_getch(input);  /* get the & */
4980         nommu_addchr(as_string, ch);
4981         ch = i_peek(input);
4982         if (ch == '-') {
4983                 ch = i_getch(input);
4984                 nommu_addchr(as_string, ch);
4985                 return REDIRFD_CLOSE;
4986         }
4987         d = 0;
4988         ok = 0;
4989         while (ch != EOF && isdigit(ch)) {
4990                 d = d*10 + (ch-'0');
4991                 ok = 1;
4992                 ch = i_getch(input);
4993                 nommu_addchr(as_string, ch);
4994                 ch = i_peek(input);
4995         }
4996         if (ok) return d;
4997
4998 //TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
4999
5000         bb_error_msg("ambiguous redirect");
5001         return REDIRFD_SYNTAX_ERR;
5002 }
5003
5004 /* Return code is 0 normal, 1 if a syntax error is detected
5005  */
5006 static int parse_redirect(struct parse_context *ctx,
5007                 int fd,
5008                 redir_type style,
5009                 struct in_str *input)
5010 {
5011         struct command *command = ctx->command;
5012         struct redir_struct *redir;
5013         struct redir_struct **redirp;
5014         int dup_num;
5015
5016         dup_num = REDIRFD_TO_FILE;
5017         if (style != REDIRECT_HEREDOC) {
5018                 /* Check for a '>&1' type redirect */
5019                 dup_num = parse_redir_right_fd(&ctx->as_string, input);
5020                 if (dup_num == REDIRFD_SYNTAX_ERR)
5021                         return 1;
5022         } else {
5023                 int ch = i_peek(input);
5024                 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
5025                 if (dup_num) { /* <<-... */
5026                         ch = i_getch(input);
5027                         nommu_addchr(&ctx->as_string, ch);
5028                         ch = i_peek(input);
5029                 }
5030         }
5031
5032         if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
5033                 int ch = i_peek(input);
5034                 if (ch == '|') {
5035                         /* >|FILE redirect ("clobbering" >).
5036                          * Since we do not support "set -o noclobber" yet,
5037                          * >| and > are the same for now. Just eat |.
5038                          */
5039                         ch = i_getch(input);
5040                         nommu_addchr(&ctx->as_string, ch);
5041                 }
5042         }
5043
5044         /* Create a new redir_struct and append it to the linked list */
5045         redirp = &command->redirects;
5046         while ((redir = *redirp) != NULL) {
5047                 redirp = &(redir->next);
5048         }
5049         *redirp = redir = xzalloc(sizeof(*redir));
5050         /* redir->next = NULL; */
5051         /* redir->rd_filename = NULL; */
5052         redir->rd_type = style;
5053         redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
5054
5055         debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
5056                                 redir_table[style].descrip);
5057
5058         redir->rd_dup = dup_num;
5059         if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
5060                 /* Erik had a check here that the file descriptor in question
5061                  * is legit; I postpone that to "run time"
5062                  * A "-" representation of "close me" shows up as a -3 here */
5063                 debug_printf_parse("duplicating redirect '%d>&%d'\n",
5064                                 redir->rd_fd, redir->rd_dup);
5065         } else {
5066                 /* Set ctx->pending_redirect, so we know what to do at the
5067                  * end of the next parsed word. */
5068                 ctx->pending_redirect = redir;
5069         }
5070         return 0;
5071 }
5072
5073 /* If a redirect is immediately preceded by a number, that number is
5074  * supposed to tell which file descriptor to redirect.  This routine
5075  * looks for such preceding numbers.  In an ideal world this routine
5076  * needs to handle all the following classes of redirects...
5077  *     echo 2>foo     # redirects fd  2 to file "foo", nothing passed to echo
5078  *     echo 49>foo    # redirects fd 49 to file "foo", nothing passed to echo
5079  *     echo -2>foo    # redirects fd  1 to file "foo",    "-2" passed to echo
5080  *     echo 49x>foo   # redirects fd  1 to file "foo",   "49x" passed to echo
5081  *
5082  * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
5083  * "2.7 Redirection
5084  * ... If n is quoted, the number shall not be recognized as part of
5085  * the redirection expression. For example:
5086  * echo \2>a
5087  * writes the character 2 into file a"
5088  * We are getting it right by setting ->o_quoted on any \<char>
5089  *
5090  * A -1 return means no valid number was found,
5091  * the caller should use the appropriate default for this redirection.
5092  */
5093 static int redirect_opt_num(o_string *o)
5094 {
5095         int num;
5096
5097         if (o->data == NULL)
5098                 return -1;
5099         num = bb_strtou(o->data, NULL, 10);
5100         if (errno || num < 0)
5101                 return -1;
5102         o_reset_to_empty_unquoted(o);
5103         return num;
5104 }
5105
5106 #if BB_MMU
5107 #define fetch_till_str(as_string, input, word, skip_tabs) \
5108         fetch_till_str(input, word, skip_tabs)
5109 #endif
5110 static char *fetch_till_str(o_string *as_string,
5111                 struct in_str *input,
5112                 const char *word,
5113                 int skip_tabs)
5114 {
5115         o_string heredoc = NULL_O_STRING;
5116         int past_EOL = 0;
5117         int ch;
5118
5119         goto jump_in;
5120         while (1) {
5121                 ch = i_getch(input);
5122                 nommu_addchr(as_string, ch);
5123                 if (ch == '\n') {
5124                         if (strcmp(heredoc.data + past_EOL, word) == 0) {
5125                                 heredoc.data[past_EOL] = '\0';
5126                                 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
5127                                 return heredoc.data;
5128                         }
5129                         do {
5130                                 o_addchr(&heredoc, ch);
5131                                 past_EOL = heredoc.length;
5132  jump_in:
5133                                 do {
5134                                         ch = i_getch(input);
5135                                         nommu_addchr(as_string, ch);
5136                                 } while (skip_tabs && ch == '\t');
5137                         } while (ch == '\n');
5138                 }
5139                 if (ch == EOF) {
5140                         o_free_unsafe(&heredoc);
5141                         return NULL;
5142                 }
5143                 o_addchr(&heredoc, ch);
5144                 nommu_addchr(as_string, ch);
5145         }
5146 }
5147
5148 /* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
5149  * and load them all. There should be exactly heredoc_cnt of them.
5150  */
5151 static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
5152 {
5153         struct pipe *pi = ctx->list_head;
5154
5155         while (pi && heredoc_cnt) {
5156                 int i;
5157                 struct command *cmd = pi->cmds;
5158
5159                 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
5160                                 pi->num_cmds,
5161                                 cmd->argv ? cmd->argv[0] : "NONE");
5162                 for (i = 0; i < pi->num_cmds; i++) {
5163                         struct redir_struct *redir = cmd->redirects;
5164
5165                         debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
5166                                         i, cmd->argv ? cmd->argv[0] : "NONE");
5167                         while (redir) {
5168                                 if (redir->rd_type == REDIRECT_HEREDOC) {
5169                                         char *p;
5170
5171                                         redir->rd_type = REDIRECT_HEREDOC2;
5172                                         /* redir->rd_dup is (ab)used to indicate <<- */
5173                                         p = fetch_till_str(&ctx->as_string, input,
5174                                                 redir->rd_filename, redir->rd_dup & HEREDOC_SKIPTABS);
5175                                         if (!p) {
5176                                                 syntax_error("unexpected EOF in here document");
5177                                                 return 1;
5178                                         }
5179                                         free(redir->rd_filename);
5180                                         redir->rd_filename = p;
5181                                         heredoc_cnt--;
5182                                 }
5183                                 redir = redir->next;
5184                         }
5185                         cmd++;
5186                 }
5187                 pi = pi->next;
5188         }
5189 #if 0
5190         /* Should be 0. If it isn't, it's a parse error */
5191         if (heredoc_cnt)
5192                 bb_error_msg_and_die("heredoc BUG 2");
5193 #endif
5194         return 0;
5195 }
5196
5197
5198 #if ENABLE_HUSH_TICK
5199 static FILE *generate_stream_from_string(const char *s)
5200 {
5201         FILE *pf;
5202         int pid, channel[2];
5203 # if !BB_MMU
5204         char **to_free;
5205 # endif
5206
5207         xpipe(channel);
5208         pid = BB_MMU ? fork() : vfork();
5209         if (pid < 0)
5210                 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
5211
5212         if (pid == 0) { /* child */
5213                 disable_restore_tty_pgrp_on_exit();
5214                 /* Process substitution is not considered to be usual
5215                  * 'command execution'.
5216                  * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
5217                  */
5218                 bb_signals(0
5219                         + (1 << SIGTSTP)
5220                         + (1 << SIGTTIN)
5221                         + (1 << SIGTTOU)
5222                         , SIG_IGN);
5223                 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
5224                 close(channel[0]); /* NB: close _first_, then move fd! */
5225                 xmove_fd(channel[1], 1);
5226                 /* Prevent it from trying to handle ctrl-z etc */
5227                 IF_HUSH_JOB(G.run_list_level = 1;)
5228                 /* Awful hack for `trap` or $(trap).
5229                  *
5230                  * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html
5231                  * contains an example where "trap" is executed in a subshell:
5232                  *
5233                  * save_traps=$(trap)
5234                  * ...
5235                  * eval "$save_traps"
5236                  *
5237                  * Standard does not say that "trap" in subshell shall print
5238                  * parent shell's traps. It only says that its output
5239                  * must have suitable form, but then, in the above example
5240                  * (which is not supposed to be normative), it implies that.
5241                  *
5242                  * bash (and probably other shell) does implement it
5243                  * (traps are reset to defaults, but "trap" still shows them),
5244                  * but as a result, "trap" logic is hopelessly messed up:
5245                  *
5246                  * # trap
5247                  * trap -- 'echo Ho' SIGWINCH  <--- we have a handler
5248                  * # (trap)        <--- trap is in subshell - no output (correct, traps are reset)
5249                  * # true | trap   <--- trap is in subshell - no output (ditto)
5250                  * # echo `true | trap`    <--- in subshell - output (but traps are reset!)
5251                  * trap -- 'echo Ho' SIGWINCH
5252                  * # echo `(trap)`         <--- in subshell in subshell - output
5253                  * trap -- 'echo Ho' SIGWINCH
5254                  * # echo `true | (trap)`  <--- in subshell in subshell in subshell - output!
5255                  * trap -- 'echo Ho' SIGWINCH
5256                  *
5257                  * The rules when to forget and when to not forget traps
5258                  * get really complex and nonsensical.
5259                  *
5260                  * Our solution: ONLY bare $(trap) or `trap` is special.
5261                  */
5262                 s = skip_whitespace(s);
5263                 if (strncmp(s, "trap", 4) == 0 && (*skip_whitespace(s + 4) == '\0'))
5264                 {
5265                         static const char *const argv[] = { NULL, NULL };
5266                         builtin_trap((char**)argv);
5267                         exit(0); /* not _exit() - we need to fflush */
5268                 }
5269 # if BB_MMU
5270                 reset_traps_to_defaults();
5271                 parse_and_run_string(s);
5272                 _exit(G.last_exitcode);
5273 # else
5274         /* We re-execute after vfork on NOMMU. This makes this script safe:
5275          * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
5276          * huge=`cat BIG` # was blocking here forever
5277          * echo OK
5278          */
5279                 re_execute_shell(&to_free,
5280                                 s,
5281                                 G.global_argv[0],
5282                                 G.global_argv + 1,
5283                                 NULL);
5284 # endif
5285         }
5286
5287         /* parent */
5288 # if ENABLE_HUSH_FAST
5289         G.count_SIGCHLD++;
5290 //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);
5291 # endif
5292         enable_restore_tty_pgrp_on_exit();
5293 # if !BB_MMU
5294         free(to_free);
5295 # endif
5296         close(channel[1]);
5297         pf = fdopen(channel[0], "r");
5298         return pf;
5299 }
5300
5301 /* Return code is exit status of the process that is run. */
5302 static int process_command_subs(o_string *dest, const char *s)
5303 {
5304         FILE *pf;
5305         struct in_str pipe_str;
5306         int ch, eol_cnt;
5307
5308         pf = generate_stream_from_string(s);
5309         if (pf == NULL)
5310                 return 1;
5311         close_on_exec_on(fileno(pf));
5312
5313         /* Now send results of command back into original context */
5314         setup_file_in_str(&pipe_str, pf);
5315         eol_cnt = 0;
5316         while ((ch = i_getch(&pipe_str)) != EOF) {
5317                 if (ch == '\n') {
5318                         eol_cnt++;
5319                         continue;
5320                 }
5321                 while (eol_cnt) {
5322                         o_addchr(dest, '\n');
5323                         eol_cnt--;
5324                 }
5325                 o_addQchr(dest, ch);
5326         }
5327
5328         debug_printf("done reading from pipe, pclose()ing\n");
5329         /* Note: we got EOF, and we just close the read end of the pipe.
5330          * We do not wait for the `cmd` child to terminate. bash and ash do.
5331          * Try these:
5332          * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec
5333          * `false`; echo $? - bash outputs "1"
5334          */
5335         fclose(pf);
5336         debug_printf("closed FILE from child. return 0\n");
5337         return 0;
5338 }
5339 #endif /* ENABLE_HUSH_TICK */
5340
5341 static int parse_group(o_string *dest, struct parse_context *ctx,
5342         struct in_str *input, int ch)
5343 {
5344         /* dest contains characters seen prior to ( or {.
5345          * Typically it's empty, but for function defs,
5346          * it contains function name (without '()'). */
5347         struct pipe *pipe_list;
5348         int endch;
5349         struct command *command = ctx->command;
5350
5351         debug_printf_parse("parse_group entered\n");
5352 #if ENABLE_HUSH_FUNCTIONS
5353         if (ch == '(' && !dest->o_quoted) {
5354                 if (dest->length)
5355                         if (done_word(dest, ctx))
5356                                 return 1;
5357                 if (!command->argv)
5358                         goto skip; /* (... */
5359                 if (command->argv[1]) { /* word word ... (... */
5360                         syntax_error_unexpected_ch('(');
5361                         return 1;
5362                 }
5363                 /* it is "word(..." or "word (..." */
5364                 do
5365                         ch = i_getch(input);
5366                 while (ch == ' ' || ch == '\t');
5367                 if (ch != ')') {
5368                         syntax_error_unexpected_ch(ch);
5369                         return 1;
5370                 }
5371                 nommu_addchr(&ctx->as_string, ch);
5372                 do
5373                         ch = i_getch(input);
5374                 while (ch == ' ' || ch == '\t' || ch == '\n');
5375                 if (ch != '{') {
5376                         syntax_error_unexpected_ch(ch);
5377                         return 1;
5378                 }
5379                 nommu_addchr(&ctx->as_string, ch);
5380                 command->cmd_type = CMD_FUNCDEF;
5381                 goto skip;
5382         }
5383 #endif
5384         if (command->argv /* word [word]{... */
5385          || dest->length /* word{... */
5386          || dest->o_quoted /* ""{... */
5387         ) {
5388                 syntax_error(NULL);
5389                 debug_printf_parse("parse_group return 1: "
5390                         "syntax error, groups and arglists don't mix\n");
5391                 return 1;
5392         }
5393
5394 #if ENABLE_HUSH_FUNCTIONS
5395  skip:
5396 #endif
5397         endch = '}';
5398         if (ch == '(') {
5399                 endch = ')';
5400                 command->cmd_type = CMD_SUBSHELL;
5401         } else {
5402                 /* bash does not allow "{echo...", requires whitespace */
5403                 ch = i_getch(input);
5404                 if (ch != ' ' && ch != '\t' && ch != '\n') {
5405                         syntax_error_unexpected_ch(ch);
5406                         return 1;
5407                 }
5408                 nommu_addchr(&ctx->as_string, ch);
5409         }
5410
5411         {
5412 #if !BB_MMU
5413                 char *as_string = NULL;
5414 #endif
5415                 pipe_list = parse_stream(&as_string, input, endch);
5416 #if !BB_MMU
5417                 if (as_string)
5418                         o_addstr(&ctx->as_string, as_string);
5419 #endif
5420                 /* empty ()/{} or parse error? */
5421                 if (!pipe_list || pipe_list == ERR_PTR) {
5422                         /* parse_stream already emitted error msg */
5423 #if !BB_MMU
5424                         free(as_string);
5425 #endif
5426                         debug_printf_parse("parse_group return 1: "
5427                                 "parse_stream returned %p\n", pipe_list);
5428                         return 1;
5429                 }
5430                 command->group = pipe_list;
5431 #if !BB_MMU
5432                 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
5433                 command->group_as_string = as_string;
5434                 debug_printf_parse("end of group, remembering as:'%s'\n",
5435                                 command->group_as_string);
5436 #endif
5437         }
5438         debug_printf_parse("parse_group return 0\n");
5439         return 0;
5440         /* command remains "open", available for possible redirects */
5441 }
5442
5443 #if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT
5444 /* Subroutines for copying $(...) and `...` things */
5445 static void add_till_backquote(o_string *dest, struct in_str *input);
5446 /* '...' */
5447 static void add_till_single_quote(o_string *dest, struct in_str *input)
5448 {
5449         while (1) {
5450                 int ch = i_getch(input);
5451                 if (ch == EOF) {
5452                         syntax_error_unterm_ch('\'');
5453                         /*xfunc_die(); - redundant */
5454                 }
5455                 if (ch == '\'')
5456                         return;
5457                 o_addchr(dest, ch);
5458         }
5459 }
5460 /* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
5461 static void add_till_double_quote(o_string *dest, struct in_str *input)
5462 {
5463         while (1) {
5464                 int ch = i_getch(input);
5465                 if (ch == EOF) {
5466                         syntax_error_unterm_ch('"');
5467                         /*xfunc_die(); - redundant */
5468                 }
5469                 if (ch == '"')
5470                         return;
5471                 if (ch == '\\') {  /* \x. Copy both chars. */
5472                         o_addchr(dest, ch);
5473                         ch = i_getch(input);
5474                 }
5475                 o_addchr(dest, ch);
5476                 if (ch == '`') {
5477                         add_till_backquote(dest, input);
5478                         o_addchr(dest, ch);
5479                         continue;
5480                 }
5481                 //if (ch == '$') ...
5482         }
5483 }
5484 /* Process `cmd` - copy contents until "`" is seen. Complicated by
5485  * \` quoting.
5486  * "Within the backquoted style of command substitution, backslash
5487  * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
5488  * The search for the matching backquote shall be satisfied by the first
5489  * backquote found without a preceding backslash; during this search,
5490  * if a non-escaped backquote is encountered within a shell comment,
5491  * a here-document, an embedded command substitution of the $(command)
5492  * form, or a quoted string, undefined results occur. A single-quoted
5493  * or double-quoted string that begins, but does not end, within the
5494  * "`...`" sequence produces undefined results."
5495  * Example                               Output
5496  * echo `echo '\'TEST\`echo ZZ\`BEST`    \TESTZZBEST
5497  */
5498 static void add_till_backquote(o_string *dest, struct in_str *input)
5499 {
5500         while (1) {
5501                 int ch = i_getch(input);
5502                 if (ch == EOF) {
5503                         syntax_error_unterm_ch('`');
5504                         /*xfunc_die(); - redundant */
5505                 }
5506                 if (ch == '`')
5507                         return;
5508                 if (ch == '\\') {
5509                         /* \x. Copy both chars unless it is \` */
5510                         int ch2 = i_getch(input);
5511                         if (ch2 == EOF) {
5512                                 syntax_error_unterm_ch('`');
5513                                 /*xfunc_die(); - redundant */
5514                         }
5515                         if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
5516                                 o_addchr(dest, ch);
5517                         ch = ch2;
5518                 }
5519                 o_addchr(dest, ch);
5520         }
5521 }
5522 /* Process $(cmd) - copy contents until ")" is seen. Complicated by
5523  * quoting and nested ()s.
5524  * "With the $(command) style of command substitution, all characters
5525  * following the open parenthesis to the matching closing parenthesis
5526  * constitute the command. Any valid shell script can be used for command,
5527  * except a script consisting solely of redirections which produces
5528  * unspecified results."
5529  * Example                              Output
5530  * echo $(echo '(TEST)' BEST)           (TEST) BEST
5531  * echo $(echo 'TEST)' BEST)            TEST) BEST
5532  * echo $(echo \(\(TEST\) BEST)         ((TEST) BEST
5533  */
5534 static void add_till_closing_paren(o_string *dest, struct in_str *input, bool dbl)
5535 {
5536         int count = 0;
5537         while (1) {
5538                 int ch = i_getch(input);
5539                 if (ch == EOF) {
5540                         syntax_error_unterm_ch(')');
5541                         /*xfunc_die(); - redundant */
5542                 }
5543                 if (ch == '(')
5544                         count++;
5545                 if (ch == ')') {
5546                         if (--count < 0) {
5547                                 if (!dbl)
5548                                         break;
5549                                 if (i_peek(input) == ')') {
5550                                         i_getch(input);
5551                                         break;
5552                                 }
5553                         }
5554                 }
5555                 o_addchr(dest, ch);
5556                 if (ch == '\'') {
5557                         add_till_single_quote(dest, input);
5558                         o_addchr(dest, ch);
5559                         continue;
5560                 }
5561                 if (ch == '"') {
5562                         add_till_double_quote(dest, input);
5563                         o_addchr(dest, ch);
5564                         continue;
5565                 }
5566                 if (ch == '\\') {
5567                         /* \x. Copy verbatim. Important for  \(, \) */
5568                         ch = i_getch(input);
5569                         if (ch == EOF) {
5570                                 syntax_error_unterm_ch(')');
5571                                 /*xfunc_die(); - redundant */
5572                         }
5573                         o_addchr(dest, ch);
5574                         continue;
5575                 }
5576         }
5577 }
5578 #endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */
5579
5580 /* Return code: 0 for OK, 1 for syntax error */
5581 #if BB_MMU
5582 #define handle_dollar(as_string, dest, input) \
5583         handle_dollar(dest, input)
5584 #endif
5585 static int handle_dollar(o_string *as_string,
5586                 o_string *dest,
5587                 struct in_str *input)
5588 {
5589         int ch = i_peek(input);  /* first character after the $ */
5590         unsigned char quote_mask = dest->o_escape ? 0x80 : 0;
5591
5592         debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
5593         if (isalpha(ch)) {
5594                 ch = i_getch(input);
5595                 nommu_addchr(as_string, ch);
5596  make_var:
5597                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5598                 while (1) {
5599                         debug_printf_parse(": '%c'\n", ch);
5600                         o_addchr(dest, ch | quote_mask);
5601                         quote_mask = 0;
5602                         ch = i_peek(input);
5603                         if (!isalnum(ch) && ch != '_')
5604                                 break;
5605                         ch = i_getch(input);
5606                         nommu_addchr(as_string, ch);
5607                 }
5608                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5609         } else if (isdigit(ch)) {
5610  make_one_char_var:
5611                 ch = i_getch(input);
5612                 nommu_addchr(as_string, ch);
5613                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5614                 debug_printf_parse(": '%c'\n", ch);
5615                 o_addchr(dest, ch | quote_mask);
5616                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5617         } else switch (ch) {
5618         case '$': /* pid */
5619         case '!': /* last bg pid */
5620         case '?': /* last exit code */
5621         case '#': /* number of args */
5622         case '*': /* args */
5623         case '@': /* args */
5624                 goto make_one_char_var;
5625         case '{': {
5626                 bool first_char, all_digits;
5627                 int expansion;
5628
5629                 ch = i_getch(input);
5630                 nommu_addchr(as_string, ch);
5631                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5632
5633                 /* TODO: maybe someone will try to escape the '}' */
5634                 expansion = 0;
5635                 first_char = true;
5636                 all_digits = false;
5637                 while (1) {
5638                         ch = i_getch(input);
5639                         nommu_addchr(as_string, ch);
5640                         if (ch == '}') {
5641                                 break;
5642                         }
5643
5644                         if (first_char) {
5645                                 if (ch == '#') {
5646                                         /* ${#var}: length of var contents */
5647                                         goto char_ok;
5648                                 }
5649                                 if (isdigit(ch)) {
5650                                         all_digits = true;
5651                                         goto char_ok;
5652                                 }
5653                                 /* They're being verbose and doing ${?} */
5654                                 if (i_peek(input) == '}' && strchr("$!?#*@_", ch))
5655                                         goto char_ok;
5656                         }
5657
5658                         if (expansion < 2
5659                          && (  (all_digits && !isdigit(ch))
5660                             || (!all_digits && !isalnum(ch) && ch != '_')
5661                             )
5662                         ) {
5663                                 /* handle parameter expansions
5664                                  * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
5665                                  */
5666                                 if (first_char)
5667                                         goto case_default;
5668                                 switch (ch) {
5669                                 case ':': /* null modifier */
5670                                         if (expansion == 0) {
5671                                                 debug_printf_parse(": null modifier\n");
5672                                                 ++expansion;
5673                                                 break;
5674                                         }
5675                                         goto case_default;
5676                                 case '#': /* remove prefix */
5677                                 case '%': /* remove suffix */
5678                                         if (expansion == 0) {
5679                                                 debug_printf_parse(": remove suffix/prefix\n");
5680                                                 expansion = 2;
5681                                                 break;
5682                                         }
5683                                         goto case_default;
5684                                 case '-': /* default value */
5685                                 case '=': /* assign default */
5686                                 case '+': /* alternative */
5687                                 case '?': /* error indicate */
5688                                         debug_printf_parse(": parameter expansion\n");
5689                                         expansion = 2;
5690                                         break;
5691                                 default:
5692                                 case_default:
5693                                         syntax_error_unterm_str("${name}");
5694                                         debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
5695                                         return 1;
5696                                 }
5697                         }
5698  char_ok:
5699                         debug_printf_parse(": '%c'\n", ch);
5700                         o_addchr(dest, ch | quote_mask);
5701                         quote_mask = 0;
5702                         first_char = false;
5703                 } /* while (1) */
5704                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5705                 break;
5706         }
5707 #if ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK
5708         case '(': {
5709 # if !BB_MMU
5710                 int pos;
5711 # endif
5712                 ch = i_getch(input);
5713                 nommu_addchr(as_string, ch);
5714 # if ENABLE_SH_MATH_SUPPORT
5715                 if (i_peek(input) == '(') {
5716                         ch = i_getch(input);
5717                         nommu_addchr(as_string, ch);
5718                         o_addchr(dest, SPECIAL_VAR_SYMBOL);
5719                         o_addchr(dest, /*quote_mask |*/ '+');
5720 #  if !BB_MMU
5721                         pos = dest->length;
5722 #  endif
5723                         add_till_closing_paren(dest, input, true);
5724 #  if !BB_MMU
5725                         if (as_string) {
5726                                 o_addstr(as_string, dest->data + pos);
5727                                 o_addchr(as_string, ')');
5728                                 o_addchr(as_string, ')');
5729                         }
5730 #  endif
5731                         o_addchr(dest, SPECIAL_VAR_SYMBOL);
5732                         break;
5733                 }
5734 # endif
5735 # if ENABLE_HUSH_TICK
5736                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5737                 o_addchr(dest, quote_mask | '`');
5738 #  if !BB_MMU
5739                 pos = dest->length;
5740 #  endif
5741                 add_till_closing_paren(dest, input, false);
5742 #  if !BB_MMU
5743                 if (as_string) {
5744                         o_addstr(as_string, dest->data + pos);
5745                         o_addchr(as_string, '`');
5746                 }
5747 #  endif
5748                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5749 # endif
5750                 break;
5751         }
5752 #endif
5753         case '_':
5754                 ch = i_getch(input);
5755                 nommu_addchr(as_string, ch);
5756                 ch = i_peek(input);
5757                 if (isalnum(ch)) { /* it's $_name or $_123 */
5758                         ch = '_';
5759                         goto make_var;
5760                 }
5761                 /* else: it's $_ */
5762         /* TODO: $_ and $-: */
5763         /* $_ Shell or shell script name; or last argument of last command
5764          * (if last command wasn't a pipe; if it was, bash sets $_ to "");
5765          * but in command's env, set to full pathname used to invoke it */
5766         /* $- Option flags set by set builtin or shell options (-i etc) */
5767         default:
5768                 o_addQchr(dest, '$');
5769         }
5770         debug_printf_parse("handle_dollar return 0\n");
5771         return 0;
5772 }
5773
5774 #if BB_MMU
5775 #define parse_stream_dquoted(as_string, dest, input, dquote_end) \
5776         parse_stream_dquoted(dest, input, dquote_end)
5777 #endif
5778 static int parse_stream_dquoted(o_string *as_string,
5779                 o_string *dest,
5780                 struct in_str *input,
5781                 int dquote_end)
5782 {
5783         int ch;
5784         int next;
5785
5786  again:
5787         ch = i_getch(input);
5788         if (ch != EOF)
5789                 nommu_addchr(as_string, ch);
5790         if (ch == dquote_end) { /* may be only '"' or EOF */
5791                 if (dest->o_assignment == NOT_ASSIGNMENT)
5792                         dest->o_escape ^= 1;
5793                 debug_printf_parse("parse_stream_dquoted return 0\n");
5794                 return 0;
5795         }
5796         /* note: can't move it above ch == dquote_end check! */
5797         if (ch == EOF) {
5798                 syntax_error_unterm_ch('"');
5799                 /*xfunc_die(); - redundant */
5800         }
5801         next = '\0';
5802         if (ch != '\n') {
5803                 next = i_peek(input);
5804         }
5805         debug_printf_parse("\" ch=%c (%d) escape=%d\n",
5806                                         ch, ch, dest->o_escape);
5807         if (ch == '\\') {
5808                 if (next == EOF) {
5809                         syntax_error("\\<eof>");
5810                         xfunc_die();
5811                 }
5812                 /* bash:
5813                  * "The backslash retains its special meaning [in "..."]
5814                  * only when followed by one of the following characters:
5815                  * $, `, ", \, or <newline>.  A double quote may be quoted
5816                  * within double quotes by preceding it with a backslash."
5817                  */
5818                 if (strchr("$`\"\\\n", next) != NULL) {
5819                         ch = i_getch(input);
5820                         if (ch != '\n') {
5821                                 o_addqchr(dest, ch);
5822                                 nommu_addchr(as_string, ch);
5823                         }
5824                 } else {
5825                         o_addqchr(dest, '\\');
5826                         nommu_addchr(as_string, '\\');
5827                 }
5828                 goto again;
5829         }
5830         if (ch == '$') {
5831                 if (handle_dollar(as_string, dest, input) != 0) {
5832                         debug_printf_parse("parse_stream_dquoted return 1: "
5833                                         "handle_dollar returned non-0\n");
5834                         return 1;
5835                 }
5836                 goto again;
5837         }
5838 #if ENABLE_HUSH_TICK
5839         if (ch == '`') {
5840                 //int pos = dest->length;
5841                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5842                 o_addchr(dest, 0x80 | '`');
5843                 add_till_backquote(dest, input);
5844                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5845                 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
5846                 goto again;
5847         }
5848 #endif
5849         o_addQchr(dest, ch);
5850         if (ch == '='
5851          && (dest->o_assignment == MAYBE_ASSIGNMENT
5852             || dest->o_assignment == WORD_IS_KEYWORD)
5853          && is_well_formed_var_name(dest->data, '=')
5854         ) {
5855                 dest->o_assignment = DEFINITELY_ASSIGNMENT;
5856         }
5857         goto again;
5858 }
5859
5860 /*
5861  * Scan input until EOF or end_trigger char.
5862  * Return a list of pipes to execute, or NULL on EOF
5863  * or if end_trigger character is met.
5864  * On syntax error, exit is shell is not interactive,
5865  * reset parsing machinery and start parsing anew,
5866  * or return ERR_PTR.
5867  */
5868 static struct pipe *parse_stream(char **pstring,
5869                 struct in_str *input,
5870                 int end_trigger)
5871 {
5872         struct parse_context ctx;
5873         o_string dest = NULL_O_STRING;
5874         int is_in_dquote;
5875         int heredoc_cnt;
5876
5877         /* Double-quote state is handled in the state variable is_in_dquote.
5878          * A single-quote triggers a bypass of the main loop until its mate is
5879          * found.  When recursing, quote state is passed in via dest->o_escape.
5880          */
5881         debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
5882                         end_trigger ? end_trigger : 'X');
5883         debug_enter();
5884
5885         /* If very first arg is "" or '', dest.data may end up NULL.
5886          * Preventing this: */
5887         o_addchr(&dest, '\0');
5888         dest.length = 0;
5889
5890         G.ifs = get_local_var_value("IFS");
5891         if (G.ifs == NULL)
5892                 G.ifs = " \t\n";
5893
5894  reset:
5895 #if ENABLE_HUSH_INTERACTIVE
5896         input->promptmode = 0; /* PS1 */
5897 #endif
5898         /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */
5899         initialize_context(&ctx);
5900         is_in_dquote = 0;
5901         heredoc_cnt = 0;
5902         while (1) {
5903                 const char *is_ifs;
5904                 const char *is_special;
5905                 int ch;
5906                 int next;
5907                 int redir_fd;
5908                 redir_type redir_style;
5909
5910                 if (is_in_dquote) {
5911                         /* dest.o_quoted = 1; - already is (see below) */
5912                         if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) {
5913                                 goto parse_error;
5914                         }
5915                         /* We reached closing '"' */
5916                         is_in_dquote = 0;
5917                 }
5918                 ch = i_getch(input);
5919                 debug_printf_parse(": ch=%c (%d) escape=%d\n",
5920                                                 ch, ch, dest.o_escape);
5921                 if (ch == EOF) {
5922                         struct pipe *pi;
5923
5924                         if (heredoc_cnt) {
5925                                 syntax_error_unterm_str("here document");
5926                                 goto parse_error;
5927                         }
5928                         /* end_trigger == '}' case errors out earlier,
5929                          * checking only ')' */
5930                         if (end_trigger == ')') {
5931                                 syntax_error_unterm_ch('('); /* exits */
5932                                 /* goto parse_error; */
5933                         }
5934
5935                         if (done_word(&dest, &ctx)) {
5936                                 goto parse_error;
5937                         }
5938                         o_free(&dest);
5939                         done_pipe(&ctx, PIPE_SEQ);
5940                         pi = ctx.list_head;
5941                         /* If we got nothing... */
5942                         /* (this makes bare "&" cmd a no-op.
5943                          * bash says: "syntax error near unexpected token '&'") */
5944                         if (pi->num_cmds == 0
5945                             IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
5946                         ) {
5947                                 free_pipe_list(pi);
5948                                 pi = NULL;
5949                         }
5950 #if !BB_MMU
5951                         debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
5952                         if (pstring)
5953                                 *pstring = ctx.as_string.data;
5954                         else
5955                                 o_free_unsafe(&ctx.as_string);
5956 #endif
5957                         debug_leave();
5958                         debug_printf_parse("parse_stream return %p\n", pi);
5959                         return pi;
5960                 }
5961                 nommu_addchr(&ctx.as_string, ch);
5962                 is_ifs = strchr(G.ifs, ch);
5963                 is_special = strchr("<>;&|(){}#'" /* special outside of "str" */
5964                                 "\\$\"" IF_HUSH_TICK("`") /* always special */
5965                                 , ch);
5966
5967                 if (!is_special && !is_ifs) { /* ordinary char */
5968  ordinary_char:
5969                         o_addQchr(&dest, ch);
5970                         if ((dest.o_assignment == MAYBE_ASSIGNMENT
5971                             || dest.o_assignment == WORD_IS_KEYWORD)
5972                          && ch == '='
5973                          && is_well_formed_var_name(dest.data, '=')
5974                         ) {
5975                                 dest.o_assignment = DEFINITELY_ASSIGNMENT;
5976                         }
5977                         continue;
5978                 }
5979
5980                 if (is_ifs) {
5981                         if (done_word(&dest, &ctx)) {
5982                                 goto parse_error;
5983                         }
5984                         if (ch == '\n') {
5985 #if ENABLE_HUSH_CASE
5986                                 /* "case ... in <newline> word) ..." -
5987                                  * newlines are ignored (but ';' wouldn't be) */
5988                                 if (ctx.command->argv == NULL
5989                                  && ctx.ctx_res_w == RES_MATCH
5990                                 ) {
5991                                         continue;
5992                                 }
5993 #endif
5994                                 /* Treat newline as a command separator. */
5995                                 done_pipe(&ctx, PIPE_SEQ);
5996                                 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
5997                                 if (heredoc_cnt) {
5998                                         if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
5999                                                 goto parse_error;
6000                                         }
6001                                         heredoc_cnt = 0;
6002                                 }
6003                                 dest.o_assignment = MAYBE_ASSIGNMENT;
6004                                 ch = ';';
6005                                 /* note: if (is_ifs) continue;
6006                                  * will still trigger for us */
6007                         }
6008                 }
6009
6010                 /* "cmd}" or "cmd }..." without semicolon or &:
6011                  * } is an ordinary char in this case, even inside { cmd; }
6012                  * Pathological example: { ""}; } should exec "}" cmd
6013                  */
6014                 if (ch == '}') {
6015                         if (!IS_NULL_CMD(ctx.command) /* cmd } */
6016                          || dest.length != 0 /* word} */
6017                          || dest.o_quoted    /* ""} */
6018                         ) {
6019                                 goto ordinary_char;
6020                         }
6021                         if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */
6022                                 goto skip_end_trigger;
6023                         /* else: } does terminate a group */
6024                 }
6025
6026                 if (end_trigger && end_trigger == ch
6027                  && (ch != ';' || heredoc_cnt == 0)
6028 #if ENABLE_HUSH_CASE
6029                  && (ch != ')'
6030                     || ctx.ctx_res_w != RES_MATCH
6031                     || (!dest.o_quoted && strcmp(dest.data, "esac") == 0)
6032                     )
6033 #endif
6034                 ) {
6035                         if (heredoc_cnt) {
6036                                 /* This is technically valid:
6037                                  * { cat <<HERE; }; echo Ok
6038                                  * heredoc
6039                                  * heredoc
6040                                  * HERE
6041                                  * but we don't support this.
6042                                  * We require heredoc to be in enclosing {}/(),
6043                                  * if any.
6044                                  */
6045                                 syntax_error_unterm_str("here document");
6046                                 goto parse_error;
6047                         }
6048                         if (done_word(&dest, &ctx)) {
6049                                 goto parse_error;
6050                         }
6051                         done_pipe(&ctx, PIPE_SEQ);
6052                         dest.o_assignment = MAYBE_ASSIGNMENT;
6053                         /* Do we sit outside of any if's, loops or case's? */
6054                         if (!HAS_KEYWORDS
6055                          IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
6056                         ) {
6057                                 o_free(&dest);
6058 #if !BB_MMU
6059                                 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
6060                                 if (pstring)
6061                                         *pstring = ctx.as_string.data;
6062                                 else
6063                                         o_free_unsafe(&ctx.as_string);
6064 #endif
6065                                 debug_leave();
6066                                 debug_printf_parse("parse_stream return %p: "
6067                                                 "end_trigger char found\n",
6068                                                 ctx.list_head);
6069                                 return ctx.list_head;
6070                         }
6071                 }
6072  skip_end_trigger:
6073                 if (is_ifs)
6074                         continue;
6075
6076                 next = '\0';
6077                 if (ch != '\n') {
6078                         next = i_peek(input);
6079                 }
6080
6081                 /* Catch <, > before deciding whether this word is
6082                  * an assignment. a=1 2>z b=2: b=2 is still assignment */
6083                 switch (ch) {
6084                 case '>':
6085                         redir_fd = redirect_opt_num(&dest);
6086                         if (done_word(&dest, &ctx)) {
6087                                 goto parse_error;
6088                         }
6089                         redir_style = REDIRECT_OVERWRITE;
6090                         if (next == '>') {
6091                                 redir_style = REDIRECT_APPEND;
6092                                 ch = i_getch(input);
6093                                 nommu_addchr(&ctx.as_string, ch);
6094                         }
6095 #if 0
6096                         else if (next == '(') {
6097                                 syntax_error(">(process) not supported");
6098                                 goto parse_error;
6099                         }
6100 #endif
6101                         if (parse_redirect(&ctx, redir_fd, redir_style, input))
6102                                 goto parse_error;
6103                         continue; /* back to top of while (1) */
6104                 case '<':
6105                         redir_fd = redirect_opt_num(&dest);
6106                         if (done_word(&dest, &ctx)) {
6107                                 goto parse_error;
6108                         }
6109                         redir_style = REDIRECT_INPUT;
6110                         if (next == '<') {
6111                                 redir_style = REDIRECT_HEREDOC;
6112                                 heredoc_cnt++;
6113                                 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
6114                                 ch = i_getch(input);
6115                                 nommu_addchr(&ctx.as_string, ch);
6116                         } else if (next == '>') {
6117                                 redir_style = REDIRECT_IO;
6118                                 ch = i_getch(input);
6119                                 nommu_addchr(&ctx.as_string, ch);
6120                         }
6121 #if 0
6122                         else if (next == '(') {
6123                                 syntax_error("<(process) not supported");
6124                                 goto parse_error;
6125                         }
6126 #endif
6127                         if (parse_redirect(&ctx, redir_fd, redir_style, input))
6128                                 goto parse_error;
6129                         continue; /* back to top of while (1) */
6130                 }
6131
6132                 if (dest.o_assignment == MAYBE_ASSIGNMENT
6133                  /* check that we are not in word in "a=1 2>word b=1": */
6134                  && !ctx.pending_redirect
6135                 ) {
6136                         /* ch is a special char and thus this word
6137                          * cannot be an assignment */
6138                         dest.o_assignment = NOT_ASSIGNMENT;
6139                 }
6140
6141                 /* Note: nommu_addchr(&ctx.as_string, ch) is already done */
6142
6143                 switch (ch) {
6144                 case '#':
6145                         if (dest.length == 0) {
6146                                 while (1) {
6147                                         ch = i_peek(input);
6148                                         if (ch == EOF || ch == '\n')
6149                                                 break;
6150                                         i_getch(input);
6151                                         /* note: we do not add it to &ctx.as_string */
6152                                 }
6153                                 nommu_addchr(&ctx.as_string, '\n');
6154                         } else {
6155                                 o_addQchr(&dest, ch);
6156                         }
6157                         break;
6158                 case '\\':
6159                         if (next == EOF) {
6160                                 syntax_error("\\<eof>");
6161                                 xfunc_die();
6162                         }
6163                         ch = i_getch(input);
6164                         if (ch != '\n') {
6165                                 o_addchr(&dest, '\\');
6166                                 /*nommu_addchr(&ctx.as_string, '\\'); - already done */
6167                                 o_addchr(&dest, ch);
6168                                 nommu_addchr(&ctx.as_string, ch);
6169                                 /* Example: echo Hello \2>file
6170                                  * we need to know that word 2 is quoted */
6171                                 dest.o_quoted = 1;
6172                         }
6173 #if !BB_MMU
6174                         else {
6175                                 /* It's "\<newline>". Remove trailing '\' from ctx.as_string */
6176                                 ctx.as_string.data[--ctx.as_string.length] = '\0';
6177 #endif
6178                         }
6179                         break;
6180                 case '$':
6181                         if (handle_dollar(&ctx.as_string, &dest, input) != 0) {
6182                                 debug_printf_parse("parse_stream parse error: "
6183                                         "handle_dollar returned non-0\n");
6184                                 goto parse_error;
6185                         }
6186                         break;
6187                 case '\'':
6188                         dest.o_quoted = 1;
6189                         while (1) {
6190                                 ch = i_getch(input);
6191                                 if (ch == EOF) {
6192                                         syntax_error_unterm_ch('\'');
6193                                         /*xfunc_die(); - redundant */
6194                                 }
6195                                 nommu_addchr(&ctx.as_string, ch);
6196                                 if (ch == '\'')
6197                                         break;
6198                                 o_addqchr(&dest, ch);
6199                         }
6200                         break;
6201                 case '"':
6202                         dest.o_quoted = 1;
6203                         is_in_dquote ^= 1; /* invert */
6204                         if (dest.o_assignment == NOT_ASSIGNMENT)
6205                                 dest.o_escape ^= 1;
6206                         break;
6207 #if ENABLE_HUSH_TICK
6208                 case '`': {
6209 #if !BB_MMU
6210                         int pos;
6211 #endif
6212                         o_addchr(&dest, SPECIAL_VAR_SYMBOL);
6213                         o_addchr(&dest, '`');
6214 #if !BB_MMU
6215                         pos = dest.length;
6216 #endif
6217                         add_till_backquote(&dest, input);
6218 #if !BB_MMU
6219                         o_addstr(&ctx.as_string, dest.data + pos);
6220                         o_addchr(&ctx.as_string, '`');
6221 #endif
6222                         o_addchr(&dest, SPECIAL_VAR_SYMBOL);
6223                         //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
6224                         break;
6225                 }
6226 #endif
6227                 case ';':
6228 #if ENABLE_HUSH_CASE
6229  case_semi:
6230 #endif
6231                         if (done_word(&dest, &ctx)) {
6232                                 goto parse_error;
6233                         }
6234                         done_pipe(&ctx, PIPE_SEQ);
6235 #if ENABLE_HUSH_CASE
6236                         /* Eat multiple semicolons, detect
6237                          * whether it means something special */
6238                         while (1) {
6239                                 ch = i_peek(input);
6240                                 if (ch != ';')
6241                                         break;
6242                                 ch = i_getch(input);
6243                                 nommu_addchr(&ctx.as_string, ch);
6244                                 if (ctx.ctx_res_w == RES_CASE_BODY) {
6245                                         ctx.ctx_dsemicolon = 1;
6246                                         ctx.ctx_res_w = RES_MATCH;
6247                                         break;
6248                                 }
6249                         }
6250 #endif
6251  new_cmd:
6252                         /* We just finished a cmd. New one may start
6253                          * with an assignment */
6254                         dest.o_assignment = MAYBE_ASSIGNMENT;
6255                         break;
6256                 case '&':
6257                         if (done_word(&dest, &ctx)) {
6258                                 goto parse_error;
6259                         }
6260                         if (next == '&') {
6261                                 ch = i_getch(input);
6262                                 nommu_addchr(&ctx.as_string, ch);
6263                                 done_pipe(&ctx, PIPE_AND);
6264                         } else {
6265                                 done_pipe(&ctx, PIPE_BG);
6266                         }
6267                         goto new_cmd;
6268                 case '|':
6269                         if (done_word(&dest, &ctx)) {
6270                                 goto parse_error;
6271                         }
6272 #if ENABLE_HUSH_CASE
6273                         if (ctx.ctx_res_w == RES_MATCH)
6274                                 break; /* we are in case's "word | word)" */
6275 #endif
6276                         if (next == '|') { /* || */
6277                                 ch = i_getch(input);
6278                                 nommu_addchr(&ctx.as_string, ch);
6279                                 done_pipe(&ctx, PIPE_OR);
6280                         } else {
6281                                 /* we could pick up a file descriptor choice here
6282                                  * with redirect_opt_num(), but bash doesn't do it.
6283                                  * "echo foo 2| cat" yields "foo 2". */
6284                                 done_command(&ctx);
6285                         }
6286                         goto new_cmd;
6287                 case '(':
6288 #if ENABLE_HUSH_CASE
6289                         /* "case... in [(]word)..." - skip '(' */
6290                         if (ctx.ctx_res_w == RES_MATCH
6291                          && ctx.command->argv == NULL /* not (word|(... */
6292                          && dest.length == 0 /* not word(... */
6293                          && dest.o_quoted == 0 /* not ""(... */
6294                         ) {
6295                                 continue;
6296                         }
6297 #endif
6298                 case '{':
6299                         if (parse_group(&dest, &ctx, input, ch) != 0) {
6300                                 goto parse_error;
6301                         }
6302                         goto new_cmd;
6303                 case ')':
6304 #if ENABLE_HUSH_CASE
6305                         if (ctx.ctx_res_w == RES_MATCH)
6306                                 goto case_semi;
6307 #endif
6308                 case '}':
6309                         /* proper use of this character is caught by end_trigger:
6310                          * if we see {, we call parse_group(..., end_trigger='}')
6311                          * and it will match } earlier (not here). */
6312                         syntax_error_unexpected_ch(ch);
6313                         goto parse_error;
6314                 default:
6315                         if (HUSH_DEBUG)
6316                                 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
6317                 }
6318         } /* while (1) */
6319
6320  parse_error:
6321         {
6322                 struct parse_context *pctx;
6323                 IF_HAS_KEYWORDS(struct parse_context *p2;)
6324
6325                 /* Clean up allocated tree.
6326                  * Sample for finding leaks on syntax error recovery path.
6327                  * Run it from interactive shell, watch pmap `pidof hush`.
6328                  * while if false; then false; fi; do break; fi
6329                  * Samples to catch leaks at execution:
6330                  * while if (true | {true;}); then echo ok; fi; do break; done
6331                  * while if (true | {true;}); then echo ok; fi; do (if echo ok; break; then :; fi) | cat; break; done
6332                  */
6333                 pctx = &ctx;
6334                 do {
6335                         /* Update pipe/command counts,
6336                          * otherwise freeing may miss some */
6337                         done_pipe(pctx, PIPE_SEQ);
6338                         debug_printf_clean("freeing list %p from ctx %p\n",
6339                                         pctx->list_head, pctx);
6340                         debug_print_tree(pctx->list_head, 0);
6341                         free_pipe_list(pctx->list_head);
6342                         debug_printf_clean("freed list %p\n", pctx->list_head);
6343 #if !BB_MMU
6344                         o_free_unsafe(&pctx->as_string);
6345 #endif
6346                         IF_HAS_KEYWORDS(p2 = pctx->stack;)
6347                         if (pctx != &ctx) {
6348                                 free(pctx);
6349                         }
6350                         IF_HAS_KEYWORDS(pctx = p2;)
6351                 } while (HAS_KEYWORDS && pctx);
6352                 /* Free text, clear all dest fields */
6353                 o_free(&dest);
6354                 /* If we are not in top-level parse, we return,
6355                  * our caller will propagate error.
6356                  */
6357                 if (end_trigger != ';') {
6358 #if !BB_MMU
6359                         if (pstring)
6360                                 *pstring = NULL;
6361 #endif
6362                         debug_leave();
6363                         return ERR_PTR;
6364                 }
6365                 /* Discard cached input, force prompt */
6366                 input->p = NULL;
6367                 IF_HUSH_INTERACTIVE(input->promptme = 1;)
6368                 goto reset;
6369         }
6370 }
6371
6372 /* Executing from string: eval, sh -c '...'
6373  *          or from file: /etc/profile, . file, sh <script>, sh (intereactive)
6374  * end_trigger controls how often we stop parsing
6375  * NUL: parse all, execute, return
6376  * ';': parse till ';' or newline, execute, repeat till EOF
6377  */
6378 static void parse_and_run_stream(struct in_str *inp, int end_trigger)
6379 {
6380         while (1) {
6381                 struct pipe *pipe_list;
6382
6383                 pipe_list = parse_stream(NULL, inp, end_trigger);
6384                 if (!pipe_list) /* EOF */
6385                         break;
6386                 debug_print_tree(pipe_list, 0);
6387                 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
6388                 run_and_free_list(pipe_list);
6389         }
6390 }
6391
6392 static void parse_and_run_string(const char *s)
6393 {
6394         struct in_str input;
6395         setup_string_in_str(&input, s);
6396         parse_and_run_stream(&input, '\0');
6397 }
6398
6399 static void parse_and_run_file(FILE *f)
6400 {
6401         struct in_str input;
6402         setup_file_in_str(&input, f);
6403         parse_and_run_stream(&input, ';');
6404 }
6405
6406 /* Called a few times only (or even once if "sh -c") */
6407 static void block_signals(int second_time)
6408 {
6409         unsigned sig;
6410         unsigned mask;
6411
6412         mask = (1 << SIGQUIT);
6413         if (G_interactive_fd) {
6414                 mask = (1 << SIGQUIT) | SPECIAL_INTERACTIVE_SIGS;
6415                 if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */
6416                         mask |= SPECIAL_JOB_SIGS;
6417         }
6418         G.non_DFL_mask = mask;
6419
6420         if (!second_time)
6421                 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
6422         sig = 0;
6423         while (mask) {
6424                 if (mask & 1)
6425                         sigaddset(&G.blocked_set, sig);
6426                 mask >>= 1;
6427                 sig++;
6428         }
6429         sigdelset(&G.blocked_set, SIGCHLD);
6430
6431         sigprocmask(SIG_SETMASK, &G.blocked_set,
6432                         second_time ? NULL : &G.inherited_set);
6433         /* POSIX allows shell to re-enable SIGCHLD
6434          * even if it was SIG_IGN on entry */
6435 #if ENABLE_HUSH_FAST
6436         G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
6437         if (!second_time)
6438                 signal(SIGCHLD, SIGCHLD_handler);
6439 #else
6440         if (!second_time)
6441                 signal(SIGCHLD, SIG_DFL);
6442 #endif
6443 }
6444
6445 #if ENABLE_HUSH_JOB
6446 /* helper */
6447 static void maybe_set_to_sigexit(int sig)
6448 {
6449         void (*handler)(int);
6450         /* non_DFL_mask'ed signals are, well, masked,
6451          * no need to set handler for them.
6452          */
6453         if (!((G.non_DFL_mask >> sig) & 1)) {
6454                 handler = signal(sig, sigexit);
6455                 if (handler == SIG_IGN) /* oops... restore back to IGN! */
6456                         signal(sig, handler);
6457         }
6458 }
6459 /* Set handlers to restore tty pgrp and exit */
6460 static void set_fatal_handlers(void)
6461 {
6462         /* We _must_ restore tty pgrp on fatal signals */
6463         if (HUSH_DEBUG) {
6464                 maybe_set_to_sigexit(SIGILL );
6465                 maybe_set_to_sigexit(SIGFPE );
6466                 maybe_set_to_sigexit(SIGBUS );
6467                 maybe_set_to_sigexit(SIGSEGV);
6468                 maybe_set_to_sigexit(SIGTRAP);
6469         } /* else: hush is perfect. what SEGV? */
6470         maybe_set_to_sigexit(SIGABRT);
6471         /* bash 3.2 seems to handle these just like 'fatal' ones */
6472         maybe_set_to_sigexit(SIGPIPE);
6473         maybe_set_to_sigexit(SIGALRM);
6474         /* if we are interactive, SIGHUP, SIGTERM and SIGINT are masked.
6475          * if we aren't interactive... but in this case
6476          * we never want to restore pgrp on exit, and this fn is not called */
6477         /*maybe_set_to_sigexit(SIGHUP );*/
6478         /*maybe_set_to_sigexit(SIGTERM);*/
6479         /*maybe_set_to_sigexit(SIGINT );*/
6480 }
6481 #endif
6482
6483 static int set_mode(const char cstate, const char mode)
6484 {
6485         int state = (cstate == '-' ? 1 : 0);
6486         switch (mode) {
6487                 case 'n': G.fake_mode = state; break;
6488                 case 'x': /*G.debug_mode = state;*/ break;
6489                 default:  return EXIT_FAILURE;
6490         }
6491         return EXIT_SUCCESS;
6492 }
6493
6494 int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
6495 int hush_main(int argc, char **argv)
6496 {
6497         static const struct variable const_shell_ver = {
6498                 .next = NULL,
6499                 .varstr = (char*)hush_version_str,
6500                 .max_len = 1, /* 0 can provoke free(name) */
6501                 .flg_export = 1,
6502                 .flg_read_only = 1,
6503         };
6504         int signal_mask_is_inited = 0;
6505         int opt;
6506         unsigned builtin_argc;
6507         char **e;
6508         struct variable *cur_var;
6509
6510         INIT_G();
6511         if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, is already done */
6512                 G.last_exitcode = EXIT_SUCCESS;
6513 #if !BB_MMU
6514         G.argv0_for_re_execing = argv[0];
6515 #endif
6516         /* Deal with HUSH_VERSION */
6517         G.shell_ver = const_shell_ver; /* copying struct here */
6518         G.top_var = &G.shell_ver;
6519         debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
6520         unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
6521         /* Initialize our shell local variables with the values
6522          * currently living in the environment */
6523         cur_var = G.top_var;
6524         e = environ;
6525         if (e) while (*e) {
6526                 char *value = strchr(*e, '=');
6527                 if (value) { /* paranoia */
6528                         cur_var->next = xzalloc(sizeof(*cur_var));
6529                         cur_var = cur_var->next;
6530                         cur_var->varstr = *e;
6531                         cur_var->max_len = strlen(*e);
6532                         cur_var->flg_export = 1;
6533                 }
6534                 e++;
6535         }
6536         /* reinstate HUSH_VERSION */
6537         debug_printf_env("putenv '%s'\n", hush_version_str);
6538         putenv((char *)hush_version_str);
6539
6540         /* Export PWD */
6541         set_pwd_var(/*exp:*/ 1);
6542         /* bash also exports SHLVL and _,
6543          * and sets (but doesn't export) the following variables:
6544          * BASH=/bin/bash
6545          * BASH_VERSINFO=([0]="3" [1]="2" [2]="0" [3]="1" [4]="release" [5]="i386-pc-linux-gnu")
6546          * BASH_VERSION='3.2.0(1)-release'
6547          * HOSTTYPE=i386
6548          * MACHTYPE=i386-pc-linux-gnu
6549          * OSTYPE=linux-gnu
6550          * HOSTNAME=<xxxxxxxxxx>
6551          * PPID=<NNNNN> - we also do it elsewhere
6552          * EUID=<NNNNN>
6553          * UID=<NNNNN>
6554          * GROUPS=()
6555          * LINES=<NNN>
6556          * COLUMNS=<NNN>
6557          * BASH_ARGC=()
6558          * BASH_ARGV=()
6559          * BASH_LINENO=()
6560          * BASH_SOURCE=()
6561          * DIRSTACK=()
6562          * PIPESTATUS=([0]="0")
6563          * HISTFILE=/<xxx>/.bash_history
6564          * HISTFILESIZE=500
6565          * HISTSIZE=500
6566          * MAILCHECK=60
6567          * PATH=/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:.
6568          * SHELL=/bin/bash
6569          * SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor
6570          * TERM=dumb
6571          * OPTERR=1
6572          * OPTIND=1
6573          * IFS=$' \t\n'
6574          * PS1='\s-\v\$ '
6575          * PS2='> '
6576          * PS4='+ '
6577          */
6578
6579 #if ENABLE_FEATURE_EDITING
6580         G.line_input_state = new_line_input_t(FOR_SHELL);
6581 #endif
6582         G.global_argc = argc;
6583         G.global_argv = argv;
6584         /* Initialize some more globals to non-zero values */
6585         cmdedit_update_prompt();
6586
6587         if (setjmp(die_jmp)) {
6588                 /* xfunc has failed! die die die */
6589                 /* no EXIT traps, this is an escape hatch! */
6590                 G.exiting = 1;
6591                 hush_exit(xfunc_error_retval);
6592         }
6593
6594         /* Shell is non-interactive at first. We need to call
6595          * block_signals(0) if we are going to execute "sh <script>",
6596          * "sh -c <cmds>" or login shell's /etc/profile and friends.
6597          * If we later decide that we are interactive, we run block_signals(0)
6598          * (or re-run block_signals(1) if we ran block_signals(0) before)
6599          * in order to intercept (more) signals.
6600          */
6601
6602         /* Parse options */
6603         /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
6604         builtin_argc = 0;
6605         while (1) {
6606                 opt = getopt(argc, argv, "+c:xins"
6607 #if !BB_MMU
6608                                 "<:$:R:V:"
6609 # if ENABLE_HUSH_FUNCTIONS
6610                                 "F:"
6611 # endif
6612 #endif
6613                 );
6614                 if (opt <= 0)
6615                         break;
6616                 switch (opt) {
6617                 case 'c':
6618                         /* Possibilities:
6619                          * sh ... -c 'script'
6620                          * sh ... -c 'script' ARG0 [ARG1...]
6621                          * On NOMMU, if builtin_argc != 0,
6622                          * sh ... -c 'builtin' [BARGV...] "" ARG0 [ARG1...]
6623                          * "" needs to be replaced with NULL
6624                          * and BARGV vector fed to builtin function.
6625                          * Note: this form never happens:
6626                          * sh ... -c 'builtin' [BARGV...] ""
6627                          */
6628                         if (!G.root_pid) {
6629                                 G.root_pid = getpid();
6630                                 G.root_ppid = getppid();
6631                         }
6632                         G.global_argv = argv + optind;
6633                         G.global_argc = argc - optind;
6634                         if (builtin_argc) {
6635                                 /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */
6636                                 const struct built_in_command *x;
6637
6638                                 block_signals(0); /* 0: called 1st time */
6639                                 x = find_builtin(optarg);
6640                                 if (x) { /* paranoia */
6641                                         G.global_argc -= builtin_argc; /* skip [BARGV...] "" */
6642                                         G.global_argv += builtin_argc;
6643                                         G.global_argv[-1] = NULL; /* replace "" */
6644                                         G.last_exitcode = x->function(argv + optind - 1);
6645                                 }
6646                                 goto final_return;
6647                         }
6648                         if (!G.global_argv[0]) {
6649                                 /* -c 'script' (no params): prevent empty $0 */
6650                                 G.global_argv--; /* points to argv[i] of 'script' */
6651                                 G.global_argv[0] = argv[0];
6652                                 G.global_argc--;
6653                         } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */
6654                         block_signals(0); /* 0: called 1st time */
6655                         parse_and_run_string(optarg);
6656                         goto final_return;
6657                 case 'i':
6658                         /* Well, we cannot just declare interactiveness,
6659                          * we have to have some stuff (ctty, etc) */
6660                         /* G_interactive_fd++; */
6661                         break;
6662                 case 's':
6663                         /* "-s" means "read from stdin", but this is how we always
6664                          * operate, so simply do nothing here. */
6665                         break;
6666 #if !BB_MMU
6667                 case '<': /* "big heredoc" support */
6668                         full_write(STDOUT_FILENO, optarg, strlen(optarg));
6669                         _exit(0);
6670                 case '$':
6671                         G.root_pid = bb_strtou(optarg, &optarg, 16);
6672                         optarg++;
6673                         G.root_ppid = bb_strtou(optarg, &optarg, 16);
6674                         optarg++;
6675                         G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
6676                         optarg++;
6677                         G.last_exitcode = bb_strtou(optarg, &optarg, 16);
6678                         optarg++;
6679                         builtin_argc = bb_strtou(optarg, &optarg, 16);
6680 # if ENABLE_HUSH_LOOPS
6681                         optarg++;
6682                         G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
6683 # endif
6684                         break;
6685                 case 'R':
6686                 case 'V':
6687                         set_local_var(xstrdup(optarg), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ opt == 'R');
6688                         break;
6689 # if ENABLE_HUSH_FUNCTIONS
6690                 case 'F': {
6691                         struct function *funcp = new_function(optarg);
6692                         /* funcp->name is already set to optarg */
6693                         /* funcp->body is set to NULL. It's a special case. */
6694                         funcp->body_as_string = argv[optind];
6695                         optind++;
6696                         break;
6697                 }
6698 # endif
6699 #endif
6700                 case 'n':
6701                 case 'x':
6702                         if (!set_mode('-', opt))
6703                                 break;
6704                 default:
6705 #ifndef BB_VER
6706                         fprintf(stderr, "Usage: sh [FILE]...\n"
6707                                         "   or: sh -c command [args]...\n\n");
6708                         exit(EXIT_FAILURE);
6709 #else
6710                         bb_show_usage();
6711 #endif
6712                 }
6713         } /* option parsing loop */
6714
6715         if (!G.root_pid) {
6716                 G.root_pid = getpid();
6717                 G.root_ppid = getppid();
6718         }
6719
6720         /* If we are login shell... */
6721         if (argv[0] && argv[0][0] == '-') {
6722                 FILE *input;
6723                 debug_printf("sourcing /etc/profile\n");
6724                 input = fopen_for_read("/etc/profile");
6725                 if (input != NULL) {
6726                         close_on_exec_on(fileno(input));
6727                         block_signals(0); /* 0: called 1st time */
6728                         signal_mask_is_inited = 1;
6729                         parse_and_run_file(input);
6730                         fclose(input);
6731                 }
6732                 /* bash: after sourcing /etc/profile,
6733                  * tries to source (in the given order):
6734                  * ~/.bash_profile, ~/.bash_login, ~/.profile,
6735                  * stopping on first found. --noprofile turns this off.
6736                  * bash also sources ~/.bash_logout on exit.
6737                  * If called as sh, skips .bash_XXX files.
6738                  */
6739         }
6740
6741         if (argv[optind]) {
6742                 FILE *input;
6743                 /*
6744                  * "bash <script>" (which is never interactive (unless -i?))
6745                  * sources $BASH_ENV here (without scanning $PATH).
6746                  * If called as sh, does the same but with $ENV.
6747                  */
6748                 debug_printf("running script '%s'\n", argv[optind]);
6749                 G.global_argv = argv + optind;
6750                 G.global_argc = argc - optind;
6751                 input = xfopen_for_read(argv[optind]);
6752                 close_on_exec_on(fileno(input));
6753                 if (!signal_mask_is_inited)
6754                         block_signals(0); /* 0: called 1st time */
6755                 parse_and_run_file(input);
6756 #if ENABLE_FEATURE_CLEAN_UP
6757                 fclose(input);
6758 #endif
6759                 goto final_return;
6760         }
6761
6762         /* Up to here, shell was non-interactive. Now it may become one.
6763          * NB: don't forget to (re)run block_signals(0/1) as needed.
6764          */
6765
6766         /* A shell is interactive if the '-i' flag was given,
6767          * or if all of the following conditions are met:
6768          *    no -c command
6769          *    no arguments remaining or the -s flag given
6770          *    standard input is a terminal
6771          *    standard output is a terminal
6772          * Refer to Posix.2, the description of the 'sh' utility.
6773          */
6774 #if ENABLE_HUSH_JOB
6775         if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
6776                 G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
6777                 debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp);
6778                 if (G_saved_tty_pgrp < 0)
6779                         G_saved_tty_pgrp = 0;
6780
6781                 /* try to dup stdin to high fd#, >= 255 */
6782                 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
6783                 if (G_interactive_fd < 0) {
6784                         /* try to dup to any fd */
6785                         G_interactive_fd = dup(STDIN_FILENO);
6786                         if (G_interactive_fd < 0) {
6787                                 /* give up */
6788                                 G_interactive_fd = 0;
6789                                 G_saved_tty_pgrp = 0;
6790                         }
6791                 }
6792 // TODO: track & disallow any attempts of user
6793 // to (inadvertently) close/redirect G_interactive_fd
6794         }
6795         debug_printf("interactive_fd:%d\n", G_interactive_fd);
6796         if (G_interactive_fd) {
6797                 close_on_exec_on(G_interactive_fd);
6798
6799                 if (G_saved_tty_pgrp) {
6800                         /* If we were run as 'hush &', sleep until we are
6801                          * in the foreground (tty pgrp == our pgrp).
6802                          * If we get started under a job aware app (like bash),
6803                          * make sure we are now in charge so we don't fight over
6804                          * who gets the foreground */
6805                         while (1) {
6806                                 pid_t shell_pgrp = getpgrp();
6807                                 G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
6808                                 if (G_saved_tty_pgrp == shell_pgrp)
6809                                         break;
6810                                 /* send TTIN to ourself (should stop us) */
6811                                 kill(- shell_pgrp, SIGTTIN);
6812                         }
6813                 }
6814
6815                 /* Block some signals */
6816                 block_signals(signal_mask_is_inited);
6817
6818                 if (G_saved_tty_pgrp) {
6819                         /* Set other signals to restore saved_tty_pgrp */
6820                         set_fatal_handlers();
6821                         /* Put ourselves in our own process group
6822                          * (bash, too, does this only if ctty is available) */
6823                         bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
6824                         /* Grab control of the terminal */
6825                         tcsetpgrp(G_interactive_fd, getpid());
6826                 }
6827                 /* -1 is special - makes xfuncs longjmp, not exit
6828                  * (we reset die_sleep = 0 whereever we [v]fork) */
6829                 enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */
6830         } else if (!signal_mask_is_inited) {
6831                 block_signals(0); /* 0: called 1st time */
6832         } /* else: block_signals(0) was done before */
6833 #elif ENABLE_HUSH_INTERACTIVE
6834         /* No job control compiled in, only prompt/line editing */
6835         if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
6836                 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
6837                 if (G_interactive_fd < 0) {
6838                         /* try to dup to any fd */
6839                         G_interactive_fd = dup(STDIN_FILENO);
6840                         if (G_interactive_fd < 0)
6841                                 /* give up */
6842                                 G_interactive_fd = 0;
6843                 }
6844         }
6845         if (G_interactive_fd) {
6846                 close_on_exec_on(G_interactive_fd);
6847                 block_signals(signal_mask_is_inited);
6848         } else if (!signal_mask_is_inited) {
6849                 block_signals(0);
6850         }
6851 #else
6852         /* We have interactiveness code disabled */
6853         if (!signal_mask_is_inited) {
6854                 block_signals(0);
6855         }
6856 #endif
6857         /* bash:
6858          * if interactive but not a login shell, sources ~/.bashrc
6859          * (--norc turns this off, --rcfile <file> overrides)
6860          */
6861
6862         if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
6863                 /* note: ash and hush share this string */
6864                 printf("\n\n%s %s\n"
6865                         IF_HUSH_HELP("Enter 'help' for a list of built-in commands.\n")
6866                         "\n",
6867                         bb_banner,
6868                         "hush - the humble shell"
6869                 );
6870         }
6871
6872         parse_and_run_file(stdin);
6873
6874  final_return:
6875 #if ENABLE_FEATURE_CLEAN_UP
6876         if (G.cwd != bb_msg_unknown)
6877                 free((char*)G.cwd);
6878         cur_var = G.top_var->next;
6879         while (cur_var) {
6880                 struct variable *tmp = cur_var;
6881                 if (!cur_var->max_len)
6882                         free(cur_var->varstr);
6883                 cur_var = cur_var->next;
6884                 free(tmp);
6885         }
6886 #endif
6887         hush_exit(G.last_exitcode);
6888 }
6889
6890
6891 #if ENABLE_LASH
6892 int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
6893 int lash_main(int argc, char **argv)
6894 {
6895         bb_error_msg("lash is deprecated, please use hush instead");
6896         return hush_main(argc, argv);
6897 }
6898 #endif
6899
6900 #if ENABLE_MSH
6901 int msh_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
6902 int msh_main(int argc, char **argv)
6903 {
6904         //bb_error_msg("msh is deprecated, please use hush instead");
6905         return hush_main(argc, argv);
6906 }
6907 #endif
6908
6909
6910 /*
6911  * Built-ins
6912  */
6913 static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM)
6914 {
6915         return 0;
6916 }
6917
6918 static int FAST_FUNC run_applet_main(char **argv, int (*applet_main)(int argc, char **argv))
6919 {
6920         int argc = 0;
6921         while (*argv) {
6922                 argc++;
6923                 argv++;
6924         }
6925         return applet_main(argc, argv - argc);
6926 }
6927
6928 static int FAST_FUNC builtin_test(char **argv)
6929 {
6930         return run_applet_main(argv, test_main);
6931 }
6932
6933 static int FAST_FUNC builtin_echo(char **argv)
6934 {
6935         return run_applet_main(argv, echo_main);
6936 }
6937
6938 #if ENABLE_PRINTF
6939 static int FAST_FUNC builtin_printf(char **argv)
6940 {
6941         return run_applet_main(argv, printf_main);
6942 }
6943 #endif
6944
6945 static int FAST_FUNC builtin_eval(char **argv)
6946 {
6947         int rcode = EXIT_SUCCESS;
6948
6949         if (*++argv) {
6950                 char *str = expand_strvec_to_string(argv);
6951                 /* bash:
6952                  * eval "echo Hi; done" ("done" is syntax error):
6953                  * "echo Hi" will not execute too.
6954                  */
6955                 parse_and_run_string(str);
6956                 free(str);
6957                 rcode = G.last_exitcode;
6958         }
6959         return rcode;
6960 }
6961
6962 static int FAST_FUNC builtin_cd(char **argv)
6963 {
6964         const char *newdir = argv[1];
6965         if (newdir == NULL) {
6966                 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
6967                  * bash says "bash: cd: HOME not set" and does nothing
6968                  * (exitcode 1)
6969                  */
6970                 const char *home = get_local_var_value("HOME");
6971                 newdir = home ? home : "/";
6972         }
6973         if (chdir(newdir)) {
6974                 /* Mimic bash message exactly */
6975                 bb_perror_msg("cd: %s", newdir);
6976                 return EXIT_FAILURE;
6977         }
6978         /* Read current dir (get_cwd(1) is inside) and set PWD.
6979          * Note: do not enforce exporting. If PWD was unset or unexported,
6980          * set it again, but do not export. bash does the same.
6981          */
6982         set_pwd_var(/*exp:*/ 0);
6983         return EXIT_SUCCESS;
6984 }
6985
6986 static int FAST_FUNC builtin_exec(char **argv)
6987 {
6988         static const char pseudo_null_str[] = { SPECIAL_VAR_SYMBOL, SPECIAL_VAR_SYMBOL, '\0' };
6989         char **pp = argv;
6990 #if !BB_MMU
6991         nommu_save_t dummy;
6992 #endif
6993
6994         if (*++argv == NULL)
6995                 return EXIT_SUCCESS; /* bash does this */
6996
6997         /* Make sure empty arguments aren't ignored */
6998         /* Example: exec ls '' */
6999         pp = argv;
7000         while (*pp) {
7001                 if ((*pp)[0] == '\0')
7002                         *pp = (char*)pseudo_null_str;
7003                 pp++;
7004         }
7005
7006         /* Careful: we can end up here after [v]fork. Do not restore
7007          * tty pgrp then, only top-level shell process does that */
7008         if (G_saved_tty_pgrp && getpid() == G.root_pid)
7009                 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
7010
7011         /* TODO: if exec fails, bash does NOT exit! We do... */
7012         pseudo_exec_argv(&dummy, argv, 0, NULL);
7013         /* never returns */
7014 }
7015
7016 static int FAST_FUNC builtin_exit(char **argv)
7017 {
7018         debug_printf_exec("%s()\n", __func__);
7019
7020         /* interactive bash:
7021          * # trap "echo EEE" EXIT
7022          * # exit
7023          * exit
7024          * There are stopped jobs.
7025          * (if there are _stopped_ jobs, running ones don't count)
7026          * # exit
7027          * exit
7028          # EEE (then bash exits)
7029          *
7030          * we can use G.exiting = -1 as indicator "last cmd was exit"
7031          */
7032
7033         /* note: EXIT trap is run by hush_exit */
7034         if (*++argv == NULL)
7035                 hush_exit(G.last_exitcode);
7036         /* mimic bash: exit 123abc == exit 255 + error msg */
7037         xfunc_error_retval = 255;
7038         /* bash: exit -2 == exit 254, no error msg */
7039         hush_exit(xatoi(*argv) & 0xff);
7040 }
7041
7042 static void print_escaped(const char *s)
7043 {
7044         if (*s == '\'')
7045                 goto squote;
7046         do {
7047                 const char *p = strchrnul(s, '\'');
7048                 /* print 'xxxx', possibly just '' */
7049                 printf("'%.*s'", (int)(p - s), s);
7050                 if (*p == '\0')
7051                         break;
7052                 s = p;
7053  squote:
7054                 /* s points to '; print "'''...'''" */
7055                 putchar('"');
7056                 do putchar('\''); while (*++s == '\'');
7057                 putchar('"');
7058         } while (*s);
7059 }
7060
7061 #if !ENABLE_HUSH_LOCAL
7062 #define helper_export_local(argv, exp, lvl) \
7063         helper_export_local(argv, exp)
7064 #endif
7065 static void helper_export_local(char **argv, int exp, int lvl)
7066 {
7067         do {
7068                 char *name = *argv;
7069
7070                 /* So far we do not check that name is valid (TODO?) */
7071
7072                 if (strchr(name, '=') == NULL) {
7073                         struct variable *var;
7074
7075                         var = get_local_var(name);
7076                         if (exp == -1) { /* unexporting? */
7077                                 /* export -n NAME (without =VALUE) */
7078                                 if (var) {
7079                                         var->flg_export = 0;
7080                                         debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
7081                                         unsetenv(name);
7082                                 } /* else: export -n NOT_EXISTING_VAR: no-op */
7083                                 continue;
7084                         }
7085                         if (exp == 1) { /* exporting? */
7086                                 /* export NAME (without =VALUE) */
7087                                 if (var) {
7088                                         var->flg_export = 1;
7089                                         debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
7090                                         putenv(var->varstr);
7091                                         continue;
7092                                 }
7093                         }
7094                         /* Exporting non-existing variable.
7095                          * bash does not put it in environment,
7096                          * but remembers that it is exported,
7097                          * and does put it in env when it is set later.
7098                          * We just set it to "" and export. */
7099                         /* Or, it's "local NAME" (without =VALUE).
7100                          * bash sets the value to "". */
7101                         name = xasprintf("%s=", name);
7102                 } else {
7103                         /* (Un)exporting/making local NAME=VALUE */
7104                         name = xstrdup(name);
7105                 }
7106                 set_local_var(name, /*exp:*/ exp, /*lvl:*/ lvl, /*ro:*/ 0);
7107         } while (*++argv);
7108 }
7109
7110 static int FAST_FUNC builtin_export(char **argv)
7111 {
7112         unsigned opt_unexport;
7113
7114 #if ENABLE_HUSH_EXPORT_N
7115         /* "!": do not abort on errors */
7116         opt_unexport = getopt32(argv, "!n");
7117         if (opt_unexport == (uint32_t)-1)
7118                 return EXIT_FAILURE;
7119         argv += optind;
7120 #else
7121         opt_unexport = 0;
7122         argv++;
7123 #endif
7124
7125         if (argv[0] == NULL) {
7126                 char **e = environ;
7127                 if (e) {
7128                         while (*e) {
7129 #if 0
7130                                 puts(*e++);
7131 #else
7132                                 /* ash emits: export VAR='VAL'
7133                                  * bash: declare -x VAR="VAL"
7134                                  * we follow ash example */
7135                                 const char *s = *e++;
7136                                 const char *p = strchr(s, '=');
7137
7138                                 if (!p) /* wtf? take next variable */
7139                                         continue;
7140                                 /* export var= */
7141                                 printf("export %.*s", (int)(p - s) + 1, s);
7142                                 print_escaped(p + 1);
7143                                 putchar('\n');
7144 #endif
7145                         }
7146                         /*fflush(stdout); - done after each builtin anyway */
7147                 }
7148                 return EXIT_SUCCESS;
7149         }
7150
7151         helper_export_local(argv, (opt_unexport ? -1 : 1), 0);
7152
7153         return EXIT_SUCCESS;
7154 }
7155
7156 #if ENABLE_HUSH_LOCAL
7157 static int FAST_FUNC builtin_local(char **argv)
7158 {
7159         if (G.func_nest_level == 0) {
7160                 bb_error_msg("%s: not in a function", argv[0]);
7161                 return EXIT_FAILURE; /* bash compat */
7162         }
7163         helper_export_local(argv, 0, G.func_nest_level);
7164         return EXIT_SUCCESS;
7165 }
7166 #endif
7167
7168 static int FAST_FUNC builtin_trap(char **argv)
7169 {
7170         int sig;
7171         char *new_cmd;
7172
7173         if (!G.traps)
7174                 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
7175
7176         argv++;
7177         if (!*argv) {
7178                 int i;
7179                 /* No args: print all trapped */
7180                 for (i = 0; i < NSIG; ++i) {
7181                         if (G.traps[i]) {
7182                                 printf("trap -- ");
7183                                 print_escaped(G.traps[i]);
7184                                 /* note: bash adds "SIG", but only if invoked
7185                                  * as "bash". If called as "sh", or if set -o posix,
7186                                  * then it prints short signal names.
7187                                  * We are printing short names: */
7188                                 printf(" %s\n", get_signame(i));
7189                         }
7190                 }
7191                 /*fflush(stdout); - done after each builtin anyway */
7192                 return EXIT_SUCCESS;
7193         }
7194
7195         new_cmd = NULL;
7196         /* If first arg is a number: reset all specified signals */
7197         sig = bb_strtou(*argv, NULL, 10);
7198         if (errno == 0) {
7199                 int ret;
7200  process_sig_list:
7201                 ret = EXIT_SUCCESS;
7202                 while (*argv) {
7203                         sig = get_signum(*argv++);
7204                         if (sig < 0 || sig >= NSIG) {
7205                                 ret = EXIT_FAILURE;
7206                                 /* Mimic bash message exactly */
7207                                 bb_perror_msg("trap: %s: invalid signal specification", argv[-1]);
7208                                 continue;
7209                         }
7210
7211                         free(G.traps[sig]);
7212                         G.traps[sig] = xstrdup(new_cmd);
7213
7214                         debug_printf("trap: setting SIG%s (%i) to '%s'",
7215                                 get_signame(sig), sig, G.traps[sig]);
7216
7217                         /* There is no signal for 0 (EXIT) */
7218                         if (sig == 0)
7219                                 continue;
7220
7221                         if (new_cmd) {
7222                                 sigaddset(&G.blocked_set, sig);
7223                         } else {
7224                                 /* There was a trap handler, we are removing it
7225                                  * (if sig has non-DFL handling,
7226                                  * we don't need to do anything) */
7227                                 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
7228                                         continue;
7229                                 sigdelset(&G.blocked_set, sig);
7230                         }
7231                 }
7232                 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7233                 return ret;
7234         }
7235
7236         if (!argv[1]) { /* no second arg */
7237                 bb_error_msg("trap: invalid arguments");
7238                 return EXIT_FAILURE;
7239         }
7240
7241         /* First arg is "-": reset all specified to default */
7242         /* First arg is "--": skip it, the rest is "handler SIGs..." */
7243         /* Everything else: set arg as signal handler
7244          * (includes "" case, which ignores signal) */
7245         if (argv[0][0] == '-') {
7246                 if (argv[0][1] == '\0') { /* "-" */
7247                         /* new_cmd remains NULL: "reset these sigs" */
7248                         goto reset_traps;
7249                 }
7250                 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
7251                         argv++;
7252                 }
7253                 /* else: "-something", no special meaning */
7254         }
7255         new_cmd = *argv;
7256  reset_traps:
7257         argv++;
7258         goto process_sig_list;
7259 }
7260
7261 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */
7262 static int FAST_FUNC builtin_type(char **argv)
7263 {
7264         int ret = EXIT_SUCCESS;
7265
7266         while (*++argv) {
7267                 const char *type;
7268                 char *path = NULL;
7269
7270                 if (0) {} /* make conditional compile easier below */
7271                 /*else if (find_alias(*argv))
7272                         type = "an alias";*/
7273 #if ENABLE_HUSH_FUNCTIONS
7274                 else if (find_function(*argv))
7275                         type = "a function";
7276 #endif
7277                 else if (find_builtin(*argv))
7278                         type = "a shell builtin";
7279                 else if ((path = find_in_path(*argv)) != NULL)
7280                         type = path;
7281                 else {
7282                         bb_error_msg("type: %s: not found", *argv);
7283                         ret = EXIT_FAILURE;
7284                         continue;
7285                 }
7286
7287                 printf("%s is %s\n", *argv, type);
7288                 free(path);
7289         }
7290
7291         return ret;
7292 }
7293
7294 #if ENABLE_HUSH_JOB
7295 /* built-in 'fg' and 'bg' handler */
7296 static int FAST_FUNC builtin_fg_bg(char **argv)
7297 {
7298         int i, jobnum;
7299         struct pipe *pi;
7300
7301         if (!G_interactive_fd)
7302                 return EXIT_FAILURE;
7303
7304         /* If they gave us no args, assume they want the last backgrounded task */
7305         if (!argv[1]) {
7306                 for (pi = G.job_list; pi; pi = pi->next) {
7307                         if (pi->jobid == G.last_jobid) {
7308                                 goto found;
7309                         }
7310                 }
7311                 bb_error_msg("%s: no current job", argv[0]);
7312                 return EXIT_FAILURE;
7313         }
7314         if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
7315                 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
7316                 return EXIT_FAILURE;
7317         }
7318         for (pi = G.job_list; pi; pi = pi->next) {
7319                 if (pi->jobid == jobnum) {
7320                         goto found;
7321                 }
7322         }
7323         bb_error_msg("%s: %d: no such job", argv[0], jobnum);
7324         return EXIT_FAILURE;
7325  found:
7326         /* TODO: bash prints a string representation
7327          * of job being foregrounded (like "sleep 1 | cat") */
7328         if (argv[0][0] == 'f' && G_saved_tty_pgrp) {
7329                 /* Put the job into the foreground.  */
7330                 tcsetpgrp(G_interactive_fd, pi->pgrp);
7331         }
7332
7333         /* Restart the processes in the job */
7334         debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
7335         for (i = 0; i < pi->num_cmds; i++) {
7336                 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
7337                 pi->cmds[i].is_stopped = 0;
7338         }
7339         pi->stopped_cmds = 0;
7340
7341         i = kill(- pi->pgrp, SIGCONT);
7342         if (i < 0) {
7343                 if (errno == ESRCH) {
7344                         delete_finished_bg_job(pi);
7345                         return EXIT_SUCCESS;
7346                 }
7347                 bb_perror_msg("kill (SIGCONT)");
7348         }
7349
7350         if (argv[0][0] == 'f') {
7351                 remove_bg_job(pi);
7352                 return checkjobs_and_fg_shell(pi);
7353         }
7354         return EXIT_SUCCESS;
7355 }
7356 #endif
7357
7358 #if ENABLE_HUSH_HELP
7359 static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM)
7360 {
7361         const struct built_in_command *x;
7362
7363         printf(
7364                 "Built-in commands:\n"
7365                 "------------------\n");
7366         for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) {
7367                 if (x->descr)
7368                         printf("%s\t%s\n", x->cmd, x->descr);
7369         }
7370         bb_putchar('\n');
7371         return EXIT_SUCCESS;
7372 }
7373 #endif
7374
7375 #if ENABLE_HUSH_JOB
7376 static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM)
7377 {
7378         struct pipe *job;
7379         const char *status_string;
7380
7381         for (job = G.job_list; job; job = job->next) {
7382                 if (job->alive_cmds == job->stopped_cmds)
7383                         status_string = "Stopped";
7384                 else
7385                         status_string = "Running";
7386
7387                 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
7388         }
7389         return EXIT_SUCCESS;
7390 }
7391 #endif
7392
7393 #if HUSH_DEBUG
7394 static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM)
7395 {
7396         void *p;
7397         unsigned long l;
7398
7399 # ifdef M_TRIM_THRESHOLD
7400         /* Optional. Reduces probability of false positives */
7401         malloc_trim(0);
7402 # endif
7403         /* Crude attempt to find where "free memory" starts,
7404          * sans fragmentation. */
7405         p = malloc(240);
7406         l = (unsigned long)p;
7407         free(p);
7408         p = malloc(3400);
7409         if (l < (unsigned long)p) l = (unsigned long)p;
7410         free(p);
7411
7412         if (!G.memleak_value)
7413                 G.memleak_value = l;
7414
7415         l -= G.memleak_value;
7416         if ((long)l < 0)
7417                 l = 0;
7418         l /= 1024;
7419         if (l > 127)
7420                 l = 127;
7421
7422         /* Exitcode is "how many kilobytes we leaked since 1st call" */
7423         return l;
7424 }
7425 #endif
7426
7427 static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM)
7428 {
7429         puts(get_cwd(0));
7430         return EXIT_SUCCESS;
7431 }
7432
7433 static int FAST_FUNC builtin_read(char **argv)
7434 {
7435         char *string;
7436         const char *name = "REPLY";
7437
7438         if (argv[1]) {
7439                 name = argv[1];
7440                 /* bash (3.2.33(1)) bug: "read 0abcd" will execute,
7441                  * and _after_ that_ it will complain */
7442                 if (!is_well_formed_var_name(name, '\0')) {
7443                         /* Mimic bash message */
7444                         bb_error_msg("read: '%s': not a valid identifier", name);
7445                         return 1;
7446                 }
7447         }
7448
7449 //TODO: bash unbackslashes input, splits words and puts them in argv[i]
7450
7451         string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
7452         return set_local_var(string, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
7453 }
7454
7455 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
7456  * built-in 'set' handler
7457  * SUSv3 says:
7458  * set [-abCefhmnuvx] [-o option] [argument...]
7459  * set [+abCefhmnuvx] [+o option] [argument...]
7460  * set -- [argument...]
7461  * set -o
7462  * set +o
7463  * Implementations shall support the options in both their hyphen and
7464  * plus-sign forms. These options can also be specified as options to sh.
7465  * Examples:
7466  * Write out all variables and their values: set
7467  * Set $1, $2, and $3 and set "$#" to 3: set c a b
7468  * Turn on the -x and -v options: set -xv
7469  * Unset all positional parameters: set --
7470  * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
7471  * Set the positional parameters to the expansion of x, even if x expands
7472  * with a leading '-' or '+': set -- $x
7473  *
7474  * So far, we only support "set -- [argument...]" and some of the short names.
7475  */
7476 static int FAST_FUNC builtin_set(char **argv)
7477 {
7478         int n;
7479         char **pp, **g_argv;
7480         char *arg = *++argv;
7481
7482         if (arg == NULL) {
7483                 struct variable *e;
7484                 for (e = G.top_var; e; e = e->next)
7485                         puts(e->varstr);
7486                 return EXIT_SUCCESS;
7487         }
7488
7489         do {
7490                 if (!strcmp(arg, "--")) {
7491                         ++argv;
7492                         goto set_argv;
7493                 }
7494                 if (arg[0] != '+' && arg[0] != '-')
7495                         break;
7496                 for (n = 1; arg[n]; ++n)
7497                         if (set_mode(arg[0], arg[n]))
7498                                 goto error;
7499         } while ((arg = *++argv) != NULL);
7500         /* Now argv[0] is 1st argument */
7501
7502         if (arg == NULL)
7503                 return EXIT_SUCCESS;
7504  set_argv:
7505
7506         /* NB: G.global_argv[0] ($0) is never freed/changed */
7507         g_argv = G.global_argv;
7508         if (G.global_args_malloced) {
7509                 pp = g_argv;
7510                 while (*++pp)
7511                         free(*pp);
7512                 g_argv[1] = NULL;
7513         } else {
7514                 G.global_args_malloced = 1;
7515                 pp = xzalloc(sizeof(pp[0]) * 2);
7516                 pp[0] = g_argv[0]; /* retain $0 */
7517                 g_argv = pp;
7518         }
7519         /* This realloc's G.global_argv */
7520         G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
7521
7522         n = 1;
7523         while (*++pp)
7524                 n++;
7525         G.global_argc = n;
7526
7527         return EXIT_SUCCESS;
7528
7529         /* Nothing known, so abort */
7530  error:
7531         bb_error_msg("set: %s: invalid option", arg);
7532         return EXIT_FAILURE;
7533 }
7534
7535 static int FAST_FUNC builtin_shift(char **argv)
7536 {
7537         int n = 1;
7538         if (argv[1]) {
7539                 n = atoi(argv[1]);
7540         }
7541         if (n >= 0 && n < G.global_argc) {
7542                 if (G.global_args_malloced) {
7543                         int m = 1;
7544                         while (m <= n)
7545                                 free(G.global_argv[m++]);
7546                 }
7547                 G.global_argc -= n;
7548                 memmove(&G.global_argv[1], &G.global_argv[n+1],
7549                                 G.global_argc * sizeof(G.global_argv[0]));
7550                 return EXIT_SUCCESS;
7551         }
7552         return EXIT_FAILURE;
7553 }
7554
7555 static int FAST_FUNC builtin_source(char **argv)
7556 {
7557         char *arg_path;
7558         FILE *input;
7559         save_arg_t sv;
7560 #if ENABLE_HUSH_FUNCTIONS
7561         smallint sv_flg;
7562 #endif
7563
7564         if (*++argv == NULL)
7565                 return EXIT_FAILURE;
7566
7567         if (strchr(*argv, '/') == NULL && (arg_path = find_in_path(*argv)) != NULL) {
7568                 input = fopen_for_read(arg_path);
7569                 free(arg_path);
7570         } else
7571                 input = fopen_or_warn(*argv, "r");
7572         if (!input) {
7573                 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
7574                 return EXIT_FAILURE;
7575         }
7576         close_on_exec_on(fileno(input));
7577
7578 #if ENABLE_HUSH_FUNCTIONS
7579         sv_flg = G.flag_return_in_progress;
7580         /* "we are inside sourced file, ok to use return" */
7581         G.flag_return_in_progress = -1;
7582 #endif
7583         save_and_replace_G_args(&sv, argv);
7584
7585         parse_and_run_file(input);
7586         fclose(input);
7587
7588         restore_G_args(&sv, argv);
7589 #if ENABLE_HUSH_FUNCTIONS
7590         G.flag_return_in_progress = sv_flg;
7591 #endif
7592
7593         return G.last_exitcode;
7594 }
7595
7596 static int FAST_FUNC builtin_umask(char **argv)
7597 {
7598         int rc;
7599         mode_t mask;
7600
7601         mask = umask(0);
7602         if (argv[1]) {
7603                 mode_t old_mask = mask;
7604
7605                 mask ^= 0777;
7606                 rc = bb_parse_mode(argv[1], &mask);
7607                 mask ^= 0777;
7608                 if (rc == 0) {
7609                         mask = old_mask;
7610                         /* bash messages:
7611                          * bash: umask: 'q': invalid symbolic mode operator
7612                          * bash: umask: 999: octal number out of range
7613                          */
7614                         bb_error_msg("%s: '%s' invalid mode", argv[0], argv[1]);
7615                 }
7616         } else {
7617                 rc = 1;
7618                 /* Mimic bash */
7619                 printf("%04o\n", (unsigned) mask);
7620                 /* fall through and restore mask which we set to 0 */
7621         }
7622         umask(mask);
7623
7624         return !rc; /* rc != 0 - success */
7625 }
7626
7627 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
7628 static int FAST_FUNC builtin_unset(char **argv)
7629 {
7630         int ret;
7631         unsigned opts;
7632
7633         /* "!": do not abort on errors */
7634         /* "+": stop at 1st non-option */
7635         opts = getopt32(argv, "!+vf");
7636         if (opts == (unsigned)-1)
7637                 return EXIT_FAILURE;
7638         if (opts == 3) {
7639                 bb_error_msg("unset: -v and -f are exclusive");
7640                 return EXIT_FAILURE;
7641         }
7642         argv += optind;
7643
7644         ret = EXIT_SUCCESS;
7645         while (*argv) {
7646                 if (!(opts & 2)) { /* not -f */
7647                         if (unset_local_var(*argv)) {
7648                                 /* unset <nonexistent_var> doesn't fail.
7649                                  * Error is when one tries to unset RO var.
7650                                  * Message was printed by unset_local_var. */
7651                                 ret = EXIT_FAILURE;
7652                         }
7653                 }
7654 #if ENABLE_HUSH_FUNCTIONS
7655                 else {
7656                         unset_func(*argv);
7657                 }
7658 #endif
7659                 argv++;
7660         }
7661         return ret;
7662 }
7663
7664 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
7665 static int FAST_FUNC builtin_wait(char **argv)
7666 {
7667         int ret = EXIT_SUCCESS;
7668         int status, sig;
7669
7670         if (*++argv == NULL) {
7671                 /* Don't care about wait results */
7672                 /* Note 1: must wait until there are no more children */
7673                 /* Note 2: must be interruptible */
7674                 /* Examples:
7675                  * $ sleep 3 & sleep 6 & wait
7676                  * [1] 30934 sleep 3
7677                  * [2] 30935 sleep 6
7678                  * [1] Done                   sleep 3
7679                  * [2] Done                   sleep 6
7680                  * $ sleep 3 & sleep 6 & wait
7681                  * [1] 30936 sleep 3
7682                  * [2] 30937 sleep 6
7683                  * [1] Done                   sleep 3
7684                  * ^C <-- after ~4 sec from keyboard
7685                  * $
7686                  */
7687                 sigaddset(&G.blocked_set, SIGCHLD);
7688                 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7689                 while (1) {
7690                         checkjobs(NULL);
7691                         if (errno == ECHILD)
7692                                 break;
7693                         /* Wait for SIGCHLD or any other signal of interest */
7694                         /* sigtimedwait with infinite timeout: */
7695                         sig = sigwaitinfo(&G.blocked_set, NULL);
7696                         if (sig > 0) {
7697                                 sig = check_and_run_traps(sig);
7698                                 if (sig && sig != SIGCHLD) { /* see note 2 */
7699                                         ret = 128 + sig;
7700                                         break;
7701                                 }
7702                         }
7703                 }
7704                 sigdelset(&G.blocked_set, SIGCHLD);
7705                 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7706                 return ret;
7707         }
7708
7709         /* This is probably buggy wrt interruptible-ness */
7710         while (*argv) {
7711                 pid_t pid = bb_strtou(*argv, NULL, 10);
7712                 if (errno) {
7713                         /* mimic bash message */
7714                         bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
7715                         return EXIT_FAILURE;
7716                 }
7717                 if (waitpid(pid, &status, 0) == pid) {
7718                         if (WIFSIGNALED(status))
7719                                 ret = 128 + WTERMSIG(status);
7720                         else if (WIFEXITED(status))
7721                                 ret = WEXITSTATUS(status);
7722                         else /* wtf? */
7723                                 ret = EXIT_FAILURE;
7724                 } else {
7725                         bb_perror_msg("wait %s", *argv);
7726                         ret = 127;
7727                 }
7728                 argv++;
7729         }
7730
7731         return ret;
7732 }
7733
7734 #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
7735 static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
7736 {
7737         if (argv[1]) {
7738                 def = bb_strtou(argv[1], NULL, 10);
7739                 if (errno || def < def_min || argv[2]) {
7740                         bb_error_msg("%s: bad arguments", argv[0]);
7741                         def = UINT_MAX;
7742                 }
7743         }
7744         return def;
7745 }
7746 #endif
7747
7748 #if ENABLE_HUSH_LOOPS
7749 static int FAST_FUNC builtin_break(char **argv)
7750 {
7751         unsigned depth;
7752         if (G.depth_of_loop == 0) {
7753                 bb_error_msg("%s: only meaningful in a loop", argv[0]);
7754                 return EXIT_SUCCESS; /* bash compat */
7755         }
7756         G.flag_break_continue++; /* BC_BREAK = 1 */
7757
7758         G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
7759         if (depth == UINT_MAX)
7760                 G.flag_break_continue = BC_BREAK;
7761         if (G.depth_of_loop < depth)
7762                 G.depth_break_continue = G.depth_of_loop;
7763
7764         return EXIT_SUCCESS;
7765 }
7766
7767 static int FAST_FUNC builtin_continue(char **argv)
7768 {
7769         G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
7770         return builtin_break(argv);
7771 }
7772 #endif
7773
7774 #if ENABLE_HUSH_FUNCTIONS
7775 static int FAST_FUNC builtin_return(char **argv)
7776 {
7777         int rc;
7778
7779         if (G.flag_return_in_progress != -1) {
7780                 bb_error_msg("%s: not in a function or sourced script", argv[0]);
7781                 return EXIT_FAILURE; /* bash compat */
7782         }
7783
7784         G.flag_return_in_progress = 1;
7785
7786         /* bash:
7787          * out of range: wraps around at 256, does not error out
7788          * non-numeric param:
7789          * f() { false; return qwe; }; f; echo $?
7790          * bash: return: qwe: numeric argument required  <== we do this
7791          * 255  <== we also do this
7792          */
7793         rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
7794         return rc;
7795 }
7796 #endif