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