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