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