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