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