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