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