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