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