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