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