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