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