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