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