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