hush: "adopt" ash var-utf8-length.tests
[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 && !ENABLE_HUSH_CASE
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 #if !BASH_PATTERN_SUBST
5321         const int do_unbackslash = 1;
5322 #endif
5323         char *exp_str;
5324         struct in_str input;
5325         o_string dest = NULL_O_STRING;
5326
5327         if (!strchr(str, '$')
5328          && !strchr(str, '\\')
5329 #if ENABLE_HUSH_TICK
5330          && !strchr(str, '`')
5331 #endif
5332         ) {
5333                 return NULL;
5334         }
5335
5336         /* We need to expand. Example:
5337          * echo $(($a + `echo 1`)) $((1 + $((2)) ))
5338          */
5339         setup_string_in_str(&input, str);
5340         encode_string(NULL, &dest, &input, EOF, process_bkslash);
5341 //TODO: error check (encode_string returns 0 on error)?
5342         //bb_error_msg("'%s' -> '%s'", str, dest.data);
5343         exp_str = expand_string_to_string(dest.data, /*unbackslash:*/ do_unbackslash);
5344         //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
5345         o_free_unsafe(&dest);
5346         return exp_str;
5347 }
5348
5349 #if ENABLE_FEATURE_SH_MATH
5350 static arith_t expand_and_evaluate_arith(const char *arg, const char **errmsg_p)
5351 {
5352         arith_state_t math_state;
5353         arith_t res;
5354         char *exp_str;
5355
5356         math_state.lookupvar = get_local_var_value;
5357         math_state.setvar = set_local_var_from_halves;
5358         //math_state.endofname = endofname;
5359         exp_str = encode_then_expand_string(arg, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
5360         res = arith(&math_state, exp_str ? exp_str : arg);
5361         free(exp_str);
5362         if (errmsg_p)
5363                 *errmsg_p = math_state.errmsg;
5364         if (math_state.errmsg)
5365                 die_if_script(math_state.errmsg);
5366         return res;
5367 }
5368 #endif
5369
5370 #if BASH_PATTERN_SUBST
5371 /* ${var/[/]pattern[/repl]} helpers */
5372 static char *strstr_pattern(char *val, const char *pattern, int *size)
5373 {
5374         while (1) {
5375                 char *end = scan_and_match(val, pattern, SCAN_MOVE_FROM_RIGHT + SCAN_MATCH_LEFT_HALF);
5376                 debug_printf_varexp("val:'%s' pattern:'%s' end:'%s'\n", val, pattern, end);
5377                 if (end) {
5378                         *size = end - val;
5379                         return val;
5380                 }
5381                 if (*val == '\0')
5382                         return NULL;
5383                 /* Optimization: if "*pat" did not match the start of "string",
5384                  * we know that "tring", "ring" etc will not match too:
5385                  */
5386                 if (pattern[0] == '*')
5387                         return NULL;
5388                 val++;
5389         }
5390 }
5391 static char *replace_pattern(char *val, const char *pattern, const char *repl, char exp_op)
5392 {
5393         char *result = NULL;
5394         unsigned res_len = 0;
5395         unsigned repl_len = strlen(repl);
5396
5397         while (1) {
5398                 int size;
5399                 char *s = strstr_pattern(val, pattern, &size);
5400                 if (!s)
5401                         break;
5402
5403                 result = xrealloc(result, res_len + (s - val) + repl_len + 1);
5404                 memcpy(result + res_len, val, s - val);
5405                 res_len += s - val;
5406                 strcpy(result + res_len, repl);
5407                 res_len += repl_len;
5408                 debug_printf_varexp("val:'%s' s:'%s' result:'%s'\n", val, s, result);
5409
5410                 val = s + size;
5411                 if (exp_op == '/')
5412                         break;
5413         }
5414         if (val[0] && result) {
5415                 result = xrealloc(result, res_len + strlen(val) + 1);
5416                 strcpy(result + res_len, val);
5417                 debug_printf_varexp("val:'%s' result:'%s'\n", val, result);
5418         }
5419         debug_printf_varexp("result:'%s'\n", result);
5420         return result;
5421 }
5422 #endif /* BASH_PATTERN_SUBST */
5423
5424 /* Helper:
5425  * Handles <SPECIAL_VAR_SYMBOL>varname...<SPECIAL_VAR_SYMBOL> construct.
5426  */
5427 static NOINLINE const char *expand_one_var(char **to_be_freed_pp, char *arg, char **pp)
5428 {
5429         const char *val = NULL;
5430         char *to_be_freed = NULL;
5431         char *p = *pp;
5432         char *var;
5433         char first_char;
5434         char exp_op;
5435         char exp_save = exp_save; /* for compiler */
5436         char *exp_saveptr; /* points to expansion operator */
5437         char *exp_word = exp_word; /* for compiler */
5438         char arg0;
5439
5440         *p = '\0'; /* replace trailing SPECIAL_VAR_SYMBOL */
5441         var = arg;
5442         exp_saveptr = arg[1] ? strchr(VAR_ENCODED_SUBST_OPS, arg[1]) : NULL;
5443         arg0 = arg[0];
5444         first_char = arg[0] = arg0 & 0x7f;
5445         exp_op = 0;
5446
5447         if (first_char == '#'      /* ${#... */
5448          && arg[1] && !exp_saveptr /* not ${#} and not ${#<op_char>...} */
5449         ) {
5450                 /* It must be length operator: ${#var} */
5451                 var++;
5452                 exp_op = 'L';
5453         } else {
5454                 /* Maybe handle parameter expansion */
5455                 if (exp_saveptr /* if 2nd char is one of expansion operators */
5456                  && strchr(NUMERIC_SPECVARS_STR, first_char) /* 1st char is special variable */
5457                 ) {
5458                         /* ${?:0}, ${#[:]%0} etc */
5459                         exp_saveptr = var + 1;
5460                 } else {
5461                         /* ${?}, ${var}, ${var:0}, ${var[:]%0} etc */
5462                         exp_saveptr = var+1 + strcspn(var+1, VAR_ENCODED_SUBST_OPS);
5463                 }
5464                 exp_op = exp_save = *exp_saveptr;
5465                 if (exp_op) {
5466                         exp_word = exp_saveptr + 1;
5467                         if (exp_op == ':') {
5468                                 exp_op = *exp_word++;
5469 //TODO: try ${var:} and ${var:bogus} in non-bash config
5470                                 if (BASH_SUBSTR
5471                                  && (!exp_op || !strchr(MINUS_PLUS_EQUAL_QUESTION, exp_op))
5472                                 ) {
5473                                         /* oops... it's ${var:N[:M]}, not ${var:?xxx} or some such */
5474                                         exp_op = ':';
5475                                         exp_word--;
5476                                 }
5477                         }
5478                         *exp_saveptr = '\0';
5479                 } /* else: it's not an expansion op, but bare ${var} */
5480         }
5481
5482         /* Look up the variable in question */
5483         if (isdigit(var[0])) {
5484                 /* parse_dollar should have vetted var for us */
5485                 int n = xatoi_positive(var);
5486                 if (n < G.global_argc)
5487                         val = G.global_argv[n];
5488                 /* else val remains NULL: $N with too big N */
5489         } else {
5490                 switch (var[0]) {
5491                 case '$': /* pid */
5492                         val = utoa(G.root_pid);
5493                         break;
5494                 case '!': /* bg pid */
5495                         val = G.last_bg_pid ? utoa(G.last_bg_pid) : "";
5496                         break;
5497                 case '?': /* exitcode */
5498                         val = utoa(G.last_exitcode);
5499                         break;
5500                 case '#': /* argc */
5501                         val = utoa(G.global_argc ? G.global_argc-1 : 0);
5502                         break;
5503                 default:
5504                         val = get_local_var_value(var);
5505                 }
5506         }
5507
5508         /* Handle any expansions */
5509         if (exp_op == 'L') {
5510                 reinit_unicode_for_hush();
5511                 debug_printf_expand("expand: length(%s)=", val);
5512                 val = utoa(val ? unicode_strlen(val) : 0);
5513                 debug_printf_expand("%s\n", val);
5514         } else if (exp_op) {
5515                 if (exp_op == '%' || exp_op == '#') {
5516                         /* Standard-mandated substring removal ops:
5517                          * ${parameter%word} - remove smallest suffix pattern
5518                          * ${parameter%%word} - remove largest suffix pattern
5519                          * ${parameter#word} - remove smallest prefix pattern
5520                          * ${parameter##word} - remove largest prefix pattern
5521                          *
5522                          * Word is expanded to produce a glob pattern.
5523                          * Then var's value is matched to it and matching part removed.
5524                          */
5525                         if (val && val[0]) {
5526                                 char *t;
5527                                 char *exp_exp_word;
5528                                 char *loc;
5529                                 unsigned scan_flags = pick_scan(exp_op, *exp_word);
5530                                 if (exp_op == *exp_word)  /* ## or %% */
5531                                         exp_word++;
5532                                 exp_exp_word = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
5533                                 if (exp_exp_word)
5534                                         exp_word = exp_exp_word;
5535                                 /* HACK ALERT. We depend here on the fact that
5536                                  * G.global_argv and results of utoa and get_local_var_value
5537                                  * are actually in writable memory:
5538                                  * scan_and_match momentarily stores NULs there. */
5539                                 t = (char*)val;
5540                                 loc = scan_and_match(t, exp_word, scan_flags);
5541                                 //bb_error_msg("op:%c str:'%s' pat:'%s' res:'%s'",
5542                                 //              exp_op, t, exp_word, loc);
5543                                 free(exp_exp_word);
5544                                 if (loc) { /* match was found */
5545                                         if (scan_flags & SCAN_MATCH_LEFT_HALF) /* #[#] */
5546                                                 val = loc; /* take right part */
5547                                         else /* %[%] */
5548                                                 val = to_be_freed = xstrndup(val, loc - val); /* left */
5549                                 }
5550                         }
5551                 }
5552 #if BASH_PATTERN_SUBST
5553                 else if (exp_op == '/' || exp_op == '\\') {
5554                         /* It's ${var/[/]pattern[/repl]} thing.
5555                          * Note that in encoded form it has TWO parts:
5556                          * var/pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
5557                          * and if // is used, it is encoded as \:
5558                          * var\pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
5559                          */
5560                         /* Empty variable always gives nothing: */
5561                         // "v=''; echo ${v/*/w}" prints "", not "w"
5562                         if (val && val[0]) {
5563                                 /* pattern uses non-standard expansion.
5564                                  * repl should be unbackslashed and globbed
5565                                  * by the usual expansion rules:
5566                                  * >az; >bz;
5567                                  * v='a bz'; echo "${v/a*z/a*z}" prints "a*z"
5568                                  * v='a bz'; echo "${v/a*z/\z}"  prints "\z"
5569                                  * v='a bz'; echo ${v/a*z/a*z}   prints "az"
5570                                  * v='a bz'; echo ${v/a*z/\z}    prints "z"
5571                                  * (note that a*z _pattern_ is never globbed!)
5572                                  */
5573                                 char *pattern, *repl, *t;
5574                                 pattern = encode_then_expand_string(exp_word, /*process_bkslash:*/ 0, /*unbackslash:*/ 0);
5575                                 if (!pattern)
5576                                         pattern = xstrdup(exp_word);
5577                                 debug_printf_varexp("pattern:'%s'->'%s'\n", exp_word, pattern);
5578                                 *p++ = SPECIAL_VAR_SYMBOL;
5579                                 exp_word = p;
5580                                 p = strchr(p, SPECIAL_VAR_SYMBOL);
5581                                 *p = '\0';
5582                                 repl = encode_then_expand_string(exp_word, /*process_bkslash:*/ arg0 & 0x80, /*unbackslash:*/ 1);
5583                                 debug_printf_varexp("repl:'%s'->'%s'\n", exp_word, repl);
5584                                 /* HACK ALERT. We depend here on the fact that
5585                                  * G.global_argv and results of utoa and get_local_var_value
5586                                  * are actually in writable memory:
5587                                  * replace_pattern momentarily stores NULs there. */
5588                                 t = (char*)val;
5589                                 to_be_freed = replace_pattern(t,
5590                                                 pattern,
5591                                                 (repl ? repl : exp_word),
5592                                                 exp_op);
5593                                 if (to_be_freed) /* at least one replace happened */
5594                                         val = to_be_freed;
5595                                 free(pattern);
5596                                 free(repl);
5597                         }
5598                 }
5599 #endif /* BASH_PATTERN_SUBST */
5600                 else if (exp_op == ':') {
5601 #if BASH_SUBSTR && ENABLE_FEATURE_SH_MATH
5602                         /* It's ${var:N[:M]} bashism.
5603                          * Note that in encoded form it has TWO parts:
5604                          * var:N<SPECIAL_VAR_SYMBOL>M<SPECIAL_VAR_SYMBOL>
5605                          */
5606                         arith_t beg, len;
5607                         const char *errmsg;
5608
5609                         beg = expand_and_evaluate_arith(exp_word, &errmsg);
5610                         if (errmsg)
5611                                 goto arith_err;
5612                         debug_printf_varexp("beg:'%s'=%lld\n", exp_word, (long long)beg);
5613                         *p++ = SPECIAL_VAR_SYMBOL;
5614                         exp_word = p;
5615                         p = strchr(p, SPECIAL_VAR_SYMBOL);
5616                         *p = '\0';
5617                         len = expand_and_evaluate_arith(exp_word, &errmsg);
5618                         if (errmsg)
5619                                 goto arith_err;
5620                         debug_printf_varexp("len:'%s'=%lld\n", exp_word, (long long)len);
5621                         if (len >= 0) { /* bash compat: len < 0 is illegal */
5622                                 if (beg < 0) /* bash compat */
5623                                         beg = 0;
5624                                 debug_printf_varexp("from val:'%s'\n", val);
5625                                 if (len == 0 || !val || beg >= strlen(val)) {
5626  arith_err:
5627                                         val = NULL;
5628                                 } else {
5629                                         /* Paranoia. What if user entered 9999999999999
5630                                          * which fits in arith_t but not int? */
5631                                         if (len >= INT_MAX)
5632                                                 len = INT_MAX;
5633                                         val = to_be_freed = xstrndup(val + beg, len);
5634                                 }
5635                                 debug_printf_varexp("val:'%s'\n", val);
5636                         } else
5637 #endif /* HUSH_SUBSTR_EXPANSION && FEATURE_SH_MATH */
5638                         {
5639                                 die_if_script("malformed ${%s:...}", var);
5640                                 val = NULL;
5641                         }
5642                 } else { /* one of "-=+?" */
5643                         /* Standard-mandated substitution ops:
5644                          * ${var?word} - indicate error if unset
5645                          *      If var is unset, word (or a message indicating it is unset
5646                          *      if word is null) is written to standard error
5647                          *      and the shell exits with a non-zero exit status.
5648                          *      Otherwise, the value of var is substituted.
5649                          * ${var-word} - use default value
5650                          *      If var is unset, word is substituted.
5651                          * ${var=word} - assign and use default value
5652                          *      If var is unset, word is assigned to var.
5653                          *      In all cases, final value of var is substituted.
5654                          * ${var+word} - use alternative value
5655                          *      If var is unset, null is substituted.
5656                          *      Otherwise, word is substituted.
5657                          *
5658                          * Word is subjected to tilde expansion, parameter expansion,
5659                          * command substitution, and arithmetic expansion.
5660                          * If word is not needed, it is not expanded.
5661                          *
5662                          * Colon forms (${var:-word}, ${var:=word} etc) do the same,
5663                          * but also treat null var as if it is unset.
5664                          */
5665                         int use_word = (!val || ((exp_save == ':') && !val[0]));
5666                         if (exp_op == '+')
5667                                 use_word = !use_word;
5668                         debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
5669                                         (exp_save == ':') ? "true" : "false", use_word);
5670                         if (use_word) {
5671                                 to_be_freed = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
5672                                 if (to_be_freed)
5673                                         exp_word = to_be_freed;
5674                                 if (exp_op == '?') {
5675                                         /* mimic bash message */
5676                                         die_if_script("%s: %s",
5677                                                 var,
5678                                                 exp_word[0] ? exp_word : "parameter null or not set"
5679                                         );
5680 //TODO: how interactive bash aborts expansion mid-command?
5681                                 } else {
5682                                         val = exp_word;
5683                                 }
5684
5685                                 if (exp_op == '=') {
5686                                         /* ${var=[word]} or ${var:=[word]} */
5687                                         if (isdigit(var[0]) || var[0] == '#') {
5688                                                 /* mimic bash message */
5689                                                 die_if_script("$%s: cannot assign in this way", var);
5690                                                 val = NULL;
5691                                         } else {
5692                                                 char *new_var = xasprintf("%s=%s", var, val);
5693                                                 set_local_var(new_var, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
5694                                         }
5695                                 }
5696                         }
5697                 } /* one of "-=+?" */
5698
5699                 *exp_saveptr = exp_save;
5700         } /* if (exp_op) */
5701
5702         arg[0] = arg0;
5703
5704         *pp = p;
5705         *to_be_freed_pp = to_be_freed;
5706         return val;
5707 }
5708
5709 /* Expand all variable references in given string, adding words to list[]
5710  * at n, n+1,... positions. Return updated n (so that list[n] is next one
5711  * to be filled). This routine is extremely tricky: has to deal with
5712  * variables/parameters with whitespace, $* and $@, and constructs like
5713  * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
5714 static NOINLINE int expand_vars_to_list(o_string *output, int n, char *arg)
5715 {
5716         /* output->o_expflags & EXP_FLAG_SINGLEWORD (0x80) if we are in
5717          * expansion of right-hand side of assignment == 1-element expand.
5718          */
5719         char cant_be_null = 0; /* only bit 0x80 matters */
5720         int ended_in_ifs = 0;  /* did last unquoted expansion end with IFS chars? */
5721         char *p;
5722
5723         debug_printf_expand("expand_vars_to_list: arg:'%s' singleword:%x\n", arg,
5724                         !!(output->o_expflags & EXP_FLAG_SINGLEWORD));
5725         debug_print_list("expand_vars_to_list", output, n);
5726         n = o_save_ptr(output, n);
5727         debug_print_list("expand_vars_to_list[0]", output, n);
5728
5729         while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
5730                 char first_ch;
5731                 char *to_be_freed = NULL;
5732                 const char *val = NULL;
5733 #if ENABLE_HUSH_TICK
5734                 o_string subst_result = NULL_O_STRING;
5735 #endif
5736 #if ENABLE_FEATURE_SH_MATH
5737                 char arith_buf[sizeof(arith_t)*3 + 2];
5738 #endif
5739
5740                 if (ended_in_ifs) {
5741                         o_addchr(output, '\0');
5742                         n = o_save_ptr(output, n);
5743                         ended_in_ifs = 0;
5744                 }
5745
5746                 o_addblock(output, arg, p - arg);
5747                 debug_print_list("expand_vars_to_list[1]", output, n);
5748                 arg = ++p;
5749                 p = strchr(p, SPECIAL_VAR_SYMBOL);
5750
5751                 /* Fetch special var name (if it is indeed one of them)
5752                  * and quote bit, force the bit on if singleword expansion -
5753                  * important for not getting v=$@ expand to many words. */
5754                 first_ch = arg[0] | (output->o_expflags & EXP_FLAG_SINGLEWORD);
5755
5756                 /* Is this variable quoted and thus expansion can't be null?
5757                  * "$@" is special. Even if quoted, it can still
5758                  * expand to nothing (not even an empty string),
5759                  * thus it is excluded. */
5760                 if ((first_ch & 0x7f) != '@')
5761                         cant_be_null |= first_ch;
5762
5763                 switch (first_ch & 0x7f) {
5764                 /* Highest bit in first_ch indicates that var is double-quoted */
5765                 case '*':
5766                 case '@': {
5767                         int i;
5768                         if (!G.global_argv[1])
5769                                 break;
5770                         i = 1;
5771                         cant_be_null |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
5772                         if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
5773                                 while (G.global_argv[i]) {
5774                                         n = expand_on_ifs(NULL, output, n, G.global_argv[i]);
5775                                         debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
5776                                         if (G.global_argv[i++][0] && G.global_argv[i]) {
5777                                                 /* this argv[] is not empty and not last:
5778                                                  * put terminating NUL, start new word */
5779                                                 o_addchr(output, '\0');
5780                                                 debug_print_list("expand_vars_to_list[2]", output, n);
5781                                                 n = o_save_ptr(output, n);
5782                                                 debug_print_list("expand_vars_to_list[3]", output, n);
5783                                         }
5784                                 }
5785                         } else
5786                         /* If EXP_FLAG_SINGLEWORD, we handle assignment 'a=....$@.....'
5787                          * and in this case should treat it like '$*' - see 'else...' below */
5788                         if (first_ch == ('@'|0x80)  /* quoted $@ */
5789                          && !(output->o_expflags & EXP_FLAG_SINGLEWORD) /* not v="$@" case */
5790                         ) {
5791                                 while (1) {
5792                                         o_addQstr(output, G.global_argv[i]);
5793                                         if (++i >= G.global_argc)
5794                                                 break;
5795                                         o_addchr(output, '\0');
5796                                         debug_print_list("expand_vars_to_list[4]", output, n);
5797                                         n = o_save_ptr(output, n);
5798                                 }
5799                         } else { /* quoted $* (or v="$@" case): add as one word */
5800                                 while (1) {
5801                                         o_addQstr(output, G.global_argv[i]);
5802                                         if (!G.global_argv[++i])
5803                                                 break;
5804                                         if (G.ifs[0])
5805                                                 o_addchr(output, G.ifs[0]);
5806                                 }
5807                                 output->has_quoted_part = 1;
5808                         }
5809                         break;
5810                 }
5811                 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
5812                         /* "Empty variable", used to make "" etc to not disappear */
5813                         output->has_quoted_part = 1;
5814                         arg++;
5815                         cant_be_null = 0x80;
5816                         break;
5817 #if ENABLE_HUSH_TICK
5818                 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
5819                         *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
5820                         arg++;
5821                         /* Can't just stuff it into output o_string,
5822                          * expanded result may need to be globbed
5823                          * and $IFS-split */
5824                         debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
5825                         G.last_exitcode = process_command_subs(&subst_result, arg);
5826                         debug_printf_subst("SUBST RES:%d '%s'\n", G.last_exitcode, subst_result.data);
5827                         val = subst_result.data;
5828                         goto store_val;
5829 #endif
5830 #if ENABLE_FEATURE_SH_MATH
5831                 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
5832                         arith_t res;
5833
5834                         arg++; /* skip '+' */
5835                         *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
5836                         debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
5837                         res = expand_and_evaluate_arith(arg, NULL);
5838                         debug_printf_subst("ARITH RES '"ARITH_FMT"'\n", res);
5839                         sprintf(arith_buf, ARITH_FMT, res);
5840                         val = arith_buf;
5841                         break;
5842                 }
5843 #endif
5844                 default:
5845                         val = expand_one_var(&to_be_freed, arg, &p);
5846  IF_HUSH_TICK(store_val:)
5847                         if (!(first_ch & 0x80)) { /* unquoted $VAR */
5848                                 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val,
5849                                                 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
5850                                 if (val && val[0]) {
5851                                         n = expand_on_ifs(&ended_in_ifs, output, n, val);
5852                                         val = NULL;
5853                                 }
5854                         } else { /* quoted $VAR, val will be appended below */
5855                                 output->has_quoted_part = 1;
5856                                 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val,
5857                                                 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
5858                         }
5859                         break;
5860                 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
5861
5862                 if (val && val[0]) {
5863                         o_addQstr(output, val);
5864                 }
5865                 free(to_be_freed);
5866
5867                 /* Restore NULL'ed SPECIAL_VAR_SYMBOL.
5868                  * Do the check to avoid writing to a const string. */
5869                 if (*p != SPECIAL_VAR_SYMBOL)
5870                         *p = SPECIAL_VAR_SYMBOL;
5871
5872 #if ENABLE_HUSH_TICK
5873                 o_free(&subst_result);
5874 #endif
5875                 arg = ++p;
5876         } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
5877
5878         if (arg[0]) {
5879                 if (ended_in_ifs) {
5880                         o_addchr(output, '\0');
5881                         n = o_save_ptr(output, n);
5882                 }
5883                 debug_print_list("expand_vars_to_list[a]", output, n);
5884                 /* this part is literal, and it was already pre-quoted
5885                  * if needed (much earlier), do not use o_addQstr here! */
5886                 o_addstr_with_NUL(output, arg);
5887                 debug_print_list("expand_vars_to_list[b]", output, n);
5888         } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
5889          && !(cant_be_null & 0x80) /* and all vars were not quoted. */
5890         ) {
5891                 n--;
5892                 /* allow to reuse list[n] later without re-growth */
5893                 output->has_empty_slot = 1;
5894         } else {
5895                 o_addchr(output, '\0');
5896         }
5897
5898         return n;
5899 }
5900
5901 static char **expand_variables(char **argv, unsigned expflags)
5902 {
5903         int n;
5904         char **list;
5905         o_string output = NULL_O_STRING;
5906
5907         output.o_expflags = expflags;
5908
5909         n = 0;
5910         while (*argv) {
5911                 n = expand_vars_to_list(&output, n, *argv);
5912                 argv++;
5913         }
5914         debug_print_list("expand_variables", &output, n);
5915
5916         /* output.data (malloced in one block) gets returned in "list" */
5917         list = o_finalize_list(&output, n);
5918         debug_print_strings("expand_variables[1]", list);
5919         return list;
5920 }
5921
5922 static char **expand_strvec_to_strvec(char **argv)
5923 {
5924         return expand_variables(argv, EXP_FLAG_GLOB | EXP_FLAG_ESC_GLOB_CHARS);
5925 }
5926
5927 #if BASH_TEST2
5928 static char **expand_strvec_to_strvec_singleword_noglob(char **argv)
5929 {
5930         return expand_variables(argv, EXP_FLAG_SINGLEWORD);
5931 }
5932 #endif
5933
5934 /* Used for expansion of right hand of assignments,
5935  * $((...)), heredocs, variable espansion parts.
5936  *
5937  * NB: should NOT do globbing!
5938  * "export v=/bin/c*; env | grep ^v=" outputs "v=/bin/c*"
5939  */
5940 static char *expand_string_to_string(const char *str, int do_unbackslash)
5941 {
5942 #if !BASH_PATTERN_SUBST && !ENABLE_HUSH_CASE
5943         const int do_unbackslash = 1;
5944 #endif
5945         char *argv[2], **list;
5946
5947         debug_printf_expand("string_to_string<='%s'\n", str);
5948         /* This is generally an optimization, but it also
5949          * handles "", which otherwise trips over !list[0] check below.
5950          * (is this ever happens that we actually get str="" here?)
5951          */
5952         if (!strchr(str, SPECIAL_VAR_SYMBOL) && !strchr(str, '\\')) {
5953                 //TODO: Can use on strings with \ too, just unbackslash() them?
5954                 debug_printf_expand("string_to_string(fast)=>'%s'\n", str);
5955                 return xstrdup(str);
5956         }
5957
5958         argv[0] = (char*)str;
5959         argv[1] = NULL;
5960         list = expand_variables(argv, do_unbackslash
5961                         ? EXP_FLAG_ESC_GLOB_CHARS | EXP_FLAG_SINGLEWORD
5962                         : EXP_FLAG_SINGLEWORD
5963         );
5964         if (HUSH_DEBUG)
5965                 if (!list[0] || list[1])
5966                         bb_error_msg_and_die("BUG in varexp2");
5967         /* actually, just move string 2*sizeof(char*) bytes back */
5968         overlapping_strcpy((char*)list, list[0]);
5969         if (do_unbackslash)
5970                 unbackslash((char*)list);
5971         debug_printf_expand("string_to_string=>'%s'\n", (char*)list);
5972         return (char*)list;
5973 }
5974
5975 /* Used for "eval" builtin and case string */
5976 static char* expand_strvec_to_string(char **argv)
5977 {
5978         char **list;
5979
5980         list = expand_variables(argv, EXP_FLAG_SINGLEWORD);
5981         /* Convert all NULs to spaces */
5982         if (list[0]) {
5983                 int n = 1;
5984                 while (list[n]) {
5985                         if (HUSH_DEBUG)
5986                                 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
5987                                         bb_error_msg_and_die("BUG in varexp3");
5988                         /* bash uses ' ' regardless of $IFS contents */
5989                         list[n][-1] = ' ';
5990                         n++;
5991                 }
5992         }
5993         overlapping_strcpy((char*)list, list[0] ? list[0] : "");
5994         debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
5995         return (char*)list;
5996 }
5997
5998 static char **expand_assignments(char **argv, int count)
5999 {
6000         int i;
6001         char **p;
6002
6003         G.expanded_assignments = p = NULL;
6004         /* Expand assignments into one string each */
6005         for (i = 0; i < count; i++) {
6006                 G.expanded_assignments = p = add_string_to_strings(p, expand_string_to_string(argv[i], /*unbackslash:*/ 1));
6007         }
6008         G.expanded_assignments = NULL;
6009         return p;
6010 }
6011
6012
6013 static void switch_off_special_sigs(unsigned mask)
6014 {
6015         unsigned sig = 0;
6016         while ((mask >>= 1) != 0) {
6017                 sig++;
6018                 if (!(mask & 1))
6019                         continue;
6020 #if ENABLE_HUSH_TRAP
6021                 if (G_traps) {
6022                         if (G_traps[sig] && !G_traps[sig][0])
6023                                 /* trap is '', has to remain SIG_IGN */
6024                                 continue;
6025                         free(G_traps[sig]);
6026                         G_traps[sig] = NULL;
6027                 }
6028 #endif
6029                 /* We are here only if no trap or trap was not '' */
6030                 install_sighandler(sig, SIG_DFL);
6031         }
6032 }
6033
6034 #if BB_MMU
6035 /* never called */
6036 void re_execute_shell(char ***to_free, const char *s,
6037                 char *g_argv0, char **g_argv,
6038                 char **builtin_argv) NORETURN;
6039
6040 static void reset_traps_to_defaults(void)
6041 {
6042         /* This function is always called in a child shell
6043          * after fork (not vfork, NOMMU doesn't use this function).
6044          */
6045         IF_HUSH_TRAP(unsigned sig;)
6046         unsigned mask;
6047
6048         /* Child shells are not interactive.
6049          * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
6050          * Testcase: (while :; do :; done) + ^Z should background.
6051          * Same goes for SIGTERM, SIGHUP, SIGINT.
6052          */
6053         mask = (G.special_sig_mask & SPECIAL_INTERACTIVE_SIGS) | G_fatal_sig_mask;
6054         if (!G_traps && !mask)
6055                 return; /* already no traps and no special sigs */
6056
6057         /* Switch off special sigs */
6058         switch_off_special_sigs(mask);
6059 # if ENABLE_HUSH_JOB
6060         G_fatal_sig_mask = 0;
6061 # endif
6062         G.special_sig_mask &= ~SPECIAL_INTERACTIVE_SIGS;
6063         /* SIGQUIT,SIGCHLD and maybe SPECIAL_JOBSTOP_SIGS
6064          * remain set in G.special_sig_mask */
6065
6066 # if ENABLE_HUSH_TRAP
6067         if (!G_traps)
6068                 return;
6069
6070         /* Reset all sigs to default except ones with empty traps */
6071         for (sig = 0; sig < NSIG; sig++) {
6072                 if (!G_traps[sig])
6073                         continue; /* no trap: nothing to do */
6074                 if (!G_traps[sig][0])
6075                         continue; /* empty trap: has to remain SIG_IGN */
6076                 /* sig has non-empty trap, reset it: */
6077                 free(G_traps[sig]);
6078                 G_traps[sig] = NULL;
6079                 /* There is no signal for trap 0 (EXIT) */
6080                 if (sig == 0)
6081                         continue;
6082                 install_sighandler(sig, pick_sighandler(sig));
6083         }
6084 # endif
6085 }
6086
6087 #else /* !BB_MMU */
6088
6089 static void re_execute_shell(char ***to_free, const char *s,
6090                 char *g_argv0, char **g_argv,
6091                 char **builtin_argv) NORETURN;
6092 static void re_execute_shell(char ***to_free, const char *s,
6093                 char *g_argv0, char **g_argv,
6094                 char **builtin_argv)
6095 {
6096 # define NOMMU_HACK_FMT ("-$%x:%x:%x:%x:%x:%llx" IF_HUSH_LOOPS(":%x"))
6097         /* delims + 2 * (number of bytes in printed hex numbers) */
6098         char param_buf[sizeof(NOMMU_HACK_FMT) + 2 * (sizeof(int)*6 + sizeof(long long)*1)];
6099         char *heredoc_argv[4];
6100         struct variable *cur;
6101 # if ENABLE_HUSH_FUNCTIONS
6102         struct function *funcp;
6103 # endif
6104         char **argv, **pp;
6105         unsigned cnt;
6106         unsigned long long empty_trap_mask;
6107
6108         if (!g_argv0) { /* heredoc */
6109                 argv = heredoc_argv;
6110                 argv[0] = (char *) G.argv0_for_re_execing;
6111                 argv[1] = (char *) "-<";
6112                 argv[2] = (char *) s;
6113                 argv[3] = NULL;
6114                 pp = &argv[3]; /* used as pointer to empty environment */
6115                 goto do_exec;
6116         }
6117
6118         cnt = 0;
6119         pp = builtin_argv;
6120         if (pp) while (*pp++)
6121                 cnt++;
6122
6123         empty_trap_mask = 0;
6124         if (G_traps) {
6125                 int sig;
6126                 for (sig = 1; sig < NSIG; sig++) {
6127                         if (G_traps[sig] && !G_traps[sig][0])
6128                                 empty_trap_mask |= 1LL << sig;
6129                 }
6130         }
6131
6132         sprintf(param_buf, NOMMU_HACK_FMT
6133                         , (unsigned) G.root_pid
6134                         , (unsigned) G.root_ppid
6135                         , (unsigned) G.last_bg_pid
6136                         , (unsigned) G.last_exitcode
6137                         , cnt
6138                         , empty_trap_mask
6139                         IF_HUSH_LOOPS(, G.depth_of_loop)
6140                         );
6141 # undef NOMMU_HACK_FMT
6142         /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<etc...> <vars...> <funcs...>
6143          * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
6144          */
6145         cnt += 6;
6146         for (cur = G.top_var; cur; cur = cur->next) {
6147                 if (!cur->flg_export || cur->flg_read_only)
6148                         cnt += 2;
6149         }
6150 # if ENABLE_HUSH_FUNCTIONS
6151         for (funcp = G.top_func; funcp; funcp = funcp->next)
6152                 cnt += 3;
6153 # endif
6154         pp = g_argv;
6155         while (*pp++)
6156                 cnt++;
6157         *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
6158         *pp++ = (char *) G.argv0_for_re_execing;
6159         *pp++ = param_buf;
6160         for (cur = G.top_var; cur; cur = cur->next) {
6161                 if (strcmp(cur->varstr, hush_version_str) == 0)
6162                         continue;
6163                 if (cur->flg_read_only) {
6164                         *pp++ = (char *) "-R";
6165                         *pp++ = cur->varstr;
6166                 } else if (!cur->flg_export) {
6167                         *pp++ = (char *) "-V";
6168                         *pp++ = cur->varstr;
6169                 }
6170         }
6171 # if ENABLE_HUSH_FUNCTIONS
6172         for (funcp = G.top_func; funcp; funcp = funcp->next) {
6173                 *pp++ = (char *) "-F";
6174                 *pp++ = funcp->name;
6175                 *pp++ = funcp->body_as_string;
6176         }
6177 # endif
6178         /* We can pass activated traps here. Say, -Tnn:trap_string
6179          *
6180          * However, POSIX says that subshells reset signals with traps
6181          * to SIG_DFL.
6182          * I tested bash-3.2 and it not only does that with true subshells
6183          * of the form ( list ), but with any forked children shells.
6184          * I set trap "echo W" WINCH; and then tried:
6185          *
6186          * { echo 1; sleep 20; echo 2; } &
6187          * while true; do echo 1; sleep 20; echo 2; break; done &
6188          * true | { echo 1; sleep 20; echo 2; } | cat
6189          *
6190          * In all these cases sending SIGWINCH to the child shell
6191          * did not run the trap. If I add trap "echo V" WINCH;
6192          * _inside_ group (just before echo 1), it works.
6193          *
6194          * I conclude it means we don't need to pass active traps here.
6195          */
6196         *pp++ = (char *) "-c";
6197         *pp++ = (char *) s;
6198         if (builtin_argv) {
6199                 while (*++builtin_argv)
6200                         *pp++ = *builtin_argv;
6201                 *pp++ = (char *) "";
6202         }
6203         *pp++ = g_argv0;
6204         while (*g_argv)
6205                 *pp++ = *g_argv++;
6206         /* *pp = NULL; - is already there */
6207         pp = environ;
6208
6209  do_exec:
6210         debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
6211         /* Don't propagate SIG_IGN to the child */
6212         if (SPECIAL_JOBSTOP_SIGS != 0)
6213                 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
6214         execve(bb_busybox_exec_path, argv, pp);
6215         /* Fallback. Useful for init=/bin/hush usage etc */
6216         if (argv[0][0] == '/')
6217                 execve(argv[0], argv, pp);
6218         xfunc_error_retval = 127;
6219         bb_error_msg_and_die("can't re-execute the shell");
6220 }
6221 #endif  /* !BB_MMU */
6222
6223
6224 static int run_and_free_list(struct pipe *pi);
6225
6226 /* Executing from string: eval, sh -c '...'
6227  *          or from file: /etc/profile, . file, sh <script>, sh (intereactive)
6228  * end_trigger controls how often we stop parsing
6229  * NUL: parse all, execute, return
6230  * ';': parse till ';' or newline, execute, repeat till EOF
6231  */
6232 static void parse_and_run_stream(struct in_str *inp, int end_trigger)
6233 {
6234         /* Why we need empty flag?
6235          * An obscure corner case "false; ``; echo $?":
6236          * empty command in `` should still set $? to 0.
6237          * But we can't just set $? to 0 at the start,
6238          * this breaks "false; echo `echo $?`" case.
6239          */
6240         bool empty = 1;
6241         while (1) {
6242                 struct pipe *pipe_list;
6243
6244 #if ENABLE_HUSH_INTERACTIVE
6245                 if (end_trigger == ';')
6246                         inp->promptmode = 0; /* PS1 */
6247 #endif
6248                 pipe_list = parse_stream(NULL, inp, end_trigger);
6249                 if (!pipe_list || pipe_list == ERR_PTR) { /* EOF/error */
6250                         /* If we are in "big" script
6251                          * (not in `cmd` or something similar)...
6252                          */
6253                         if (pipe_list == ERR_PTR && end_trigger == ';') {
6254                                 /* Discard cached input (rest of line) */
6255                                 int ch = inp->last_char;
6256                                 while (ch != EOF && ch != '\n') {
6257                                         //bb_error_msg("Discarded:'%c'", ch);
6258                                         ch = i_getch(inp);
6259                                 }
6260                                 /* Force prompt */
6261                                 inp->p = NULL;
6262                                 /* This stream isn't empty */
6263                                 empty = 0;
6264                                 continue;
6265                         }
6266                         if (!pipe_list && empty)
6267                                 G.last_exitcode = 0;
6268                         break;
6269                 }
6270                 debug_print_tree(pipe_list, 0);
6271                 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
6272                 run_and_free_list(pipe_list);
6273                 empty = 0;
6274                 if (G_flag_return_in_progress == 1)
6275                         break;
6276         }
6277 }
6278
6279 static void parse_and_run_string(const char *s)
6280 {
6281         struct in_str input;
6282         setup_string_in_str(&input, s);
6283         parse_and_run_stream(&input, '\0');
6284 }
6285
6286 static void parse_and_run_file(FILE *f)
6287 {
6288         struct in_str input;
6289         setup_file_in_str(&input, f);
6290         parse_and_run_stream(&input, ';');
6291 }
6292
6293 #if ENABLE_HUSH_TICK
6294 static FILE *generate_stream_from_string(const char *s, pid_t *pid_p)
6295 {
6296         pid_t pid;
6297         int channel[2];
6298 # if !BB_MMU
6299         char **to_free = NULL;
6300 # endif
6301
6302         xpipe(channel);
6303         pid = BB_MMU ? xfork() : xvfork();
6304         if (pid == 0) { /* child */
6305                 disable_restore_tty_pgrp_on_exit();
6306                 /* Process substitution is not considered to be usual
6307                  * 'command execution'.
6308                  * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
6309                  */
6310                 bb_signals(0
6311                         + (1 << SIGTSTP)
6312                         + (1 << SIGTTIN)
6313                         + (1 << SIGTTOU)
6314                         , SIG_IGN);
6315                 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
6316                 close(channel[0]); /* NB: close _first_, then move fd! */
6317                 xmove_fd(channel[1], 1);
6318                 /* Prevent it from trying to handle ctrl-z etc */
6319                 IF_HUSH_JOB(G.run_list_level = 1;)
6320 # if ENABLE_HUSH_TRAP
6321                 /* Awful hack for `trap` or $(trap).
6322                  *
6323                  * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html
6324                  * contains an example where "trap" is executed in a subshell:
6325                  *
6326                  * save_traps=$(trap)
6327                  * ...
6328                  * eval "$save_traps"
6329                  *
6330                  * Standard does not say that "trap" in subshell shall print
6331                  * parent shell's traps. It only says that its output
6332                  * must have suitable form, but then, in the above example
6333                  * (which is not supposed to be normative), it implies that.
6334                  *
6335                  * bash (and probably other shell) does implement it
6336                  * (traps are reset to defaults, but "trap" still shows them),
6337                  * but as a result, "trap" logic is hopelessly messed up:
6338                  *
6339                  * # trap
6340                  * trap -- 'echo Ho' SIGWINCH  <--- we have a handler
6341                  * # (trap)        <--- trap is in subshell - no output (correct, traps are reset)
6342                  * # true | trap   <--- trap is in subshell - no output (ditto)
6343                  * # echo `true | trap`    <--- in subshell - output (but traps are reset!)
6344                  * trap -- 'echo Ho' SIGWINCH
6345                  * # echo `(trap)`         <--- in subshell in subshell - output
6346                  * trap -- 'echo Ho' SIGWINCH
6347                  * # echo `true | (trap)`  <--- in subshell in subshell in subshell - output!
6348                  * trap -- 'echo Ho' SIGWINCH
6349                  *
6350                  * The rules when to forget and when to not forget traps
6351                  * get really complex and nonsensical.
6352                  *
6353                  * Our solution: ONLY bare $(trap) or `trap` is special.
6354                  */
6355                 s = skip_whitespace(s);
6356                 if (is_prefixed_with(s, "trap")
6357                  && skip_whitespace(s + 4)[0] == '\0'
6358                 ) {
6359                         static const char *const argv[] = { NULL, NULL };
6360                         builtin_trap((char**)argv);
6361                         fflush_all(); /* important */
6362                         _exit(0);
6363                 }
6364 # endif
6365 # if BB_MMU
6366                 reset_traps_to_defaults();
6367                 parse_and_run_string(s);
6368                 _exit(G.last_exitcode);
6369 # else
6370         /* We re-execute after vfork on NOMMU. This makes this script safe:
6371          * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
6372          * huge=`cat BIG` # was blocking here forever
6373          * echo OK
6374          */
6375                 re_execute_shell(&to_free,
6376                                 s,
6377                                 G.global_argv[0],
6378                                 G.global_argv + 1,
6379                                 NULL);
6380 # endif
6381         }
6382
6383         /* parent */
6384         *pid_p = pid;
6385 # if ENABLE_HUSH_FAST
6386         G.count_SIGCHLD++;
6387 //bb_error_msg("[%d] fork in generate_stream_from_string:"
6388 //              " G.count_SIGCHLD:%d G.handled_SIGCHLD:%d",
6389 //              getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6390 # endif
6391         enable_restore_tty_pgrp_on_exit();
6392 # if !BB_MMU
6393         free(to_free);
6394 # endif
6395         close(channel[1]);
6396         return remember_FILE(xfdopen_for_read(channel[0]));
6397 }
6398
6399 /* Return code is exit status of the process that is run. */
6400 static int process_command_subs(o_string *dest, const char *s)
6401 {
6402         FILE *fp;
6403         struct in_str pipe_str;
6404         pid_t pid;
6405         int status, ch, eol_cnt;
6406
6407         fp = generate_stream_from_string(s, &pid);
6408
6409         /* Now send results of command back into original context */
6410         setup_file_in_str(&pipe_str, fp);
6411         eol_cnt = 0;
6412         while ((ch = i_getch(&pipe_str)) != EOF) {
6413                 if (ch == '\n') {
6414                         eol_cnt++;
6415                         continue;
6416                 }
6417                 while (eol_cnt) {
6418                         o_addchr(dest, '\n');
6419                         eol_cnt--;
6420                 }
6421                 o_addQchr(dest, ch);
6422         }
6423
6424         debug_printf("done reading from `cmd` pipe, closing it\n");
6425         fclose_and_forget(fp);
6426         /* We need to extract exitcode. Test case
6427          * "true; echo `sleep 1; false` $?"
6428          * should print 1 */
6429         safe_waitpid(pid, &status, 0);
6430         debug_printf("child exited. returning its exitcode:%d\n", WEXITSTATUS(status));
6431         return WEXITSTATUS(status);
6432 }
6433 #endif /* ENABLE_HUSH_TICK */
6434
6435
6436 static void setup_heredoc(struct redir_struct *redir)
6437 {
6438         struct fd_pair pair;
6439         pid_t pid;
6440         int len, written;
6441         /* the _body_ of heredoc (misleading field name) */
6442         const char *heredoc = redir->rd_filename;
6443         char *expanded;
6444 #if !BB_MMU
6445         char **to_free;
6446 #endif
6447
6448         expanded = NULL;
6449         if (!(redir->rd_dup & HEREDOC_QUOTED)) {
6450                 expanded = encode_then_expand_string(heredoc, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
6451                 if (expanded)
6452                         heredoc = expanded;
6453         }
6454         len = strlen(heredoc);
6455
6456         close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
6457         xpiped_pair(pair);
6458         xmove_fd(pair.rd, redir->rd_fd);
6459
6460         /* Try writing without forking. Newer kernels have
6461          * dynamically growing pipes. Must use non-blocking write! */
6462         ndelay_on(pair.wr);
6463         while (1) {
6464                 written = write(pair.wr, heredoc, len);
6465                 if (written <= 0)
6466                         break;
6467                 len -= written;
6468                 if (len == 0) {
6469                         close(pair.wr);
6470                         free(expanded);
6471                         return;
6472                 }
6473                 heredoc += written;
6474         }
6475         ndelay_off(pair.wr);
6476
6477         /* Okay, pipe buffer was not big enough */
6478         /* Note: we must not create a stray child (bastard? :)
6479          * for the unsuspecting parent process. Child creates a grandchild
6480          * and exits before parent execs the process which consumes heredoc
6481          * (that exec happens after we return from this function) */
6482 #if !BB_MMU
6483         to_free = NULL;
6484 #endif
6485         pid = xvfork();
6486         if (pid == 0) {
6487                 /* child */
6488                 disable_restore_tty_pgrp_on_exit();
6489                 pid = BB_MMU ? xfork() : xvfork();
6490                 if (pid != 0)
6491                         _exit(0);
6492                 /* grandchild */
6493                 close(redir->rd_fd); /* read side of the pipe */
6494 #if BB_MMU
6495                 full_write(pair.wr, heredoc, len); /* may loop or block */
6496                 _exit(0);
6497 #else
6498                 /* Delegate blocking writes to another process */
6499                 xmove_fd(pair.wr, STDOUT_FILENO);
6500                 re_execute_shell(&to_free, heredoc, NULL, NULL, NULL);
6501 #endif
6502         }
6503         /* parent */
6504 #if ENABLE_HUSH_FAST
6505         G.count_SIGCHLD++;
6506 //bb_error_msg("[%d] fork in setup_heredoc: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6507 #endif
6508         enable_restore_tty_pgrp_on_exit();
6509 #if !BB_MMU
6510         free(to_free);
6511 #endif
6512         close(pair.wr);
6513         free(expanded);
6514         wait(NULL); /* wait till child has died */
6515 }
6516
6517 /* fd: redirect wants this fd to be used (e.g. 3>file).
6518  * Move all conflicting internally used fds,
6519  * and remember them so that we can restore them later.
6520  */
6521 static int save_fds_on_redirect(int fd, int squirrel[3])
6522 {
6523         if (squirrel) {
6524                 /* Handle redirects of fds 0,1,2 */
6525
6526                 /* If we collide with an already moved stdio fd... */
6527                 if (fd == squirrel[0]) {
6528                         squirrel[0] = xdup_and_close(squirrel[0], F_DUPFD);
6529                         return 1;
6530                 }
6531                 if (fd == squirrel[1]) {
6532                         squirrel[1] = xdup_and_close(squirrel[1], F_DUPFD);
6533                         return 1;
6534                 }
6535                 if (fd == squirrel[2]) {
6536                         squirrel[2] = xdup_and_close(squirrel[2], F_DUPFD);
6537                         return 1;
6538                 }
6539                 /* If we are about to redirect stdio fd, and did not yet move it... */
6540                 if (fd <= 2 && squirrel[fd] < 0) {
6541                         /* We avoid taking stdio fds */
6542                         squirrel[fd] = fcntl(fd, F_DUPFD, 10);
6543                         if (squirrel[fd] < 0 && errno != EBADF)
6544                                 xfunc_die();
6545                         return 0; /* "we did not close fd" */
6546                 }
6547         }
6548
6549 #if ENABLE_HUSH_INTERACTIVE
6550         if (fd != 0 && fd == G.interactive_fd) {
6551                 G.interactive_fd = xdup_and_close(G.interactive_fd, F_DUPFD_CLOEXEC);
6552                 return 1;
6553         }
6554 #endif
6555
6556         /* Are we called from setup_redirects(squirrel==NULL)? Two cases:
6557          * (1) Redirect in a forked child. No need to save FILEs' fds,
6558          * we aren't going to use them anymore, ok to trash.
6559          * (2) "exec 3>FILE". Bummer. We can save FILEs' fds,
6560          * but how are we doing to use them?
6561          * "fileno(fd) = new_fd" can't be done.
6562          */
6563         if (!squirrel)
6564                 return 0;
6565
6566         return save_FILEs_on_redirect(fd);
6567 }
6568
6569 static void restore_redirects(int squirrel[3])
6570 {
6571         int i, fd;
6572         for (i = 0; i <= 2; i++) {
6573                 fd = squirrel[i];
6574                 if (fd != -1) {
6575                         /* We simply die on error */
6576                         xmove_fd(fd, i);
6577                 }
6578         }
6579
6580         /* Moved G.interactive_fd stays on new fd, not doing anything for it */
6581
6582         restore_redirected_FILEs();
6583 }
6584
6585 /* squirrel != NULL means we squirrel away copies of stdin, stdout,
6586  * and stderr if they are redirected. */
6587 static int setup_redirects(struct command *prog, int squirrel[])
6588 {
6589         int openfd, mode;
6590         struct redir_struct *redir;
6591
6592         for (redir = prog->redirects; redir; redir = redir->next) {
6593                 if (redir->rd_type == REDIRECT_HEREDOC2) {
6594                         /* "rd_fd<<HERE" case */
6595                         save_fds_on_redirect(redir->rd_fd, squirrel);
6596                         /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
6597                          * of the heredoc */
6598                         debug_printf_parse("set heredoc '%s'\n",
6599                                         redir->rd_filename);
6600                         setup_heredoc(redir);
6601                         continue;
6602                 }
6603
6604                 if (redir->rd_dup == REDIRFD_TO_FILE) {
6605                         /* "rd_fd<*>file" case (<*> is <,>,>>,<>) */
6606                         char *p;
6607                         if (redir->rd_filename == NULL) {
6608                                 /*
6609                                  * Examples:
6610                                  * "cmd >" (no filename)
6611                                  * "cmd > <file" (2nd redirect starts too early)
6612                                  */
6613                                 die_if_script("syntax error: %s", "invalid redirect");
6614                                 continue;
6615                         }
6616                         mode = redir_table[redir->rd_type].mode;
6617                         p = expand_string_to_string(redir->rd_filename, /*unbackslash:*/ 1);
6618                         openfd = open_or_warn(p, mode);
6619                         free(p);
6620                         if (openfd < 0) {
6621                                 /* Error message from open_or_warn can be lost
6622                                  * if stderr has been redirected, but bash
6623                                  * and ash both lose it as well
6624                                  * (though zsh doesn't!)
6625                                  */
6626                                 return 1;
6627                         }
6628                 } else {
6629                         /* "rd_fd<*>rd_dup" or "rd_fd<*>-" cases */
6630                         openfd = redir->rd_dup;
6631                 }
6632
6633                 if (openfd != redir->rd_fd) {
6634                         int closed = save_fds_on_redirect(redir->rd_fd, squirrel);
6635                         if (openfd == REDIRFD_CLOSE) {
6636                                 /* "rd_fd >&-" means "close me" */
6637                                 if (!closed) {
6638                                         /* ^^^ optimization: saving may already
6639                                          * have closed it. If not... */
6640                                         close(redir->rd_fd);
6641                                 }
6642                         } else {
6643                                 xdup2(openfd, redir->rd_fd);
6644                                 if (redir->rd_dup == REDIRFD_TO_FILE)
6645                                         /* "rd_fd > FILE" */
6646                                         close(openfd);
6647                                 /* else: "rd_fd > rd_dup" */
6648                         }
6649                 }
6650         }
6651         return 0;
6652 }
6653
6654 static char *find_in_path(const char *arg)
6655 {
6656         char *ret = NULL;
6657         const char *PATH = get_local_var_value("PATH");
6658
6659         if (!PATH)
6660                 return NULL;
6661
6662         while (1) {
6663                 const char *end = strchrnul(PATH, ':');
6664                 int sz = end - PATH; /* must be int! */
6665
6666                 free(ret);
6667                 if (sz != 0) {
6668                         ret = xasprintf("%.*s/%s", sz, PATH, arg);
6669                 } else {
6670                         /* We have xxx::yyyy in $PATH,
6671                          * it means "use current dir" */
6672                         ret = xstrdup(arg);
6673                 }
6674                 if (access(ret, F_OK) == 0)
6675                         break;
6676
6677                 if (*end == '\0') {
6678                         free(ret);
6679                         return NULL;
6680                 }
6681                 PATH = end + 1;
6682         }
6683
6684         return ret;
6685 }
6686
6687 static const struct built_in_command *find_builtin_helper(const char *name,
6688                 const struct built_in_command *x,
6689                 const struct built_in_command *end)
6690 {
6691         while (x != end) {
6692                 if (strcmp(name, x->b_cmd) != 0) {
6693                         x++;
6694                         continue;
6695                 }
6696                 debug_printf_exec("found builtin '%s'\n", name);
6697                 return x;
6698         }
6699         return NULL;
6700 }
6701 static const struct built_in_command *find_builtin1(const char *name)
6702 {
6703         return find_builtin_helper(name, bltins1, &bltins1[ARRAY_SIZE(bltins1)]);
6704 }
6705 static const struct built_in_command *find_builtin(const char *name)
6706 {
6707         const struct built_in_command *x = find_builtin1(name);
6708         if (x)
6709                 return x;
6710         return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]);
6711 }
6712
6713 #if ENABLE_HUSH_FUNCTIONS
6714 static struct function **find_function_slot(const char *name)
6715 {
6716         struct function **funcpp = &G.top_func;
6717         while (*funcpp) {
6718                 if (strcmp(name, (*funcpp)->name) == 0) {
6719                         break;
6720                 }
6721                 funcpp = &(*funcpp)->next;
6722         }
6723         return funcpp;
6724 }
6725
6726 static const struct function *find_function(const char *name)
6727 {
6728         const struct function *funcp = *find_function_slot(name);
6729         if (funcp)
6730                 debug_printf_exec("found function '%s'\n", name);
6731         return funcp;
6732 }
6733
6734 /* Note: takes ownership on name ptr */
6735 static struct function *new_function(char *name)
6736 {
6737         struct function **funcpp = find_function_slot(name);
6738         struct function *funcp = *funcpp;
6739
6740         if (funcp != NULL) {
6741                 struct command *cmd = funcp->parent_cmd;
6742                 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
6743                 if (!cmd) {
6744                         debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
6745                         free(funcp->name);
6746                         /* Note: if !funcp->body, do not free body_as_string!
6747                          * This is a special case of "-F name body" function:
6748                          * body_as_string was not malloced! */
6749                         if (funcp->body) {
6750                                 free_pipe_list(funcp->body);
6751 # if !BB_MMU
6752                                 free(funcp->body_as_string);
6753 # endif
6754                         }
6755                 } else {
6756                         debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
6757                         cmd->argv[0] = funcp->name;
6758                         cmd->group = funcp->body;
6759 # if !BB_MMU
6760                         cmd->group_as_string = funcp->body_as_string;
6761 # endif
6762                 }
6763         } else {
6764                 debug_printf_exec("remembering new function '%s'\n", name);
6765                 funcp = *funcpp = xzalloc(sizeof(*funcp));
6766                 /*funcp->next = NULL;*/
6767         }
6768
6769         funcp->name = name;
6770         return funcp;
6771 }
6772
6773 # if ENABLE_HUSH_UNSET
6774 static void unset_func(const char *name)
6775 {
6776         struct function **funcpp = find_function_slot(name);
6777         struct function *funcp = *funcpp;
6778
6779         if (funcp != NULL) {
6780                 debug_printf_exec("freeing function '%s'\n", funcp->name);
6781                 *funcpp = funcp->next;
6782                 /* funcp is unlinked now, deleting it.
6783                  * Note: if !funcp->body, the function was created by
6784                  * "-F name body", do not free ->body_as_string
6785                  * and ->name as they were not malloced. */
6786                 if (funcp->body) {
6787                         free_pipe_list(funcp->body);
6788                         free(funcp->name);
6789 #  if !BB_MMU
6790                         free(funcp->body_as_string);
6791 #  endif
6792                 }
6793                 free(funcp);
6794         }
6795 }
6796 # endif
6797
6798 # if BB_MMU
6799 #define exec_function(to_free, funcp, argv) \
6800         exec_function(funcp, argv)
6801 # endif
6802 static void exec_function(char ***to_free,
6803                 const struct function *funcp,
6804                 char **argv) NORETURN;
6805 static void exec_function(char ***to_free,
6806                 const struct function *funcp,
6807                 char **argv)
6808 {
6809 # if BB_MMU
6810         int n;
6811
6812         argv[0] = G.global_argv[0];
6813         G.global_argv = argv;
6814         G.global_argc = n = 1 + string_array_len(argv + 1);
6815         /* On MMU, funcp->body is always non-NULL */
6816         n = run_list(funcp->body);
6817         fflush_all();
6818         _exit(n);
6819 # else
6820         re_execute_shell(to_free,
6821                         funcp->body_as_string,
6822                         G.global_argv[0],
6823                         argv + 1,
6824                         NULL);
6825 # endif
6826 }
6827
6828 static int run_function(const struct function *funcp, char **argv)
6829 {
6830         int rc;
6831         save_arg_t sv;
6832         smallint sv_flg;
6833
6834         save_and_replace_G_args(&sv, argv);
6835
6836         /* "we are in function, ok to use return" */
6837         sv_flg = G_flag_return_in_progress;
6838         G_flag_return_in_progress = -1;
6839 # if ENABLE_HUSH_LOCAL
6840         G.func_nest_level++;
6841 # endif
6842
6843         /* On MMU, funcp->body is always non-NULL */
6844 # if !BB_MMU
6845         if (!funcp->body) {
6846                 /* Function defined by -F */
6847                 parse_and_run_string(funcp->body_as_string);
6848                 rc = G.last_exitcode;
6849         } else
6850 # endif
6851         {
6852                 rc = run_list(funcp->body);
6853         }
6854
6855 # if ENABLE_HUSH_LOCAL
6856         {
6857                 struct variable *var;
6858                 struct variable **var_pp;
6859
6860                 var_pp = &G.top_var;
6861                 while ((var = *var_pp) != NULL) {
6862                         if (var->func_nest_level < G.func_nest_level) {
6863                                 var_pp = &var->next;
6864                                 continue;
6865                         }
6866                         /* Unexport */
6867                         if (var->flg_export)
6868                                 bb_unsetenv(var->varstr);
6869                         /* Remove from global list */
6870                         *var_pp = var->next;
6871                         /* Free */
6872                         if (!var->max_len)
6873                                 free(var->varstr);
6874                         free(var);
6875                 }
6876                 G.func_nest_level--;
6877         }
6878 # endif
6879         G_flag_return_in_progress = sv_flg;
6880
6881         restore_G_args(&sv, argv);
6882
6883         return rc;
6884 }
6885 #endif /* ENABLE_HUSH_FUNCTIONS */
6886
6887
6888 #if BB_MMU
6889 #define exec_builtin(to_free, x, argv) \
6890         exec_builtin(x, argv)
6891 #else
6892 #define exec_builtin(to_free, x, argv) \
6893         exec_builtin(to_free, argv)
6894 #endif
6895 static void exec_builtin(char ***to_free,
6896                 const struct built_in_command *x,
6897                 char **argv) NORETURN;
6898 static void exec_builtin(char ***to_free,
6899                 const struct built_in_command *x,
6900                 char **argv)
6901 {
6902 #if BB_MMU
6903         int rcode;
6904         fflush_all();
6905         rcode = x->b_function(argv);
6906         fflush_all();
6907         _exit(rcode);
6908 #else
6909         fflush_all();
6910         /* On NOMMU, we must never block!
6911          * Example: { sleep 99 | read line; } & echo Ok
6912          */
6913         re_execute_shell(to_free,
6914                         argv[0],
6915                         G.global_argv[0],
6916                         G.global_argv + 1,
6917                         argv);
6918 #endif
6919 }
6920
6921
6922 static void execvp_or_die(char **argv) NORETURN;
6923 static void execvp_or_die(char **argv)
6924 {
6925         int e;
6926         debug_printf_exec("execing '%s'\n", argv[0]);
6927         /* Don't propagate SIG_IGN to the child */
6928         if (SPECIAL_JOBSTOP_SIGS != 0)
6929                 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
6930         execvp(argv[0], argv);
6931         e = 2;
6932         if (errno == EACCES) e = 126;
6933         if (errno == ENOENT) e = 127;
6934         bb_perror_msg("can't execute '%s'", argv[0]);
6935         _exit(e);
6936 }
6937
6938 #if ENABLE_HUSH_MODE_X
6939 static void dump_cmd_in_x_mode(char **argv)
6940 {
6941         if (G_x_mode && argv) {
6942                 /* We want to output the line in one write op */
6943                 char *buf, *p;
6944                 int len;
6945                 int n;
6946
6947                 len = 3;
6948                 n = 0;
6949                 while (argv[n])
6950                         len += strlen(argv[n++]) + 1;
6951                 buf = xmalloc(len);
6952                 buf[0] = '+';
6953                 p = buf + 1;
6954                 n = 0;
6955                 while (argv[n])
6956                         p += sprintf(p, " %s", argv[n++]);
6957                 *p++ = '\n';
6958                 *p = '\0';
6959                 fputs(buf, stderr);
6960                 free(buf);
6961         }
6962 }
6963 #else
6964 # define dump_cmd_in_x_mode(argv) ((void)0)
6965 #endif
6966
6967 #if BB_MMU
6968 #define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
6969         pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
6970 #define pseudo_exec(nommu_save, command, argv_expanded) \
6971         pseudo_exec(command, argv_expanded)
6972 #endif
6973
6974 /* Called after [v]fork() in run_pipe, or from builtin_exec.
6975  * Never returns.
6976  * Don't exit() here.  If you don't exec, use _exit instead.
6977  * The at_exit handlers apparently confuse the calling process,
6978  * in particular stdin handling. Not sure why? -- because of vfork! (vda)
6979  */
6980 static void pseudo_exec_argv(nommu_save_t *nommu_save,
6981                 char **argv, int assignment_cnt,
6982                 char **argv_expanded) NORETURN;
6983 static NOINLINE void pseudo_exec_argv(nommu_save_t *nommu_save,
6984                 char **argv, int assignment_cnt,
6985                 char **argv_expanded)
6986 {
6987         char **new_env;
6988
6989         new_env = expand_assignments(argv, assignment_cnt);
6990         dump_cmd_in_x_mode(new_env);
6991
6992         if (!argv[assignment_cnt]) {
6993                 /* Case when we are here: ... | var=val | ...
6994                  * (note that we do not exit early, i.e., do not optimize out
6995                  * expand_assignments(): think about ... | var=`sleep 1` | ...
6996                  */
6997                 free_strings(new_env);
6998                 _exit(EXIT_SUCCESS);
6999         }
7000
7001 #if BB_MMU
7002         set_vars_and_save_old(new_env);
7003         free(new_env); /* optional */
7004         /* we can also destroy set_vars_and_save_old's return value,
7005          * to save memory */
7006 #else
7007         nommu_save->new_env = new_env;
7008         nommu_save->old_vars = set_vars_and_save_old(new_env);
7009 #endif
7010
7011         if (argv_expanded) {
7012                 argv = argv_expanded;
7013         } else {
7014                 argv = expand_strvec_to_strvec(argv + assignment_cnt);
7015 #if !BB_MMU
7016                 nommu_save->argv = argv;
7017 #endif
7018         }
7019         dump_cmd_in_x_mode(argv);
7020
7021 #if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
7022         if (strchr(argv[0], '/') != NULL)
7023                 goto skip;
7024 #endif
7025
7026         /* Check if the command matches any of the builtins.
7027          * Depending on context, this might be redundant.  But it's
7028          * easier to waste a few CPU cycles than it is to figure out
7029          * if this is one of those cases.
7030          */
7031         {
7032                 /* On NOMMU, it is more expensive to re-execute shell
7033                  * just in order to run echo or test builtin.
7034                  * It's better to skip it here and run corresponding
7035                  * non-builtin later. */
7036                 const struct built_in_command *x;
7037                 x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]);
7038                 if (x) {
7039                         exec_builtin(&nommu_save->argv_from_re_execing, x, argv);
7040                 }
7041         }
7042 #if ENABLE_HUSH_FUNCTIONS
7043         /* Check if the command matches any functions */
7044         {
7045                 const struct function *funcp = find_function(argv[0]);
7046                 if (funcp) {
7047                         exec_function(&nommu_save->argv_from_re_execing, funcp, argv);
7048                 }
7049         }
7050 #endif
7051
7052 #if ENABLE_FEATURE_SH_STANDALONE
7053         /* Check if the command matches any busybox applets */
7054         {
7055                 int a = find_applet_by_name(argv[0]);
7056                 if (a >= 0) {
7057 # if BB_MMU /* see above why on NOMMU it is not allowed */
7058                         if (APPLET_IS_NOEXEC(a)) {
7059                                 /* Do not leak open fds from opened script files etc */
7060                                 close_all_FILE_list();
7061                                 debug_printf_exec("running applet '%s'\n", argv[0]);
7062                                 run_applet_no_and_exit(a, argv);
7063                         }
7064 # endif
7065                         /* Re-exec ourselves */
7066                         debug_printf_exec("re-execing applet '%s'\n", argv[0]);
7067                         /* Don't propagate SIG_IGN to the child */
7068                         if (SPECIAL_JOBSTOP_SIGS != 0)
7069                                 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
7070                         execv(bb_busybox_exec_path, argv);
7071                         /* If they called chroot or otherwise made the binary no longer
7072                          * executable, fall through */
7073                 }
7074         }
7075 #endif
7076
7077 #if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
7078  skip:
7079 #endif
7080         execvp_or_die(argv);
7081 }
7082
7083 /* Called after [v]fork() in run_pipe
7084  */
7085 static void pseudo_exec(nommu_save_t *nommu_save,
7086                 struct command *command,
7087                 char **argv_expanded) NORETURN;
7088 static void pseudo_exec(nommu_save_t *nommu_save,
7089                 struct command *command,
7090                 char **argv_expanded)
7091 {
7092         if (command->argv) {
7093                 pseudo_exec_argv(nommu_save, command->argv,
7094                                 command->assignment_cnt, argv_expanded);
7095         }
7096
7097         if (command->group) {
7098                 /* Cases when we are here:
7099                  * ( list )
7100                  * { list } &
7101                  * ... | ( list ) | ...
7102                  * ... | { list } | ...
7103                  */
7104 #if BB_MMU
7105                 int rcode;
7106                 debug_printf_exec("pseudo_exec: run_list\n");
7107                 reset_traps_to_defaults();
7108                 rcode = run_list(command->group);
7109                 /* OK to leak memory by not calling free_pipe_list,
7110                  * since this process is about to exit */
7111                 _exit(rcode);
7112 #else
7113                 re_execute_shell(&nommu_save->argv_from_re_execing,
7114                                 command->group_as_string,
7115                                 G.global_argv[0],
7116                                 G.global_argv + 1,
7117                                 NULL);
7118 #endif
7119         }
7120
7121         /* Case when we are here: ... | >file */
7122         debug_printf_exec("pseudo_exec'ed null command\n");
7123         _exit(EXIT_SUCCESS);
7124 }
7125
7126 #if ENABLE_HUSH_JOB
7127 static const char *get_cmdtext(struct pipe *pi)
7128 {
7129         char **argv;
7130         char *p;
7131         int len;
7132
7133         /* This is subtle. ->cmdtext is created only on first backgrounding.
7134          * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
7135          * On subsequent bg argv is trashed, but we won't use it */
7136         if (pi->cmdtext)
7137                 return pi->cmdtext;
7138
7139         argv = pi->cmds[0].argv;
7140         if (!argv) {
7141                 pi->cmdtext = xzalloc(1);
7142                 return pi->cmdtext;
7143         }
7144         len = 0;
7145         do {
7146                 len += strlen(*argv) + 1;
7147         } while (*++argv);
7148         p = xmalloc(len);
7149         pi->cmdtext = p;
7150         argv = pi->cmds[0].argv;
7151         do {
7152                 p = stpcpy(p, *argv);
7153                 *p++ = ' ';
7154         } while (*++argv);
7155         p[-1] = '\0';
7156         return pi->cmdtext;
7157 }
7158
7159 static void insert_bg_job(struct pipe *pi)
7160 {
7161         struct pipe *job, **jobp;
7162         int i;
7163
7164         /* Linear search for the ID of the job to use */
7165         pi->jobid = 1;
7166         for (job = G.job_list; job; job = job->next)
7167                 if (job->jobid >= pi->jobid)
7168                         pi->jobid = job->jobid + 1;
7169
7170         /* Add job to the list of running jobs */
7171         jobp = &G.job_list;
7172         while ((job = *jobp) != NULL)
7173                 jobp = &job->next;
7174         job = *jobp = xmalloc(sizeof(*job));
7175
7176         *job = *pi; /* physical copy */
7177         job->next = NULL;
7178         job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
7179         /* Cannot copy entire pi->cmds[] vector! This causes double frees */
7180         for (i = 0; i < pi->num_cmds; i++) {
7181                 job->cmds[i].pid = pi->cmds[i].pid;
7182                 /* all other fields are not used and stay zero */
7183         }
7184         job->cmdtext = xstrdup(get_cmdtext(pi));
7185
7186         if (G_interactive_fd)
7187                 printf("[%u] %u %s\n", job->jobid, (unsigned)job->cmds[0].pid, job->cmdtext);
7188         G.last_jobid = job->jobid;
7189 }
7190
7191 static void remove_bg_job(struct pipe *pi)
7192 {
7193         struct pipe *prev_pipe;
7194
7195         if (pi == G.job_list) {
7196                 G.job_list = pi->next;
7197         } else {
7198                 prev_pipe = G.job_list;
7199                 while (prev_pipe->next != pi)
7200                         prev_pipe = prev_pipe->next;
7201                 prev_pipe->next = pi->next;
7202         }
7203         if (G.job_list)
7204                 G.last_jobid = G.job_list->jobid;
7205         else
7206                 G.last_jobid = 0;
7207 }
7208
7209 /* Remove a backgrounded job */
7210 static void delete_finished_bg_job(struct pipe *pi)
7211 {
7212         remove_bg_job(pi);
7213         free_pipe(pi);
7214 }
7215 #endif /* JOB */
7216
7217 static int job_exited_or_stopped(struct pipe *pi)
7218 {
7219         int rcode, i;
7220
7221         if (pi->alive_cmds != pi->stopped_cmds)
7222                 return -1;
7223
7224         /* All processes in fg pipe have exited or stopped */
7225         rcode = 0;
7226         i = pi->num_cmds;
7227         while (--i >= 0) {
7228                 rcode = pi->cmds[i].cmd_exitcode;
7229                 /* usually last process gives overall exitstatus,
7230                  * but with "set -o pipefail", last *failed* process does */
7231                 if (G.o_opt[OPT_O_PIPEFAIL] == 0 || rcode != 0)
7232                         break;
7233         }
7234         IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7235         return rcode;
7236 }
7237
7238 static int process_wait_result(struct pipe *fg_pipe, pid_t childpid, int status)
7239 {
7240 #if ENABLE_HUSH_JOB
7241         struct pipe *pi;
7242 #endif
7243         int i, dead;
7244
7245         dead = WIFEXITED(status) || WIFSIGNALED(status);
7246
7247 #if DEBUG_JOBS
7248         if (WIFSTOPPED(status))
7249                 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
7250                                 childpid, WSTOPSIG(status), WEXITSTATUS(status));
7251         if (WIFSIGNALED(status))
7252                 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
7253                                 childpid, WTERMSIG(status), WEXITSTATUS(status));
7254         if (WIFEXITED(status))
7255                 debug_printf_jobs("pid %d exited, exitcode %d\n",
7256                                 childpid, WEXITSTATUS(status));
7257 #endif
7258         /* Were we asked to wait for a fg pipe? */
7259         if (fg_pipe) {
7260                 i = fg_pipe->num_cmds;
7261
7262                 while (--i >= 0) {
7263                         int rcode;
7264
7265                         debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
7266                         if (fg_pipe->cmds[i].pid != childpid)
7267                                 continue;
7268                         if (dead) {
7269                                 int ex;
7270                                 fg_pipe->cmds[i].pid = 0;
7271                                 fg_pipe->alive_cmds--;
7272                                 ex = WEXITSTATUS(status);
7273                                 /* bash prints killer signal's name for *last*
7274                                  * process in pipe (prints just newline for SIGINT/SIGPIPE).
7275                                  * Mimic this. Example: "sleep 5" + (^\ or kill -QUIT)
7276                                  */
7277                                 if (WIFSIGNALED(status)) {
7278                                         int sig = WTERMSIG(status);
7279                                         if (i == fg_pipe->num_cmds-1)
7280                                                 /* TODO: use strsignal() instead for bash compat? but that's bloat... */
7281                                                 puts(sig == SIGINT || sig == SIGPIPE ? "" : get_signame(sig));
7282                                         /* TODO: if (WCOREDUMP(status)) + " (core dumped)"; */
7283                                         /* TODO: MIPS has 128 sigs (1..128), what if sig==128 here?
7284                                          * Maybe we need to use sig | 128? */
7285                                         ex = sig + 128;
7286                                 }
7287                                 fg_pipe->cmds[i].cmd_exitcode = ex;
7288                         } else {
7289                                 fg_pipe->stopped_cmds++;
7290                         }
7291                         debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
7292                                         fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
7293                         rcode = job_exited_or_stopped(fg_pipe);
7294                         if (rcode >= 0) {
7295 /* Note: *non-interactive* bash does not continue if all processes in fg pipe
7296  * are stopped. Testcase: "cat | cat" in a script (not on command line!)
7297  * and "killall -STOP cat" */
7298                                 if (G_interactive_fd) {
7299 #if ENABLE_HUSH_JOB
7300                                         if (fg_pipe->alive_cmds != 0)
7301                                                 insert_bg_job(fg_pipe);
7302 #endif
7303                                         return rcode;
7304                                 }
7305                                 if (fg_pipe->alive_cmds == 0)
7306                                         return rcode;
7307                         }
7308                         /* There are still running processes in the fg_pipe */
7309                         return -1;
7310                 }
7311                 /* It wasn't in fg_pipe, look for process in bg pipes */
7312         }
7313
7314 #if ENABLE_HUSH_JOB
7315         /* We were asked to wait for bg or orphaned children */
7316         /* No need to remember exitcode in this case */
7317         for (pi = G.job_list; pi; pi = pi->next) {
7318                 for (i = 0; i < pi->num_cmds; i++) {
7319                         if (pi->cmds[i].pid == childpid)
7320                                 goto found_pi_and_prognum;
7321                 }
7322         }
7323         /* Happens when shell is used as init process (init=/bin/sh) */
7324         debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
7325         return -1; /* this wasn't a process from fg_pipe */
7326
7327  found_pi_and_prognum:
7328         if (dead) {
7329                 /* child exited */
7330                 pi->cmds[i].pid = 0;
7331                 pi->cmds[i].cmd_exitcode = WEXITSTATUS(status);
7332                 if (WIFSIGNALED(status))
7333                         pi->cmds[i].cmd_exitcode = 128 + WTERMSIG(status);
7334                 pi->alive_cmds--;
7335                 if (!pi->alive_cmds) {
7336                         if (G_interactive_fd)
7337                                 printf(JOB_STATUS_FORMAT, pi->jobid,
7338                                                 "Done", pi->cmdtext);
7339                         delete_finished_bg_job(pi);
7340                 }
7341         } else {
7342                 /* child stopped */
7343                 pi->stopped_cmds++;
7344         }
7345 #endif
7346         return -1; /* this wasn't a process from fg_pipe */
7347 }
7348
7349 /* Check to see if any processes have exited -- if they have,
7350  * figure out why and see if a job has completed.
7351  *
7352  * If non-NULL fg_pipe: wait for its completion or stop.
7353  * Return its exitcode or zero if stopped.
7354  *
7355  * Alternatively (fg_pipe == NULL, waitfor_pid != 0):
7356  * waitpid(WNOHANG), if waitfor_pid exits or stops, return exitcode+1,
7357  * else return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for)
7358  * or 0 if no children changed status.
7359  *
7360  * Alternatively (fg_pipe == NULL, waitfor_pid == 0),
7361  * return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for)
7362  * or 0 if no children changed status.
7363  */
7364 static int checkjobs(struct pipe *fg_pipe, pid_t waitfor_pid)
7365 {
7366         int attributes;
7367         int status;
7368         int rcode = 0;
7369
7370         debug_printf_jobs("checkjobs %p\n", fg_pipe);
7371
7372         attributes = WUNTRACED;
7373         if (fg_pipe == NULL)
7374                 attributes |= WNOHANG;
7375
7376         errno = 0;
7377 #if ENABLE_HUSH_FAST
7378         if (G.handled_SIGCHLD == G.count_SIGCHLD) {
7379 //bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p",
7380 //getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe);
7381                 /* There was neither fork nor SIGCHLD since last waitpid */
7382                 /* Avoid doing waitpid syscall if possible */
7383                 if (!G.we_have_children) {
7384                         errno = ECHILD;
7385                         return -1;
7386                 }
7387                 if (fg_pipe == NULL) { /* is WNOHANG set? */
7388                         /* We have children, but they did not exit
7389                          * or stop yet (we saw no SIGCHLD) */
7390                         return 0;
7391                 }
7392                 /* else: !WNOHANG, waitpid will block, can't short-circuit */
7393         }
7394 #endif
7395
7396 /* Do we do this right?
7397  * bash-3.00# sleep 20 | false
7398  * <ctrl-Z pressed>
7399  * [3]+  Stopped          sleep 20 | false
7400  * bash-3.00# echo $?
7401  * 1   <========== bg pipe is not fully done, but exitcode is already known!
7402  * [hush 1.14.0: yes we do it right]
7403  */
7404         while (1) {
7405                 pid_t childpid;
7406 #if ENABLE_HUSH_FAST
7407                 int i;
7408                 i = G.count_SIGCHLD;
7409 #endif
7410                 childpid = waitpid(-1, &status, attributes);
7411                 if (childpid <= 0) {
7412                         if (childpid && errno != ECHILD)
7413                                 bb_perror_msg("waitpid");
7414 #if ENABLE_HUSH_FAST
7415                         else { /* Until next SIGCHLD, waitpid's are useless */
7416                                 G.we_have_children = (childpid == 0);
7417                                 G.handled_SIGCHLD = i;
7418 //bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
7419                         }
7420 #endif
7421                         /* ECHILD (no children), or 0 (no change in children status) */
7422                         rcode = childpid;
7423                         break;
7424                 }
7425                 rcode = process_wait_result(fg_pipe, childpid, status);
7426                 if (rcode >= 0) {
7427                         /* fg_pipe exited or stopped */
7428                         break;
7429                 }
7430                 if (childpid == waitfor_pid) {
7431                         debug_printf_exec("childpid==waitfor_pid:%d status:0x%08x\n", childpid, status);
7432                         rcode = WEXITSTATUS(status);
7433                         if (WIFSIGNALED(status))
7434                                 rcode = 128 + WTERMSIG(status);
7435                         if (WIFSTOPPED(status))
7436                                 /* bash: "cmd & wait $!" and cmd stops: $? = 128 + stopsig */
7437                                 rcode = 128 + WSTOPSIG(status);
7438                         rcode++;
7439                         break; /* "wait PID" called us, give it exitcode+1 */
7440                 }
7441                 /* This wasn't one of our processes, or */
7442                 /* fg_pipe still has running processes, do waitpid again */
7443         } /* while (waitpid succeeds)... */
7444
7445         return rcode;
7446 }
7447
7448 #if ENABLE_HUSH_JOB
7449 static int checkjobs_and_fg_shell(struct pipe *fg_pipe)
7450 {
7451         pid_t p;
7452         int rcode = checkjobs(fg_pipe, 0 /*(no pid to wait for)*/);
7453         if (G_saved_tty_pgrp) {
7454                 /* Job finished, move the shell to the foreground */
7455                 p = getpgrp(); /* our process group id */
7456                 debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p);
7457                 tcsetpgrp(G_interactive_fd, p);
7458         }
7459         return rcode;
7460 }
7461 #endif
7462
7463 /* Start all the jobs, but don't wait for anything to finish.
7464  * See checkjobs().
7465  *
7466  * Return code is normally -1, when the caller has to wait for children
7467  * to finish to determine the exit status of the pipe.  If the pipe
7468  * is a simple builtin command, however, the action is done by the
7469  * time run_pipe returns, and the exit code is provided as the
7470  * return value.
7471  *
7472  * Returns -1 only if started some children. IOW: we have to
7473  * mask out retvals of builtins etc with 0xff!
7474  *
7475  * The only case when we do not need to [v]fork is when the pipe
7476  * is single, non-backgrounded, non-subshell command. Examples:
7477  * cmd ; ...   { list } ; ...
7478  * cmd && ...  { list } && ...
7479  * cmd || ...  { list } || ...
7480  * If it is, then we can run cmd as a builtin, NOFORK,
7481  * or (if SH_STANDALONE) an applet, and we can run the { list }
7482  * with run_list. If it isn't one of these, we fork and exec cmd.
7483  *
7484  * Cases when we must fork:
7485  * non-single:   cmd | cmd
7486  * backgrounded: cmd &     { list } &
7487  * subshell:     ( list ) [&]
7488  */
7489 #if !ENABLE_HUSH_MODE_X
7490 #define redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel, argv_expanded) \
7491         redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel)
7492 #endif
7493 static int redirect_and_varexp_helper(char ***new_env_p,
7494                 struct variable **old_vars_p,
7495                 struct command *command,
7496                 int squirrel[3],
7497                 char **argv_expanded)
7498 {
7499         /* setup_redirects acts on file descriptors, not FILEs.
7500          * This is perfect for work that comes after exec().
7501          * Is it really safe for inline use?  Experimentally,
7502          * things seem to work. */
7503         int rcode = setup_redirects(command, squirrel);
7504         if (rcode == 0) {
7505                 char **new_env = expand_assignments(command->argv, command->assignment_cnt);
7506                 *new_env_p = new_env;
7507                 dump_cmd_in_x_mode(new_env);
7508                 dump_cmd_in_x_mode(argv_expanded);
7509                 if (old_vars_p)
7510                         *old_vars_p = set_vars_and_save_old(new_env);
7511         }
7512         return rcode;
7513 }
7514 static NOINLINE int run_pipe(struct pipe *pi)
7515 {
7516         static const char *const null_ptr = NULL;
7517
7518         int cmd_no;
7519         int next_infd;
7520         struct command *command;
7521         char **argv_expanded;
7522         char **argv;
7523         /* it is not always needed, but we aim to smaller code */
7524         int squirrel[] = { -1, -1, -1 };
7525         int rcode;
7526
7527         debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
7528         debug_enter();
7529
7530         /* Testcase: set -- q w e; (IFS='' echo "$*"; IFS=''; echo "$*"); echo "$*"
7531          * Result should be 3 lines: q w e, qwe, q w e
7532          */
7533         G.ifs = get_local_var_value("IFS");
7534         if (!G.ifs)
7535                 G.ifs = defifs;
7536
7537         IF_HUSH_JOB(pi->pgrp = -1;)
7538         pi->stopped_cmds = 0;
7539         command = &pi->cmds[0];
7540         argv_expanded = NULL;
7541
7542         if (pi->num_cmds != 1
7543          || pi->followup == PIPE_BG
7544          || command->cmd_type == CMD_SUBSHELL
7545         ) {
7546                 goto must_fork;
7547         }
7548
7549         pi->alive_cmds = 1;
7550
7551         debug_printf_exec(": group:%p argv:'%s'\n",
7552                 command->group, command->argv ? command->argv[0] : "NONE");
7553
7554         if (command->group) {
7555 #if ENABLE_HUSH_FUNCTIONS
7556                 if (command->cmd_type == CMD_FUNCDEF) {
7557                         /* "executing" func () { list } */
7558                         struct function *funcp;
7559
7560                         funcp = new_function(command->argv[0]);
7561                         /* funcp->name is already set to argv[0] */
7562                         funcp->body = command->group;
7563 # if !BB_MMU
7564                         funcp->body_as_string = command->group_as_string;
7565                         command->group_as_string = NULL;
7566 # endif
7567                         command->group = NULL;
7568                         command->argv[0] = NULL;
7569                         debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
7570                         funcp->parent_cmd = command;
7571                         command->child_func = funcp;
7572
7573                         debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
7574                         debug_leave();
7575                         return EXIT_SUCCESS;
7576                 }
7577 #endif
7578                 /* { list } */
7579                 debug_printf("non-subshell group\n");
7580                 rcode = 1; /* exitcode if redir failed */
7581                 if (setup_redirects(command, squirrel) == 0) {
7582                         debug_printf_exec(": run_list\n");
7583                         rcode = run_list(command->group) & 0xff;
7584                 }
7585                 restore_redirects(squirrel);
7586                 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7587                 debug_leave();
7588                 debug_printf_exec("run_pipe: return %d\n", rcode);
7589                 return rcode;
7590         }
7591
7592         argv = command->argv ? command->argv : (char **) &null_ptr;
7593         {
7594                 const struct built_in_command *x;
7595 #if ENABLE_HUSH_FUNCTIONS
7596                 const struct function *funcp;
7597 #else
7598                 enum { funcp = 0 };
7599 #endif
7600                 char **new_env = NULL;
7601                 struct variable *old_vars = NULL;
7602
7603                 if (argv[command->assignment_cnt] == NULL) {
7604                         /* Assignments, but no command */
7605                         /* Ensure redirects take effect (that is, create files).
7606                          * Try "a=t >file" */
7607 #if 0 /* A few cases in testsuite fail with this code. FIXME */
7608                         rcode = redirect_and_varexp_helper(&new_env, /*old_vars:*/ NULL, command, squirrel, /*argv_expanded:*/ NULL);
7609                         /* Set shell variables */
7610                         if (new_env) {
7611                                 argv = new_env;
7612                                 while (*argv) {
7613                                         set_local_var(*argv, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
7614                                         /* Do we need to flag set_local_var() errors?
7615                                          * "assignment to readonly var" and "putenv error"
7616                                          */
7617                                         argv++;
7618                                 }
7619                         }
7620                         /* Redirect error sets $? to 1. Otherwise,
7621                          * if evaluating assignment value set $?, retain it.
7622                          * Try "false; q=`exit 2`; echo $?" - should print 2: */
7623                         if (rcode == 0)
7624                                 rcode = G.last_exitcode;
7625                         /* Exit, _skipping_ variable restoring code: */
7626                         goto clean_up_and_ret0;
7627
7628 #else /* Older, bigger, but more correct code */
7629
7630                         rcode = setup_redirects(command, squirrel);
7631                         restore_redirects(squirrel);
7632                         /* Set shell variables */
7633                         if (G_x_mode)
7634                                 bb_putchar_stderr('+');
7635                         while (*argv) {
7636                                 char *p = expand_string_to_string(*argv, /*unbackslash:*/ 1);
7637                                 if (G_x_mode)
7638                                         fprintf(stderr, " %s", p);
7639                                 debug_printf_exec("set shell var:'%s'->'%s'\n",
7640                                                 *argv, p);
7641                                 set_local_var(p, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
7642                                 /* Do we need to flag set_local_var() errors?
7643                                  * "assignment to readonly var" and "putenv error"
7644                                  */
7645                                 argv++;
7646                         }
7647                         if (G_x_mode)
7648                                 bb_putchar_stderr('\n');
7649                         /* Redirect error sets $? to 1. Otherwise,
7650                          * if evaluating assignment value set $?, retain it.
7651                          * Try "false; q=`exit 2`; echo $?" - should print 2: */
7652                         if (rcode == 0)
7653                                 rcode = G.last_exitcode;
7654                         IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7655                         debug_leave();
7656                         debug_printf_exec("run_pipe: return %d\n", rcode);
7657                         return rcode;
7658 #endif
7659                 }
7660
7661                 /* Expand the rest into (possibly) many strings each */
7662 #if BASH_TEST2
7663                 if (command->cmd_type == CMD_SINGLEWORD_NOGLOB) {
7664                         argv_expanded = expand_strvec_to_strvec_singleword_noglob(argv + command->assignment_cnt);
7665                 } else
7666 #endif
7667                 {
7668                         argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
7669                 }
7670
7671                 /* if someone gives us an empty string: `cmd with empty output` */
7672                 if (!argv_expanded[0]) {
7673                         free(argv_expanded);
7674                         debug_leave();
7675                         return G.last_exitcode;
7676                 }
7677
7678                 x = find_builtin(argv_expanded[0]);
7679 #if ENABLE_HUSH_FUNCTIONS
7680                 funcp = NULL;
7681                 if (!x)
7682                         funcp = find_function(argv_expanded[0]);
7683 #endif
7684                 if (x || funcp) {
7685                         if (!funcp) {
7686                                 if (x->b_function == builtin_exec && argv_expanded[1] == NULL) {
7687                                         debug_printf("exec with redirects only\n");
7688                                         rcode = setup_redirects(command, NULL);
7689                                         /* rcode=1 can be if redir file can't be opened */
7690                                         goto clean_up_and_ret1;
7691                                 }
7692                         }
7693                         rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, squirrel, argv_expanded);
7694                         if (rcode == 0) {
7695                                 if (!funcp) {
7696                                         debug_printf_exec(": builtin '%s' '%s'...\n",
7697                                                 x->b_cmd, argv_expanded[1]);
7698                                         fflush_all();
7699                                         rcode = x->b_function(argv_expanded) & 0xff;
7700                                         fflush_all();
7701                                 }
7702 #if ENABLE_HUSH_FUNCTIONS
7703                                 else {
7704 # if ENABLE_HUSH_LOCAL
7705                                         struct variable **sv;
7706                                         sv = G.shadowed_vars_pp;
7707                                         G.shadowed_vars_pp = &old_vars;
7708 # endif
7709                                         debug_printf_exec(": function '%s' '%s'...\n",
7710                                                 funcp->name, argv_expanded[1]);
7711                                         rcode = run_function(funcp, argv_expanded) & 0xff;
7712 # if ENABLE_HUSH_LOCAL
7713                                         G.shadowed_vars_pp = sv;
7714 # endif
7715                                 }
7716 #endif
7717                         }
7718  clean_up_and_ret:
7719                         unset_vars(new_env);
7720                         add_vars(old_vars);
7721 /* clean_up_and_ret0: */
7722                         restore_redirects(squirrel);
7723  clean_up_and_ret1:
7724                         free(argv_expanded);
7725                         IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7726                         debug_leave();
7727                         debug_printf_exec("run_pipe return %d\n", rcode);
7728                         return rcode;
7729                 }
7730
7731                 if (ENABLE_FEATURE_SH_NOFORK) {
7732                         int n = find_applet_by_name(argv_expanded[0]);
7733                         if (n >= 0 && APPLET_IS_NOFORK(n)) {
7734                                 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, squirrel, argv_expanded);
7735                                 if (rcode == 0) {
7736                                         debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
7737                                                 argv_expanded[0], argv_expanded[1]);
7738                                         rcode = run_nofork_applet(n, argv_expanded);
7739                                 }
7740                                 goto clean_up_and_ret;
7741                         }
7742                 }
7743                 /* It is neither builtin nor applet. We must fork. */
7744         }
7745
7746  must_fork:
7747         /* NB: argv_expanded may already be created, and that
7748          * might include `cmd` runs! Do not rerun it! We *must*
7749          * use argv_expanded if it's non-NULL */
7750
7751         /* Going to fork a child per each pipe member */
7752         pi->alive_cmds = 0;
7753         next_infd = 0;
7754
7755         cmd_no = 0;
7756         while (cmd_no < pi->num_cmds) {
7757                 struct fd_pair pipefds;
7758 #if !BB_MMU
7759                 volatile nommu_save_t nommu_save;
7760                 nommu_save.new_env = NULL;
7761                 nommu_save.old_vars = NULL;
7762                 nommu_save.argv = NULL;
7763                 nommu_save.argv_from_re_execing = NULL;
7764 #endif
7765                 command = &pi->cmds[cmd_no];
7766                 cmd_no++;
7767                 if (command->argv) {
7768                         debug_printf_exec(": pipe member '%s' '%s'...\n",
7769                                         command->argv[0], command->argv[1]);
7770                 } else {
7771                         debug_printf_exec(": pipe member with no argv\n");
7772                 }
7773
7774                 /* pipes are inserted between pairs of commands */
7775                 pipefds.rd = 0;
7776                 pipefds.wr = 1;
7777                 if (cmd_no < pi->num_cmds)
7778                         xpiped_pair(pipefds);
7779
7780                 command->pid = BB_MMU ? fork() : vfork();
7781                 if (!command->pid) { /* child */
7782 #if ENABLE_HUSH_JOB
7783                         disable_restore_tty_pgrp_on_exit();
7784                         CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
7785
7786                         /* Every child adds itself to new process group
7787                          * with pgid == pid_of_first_child_in_pipe */
7788                         if (G.run_list_level == 1 && G_interactive_fd) {
7789                                 pid_t pgrp;
7790                                 pgrp = pi->pgrp;
7791                                 if (pgrp < 0) /* true for 1st process only */
7792                                         pgrp = getpid();
7793                                 if (setpgid(0, pgrp) == 0
7794                                  && pi->followup != PIPE_BG
7795                                  && G_saved_tty_pgrp /* we have ctty */
7796                                 ) {
7797                                         /* We do it in *every* child, not just first,
7798                                          * to avoid races */
7799                                         tcsetpgrp(G_interactive_fd, pgrp);
7800                                 }
7801                         }
7802 #endif
7803                         if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
7804                                 /* 1st cmd in backgrounded pipe
7805                                  * should have its stdin /dev/null'ed */
7806                                 close(0);
7807                                 if (open(bb_dev_null, O_RDONLY))
7808                                         xopen("/", O_RDONLY);
7809                         } else {
7810                                 xmove_fd(next_infd, 0);
7811                         }
7812                         xmove_fd(pipefds.wr, 1);
7813                         if (pipefds.rd > 1)
7814                                 close(pipefds.rd);
7815                         /* Like bash, explicit redirects override pipes,
7816                          * and the pipe fd (fd#1) is available for dup'ing:
7817                          * "cmd1 2>&1 | cmd2": fd#1 is duped to fd#2, thus stderr
7818                          * of cmd1 goes into pipe.
7819                          */
7820                         if (setup_redirects(command, NULL)) {
7821                                 /* Happens when redir file can't be opened:
7822                                  * $ hush -c 'echo FOO >&2 | echo BAR 3>/qwe/rty; echo BAZ'
7823                                  * FOO
7824                                  * hush: can't open '/qwe/rty': No such file or directory
7825                                  * BAZ
7826                                  * (echo BAR is not executed, it hits _exit(1) below)
7827                                  */
7828                                 _exit(1);
7829                         }
7830
7831                         /* Stores to nommu_save list of env vars putenv'ed
7832                          * (NOMMU, on MMU we don't need that) */
7833                         /* cast away volatility... */
7834                         pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
7835                         /* pseudo_exec() does not return */
7836                 }
7837
7838                 /* parent or error */
7839 #if ENABLE_HUSH_FAST
7840                 G.count_SIGCHLD++;
7841 //bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
7842 #endif
7843                 enable_restore_tty_pgrp_on_exit();
7844 #if !BB_MMU
7845                 /* Clean up after vforked child */
7846                 free(nommu_save.argv);
7847                 free(nommu_save.argv_from_re_execing);
7848                 unset_vars(nommu_save.new_env);
7849                 add_vars(nommu_save.old_vars);
7850 #endif
7851                 free(argv_expanded);
7852                 argv_expanded = NULL;
7853                 if (command->pid < 0) { /* [v]fork failed */
7854                         /* Clearly indicate, was it fork or vfork */
7855                         bb_perror_msg(BB_MMU ? "vfork"+1 : "vfork");
7856                 } else {
7857                         pi->alive_cmds++;
7858 #if ENABLE_HUSH_JOB
7859                         /* Second and next children need to know pid of first one */
7860                         if (pi->pgrp < 0)
7861                                 pi->pgrp = command->pid;
7862 #endif
7863                 }
7864
7865                 if (cmd_no > 1)
7866                         close(next_infd);
7867                 if (cmd_no < pi->num_cmds)
7868                         close(pipefds.wr);
7869                 /* Pass read (output) pipe end to next iteration */
7870                 next_infd = pipefds.rd;
7871         }
7872
7873         if (!pi->alive_cmds) {
7874                 debug_leave();
7875                 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
7876                 return 1;
7877         }
7878
7879         debug_leave();
7880         debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
7881         return -1;
7882 }
7883
7884 /* NB: called by pseudo_exec, and therefore must not modify any
7885  * global data until exec/_exit (we can be a child after vfork!) */
7886 static int run_list(struct pipe *pi)
7887 {
7888 #if ENABLE_HUSH_CASE
7889         char *case_word = NULL;
7890 #endif
7891 #if ENABLE_HUSH_LOOPS
7892         struct pipe *loop_top = NULL;
7893         char **for_lcur = NULL;
7894         char **for_list = NULL;
7895 #endif
7896         smallint last_followup;
7897         smalluint rcode;
7898 #if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
7899         smalluint cond_code = 0;
7900 #else
7901         enum { cond_code = 0 };
7902 #endif
7903 #if HAS_KEYWORDS
7904         smallint rword;      /* RES_foo */
7905         smallint last_rword; /* ditto */
7906 #endif
7907
7908         debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
7909         debug_enter();
7910
7911 #if ENABLE_HUSH_LOOPS
7912         /* Check syntax for "for" */
7913         {
7914                 struct pipe *cpipe;
7915                 for (cpipe = pi; cpipe; cpipe = cpipe->next) {
7916                         if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
7917                                 continue;
7918                         /* current word is FOR or IN (BOLD in comments below) */
7919                         if (cpipe->next == NULL) {
7920                                 syntax_error("malformed for");
7921                                 debug_leave();
7922                                 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
7923                                 return 1;
7924                         }
7925                         /* "FOR v; do ..." and "for v IN a b; do..." are ok */
7926                         if (cpipe->next->res_word == RES_DO)
7927                                 continue;
7928                         /* next word is not "do". It must be "in" then ("FOR v in ...") */
7929                         if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
7930                          || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
7931                         ) {
7932                                 syntax_error("malformed for");
7933                                 debug_leave();
7934                                 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
7935                                 return 1;
7936                         }
7937                 }
7938         }
7939 #endif
7940
7941         /* Past this point, all code paths should jump to ret: label
7942          * in order to return, no direct "return" statements please.
7943          * This helps to ensure that no memory is leaked. */
7944
7945 #if ENABLE_HUSH_JOB
7946         G.run_list_level++;
7947 #endif
7948
7949 #if HAS_KEYWORDS
7950         rword = RES_NONE;
7951         last_rword = RES_XXXX;
7952 #endif
7953         last_followup = PIPE_SEQ;
7954         rcode = G.last_exitcode;
7955
7956         /* Go through list of pipes, (maybe) executing them. */
7957         for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
7958                 int r;
7959
7960                 if (G.flag_SIGINT)
7961                         break;
7962                 if (G_flag_return_in_progress == 1)
7963                         break;
7964
7965                 IF_HAS_KEYWORDS(rword = pi->res_word;)
7966                 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
7967                                 rword, cond_code, last_rword);
7968 #if ENABLE_HUSH_LOOPS
7969                 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
7970                  && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
7971                 ) {
7972                         /* start of a loop: remember where loop starts */
7973                         loop_top = pi;
7974                         G.depth_of_loop++;
7975                 }
7976 #endif
7977                 /* Still in the same "if...", "then..." or "do..." branch? */
7978                 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
7979                         if ((rcode == 0 && last_followup == PIPE_OR)
7980                          || (rcode != 0 && last_followup == PIPE_AND)
7981                         ) {
7982                                 /* It is "<true> || CMD" or "<false> && CMD"
7983                                  * and we should not execute CMD */
7984                                 debug_printf_exec("skipped cmd because of || or &&\n");
7985                                 last_followup = pi->followup;
7986                                 goto dont_check_jobs_but_continue;
7987                         }
7988                 }
7989                 last_followup = pi->followup;
7990                 IF_HAS_KEYWORDS(last_rword = rword;)
7991 #if ENABLE_HUSH_IF
7992                 if (cond_code) {
7993                         if (rword == RES_THEN) {
7994                                 /* if false; then ... fi has exitcode 0! */
7995                                 G.last_exitcode = rcode = EXIT_SUCCESS;
7996                                 /* "if <false> THEN cmd": skip cmd */
7997                                 continue;
7998                         }
7999                 } else {
8000                         if (rword == RES_ELSE || rword == RES_ELIF) {
8001                                 /* "if <true> then ... ELSE/ELIF cmd":
8002                                  * skip cmd and all following ones */
8003                                 break;
8004                         }
8005                 }
8006 #endif
8007 #if ENABLE_HUSH_LOOPS
8008                 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
8009                         if (!for_lcur) {
8010                                 /* first loop through for */
8011
8012                                 static const char encoded_dollar_at[] ALIGN1 = {
8013                                         SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
8014                                 }; /* encoded representation of "$@" */
8015                                 static const char *const encoded_dollar_at_argv[] = {
8016                                         encoded_dollar_at, NULL
8017                                 }; /* argv list with one element: "$@" */
8018                                 char **vals;
8019
8020                                 vals = (char**)encoded_dollar_at_argv;
8021                                 if (pi->next->res_word == RES_IN) {
8022                                         /* if no variable values after "in" we skip "for" */
8023                                         if (!pi->next->cmds[0].argv) {
8024                                                 G.last_exitcode = rcode = EXIT_SUCCESS;
8025                                                 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
8026                                                 break;
8027                                         }
8028                                         vals = pi->next->cmds[0].argv;
8029                                 } /* else: "for var; do..." -> assume "$@" list */
8030                                 /* create list of variable values */
8031                                 debug_print_strings("for_list made from", vals);
8032                                 for_list = expand_strvec_to_strvec(vals);
8033                                 for_lcur = for_list;
8034                                 debug_print_strings("for_list", for_list);
8035                         }
8036                         if (!*for_lcur) {
8037                                 /* "for" loop is over, clean up */
8038                                 free(for_list);
8039                                 for_list = NULL;
8040                                 for_lcur = NULL;
8041                                 break;
8042                         }
8043                         /* Insert next value from for_lcur */
8044                         /* note: *for_lcur already has quotes removed, $var expanded, etc */
8045                         set_local_var(xasprintf("%s=%s", pi->cmds[0].argv[0], *for_lcur++), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
8046                         continue;
8047                 }
8048                 if (rword == RES_IN) {
8049                         continue; /* "for v IN list;..." - "in" has no cmds anyway */
8050                 }
8051                 if (rword == RES_DONE) {
8052                         continue; /* "done" has no cmds too */
8053                 }
8054 #endif
8055 #if ENABLE_HUSH_CASE
8056                 if (rword == RES_CASE) {
8057                         debug_printf_exec("CASE cond_code:%d\n", cond_code);
8058                         case_word = expand_strvec_to_string(pi->cmds->argv);
8059                         unbackslash(case_word);
8060                         continue;
8061                 }
8062                 if (rword == RES_MATCH) {
8063                         char **argv;
8064
8065                         debug_printf_exec("MATCH cond_code:%d\n", cond_code);
8066                         if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
8067                                 break;
8068                         /* all prev words didn't match, does this one match? */
8069                         argv = pi->cmds->argv;
8070                         while (*argv) {
8071                                 char *pattern = expand_string_to_string(*argv, /*unbackslash:*/ 0);
8072                                 /* TODO: which FNM_xxx flags to use? */
8073                                 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
8074                                 debug_printf_exec("fnmatch(pattern:'%s',str:'%s'):%d\n", pattern, case_word, cond_code);
8075                                 free(pattern);
8076                                 if (cond_code == 0) { /* match! we will execute this branch */
8077                                         free(case_word);
8078                                         case_word = NULL; /* make future "word)" stop */
8079                                         break;
8080                                 }
8081                                 argv++;
8082                         }
8083                         continue;
8084                 }
8085                 if (rword == RES_CASE_BODY) { /* inside of a case branch */
8086                         debug_printf_exec("CASE_BODY cond_code:%d\n", cond_code);
8087                         if (cond_code != 0)
8088                                 continue; /* not matched yet, skip this pipe */
8089                 }
8090                 if (rword == RES_ESAC) {
8091                         debug_printf_exec("ESAC cond_code:%d\n", cond_code);
8092                         if (case_word) {
8093                                 /* "case" did not match anything: still set $? (to 0) */
8094                                 G.last_exitcode = rcode = EXIT_SUCCESS;
8095                         }
8096                 }
8097 #endif
8098                 /* Just pressing <enter> in shell should check for jobs.
8099                  * OTOH, in non-interactive shell this is useless
8100                  * and only leads to extra job checks */
8101                 if (pi->num_cmds == 0) {
8102                         if (G_interactive_fd)
8103                                 goto check_jobs_and_continue;
8104                         continue;
8105                 }
8106
8107                 /* After analyzing all keywords and conditions, we decided
8108                  * to execute this pipe. NB: have to do checkjobs(NULL)
8109                  * after run_pipe to collect any background children,
8110                  * even if list execution is to be stopped. */
8111                 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
8112 #if ENABLE_HUSH_LOOPS
8113                 G.flag_break_continue = 0;
8114 #endif
8115                 rcode = r = run_pipe(pi); /* NB: rcode is a smalluint, r is int */
8116                 if (r != -1) {
8117                         /* We ran a builtin, function, or group.
8118                          * rcode is already known
8119                          * and we don't need to wait for anything. */
8120                         debug_printf_exec(": builtin/func exitcode %d\n", rcode);
8121                         G.last_exitcode = rcode;
8122                         check_and_run_traps();
8123 #if ENABLE_HUSH_LOOPS
8124                         /* Was it "break" or "continue"? */
8125                         if (G.flag_break_continue) {
8126                                 smallint fbc = G.flag_break_continue;
8127                                 /* We might fall into outer *loop*,
8128                                  * don't want to break it too */
8129                                 if (loop_top) {
8130                                         G.depth_break_continue--;
8131                                         if (G.depth_break_continue == 0)
8132                                                 G.flag_break_continue = 0;
8133                                         /* else: e.g. "continue 2" should *break* once, *then* continue */
8134                                 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
8135                                 if (G.depth_break_continue != 0 || fbc == BC_BREAK) {
8136                                         checkjobs(NULL, 0 /*(no pid to wait for)*/);
8137                                         break;
8138                                 }
8139                                 /* "continue": simulate end of loop */
8140                                 rword = RES_DONE;
8141                                 continue;
8142                         }
8143 #endif
8144                         if (G_flag_return_in_progress == 1) {
8145                                 checkjobs(NULL, 0 /*(no pid to wait for)*/);
8146                                 break;
8147                         }
8148                 } else if (pi->followup == PIPE_BG) {
8149                         /* What does bash do with attempts to background builtins? */
8150                         /* even bash 3.2 doesn't do that well with nested bg:
8151                          * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
8152                          * I'm NOT treating inner &'s as jobs */
8153 #if ENABLE_HUSH_JOB
8154                         if (G.run_list_level == 1)
8155                                 insert_bg_job(pi);
8156 #endif
8157                         /* Last command's pid goes to $! */
8158                         G.last_bg_pid = pi->cmds[pi->num_cmds - 1].pid;
8159                         debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
8160 /* Check pi->pi_inverted? "! sleep 1 & echo $?": bash says 1. dash and ash says 0 */
8161                         rcode = EXIT_SUCCESS;
8162                         goto check_traps;
8163                 } else {
8164 #if ENABLE_HUSH_JOB
8165                         if (G.run_list_level == 1 && G_interactive_fd) {
8166                                 /* Waits for completion, then fg's main shell */
8167                                 rcode = checkjobs_and_fg_shell(pi);
8168                                 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
8169                                 goto check_traps;
8170                         }
8171 #endif
8172                         /* This one just waits for completion */
8173                         rcode = checkjobs(pi, 0 /*(no pid to wait for)*/);
8174                         debug_printf_exec(": checkjobs exitcode %d\n", rcode);
8175  check_traps:
8176                         G.last_exitcode = rcode;
8177                         check_and_run_traps();
8178                 }
8179
8180                 /* Analyze how result affects subsequent commands */
8181 #if ENABLE_HUSH_IF
8182                 if (rword == RES_IF || rword == RES_ELIF)
8183                         cond_code = rcode;
8184 #endif
8185  check_jobs_and_continue:
8186                 checkjobs(NULL, 0 /*(no pid to wait for)*/);
8187  dont_check_jobs_but_continue: ;
8188 #if ENABLE_HUSH_LOOPS
8189                 /* Beware of "while false; true; do ..."! */
8190                 if (pi->next
8191                  && (pi->next->res_word == RES_DO || pi->next->res_word == RES_DONE)
8192                  /* check for RES_DONE is needed for "while ...; do \n done" case */
8193                 ) {
8194                         if (rword == RES_WHILE) {
8195                                 if (rcode) {
8196                                         /* "while false; do...done" - exitcode 0 */
8197                                         G.last_exitcode = rcode = EXIT_SUCCESS;
8198                                         debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
8199                                         break;
8200                                 }
8201                         }
8202                         if (rword == RES_UNTIL) {
8203                                 if (!rcode) {
8204                                         debug_printf_exec(": until expr is true: breaking\n");
8205                                         break;
8206                                 }
8207                         }
8208                 }
8209 #endif
8210         } /* for (pi) */
8211
8212 #if ENABLE_HUSH_JOB
8213         G.run_list_level--;
8214 #endif
8215 #if ENABLE_HUSH_LOOPS
8216         if (loop_top)
8217                 G.depth_of_loop--;
8218         free(for_list);
8219 #endif
8220 #if ENABLE_HUSH_CASE
8221         free(case_word);
8222 #endif
8223         debug_leave();
8224         debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
8225         return rcode;
8226 }
8227
8228 /* Select which version we will use */
8229 static int run_and_free_list(struct pipe *pi)
8230 {
8231         int rcode = 0;
8232         debug_printf_exec("run_and_free_list entered\n");
8233         if (!G.o_opt[OPT_O_NOEXEC]) {
8234                 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
8235                 rcode = run_list(pi);
8236         }
8237         /* free_pipe_list has the side effect of clearing memory.
8238          * In the long run that function can be merged with run_list,
8239          * but doing that now would hobble the debugging effort. */
8240         free_pipe_list(pi);
8241         debug_printf_exec("run_and_free_list return %d\n", rcode);
8242         return rcode;
8243 }
8244
8245
8246 static void install_sighandlers(unsigned mask)
8247 {
8248         sighandler_t old_handler;
8249         unsigned sig = 0;
8250         while ((mask >>= 1) != 0) {
8251                 sig++;
8252                 if (!(mask & 1))
8253                         continue;
8254                 old_handler = install_sighandler(sig, pick_sighandler(sig));
8255                 /* POSIX allows shell to re-enable SIGCHLD
8256                  * even if it was SIG_IGN on entry.
8257                  * Therefore we skip IGN check for it:
8258                  */
8259                 if (sig == SIGCHLD)
8260                         continue;
8261                 if (old_handler == SIG_IGN) {
8262                         /* oops... restore back to IGN, and record this fact */
8263                         install_sighandler(sig, old_handler);
8264 #if ENABLE_HUSH_TRAP
8265                         if (!G_traps)
8266                                 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
8267                         free(G_traps[sig]);
8268                         G_traps[sig] = xzalloc(1); /* == xstrdup(""); */
8269 #endif
8270                 }
8271         }
8272 }
8273
8274 /* Called a few times only (or even once if "sh -c") */
8275 static void install_special_sighandlers(void)
8276 {
8277         unsigned mask;
8278
8279         /* Which signals are shell-special? */
8280         mask = (1 << SIGQUIT) | (1 << SIGCHLD);
8281         if (G_interactive_fd) {
8282                 mask |= SPECIAL_INTERACTIVE_SIGS;
8283                 if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */
8284                         mask |= SPECIAL_JOBSTOP_SIGS;
8285         }
8286         /* Careful, do not re-install handlers we already installed */
8287         if (G.special_sig_mask != mask) {
8288                 unsigned diff = mask & ~G.special_sig_mask;
8289                 G.special_sig_mask = mask;
8290                 install_sighandlers(diff);
8291         }
8292 }
8293
8294 #if ENABLE_HUSH_JOB
8295 /* helper */
8296 /* Set handlers to restore tty pgrp and exit */
8297 static void install_fatal_sighandlers(void)
8298 {
8299         unsigned mask;
8300
8301         /* We will restore tty pgrp on these signals */
8302         mask = 0
8303                 /*+ (1 << SIGILL ) * HUSH_DEBUG*/
8304                 /*+ (1 << SIGFPE ) * HUSH_DEBUG*/
8305                 + (1 << SIGBUS ) * HUSH_DEBUG
8306                 + (1 << SIGSEGV) * HUSH_DEBUG
8307                 /*+ (1 << SIGTRAP) * HUSH_DEBUG*/
8308                 + (1 << SIGABRT)
8309         /* bash 3.2 seems to handle these just like 'fatal' ones */
8310                 + (1 << SIGPIPE)
8311                 + (1 << SIGALRM)
8312         /* if we are interactive, SIGHUP, SIGTERM and SIGINT are special sigs.
8313          * if we aren't interactive... but in this case
8314          * we never want to restore pgrp on exit, and this fn is not called
8315          */
8316                 /*+ (1 << SIGHUP )*/
8317                 /*+ (1 << SIGTERM)*/
8318                 /*+ (1 << SIGINT )*/
8319         ;
8320         G_fatal_sig_mask = mask;
8321
8322         install_sighandlers(mask);
8323 }
8324 #endif
8325
8326 static int set_mode(int state, char mode, const char *o_opt)
8327 {
8328         int idx;
8329         switch (mode) {
8330         case 'n':
8331                 G.o_opt[OPT_O_NOEXEC] = state;
8332                 break;
8333         case 'x':
8334                 IF_HUSH_MODE_X(G_x_mode = state;)
8335                 break;
8336         case 'o':
8337                 if (!o_opt) {
8338                         /* "set -+o" without parameter.
8339                          * in bash, set -o produces this output:
8340                          *  pipefail        off
8341                          * and set +o:
8342                          *  set +o pipefail
8343                          * We always use the second form.
8344                          */
8345                         const char *p = o_opt_strings;
8346                         idx = 0;
8347                         while (*p) {
8348                                 printf("set %co %s\n", (G.o_opt[idx] ? '-' : '+'), p);
8349                                 idx++;
8350                                 p += strlen(p) + 1;
8351                         }
8352                         break;
8353                 }
8354                 idx = index_in_strings(o_opt_strings, o_opt);
8355                 if (idx >= 0) {
8356                         G.o_opt[idx] = state;
8357                         break;
8358                 }
8359         default:
8360                 return EXIT_FAILURE;
8361         }
8362         return EXIT_SUCCESS;
8363 }
8364
8365 int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
8366 int hush_main(int argc, char **argv)
8367 {
8368         enum {
8369                 OPT_login = (1 << 0),
8370         };
8371         unsigned flags;
8372         int opt;
8373         unsigned builtin_argc;
8374         char **e;
8375         struct variable *cur_var;
8376         struct variable *shell_ver;
8377
8378         INIT_G();
8379         if (EXIT_SUCCESS != 0) /* if EXIT_SUCCESS == 0, it is already done */
8380                 G.last_exitcode = EXIT_SUCCESS;
8381
8382 #if ENABLE_HUSH_FAST
8383         G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
8384 #endif
8385 #if !BB_MMU
8386         G.argv0_for_re_execing = argv[0];
8387 #endif
8388         /* Deal with HUSH_VERSION */
8389         shell_ver = xzalloc(sizeof(*shell_ver));
8390         shell_ver->flg_export = 1;
8391         shell_ver->flg_read_only = 1;
8392         /* Code which handles ${var<op>...} needs writable values for all variables,
8393          * therefore we xstrdup: */
8394         shell_ver->varstr = xstrdup(hush_version_str);
8395         /* Create shell local variables from the values
8396          * currently living in the environment */
8397         debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
8398         unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
8399         G.top_var = shell_ver;
8400         cur_var = G.top_var;
8401         e = environ;
8402         if (e) while (*e) {
8403                 char *value = strchr(*e, '=');
8404                 if (value) { /* paranoia */
8405                         cur_var->next = xzalloc(sizeof(*cur_var));
8406                         cur_var = cur_var->next;
8407                         cur_var->varstr = *e;
8408                         cur_var->max_len = strlen(*e);
8409                         cur_var->flg_export = 1;
8410                 }
8411                 e++;
8412         }
8413         /* (Re)insert HUSH_VERSION into env (AFTER we scanned the env!) */
8414         debug_printf_env("putenv '%s'\n", shell_ver->varstr);
8415         putenv(shell_ver->varstr);
8416
8417         /* Export PWD */
8418         set_pwd_var(/*exp:*/ 1);
8419
8420 #if BASH_HOSTNAME_VAR
8421         /* Set (but not export) HOSTNAME unless already set */
8422         if (!get_local_var_value("HOSTNAME")) {
8423                 struct utsname uts;
8424                 uname(&uts);
8425                 set_local_var_from_halves("HOSTNAME", uts.nodename);
8426         }
8427         /* bash also exports SHLVL and _,
8428          * and sets (but doesn't export) the following variables:
8429          * BASH=/bin/bash
8430          * BASH_VERSINFO=([0]="3" [1]="2" [2]="0" [3]="1" [4]="release" [5]="i386-pc-linux-gnu")
8431          * BASH_VERSION='3.2.0(1)-release'
8432          * HOSTTYPE=i386
8433          * MACHTYPE=i386-pc-linux-gnu
8434          * OSTYPE=linux-gnu
8435          * PPID=<NNNNN> - we also do it elsewhere
8436          * EUID=<NNNNN>
8437          * UID=<NNNNN>
8438          * GROUPS=()
8439          * LINES=<NNN>
8440          * COLUMNS=<NNN>
8441          * BASH_ARGC=()
8442          * BASH_ARGV=()
8443          * BASH_LINENO=()
8444          * BASH_SOURCE=()
8445          * DIRSTACK=()
8446          * PIPESTATUS=([0]="0")
8447          * HISTFILE=/<xxx>/.bash_history
8448          * HISTFILESIZE=500
8449          * HISTSIZE=500
8450          * MAILCHECK=60
8451          * PATH=/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:.
8452          * SHELL=/bin/bash
8453          * SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor
8454          * TERM=dumb
8455          * OPTERR=1
8456          * OPTIND=1
8457          * IFS=$' \t\n'
8458          * PS1='\s-\v\$ '
8459          * PS2='> '
8460          * PS4='+ '
8461          */
8462 #endif
8463
8464 #if ENABLE_FEATURE_EDITING
8465         G.line_input_state = new_line_input_t(FOR_SHELL);
8466 #endif
8467
8468         /* Initialize some more globals to non-zero values */
8469         cmdedit_update_prompt();
8470
8471         die_func = restore_ttypgrp_and__exit;
8472
8473         /* Shell is non-interactive at first. We need to call
8474          * install_special_sighandlers() if we are going to execute "sh <script>",
8475          * "sh -c <cmds>" or login shell's /etc/profile and friends.
8476          * If we later decide that we are interactive, we run install_special_sighandlers()
8477          * in order to intercept (more) signals.
8478          */
8479
8480         /* Parse options */
8481         /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
8482         flags = (argv[0] && argv[0][0] == '-') ? OPT_login : 0;
8483         builtin_argc = 0;
8484         while (1) {
8485                 opt = getopt(argc, argv, "+c:xinsl"
8486 #if !BB_MMU
8487                                 "<:$:R:V:"
8488 # if ENABLE_HUSH_FUNCTIONS
8489                                 "F:"
8490 # endif
8491 #endif
8492                 );
8493                 if (opt <= 0)
8494                         break;
8495                 switch (opt) {
8496                 case 'c':
8497                         /* Possibilities:
8498                          * sh ... -c 'script'
8499                          * sh ... -c 'script' ARG0 [ARG1...]
8500                          * On NOMMU, if builtin_argc != 0,
8501                          * sh ... -c 'builtin' BARGV... "" ARG0 [ARG1...]
8502                          * "" needs to be replaced with NULL
8503                          * and BARGV vector fed to builtin function.
8504                          * Note: the form without ARG0 never happens:
8505                          * sh ... -c 'builtin' BARGV... ""
8506                          */
8507                         if (!G.root_pid) {
8508                                 G.root_pid = getpid();
8509                                 G.root_ppid = getppid();
8510                         }
8511                         G.global_argv = argv + optind;
8512                         G.global_argc = argc - optind;
8513                         if (builtin_argc) {
8514                                 /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */
8515                                 const struct built_in_command *x;
8516
8517                                 install_special_sighandlers();
8518                                 x = find_builtin(optarg);
8519                                 if (x) { /* paranoia */
8520                                         G.global_argc -= builtin_argc; /* skip [BARGV...] "" */
8521                                         G.global_argv += builtin_argc;
8522                                         G.global_argv[-1] = NULL; /* replace "" */
8523                                         fflush_all();
8524                                         G.last_exitcode = x->b_function(argv + optind - 1);
8525                                 }
8526                                 goto final_return;
8527                         }
8528                         if (!G.global_argv[0]) {
8529                                 /* -c 'script' (no params): prevent empty $0 */
8530                                 G.global_argv--; /* points to argv[i] of 'script' */
8531                                 G.global_argv[0] = argv[0];
8532                                 G.global_argc++;
8533                         } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */
8534                         install_special_sighandlers();
8535                         parse_and_run_string(optarg);
8536                         goto final_return;
8537                 case 'i':
8538                         /* Well, we cannot just declare interactiveness,
8539                          * we have to have some stuff (ctty, etc) */
8540                         /* G_interactive_fd++; */
8541                         break;
8542                 case 's':
8543                         /* "-s" means "read from stdin", but this is how we always
8544                          * operate, so simply do nothing here. */
8545                         break;
8546                 case 'l':
8547                         flags |= OPT_login;
8548                         break;
8549 #if !BB_MMU
8550                 case '<': /* "big heredoc" support */
8551                         full_write1_str(optarg);
8552                         _exit(0);
8553                 case '$': {
8554                         unsigned long long empty_trap_mask;
8555
8556                         G.root_pid = bb_strtou(optarg, &optarg, 16);
8557                         optarg++;
8558                         G.root_ppid = bb_strtou(optarg, &optarg, 16);
8559                         optarg++;
8560                         G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
8561                         optarg++;
8562                         G.last_exitcode = bb_strtou(optarg, &optarg, 16);
8563                         optarg++;
8564                         builtin_argc = bb_strtou(optarg, &optarg, 16);
8565                         optarg++;
8566                         empty_trap_mask = bb_strtoull(optarg, &optarg, 16);
8567                         if (empty_trap_mask != 0) {
8568                                 IF_HUSH_TRAP(int sig;)
8569                                 install_special_sighandlers();
8570 # if ENABLE_HUSH_TRAP
8571                                 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
8572                                 for (sig = 1; sig < NSIG; sig++) {
8573                                         if (empty_trap_mask & (1LL << sig)) {
8574                                                 G_traps[sig] = xzalloc(1); /* == xstrdup(""); */
8575                                                 install_sighandler(sig, SIG_IGN);
8576                                         }
8577                                 }
8578 # endif
8579                         }
8580 # if ENABLE_HUSH_LOOPS
8581                         optarg++;
8582                         G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
8583 # endif
8584                         break;
8585                 }
8586                 case 'R':
8587                 case 'V':
8588                         set_local_var(xstrdup(optarg), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ opt == 'R');
8589                         break;
8590 # if ENABLE_HUSH_FUNCTIONS
8591                 case 'F': {
8592                         struct function *funcp = new_function(optarg);
8593                         /* funcp->name is already set to optarg */
8594                         /* funcp->body is set to NULL. It's a special case. */
8595                         funcp->body_as_string = argv[optind];
8596                         optind++;
8597                         break;
8598                 }
8599 # endif
8600 #endif
8601                 case 'n':
8602                 case 'x':
8603                         if (set_mode(1, opt, NULL) == 0) /* no error */
8604                                 break;
8605                 default:
8606 #ifndef BB_VER
8607                         fprintf(stderr, "Usage: sh [FILE]...\n"
8608                                         "   or: sh -c command [args]...\n\n");
8609                         exit(EXIT_FAILURE);
8610 #else
8611                         bb_show_usage();
8612 #endif
8613                 }
8614         } /* option parsing loop */
8615
8616         /* Skip options. Try "hush -l": $1 should not be "-l"! */
8617         G.global_argc = argc - (optind - 1);
8618         G.global_argv = argv + (optind - 1);
8619         G.global_argv[0] = argv[0];
8620
8621         if (!G.root_pid) {
8622                 G.root_pid = getpid();
8623                 G.root_ppid = getppid();
8624         }
8625
8626         /* If we are login shell... */
8627         if (flags & OPT_login) {
8628                 FILE *input;
8629                 debug_printf("sourcing /etc/profile\n");
8630                 input = fopen_for_read("/etc/profile");
8631                 if (input != NULL) {
8632                         remember_FILE(input);
8633                         install_special_sighandlers();
8634                         parse_and_run_file(input);
8635                         fclose_and_forget(input);
8636                 }
8637                 /* bash: after sourcing /etc/profile,
8638                  * tries to source (in the given order):
8639                  * ~/.bash_profile, ~/.bash_login, ~/.profile,
8640                  * stopping on first found. --noprofile turns this off.
8641                  * bash also sources ~/.bash_logout on exit.
8642                  * If called as sh, skips .bash_XXX files.
8643                  */
8644         }
8645
8646         if (G.global_argv[1]) {
8647                 FILE *input;
8648                 /*
8649                  * "bash <script>" (which is never interactive (unless -i?))
8650                  * sources $BASH_ENV here (without scanning $PATH).
8651                  * If called as sh, does the same but with $ENV.
8652                  * Also NB, per POSIX, $ENV should undergo parameter expansion.
8653                  */
8654                 G.global_argc--;
8655                 G.global_argv++;
8656                 debug_printf("running script '%s'\n", G.global_argv[0]);
8657                 xfunc_error_retval = 127; /* for "hush /does/not/exist" case */
8658                 input = xfopen_for_read(G.global_argv[0]);
8659                 xfunc_error_retval = 1;
8660                 remember_FILE(input);
8661                 install_special_sighandlers();
8662                 parse_and_run_file(input);
8663 #if ENABLE_FEATURE_CLEAN_UP
8664                 fclose_and_forget(input);
8665 #endif
8666                 goto final_return;
8667         }
8668
8669         /* Up to here, shell was non-interactive. Now it may become one.
8670          * NB: don't forget to (re)run install_special_sighandlers() as needed.
8671          */
8672
8673         /* A shell is interactive if the '-i' flag was given,
8674          * or if all of the following conditions are met:
8675          *    no -c command
8676          *    no arguments remaining or the -s flag given
8677          *    standard input is a terminal
8678          *    standard output is a terminal
8679          * Refer to Posix.2, the description of the 'sh' utility.
8680          */
8681 #if ENABLE_HUSH_JOB
8682         if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
8683                 G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
8684                 debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp);
8685                 if (G_saved_tty_pgrp < 0)
8686                         G_saved_tty_pgrp = 0;
8687
8688                 /* try to dup stdin to high fd#, >= 255 */
8689                 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
8690                 if (G_interactive_fd < 0) {
8691                         /* try to dup to any fd */
8692                         G_interactive_fd = dup(STDIN_FILENO);
8693                         if (G_interactive_fd < 0) {
8694                                 /* give up */
8695                                 G_interactive_fd = 0;
8696                                 G_saved_tty_pgrp = 0;
8697                         }
8698                 }
8699 // TODO: track & disallow any attempts of user
8700 // to (inadvertently) close/redirect G_interactive_fd
8701         }
8702         debug_printf("interactive_fd:%d\n", G_interactive_fd);
8703         if (G_interactive_fd) {
8704                 close_on_exec_on(G_interactive_fd);
8705
8706                 if (G_saved_tty_pgrp) {
8707                         /* If we were run as 'hush &', sleep until we are
8708                          * in the foreground (tty pgrp == our pgrp).
8709                          * If we get started under a job aware app (like bash),
8710                          * make sure we are now in charge so we don't fight over
8711                          * who gets the foreground */
8712                         while (1) {
8713                                 pid_t shell_pgrp = getpgrp();
8714                                 G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
8715                                 if (G_saved_tty_pgrp == shell_pgrp)
8716                                         break;
8717                                 /* send TTIN to ourself (should stop us) */
8718                                 kill(- shell_pgrp, SIGTTIN);
8719                         }
8720                 }
8721
8722                 /* Install more signal handlers */
8723                 install_special_sighandlers();
8724
8725                 if (G_saved_tty_pgrp) {
8726                         /* Set other signals to restore saved_tty_pgrp */
8727                         install_fatal_sighandlers();
8728                         /* Put ourselves in our own process group
8729                          * (bash, too, does this only if ctty is available) */
8730                         bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
8731                         /* Grab control of the terminal */
8732                         tcsetpgrp(G_interactive_fd, getpid());
8733                 }
8734                 enable_restore_tty_pgrp_on_exit();
8735
8736 # if ENABLE_HUSH_SAVEHISTORY && MAX_HISTORY > 0
8737                 {
8738                         const char *hp = get_local_var_value("HISTFILE");
8739                         if (!hp) {
8740                                 hp = get_local_var_value("HOME");
8741                                 if (hp)
8742                                         hp = concat_path_file(hp, ".hush_history");
8743                         } else {
8744                                 hp = xstrdup(hp);
8745                         }
8746                         if (hp) {
8747                                 G.line_input_state->hist_file = hp;
8748                                 //set_local_var(xasprintf("HISTFILE=%s", ...));
8749                         }
8750 #  if ENABLE_FEATURE_SH_HISTFILESIZE
8751                         hp = get_local_var_value("HISTFILESIZE");
8752                         G.line_input_state->max_history = size_from_HISTFILESIZE(hp);
8753 #  endif
8754                 }
8755 # endif
8756         } else {
8757                 install_special_sighandlers();
8758         }
8759 #elif ENABLE_HUSH_INTERACTIVE
8760         /* No job control compiled in, only prompt/line editing */
8761         if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
8762                 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
8763                 if (G_interactive_fd < 0) {
8764                         /* try to dup to any fd */
8765                         G_interactive_fd = dup(STDIN_FILENO);
8766                         if (G_interactive_fd < 0)
8767                                 /* give up */
8768                                 G_interactive_fd = 0;
8769                 }
8770         }
8771         if (G_interactive_fd) {
8772                 close_on_exec_on(G_interactive_fd);
8773         }
8774         install_special_sighandlers();
8775 #else
8776         /* We have interactiveness code disabled */
8777         install_special_sighandlers();
8778 #endif
8779         /* bash:
8780          * if interactive but not a login shell, sources ~/.bashrc
8781          * (--norc turns this off, --rcfile <file> overrides)
8782          */
8783
8784         if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
8785                 /* note: ash and hush share this string */
8786                 printf("\n\n%s %s\n"
8787                         IF_HUSH_HELP("Enter 'help' for a list of built-in commands.\n")
8788                         "\n",
8789                         bb_banner,
8790                         "hush - the humble shell"
8791                 );
8792         }
8793
8794         parse_and_run_file(stdin);
8795
8796  final_return:
8797         hush_exit(G.last_exitcode);
8798 }
8799
8800
8801 /*
8802  * Built-ins
8803  */
8804 static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM)
8805 {
8806         return 0;
8807 }
8808
8809 #if ENABLE_HUSH_TEST || ENABLE_HUSH_ECHO || ENABLE_HUSH_PRINTF || ENABLE_HUSH_KILL
8810 static int run_applet_main(char **argv, int (*applet_main_func)(int argc, char **argv))
8811 {
8812         int argc = string_array_len(argv);
8813         return applet_main_func(argc, argv);
8814 }
8815 #endif
8816 #if ENABLE_HUSH_TEST || BASH_TEST2
8817 static int FAST_FUNC builtin_test(char **argv)
8818 {
8819         return run_applet_main(argv, test_main);
8820 }
8821 #endif
8822 #if ENABLE_HUSH_ECHO
8823 static int FAST_FUNC builtin_echo(char **argv)
8824 {
8825         return run_applet_main(argv, echo_main);
8826 }
8827 #endif
8828 #if ENABLE_HUSH_PRINTF
8829 static int FAST_FUNC builtin_printf(char **argv)
8830 {
8831         return run_applet_main(argv, printf_main);
8832 }
8833 #endif
8834
8835 #if ENABLE_HUSH_HELP
8836 static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM)
8837 {
8838         const struct built_in_command *x;
8839
8840         printf(
8841                 "Built-in commands:\n"
8842                 "------------------\n");
8843         for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) {
8844                 if (x->b_descr)
8845                         printf("%-10s%s\n", x->b_cmd, x->b_descr);
8846         }
8847         return EXIT_SUCCESS;
8848 }
8849 #endif
8850
8851 #if MAX_HISTORY && ENABLE_FEATURE_EDITING
8852 static int FAST_FUNC builtin_history(char **argv UNUSED_PARAM)
8853 {
8854         show_history(G.line_input_state);
8855         return EXIT_SUCCESS;
8856 }
8857 #endif
8858
8859 static char **skip_dash_dash(char **argv)
8860 {
8861         argv++;
8862         if (argv[0] && argv[0][0] == '-' && argv[0][1] == '-' && argv[0][2] == '\0')
8863                 argv++;
8864         return argv;
8865 }
8866
8867 static int FAST_FUNC builtin_cd(char **argv)
8868 {
8869         const char *newdir;
8870
8871         argv = skip_dash_dash(argv);
8872         newdir = argv[0];
8873         if (newdir == NULL) {
8874                 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
8875                  * bash says "bash: cd: HOME not set" and does nothing
8876                  * (exitcode 1)
8877                  */
8878                 const char *home = get_local_var_value("HOME");
8879                 newdir = home ? home : "/";
8880         }
8881         if (chdir(newdir)) {
8882                 /* Mimic bash message exactly */
8883                 bb_perror_msg("cd: %s", newdir);
8884                 return EXIT_FAILURE;
8885         }
8886         /* Read current dir (get_cwd(1) is inside) and set PWD.
8887          * Note: do not enforce exporting. If PWD was unset or unexported,
8888          * set it again, but do not export. bash does the same.
8889          */
8890         set_pwd_var(/*exp:*/ 0);
8891         return EXIT_SUCCESS;
8892 }
8893
8894 static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM)
8895 {
8896         puts(get_cwd(0));
8897         return EXIT_SUCCESS;
8898 }
8899
8900 static int FAST_FUNC builtin_eval(char **argv)
8901 {
8902         int rcode = EXIT_SUCCESS;
8903
8904         argv = skip_dash_dash(argv);
8905         if (*argv) {
8906                 char *str = expand_strvec_to_string(argv);
8907                 /* bash:
8908                  * eval "echo Hi; done" ("done" is syntax error):
8909                  * "echo Hi" will not execute too.
8910                  */
8911                 parse_and_run_string(str);
8912                 free(str);
8913                 rcode = G.last_exitcode;
8914         }
8915         return rcode;
8916 }
8917
8918 static int FAST_FUNC builtin_exec(char **argv)
8919 {
8920         argv = skip_dash_dash(argv);
8921         if (argv[0] == NULL)
8922                 return EXIT_SUCCESS; /* bash does this */
8923
8924         /* Careful: we can end up here after [v]fork. Do not restore
8925          * tty pgrp then, only top-level shell process does that */
8926         if (G_saved_tty_pgrp && getpid() == G.root_pid)
8927                 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
8928
8929         /* TODO: if exec fails, bash does NOT exit! We do.
8930          * We'll need to undo trap cleanup (it's inside execvp_or_die)
8931          * and tcsetpgrp, and this is inherently racy.
8932          */
8933         execvp_or_die(argv);
8934 }
8935
8936 static int FAST_FUNC builtin_exit(char **argv)
8937 {
8938         debug_printf_exec("%s()\n", __func__);
8939
8940         /* interactive bash:
8941          * # trap "echo EEE" EXIT
8942          * # exit
8943          * exit
8944          * There are stopped jobs.
8945          * (if there are _stopped_ jobs, running ones don't count)
8946          * # exit
8947          * exit
8948          * EEE (then bash exits)
8949          *
8950          * TODO: we can use G.exiting = -1 as indicator "last cmd was exit"
8951          */
8952
8953         /* note: EXIT trap is run by hush_exit */
8954         argv = skip_dash_dash(argv);
8955         if (argv[0] == NULL)
8956                 hush_exit(G.last_exitcode);
8957         /* mimic bash: exit 123abc == exit 255 + error msg */
8958         xfunc_error_retval = 255;
8959         /* bash: exit -2 == exit 254, no error msg */
8960         hush_exit(xatoi(argv[0]) & 0xff);
8961 }
8962
8963 #if ENABLE_HUSH_TYPE
8964 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */
8965 static int FAST_FUNC builtin_type(char **argv)
8966 {
8967         int ret = EXIT_SUCCESS;
8968
8969         while (*++argv) {
8970                 const char *type;
8971                 char *path = NULL;
8972
8973                 if (0) {} /* make conditional compile easier below */
8974                 /*else if (find_alias(*argv))
8975                         type = "an alias";*/
8976 #if ENABLE_HUSH_FUNCTIONS
8977                 else if (find_function(*argv))
8978                         type = "a function";
8979 #endif
8980                 else if (find_builtin(*argv))
8981                         type = "a shell builtin";
8982                 else if ((path = find_in_path(*argv)) != NULL)
8983                         type = path;
8984                 else {
8985                         bb_error_msg("type: %s: not found", *argv);
8986                         ret = EXIT_FAILURE;
8987                         continue;
8988                 }
8989
8990                 printf("%s is %s\n", *argv, type);
8991                 free(path);
8992         }
8993
8994         return ret;
8995 }
8996 #endif
8997
8998 #if ENABLE_HUSH_READ
8999 /* Interruptibility of read builtin in bash
9000  * (tested on bash-4.2.8 by sending signals (not by ^C)):
9001  *
9002  * Empty trap makes read ignore corresponding signal, for any signal.
9003  *
9004  * SIGINT:
9005  * - terminates non-interactive shell;
9006  * - interrupts read in interactive shell;
9007  * if it has non-empty trap:
9008  * - executes trap and returns to command prompt in interactive shell;
9009  * - executes trap and returns to read in non-interactive shell;
9010  * SIGTERM:
9011  * - is ignored (does not interrupt) read in interactive shell;
9012  * - terminates non-interactive shell;
9013  * if it has non-empty trap:
9014  * - executes trap and returns to read;
9015  * SIGHUP:
9016  * - terminates shell (regardless of interactivity);
9017  * if it has non-empty trap:
9018  * - executes trap and returns to read;
9019  * SIGCHLD from children:
9020  * - does not interrupt read regardless of interactivity:
9021  *   try: sleep 1 & read x; echo $x
9022  */
9023 static int FAST_FUNC builtin_read(char **argv)
9024 {
9025         const char *r;
9026         char *opt_n = NULL;
9027         char *opt_p = NULL;
9028         char *opt_t = NULL;
9029         char *opt_u = NULL;
9030         const char *ifs;
9031         int read_flags;
9032
9033         /* "!": do not abort on errors.
9034          * Option string must start with "sr" to match BUILTIN_READ_xxx
9035          */
9036         read_flags = getopt32(argv, "!srn:p:t:u:", &opt_n, &opt_p, &opt_t, &opt_u);
9037         if (read_flags == (uint32_t)-1)
9038                 return EXIT_FAILURE;
9039         argv += optind;
9040         ifs = get_local_var_value("IFS"); /* can be NULL */
9041
9042  again:
9043         r = shell_builtin_read(set_local_var_from_halves,
9044                 argv,
9045                 ifs,
9046                 read_flags,
9047                 opt_n,
9048                 opt_p,
9049                 opt_t,
9050                 opt_u
9051         );
9052
9053         if ((uintptr_t)r == 1 && errno == EINTR) {
9054                 unsigned sig = check_and_run_traps();
9055                 if (sig != SIGINT)
9056                         goto again;
9057         }
9058
9059         if ((uintptr_t)r > 1) {
9060                 bb_error_msg("%s", r);
9061                 r = (char*)(uintptr_t)1;
9062         }
9063
9064         return (uintptr_t)r;
9065 }
9066 #endif
9067
9068 #if ENABLE_HUSH_UMASK
9069 static int FAST_FUNC builtin_umask(char **argv)
9070 {
9071         int rc;
9072         mode_t mask;
9073
9074         rc = 1;
9075         mask = umask(0);
9076         argv = skip_dash_dash(argv);
9077         if (argv[0]) {
9078                 mode_t old_mask = mask;
9079
9080                 /* numeric umasks are taken as-is */
9081                 /* symbolic umasks are inverted: "umask a=rx" calls umask(222) */
9082                 if (!isdigit(argv[0][0]))
9083                         mask ^= 0777;
9084                 mask = bb_parse_mode(argv[0], mask);
9085                 if (!isdigit(argv[0][0]))
9086                         mask ^= 0777;
9087                 if ((unsigned)mask > 0777) {
9088                         mask = old_mask;
9089                         /* bash messages:
9090                          * bash: umask: 'q': invalid symbolic mode operator
9091                          * bash: umask: 999: octal number out of range
9092                          */
9093                         bb_error_msg("%s: invalid mode '%s'", "umask", argv[0]);
9094                         rc = 0;
9095                 }
9096         } else {
9097                 /* Mimic bash */
9098                 printf("%04o\n", (unsigned) mask);
9099                 /* fall through and restore mask which we set to 0 */
9100         }
9101         umask(mask);
9102
9103         return !rc; /* rc != 0 - success */
9104 }
9105 #endif
9106
9107 #if ENABLE_HUSH_EXPORT || ENABLE_HUSH_TRAP
9108 static void print_escaped(const char *s)
9109 {
9110         if (*s == '\'')
9111                 goto squote;
9112         do {
9113                 const char *p = strchrnul(s, '\'');
9114                 /* print 'xxxx', possibly just '' */
9115                 printf("'%.*s'", (int)(p - s), s);
9116                 if (*p == '\0')
9117                         break;
9118                 s = p;
9119  squote:
9120                 /* s points to '; print "'''...'''" */
9121                 putchar('"');
9122                 do putchar('\''); while (*++s == '\'');
9123                 putchar('"');
9124         } while (*s);
9125 }
9126 #endif
9127
9128 #if ENABLE_HUSH_EXPORT || ENABLE_HUSH_LOCAL
9129 # if !ENABLE_HUSH_LOCAL
9130 #define helper_export_local(argv, exp, lvl) \
9131         helper_export_local(argv, exp)
9132 # endif
9133 static void helper_export_local(char **argv, int exp, int lvl)
9134 {
9135         do {
9136                 char *name = *argv;
9137                 char *name_end = strchrnul(name, '=');
9138
9139                 /* So far we do not check that name is valid (TODO?) */
9140
9141                 if (*name_end == '\0') {
9142                         struct variable *var, **vpp;
9143
9144                         vpp = get_ptr_to_local_var(name, name_end - name);
9145                         var = vpp ? *vpp : NULL;
9146
9147                         if (exp == -1) { /* unexporting? */
9148                                 /* export -n NAME (without =VALUE) */
9149                                 if (var) {
9150                                         var->flg_export = 0;
9151                                         debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
9152                                         unsetenv(name);
9153                                 } /* else: export -n NOT_EXISTING_VAR: no-op */
9154                                 continue;
9155                         }
9156                         if (exp == 1) { /* exporting? */
9157                                 /* export NAME (without =VALUE) */
9158                                 if (var) {
9159                                         var->flg_export = 1;
9160                                         debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
9161                                         putenv(var->varstr);
9162                                         continue;
9163                                 }
9164                         }
9165 # if ENABLE_HUSH_LOCAL
9166                         if (exp == 0 /* local? */
9167                          && var && var->func_nest_level == lvl
9168                         ) {
9169                                 /* "local x=abc; ...; local x" - ignore second local decl */
9170                                 continue;
9171                         }
9172 # endif
9173                         /* Exporting non-existing variable.
9174                          * bash does not put it in environment,
9175                          * but remembers that it is exported,
9176                          * and does put it in env when it is set later.
9177                          * We just set it to "" and export. */
9178                         /* Or, it's "local NAME" (without =VALUE).
9179                          * bash sets the value to "". */
9180                         name = xasprintf("%s=", name);
9181                 } else {
9182                         /* (Un)exporting/making local NAME=VALUE */
9183                         name = xstrdup(name);
9184                 }
9185                 set_local_var(name, /*exp:*/ exp, /*lvl:*/ lvl, /*ro:*/ 0);
9186         } while (*++argv);
9187 }
9188 #endif
9189
9190 #if ENABLE_HUSH_EXPORT
9191 static int FAST_FUNC builtin_export(char **argv)
9192 {
9193         unsigned opt_unexport;
9194
9195 #if ENABLE_HUSH_EXPORT_N
9196         /* "!": do not abort on errors */
9197         opt_unexport = getopt32(argv, "!n");
9198         if (opt_unexport == (uint32_t)-1)
9199                 return EXIT_FAILURE;
9200         argv += optind;
9201 #else
9202         opt_unexport = 0;
9203         argv++;
9204 #endif
9205
9206         if (argv[0] == NULL) {
9207                 char **e = environ;
9208                 if (e) {
9209                         while (*e) {
9210 #if 0
9211                                 puts(*e++);
9212 #else
9213                                 /* ash emits: export VAR='VAL'
9214                                  * bash: declare -x VAR="VAL"
9215                                  * we follow ash example */
9216                                 const char *s = *e++;
9217                                 const char *p = strchr(s, '=');
9218
9219                                 if (!p) /* wtf? take next variable */
9220                                         continue;
9221                                 /* export var= */
9222                                 printf("export %.*s", (int)(p - s) + 1, s);
9223                                 print_escaped(p + 1);
9224                                 putchar('\n');
9225 #endif
9226                         }
9227                         /*fflush_all(); - done after each builtin anyway */
9228                 }
9229                 return EXIT_SUCCESS;
9230         }
9231
9232         helper_export_local(argv, (opt_unexport ? -1 : 1), 0);
9233
9234         return EXIT_SUCCESS;
9235 }
9236 #endif
9237
9238 #if ENABLE_HUSH_LOCAL
9239 static int FAST_FUNC builtin_local(char **argv)
9240 {
9241         if (G.func_nest_level == 0) {
9242                 bb_error_msg("%s: not in a function", argv[0]);
9243                 return EXIT_FAILURE; /* bash compat */
9244         }
9245         helper_export_local(argv, 0, G.func_nest_level);
9246         return EXIT_SUCCESS;
9247 }
9248 #endif
9249
9250 #if ENABLE_HUSH_UNSET
9251 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
9252 static int FAST_FUNC builtin_unset(char **argv)
9253 {
9254         int ret;
9255         unsigned opts;
9256
9257         /* "!": do not abort on errors */
9258         /* "+": stop at 1st non-option */
9259         opts = getopt32(argv, "!+vf");
9260         if (opts == (unsigned)-1)
9261                 return EXIT_FAILURE;
9262         if (opts == 3) {
9263                 bb_error_msg("unset: -v and -f are exclusive");
9264                 return EXIT_FAILURE;
9265         }
9266         argv += optind;
9267
9268         ret = EXIT_SUCCESS;
9269         while (*argv) {
9270                 if (!(opts & 2)) { /* not -f */
9271                         if (unset_local_var(*argv)) {
9272                                 /* unset <nonexistent_var> doesn't fail.
9273                                  * Error is when one tries to unset RO var.
9274                                  * Message was printed by unset_local_var. */
9275                                 ret = EXIT_FAILURE;
9276                         }
9277                 }
9278 # if ENABLE_HUSH_FUNCTIONS
9279                 else {
9280                         unset_func(*argv);
9281                 }
9282 # endif
9283                 argv++;
9284         }
9285         return ret;
9286 }
9287 #endif
9288
9289 #if ENABLE_HUSH_SET
9290 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
9291  * built-in 'set' handler
9292  * SUSv3 says:
9293  * set [-abCefhmnuvx] [-o option] [argument...]
9294  * set [+abCefhmnuvx] [+o option] [argument...]
9295  * set -- [argument...]
9296  * set -o
9297  * set +o
9298  * Implementations shall support the options in both their hyphen and
9299  * plus-sign forms. These options can also be specified as options to sh.
9300  * Examples:
9301  * Write out all variables and their values: set
9302  * Set $1, $2, and $3 and set "$#" to 3: set c a b
9303  * Turn on the -x and -v options: set -xv
9304  * Unset all positional parameters: set --
9305  * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
9306  * Set the positional parameters to the expansion of x, even if x expands
9307  * with a leading '-' or '+': set -- $x
9308  *
9309  * So far, we only support "set -- [argument...]" and some of the short names.
9310  */
9311 static int FAST_FUNC builtin_set(char **argv)
9312 {
9313         int n;
9314         char **pp, **g_argv;
9315         char *arg = *++argv;
9316
9317         if (arg == NULL) {
9318                 struct variable *e;
9319                 for (e = G.top_var; e; e = e->next)
9320                         puts(e->varstr);
9321                 return EXIT_SUCCESS;
9322         }
9323
9324         do {
9325                 if (strcmp(arg, "--") == 0) {
9326                         ++argv;
9327                         goto set_argv;
9328                 }
9329                 if (arg[0] != '+' && arg[0] != '-')
9330                         break;
9331                 for (n = 1; arg[n]; ++n) {
9332                         if (set_mode((arg[0] == '-'), arg[n], argv[1]))
9333                                 goto error;
9334                         if (arg[n] == 'o' && argv[1])
9335                                 argv++;
9336                 }
9337         } while ((arg = *++argv) != NULL);
9338         /* Now argv[0] is 1st argument */
9339
9340         if (arg == NULL)
9341                 return EXIT_SUCCESS;
9342  set_argv:
9343
9344         /* NB: G.global_argv[0] ($0) is never freed/changed */
9345         g_argv = G.global_argv;
9346         if (G.global_args_malloced) {
9347                 pp = g_argv;
9348                 while (*++pp)
9349                         free(*pp);
9350                 g_argv[1] = NULL;
9351         } else {
9352                 G.global_args_malloced = 1;
9353                 pp = xzalloc(sizeof(pp[0]) * 2);
9354                 pp[0] = g_argv[0]; /* retain $0 */
9355                 g_argv = pp;
9356         }
9357         /* This realloc's G.global_argv */
9358         G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
9359
9360         G.global_argc = 1 + string_array_len(pp + 1);
9361
9362         return EXIT_SUCCESS;
9363
9364         /* Nothing known, so abort */
9365  error:
9366         bb_error_msg("set: %s: invalid option", arg);
9367         return EXIT_FAILURE;
9368 }
9369 #endif
9370
9371 static int FAST_FUNC builtin_shift(char **argv)
9372 {
9373         int n = 1;
9374         argv = skip_dash_dash(argv);
9375         if (argv[0]) {
9376                 n = atoi(argv[0]);
9377         }
9378         if (n >= 0 && n < G.global_argc) {
9379                 if (G_global_args_malloced) {
9380                         int m = 1;
9381                         while (m <= n)
9382                                 free(G.global_argv[m++]);
9383                 }
9384                 G.global_argc -= n;
9385                 memmove(&G.global_argv[1], &G.global_argv[n+1],
9386                                 G.global_argc * sizeof(G.global_argv[0]));
9387                 return EXIT_SUCCESS;
9388         }
9389         return EXIT_FAILURE;
9390 }
9391
9392 static int FAST_FUNC builtin_source(char **argv)
9393 {
9394         char *arg_path, *filename;
9395         FILE *input;
9396         save_arg_t sv;
9397         char *args_need_save;
9398 #if ENABLE_HUSH_FUNCTIONS
9399         smallint sv_flg;
9400 #endif
9401
9402         argv = skip_dash_dash(argv);
9403         filename = argv[0];
9404         if (!filename) {
9405                 /* bash says: "bash: .: filename argument required" */
9406                 return 2; /* bash compat */
9407         }
9408         arg_path = NULL;
9409         if (!strchr(filename, '/')) {
9410                 arg_path = find_in_path(filename);
9411                 if (arg_path)
9412                         filename = arg_path;
9413         }
9414         input = remember_FILE(fopen_or_warn(filename, "r"));
9415         free(arg_path);
9416         if (!input) {
9417                 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
9418                 /* POSIX: non-interactive shell should abort here,
9419                  * not merely fail. So far no one complained :)
9420                  */
9421                 return EXIT_FAILURE;
9422         }
9423
9424 #if ENABLE_HUSH_FUNCTIONS
9425         sv_flg = G_flag_return_in_progress;
9426         /* "we are inside sourced file, ok to use return" */
9427         G_flag_return_in_progress = -1;
9428 #endif
9429         args_need_save = argv[1]; /* used as a boolean variable */
9430         if (args_need_save)
9431                 save_and_replace_G_args(&sv, argv);
9432
9433         /* "false; . ./empty_line; echo Zero:$?" should print 0 */
9434         G.last_exitcode = 0;
9435         parse_and_run_file(input);
9436         fclose_and_forget(input);
9437
9438         if (args_need_save) /* can't use argv[1] instead: "shift" can mangle it */
9439                 restore_G_args(&sv, argv);
9440 #if ENABLE_HUSH_FUNCTIONS
9441         G_flag_return_in_progress = sv_flg;
9442 #endif
9443
9444         return G.last_exitcode;
9445 }
9446
9447 #if ENABLE_HUSH_TRAP
9448 static int FAST_FUNC builtin_trap(char **argv)
9449 {
9450         int sig;
9451         char *new_cmd;
9452
9453         if (!G_traps)
9454                 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
9455
9456         argv++;
9457         if (!*argv) {
9458                 int i;
9459                 /* No args: print all trapped */
9460                 for (i = 0; i < NSIG; ++i) {
9461                         if (G_traps[i]) {
9462                                 printf("trap -- ");
9463                                 print_escaped(G_traps[i]);
9464                                 /* note: bash adds "SIG", but only if invoked
9465                                  * as "bash". If called as "sh", or if set -o posix,
9466                                  * then it prints short signal names.
9467                                  * We are printing short names: */
9468                                 printf(" %s\n", get_signame(i));
9469                         }
9470                 }
9471                 /*fflush_all(); - done after each builtin anyway */
9472                 return EXIT_SUCCESS;
9473         }
9474
9475         new_cmd = NULL;
9476         /* If first arg is a number: reset all specified signals */
9477         sig = bb_strtou(*argv, NULL, 10);
9478         if (errno == 0) {
9479                 int ret;
9480  process_sig_list:
9481                 ret = EXIT_SUCCESS;
9482                 while (*argv) {
9483                         sighandler_t handler;
9484
9485                         sig = get_signum(*argv++);
9486                         if (sig < 0 || sig >= NSIG) {
9487                                 ret = EXIT_FAILURE;
9488                                 /* Mimic bash message exactly */
9489                                 bb_error_msg("trap: %s: invalid signal specification", argv[-1]);
9490                                 continue;
9491                         }
9492
9493                         free(G_traps[sig]);
9494                         G_traps[sig] = xstrdup(new_cmd);
9495
9496                         debug_printf("trap: setting SIG%s (%i) to '%s'\n",
9497                                 get_signame(sig), sig, G_traps[sig]);
9498
9499                         /* There is no signal for 0 (EXIT) */
9500                         if (sig == 0)
9501                                 continue;
9502
9503                         if (new_cmd)
9504                                 handler = (new_cmd[0] ? record_pending_signo : SIG_IGN);
9505                         else
9506                                 /* We are removing trap handler */
9507                                 handler = pick_sighandler(sig);
9508                         install_sighandler(sig, handler);
9509                 }
9510                 return ret;
9511         }
9512
9513         if (!argv[1]) { /* no second arg */
9514                 bb_error_msg("trap: invalid arguments");
9515                 return EXIT_FAILURE;
9516         }
9517
9518         /* First arg is "-": reset all specified to default */
9519         /* First arg is "--": skip it, the rest is "handler SIGs..." */
9520         /* Everything else: set arg as signal handler
9521          * (includes "" case, which ignores signal) */
9522         if (argv[0][0] == '-') {
9523                 if (argv[0][1] == '\0') { /* "-" */
9524                         /* new_cmd remains NULL: "reset these sigs" */
9525                         goto reset_traps;
9526                 }
9527                 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
9528                         argv++;
9529                 }
9530                 /* else: "-something", no special meaning */
9531         }
9532         new_cmd = *argv;
9533  reset_traps:
9534         argv++;
9535         goto process_sig_list;
9536 }
9537 #endif
9538
9539 #if ENABLE_HUSH_JOB
9540 static struct pipe *parse_jobspec(const char *str)
9541 {
9542         struct pipe *pi;
9543         unsigned jobnum;
9544
9545         if (sscanf(str, "%%%u", &jobnum) != 1) {
9546                 if (str[0] != '%'
9547                  || (str[1] != '%' && str[1] != '+' && str[1] != '\0')
9548                 ) {
9549                         bb_error_msg("bad argument '%s'", str);
9550                         return NULL;
9551                 }
9552                 /* It is "%%", "%+" or "%" - current job */
9553                 jobnum = G.last_jobid;
9554                 if (jobnum == 0) {
9555                         bb_error_msg("no current job");
9556                         return NULL;
9557                 }
9558         }
9559         for (pi = G.job_list; pi; pi = pi->next) {
9560                 if (pi->jobid == jobnum) {
9561                         return pi;
9562                 }
9563         }
9564         bb_error_msg("%u: no such job", jobnum);
9565         return NULL;
9566 }
9567
9568 static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM)
9569 {
9570         struct pipe *job;
9571         const char *status_string;
9572
9573         checkjobs(NULL, 0 /*(no pid to wait for)*/);
9574         for (job = G.job_list; job; job = job->next) {
9575                 if (job->alive_cmds == job->stopped_cmds)
9576                         status_string = "Stopped";
9577                 else
9578                         status_string = "Running";
9579
9580                 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
9581         }
9582         return EXIT_SUCCESS;
9583 }
9584
9585 /* built-in 'fg' and 'bg' handler */
9586 static int FAST_FUNC builtin_fg_bg(char **argv)
9587 {
9588         int i;
9589         struct pipe *pi;
9590
9591         if (!G_interactive_fd)
9592                 return EXIT_FAILURE;
9593
9594         /* If they gave us no args, assume they want the last backgrounded task */
9595         if (!argv[1]) {
9596                 for (pi = G.job_list; pi; pi = pi->next) {
9597                         if (pi->jobid == G.last_jobid) {
9598                                 goto found;
9599                         }
9600                 }
9601                 bb_error_msg("%s: no current job", argv[0]);
9602                 return EXIT_FAILURE;
9603         }
9604
9605         pi = parse_jobspec(argv[1]);
9606         if (!pi)
9607                 return EXIT_FAILURE;
9608  found:
9609         /* TODO: bash prints a string representation
9610          * of job being foregrounded (like "sleep 1 | cat") */
9611         if (argv[0][0] == 'f' && G_saved_tty_pgrp) {
9612                 /* Put the job into the foreground.  */
9613                 tcsetpgrp(G_interactive_fd, pi->pgrp);
9614         }
9615
9616         /* Restart the processes in the job */
9617         debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
9618         for (i = 0; i < pi->num_cmds; i++) {
9619                 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
9620         }
9621         pi->stopped_cmds = 0;
9622
9623         i = kill(- pi->pgrp, SIGCONT);
9624         if (i < 0) {
9625                 if (errno == ESRCH) {
9626                         delete_finished_bg_job(pi);
9627                         return EXIT_SUCCESS;
9628                 }
9629                 bb_perror_msg("kill (SIGCONT)");
9630         }
9631
9632         if (argv[0][0] == 'f') {
9633                 remove_bg_job(pi);
9634                 return checkjobs_and_fg_shell(pi);
9635         }
9636         return EXIT_SUCCESS;
9637 }
9638 #endif
9639
9640 #if ENABLE_HUSH_KILL
9641 static int FAST_FUNC builtin_kill(char **argv)
9642 {
9643         int ret = 0;
9644
9645 # if ENABLE_HUSH_JOB
9646         if (argv[1] && strcmp(argv[1], "-l") != 0) {
9647                 int i = 1;
9648
9649                 do {
9650                         struct pipe *pi;
9651                         char *dst;
9652                         int j, n;
9653
9654                         if (argv[i][0] != '%')
9655                                 continue;
9656                         /*
9657                          * "kill %N" - job kill
9658                          * Converting to pgrp / pid kill
9659                          */
9660                         pi = parse_jobspec(argv[i]);
9661                         if (!pi) {
9662                                 /* Eat bad jobspec */
9663                                 j = i;
9664                                 do {
9665                                         j++;
9666                                         argv[j - 1] = argv[j];
9667                                 } while (argv[j]);
9668                                 ret = 1;
9669                                 i--;
9670                                 continue;
9671                         }
9672                         /*
9673                          * In jobs started under job control, we signal
9674                          * entire process group by kill -PGRP_ID.
9675                          * This happens, f.e., in interactive shell.
9676                          *
9677                          * Otherwise, we signal each child via
9678                          * kill PID1 PID2 PID3.
9679                          * Testcases:
9680                          * sh -c 'sleep 1|sleep 1 & kill %1'
9681                          * sh -c 'true|sleep 2 & sleep 1; kill %1'
9682                          * sh -c 'true|sleep 1 & sleep 2; kill %1'
9683                          */
9684                         n = G_interactive_fd ? 1 : pi->num_cmds;
9685                         dst = alloca(n * sizeof(int)*4);
9686                         argv[i] = dst;
9687                         if (G_interactive_fd)
9688                                 dst += sprintf(dst, " -%u", (int)pi->pgrp);
9689                         else for (j = 0; j < n; j++) {
9690                                 struct command *cmd = &pi->cmds[j];
9691                                 /* Skip exited members of the job */
9692                                 if (cmd->pid == 0)
9693                                         continue;
9694                                 /*
9695                                  * kill_main has matching code to expect
9696                                  * leading space. Needed to not confuse
9697                                  * negative pids with "kill -SIGNAL_NO" syntax
9698                                  */
9699                                 dst += sprintf(dst, " %u", (int)cmd->pid);
9700                         }
9701                         *dst = '\0';
9702                 } while (argv[++i]);
9703         }
9704 # endif
9705
9706         if (argv[1] || ret == 0) {
9707                 ret = run_applet_main(argv, kill_main);
9708         }
9709         /* else: ret = 1, "kill %bad_jobspec" case */
9710         return ret;
9711 }
9712 #endif
9713
9714 #if ENABLE_HUSH_WAIT
9715 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
9716 #if !ENABLE_HUSH_JOB
9717 # define wait_for_child_or_signal(pipe,pid) wait_for_child_or_signal(pid)
9718 #endif
9719 static int wait_for_child_or_signal(struct pipe *waitfor_pipe, pid_t waitfor_pid)
9720 {
9721         int ret = 0;
9722         for (;;) {
9723                 int sig;
9724                 sigset_t oldset;
9725
9726                 if (!sigisemptyset(&G.pending_set))
9727                         goto check_sig;
9728
9729                 /* waitpid is not interruptible by SA_RESTARTed
9730                  * signals which we use. Thus, this ugly dance:
9731                  */
9732
9733                 /* Make sure possible SIGCHLD is stored in kernel's
9734                  * pending signal mask before we call waitpid.
9735                  * Or else we may race with SIGCHLD, lose it,
9736                  * and get stuck in sigsuspend...
9737                  */
9738                 sigfillset(&oldset); /* block all signals, remember old set */
9739                 sigprocmask(SIG_SETMASK, &oldset, &oldset);
9740
9741                 if (!sigisemptyset(&G.pending_set)) {
9742                         /* Crap! we raced with some signal! */
9743                         goto restore;
9744                 }
9745
9746                 /*errno = 0; - checkjobs does this */
9747 /* Can't pass waitfor_pipe into checkjobs(): it won't be interruptible */
9748                 ret = checkjobs(NULL, waitfor_pid); /* waitpid(WNOHANG) inside */
9749                 debug_printf_exec("checkjobs:%d\n", ret);
9750 #if ENABLE_HUSH_JOB
9751                 if (waitfor_pipe) {
9752                         int rcode = job_exited_or_stopped(waitfor_pipe);
9753                         debug_printf_exec("job_exited_or_stopped:%d\n", rcode);
9754                         if (rcode >= 0) {
9755                                 ret = rcode;
9756                                 sigprocmask(SIG_SETMASK, &oldset, NULL);
9757                                 break;
9758                         }
9759                 }
9760 #endif
9761                 /* if ECHILD, there are no children (ret is -1 or 0) */
9762                 /* if ret == 0, no children changed state */
9763                 /* if ret != 0, it's exitcode+1 of exited waitfor_pid child */
9764                 if (errno == ECHILD || ret) {
9765                         ret--;
9766                         if (ret < 0) /* if ECHILD, may need to fix "ret" */
9767                                 ret = 0;
9768                         sigprocmask(SIG_SETMASK, &oldset, NULL);
9769                         break;
9770                 }
9771                 /* Wait for SIGCHLD or any other signal */
9772                 /* It is vitally important for sigsuspend that SIGCHLD has non-DFL handler! */
9773                 /* Note: sigsuspend invokes signal handler */
9774                 sigsuspend(&oldset);
9775  restore:
9776                 sigprocmask(SIG_SETMASK, &oldset, NULL);
9777  check_sig:
9778                 /* So, did we get a signal? */
9779                 sig = check_and_run_traps();
9780                 if (sig /*&& sig != SIGCHLD - always true */) {
9781                         ret = 128 + sig;
9782                         break;
9783                 }
9784                 /* SIGCHLD, or no signal, or ignored one, such as SIGQUIT. Repeat */
9785         }
9786         return ret;
9787 }
9788
9789 static int FAST_FUNC builtin_wait(char **argv)
9790 {
9791         int ret;
9792         int status;
9793
9794         argv = skip_dash_dash(argv);
9795         if (argv[0] == NULL) {
9796                 /* Don't care about wait results */
9797                 /* Note 1: must wait until there are no more children */
9798                 /* Note 2: must be interruptible */
9799                 /* Examples:
9800                  * $ sleep 3 & sleep 6 & wait
9801                  * [1] 30934 sleep 3
9802                  * [2] 30935 sleep 6
9803                  * [1] Done                   sleep 3
9804                  * [2] Done                   sleep 6
9805                  * $ sleep 3 & sleep 6 & wait
9806                  * [1] 30936 sleep 3
9807                  * [2] 30937 sleep 6
9808                  * [1] Done                   sleep 3
9809                  * ^C <-- after ~4 sec from keyboard
9810                  * $
9811                  */
9812                 return wait_for_child_or_signal(NULL, 0 /*(no job and no pid to wait for)*/);
9813         }
9814
9815         do {
9816                 pid_t pid = bb_strtou(*argv, NULL, 10);
9817                 if (errno || pid <= 0) {
9818 #if ENABLE_HUSH_JOB
9819                         if (argv[0][0] == '%') {
9820                                 struct pipe *wait_pipe;
9821                                 ret = 127; /* bash compat for bad jobspecs */
9822                                 wait_pipe = parse_jobspec(*argv);
9823                                 if (wait_pipe) {
9824                                         ret = job_exited_or_stopped(wait_pipe);
9825                                         if (ret < 0)
9826                                                 ret = wait_for_child_or_signal(wait_pipe, 0);
9827                                 }
9828                                 /* else: parse_jobspec() already emitted error msg */
9829                                 continue;
9830                         }
9831 #endif
9832                         /* mimic bash message */
9833                         bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
9834                         ret = EXIT_FAILURE;
9835                         continue; /* bash checks all argv[] */
9836                 }
9837
9838                 /* Do we have such child? */
9839                 ret = waitpid(pid, &status, WNOHANG);
9840                 if (ret < 0) {
9841                         /* No */
9842                         if (errno == ECHILD) {
9843                                 if (G.last_bg_pid > 0 && pid == G.last_bg_pid) {
9844                                         /* "wait $!" but last bg task has already exited. Try:
9845                                          * (sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $?
9846                                          * In bash it prints exitcode 0, then 3.
9847                                          * In dash, it is 127.
9848                                          */
9849                                         /* ret = G.last_bg_pid_exitstatus - FIXME */
9850                                 } else {
9851                                         /* Example: "wait 1". mimic bash message */
9852                                         bb_error_msg("wait: pid %d is not a child of this shell", (int)pid);
9853                                 }
9854                         } else {
9855                                 /* ??? */
9856                                 bb_perror_msg("wait %s", *argv);
9857                         }
9858                         ret = 127;
9859                         continue; /* bash checks all argv[] */
9860                 }
9861                 if (ret == 0) {
9862                         /* Yes, and it still runs */
9863                         ret = wait_for_child_or_signal(NULL, pid);
9864                 } else {
9865                         /* Yes, and it just exited */
9866                         process_wait_result(NULL, pid, status);
9867                         ret = WEXITSTATUS(status);
9868                         if (WIFSIGNALED(status))
9869                                 ret = 128 + WTERMSIG(status);
9870                 }
9871         } while (*++argv);
9872
9873         return ret;
9874 }
9875 #endif
9876
9877 #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
9878 static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
9879 {
9880         if (argv[1]) {
9881                 def = bb_strtou(argv[1], NULL, 10);
9882                 if (errno || def < def_min || argv[2]) {
9883                         bb_error_msg("%s: bad arguments", argv[0]);
9884                         def = UINT_MAX;
9885                 }
9886         }
9887         return def;
9888 }
9889 #endif
9890
9891 #if ENABLE_HUSH_LOOPS
9892 static int FAST_FUNC builtin_break(char **argv)
9893 {
9894         unsigned depth;
9895         if (G.depth_of_loop == 0) {
9896                 bb_error_msg("%s: only meaningful in a loop", argv[0]);
9897                 /* if we came from builtin_continue(), need to undo "= 1" */
9898                 G.flag_break_continue = 0;
9899                 return EXIT_SUCCESS; /* bash compat */
9900         }
9901         G.flag_break_continue++; /* BC_BREAK = 1, or BC_CONTINUE = 2 */
9902
9903         G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
9904         if (depth == UINT_MAX)
9905                 G.flag_break_continue = BC_BREAK;
9906         if (G.depth_of_loop < depth)
9907                 G.depth_break_continue = G.depth_of_loop;
9908
9909         return EXIT_SUCCESS;
9910 }
9911
9912 static int FAST_FUNC builtin_continue(char **argv)
9913 {
9914         G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
9915         return builtin_break(argv);
9916 }
9917 #endif
9918
9919 #if ENABLE_HUSH_FUNCTIONS
9920 static int FAST_FUNC builtin_return(char **argv)
9921 {
9922         int rc;
9923
9924         if (G_flag_return_in_progress != -1) {
9925                 bb_error_msg("%s: not in a function or sourced script", argv[0]);
9926                 return EXIT_FAILURE; /* bash compat */
9927         }
9928
9929         G_flag_return_in_progress = 1;
9930
9931         /* bash:
9932          * out of range: wraps around at 256, does not error out
9933          * non-numeric param:
9934          * f() { false; return qwe; }; f; echo $?
9935          * bash: return: qwe: numeric argument required  <== we do this
9936          * 255  <== we also do this
9937          */
9938         rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
9939         return rc;
9940 }
9941 #endif
9942
9943 #if ENABLE_HUSH_MEMLEAK
9944 static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM)
9945 {
9946         void *p;
9947         unsigned long l;
9948
9949 # ifdef M_TRIM_THRESHOLD
9950         /* Optional. Reduces probability of false positives */
9951         malloc_trim(0);
9952 # endif
9953         /* Crude attempt to find where "free memory" starts,
9954          * sans fragmentation. */
9955         p = malloc(240);
9956         l = (unsigned long)p;
9957         free(p);
9958         p = malloc(3400);
9959         if (l < (unsigned long)p) l = (unsigned long)p;
9960         free(p);
9961
9962
9963 # if 0  /* debug */
9964         {
9965                 struct mallinfo mi = mallinfo();
9966                 printf("top alloc:0x%lx malloced:%d+%d=%d\n", l,
9967                         mi.arena, mi.hblkhd, mi.arena + mi.hblkhd);
9968         }
9969 # endif
9970
9971         if (!G.memleak_value)
9972                 G.memleak_value = l;
9973
9974         l -= G.memleak_value;
9975         if ((long)l < 0)
9976                 l = 0;
9977         l /= 1024;
9978         if (l > 127)
9979                 l = 127;
9980
9981         /* Exitcode is "how many kilobytes we leaked since 1st call" */
9982         return l;
9983 }
9984 #endif