13a06a492156bd45b3f8cbb82ad78d38e6e205ff
[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  * Credits:
12  *      The parser routines proper are all original material, first
13  *      written Dec 2000 and Jan 2001 by Larry Doolittle.  The
14  *      execution engine, the builtins, and much of the underlying
15  *      support has been adapted from busybox-0.49pre's lash, which is
16  *      Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
17  *      written by Erik Andersen <andersen@codepoet.org>.  That, in turn,
18  *      is based in part on ladsh.c, by Michael K. Johnson and Erik W.
19  *      Troan, which they placed in the public domain.  I don't know
20  *      how much of the Johnson/Troan code has survived the repeated
21  *      rewrites.
22  *
23  * Other credits:
24  *      o_addchr derived from similar w_addchar function in glibc-2.2.
25  *      parse_redirect, redirect_opt_num, and big chunks of main
26  *      and many builtins derived from contributions by Erik Andersen.
27  *      Miscellaneous bugfixes from Matt Kraai.
28  *
29  * There are two big (and related) architecture differences between
30  * this parser and the lash parser.  One is that this version is
31  * actually designed from the ground up to understand nearly all
32  * of the Bourne grammar.  The second, consequential change is that
33  * the parser and input reader have been turned inside out.  Now,
34  * the parser is in control, and asks for input as needed.  The old
35  * way had the input reader in control, and it asked for parsing to
36  * take place as needed.  The new way makes it much easier to properly
37  * handle the recursion implicit in the various substitutions, especially
38  * across continuation lines.
39  *
40  * POSIX syntax not implemented:
41  *      aliases
42  *      <(list) and >(list) Process Substitution
43  *      Tilde Expansion
44  *
45  * Bash stuff (maybe optionally enable?):
46  *      &> and >& redirection of stdout+stderr
47  *      Brace expansion
48  *      reserved words: [[ ]] function select
49  *      substrings ${var:1:5}
50  *
51  * TODOs:
52  *      grep for "TODO" and fix (some of them are easy)
53  *      change { and } from special chars to reserved words
54  *      $var refs in function do not pick up values set by "var=val func"
55  *      builtins: return, ulimit
56  *      follow IFS rules more precisely, including update semantics
57  *      figure out what to do with backslash-newline
58  *      continuation lines, both explicit and implicit - done?
59  *      SIGHUP handling
60  *      separate job control from interactiveness
61  *      (testcase: booting with init=/bin/hush does not show prompt (2009-04))
62  *
63  * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
64  */
65 #include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
66 #include <glob.h>
67 /* #include <dmalloc.h> */
68 #if ENABLE_HUSH_CASE
69 # include <fnmatch.h>
70 #endif
71 #include "math.h"
72 #include "match.h"
73 #ifndef PIPE_BUF
74 # define PIPE_BUF 4096           /* amount of buffering in a pipe */
75 #endif
76
77
78 /* Debug build knobs */
79 #define LEAK_HUNTING 0
80 #define BUILD_AS_NOMMU 0
81 /* Enable/disable sanity checks. Ok to enable in production,
82  * only adds a bit of bloat. Set to >1 to get non-production level verbosity.
83  * Keeping 1 for now even in released versions.
84  */
85 #define HUSH_DEBUG 1
86
87
88 #if BUILD_AS_NOMMU
89 # undef BB_MMU
90 # undef USE_FOR_NOMMU
91 # undef USE_FOR_MMU
92 # define BB_MMU 0
93 # define USE_FOR_NOMMU(...) __VA_ARGS__
94 # define USE_FOR_MMU(...)
95 #endif
96
97 #if defined SINGLE_APPLET_MAIN
98 /* STANDALONE does not make sense, and won't compile */
99 # undef CONFIG_FEATURE_SH_STANDALONE
100 # undef ENABLE_FEATURE_SH_STANDALONE
101 # undef USE_FEATURE_SH_STANDALONE
102 # define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__
103 # define ENABLE_FEATURE_SH_STANDALONE 0
104 # define USE_FEATURE_SH_STANDALONE(...)
105 # define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__
106 #endif
107
108 #if !ENABLE_HUSH_INTERACTIVE
109 # undef ENABLE_FEATURE_EDITING
110 # define ENABLE_FEATURE_EDITING 0
111 # undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
112 # define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
113 #endif
114
115 /* Do we support ANY keywords? */
116 #if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
117 # define HAS_KEYWORDS 1
118 # define IF_HAS_KEYWORDS(...) __VA_ARGS__
119 # define IF_HAS_NO_KEYWORDS(...)
120 #else
121 # define HAS_KEYWORDS 0
122 # define IF_HAS_KEYWORDS(...)
123 # define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
124 #endif
125
126 /* If you comment out one of these below, it will be #defined later
127  * to perform debug printfs to stderr: */
128 #define debug_printf(...)        do {} while (0)
129 /* Finer-grained debug switches */
130 #define debug_printf_parse(...)  do {} while (0)
131 #define debug_print_tree(a, b)   do {} while (0)
132 #define debug_printf_exec(...)   do {} while (0)
133 #define debug_printf_env(...)    do {} while (0)
134 #define debug_printf_jobs(...)   do {} while (0)
135 #define debug_printf_expand(...) do {} while (0)
136 #define debug_printf_glob(...)   do {} while (0)
137 #define debug_printf_list(...)   do {} while (0)
138 #define debug_printf_subst(...)  do {} while (0)
139 #define debug_printf_clean(...)  do {} while (0)
140
141 #define ERR_PTR ((void*)(long)1)
142
143 #define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
144
145 #define SPECIAL_VAR_SYMBOL 3
146
147 static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
148
149 /* This supports saving pointers malloced in vfork child,
150  * to be freed in the parent.
151  */
152 #if !BB_MMU
153 typedef struct nommu_save_t {
154         char **new_env;
155         char **old_env;
156         char **argv;
157         char **argv_from_re_execing;
158 } nommu_save_t;
159 #endif
160
161 /* The descrip member of this structure is only used to make
162  * debugging output pretty */
163 static const struct {
164         int mode;
165         signed char default_fd;
166         char descrip[3];
167 } redir_table[] = {
168         { 0,                         0, "??" },
169         { O_RDONLY,                  0, "<"  },
170         { O_CREAT|O_TRUNC|O_WRONLY,  1, ">"  },
171         { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
172         { O_RDONLY,                  0, "<<" },
173         { O_CREAT|O_RDWR,            1, "<>" },
174 /* Should not be needed. Bogus default_fd helps in debugging */
175 /*      { O_RDONLY,                 77, "<<" }, */
176 };
177
178 typedef enum reserved_style {
179         RES_NONE  = 0,
180 #if ENABLE_HUSH_IF
181         RES_IF    ,
182         RES_THEN  ,
183         RES_ELIF  ,
184         RES_ELSE  ,
185         RES_FI    ,
186 #endif
187 #if ENABLE_HUSH_LOOPS
188         RES_FOR   ,
189         RES_WHILE ,
190         RES_UNTIL ,
191         RES_DO    ,
192         RES_DONE  ,
193 #endif
194 #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
195         RES_IN    ,
196 #endif
197 #if ENABLE_HUSH_CASE
198         RES_CASE  ,
199         /* two pseudo-keywords support contrived "case" syntax: */
200         RES_MATCH , /* "word)" */
201         RES_CASEI , /* "this command is inside CASE" */
202         RES_ESAC  ,
203 #endif
204         RES_XXXX  ,
205         RES_SNTX
206 } reserved_style;
207
208 typedef struct o_string {
209         char *data;
210         int length; /* position where data is appended */
211         int maxlen;
212         /* Protect newly added chars against globbing
213          * (by prepending \ to *, ?, [, \) */
214         smallint o_escape;
215         smallint o_glob;
216         /* At least some part of the string was inside '' or "",
217          * possibly empty one: word"", wo''rd etc. */
218         smallint o_quoted;
219         smallint has_empty_slot;
220         smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
221 } o_string;
222 enum {
223         MAYBE_ASSIGNMENT = 0,
224         DEFINITELY_ASSIGNMENT = 1,
225         NOT_ASSIGNMENT = 2,
226         WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */
227 };
228 /* Used for initialization: o_string foo = NULL_O_STRING; */
229 #define NULL_O_STRING { NULL }
230
231 /* I can almost use ordinary FILE*.  Is open_memstream() universally
232  * available?  Where is it documented? */
233 typedef struct in_str {
234         const char *p;
235         /* eof_flag=1: last char in ->p is really an EOF */
236         char eof_flag; /* meaningless if ->p == NULL */
237         char peek_buf[2];
238 #if ENABLE_HUSH_INTERACTIVE
239         smallint promptme;
240         smallint promptmode; /* 0: PS1, 1: PS2 */
241 #endif
242         FILE *file;
243         int (*get) (struct in_str *);
244         int (*peek) (struct in_str *);
245 } in_str;
246 #define i_getch(input) ((input)->get(input))
247 #define i_peek(input) ((input)->peek(input))
248
249 struct redir_struct {
250         struct redir_struct *next;
251         char *rd_filename;          /* filename */
252         int rd_fd;                  /* fd to redirect */
253         /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
254         int rd_dup;
255         smallint rd_type;           /* (enum redir_type) */
256         /* note: for heredocs, rd_filename contains heredoc delimiter,
257          * and subsequently heredoc itself; and rd_dup is a bitmask:
258          * 1: do we need to trim leading tabs?
259          * 2: is heredoc quoted (<<'delim' syntax) ?
260          */
261 };
262 typedef enum redir_type {
263         REDIRECT_INVALID   = 0,
264         REDIRECT_INPUT     = 1,
265         REDIRECT_OVERWRITE = 2,
266         REDIRECT_APPEND    = 3,
267         REDIRECT_HEREDOC   = 4,
268         REDIRECT_IO        = 5,
269         REDIRECT_HEREDOC2  = 6, /* REDIRECT_HEREDOC after heredoc is loaded */
270
271         REDIRFD_CLOSE      = -3,
272         REDIRFD_SYNTAX_ERR = -2,
273         REDIRFD_TO_FILE    = -1,
274         /* otherwise, rd_fd is redirected to rd_dup */
275
276         HEREDOC_SKIPTABS = 1,
277         HEREDOC_QUOTED   = 2,
278 } redir_type;
279
280
281 struct command {
282         pid_t pid;                  /* 0 if exited */
283         int assignment_cnt;         /* how many argv[i] are assignments? */
284         smallint is_stopped;        /* is the command currently running? */
285         smallint grp_type;          /* GRP_xxx */
286 #define GRP_NORMAL   0
287 #define GRP_SUBSHELL 1
288 #if ENABLE_HUSH_FUNCTIONS
289 # define GRP_FUNCTION 2
290 #endif
291         struct pipe *group;         /* if non-NULL, this "command" is { list },
292                                      * ( list ), or a compound statement */
293 #if !BB_MMU
294         char *group_as_string;
295 #endif
296 #if ENABLE_HUSH_FUNCTIONS
297         struct function *child_func;
298 /* This field is used to prevent a bug here:
299  * while...do f1() {a;}; f1; f1 {b;}; f1; done
300  * When we execute "f1() {a;}" cmd, we create new function and clear
301  * cmd->group, cmd->group_as_string, cmd->argv[0].
302  * when we execute "f1 {b;}", we notice that f1 exists,
303  * and that it's "parent cmd" struct is still "alive",
304  * we put those fields back into cmd->xxx
305  * (struct function has ->parent_cmd ptr to facilitate that).
306  * When we loop back, we can execute "f1() {a;}" again and set f1 correctly.
307  * Without this trick, loop would execute a;b;b;b;...
308  * instead of correct sequence a;b;a;b;...
309  * When command is freed, it severs the link
310  * (sets ->child_func->parent_cmd to NULL).
311  */
312 #endif
313         char **argv;                /* command name and arguments */
314 /* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
315  * and on execution these are substituted with their values.
316  * Substitution can make _several_ words out of one argv[n]!
317  * Example: argv[0]=='.^C*^C.' here: echo .$*.
318  * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
319  */
320         struct redir_struct *redirects; /* I/O redirections */
321 };
322 /* Is there anything in this command at all? */
323 #define IS_NULL_CMD(cmd) \
324         (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects)
325
326
327 struct pipe {
328         struct pipe *next;
329         int num_cmds;               /* total number of commands in pipe */
330         int alive_cmds;             /* number of commands running (not exited) */
331         int stopped_cmds;           /* number of commands alive, but stopped */
332 #if ENABLE_HUSH_JOB
333         int jobid;                  /* job number */
334         pid_t pgrp;                 /* process group ID for the job */
335         char *cmdtext;              /* name of job */
336 #endif
337         struct command *cmds;       /* array of commands in pipe */
338         smallint followup;          /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
339         IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
340         IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
341 };
342 typedef enum pipe_style {
343         PIPE_SEQ = 1,
344         PIPE_AND = 2,
345         PIPE_OR  = 3,
346         PIPE_BG  = 4,
347 } pipe_style;
348 /* Is there anything in this pipe at all? */
349 #define IS_NULL_PIPE(pi) \
350         ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE))
351
352 /* This holds pointers to the various results of parsing */
353 struct parse_context {
354         /* linked list of pipes */
355         struct pipe *list_head;
356         /* last pipe (being constructed right now) */
357         struct pipe *pipe;
358         /* last command in pipe (being constructed right now) */
359         struct command *command;
360         /* last redirect in command->redirects list */
361         struct redir_struct *pending_redirect;
362 #if !BB_MMU
363         o_string as_string;
364 #endif
365 #if HAS_KEYWORDS
366         smallint ctx_res_w;
367         smallint ctx_inverted; /* "! cmd | cmd" */
368 #if ENABLE_HUSH_CASE
369         smallint ctx_dsemicolon; /* ";;" seen */
370 #endif
371         /* bitmask of FLAG_xxx, for figuring out valid reserved words */
372         int old_flag;
373         /* group we are enclosed in:
374          * example: "if pipe1; pipe2; then pipe3; fi"
375          * when we see "if" or "then", we malloc and copy current context,
376          * and make ->stack point to it. then we parse pipeN.
377          * when closing "then" / fi" / whatever is found,
378          * we move list_head into ->stack->command->group,
379          * copy ->stack into current context, and delete ->stack.
380          * (parsing of { list } and ( list ) doesn't use this method)
381          */
382         struct parse_context *stack;
383 #endif
384 };
385
386 /* On program start, environ points to initial environment.
387  * putenv adds new pointers into it, unsetenv removes them.
388  * Neither of these (de)allocates the strings.
389  * setenv allocates new strings in malloc space and does putenv,
390  * and thus setenv is unusable (leaky) for shell's purposes */
391 #define setenv(...) setenv_is_leaky_dont_use()
392 struct variable {
393         struct variable *next;
394         char *varstr;        /* points to "name=" portion */
395         int max_len;         /* if > 0, name is part of initial env; else name is malloced */
396         smallint flg_export; /* putenv should be done on this var */
397         smallint flg_read_only;
398 };
399
400 enum {
401         BC_BREAK = 1,
402         BC_CONTINUE = 2,
403 };
404
405 #if ENABLE_HUSH_FUNCTIONS
406 struct function {
407         struct function *next;
408         char *name;
409         struct command *parent_cmd;
410         struct pipe *body;
411 #if !BB_MMU
412         char *body_as_string;
413 #endif
414 };
415 #endif
416
417
418 /* "Globals" within this file */
419 /* Sorted roughly by size (smaller offsets == smaller code) */
420 struct globals {
421 #if ENABLE_HUSH_INTERACTIVE
422         /* 'interactive_fd' is a fd# open to ctty, if we have one
423          * _AND_ if we decided to act interactively */
424         int interactive_fd;
425         const char *PS1;
426         const char *PS2;
427 #define G_interactive_fd (G.interactive_fd)
428 #else
429 #define G_interactive_fd 0
430 #endif
431 #if ENABLE_FEATURE_EDITING
432         line_input_t *line_input_state;
433 #endif
434         pid_t root_pid;
435         pid_t last_bg_pid;
436 #if ENABLE_HUSH_JOB
437         int run_list_level;
438         pid_t saved_tty_pgrp;
439         int last_jobid;
440         struct pipe *job_list;
441         struct pipe *toplevel_list;
442 #endif
443         smallint flag_SIGINT;
444 #if ENABLE_HUSH_LOOPS
445         smallint flag_break_continue;
446 #endif
447         smallint fake_mode;
448         smallint exiting; /* used to prevent EXIT trap recursion */
449         /* These four support $?, $#, and $1 */
450         smalluint last_exitcode;
451         /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
452         smalluint global_args_malloced;
453         /* how many non-NULL argv's we have. NB: $# + 1 */
454         int global_argc;
455         char **global_argv;
456 #if !BB_MMU
457         char *argv0_for_re_execing;
458 #endif
459 #if ENABLE_HUSH_LOOPS
460         unsigned depth_break_continue;
461         unsigned depth_of_loop;
462 #endif
463         const char *ifs;
464         const char *cwd;
465         struct variable *top_var; /* = &G.shell_ver (set in main()) */
466         struct variable shell_ver;
467 #if ENABLE_HUSH_FUNCTIONS
468         struct function *top_func;
469 #endif
470         /* Signal and trap handling */
471 //      unsigned count_SIGCHLD;
472 //      unsigned handled_SIGCHLD;
473         /* which signals have non-DFL handler (even with no traps set)? */
474         unsigned non_DFL_mask;
475         char **traps; /* char *traps[NSIG] */
476         sigset_t blocked_set;
477         sigset_t inherited_set;
478 #if HUSH_DEBUG
479         unsigned long memleak_value;
480         int debug_indent;
481 #endif
482         char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2];
483 };
484 #define G (*ptr_to_globals)
485 /* Not #defining name to G.name - this quickly gets unwieldy
486  * (too many defines). Also, I actually prefer to see when a variable
487  * is global, thus "G." prefix is a useful hint */
488 #define INIT_G() do { \
489         SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
490 } while (0)
491
492
493 /* Function prototypes for builtins */
494 static int builtin_cd(char **argv);
495 static int builtin_echo(char **argv);
496 static int builtin_eval(char **argv);
497 static int builtin_exec(char **argv);
498 static int builtin_exit(char **argv);
499 static int builtin_export(char **argv);
500 #if ENABLE_HUSH_JOB
501 static int builtin_fg_bg(char **argv);
502 static int builtin_jobs(char **argv);
503 #endif
504 #if ENABLE_HUSH_HELP
505 static int builtin_help(char **argv);
506 #endif
507 #if HUSH_DEBUG
508 static int builtin_memleak(char **argv);
509 #endif
510 static int builtin_pwd(char **argv);
511 static int builtin_read(char **argv);
512 static int builtin_set(char **argv);
513 static int builtin_shift(char **argv);
514 static int builtin_source(char **argv);
515 static int builtin_test(char **argv);
516 static int builtin_trap(char **argv);
517 static int builtin_true(char **argv);
518 static int builtin_umask(char **argv);
519 static int builtin_unset(char **argv);
520 static int builtin_wait(char **argv);
521 #if ENABLE_HUSH_LOOPS
522 static int builtin_break(char **argv);
523 static int builtin_continue(char **argv);
524 #endif
525
526 /* Table of built-in functions.  They can be forked or not, depending on
527  * context: within pipes, they fork.  As simple commands, they do not.
528  * When used in non-forking context, they can change global variables
529  * in the parent shell process.  If forked, of course they cannot.
530  * For example, 'unset foo | whatever' will parse and run, but foo will
531  * still be set at the end. */
532 struct built_in_command {
533         const char *cmd;
534         int (*function)(char **argv);
535 #if ENABLE_HUSH_HELP
536         const char *descr;
537 #define BLTIN(cmd, func, help) { cmd, func, help }
538 #else
539 #define BLTIN(cmd, func, help) { cmd, func }
540 #endif
541 };
542
543 /* For now, echo and test are unconditionally enabled.
544  * Maybe make it configurable? */
545 static const struct built_in_command bltins[] = {
546         BLTIN("."       , builtin_source  , "Run commands in a file"),
547         BLTIN(":"       , builtin_true    , "No-op"),
548         BLTIN("["       , builtin_test    , "Test condition"),
549 #if ENABLE_HUSH_JOB
550         BLTIN("bg"      , builtin_fg_bg   , "Resume a job in the background"),
551 #endif
552 #if ENABLE_HUSH_LOOPS
553         BLTIN("break"   , builtin_break   , "Exit from a loop"),
554 #endif
555         BLTIN("cd"      , builtin_cd      , "Change directory"),
556 #if ENABLE_HUSH_LOOPS
557         BLTIN("continue", builtin_continue, "Start new loop iteration"),
558 #endif
559         BLTIN("echo"    , builtin_echo    , "Write to stdout"),
560         BLTIN("eval"    , builtin_eval    , "Construct and run shell command"),
561         BLTIN("exec"    , builtin_exec    , "Execute command, don't return to shell"),
562         BLTIN("exit"    , builtin_exit    , "Exit"),
563         BLTIN("export"  , builtin_export  , "Set environment variable"),
564 #if ENABLE_HUSH_JOB
565         BLTIN("fg"      , builtin_fg_bg   , "Bring job into the foreground"),
566 #endif
567 #if ENABLE_HUSH_HELP
568         BLTIN("help"    , builtin_help    , "List shell built-in commands"),
569 #endif
570 #if ENABLE_HUSH_JOB
571         BLTIN("jobs"    , builtin_jobs    , "List active jobs"),
572 #endif
573 #if HUSH_DEBUG
574         BLTIN("memleak" , builtin_memleak , "Debug tool"),
575 #endif
576         BLTIN("pwd"     , builtin_pwd     , "Print current directory"),
577         BLTIN("read"    , builtin_read    , "Input environment variable"),
578 //      BLTIN("return"  , builtin_return  , "Return from a function"),
579         BLTIN("set"     , builtin_set     , "Set/unset shell local variables"),
580         BLTIN("shift"   , builtin_shift   , "Shift positional parameters"),
581         BLTIN("test"    , builtin_test    , "Test condition"),
582         BLTIN("trap"    , builtin_trap    , "Trap signals"),
583 //      BLTIN("ulimit"  , builtin_return  , "Control resource limits"),
584         BLTIN("umask"   , builtin_umask   , "Set file creation mask"),
585         BLTIN("unset"   , builtin_unset   , "Unset environment variable"),
586         BLTIN("wait"    , builtin_wait    , "Wait for process"),
587 };
588
589
590 /* Debug printouts.
591  */
592 #if HUSH_DEBUG
593 /* prevent disasters with G.debug_indent < 0 */
594 # define indent() fprintf(stderr, "%*s", (G.debug_indent * 2) & 0xff, "")
595 # define debug_enter() (G.debug_indent++)
596 # define debug_leave() (G.debug_indent--)
597 #else
598 # define indent()    ((void)0)
599 # define debug_enter() ((void)0)
600 # define debug_leave() ((void)0)
601 #endif
602
603 #ifndef debug_printf
604 # define debug_printf(...) (indent(), fprintf(stderr, __VA_ARGS__))
605 #endif
606
607 #ifndef debug_printf_parse
608 # define debug_printf_parse(...) (indent(), fprintf(stderr, __VA_ARGS__))
609 #endif
610
611 #ifndef debug_printf_exec
612 #define debug_printf_exec(...) (indent(), fprintf(stderr, __VA_ARGS__))
613 #endif
614
615 #ifndef debug_printf_env
616 # define debug_printf_env(...) (indent(), fprintf(stderr, __VA_ARGS__))
617 #endif
618
619 #ifndef debug_printf_jobs
620 # define debug_printf_jobs(...) (indent(), fprintf(stderr, __VA_ARGS__))
621 # define DEBUG_JOBS 1
622 #else
623 # define DEBUG_JOBS 0
624 #endif
625
626 #ifndef debug_printf_expand
627 # define debug_printf_expand(...) (indent(), fprintf(stderr, __VA_ARGS__))
628 # define DEBUG_EXPAND 1
629 #else
630 # define DEBUG_EXPAND 0
631 #endif
632
633 #ifndef debug_printf_glob
634 # define debug_printf_glob(...) (indent(), fprintf(stderr, __VA_ARGS__))
635 # define DEBUG_GLOB 1
636 #else
637 # define DEBUG_GLOB 0
638 #endif
639
640 #ifndef debug_printf_list
641 # define debug_printf_list(...) (indent(), fprintf(stderr, __VA_ARGS__))
642 #endif
643
644 #ifndef debug_printf_subst
645 # define debug_printf_subst(...) (indent(), fprintf(stderr, __VA_ARGS__))
646 #endif
647
648 #ifndef debug_printf_clean
649 # define debug_printf_clean(...) (indent(), fprintf(stderr, __VA_ARGS__))
650 # define DEBUG_CLEAN 1
651 #else
652 # define DEBUG_CLEAN 0
653 #endif
654
655 #if DEBUG_EXPAND
656 static void debug_print_strings(const char *prefix, char **vv)
657 {
658         indent();
659         fprintf(stderr, "%s:\n", prefix);
660         while (*vv)
661                 fprintf(stderr, " '%s'\n", *vv++);
662 }
663 #else
664 #define debug_print_strings(prefix, vv) ((void)0)
665 #endif
666
667
668 /* Leak hunting. Use hush_leaktool.sh for post-processing.
669  */
670 #if LEAK_HUNTING
671 static void *xxmalloc(int lineno, size_t size)
672 {
673         void *ptr = xmalloc((size + 0xff) & ~0xff);
674         fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
675         return ptr;
676 }
677 static void *xxrealloc(int lineno, void *ptr, size_t size)
678 {
679         ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
680         fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
681         return ptr;
682 }
683 static char *xxstrdup(int lineno, const char *str)
684 {
685         char *ptr = xstrdup(str);
686         fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
687         return ptr;
688 }
689 static void xxfree(void *ptr)
690 {
691         fdprintf(2, "free %p\n", ptr);
692         free(ptr);
693 }
694 #define xmalloc(s)     xxmalloc(__LINE__, s)
695 #define xrealloc(p, s) xxrealloc(__LINE__, p, s)
696 #define xstrdup(s)     xxstrdup(__LINE__, s)
697 #define free(p)        xxfree(p)
698 #endif
699
700
701 /* Syntax and runtime errors. They always abort scripts.
702  * In interactive use they usually discard unparsed and/or unexecuted commands
703  * and return to the prompt.
704  * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
705  */
706 #if HUSH_DEBUG < 2
707 # define die_if_script(lineno, fmt...)          die_if_script(fmt)
708 # define syntax_error(lineno, msg)              syntax_error(msg)
709 # define syntax_error_at(lineno, msg)           syntax_error_at(msg)
710 # define syntax_error_unterm_ch(lineno, ch)     syntax_error_unterm_ch(ch)
711 # define syntax_error_unterm_str(lineno, s)     syntax_error_unterm_str(s)
712 # define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch)
713 #endif
714
715 static void die_if_script(unsigned lineno, const char *fmt, ...)
716 {
717         va_list p;
718
719 #if HUSH_DEBUG >= 2
720         bb_error_msg("hush.c:%u", lineno);
721 #endif
722         va_start(p, fmt);
723         bb_verror_msg(fmt, p, NULL);
724         va_end(p);
725         if (!G_interactive_fd)
726                 xfunc_die();
727 }
728
729 static void syntax_error(unsigned lineno, const char *msg)
730 {
731         if (msg)
732                 die_if_script(lineno, "syntax error: %s", msg);
733         else
734                 die_if_script(lineno, "syntax error", NULL);
735 }
736
737 static void syntax_error_at(unsigned lineno, const char *msg)
738 {
739         die_if_script(lineno, "syntax error at '%s'", msg);
740 }
741
742 /* It so happens that all such cases are totally fatal
743  * even if shell is interactive: EOF while looking for closing
744  * delimiter. There is nowhere to read stuff from after that,
745  * it's EOF! The only choice is to terminate.
746  */
747 static void syntax_error_unterm_ch(unsigned lineno, char ch) NORETURN;
748 static void syntax_error_unterm_ch(unsigned lineno, char ch)
749 {
750         char msg[2];
751         msg[0] = ch;
752         msg[1] = '\0';
753         die_if_script(lineno, "syntax error: unterminated %s", msg);
754         xfunc_die();
755 }
756
757 static void syntax_error_unterm_str(unsigned lineno, const char *s)
758 {
759         die_if_script(lineno, "syntax error: unterminated %s", s);
760 }
761
762 static void syntax_error_unexpected_ch(unsigned lineno, char ch)
763 {
764         char msg[2];
765         msg[0] = ch;
766         msg[1] = '\0';
767         die_if_script(lineno, "syntax error: unexpected %s", msg);
768 }
769
770 #if HUSH_DEBUG < 2
771 # undef die_if_script
772 # undef syntax_error
773 # undef syntax_error_at
774 # undef syntax_error_unterm_ch
775 # undef syntax_error_unterm_str
776 # undef syntax_error_unexpected_ch
777 #else
778 # define die_if_script(fmt...)          die_if_script(__LINE__, fmt)
779 # define syntax_error(msg)              syntax_error(__LINE__, msg)
780 # define syntax_error_at(msg)           syntax_error_at(__LINE__, msg)
781 # define syntax_error_unterm_ch(ch)     syntax_error_unterm_ch(__LINE__, ch)
782 # define syntax_error_unterm_str(s)     syntax_error_unterm_str(__LINE__, s)
783 # define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch)
784 #endif
785
786
787 /* Utility functions
788  */
789 static int glob_needed(const char *s)
790 {
791         while (*s) {
792                 if (*s == '\\')
793                         s++;
794                 if (*s == '*' || *s == '[' || *s == '?')
795                         return 1;
796                 s++;
797         }
798         return 0;
799 }
800
801 static int is_well_formed_var_name(const char *s, char terminator)
802 {
803         if (!s || !(isalpha(*s) || *s == '_'))
804                 return 0;
805         s++;
806         while (isalnum(*s) || *s == '_')
807                 s++;
808         return *s == terminator;
809 }
810
811 /* Replace each \x with x in place, return ptr past NUL. */
812 static char *unbackslash(char *src)
813 {
814         char *dst = src;
815         while (1) {
816                 if (*src == '\\')
817                         src++;
818                 if ((*dst++ = *src++) == '\0')
819                         break;
820         }
821         return dst;
822 }
823
824 static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
825 {
826         int i;
827         unsigned count1;
828         unsigned count2;
829         char **v;
830
831         v = strings;
832         count1 = 0;
833         if (v) {
834                 while (*v) {
835                         count1++;
836                         v++;
837                 }
838         }
839         count2 = 0;
840         v = add;
841         while (*v) {
842                 count2++;
843                 v++;
844         }
845         v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
846         v[count1 + count2] = NULL;
847         i = count2;
848         while (--i >= 0)
849                 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
850         return v;
851 }
852 #if LEAK_HUNTING
853 static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
854 {
855         char **ptr = add_strings_to_strings(strings, add, need_to_dup);
856         fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
857         return ptr;
858 }
859 #define add_strings_to_strings(strings, add, need_to_dup) \
860         xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
861 #endif
862
863 static char **add_string_to_strings(char **strings, char *add)
864 {
865         char *v[2];
866         v[0] = add;
867         v[1] = NULL;
868         return add_strings_to_strings(strings, v, /*dup:*/ 0);
869 }
870 #if LEAK_HUNTING
871 static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
872 {
873         char **ptr = add_string_to_strings(strings, add);
874         fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
875         return ptr;
876 }
877 #define add_string_to_strings(strings, add) \
878         xx_add_string_to_strings(__LINE__, strings, add)
879 #endif
880
881 static void putenv_all(char **strings)
882 {
883         if (!strings)
884                 return;
885         while (*strings) {
886                 debug_printf_env("putenv '%s'\n", *strings);
887                 putenv(*strings++);
888         }
889 }
890
891 static char **putenv_all_and_save_old(char **strings)
892 {
893         char **old = NULL;
894         char **s = strings;
895
896         if (!strings)
897                 return old;
898         while (*strings) {
899                 char *v, *eq;
900
901                 eq = strchr(*strings, '=');
902                 if (eq) {
903                         *eq = '\0';
904                         v = getenv(*strings);
905                         *eq = '=';
906                         if (v) {
907                                 /* v points to VAL in VAR=VAL, go back to VAR */
908                                 v -= (eq - *strings) + 1;
909                                 old = add_string_to_strings(old, v);
910                         }
911                 }
912                 strings++;
913         }
914         putenv_all(s);
915         return old;
916 }
917
918 static void free_strings_and_unsetenv(char **strings, int unset)
919 {
920         char **v;
921
922         if (!strings)
923                 return;
924
925         v = strings;
926         while (*v) {
927                 if (unset) {
928                         debug_printf_env("unsetenv '%s'\n", *v);
929                         bb_unsetenv(*v);
930                 }
931                 free(*v++);
932         }
933         free(strings);
934 }
935
936 static void free_strings(char **strings)
937 {
938         free_strings_and_unsetenv(strings, 0);
939 }
940
941
942 /* Basic theory of signal handling in shell
943  * ========================================
944  * This does not describe what hush does, rather, it is current understanding
945  * what it _should_ do. If it doesn't, it's a bug.
946  * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
947  *
948  * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
949  * is finished or backgrounded. It is the same in interactive and
950  * non-interactive shells, and is the same regardless of whether
951  * a user trap handler is installed or a shell special one is in effect.
952  * ^C or ^Z from keyboard seem to execute "at once" because it usually
953  * backgrounds (i.e. stops) or kills all members of currently running
954  * pipe.
955  *
956  * Wait builtin in interruptible by signals for which user trap is set
957  * or by SIGINT in interactive shell.
958  *
959  * Trap handlers will execute even within trap handlers. (right?)
960  *
961  * User trap handlers are forgotten when subshell ("(cmd)") is entered.
962  *
963  * If job control is off, backgrounded commands ("cmd &")
964  * have SIGINT, SIGQUIT set to SIG_IGN.
965  *
966  * Commands run in command substitution ("`cmd`")
967  * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
968  *
969  * Ordinary commands have signals set to SIG_IGN/DFL set as inherited
970  * by the shell from its parent.
971  *
972  * Siganls which differ from SIG_DFL action
973  * (note: child (i.e., [v]forked) shell is not an interactive shell):
974  *
975  * SIGQUIT: ignore
976  * SIGTERM (interactive): ignore
977  * SIGHUP (interactive):
978  *    send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
979  * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
980  *    Note that ^Z is handled not by trapping SIGTSTP, but by seeing
981  *    that all pipe members are stopped. Try this in bash:
982  *    while :; do :; done - ^Z does not background it
983  *    (while :; do :; done) - ^Z backgrounds it
984  * SIGINT (interactive): wait for last pipe, ignore the rest
985  *    of the command line, show prompt. NB: ^C does not send SIGINT
986  *    to interactive shell while shell is waiting for a pipe,
987  *    since shell is bg'ed (is not in foreground process group).
988  *    Example 1: this waits 5 sec, but does not execute ls:
989  *    "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
990  *    Example 2: this does not wait and does not execute ls:
991  *    "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
992  *    Example 3: this does not wait 5 sec, but executes ls:
993  *    "sleep 5; ls -l" + press ^C
994  *
995  * (What happens to signals which are IGN on shell start?)
996  * (What happens with signal mask on shell start?)
997  *
998  * Implementation in hush
999  * ======================
1000  * We use in-kernel pending signal mask to determine which signals were sent.
1001  * We block all signals which we don't want to take action immediately,
1002  * i.e. we block all signals which need to have special handling as described
1003  * above, and all signals which have traps set.
1004  * After each pipe execution, we extract any pending signals via sigtimedwait()
1005  * and act on them.
1006  *
1007  * unsigned non_DFL_mask: a mask of such "special" signals
1008  * sigset_t blocked_set:  current blocked signal set
1009  *
1010  * "trap - SIGxxx":
1011  *    clear bit in blocked_set unless it is also in non_DFL_mask
1012  * "trap 'cmd' SIGxxx":
1013  *    set bit in blocked_set (even if 'cmd' is '')
1014  * after [v]fork, if we plan to be a shell:
1015  *    nothing for {} child shell (say, "true | { true; true; } | true")
1016  *    unset all traps if () shell.
1017  * after [v]fork, if we plan to exec:
1018  *    POSIX says pending signal mask is cleared in child - no need to clear it.
1019  *    Restore blocked signal set to one inherited by shell just prior to exec.
1020  *
1021  * Note: as a result, we do not use signal handlers much. The only uses
1022  * are to count SIGCHLDs [disabled - bug somewhere, + bloat]
1023  * and to restore tty pgrp on signal-induced exit.
1024  */
1025 enum {
1026         SPECIAL_INTERACTIVE_SIGS = 0
1027 #if ENABLE_HUSH_JOB
1028                 | (1 << SIGTTIN) | (1 << SIGTTOU) | (1 << SIGTSTP)
1029 #endif
1030                 | (1 << SIGTERM)
1031 //TODO          | (1 << SIGHUP)
1032                 | (1 << SIGINT)
1033 };
1034
1035 //static void SIGCHLD_handler(int sig UNUSED_PARAM)
1036 //{
1037 //      G.count_SIGCHLD++;
1038 //}
1039
1040 static int check_and_run_traps(int sig)
1041 {
1042         static const struct timespec zero_timespec = { 0, 0 };
1043         smalluint save_rcode;
1044         int last_sig = 0;
1045
1046         if (sig)
1047                 goto jump_in;
1048         while (1) {
1049                 sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec);
1050                 if (sig <= 0)
1051                         break;
1052  jump_in:
1053                 last_sig = sig;
1054                 if (G.traps && G.traps[sig]) {
1055                         if (G.traps[sig][0]) {
1056                                 /* We have user-defined handler */
1057                                 char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL };
1058                                 save_rcode = G.last_exitcode;
1059                                 builtin_eval(argv);
1060                                 free(argv[1]);
1061                                 G.last_exitcode = save_rcode;
1062                         } /* else: "" trap, ignoring signal */
1063                         continue;
1064                 }
1065                 /* not a trap: special action */
1066                 switch (sig) {
1067 //              case SIGCHLD:
1068 //                      G.count_SIGCHLD++;
1069 //                      break;
1070                 case SIGINT:
1071 //TODO: add putchar('\n') also when we detect that child was killed (sleep 5 + ^C)
1072                         /* Builtin was ^C'ed, make it look prettier: */
1073                         bb_putchar('\n');
1074                         G.flag_SIGINT = 1;
1075                         break;
1076 //TODO
1077 //              case SIGHUP: ...
1078 //                      break;
1079                 default: /* ignored: */
1080                         /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
1081                         break;
1082                 }
1083         }
1084         return last_sig;
1085 }
1086
1087 #if ENABLE_HUSH_JOB
1088
1089 /* After [v]fork, in child: do not restore tty pgrp on xfunc death */
1090 #define disable_restore_tty_pgrp_on_exit() (die_sleep = 0)
1091 /* After [v]fork, in parent: restore tty pgrp on xfunc death */
1092 #define enable_restore_tty_pgrp_on_exit()  (die_sleep = -1)
1093
1094 /* Restores tty foreground process group, and exits.
1095  * May be called as signal handler for fatal signal
1096  * (will faithfully resend signal to itself, producing correct exit state)
1097  * or called directly with -EXITCODE.
1098  * We also call it if xfunc is exiting. */
1099 static void sigexit(int sig) NORETURN;
1100 static void sigexit(int sig)
1101 {
1102         /* Disable all signals: job control, SIGPIPE, etc. */
1103         sigprocmask_allsigs(SIG_BLOCK);
1104
1105         /* Careful: we can end up here after [v]fork. Do not restore
1106          * tty pgrp then, only top-level shell process does that */
1107         if (G_interactive_fd && getpid() == G.root_pid)
1108                 tcsetpgrp(G_interactive_fd, G.saved_tty_pgrp);
1109
1110         /* Not a signal, just exit */
1111         if (sig <= 0)
1112                 _exit(- sig);
1113
1114         kill_myself_with_sig(sig); /* does not return */
1115 }
1116 #else
1117
1118 #define disable_restore_tty_pgrp_on_exit() ((void)0)
1119 #define enable_restore_tty_pgrp_on_exit()  ((void)0)
1120
1121 #endif
1122
1123 /* Restores tty foreground process group, and exits. */
1124 static void hush_exit(int exitcode) NORETURN;
1125 static void hush_exit(int exitcode)
1126 {
1127         if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) {
1128                 /* Prevent recursion:
1129                  * trap "echo Hi; exit" EXIT; exit
1130                  */
1131                 char *argv[] = { NULL, G.traps[0], NULL };
1132                 G.traps[0] = NULL;
1133                 G.exiting = 1;
1134                 builtin_eval(argv);
1135                 free(argv[1]);
1136         }
1137
1138 #if ENABLE_HUSH_JOB
1139         fflush(NULL); /* flush all streams */
1140         sigexit(- (exitcode & 0xff));
1141 #else
1142         exit(exitcode);
1143 #endif
1144 }
1145
1146
1147 static const char *set_cwd(void)
1148 {
1149         /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1150          * we must not try to free(bb_msg_unknown) */
1151         if (G.cwd == bb_msg_unknown)
1152                 G.cwd = NULL;
1153         G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1154         if (!G.cwd)
1155                 G.cwd = bb_msg_unknown;
1156         return G.cwd;
1157 }
1158
1159
1160 /* Get/check local shell variables */
1161 static struct variable *get_local_var(const char *name)
1162 {
1163         struct variable *cur;
1164         int len;
1165
1166         if (!name)
1167                 return NULL;
1168         len = strlen(name);
1169         for (cur = G.top_var; cur; cur = cur->next) {
1170                 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
1171                         return cur;
1172         }
1173         return NULL;
1174 }
1175
1176 static const char *get_local_var_value(const char *src)
1177 {
1178         struct variable *var = get_local_var(src);
1179         if (var)
1180                 return strchr(var->varstr, '=') + 1;
1181         return NULL;
1182 }
1183
1184 /* str holds "NAME=VAL" and is expected to be malloced.
1185  * We take ownership of it.
1186  * flg_export:
1187  *  0: do not export
1188  *  1: export
1189  * -1: if NAME is set, leave export status alone
1190  *     if NAME is not set, do not export
1191  * flg_read_only is set only when we handle -R var=val
1192  */
1193 #if BB_MMU
1194 #define set_local_var(str, flg_export, flg_read_only) \
1195         set_local_var(str, flg_export)
1196 #endif
1197 static int set_local_var(char *str, int flg_export, int flg_read_only)
1198 {
1199         struct variable *cur;
1200         char *value;
1201         int name_len;
1202
1203         value = strchr(str, '=');
1204         if (!value) { /* not expected to ever happen? */
1205                 free(str);
1206                 return -1;
1207         }
1208
1209         name_len = value - str + 1; /* including '=' */
1210         cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */
1211         while (1) {
1212                 if (strncmp(cur->varstr, str, name_len) != 0) {
1213                         if (!cur->next) {
1214                                 /* Bail out. Note that now cur points
1215                                  * to last var in linked list */
1216                                 break;
1217                         }
1218                         cur = cur->next;
1219                         continue;
1220                 }
1221                 /* We found an existing var with this name */
1222                 *value = '\0';
1223                 if (cur->flg_read_only) {
1224 #if !BB_MMU
1225                         if (!flg_read_only)
1226 #endif
1227                                 bb_error_msg("%s: readonly variable", str);
1228                         free(str);
1229                         return -1;
1230                 }
1231                 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1232                 unsetenv(str); /* just in case */
1233                 *value = '=';
1234                 if (strcmp(cur->varstr, str) == 0) {
1235  free_and_exp:
1236                         free(str);
1237                         goto exp;
1238                 }
1239                 if (cur->max_len >= strlen(str)) {
1240                         /* This one is from startup env, reuse space */
1241                         strcpy(cur->varstr, str);
1242                         goto free_and_exp;
1243                 }
1244                 /* max_len == 0 signifies "malloced" var, which we can
1245                  * (and has to) free */
1246                 if (!cur->max_len)
1247                         free(cur->varstr);
1248                 cur->max_len = 0;
1249                 goto set_str_and_exp;
1250         }
1251
1252         /* Not found - create next variable struct */
1253         cur->next = xzalloc(sizeof(*cur));
1254         cur = cur->next;
1255
1256  set_str_and_exp:
1257         cur->varstr = str;
1258 #if !BB_MMU
1259         cur->flg_read_only = flg_read_only;
1260 #endif
1261  exp:
1262         if (flg_export == 1)
1263                 cur->flg_export = 1;
1264         if (cur->flg_export) {
1265                 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1266                 return putenv(cur->varstr);
1267         }
1268         return 0;
1269 }
1270
1271 static int unset_local_var(const char *name)
1272 {
1273         struct variable *cur;
1274         struct variable *prev = prev; /* for gcc */
1275         int name_len;
1276
1277         if (!name)
1278                 return EXIT_SUCCESS;
1279         name_len = strlen(name);
1280         cur = G.top_var;
1281         while (cur) {
1282                 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1283                         if (cur->flg_read_only) {
1284                                 bb_error_msg("%s: readonly variable", name);
1285                                 return EXIT_FAILURE;
1286                         }
1287                         /* prev is ok to use here because 1st variable, HUSH_VERSION,
1288                          * is ro, and we cannot reach this code on the 1st pass */
1289                         prev->next = cur->next;
1290                         debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1291                         bb_unsetenv(cur->varstr);
1292                         if (!cur->max_len)
1293                                 free(cur->varstr);
1294                         free(cur);
1295                         return EXIT_SUCCESS;
1296                 }
1297                 prev = cur;
1298                 cur = cur->next;
1299         }
1300         return EXIT_SUCCESS;
1301 }
1302
1303 #if ENABLE_SH_MATH_SUPPORT
1304 #define is_name(c)      ((c) == '_' || isalpha((unsigned char)(c)))
1305 #define is_in_name(c)   ((c) == '_' || isalnum((unsigned char)(c)))
1306 static char *endofname(const char *name)
1307 {
1308         char *p;
1309
1310         p = (char *) name;
1311         if (!is_name(*p))
1312                 return p;
1313         while (*++p) {
1314                 if (!is_in_name(*p))
1315                         break;
1316         }
1317         return p;
1318 }
1319
1320 static void arith_set_local_var(const char *name, const char *val, int flags)
1321 {
1322         /* arith code doesnt malloc space, so do it for it */
1323         char *var = xasprintf("%s=%s", name, val);
1324         set_local_var(var, flags, 0);
1325 }
1326 #endif
1327
1328
1329 /*
1330  * in_str support
1331  */
1332 static int static_get(struct in_str *i)
1333 {
1334         int ch = *i->p++;
1335         if (ch != '\0')
1336                 return ch;
1337         i->p--;
1338         return EOF;
1339 }
1340
1341 static int static_peek(struct in_str *i)
1342 {
1343         return *i->p;
1344 }
1345
1346 #if ENABLE_HUSH_INTERACTIVE
1347
1348 static void cmdedit_set_initial_prompt(void)
1349 {
1350         if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1351                 G.PS1 = getenv("PS1");
1352                 if (G.PS1 == NULL)
1353                         G.PS1 = "\\w \\$ ";
1354         } else
1355                 G.PS1 = NULL;
1356 }
1357
1358 static const char* setup_prompt_string(int promptmode)
1359 {
1360         const char *prompt_str;
1361         debug_printf("setup_prompt_string %d ", promptmode);
1362         if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1363                 /* Set up the prompt */
1364                 if (promptmode == 0) { /* PS1 */
1365                         free((char*)G.PS1);
1366                         G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#');
1367                         prompt_str = G.PS1;
1368                 } else
1369                         prompt_str = G.PS2;
1370         } else
1371                 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
1372         debug_printf("result '%s'\n", prompt_str);
1373         return prompt_str;
1374 }
1375
1376 static void get_user_input(struct in_str *i)
1377 {
1378         int r;
1379         const char *prompt_str;
1380
1381         prompt_str = setup_prompt_string(i->promptmode);
1382 #if ENABLE_FEATURE_EDITING
1383         /* Enable command line editing only while a command line
1384          * is actually being read */
1385         do {
1386                 G.flag_SIGINT = 0;
1387                 /* buglet: SIGINT will not make new prompt to appear _at once_,
1388                  * only after <Enter>. (^C will work) */
1389                 r = read_line_input(prompt_str, G.user_input_buf, BUFSIZ-1, G.line_input_state);
1390                 /* catch *SIGINT* etc (^C is handled by read_line_input) */
1391                 check_and_run_traps(0);
1392         } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
1393         i->eof_flag = (r < 0);
1394         if (i->eof_flag) { /* EOF/error detected */
1395                 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1396                 G.user_input_buf[1] = '\0';
1397         }
1398 #else
1399         do {
1400                 G.flag_SIGINT = 0;
1401                 fputs(prompt_str, stdout);
1402                 fflush(stdout);
1403                 G.user_input_buf[0] = r = fgetc(i->file);
1404                 /*G.user_input_buf[1] = '\0'; - already is and never changed */
1405 //do we need check_and_run_traps(0)? (maybe only if stdin)
1406         } while (G.flag_SIGINT);
1407         i->eof_flag = (r == EOF);
1408 #endif
1409         i->p = G.user_input_buf;
1410 }
1411
1412 #endif  /* INTERACTIVE */
1413
1414 /* This is the magic location that prints prompts
1415  * and gets data back from the user */
1416 static int file_get(struct in_str *i)
1417 {
1418         int ch;
1419
1420         /* If there is data waiting, eat it up */
1421         if (i->p && *i->p) {
1422 #if ENABLE_HUSH_INTERACTIVE
1423  take_cached:
1424 #endif
1425                 ch = *i->p++;
1426                 if (i->eof_flag && !*i->p)
1427                         ch = EOF;
1428                 /* note: ch is never NUL */
1429         } else {
1430                 /* need to double check i->file because we might be doing something
1431                  * more complicated by now, like sourcing or substituting. */
1432 #if ENABLE_HUSH_INTERACTIVE
1433                 if (G_interactive_fd && i->promptme && i->file == stdin) {
1434                         do {
1435                                 get_user_input(i);
1436                         } while (!*i->p); /* need non-empty line */
1437                         i->promptmode = 1; /* PS2 */
1438                         i->promptme = 0;
1439                         goto take_cached;
1440                 }
1441 #endif
1442                 do ch = fgetc(i->file); while (ch == '\0');
1443         }
1444         debug_printf("file_get: got '%c' %d\n", ch, ch);
1445 #if ENABLE_HUSH_INTERACTIVE
1446         if (ch == '\n')
1447                 i->promptme = 1;
1448 #endif
1449         return ch;
1450 }
1451
1452 /* All callers guarantee this routine will never
1453  * be used right after a newline, so prompting is not needed.
1454  */
1455 static int file_peek(struct in_str *i)
1456 {
1457         int ch;
1458         if (i->p && *i->p) {
1459                 if (i->eof_flag && !i->p[1])
1460                         return EOF;
1461                 return *i->p;
1462                 /* note: ch is never NUL */
1463         }
1464         do ch = fgetc(i->file); while (ch == '\0');
1465         i->eof_flag = (ch == EOF);
1466         i->peek_buf[0] = ch;
1467         i->peek_buf[1] = '\0';
1468         i->p = i->peek_buf;
1469         debug_printf("file_peek: got '%c' %d\n", ch, ch);
1470         return ch;
1471 }
1472
1473 static void setup_file_in_str(struct in_str *i, FILE *f)
1474 {
1475         i->peek = file_peek;
1476         i->get = file_get;
1477 #if ENABLE_HUSH_INTERACTIVE
1478         i->promptme = 1;
1479         i->promptmode = 0; /* PS1 */
1480 #endif
1481         i->file = f;
1482         i->p = NULL;
1483 }
1484
1485 static void setup_string_in_str(struct in_str *i, const char *s)
1486 {
1487         i->peek = static_peek;
1488         i->get = static_get;
1489 #if ENABLE_HUSH_INTERACTIVE
1490         i->promptme = 1;
1491         i->promptmode = 0; /* PS1 */
1492 #endif
1493         i->p = s;
1494         i->eof_flag = 0;
1495 }
1496
1497
1498 /*
1499  * o_string support
1500  */
1501 #define B_CHUNK  (32 * sizeof(char*))
1502
1503 static void o_reset_to_empty_unquoted(o_string *o)
1504 {
1505         o->length = 0;
1506         o->o_quoted = 0;
1507         if (o->data)
1508                 o->data[0] = '\0';
1509 }
1510
1511 static void o_free(o_string *o)
1512 {
1513         free(o->data);
1514         memset(o, 0, sizeof(*o));
1515 }
1516
1517 static ALWAYS_INLINE void o_free_unsafe(o_string *o)
1518 {
1519         free(o->data);
1520 }
1521
1522 static void o_grow_by(o_string *o, int len)
1523 {
1524         if (o->length + len > o->maxlen) {
1525                 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1526                 o->data = xrealloc(o->data, 1 + o->maxlen);
1527         }
1528 }
1529
1530 static void o_addchr(o_string *o, int ch)
1531 {
1532         debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1533         o_grow_by(o, 1);
1534         o->data[o->length] = ch;
1535         o->length++;
1536         o->data[o->length] = '\0';
1537 }
1538
1539 static void o_addblock(o_string *o, const char *str, int len)
1540 {
1541         o_grow_by(o, len);
1542         memcpy(&o->data[o->length], str, len);
1543         o->length += len;
1544         o->data[o->length] = '\0';
1545 }
1546
1547 #if !BB_MMU
1548 static void o_addstr(o_string *o, const char *str)
1549 {
1550         o_addblock(o, str, strlen(str));
1551 }
1552 static void nommu_addchr(o_string *o, int ch)
1553 {
1554         if (o)
1555                 o_addchr(o, ch);
1556 }
1557 #else
1558 #define nommu_addchr(o, str) ((void)0)
1559 #endif
1560
1561 static void o_addstr_with_NUL(o_string *o, const char *str)
1562 {
1563         o_addblock(o, str, strlen(str) + 1);
1564 }
1565
1566 static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
1567 {
1568         while (len) {
1569                 o_addchr(o, *str);
1570                 if (*str++ == '\\'
1571                  && (*str != '*' && *str != '?' && *str != '[')
1572                 ) {
1573                         o_addchr(o, '\\');
1574                 }
1575                 len--;
1576         }
1577 }
1578
1579 /* My analysis of quoting semantics tells me that state information
1580  * is associated with a destination, not a source.
1581  */
1582 static void o_addqchr(o_string *o, int ch)
1583 {
1584         int sz = 1;
1585         char *found = strchr("*?[\\", ch);
1586         if (found)
1587                 sz++;
1588         o_grow_by(o, sz);
1589         if (found) {
1590                 o->data[o->length] = '\\';
1591                 o->length++;
1592         }
1593         o->data[o->length] = ch;
1594         o->length++;
1595         o->data[o->length] = '\0';
1596 }
1597
1598 static void o_addQchr(o_string *o, int ch)
1599 {
1600         int sz = 1;
1601         if (o->o_escape && strchr("*?[\\", ch)) {
1602                 sz++;
1603                 o->data[o->length] = '\\';
1604                 o->length++;
1605         }
1606         o_grow_by(o, sz);
1607         o->data[o->length] = ch;
1608         o->length++;
1609         o->data[o->length] = '\0';
1610 }
1611
1612 static void o_addQstr(o_string *o, const char *str, int len)
1613 {
1614         if (!o->o_escape) {
1615                 o_addblock(o, str, len);
1616                 return;
1617         }
1618         while (len) {
1619                 char ch;
1620                 int sz;
1621                 int ordinary_cnt = strcspn(str, "*?[\\");
1622                 if (ordinary_cnt > len) /* paranoia */
1623                         ordinary_cnt = len;
1624                 o_addblock(o, str, ordinary_cnt);
1625                 if (ordinary_cnt == len)
1626                         return;
1627                 str += ordinary_cnt;
1628                 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
1629
1630                 ch = *str++;
1631                 sz = 1;
1632                 if (ch) { /* it is necessarily one of "*?[\\" */
1633                         sz++;
1634                         o->data[o->length] = '\\';
1635                         o->length++;
1636                 }
1637                 o_grow_by(o, sz);
1638                 o->data[o->length] = ch;
1639                 o->length++;
1640                 o->data[o->length] = '\0';
1641         }
1642 }
1643
1644 /* A special kind of o_string for $VAR and `cmd` expansion.
1645  * It contains char* list[] at the beginning, which is grown in 16 element
1646  * increments. Actual string data starts at the next multiple of 16 * (char*).
1647  * list[i] contains an INDEX (int!) into this string data.
1648  * It means that if list[] needs to grow, data needs to be moved higher up
1649  * but list[i]'s need not be modified.
1650  * NB: remembering how many list[i]'s you have there is crucial.
1651  * o_finalize_list() operation post-processes this structure - calculates
1652  * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
1653  */
1654 #if DEBUG_EXPAND || DEBUG_GLOB
1655 static void debug_print_list(const char *prefix, o_string *o, int n)
1656 {
1657         char **list = (char**)o->data;
1658         int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1659         int i = 0;
1660
1661         indent();
1662         fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n",
1663                         prefix, list, n, string_start, o->length, o->maxlen);
1664         while (i < n) {
1665                 indent();
1666                 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
1667                                 o->data + (int)list[i] + string_start,
1668                                 o->data + (int)list[i] + string_start);
1669                 i++;
1670         }
1671         if (n) {
1672                 const char *p = o->data + (int)list[n - 1] + string_start;
1673                 indent();
1674                 fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
1675         }
1676 }
1677 #else
1678 #define debug_print_list(prefix, o, n) ((void)0)
1679 #endif
1680
1681 /* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
1682  * in list[n] so that it points past last stored byte so far.
1683  * It returns n+1. */
1684 static int o_save_ptr_helper(o_string *o, int n)
1685 {
1686         char **list = (char**)o->data;
1687         int string_start;
1688         int string_len;
1689
1690         if (!o->has_empty_slot) {
1691                 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1692                 string_len = o->length - string_start;
1693                 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
1694                         debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
1695                         /* list[n] points to string_start, make space for 16 more pointers */
1696                         o->maxlen += 0x10 * sizeof(list[0]);
1697                         o->data = xrealloc(o->data, o->maxlen + 1);
1698                         list = (char**)o->data;
1699                         memmove(list + n + 0x10, list + n, string_len);
1700                         o->length += 0x10 * sizeof(list[0]);
1701                 } else {
1702                         debug_printf_list("list[%d]=%d string_start=%d\n",
1703                                         n, string_len, string_start);
1704                 }
1705         } else {
1706                 /* We have empty slot at list[n], reuse without growth */
1707                 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
1708                 string_len = o->length - string_start;
1709                 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
1710                                 n, string_len, string_start);
1711                 o->has_empty_slot = 0;
1712         }
1713         list[n] = (char*)(ptrdiff_t)string_len;
1714         return n + 1;
1715 }
1716
1717 /* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
1718 static int o_get_last_ptr(o_string *o, int n)
1719 {
1720         char **list = (char**)o->data;
1721         int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1722
1723         return ((int)(ptrdiff_t)list[n-1]) + string_start;
1724 }
1725
1726 /* o_glob performs globbing on last list[], saving each result
1727  * as a new list[]. */
1728 static int o_glob(o_string *o, int n)
1729 {
1730         glob_t globdata;
1731         int gr;
1732         char *pattern;
1733
1734         debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
1735         if (!o->data)
1736                 return o_save_ptr_helper(o, n);
1737         pattern = o->data + o_get_last_ptr(o, n);
1738         debug_printf_glob("glob pattern '%s'\n", pattern);
1739         if (!glob_needed(pattern)) {
1740  literal:
1741                 o->length = unbackslash(pattern) - o->data;
1742                 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
1743                 return o_save_ptr_helper(o, n);
1744         }
1745
1746         memset(&globdata, 0, sizeof(globdata));
1747         gr = glob(pattern, 0, NULL, &globdata);
1748         debug_printf_glob("glob('%s'):%d\n", pattern, gr);
1749         if (gr == GLOB_NOSPACE)
1750                 bb_error_msg_and_die("out of memory during glob");
1751         if (gr == GLOB_NOMATCH) {
1752                 globfree(&globdata);
1753                 goto literal;
1754         }
1755         if (gr != 0) { /* GLOB_ABORTED ? */
1756 //TODO: testcase for bad glob pattern behavior
1757                 bb_error_msg("glob(3) error %d on '%s'", gr, pattern);
1758         }
1759         if (globdata.gl_pathv && globdata.gl_pathv[0]) {
1760                 char **argv = globdata.gl_pathv;
1761                 o->length = pattern - o->data; /* "forget" pattern */
1762                 while (1) {
1763                         o_addstr_with_NUL(o, *argv);
1764                         n = o_save_ptr_helper(o, n);
1765                         argv++;
1766                         if (!*argv)
1767                                 break;
1768                 }
1769         }
1770         globfree(&globdata);
1771         if (DEBUG_GLOB)
1772                 debug_print_list("o_glob returning", o, n);
1773         return n;
1774 }
1775
1776 /* If o->o_glob == 1, glob the string so far remembered.
1777  * Otherwise, just finish current list[] and start new */
1778 static int o_save_ptr(o_string *o, int n)
1779 {
1780         if (o->o_glob) { /* if globbing is requested */
1781                 /* If o->has_empty_slot, list[n] was already globbed
1782                  * (if it was requested back then when it was filled)
1783                  * so don't do that again! */
1784                 if (!o->has_empty_slot)
1785                         return o_glob(o, n); /* o_save_ptr_helper is inside */
1786         }
1787         return o_save_ptr_helper(o, n);
1788 }
1789
1790 /* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
1791 static char **o_finalize_list(o_string *o, int n)
1792 {
1793         char **list;
1794         int string_start;
1795
1796         n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
1797         if (DEBUG_EXPAND)
1798                 debug_print_list("finalized", o, n);
1799         debug_printf_expand("finalized n:%d\n", n);
1800         list = (char**)o->data;
1801         string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1802         list[--n] = NULL;
1803         while (n) {
1804                 n--;
1805                 list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start;
1806         }
1807         return list;
1808 }
1809
1810
1811 /* Expansion can recurse */
1812 #if ENABLE_HUSH_TICK
1813 static int process_command_subs(o_string *dest, const char *s);
1814 #endif
1815 static char *expand_string_to_string(const char *str);
1816 #if BB_MMU
1817 #define parse_stream_dquoted(as_string, dest, input, dquote_end) \
1818         parse_stream_dquoted(dest, input, dquote_end)
1819 #endif
1820 static int parse_stream_dquoted(o_string *as_string,
1821                 o_string *dest,
1822                 struct in_str *input,
1823                 int dquote_end);
1824
1825 /* expand_strvec_to_strvec() takes a list of strings, expands
1826  * all variable references within and returns a pointer to
1827  * a list of expanded strings, possibly with larger number
1828  * of strings. (Think VAR="a b"; echo $VAR).
1829  * This new list is allocated as a single malloc block.
1830  * NULL-terminated list of char* pointers is at the beginning of it,
1831  * followed by strings themself.
1832  * Caller can deallocate entire list by single free(list). */
1833
1834 /* Store given string, finalizing the word and starting new one whenever
1835  * we encounter IFS char(s). This is used for expanding variable values.
1836  * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
1837 static int expand_on_ifs(o_string *output, int n, const char *str)
1838 {
1839         while (1) {
1840                 int word_len = strcspn(str, G.ifs);
1841                 if (word_len) {
1842                         if (output->o_escape || !output->o_glob)
1843                                 o_addQstr(output, str, word_len);
1844                         else /* protect backslashes against globbing up :) */
1845                                 o_addblock_duplicate_backslash(output, str, word_len);
1846                         str += word_len;
1847                 }
1848                 if (!*str)  /* EOL - do not finalize word */
1849                         break;
1850                 o_addchr(output, '\0');
1851                 debug_print_list("expand_on_ifs", output, n);
1852                 n = o_save_ptr(output, n);
1853                 str += strspn(str, G.ifs); /* skip ifs chars */
1854         }
1855         debug_print_list("expand_on_ifs[1]", output, n);
1856         return n;
1857 }
1858
1859 /* Helper to expand $((...)) and heredoc body. These act as if
1860  * they are in double quotes, with the exception that they are not :).
1861  * Just the rules are similar: "expand only $var and `cmd`"
1862  *
1863  * Returns malloced string.
1864  * As an optimization, we return NULL if expansion is not needed.
1865  */
1866 static char *expand_pseudo_dquoted(const char *str)
1867 {
1868         char *exp_str;
1869         struct in_str input;
1870         o_string dest = NULL_O_STRING;
1871
1872         if (strchr(str, '$') == NULL
1873 #if ENABLE_HUSH_TICK
1874          && strchr(str, '`') == NULL
1875 #endif
1876         ) {
1877                 return NULL;
1878         }
1879
1880         /* We need to expand. Example:
1881          * echo $(($a + `echo 1`)) $((1 + $((2)) ))
1882          */
1883         setup_string_in_str(&input, str);
1884         parse_stream_dquoted(NULL, &dest, &input, EOF);
1885         //bb_error_msg("'%s' -> '%s'", str, dest.data);
1886         exp_str = expand_string_to_string(dest.data);
1887         //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
1888         o_free_unsafe(&dest);
1889         return exp_str;
1890 }
1891
1892 /* Expand all variable references in given string, adding words to list[]
1893  * at n, n+1,... positions. Return updated n (so that list[n] is next one
1894  * to be filled). This routine is extremely tricky: has to deal with
1895  * variables/parameters with whitespace, $* and $@, and constructs like
1896  * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
1897 static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
1898 {
1899         /* or_mask is either 0 (normal case) or 0x80
1900          * (expansion of right-hand side of assignment == 1-element expand.
1901          * It will also do no globbing, and thus we must not backslash-quote!) */
1902
1903         char first_ch, ored_ch;
1904         int i;
1905         const char *val;
1906         char *dyn_val, *p;
1907
1908         dyn_val = NULL;
1909         ored_ch = 0;
1910
1911         debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg);
1912         debug_print_list("expand_vars_to_list", output, n);
1913         n = o_save_ptr(output, n);
1914         debug_print_list("expand_vars_to_list[0]", output, n);
1915
1916         while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
1917 #if ENABLE_HUSH_TICK
1918                 o_string subst_result = NULL_O_STRING;
1919 #endif
1920 #if ENABLE_SH_MATH_SUPPORT
1921                 char arith_buf[sizeof(arith_t)*3 + 2];
1922 #endif
1923                 o_addblock(output, arg, p - arg);
1924                 debug_print_list("expand_vars_to_list[1]", output, n);
1925                 arg = ++p;
1926                 p = strchr(p, SPECIAL_VAR_SYMBOL);
1927
1928                 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
1929                 /* "$@" is special. Even if quoted, it can still
1930                  * expand to nothing (not even an empty string) */
1931                 if ((first_ch & 0x7f) != '@')
1932                         ored_ch |= first_ch;
1933
1934                 val = NULL;
1935                 switch (first_ch & 0x7f) {
1936                 /* Highest bit in first_ch indicates that var is double-quoted */
1937                 case '$': /* pid */
1938                         val = utoa(G.root_pid);
1939                         break;
1940                 case '!': /* bg pid */
1941                         val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)"";
1942                         break;
1943                 case '?': /* exitcode */
1944                         val = utoa(G.last_exitcode);
1945                         break;
1946                 case '#': /* argc */
1947                         if (arg[1] != SPECIAL_VAR_SYMBOL)
1948                                 /* actually, it's a ${#var} */
1949                                 goto case_default;
1950                         val = utoa(G.global_argc ? G.global_argc-1 : 0);
1951                         break;
1952                 case '*':
1953                 case '@':
1954                         i = 1;
1955                         if (!G.global_argv[i])
1956                                 break;
1957                         ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
1958                         if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
1959                                 smallint sv = output->o_escape;
1960                                 /* unquoted var's contents should be globbed, so don't escape */
1961                                 output->o_escape = 0;
1962                                 while (G.global_argv[i]) {
1963                                         n = expand_on_ifs(output, n, G.global_argv[i]);
1964                                         debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
1965                                         if (G.global_argv[i++][0] && G.global_argv[i]) {
1966                                                 /* this argv[] is not empty and not last:
1967                                                  * put terminating NUL, start new word */
1968                                                 o_addchr(output, '\0');
1969                                                 debug_print_list("expand_vars_to_list[2]", output, n);
1970                                                 n = o_save_ptr(output, n);
1971                                                 debug_print_list("expand_vars_to_list[3]", output, n);
1972                                         }
1973                                 }
1974                                 output->o_escape = sv;
1975                         } else
1976                         /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
1977                          * and in this case should treat it like '$*' - see 'else...' below */
1978                         if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
1979                                 while (1) {
1980                                         o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
1981                                         if (++i >= G.global_argc)
1982                                                 break;
1983                                         o_addchr(output, '\0');
1984                                         debug_print_list("expand_vars_to_list[4]", output, n);
1985                                         n = o_save_ptr(output, n);
1986                                 }
1987                         } else { /* quoted $*: add as one word */
1988                                 while (1) {
1989                                         o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
1990                                         if (!G.global_argv[++i])
1991                                                 break;
1992                                         if (G.ifs[0])
1993                                                 o_addchr(output, G.ifs[0]);
1994                                 }
1995                         }
1996                         break;
1997                 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
1998                         /* "Empty variable", used to make "" etc to not disappear */
1999                         arg++;
2000                         ored_ch = 0x80;
2001                         break;
2002 #if ENABLE_HUSH_TICK
2003                 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
2004                         *p = '\0';
2005                         arg++;
2006 //TODO: can we just stuff it into "output" directly?
2007                         debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
2008                         process_command_subs(&subst_result, arg);
2009                         debug_printf_subst("SUBST RES '%s'\n", subst_result.data);
2010                         val = subst_result.data;
2011                         goto store_val;
2012 #endif
2013 #if ENABLE_SH_MATH_SUPPORT
2014                 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
2015                         arith_eval_hooks_t hooks;
2016                         arith_t res;
2017                         int errcode;
2018                         char *exp_str;
2019
2020                         arg++; /* skip '+' */
2021                         *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
2022                         debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
2023
2024                         exp_str = expand_pseudo_dquoted(arg);
2025                         hooks.lookupvar = get_local_var_value;
2026                         hooks.setvar = arith_set_local_var;
2027                         hooks.endofname = endofname;
2028                         res = arith(exp_str ? exp_str : arg, &errcode, &hooks);
2029                         free(exp_str);
2030
2031                         if (errcode < 0) {
2032                                 const char *msg = "error in arithmetic";
2033                                 switch (errcode) {
2034                                 case -3:
2035                                         msg = "exponent less than 0";
2036                                         break;
2037                                 case -2:
2038                                         msg = "divide by 0";
2039                                         break;
2040                                 case -5:
2041                                         msg = "expression recursion loop detected";
2042                                         break;
2043                                 }
2044                                 die_if_script(msg);
2045                         }
2046                         debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res);
2047                         sprintf(arith_buf, arith_t_fmt, res);
2048                         val = arith_buf;
2049                         break;
2050                 }
2051 #endif
2052                 default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */
2053                 case_default: {
2054                         bool exp_len = false;
2055                         bool exp_null = false;
2056                         char *var = arg;
2057                         char exp_save = exp_save; /* for compiler */
2058                         char exp_op = exp_op; /* for compiler */
2059                         char *exp_word = exp_word; /* for compiler */
2060                         size_t exp_off = 0;
2061
2062                         *p = '\0';
2063                         arg[0] = first_ch & 0x7f;
2064
2065                         /* prepare for expansions */
2066                         if (var[0] == '#') {
2067                                 /* handle length expansion ${#var} */
2068                                 exp_len = true;
2069                                 ++var;
2070                         } else {
2071                                 /* maybe handle parameter expansion */
2072                                 exp_off = strcspn(var, ":-=+?%#");
2073                                 if (!var[exp_off])
2074                                         exp_off = 0;
2075                                 if (exp_off) {
2076                                         exp_save = var[exp_off];
2077                                         exp_null = exp_save == ':';
2078                                         exp_word = var + exp_off;
2079                                         if (exp_null)
2080                                                 ++exp_word;
2081                                         exp_op = *exp_word++;
2082                                         var[exp_off] = '\0';
2083                                 }
2084                         }
2085
2086                         /* lookup the variable in question */
2087                         if (isdigit(var[0])) {
2088                                 /* handle_dollar() should have vetted var for us */
2089                                 i = xatoi_u(var);
2090                                 if (i < G.global_argc)
2091                                         val = G.global_argv[i];
2092                                 /* else val remains NULL: $N with too big N */
2093                         } else
2094                                 val = get_local_var_value(var);
2095
2096                         /* handle any expansions */
2097                         if (exp_len) {
2098                                 debug_printf_expand("expand: length of '%s' = ", val);
2099                                 val = utoa(val ? strlen(val) : 0);
2100                                 debug_printf_expand("%s\n", val);
2101                         } else if (exp_off) {
2102                                 if (exp_op == '%' || exp_op == '#') {
2103                                         if (val) {
2104                                                 /* we need to do a pattern match */
2105                                                 bool zero;
2106                                                 char *loc;
2107                                                 scan_t scan = pick_scan(exp_op, *exp_word, &zero);
2108                                                 if (exp_op == *exp_word)        /* ## or %% */
2109                                                         ++exp_word;
2110                                                 val = dyn_val = xstrdup(val);
2111                                                 loc = scan(dyn_val, exp_word, zero);
2112                                                 if (zero)
2113                                                         val = loc;
2114                                                 else
2115                                                         *loc = '\0';
2116                                         }
2117                                 } else {
2118                                         /* we need to do an expansion */
2119                                         int exp_test = (!val || (exp_null && !val[0]));
2120                                         if (exp_op == '+')
2121                                                 exp_test = !exp_test;
2122                                         debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
2123                                                 exp_null ? "true" : "false", exp_test);
2124                                         if (exp_test) {
2125                                                 if (exp_op == '?') {
2126 //TODO: how interactive bash aborts expansion mid-command?
2127                                                         /* ${var?[error_msg_if_unset]} */
2128                                                         /* ${var:?[error_msg_if_unset_or_null]} */
2129                                                         /* mimic bash message */
2130                                                         die_if_script("%s: %s",
2131                                                                 var,
2132                                                                 exp_word[0] ? exp_word : "parameter null or not set"
2133                                                         );
2134                                                 } else {
2135                                                         val = exp_word;
2136                                                 }
2137
2138                                                 if (exp_op == '=') {
2139                                                         /* ${var=[word]} or ${var:=[word]} */
2140                                                         if (isdigit(var[0]) || var[0] == '#') {
2141                                                                 /* mimic bash message */
2142                                                                 die_if_script("$%s: cannot assign in this way", var);
2143                                                                 val = NULL;
2144                                                         } else {
2145                                                                 char *new_var = xasprintf("%s=%s", var, val);
2146                                                                 set_local_var(new_var, -1, 0);
2147                                                         }
2148                                                 }
2149                                         }
2150                                 }
2151
2152                                 var[exp_off] = exp_save;
2153                         }
2154
2155                         arg[0] = first_ch;
2156 #if ENABLE_HUSH_TICK
2157  store_val:
2158 #endif
2159                         if (!(first_ch & 0x80)) { /* unquoted $VAR */
2160                                 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, output->o_escape);
2161                                 if (val) {
2162                                         /* unquoted var's contents should be globbed, so don't escape */
2163                                         smallint sv = output->o_escape;
2164                                         output->o_escape = 0;
2165                                         n = expand_on_ifs(output, n, val);
2166                                         val = NULL;
2167                                         output->o_escape = sv;
2168                                 }
2169                         } else { /* quoted $VAR, val will be appended below */
2170                                 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, output->o_escape);
2171                         }
2172                 } /* default: */
2173                 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
2174                 if (val) {
2175                         o_addQstr(output, val, strlen(val));
2176                 }
2177                 free(dyn_val);
2178                 dyn_val = NULL;
2179                 /* Do the check to avoid writing to a const string */
2180                 if (*p != SPECIAL_VAR_SYMBOL)
2181                         *p = SPECIAL_VAR_SYMBOL;
2182
2183 #if ENABLE_HUSH_TICK
2184                 o_free(&subst_result);
2185 #endif
2186                 arg = ++p;
2187         } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
2188
2189         if (arg[0]) {
2190                 debug_print_list("expand_vars_to_list[a]", output, n);
2191                 /* this part is literal, and it was already pre-quoted
2192                  * if needed (much earlier), do not use o_addQstr here! */
2193                 o_addstr_with_NUL(output, arg);
2194                 debug_print_list("expand_vars_to_list[b]", output, n);
2195         } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
2196          && !(ored_ch & 0x80) /* and all vars were not quoted. */
2197         ) {
2198                 n--;
2199                 /* allow to reuse list[n] later without re-growth */
2200                 output->has_empty_slot = 1;
2201         } else {
2202                 o_addchr(output, '\0');
2203         }
2204         return n;
2205 }
2206
2207 static char **expand_variables(char **argv, int or_mask)
2208 {
2209         int n;
2210         char **list;
2211         char **v;
2212         o_string output = NULL_O_STRING;
2213
2214         if (or_mask & 0x100) {
2215                 output.o_escape = 1; /* protect against globbing for "$var" */
2216                 /* (unquoted $var will temporarily switch it off) */
2217                 output.o_glob = 1;
2218         }
2219
2220         n = 0;
2221         v = argv;
2222         while (*v) {
2223                 n = expand_vars_to_list(&output, n, *v, (char)or_mask);
2224                 v++;
2225         }
2226         debug_print_list("expand_variables", &output, n);
2227
2228         /* output.data (malloced in one block) gets returned in "list" */
2229         list = o_finalize_list(&output, n);
2230         debug_print_strings("expand_variables[1]", list);
2231         return list;
2232 }
2233
2234 static char **expand_strvec_to_strvec(char **argv)
2235 {
2236         return expand_variables(argv, 0x100);
2237 }
2238
2239 /* Used for expansion of right hand of assignments */
2240 /* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs
2241  * "v=/bin/c*" */
2242 static char *expand_string_to_string(const char *str)
2243 {
2244         char *argv[2], **list;
2245
2246         argv[0] = (char*)str;
2247         argv[1] = NULL;
2248         list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */
2249         if (HUSH_DEBUG)
2250                 if (!list[0] || list[1])
2251                         bb_error_msg_and_die("BUG in varexp2");
2252         /* actually, just move string 2*sizeof(char*) bytes back */
2253         overlapping_strcpy((char*)list, list[0]);
2254         debug_printf_expand("string_to_string='%s'\n", (char*)list);
2255         return (char*)list;
2256 }
2257
2258 /* Used for "eval" builtin */
2259 static char* expand_strvec_to_string(char **argv)
2260 {
2261         char **list;
2262
2263         list = expand_variables(argv, 0x80);
2264         /* Convert all NULs to spaces */
2265         if (list[0]) {
2266                 int n = 1;
2267                 while (list[n]) {
2268                         if (HUSH_DEBUG)
2269                                 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2270                                         bb_error_msg_and_die("BUG in varexp3");
2271                         list[n][-1] = ' '; /* TODO: or to G.ifs[0]? */
2272                         n++;
2273                 }
2274         }
2275         overlapping_strcpy((char*)list, list[0]);
2276         debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
2277         return (char*)list;
2278 }
2279
2280 static char **expand_assignments(char **argv, int count)
2281 {
2282         int i;
2283         char **p = NULL;
2284         /* Expand assignments into one string each */
2285         for (i = 0; i < count; i++) {
2286                 p = add_string_to_strings(p, expand_string_to_string(argv[i]));
2287         }
2288         return p;
2289 }
2290
2291
2292 #if BB_MMU
2293 /* never called */
2294 void re_execute_shell(char ***to_free, const char *s, char *argv0, char **argv);
2295
2296 static void reset_traps_to_defaults(void)
2297 {
2298         /* This function is always called in a child shell
2299          * after fork (not vfork, NOMMU doesn't use this function).
2300          * Child shells are not interactive.
2301          * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
2302          * Testcase: (while :; do :; done) + ^Z should background.
2303          * Same goes for SIGTERM, SIGHUP, SIGINT.
2304          */
2305         unsigned sig;
2306         unsigned mask;
2307
2308         if (!G.traps && !(G.non_DFL_mask & SPECIAL_INTERACTIVE_SIGS))
2309                 return;
2310
2311         /* Stupid. It can be done with *single* &= op, but we can't use
2312          * the fact that G.blocked_set is implemented as a bitmask... */
2313         mask = (SPECIAL_INTERACTIVE_SIGS >> 1);
2314         sig = 1;
2315         while (1) {
2316                 if (mask & 1)
2317                         sigdelset(&G.blocked_set, sig);
2318                 mask >>= 1;
2319                 if (!mask)
2320                         break;
2321                 sig++;
2322         }
2323
2324         G.non_DFL_mask &= ~SPECIAL_INTERACTIVE_SIGS;
2325         mask = G.non_DFL_mask;
2326         if (G.traps) for (sig = 0; sig < NSIG; sig++, mask >>= 1) {
2327                 if (!G.traps[sig])
2328                         continue;
2329                 free(G.traps[sig]);
2330                 G.traps[sig] = NULL;
2331                 /* There is no signal for 0 (EXIT) */
2332                 if (sig == 0)
2333                         continue;
2334                 /* There was a trap handler, we are removing it.
2335                  * But if sig still has non-DFL handling,
2336                  * we should not unblock it. */
2337                 if (mask & 1)
2338                         continue;
2339                 sigdelset(&G.blocked_set, sig);
2340         }
2341         sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
2342 }
2343
2344 #else /* !BB_MMU */
2345
2346 static void re_execute_shell(char ***to_free, const char *s, char *g_argv0, char **g_argv) NORETURN;
2347 static void re_execute_shell(char ***to_free, const char *s, char *g_argv0, char **g_argv)
2348 {
2349         char param_buf[sizeof("-$%x:%x:%x:%x") + sizeof(unsigned) * 4];
2350         char *heredoc_argv[4];
2351         struct variable *cur;
2352 #if ENABLE_HUSH_FUNCTIONS
2353         struct function *funcp;
2354 #endif
2355         char **argv, **pp;
2356         unsigned cnt;
2357
2358         if (!g_argv0) { /* heredoc */
2359                 argv = heredoc_argv;
2360                 argv[0] = (char *) G.argv0_for_re_execing;
2361                 argv[1] = (char *) "-<";
2362                 argv[2] = (char *) s;
2363                 argv[3] = NULL;
2364                 pp = &argv[3]; /* used as pointer to empty environment */
2365                 goto do_exec;
2366         }
2367
2368         sprintf(param_buf, "-$%x:%x:%x" USE_HUSH_LOOPS(":%x")
2369                         , (unsigned) G.root_pid
2370                         , (unsigned) G.last_bg_pid
2371                         , (unsigned) G.last_exitcode
2372                         USE_HUSH_LOOPS(, G.depth_of_loop)
2373                         );
2374         /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<depth> <vars...> <funcs...>
2375          * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
2376          */
2377         cnt = 6;
2378         for (cur = G.top_var; cur; cur = cur->next) {
2379                 if (!cur->flg_export || cur->flg_read_only)
2380                         cnt += 2;
2381         }
2382 #if ENABLE_HUSH_FUNCTIONS
2383         for (funcp = G.top_func; funcp; funcp = funcp->next)
2384                 cnt += 3;
2385 #endif
2386         pp = g_argv;
2387         while (*pp++)
2388                 cnt++;
2389         *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
2390         *pp++ = (char *) G.argv0_for_re_execing;
2391         *pp++ = param_buf;
2392         for (cur = G.top_var; cur; cur = cur->next) {
2393                 if (cur->varstr == hush_version_str)
2394                         continue;
2395                 if (cur->flg_read_only) {
2396                         *pp++ = (char *) "-R";
2397                         *pp++ = cur->varstr;
2398                 } else if (!cur->flg_export) {
2399                         *pp++ = (char *) "-V";
2400                         *pp++ = cur->varstr;
2401                 }
2402         }
2403 #if ENABLE_HUSH_FUNCTIONS
2404         for (funcp = G.top_func; funcp; funcp = funcp->next) {
2405                 *pp++ = (char *) "-F";
2406                 *pp++ = funcp->name;
2407                 *pp++ = funcp->body_as_string;
2408         }
2409 #endif
2410         /* We can pass activated traps here. Say, -Tnn:trap_string
2411          *
2412          * However, POSIX says that subshells reset signals with traps
2413          * to SIG_DFL.
2414          * I tested bash-3.2 and it not only does that with true subshells
2415          * of the form ( list ), but with any forked children shells.
2416          * I set trap "echo W" WINCH; and then tried:
2417          *
2418          * { echo 1; sleep 20; echo 2; } &
2419          * while true; do echo 1; sleep 20; echo 2; break; done &
2420          * true | { echo 1; sleep 20; echo 2; } | cat
2421          *
2422          * In all these cases sending SIGWINCH to the child shell
2423          * did not run the trap. If I add trap "echo V" WINCH;
2424          * _inside_ group (just before echo 1), it works.
2425          *
2426          * I conclude it means we don't need to pass active traps here.
2427          * exec syscall below resets them to SIG_DFL for us.
2428          */
2429         *pp++ = (char *) "-c";
2430         *pp++ = (char *) s;
2431         *pp++ = g_argv0;
2432         while (*g_argv)
2433                 *pp++ = *g_argv++;
2434         /* *pp = NULL; - is already there */
2435         pp = environ;
2436
2437  do_exec:
2438         debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
2439         sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
2440         execve(bb_busybox_exec_path, argv, pp);
2441         /* Fallback. Useful for init=/bin/hush usage etc */
2442         if (argv[0][0] == '/')
2443                 execve(argv[0], argv, pp);
2444         xfunc_error_retval = 127;
2445         bb_error_msg_and_die("can't re-execute the shell");
2446 }
2447 #endif  /* !BB_MMU */
2448
2449
2450 static void setup_heredoc(struct redir_struct *redir)
2451 {
2452         struct fd_pair pair;
2453         pid_t pid;
2454         int len, written;
2455         /* the _body_ of heredoc (misleading field name) */
2456         const char *heredoc = redir->rd_filename;
2457         char *expanded;
2458 #if !BB_MMU
2459         char **to_free;
2460 #endif
2461
2462         expanded = NULL;
2463         if (!(redir->rd_dup & HEREDOC_QUOTED)) {
2464                 expanded = expand_pseudo_dquoted(heredoc);
2465                 if (expanded)
2466                         heredoc = expanded;
2467         }
2468         len = strlen(heredoc);
2469
2470         close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
2471         xpiped_pair(pair);
2472         xmove_fd(pair.rd, redir->rd_fd);
2473
2474         /* Try writing without forking. Newer kernels have
2475          * dynamically growing pipes. Must use non-blocking write! */
2476         ndelay_on(pair.wr);
2477         while (1) {
2478                 written = write(pair.wr, heredoc, len);
2479                 if (written <= 0)
2480                         break;
2481                 len -= written;
2482                 if (len == 0) {
2483                         close(pair.wr);
2484                         free(expanded);
2485                         return;
2486                 }
2487                 heredoc += written;
2488         }
2489         ndelay_off(pair.wr);
2490
2491         /* Okay, pipe buffer was not big enough */
2492         /* Note: we must not create a stray child (bastard? :)
2493          * for the unsuspecting parent process. Child creates a grandchild
2494          * and exits before parent execs the process which consumes heredoc
2495          * (that exec happens after we return from this function) */
2496 #if !BB_MMU
2497         to_free = NULL;
2498 #endif
2499         pid = vfork();
2500         if (pid < 0)
2501                 bb_perror_msg_and_die("vfork");
2502         if (pid == 0) {
2503                 /* child */
2504                 disable_restore_tty_pgrp_on_exit();
2505                 pid = BB_MMU ? fork() : vfork();
2506                 if (pid < 0)
2507                         bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
2508                 if (pid != 0)
2509                         _exit(0);
2510                 /* grandchild */
2511                 close(redir->rd_fd); /* read side of the pipe */
2512 #if BB_MMU
2513                 full_write(pair.wr, heredoc, len); /* may loop or block */
2514                 _exit(0);
2515 #else
2516                 /* Delegate blocking writes to another process */
2517                 xmove_fd(pair.wr, STDOUT_FILENO);
2518                 re_execute_shell(&to_free, heredoc, NULL, NULL);
2519 #endif
2520         }
2521         /* parent */
2522         enable_restore_tty_pgrp_on_exit();
2523 #if !BB_MMU
2524         free(to_free);
2525 #endif
2526         close(pair.wr);
2527         free(expanded);
2528         wait(NULL); /* wait till child has died */
2529 }
2530
2531 /* squirrel != NULL means we squirrel away copies of stdin, stdout,
2532  * and stderr if they are redirected. */
2533 static int setup_redirects(struct command *prog, int squirrel[])
2534 {
2535         int openfd, mode;
2536         struct redir_struct *redir;
2537
2538         for (redir = prog->redirects; redir; redir = redir->next) {
2539                 if (redir->rd_type == REDIRECT_HEREDOC2) {
2540                         /* rd_fd<<HERE case */
2541                         if (squirrel && redir->rd_fd < 3) {
2542                                 squirrel[redir->rd_fd] = dup(redir->rd_fd);
2543                         }
2544                         /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
2545                          * of the heredoc */
2546                         debug_printf_parse("set heredoc '%s'\n",
2547                                         redir->rd_filename);
2548                         setup_heredoc(redir);
2549                         continue;
2550                 }
2551
2552                 if (redir->rd_dup == REDIRFD_TO_FILE) {
2553                         /* rd_fd<*>file case (<*> is <,>,>>,<>) */
2554                         char *p;
2555                         if (redir->rd_filename == NULL) {
2556                                 /* Something went wrong in the parse.
2557                                  * Pretend it didn't happen */
2558                                 bb_error_msg("bug in redirect parse");
2559                                 continue;
2560                         }
2561                         mode = redir_table[redir->rd_type].mode;
2562                         p = expand_string_to_string(redir->rd_filename);
2563                         openfd = open_or_warn(p, mode);
2564                         free(p);
2565                         if (openfd < 0) {
2566                         /* this could get lost if stderr has been redirected, but
2567                          * bash and ash both lose it as well (though zsh doesn't!) */
2568 //what the above comment tries to say?
2569                                 return 1;
2570                         }
2571                 } else {
2572                         /* rd_fd<*>rd_dup or rd_fd<*>- cases */
2573                         openfd = redir->rd_dup;
2574                 }
2575
2576                 if (openfd != redir->rd_fd) {
2577                         if (squirrel && redir->rd_fd < 3) {
2578                                 squirrel[redir->rd_fd] = dup(redir->rd_fd);
2579                         }
2580                         if (openfd == REDIRFD_CLOSE) {
2581                                 /* "n>-" means "close me" */
2582                                 close(redir->rd_fd);
2583                         } else {
2584                                 xdup2(openfd, redir->rd_fd);
2585                                 if (redir->rd_dup == REDIRFD_TO_FILE)
2586                                         close(openfd);
2587                         }
2588                 }
2589         }
2590         return 0;
2591 }
2592
2593 static void restore_redirects(int squirrel[])
2594 {
2595         int i, fd;
2596         for (i = 0; i < 3; i++) {
2597                 fd = squirrel[i];
2598                 if (fd != -1) {
2599                         /* We simply die on error */
2600                         xmove_fd(fd, i);
2601                 }
2602         }
2603 }
2604
2605
2606 static void free_pipe_list(struct pipe *head);
2607
2608 /* Return code is the exit status of the pipe */
2609 static void free_pipe(struct pipe *pi)
2610 {
2611         char **p;
2612         struct command *command;
2613         struct redir_struct *r, *rnext;
2614         int a, i;
2615
2616         if (pi->stopped_cmds > 0) /* why? */
2617                 return;
2618         debug_printf_clean("run pipe: (pid %d)\n", getpid());
2619         for (i = 0; i < pi->num_cmds; i++) {
2620                 command = &pi->cmds[i];
2621                 debug_printf_clean("  command %d:\n", i);
2622                 if (command->argv) {
2623                         for (a = 0, p = command->argv; *p; a++, p++) {
2624                                 debug_printf_clean("   argv[%d] = %s\n", a, *p);
2625                         }
2626                         free_strings(command->argv);
2627                         command->argv = NULL;
2628                 }
2629                 /* not "else if": on syntax error, we may have both! */
2630                 if (command->group) {
2631                         debug_printf_clean("   begin group (grp_type:%d)\n",
2632                                         command->grp_type);
2633                         free_pipe_list(command->group);
2634                         debug_printf_clean("   end group\n");
2635                         command->group = NULL;
2636                 }
2637                 /* else is crucial here.
2638                  * If group != NULL, child_func is meaningless */
2639 #if ENABLE_HUSH_FUNCTIONS
2640                 else if (command->child_func) {
2641                         debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
2642                         command->child_func->parent_cmd = NULL;
2643                 }
2644 #endif
2645 #if !BB_MMU
2646                 free(command->group_as_string);
2647                 command->group_as_string = NULL;
2648 #endif
2649                 for (r = command->redirects; r; r = rnext) {
2650                         debug_printf_clean("   redirect %d%s",
2651                                         r->rd_fd, redir_table[r->rd_type].descrip);
2652                         /* guard against the case >$FOO, where foo is unset or blank */
2653                         if (r->rd_filename) {
2654                                 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
2655                                 free(r->rd_filename);
2656                                 r->rd_filename = NULL;
2657                         }
2658                         debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
2659                         rnext = r->next;
2660                         free(r);
2661                 }
2662                 command->redirects = NULL;
2663         }
2664         free(pi->cmds);   /* children are an array, they get freed all at once */
2665         pi->cmds = NULL;
2666 #if ENABLE_HUSH_JOB
2667         free(pi->cmdtext);
2668         pi->cmdtext = NULL;
2669 #endif
2670 }
2671
2672 static void free_pipe_list(struct pipe *head)
2673 {
2674         struct pipe *pi, *next;
2675
2676         for (pi = head; pi; pi = next) {
2677 #if HAS_KEYWORDS
2678                 debug_printf_clean(" pipe reserved word %d\n", pi->res_word);
2679 #endif
2680                 free_pipe(pi);
2681                 debug_printf_clean("pipe followup code %d\n", pi->followup);
2682                 next = pi->next;
2683                 /*pi->next = NULL;*/
2684                 free(pi);
2685         }
2686 }
2687
2688
2689 static int run_list(struct pipe *pi);
2690 #if BB_MMU
2691 #define parse_stream(pstring, input, end_trigger) \
2692         parse_stream(input, end_trigger)
2693 #endif
2694 static struct pipe *parse_stream(char **pstring,
2695                 struct in_str *input,
2696                 int end_trigger);
2697 static void parse_and_run_string(const char *s);
2698
2699
2700 static const struct built_in_command* find_builtin(const char *name)
2701 {
2702         const struct built_in_command *x;
2703         for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
2704                 if (strcmp(name, x->cmd) != 0)
2705                         continue;
2706                 debug_printf_exec("found builtin '%s'\n", name);
2707                 return x;
2708         }
2709         return NULL;
2710 }
2711
2712 #if ENABLE_HUSH_FUNCTIONS
2713 static const struct function *find_function(const char *name)
2714 {
2715         const struct function *funcp = G.top_func;
2716         while (funcp) {
2717                 if (strcmp(name, funcp->name) == 0) {
2718                         break;
2719                 }
2720                 funcp = funcp->next;
2721         }
2722         debug_printf_exec("found function '%s'\n", name);
2723         return funcp;
2724 }
2725
2726 /* Note: takes ownership on name ptr */
2727 static struct function *new_function(char *name)
2728 {
2729         struct function *funcp;
2730         struct function **funcpp = &G.top_func;
2731
2732         while ((funcp = *funcpp) != NULL) {
2733                 struct command *cmd;
2734
2735                 if (strcmp(funcp->name, name) != 0) {
2736                         funcpp = &funcp->next;
2737                         continue;
2738                 }
2739
2740                 cmd = funcp->parent_cmd;
2741                 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
2742                 if (!cmd) {
2743                         debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
2744                         free(funcp->name);
2745                         /* Note: if !funcp->body, do not free body_as_string!
2746                          * This is a special case of "-F name body" function:
2747                          * body_as_string was not malloced! */
2748                         if (funcp->body) {
2749                                 free_pipe_list(funcp->body);
2750 #if !BB_MMU
2751                                 free(funcp->body_as_string);
2752 #endif
2753                         }
2754                 } else {
2755                         debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
2756                         cmd->argv[0] = funcp->name;
2757                         cmd->group = funcp->body;
2758 #if !BB_MMU
2759                         cmd->group_as_string = funcp->body_as_string;
2760 #endif
2761                 }
2762                 goto skip;
2763         }
2764         debug_printf_exec("remembering new function '%s'\n", command->argv[0]);
2765         funcp = *funcpp = xzalloc(sizeof(*funcp));
2766         /*funcp->next = NULL;*/
2767  skip:
2768         funcp->name = name;
2769         return funcp;
2770 }
2771
2772 #if BB_MMU
2773 #define exec_function(nommu_save, funcp, argv) \
2774         exec_function(funcp, argv)
2775 #endif
2776 static void exec_function(nommu_save_t *nommu_save,
2777                 const struct function *funcp,
2778                 char **argv) NORETURN;
2779 static void exec_function(nommu_save_t *nommu_save,
2780                 const struct function *funcp,
2781                 char **argv)
2782 {
2783 # if BB_MMU
2784         int n = 1;
2785
2786         argv[0] = G.global_argv[0];
2787         G.global_argv = argv;
2788         while (*++argv)
2789                 n++;
2790         G.global_argc = n;
2791         /* On MMU, funcp->body is always non-NULL */
2792         n = run_list(funcp->body);
2793         fflush(NULL);
2794         _exit(n);
2795 # else
2796         re_execute_shell(&nommu_save->argv_from_re_execing,
2797                         funcp->body_as_string,
2798                         G.global_argv[0],
2799                         argv + 1);
2800 # endif
2801 }
2802
2803 static int run_function(const struct function *funcp, char **argv)
2804 {
2805         int n;
2806         char **pp;
2807         char *sv_argv0;
2808         smallint sv_g_malloced;
2809         int sv_g_argc;
2810         char **sv_g_argv;
2811
2812         sv_argv0 = argv[0];
2813         sv_g_malloced = G.global_args_malloced;
2814         sv_g_argc = G.global_argc;
2815         sv_g_argv = G.global_argv;
2816
2817         pp = argv;
2818         n = 1;
2819         while (*++pp)
2820                 n++;
2821
2822         argv[0] = G.global_argv[0]; /* retain $0 */
2823         G.global_args_malloced = 0;
2824         G.global_argc = n;
2825         G.global_argv = argv;
2826
2827         /* On MMU, funcp->body is always non-NULL */
2828 #if !BB_MMU
2829         if (!funcp->body) {
2830                 /* Function defined by -F */
2831                 parse_and_run_string(funcp->body_as_string);
2832                 n = G.last_exitcode;
2833         } else
2834 #endif
2835         {
2836                 n = run_list(funcp->body);
2837         }
2838
2839         if (G.global_args_malloced) {
2840                 /* function ran "set -- arg1 arg2 ..." */
2841                 pp = G.global_argv;
2842                 while (*++pp)
2843                         free(*pp);
2844                 free(G.global_argv);
2845         }
2846
2847         argv[0] = sv_argv0;
2848         G.global_args_malloced = sv_g_malloced;
2849         G.global_argc = sv_g_argc;
2850         G.global_argv = sv_g_argv;
2851
2852         return n;
2853 }
2854 #endif
2855
2856
2857 #if BB_MMU
2858 #define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
2859         pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
2860 #define pseudo_exec(nommu_save, command, argv_expanded) \
2861         pseudo_exec(command, argv_expanded)
2862 #endif
2863
2864 /* Called after [v]fork() in run_pipe, or from builtin_exec.
2865  * Never returns.
2866  * XXX no exit() here.  If you don't exec, use _exit instead.
2867  * The at_exit handlers apparently confuse the calling process,
2868  * in particular stdin handling.  Not sure why? -- because of vfork! (vda) */
2869 static void pseudo_exec_argv(nommu_save_t *nommu_save,
2870                 char **argv, int assignment_cnt,
2871                 char **argv_expanded) NORETURN;
2872 static void pseudo_exec_argv(nommu_save_t *nommu_save,
2873                 char **argv, int assignment_cnt,
2874                 char **argv_expanded)
2875 {
2876         char **new_env;
2877
2878         /* Case when we are here: ... | var=val | ... */
2879         if (!argv[assignment_cnt])
2880                 _exit(EXIT_SUCCESS);
2881
2882         new_env = expand_assignments(argv, assignment_cnt);
2883 #if BB_MMU
2884         putenv_all(new_env);
2885         free(new_env); /* optional */
2886 #else
2887         nommu_save->new_env = new_env;
2888         nommu_save->old_env = putenv_all_and_save_old(new_env);
2889 #endif
2890         if (argv_expanded) {
2891                 argv = argv_expanded;
2892         } else {
2893                 argv = expand_strvec_to_strvec(argv + assignment_cnt);
2894 #if !BB_MMU
2895                 nommu_save->argv = argv;
2896 #endif
2897         }
2898
2899 #if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
2900         if (strchr(argv[0], '/') != NULL)
2901                 goto skip;
2902 #endif
2903
2904         /* On NOMMU, we must never block!
2905          * Example: { sleep 99999 | read line } & echo Ok
2906          * read builtin will block on read syscall, leaving parent blocked
2907          * in vfork. Therefore we can't do this:
2908          */
2909 #if BB_MMU
2910         /* Check if the command matches any of the builtins.
2911          * Depending on context, this might be redundant.  But it's
2912          * easier to waste a few CPU cycles than it is to figure out
2913          * if this is one of those cases.
2914          */
2915         {
2916                 int rcode;
2917                 const struct built_in_command *x = find_builtin(argv[0]);
2918                 if (x) {
2919                         rcode = x->function(argv);
2920                         fflush(NULL);
2921                         _exit(rcode);
2922                 }
2923         }
2924 #endif
2925 #if ENABLE_HUSH_FUNCTIONS
2926         /* Check if the command matches any functions */
2927         {
2928                 const struct function *funcp = find_function(argv[0]);
2929                 if (funcp) {
2930                         exec_function(nommu_save, funcp, argv);
2931                 }
2932         }
2933 #endif
2934
2935 #if ENABLE_FEATURE_SH_STANDALONE
2936         /* Check if the command matches any busybox applets */
2937         {
2938                 int a = find_applet_by_name(argv[0]);
2939                 if (a >= 0) {
2940 # if BB_MMU /* see above why on NOMMU it is not allowed */
2941                         if (APPLET_IS_NOEXEC(a)) {
2942                                 debug_printf_exec("running applet '%s'\n", argv[0]);
2943                                 run_applet_no_and_exit(a, argv);
2944                         }
2945 # endif
2946                         /* Re-exec ourselves */
2947                         debug_printf_exec("re-execing applet '%s'\n", argv[0]);
2948                         sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
2949                         execv(bb_busybox_exec_path, argv);
2950                         /* If they called chroot or otherwise made the binary no longer
2951                          * executable, fall through */
2952                 }
2953         }
2954 #endif
2955
2956 #if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
2957  skip:
2958 #endif
2959         debug_printf_exec("execing '%s'\n", argv[0]);
2960         sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
2961         execvp(argv[0], argv);
2962         bb_perror_msg("can't exec '%s'", argv[0]);
2963         _exit(EXIT_FAILURE);
2964 }
2965
2966 /* Called after [v]fork() in run_pipe
2967  */
2968 static void pseudo_exec(nommu_save_t *nommu_save,
2969                 struct command *command,
2970                 char **argv_expanded) NORETURN;
2971 static void pseudo_exec(nommu_save_t *nommu_save,
2972                 struct command *command,
2973                 char **argv_expanded)
2974 {
2975         if (command->argv) {
2976                 pseudo_exec_argv(nommu_save, command->argv,
2977                                 command->assignment_cnt, argv_expanded);
2978         }
2979
2980         if (command->group) {
2981                 /* Cases when we are here:
2982                  * ( list )
2983                  * { list } &
2984                  * ... | ( list ) | ...
2985                  * ... | { list } | ...
2986                  */
2987 #if BB_MMU
2988                 int rcode;
2989                 debug_printf_exec("pseudo_exec: run_list\n");
2990                 reset_traps_to_defaults();
2991                 rcode = run_list(command->group);
2992                 /* OK to leak memory by not calling free_pipe_list,
2993                  * since this process is about to exit */
2994                 _exit(rcode);
2995 #else
2996                 re_execute_shell(&nommu_save->argv_from_re_execing,
2997                                 command->group_as_string,
2998                                 G.global_argv[0],
2999                                 G.global_argv + 1);
3000 #endif
3001         }
3002
3003         /* Case when we are here: ... | >file */
3004         debug_printf_exec("pseudo_exec'ed null command\n");
3005         _exit(EXIT_SUCCESS);
3006 }
3007
3008 #if ENABLE_HUSH_JOB
3009 static const char *get_cmdtext(struct pipe *pi)
3010 {
3011         char **argv;
3012         char *p;
3013         int len;
3014
3015         /* This is subtle. ->cmdtext is created only on first backgrounding.
3016          * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
3017          * On subsequent bg argv is trashed, but we won't use it */
3018         if (pi->cmdtext)
3019                 return pi->cmdtext;
3020         argv = pi->cmds[0].argv;
3021         if (!argv || !argv[0]) {
3022                 pi->cmdtext = xzalloc(1);
3023                 return pi->cmdtext;
3024         }
3025
3026         len = 0;
3027         do len += strlen(*argv) + 1; while (*++argv);
3028         pi->cmdtext = p = xmalloc(len);
3029         argv = pi->cmds[0].argv;
3030         do {
3031                 len = strlen(*argv);
3032                 memcpy(p, *argv, len);
3033                 p += len;
3034                 *p++ = ' ';
3035         } while (*++argv);
3036         p[-1] = '\0';
3037         return pi->cmdtext;
3038 }
3039
3040 static void insert_bg_job(struct pipe *pi)
3041 {
3042         struct pipe *thejob;
3043         int i;
3044
3045         /* Linear search for the ID of the job to use */
3046         pi->jobid = 1;
3047         for (thejob = G.job_list; thejob; thejob = thejob->next)
3048                 if (thejob->jobid >= pi->jobid)
3049                         pi->jobid = thejob->jobid + 1;
3050
3051         /* Add thejob to the list of running jobs */
3052         if (!G.job_list) {
3053                 thejob = G.job_list = xmalloc(sizeof(*thejob));
3054         } else {
3055                 for (thejob = G.job_list; thejob->next; thejob = thejob->next)
3056                         continue;
3057                 thejob->next = xmalloc(sizeof(*thejob));
3058                 thejob = thejob->next;
3059         }
3060
3061         /* Physically copy the struct job */
3062         memcpy(thejob, pi, sizeof(struct pipe));
3063         thejob->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
3064         /* We cannot copy entire pi->cmds[] vector! Double free()s will happen */
3065         for (i = 0; i < pi->num_cmds; i++) {
3066 // TODO: do we really need to have so many fields which are just dead weight
3067 // at execution stage?
3068                 thejob->cmds[i].pid = pi->cmds[i].pid;
3069                 /* all other fields are not used and stay zero */
3070         }
3071         thejob->next = NULL;
3072         thejob->cmdtext = xstrdup(get_cmdtext(pi));
3073
3074         /* We don't wait for background thejobs to return -- append it
3075            to the list of backgrounded thejobs and leave it alone */
3076         if (G_interactive_fd)
3077                 printf("[%d] %d %s\n", thejob->jobid, thejob->cmds[0].pid, thejob->cmdtext);
3078         G.last_bg_pid = thejob->cmds[0].pid;
3079         G.last_jobid = thejob->jobid;
3080 }
3081
3082 static void remove_bg_job(struct pipe *pi)
3083 {
3084         struct pipe *prev_pipe;
3085
3086         if (pi == G.job_list) {
3087                 G.job_list = pi->next;
3088         } else {
3089                 prev_pipe = G.job_list;
3090                 while (prev_pipe->next != pi)
3091                         prev_pipe = prev_pipe->next;
3092                 prev_pipe->next = pi->next;
3093         }
3094         if (G.job_list)
3095                 G.last_jobid = G.job_list->jobid;
3096         else
3097                 G.last_jobid = 0;
3098 }
3099
3100 /* Remove a backgrounded job */
3101 static void delete_finished_bg_job(struct pipe *pi)
3102 {
3103         remove_bg_job(pi);
3104         pi->stopped_cmds = 0;
3105         free_pipe(pi);
3106         free(pi);
3107 }
3108 #endif /* JOB */
3109
3110 /* Check to see if any processes have exited -- if they
3111  * have, figure out why and see if a job has completed */
3112 static int checkjobs(struct pipe* fg_pipe)
3113 {
3114         int attributes;
3115         int status;
3116 #if ENABLE_HUSH_JOB
3117         struct pipe *pi;
3118 #endif
3119         pid_t childpid;
3120         int rcode = 0;
3121
3122         debug_printf_jobs("checkjobs %p\n", fg_pipe);
3123
3124         errno = 0;
3125 //      if (G.handled_SIGCHLD == G.count_SIGCHLD)
3126 //              /* avoid doing syscall, nothing there anyway */
3127 //              return rcode;
3128
3129         attributes = WUNTRACED;
3130         if (fg_pipe == NULL)
3131                 attributes |= WNOHANG;
3132
3133 /* Do we do this right?
3134  * bash-3.00# sleep 20 | false
3135  * <ctrl-Z pressed>
3136  * [3]+  Stopped          sleep 20 | false
3137  * bash-3.00# echo $?
3138  * 1   <========== bg pipe is not fully done, but exitcode is already known!
3139  */
3140
3141 //FIXME: non-interactive bash does not continue even if all processes in fg pipe
3142 //are stopped. Testcase: "cat | cat" in a script (not on command line)
3143 // + killall -STOP cat
3144
3145  wait_more:
3146         while (1) {
3147                 int i;
3148                 int dead;
3149
3150 //              i = G.count_SIGCHLD;
3151                 childpid = waitpid(-1, &status, attributes);
3152                 if (childpid <= 0) {
3153                         if (childpid && errno != ECHILD)
3154                                 bb_perror_msg("waitpid");
3155 //                      else /* Until next SIGCHLD, waitpid's are useless */
3156 //                              G.handled_SIGCHLD = i;
3157                         break;
3158                 }
3159                 dead = WIFEXITED(status) || WIFSIGNALED(status);
3160
3161 #if DEBUG_JOBS
3162                 if (WIFSTOPPED(status))
3163                         debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
3164                                         childpid, WSTOPSIG(status), WEXITSTATUS(status));
3165                 if (WIFSIGNALED(status))
3166                         debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
3167                                         childpid, WTERMSIG(status), WEXITSTATUS(status));
3168                 if (WIFEXITED(status))
3169                         debug_printf_jobs("pid %d exited, exitcode %d\n",
3170                                         childpid, WEXITSTATUS(status));
3171 #endif
3172                 /* Were we asked to wait for fg pipe? */
3173                 if (fg_pipe) {
3174                         for (i = 0; i < fg_pipe->num_cmds; i++) {
3175                                 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
3176                                 if (fg_pipe->cmds[i].pid != childpid)
3177                                         continue;
3178                                 /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */
3179                                 if (dead) {
3180                                         fg_pipe->cmds[i].pid = 0;
3181                                         fg_pipe->alive_cmds--;
3182                                         if (i == fg_pipe->num_cmds - 1) {
3183                                                 /* last process gives overall exitstatus */
3184                                                 rcode = WEXITSTATUS(status);
3185                                                 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
3186                                         }
3187                                 } else {
3188                                         fg_pipe->cmds[i].is_stopped = 1;
3189                                         fg_pipe->stopped_cmds++;
3190                                 }
3191                                 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
3192                                                 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
3193                                 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
3194                                         /* All processes in fg pipe have exited/stopped */
3195 #if ENABLE_HUSH_JOB
3196                                         if (fg_pipe->alive_cmds)
3197                                                 insert_bg_job(fg_pipe);
3198 #endif
3199                                         return rcode;
3200                                 }
3201                                 /* There are still running processes in the fg pipe */
3202                                 goto wait_more; /* do waitpid again */
3203                         }
3204                         /* it wasnt fg_pipe, look for process in bg pipes */
3205                 }
3206
3207 #if ENABLE_HUSH_JOB
3208                 /* We asked to wait for bg or orphaned children */
3209                 /* No need to remember exitcode in this case */
3210                 for (pi = G.job_list; pi; pi = pi->next) {
3211                         for (i = 0; i < pi->num_cmds; i++) {
3212                                 if (pi->cmds[i].pid == childpid)
3213                                         goto found_pi_and_prognum;
3214                         }
3215                 }
3216                 /* Happens when shell is used as init process (init=/bin/sh) */
3217                 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
3218                 continue; /* do waitpid again */
3219
3220  found_pi_and_prognum:
3221                 if (dead) {
3222                         /* child exited */
3223                         pi->cmds[i].pid = 0;
3224                         pi->alive_cmds--;
3225                         if (!pi->alive_cmds) {
3226                                 if (G_interactive_fd)
3227                                         printf(JOB_STATUS_FORMAT, pi->jobid,
3228                                                         "Done", pi->cmdtext);
3229                                 delete_finished_bg_job(pi);
3230                         }
3231                 } else {
3232                         /* child stopped */
3233                         pi->cmds[i].is_stopped = 1;
3234                         pi->stopped_cmds++;
3235                 }
3236 #endif
3237         } /* while (waitpid succeeds)... */
3238
3239         return rcode;
3240 }
3241
3242 #if ENABLE_HUSH_JOB
3243 static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
3244 {
3245         pid_t p;
3246         int rcode = checkjobs(fg_pipe);
3247         /* Job finished, move the shell to the foreground */
3248         p = getpgid(0); /* pgid of our process */
3249         debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p);
3250         tcsetpgrp(G_interactive_fd, p);
3251         return rcode;
3252 }
3253 #endif
3254
3255 /* Start all the jobs, but don't wait for anything to finish.
3256  * See checkjobs().
3257  *
3258  * Return code is normally -1, when the caller has to wait for children
3259  * to finish to determine the exit status of the pipe.  If the pipe
3260  * is a simple builtin command, however, the action is done by the
3261  * time run_pipe returns, and the exit code is provided as the
3262  * return value.
3263  *
3264  * Returns -1 only if started some children. IOW: we have to
3265  * mask out retvals of builtins etc with 0xff!
3266  *
3267  * The only case when we do not need to [v]fork is when the pipe
3268  * is single, non-backgrounded, non-subshell command. Examples:
3269  * cmd ; ...   { list } ; ...
3270  * cmd && ...  { list } && ...
3271  * cmd || ...  { list } || ...
3272  * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
3273  * or (if SH_STANDALONE) an applet, and we can run the { list }
3274  * with run_list(). If it isn't one of these, we fork and exec cmd.
3275  *
3276  * Cases when we must fork:
3277  * non-single:   cmd | cmd
3278  * backgrounded: cmd &     { list } &
3279  * subshell:     ( list ) [&]
3280  */
3281 static int run_pipe(struct pipe *pi)
3282 {
3283         static const char *const null_ptr = NULL;
3284         int i;
3285         int nextin;
3286         int pipefds[2];         /* pipefds[0] is for reading */
3287         struct command *command;
3288         char **argv_expanded;
3289         char **argv;
3290         char *p;
3291         /* it is not always needed, but we aim to smaller code */
3292         int squirrel[] = { -1, -1, -1 };
3293         int rcode;
3294
3295         debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
3296         debug_enter();
3297
3298         USE_HUSH_JOB(pi->pgrp = -1;)
3299         pi->stopped_cmds = 0;
3300         command = &(pi->cmds[0]);
3301         argv_expanded = NULL;
3302
3303         if (pi->num_cmds != 1
3304          || pi->followup == PIPE_BG
3305          || command->grp_type == GRP_SUBSHELL
3306         ) {
3307                 goto must_fork;
3308         }
3309
3310         pi->alive_cmds = 1;
3311
3312         debug_printf_exec(": group:%p argv:'%s'\n",
3313                 command->group, command->argv ? command->argv[0] : "NONE");
3314
3315         if (command->group) {
3316 #if ENABLE_HUSH_FUNCTIONS
3317                 if (command->grp_type == GRP_FUNCTION) {
3318                         /* "executing" func () { list } */
3319                         struct function *funcp;
3320
3321                         funcp = new_function(command->argv[0]);
3322                         /* funcp->name is already set to argv[0] */
3323                         funcp->body = command->group;
3324 #if !BB_MMU
3325                         funcp->body_as_string = command->group_as_string;
3326                         command->group_as_string = NULL;
3327 #endif
3328                         command->group = NULL;
3329                         command->argv[0] = NULL;
3330                         debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
3331                         funcp->parent_cmd = command;
3332                         command->child_func = funcp;
3333
3334                         debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
3335                         debug_leave();
3336                         return EXIT_SUCCESS;
3337                 }
3338 #endif
3339                 /* { list } */
3340                 debug_printf("non-subshell group\n");
3341                 rcode = 1; /* exitcode if redir failed */
3342                 if (setup_redirects(command, squirrel) == 0) {
3343                         debug_printf_exec(": run_list\n");
3344                         rcode = run_list(command->group) & 0xff;
3345                 }
3346                 restore_redirects(squirrel);
3347                 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
3348                 debug_leave();
3349                 debug_printf_exec("run_pipe: return %d\n", rcode);
3350                 return rcode;
3351         }
3352
3353         argv = command->argv ? command->argv : (char **) &null_ptr;
3354         {
3355                 const struct built_in_command *x;
3356 #if ENABLE_HUSH_FUNCTIONS
3357                 const struct function *funcp;
3358 #else
3359                 enum { funcp = 0 };
3360 #endif
3361                 char **new_env = NULL;
3362                 char **old_env = NULL;
3363
3364                 if (argv[command->assignment_cnt] == NULL) {
3365                         /* Assignments, but no command */
3366                         /* Ensure redirects take effect. Try "a=t >file" */
3367                         rcode = setup_redirects(command, squirrel);
3368                         restore_redirects(squirrel);
3369                         /* Set shell variables */
3370                         while (*argv) {
3371                                 p = expand_string_to_string(*argv);
3372                                 debug_printf_exec("set shell var:'%s'->'%s'\n",
3373                                                 *argv, p);
3374                                 set_local_var(p, 0, 0);
3375                                 argv++;
3376                         }
3377                         /* Do we need to flag set_local_var() errors?
3378                          * "assignment to readonly var" and "putenv error"
3379                          */
3380                         IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
3381                         debug_leave();
3382                         debug_printf_exec("run_pipe: return %d\n", rcode);
3383                         return rcode;
3384                 }
3385
3386                 /* Expand the rest into (possibly) many strings each */
3387                 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
3388
3389                 x = find_builtin(argv_expanded[0]);
3390 #if ENABLE_HUSH_FUNCTIONS
3391                 funcp = NULL;
3392                 if (!x)
3393                         funcp = find_function(argv_expanded[0]);
3394 #endif
3395                 if (x || funcp) {
3396                         if (!funcp) {
3397                                 if (x->function == builtin_exec && argv_expanded[1] == NULL) {
3398                                         debug_printf("exec with redirects only\n");
3399                                         rcode = setup_redirects(command, NULL);
3400                                         goto clean_up_and_ret1;
3401                                 }
3402                         }
3403                         /* XXX setup_redirects acts on file descriptors, not FILEs.
3404                          * This is perfect for work that comes after exec().
3405                          * Is it really safe for inline use?  Experimentally,
3406                          * things seem to work with glibc. */
3407                         rcode = setup_redirects(command, squirrel);
3408                         if (rcode == 0) {
3409                                 new_env = expand_assignments(argv, command->assignment_cnt);
3410                                 old_env = putenv_all_and_save_old(new_env);
3411                                 if (!funcp) {
3412                                         debug_printf_exec(": builtin '%s' '%s'...\n",
3413                                                 x->cmd, argv_expanded[1]);
3414                                         rcode = x->function(argv_expanded) & 0xff;
3415                                 }
3416 #if ENABLE_HUSH_FUNCTIONS
3417                                 else {
3418                                         debug_printf_exec(": function '%s' '%s'...\n",
3419                                                 funcp->name, argv_expanded[1]);
3420                                         rcode = run_function(funcp, argv_expanded) & 0xff;
3421                                 }
3422 #endif
3423                         }
3424 #if ENABLE_FEATURE_SH_STANDALONE
3425  clean_up_and_ret:
3426 #endif
3427                         restore_redirects(squirrel);
3428                         free_strings_and_unsetenv(new_env, 1);
3429                         putenv_all(old_env);
3430                         /* Free the pointers, but the strings themselves
3431                          * are in environ now, don't use free_strings! */
3432                         free(old_env);
3433  clean_up_and_ret1:
3434                         free(argv_expanded);
3435                         IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
3436                         debug_leave();
3437                         debug_printf_exec("run_pipe return %d\n", rcode);
3438                         return rcode;
3439                 }
3440
3441 #if ENABLE_FEATURE_SH_STANDALONE
3442                 i = find_applet_by_name(argv_expanded[0]);
3443                 if (i >= 0 && APPLET_IS_NOFORK(i)) {
3444                         rcode = setup_redirects(command, squirrel);
3445                         if (rcode == 0) {
3446                                 new_env = expand_assignments(argv, command->assignment_cnt);
3447                                 old_env = putenv_all_and_save_old(new_env);
3448                                 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
3449                                         argv_expanded[0], argv_expanded[1]);
3450                                 rcode = run_nofork_applet(i, argv_expanded);
3451                         }
3452                         goto clean_up_and_ret;
3453                 }
3454 #endif
3455                 /* It is neither builtin nor applet. We must fork. */
3456         }
3457
3458  must_fork:
3459         /* NB: argv_expanded may already be created, and that
3460          * might include `cmd` runs! Do not rerun it! We *must*
3461          * use argv_expanded if it's non-NULL */
3462
3463         /* Going to fork a child per each pipe member */
3464         pi->alive_cmds = 0;
3465         nextin = 0;
3466
3467         for (i = 0; i < pi->num_cmds; i++) {
3468 #if !BB_MMU
3469                 volatile nommu_save_t nommu_save;
3470                 nommu_save.new_env = NULL;
3471                 nommu_save.old_env = NULL;
3472                 nommu_save.argv = NULL;
3473                 nommu_save.argv_from_re_execing = NULL;
3474 #endif
3475                 command = &(pi->cmds[i]);
3476                 if (command->argv) {
3477                         debug_printf_exec(": pipe member '%s' '%s'...\n",
3478                                         command->argv[0], command->argv[1]);
3479                 } else {
3480                         debug_printf_exec(": pipe member with no argv\n");
3481                 }
3482
3483                 /* pipes are inserted between pairs of commands */
3484                 pipefds[0] = 0;
3485                 pipefds[1] = 1;
3486                 if ((i + 1) < pi->num_cmds)
3487                         xpipe(pipefds);
3488
3489                 command->pid = BB_MMU ? fork() : vfork();
3490                 if (!command->pid) { /* child */
3491 #if ENABLE_HUSH_JOB
3492                         disable_restore_tty_pgrp_on_exit();
3493
3494                         /* Every child adds itself to new process group
3495                          * with pgid == pid_of_first_child_in_pipe */
3496                         if (G.run_list_level == 1 && G_interactive_fd) {
3497                                 pid_t pgrp;
3498                                 pgrp = pi->pgrp;
3499                                 if (pgrp < 0) /* true for 1st process only */
3500                                         pgrp = getpid();
3501                                 if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) {
3502                                         /* We do it in *every* child, not just first,
3503                                          * to avoid races */
3504                                         tcsetpgrp(G_interactive_fd, pgrp);
3505                                 }
3506                         }
3507 #endif
3508                         xmove_fd(nextin, 0);
3509                         xmove_fd(pipefds[1], 1); /* write end */
3510                         if (pipefds[0] > 1)
3511                                 close(pipefds[0]); /* read end */
3512                         /* Like bash, explicit redirects override pipes,
3513                          * and the pipe fd is available for dup'ing. */
3514                         if (setup_redirects(command, NULL))
3515                                 _exit(1);
3516
3517                         /* Restore default handlers just prior to exec */
3518                         /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
3519
3520                         /* Stores to nommu_save list of env vars putenv'ed
3521                          * (NOMMU, on MMU we don't need that) */
3522                         /* cast away volatility... */
3523                         pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
3524                         /* pseudo_exec() does not return */
3525                 }
3526
3527                 /* parent or error */
3528                 enable_restore_tty_pgrp_on_exit();
3529 #if !BB_MMU
3530                 /* Clean up after vforked child */
3531                 free(nommu_save.argv);
3532                 free(nommu_save.argv_from_re_execing);
3533                 free_strings_and_unsetenv(nommu_save.new_env, 1);
3534                 putenv_all(nommu_save.old_env);
3535                 /* Free the pointers, but the strings themselves
3536                  * are in environ now, don't use free_strings! */
3537                 free(nommu_save.old_env);
3538 #endif
3539                 free(argv_expanded);
3540                 argv_expanded = NULL;
3541                 if (command->pid < 0) { /* [v]fork failed */
3542                         /* Clearly indicate, was it fork or vfork */
3543                         bb_perror_msg(BB_MMU ? "fork" : "vfork");
3544                 } else {
3545                         pi->alive_cmds++;
3546 #if ENABLE_HUSH_JOB
3547                         /* Second and next children need to know pid of first one */
3548                         if (pi->pgrp < 0)
3549                                 pi->pgrp = command->pid;
3550 #endif
3551                 }
3552
3553                 if (i)
3554                         close(nextin);
3555                 if ((i + 1) < pi->num_cmds)
3556                         close(pipefds[1]); /* write end */
3557                 /* Pass read (output) pipe end to next iteration */
3558                 nextin = pipefds[0];
3559         }
3560
3561         if (!pi->alive_cmds) {
3562                 debug_leave();
3563                 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
3564                 return 1;
3565         }
3566
3567         debug_leave();
3568         debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
3569         return -1;
3570 }
3571
3572 #ifndef debug_print_tree
3573 static void debug_print_tree(struct pipe *pi, int lvl)
3574 {
3575         static const char *const PIPE[] = {
3576                 [PIPE_SEQ] = "SEQ",
3577                 [PIPE_AND] = "AND",
3578                 [PIPE_OR ] = "OR" ,
3579                 [PIPE_BG ] = "BG" ,
3580         };
3581         static const char *RES[] = {
3582                 [RES_NONE ] = "NONE" ,
3583 #if ENABLE_HUSH_IF
3584                 [RES_IF   ] = "IF"   ,
3585                 [RES_THEN ] = "THEN" ,
3586                 [RES_ELIF ] = "ELIF" ,
3587                 [RES_ELSE ] = "ELSE" ,
3588                 [RES_FI   ] = "FI"   ,
3589 #endif
3590 #if ENABLE_HUSH_LOOPS
3591                 [RES_FOR  ] = "FOR"  ,
3592                 [RES_WHILE] = "WHILE",
3593                 [RES_UNTIL] = "UNTIL",
3594                 [RES_DO   ] = "DO"   ,
3595                 [RES_DONE ] = "DONE" ,
3596 #endif
3597 #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
3598                 [RES_IN   ] = "IN"   ,
3599 #endif
3600 #if ENABLE_HUSH_CASE
3601                 [RES_CASE ] = "CASE" ,
3602                 [RES_MATCH] = "MATCH",
3603                 [RES_CASEI] = "CASEI",
3604                 [RES_ESAC ] = "ESAC" ,
3605 #endif
3606                 [RES_XXXX ] = "XXXX" ,
3607                 [RES_SNTX ] = "SNTX" ,
3608         };
3609         static const char *const GRPTYPE[] = {
3610                 "{}",
3611                 "()",
3612 #if ENABLE_HUSH_FUNCTIONS
3613                 "func()",
3614 #endif
3615         };
3616
3617         int pin, prn;
3618
3619         pin = 0;
3620         while (pi) {
3621                 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
3622                                 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
3623                 prn = 0;
3624                 while (prn < pi->num_cmds) {
3625                         struct command *command = &pi->cmds[prn];
3626                         char **argv = command->argv;
3627
3628                         fprintf(stderr, "%*s cmd %d assignment_cnt:%d",
3629                                         lvl*2, "", prn,
3630                                         command->assignment_cnt);
3631                         if (command->group) {
3632                                 fprintf(stderr, " group %s: (argv=%p)\n",
3633                                                 GRPTYPE[command->grp_type],
3634                                                 argv);
3635                                 debug_print_tree(command->group, lvl+1);
3636                                 prn++;
3637                                 continue;
3638                         }
3639                         if (argv) while (*argv) {
3640                                 fprintf(stderr, " '%s'", *argv);
3641                                 argv++;
3642                         }
3643                         fprintf(stderr, "\n");
3644                         prn++;
3645                 }
3646                 pi = pi->next;
3647                 pin++;
3648         }
3649 }
3650 #endif
3651
3652 /* NB: called by pseudo_exec, and therefore must not modify any
3653  * global data until exec/_exit (we can be a child after vfork!) */
3654 static int run_list(struct pipe *pi)
3655 {
3656 #if ENABLE_HUSH_CASE
3657         char *case_word = NULL;
3658 #endif
3659 #if ENABLE_HUSH_LOOPS
3660         struct pipe *loop_top = NULL;
3661         char *for_varname = NULL;
3662         char **for_lcur = NULL;
3663         char **for_list = NULL;
3664 #endif
3665         smallint last_followup;
3666         smalluint rcode;
3667 #if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
3668         smalluint cond_code = 0;
3669 #else
3670         enum { cond_code = 0 };
3671 #endif
3672 #if HAS_KEYWORDS
3673         smallint rword; /* enum reserved_style */
3674         smallint last_rword; /* ditto */
3675 #endif
3676
3677         debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
3678         debug_enter();
3679
3680 #if ENABLE_HUSH_LOOPS
3681         /* Check syntax for "for" */
3682         for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
3683                 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
3684                         continue;
3685                 /* current word is FOR or IN (BOLD in comments below) */
3686                 if (cpipe->next == NULL) {
3687                         syntax_error("malformed for");
3688                         debug_leave();
3689                         debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
3690                         return 1;
3691                 }
3692                 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
3693                 if (cpipe->next->res_word == RES_DO)
3694                         continue;
3695                 /* next word is not "do". It must be "in" then ("FOR v in ...") */
3696                 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
3697                  || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
3698                 ) {
3699                         syntax_error("malformed for");
3700                         debug_leave();
3701                         debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
3702                         return 1;
3703                 }
3704         }
3705 #endif
3706
3707         /* Past this point, all code paths should jump to ret: label
3708          * in order to return, no direct "return" statements please.
3709          * This helps to ensure that no memory is leaked. */
3710
3711 #if ENABLE_HUSH_JOB
3712         G.run_list_level++;
3713 #endif
3714
3715 #if HAS_KEYWORDS
3716         rword = RES_NONE;
3717         last_rword = RES_XXXX;
3718 #endif
3719         last_followup = PIPE_SEQ;
3720         rcode = G.last_exitcode;
3721
3722         /* Go through list of pipes, (maybe) executing them. */
3723         for (; pi; pi = USE_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
3724                 if (G.flag_SIGINT)
3725                         break;
3726
3727                 IF_HAS_KEYWORDS(rword = pi->res_word;)
3728                 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
3729                                 rword, cond_code, last_rword);
3730 #if ENABLE_HUSH_LOOPS
3731                 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
3732                  && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
3733                 ) {
3734                         /* start of a loop: remember where loop starts */
3735                         loop_top = pi;
3736                         G.depth_of_loop++;
3737                 }
3738 #endif
3739                 /* Still in the same "if...", "then..." or "do..." branch? */
3740                 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
3741                         if ((rcode == 0 && last_followup == PIPE_OR)
3742                          || (rcode != 0 && last_followup == PIPE_AND)
3743                         ) {
3744                                 /* It is "<true> || CMD" or "<false> && CMD"
3745                                  * and we should not execute CMD */
3746                                 debug_printf_exec("skipped cmd because of || or &&\n");
3747                                 last_followup = pi->followup;
3748                                 continue;
3749                         }
3750                 }
3751                 last_followup = pi->followup;
3752                 IF_HAS_KEYWORDS(last_rword = rword;)
3753 #if ENABLE_HUSH_IF
3754                 if (cond_code) {
3755                         if (rword == RES_THEN) {
3756                                 /* if false; then ... fi has exitcode 0! */
3757                                 G.last_exitcode = rcode = EXIT_SUCCESS;
3758                                 /* "if <false> THEN cmd": skip cmd */
3759                                 continue;
3760                         }
3761                 } else {
3762                         if (rword == RES_ELSE || rword == RES_ELIF) {
3763                                 /* "if <true> then ... ELSE/ELIF cmd":
3764                                  * skip cmd and all following ones */
3765                                 break;
3766                         }
3767                 }
3768 #endif
3769 #if ENABLE_HUSH_LOOPS
3770                 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
3771                         if (!for_lcur) {
3772                                 /* first loop through for */
3773
3774                                 static const char encoded_dollar_at[] ALIGN1 = {
3775                                         SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
3776                                 }; /* encoded representation of "$@" */
3777                                 static const char *const encoded_dollar_at_argv[] = {
3778                                         encoded_dollar_at, NULL
3779                                 }; /* argv list with one element: "$@" */
3780                                 char **vals;
3781
3782                                 vals = (char**)encoded_dollar_at_argv;
3783                                 if (pi->next->res_word == RES_IN) {
3784                                         /* if no variable values after "in" we skip "for" */
3785                                         if (!pi->next->cmds[0].argv) {
3786                                                 G.last_exitcode = rcode = EXIT_SUCCESS;
3787                                                 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
3788                                                 break;
3789                                         }
3790                                         vals = pi->next->cmds[0].argv;
3791                                 } /* else: "for var; do..." -> assume "$@" list */
3792                                 /* create list of variable values */
3793                                 debug_print_strings("for_list made from", vals);
3794                                 for_list = expand_strvec_to_strvec(vals);
3795                                 for_lcur = for_list;
3796                                 debug_print_strings("for_list", for_list);
3797                                 for_varname = pi->cmds[0].argv[0];
3798                                 pi->cmds[0].argv[0] = NULL;
3799                         }
3800                         free(pi->cmds[0].argv[0]);
3801                         if (!*for_lcur) {
3802                                 /* "for" loop is over, clean up */
3803                                 free(for_list);
3804                                 for_list = NULL;
3805                                 for_lcur = NULL;
3806                                 pi->cmds[0].argv[0] = for_varname;
3807                                 break;
3808                         }
3809                         /* Insert next value from for_lcur */
3810                         /* note: *for_lcur already has quotes removed, $var expanded, etc */
3811                         pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++);
3812                         pi->cmds[0].assignment_cnt = 1;
3813                 }
3814                 if (rword == RES_IN) {
3815                         continue; /* "for v IN list;..." - "in" has no cmds anyway */
3816                 }
3817                 if (rword == RES_DONE) {
3818                         continue; /* "done" has no cmds too */
3819                 }
3820 #endif
3821 #if ENABLE_HUSH_CASE
3822                 if (rword == RES_CASE) {
3823                         case_word = expand_strvec_to_string(pi->cmds->argv);
3824                         continue;
3825                 }
3826                 if (rword == RES_MATCH) {
3827                         char **argv;
3828
3829                         if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
3830                                 break;
3831                         /* all prev words didn't match, does this one match? */
3832                         argv = pi->cmds->argv;
3833                         while (*argv) {
3834                                 char *pattern = expand_string_to_string(*argv);
3835                                 /* TODO: which FNM_xxx flags to use? */
3836                                 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
3837                                 free(pattern);
3838                                 if (cond_code == 0) { /* match! we will execute this branch */
3839                                         free(case_word); /* make future "word)" stop */
3840                                         case_word = NULL;
3841                                         break;
3842                                 }
3843                                 argv++;
3844                         }
3845                         continue;
3846                 }
3847                 if (rword == RES_CASEI) { /* inside of a case branch */
3848                         if (cond_code != 0)
3849                                 continue; /* not matched yet, skip this pipe */
3850                 }
3851 #endif
3852                 /* Just pressing <enter> in shell should check for jobs.
3853                  * OTOH, in non-interactive shell this is useless
3854                  * and only leads to extra job checks */
3855                 if (pi->num_cmds == 0) {
3856                         if (G_interactive_fd)
3857                                 goto check_jobs_and_continue;
3858                         continue;
3859                 }
3860
3861                 /* After analyzing all keywords and conditions, we decided
3862                  * to execute this pipe. NB: have to do checkjobs(NULL)
3863                  * after run_pipe to collect any background children,
3864                  * even if list execution is to be stopped. */
3865                 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
3866                 {
3867                         int r;
3868 #if ENABLE_HUSH_LOOPS
3869                         G.flag_break_continue = 0;
3870 #endif
3871                         rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
3872                         if (r != -1) {
3873                                 /* We only ran a builtin: rcode is already known
3874                                  * and we don't need to wait for anything. */
3875                                 G.last_exitcode = rcode;
3876                                 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
3877                                 check_and_run_traps(0);
3878 #if ENABLE_HUSH_LOOPS
3879                                 /* Was it "break" or "continue"? */
3880                                 if (G.flag_break_continue) {
3881                                         smallint fbc = G.flag_break_continue;
3882                                         /* We might fall into outer *loop*,
3883                                          * don't want to break it too */
3884                                         if (loop_top) {
3885                                                 G.depth_break_continue--;
3886                                                 if (G.depth_break_continue == 0)
3887                                                         G.flag_break_continue = 0;
3888                                                 /* else: e.g. "continue 2" should *break* once, *then* continue */
3889                                         } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
3890                                         if (G.depth_break_continue != 0 || fbc == BC_BREAK)
3891                                                 goto check_jobs_and_break;
3892                                         /* "continue": simulate end of loop */
3893                                         rword = RES_DONE;
3894                                         continue;
3895                                 }
3896 #endif
3897                         } else if (pi->followup == PIPE_BG) {
3898                                 /* What does bash do with attempts to background builtins? */
3899                                 /* even bash 3.2 doesn't do that well with nested bg:
3900                                  * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
3901                                  * I'm NOT treating inner &'s as jobs */
3902                                 check_and_run_traps(0);
3903 #if ENABLE_HUSH_JOB
3904                                 if (G.run_list_level == 1)
3905                                         insert_bg_job(pi);
3906 #endif
3907                                 G.last_exitcode = rcode = EXIT_SUCCESS;
3908                                 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
3909                         } else {
3910 #if ENABLE_HUSH_JOB
3911                                 if (G.run_list_level == 1 && G_interactive_fd) {
3912                                         /* Waits for completion, then fg's main shell */
3913                                         rcode = checkjobs_and_fg_shell(pi);
3914                                         debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
3915                                         check_and_run_traps(0);
3916                                 } else
3917 #endif
3918                                 { /* This one just waits for completion */
3919                                         rcode = checkjobs(pi);
3920                                         debug_printf_exec(": checkjobs exitcode %d\n", rcode);
3921                                         check_and_run_traps(0);
3922                                 }
3923                                 G.last_exitcode = rcode;
3924                         }
3925                 }
3926
3927                 /* Analyze how result affects subsequent commands */
3928 #if ENABLE_HUSH_IF
3929                 if (rword == RES_IF || rword == RES_ELIF)
3930                         cond_code = rcode;
3931 #endif
3932 #if ENABLE_HUSH_LOOPS
3933                 /* Beware of "while false; true; do ..."! */
3934                 if (pi->next && pi->next->res_word == RES_DO) {
3935                         if (rword == RES_WHILE) {
3936                                 if (rcode) {
3937                                         /* "while false; do...done" - exitcode 0 */
3938                                         G.last_exitcode = rcode = EXIT_SUCCESS;
3939                                         debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
3940                                         goto check_jobs_and_break;
3941                                 }
3942                         }
3943                         if (rword == RES_UNTIL) {
3944                                 if (!rcode) {
3945                                         debug_printf_exec(": until expr is true: breaking\n");
3946  check_jobs_and_break:
3947                                         checkjobs(NULL);
3948                                         break;
3949                                 }
3950                         }
3951                 }
3952 #endif
3953
3954  check_jobs_and_continue:
3955                 checkjobs(NULL);
3956         } /* for (pi) */
3957
3958 #if ENABLE_HUSH_JOB
3959         G.run_list_level--;
3960 #endif
3961 #if ENABLE_HUSH_LOOPS
3962         if (loop_top)
3963                 G.depth_of_loop--;
3964         free(for_list);
3965 #endif
3966 #if ENABLE_HUSH_CASE
3967         free(case_word);
3968 #endif
3969         debug_leave();
3970         debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
3971         return rcode;
3972 }
3973
3974 /* Select which version we will use */
3975 static int run_and_free_list(struct pipe *pi)
3976 {
3977         int rcode = 0;
3978         debug_printf_exec("run_and_free_list entered\n");
3979         if (!G.fake_mode) {
3980                 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
3981                 rcode = run_list(pi);
3982         }
3983         /* free_pipe_list has the side effect of clearing memory.
3984          * In the long run that function can be merged with run_list,
3985          * but doing that now would hobble the debugging effort. */
3986         free_pipe_list(pi);
3987         debug_printf_exec("run_and_free_list return %d\n", rcode);
3988         return rcode;
3989 }
3990
3991
3992 static struct pipe *new_pipe(void)
3993 {
3994         struct pipe *pi;
3995         pi = xzalloc(sizeof(struct pipe));
3996         /*pi->followup = 0; - deliberately invalid value */
3997         /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
3998         return pi;
3999 }
4000
4001 /* Command (member of a pipe) is complete, or we start a new pipe
4002  * if ctx->command is NULL.
4003  * No errors possible here.
4004  */
4005 static int done_command(struct parse_context *ctx)
4006 {
4007         /* The command is really already in the pipe structure, so
4008          * advance the pipe counter and make a new, null command. */
4009         struct pipe *pi = ctx->pipe;
4010         struct command *command = ctx->command;
4011
4012         if (command) {
4013                 if (IS_NULL_CMD(command)) {
4014                         debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
4015                         goto clear_and_ret;
4016                 }
4017                 pi->num_cmds++;
4018                 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
4019                 //debug_print_tree(ctx->list_head, 20);
4020         } else {
4021                 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
4022         }
4023
4024         /* Only real trickiness here is that the uncommitted
4025          * command structure is not counted in pi->num_cmds. */
4026         pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
4027         ctx->command = command = &pi->cmds[pi->num_cmds];
4028  clear_and_ret:
4029         memset(command, 0, sizeof(*command));
4030         return pi->num_cmds; /* used only for 0/nonzero check */
4031 }
4032
4033 static void done_pipe(struct parse_context *ctx, pipe_style type)
4034 {
4035         int not_null;
4036
4037         debug_printf_parse("done_pipe entered, followup %d\n", type);
4038         /* Close previous command */
4039         not_null = done_command(ctx);
4040         ctx->pipe->followup = type;
4041 #if HAS_KEYWORDS
4042         ctx->pipe->pi_inverted = ctx->ctx_inverted;
4043         ctx->ctx_inverted = 0;
4044         ctx->pipe->res_word = ctx->ctx_res_w;
4045 #endif
4046
4047         /* Without this check, even just <enter> on command line generates
4048          * tree of three NOPs (!). Which is harmless but annoying.
4049          * IOW: it is safe to do it unconditionally. */
4050         if (not_null
4051 #if ENABLE_HUSH_IF
4052          || ctx->ctx_res_w == RES_FI
4053 #endif
4054 #if ENABLE_HUSH_LOOPS
4055          || ctx->ctx_res_w == RES_DONE
4056          || ctx->ctx_res_w == RES_FOR
4057          || ctx->ctx_res_w == RES_IN
4058 #endif
4059 #if ENABLE_HUSH_CASE
4060          || ctx->ctx_res_w == RES_ESAC
4061 #endif
4062         ) {
4063                 struct pipe *new_p;
4064                 debug_printf_parse("done_pipe: adding new pipe: "
4065                                 "not_null:%d ctx->ctx_res_w:%d\n",
4066                                 not_null, ctx->ctx_res_w);
4067                 new_p = new_pipe();
4068                 ctx->pipe->next = new_p;
4069                 ctx->pipe = new_p;
4070                 /* RES_THEN, RES_DO etc are "sticky" -
4071                  * they remain set for pipes inside if/while.
4072                  * This is used to control execution.
4073                  * RES_FOR and RES_IN are NOT sticky (needed to support
4074                  * cases where variable or value happens to match a keyword):
4075                  */
4076 #if ENABLE_HUSH_LOOPS
4077                 if (ctx->ctx_res_w == RES_FOR
4078                  || ctx->ctx_res_w == RES_IN)
4079                         ctx->ctx_res_w = RES_NONE;
4080 #endif
4081 #if ENABLE_HUSH_CASE
4082                 if (ctx->ctx_res_w == RES_MATCH)
4083                         ctx->ctx_res_w = RES_CASEI;
4084 #endif
4085                 ctx->command = NULL; /* trick done_command below */
4086                 /* Create the memory for command, roughly:
4087                  * ctx->pipe->cmds = new struct command;
4088                  * ctx->command = &ctx->pipe->cmds[0];
4089                  */
4090                 done_command(ctx);
4091                 //debug_print_tree(ctx->list_head, 10);
4092         }
4093         debug_printf_parse("done_pipe return\n");
4094 }
4095
4096 static void initialize_context(struct parse_context *ctx)
4097 {
4098         memset(ctx, 0, sizeof(*ctx));
4099         ctx->pipe = ctx->list_head = new_pipe();
4100         /* Create the memory for command, roughly:
4101          * ctx->pipe->cmds = new struct command;
4102          * ctx->command = &ctx->pipe->cmds[0];
4103          */
4104         done_command(ctx);
4105 }
4106
4107 /* If a reserved word is found and processed, parse context is modified
4108  * and 1 is returned.
4109  */
4110 #if HAS_KEYWORDS
4111 struct reserved_combo {
4112         char literal[6];
4113         unsigned char res;
4114         unsigned char assignment_flag;
4115         int flag;
4116 };
4117 enum {
4118         FLAG_END   = (1 << RES_NONE ),
4119 #if ENABLE_HUSH_IF
4120         FLAG_IF    = (1 << RES_IF   ),
4121         FLAG_THEN  = (1 << RES_THEN ),
4122         FLAG_ELIF  = (1 << RES_ELIF ),
4123         FLAG_ELSE  = (1 << RES_ELSE ),
4124         FLAG_FI    = (1 << RES_FI   ),
4125 #endif
4126 #if ENABLE_HUSH_LOOPS
4127         FLAG_FOR   = (1 << RES_FOR  ),
4128         FLAG_WHILE = (1 << RES_WHILE),
4129         FLAG_UNTIL = (1 << RES_UNTIL),
4130         FLAG_DO    = (1 << RES_DO   ),
4131         FLAG_DONE  = (1 << RES_DONE ),
4132         FLAG_IN    = (1 << RES_IN   ),
4133 #endif
4134 #if ENABLE_HUSH_CASE
4135         FLAG_MATCH = (1 << RES_MATCH),
4136         FLAG_ESAC  = (1 << RES_ESAC ),
4137 #endif
4138         FLAG_START = (1 << RES_XXXX ),
4139 };
4140
4141 static const struct reserved_combo* match_reserved_word(o_string *word)
4142 {
4143         /* Mostly a list of accepted follow-up reserved words.
4144          * FLAG_END means we are done with the sequence, and are ready
4145          * to turn the compound list into a command.
4146          * FLAG_START means the word must start a new compound list.
4147          */
4148         static const struct reserved_combo reserved_list[] = {
4149 #if ENABLE_HUSH_IF
4150                 { "!",     RES_NONE,  NOT_ASSIGNMENT , 0 },
4151                 { "if",    RES_IF,    WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
4152                 { "then",  RES_THEN,  WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
4153                 { "elif",  RES_ELIF,  WORD_IS_KEYWORD, FLAG_THEN },
4154                 { "else",  RES_ELSE,  WORD_IS_KEYWORD, FLAG_FI   },
4155                 { "fi",    RES_FI,    NOT_ASSIGNMENT , FLAG_END  },
4156 #endif
4157 #if ENABLE_HUSH_LOOPS
4158                 { "for",   RES_FOR,   NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
4159                 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
4160                 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
4161                 { "in",    RES_IN,    NOT_ASSIGNMENT , FLAG_DO   },
4162                 { "do",    RES_DO,    WORD_IS_KEYWORD, FLAG_DONE },
4163                 { "done",  RES_DONE,  NOT_ASSIGNMENT , FLAG_END  },
4164 #endif
4165 #if ENABLE_HUSH_CASE
4166                 { "case",  RES_CASE,  NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
4167                 { "esac",  RES_ESAC,  NOT_ASSIGNMENT , FLAG_END  },
4168 #endif
4169         };
4170         const struct reserved_combo *r;
4171
4172         for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
4173                 if (strcmp(word->data, r->literal) == 0)
4174                         return r;
4175         }
4176         return NULL;
4177 }
4178 /* Return 0: not a keyword, 1: keyword
4179  */
4180 static int reserved_word(o_string *word, struct parse_context *ctx)
4181 {
4182 #if ENABLE_HUSH_CASE
4183         static const struct reserved_combo reserved_match = {
4184                 "",        RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
4185         };
4186 #endif
4187         const struct reserved_combo *r;
4188
4189         if (word->o_quoted)
4190                 return 0;
4191         r = match_reserved_word(word);
4192         if (!r)
4193                 return 0;
4194
4195         debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
4196 #if ENABLE_HUSH_CASE
4197         if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE)
4198                 /* "case word IN ..." - IN part starts first match part */
4199                 r = &reserved_match;
4200         else
4201 #endif
4202         if (r->flag == 0) { /* '!' */
4203                 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
4204                         syntax_error("! ! command");
4205                         ctx->ctx_res_w = RES_SNTX;
4206                 }
4207                 ctx->ctx_inverted = 1;
4208                 return 1;
4209         }
4210         if (r->flag & FLAG_START) {
4211                 struct parse_context *old;
4212
4213                 old = xmalloc(sizeof(*old));
4214                 debug_printf_parse("push stack %p\n", old);
4215                 *old = *ctx;   /* physical copy */
4216                 initialize_context(ctx);
4217                 ctx->stack = old;
4218         } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
4219                 syntax_error_at(word->data);
4220                 ctx->ctx_res_w = RES_SNTX;
4221                 return 1;
4222         } else {
4223                 /* "{...} fi" is ok. "{...} if" is not
4224                  * Example:
4225                  * if { echo foo; } then { echo bar; } fi */
4226                 if (ctx->command->group)
4227                         done_pipe(ctx, PIPE_SEQ);
4228         }
4229
4230         ctx->ctx_res_w = r->res;
4231         ctx->old_flag = r->flag;
4232         word->o_assignment = r->assignment_flag;
4233
4234         if (ctx->old_flag & FLAG_END) {
4235                 struct parse_context *old;
4236
4237                 done_pipe(ctx, PIPE_SEQ);
4238                 debug_printf_parse("pop stack %p\n", ctx->stack);
4239                 old = ctx->stack;
4240                 old->command->group = ctx->list_head;
4241                 old->command->grp_type = GRP_NORMAL;
4242 #if !BB_MMU
4243                 o_addstr(&old->as_string, ctx->as_string.data);
4244                 o_free_unsafe(&ctx->as_string);
4245                 old->command->group_as_string = xstrdup(old->as_string.data);
4246                 debug_printf_parse("pop, remembering as:'%s'\n",
4247                                 old->command->group_as_string);
4248 #endif
4249                 *ctx = *old;   /* physical copy */
4250                 free(old);
4251         }
4252         return 1;
4253 }
4254 #endif
4255
4256 /* Word is complete, look at it and update parsing context.
4257  * Normal return is 0. Syntax errors return 1.
4258  * Note: on return, word is reset, but not o_free'd!
4259  */
4260 static int done_word(o_string *word, struct parse_context *ctx)
4261 {
4262         struct command *command = ctx->command;
4263
4264         debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
4265         if (word->length == 0 && word->o_quoted == 0) {
4266                 debug_printf_parse("done_word return 0: true null, ignored\n");
4267                 return 0;
4268         }
4269
4270         if (ctx->pending_redirect) {
4271                 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
4272                  * only if run as "bash", not "sh" */
4273                 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4274                  * "2.7 Redirection
4275                  * ...the word that follows the redirection operator
4276                  * shall be subjected to tilde expansion, parameter expansion,
4277                  * command substitution, arithmetic expansion, and quote
4278                  * removal. Pathname expansion shall not be performed
4279                  * on the word by a non-interactive shell; an interactive
4280                  * shell may perform it, but shall do so only when
4281                  * the expansion would result in one word."
4282                  */
4283                 ctx->pending_redirect->rd_filename = xstrdup(word->data);
4284                 /* Cater for >\file case:
4285                  * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
4286                  * Same with heredocs:
4287                  * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
4288                  */
4289                 unbackslash(ctx->pending_redirect->rd_filename);
4290                 /* Is it <<"HEREDOC"? */
4291                 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC
4292                  && word->o_quoted
4293                 ) {
4294                         ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
4295                 }
4296                 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
4297                 ctx->pending_redirect = NULL;
4298         } else {
4299                 /* If this word wasn't an assignment, next ones definitely
4300                  * can't be assignments. Even if they look like ones. */
4301                 if (word->o_assignment != DEFINITELY_ASSIGNMENT
4302                  && word->o_assignment != WORD_IS_KEYWORD
4303                 ) {
4304                         word->o_assignment = NOT_ASSIGNMENT;
4305                 } else {
4306                         if (word->o_assignment == DEFINITELY_ASSIGNMENT)
4307                                 command->assignment_cnt++;
4308                         word->o_assignment = MAYBE_ASSIGNMENT;
4309                 }
4310
4311 #if HAS_KEYWORDS
4312 # if ENABLE_HUSH_CASE
4313                 if (ctx->ctx_dsemicolon
4314                  && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
4315                 ) {
4316                         /* already done when ctx_dsemicolon was set to 1: */
4317                         /* ctx->ctx_res_w = RES_MATCH; */
4318                         ctx->ctx_dsemicolon = 0;
4319                 } else
4320 # endif
4321                 if (!command->argv /* if it's the first word... */
4322 # if ENABLE_HUSH_LOOPS
4323                  && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
4324                  && ctx->ctx_res_w != RES_IN
4325 # endif
4326                 ) {
4327                         debug_printf_parse("checking '%s' for reserved-ness\n", word->data);
4328                         if (reserved_word(word, ctx)) {
4329                                 o_reset_to_empty_unquoted(word);
4330                                 debug_printf_parse("done_word return %d\n",
4331                                                 (ctx->ctx_res_w == RES_SNTX));
4332                                 return (ctx->ctx_res_w == RES_SNTX);
4333                         }
4334                 }
4335 #endif
4336                 if (command->group) {
4337                         /* "{ echo foo; } echo bar" - bad */
4338                         syntax_error_at(word->data);
4339                         debug_printf_parse("done_word return 1: syntax error, "
4340                                         "groups and arglists don't mix\n");
4341                         return 1;
4342                 }
4343                 if (word->o_quoted /* word had "xx" or 'xx' at least as part of it. */
4344                  /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
4345                  && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
4346                  /* (otherwise it's known to be not empty and is already safe) */
4347                 ) {
4348                         /* exclude "$@" - it can expand to no word despite "" */
4349                         char *p = word->data;
4350                         while (p[0] == SPECIAL_VAR_SYMBOL
4351                             && (p[1] & 0x7f) == '@'
4352                             && p[2] == SPECIAL_VAR_SYMBOL
4353                         ) {
4354                                 p += 3;
4355                         }
4356                         if (p == word->data || p[0] != '\0') {
4357                                 /* saw no "$@", or not only "$@" but some
4358                                  * real text is there too */
4359                                 /* insert "empty variable" reference, this makes
4360                                  * e.g. "", $empty"" etc to not disappear */
4361                                 o_addchr(word, SPECIAL_VAR_SYMBOL);
4362                                 o_addchr(word, SPECIAL_VAR_SYMBOL);
4363                         }
4364                 }
4365                 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
4366 //SEGV, but good idea.
4367 //              command->argv = add_string_to_strings(command->argv, word->data);
4368 //              word->data = NULL;
4369 //              word->length = 0;
4370                 debug_print_strings("word appended to argv", command->argv);
4371         }
4372
4373 #if ENABLE_HUSH_LOOPS
4374         if (ctx->ctx_res_w == RES_FOR) {
4375                 if (word->o_quoted
4376                  || !is_well_formed_var_name(command->argv[0], '\0')
4377                 ) {
4378                         /* bash says just "not a valid identifier" */
4379                         syntax_error("not a valid identifier in for");
4380                         return 1;
4381                 }
4382                 /* Force FOR to have just one word (variable name) */
4383                 /* NB: basically, this makes hush see "for v in ..."
4384                  * syntax as if it is "for v; in ...". FOR and IN become
4385                  * two pipe structs in parse tree. */
4386                 done_pipe(ctx, PIPE_SEQ);
4387         }
4388 #endif
4389 #if ENABLE_HUSH_CASE
4390         /* Force CASE to have just one word */
4391         if (ctx->ctx_res_w == RES_CASE) {
4392                 done_pipe(ctx, PIPE_SEQ);
4393         }
4394 #endif
4395
4396         o_reset_to_empty_unquoted(word);
4397
4398         debug_printf_parse("done_word return 0\n");
4399         return 0;
4400 }
4401
4402
4403 /* Peek ahead in the input to find out if we have a "&n" construct,
4404  * as in "2>&1", that represents duplicating a file descriptor.
4405  * Return:
4406  * REDIRFD_CLOSE if >&- "close fd" construct is seen,
4407  * REDIRFD_SYNTAX_ERR if syntax error,
4408  * REDIRFD_TO_FILE if no & was seen,
4409  * or the number found.
4410  */
4411 #if BB_MMU
4412 #define parse_redir_right_fd(as_string, input) \
4413         parse_redir_right_fd(input)
4414 #endif
4415 static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
4416 {
4417         int ch, d, ok;
4418
4419         ch = i_peek(input);
4420         if (ch != '&')
4421                 return REDIRFD_TO_FILE;
4422
4423         ch = i_getch(input);  /* get the & */
4424         nommu_addchr(as_string, ch);
4425         ch = i_peek(input);
4426         if (ch == '-') {
4427                 ch = i_getch(input);
4428                 nommu_addchr(as_string, ch);
4429                 return REDIRFD_CLOSE;
4430         }
4431         d = 0;
4432         ok = 0;
4433         while (ch != EOF && isdigit(ch)) {
4434                 d = d*10 + (ch-'0');
4435                 ok = 1;
4436                 ch = i_getch(input);
4437                 nommu_addchr(as_string, ch);
4438                 ch = i_peek(input);
4439         }
4440         if (ok) return d;
4441
4442 //TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
4443
4444         bb_error_msg("ambiguous redirect");
4445         return REDIRFD_SYNTAX_ERR;
4446 }
4447
4448 /* Return code is 0 normal, 1 if a syntax error is detected
4449  */
4450 static int parse_redirect(struct parse_context *ctx,
4451                 int fd,
4452                 redir_type style,
4453                 struct in_str *input)
4454 {
4455         struct command *command = ctx->command;
4456         struct redir_struct *redir;
4457         struct redir_struct **redirp;
4458         int dup_num;
4459
4460         dup_num = REDIRFD_TO_FILE;
4461         if (style != REDIRECT_HEREDOC) {
4462                 /* Check for a '>&1' type redirect */
4463                 dup_num = parse_redir_right_fd(&ctx->as_string, input);
4464                 if (dup_num == REDIRFD_SYNTAX_ERR)
4465                         return 1;
4466         } else {
4467                 int ch = i_peek(input);
4468                 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
4469                 if (dup_num) { /* <<-... */
4470                         ch = i_getch(input);
4471                         nommu_addchr(&ctx->as_string, ch);
4472                         ch = i_peek(input);
4473                 }
4474         }
4475
4476         if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
4477                 int ch = i_peek(input);
4478                 if (ch == '|') {
4479                         /* >|FILE redirect ("clobbering" >).
4480                          * Since we do not support "set -o noclobber" yet,
4481                          * >| and > are the same for now. Just eat |.
4482                          */
4483                         ch = i_getch(input);
4484                         nommu_addchr(&ctx->as_string, ch);
4485                 }
4486         }
4487
4488         /* Create a new redir_struct and append it to the linked list */
4489         redirp = &command->redirects;
4490         while ((redir = *redirp) != NULL) {
4491                 redirp = &(redir->next);
4492         }
4493         *redirp = redir = xzalloc(sizeof(*redir));
4494         /* redir->next = NULL; */
4495         /* redir->rd_filename = NULL; */
4496         redir->rd_type = style;
4497         redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
4498
4499         debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
4500                                 redir_table[style].descrip);
4501
4502         redir->rd_dup = dup_num;
4503         if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
4504                 /* Erik had a check here that the file descriptor in question
4505                  * is legit; I postpone that to "run time"
4506                  * A "-" representation of "close me" shows up as a -3 here */
4507                 debug_printf_parse("duplicating redirect '%d>&%d'\n",
4508                                 redir->rd_fd, redir->rd_dup);
4509         } else {
4510                 /* Set ctx->pending_redirect, so we know what to do at the
4511                  * end of the next parsed word. */
4512                 ctx->pending_redirect = redir;
4513         }
4514         return 0;
4515 }
4516
4517 /* If a redirect is immediately preceded by a number, that number is
4518  * supposed to tell which file descriptor to redirect.  This routine
4519  * looks for such preceding numbers.  In an ideal world this routine
4520  * needs to handle all the following classes of redirects...
4521  *     echo 2>foo     # redirects fd  2 to file "foo", nothing passed to echo
4522  *     echo 49>foo    # redirects fd 49 to file "foo", nothing passed to echo
4523  *     echo -2>foo    # redirects fd  1 to file "foo",    "-2" passed to echo
4524  *     echo 49x>foo   # redirects fd  1 to file "foo",   "49x" passed to echo
4525  *
4526  * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4527  * "2.7 Redirection
4528  * ... If n is quoted, the number shall not be recognized as part of
4529  * the redirection expression. For example:
4530  * echo \2>a
4531  * writes the character 2 into file a"
4532  * We are getting it right by setting ->o_quoted on any \<char>
4533  *
4534  * A -1 return means no valid number was found,
4535  * the caller should use the appropriate default for this redirection.
4536  */
4537 static int redirect_opt_num(o_string *o)
4538 {
4539         int num;
4540
4541         if (o->data == NULL)
4542                 return -1;
4543         num = bb_strtou(o->data, NULL, 10);
4544         if (errno || num < 0)
4545                 return -1;
4546         o_reset_to_empty_unquoted(o);
4547         return num;
4548 }
4549
4550 #if BB_MMU
4551 #define fetch_till_str(as_string, input, word, skip_tabs) \
4552         fetch_till_str(input, word, skip_tabs)
4553 #endif
4554 static char *fetch_till_str(o_string *as_string,
4555                 struct in_str *input,
4556                 const char *word,
4557                 int skip_tabs)
4558 {
4559         o_string heredoc = NULL_O_STRING;
4560         int past_EOL = 0;
4561         int ch;
4562
4563         goto jump_in;
4564         while (1) {
4565                 ch = i_getch(input);
4566                 nommu_addchr(as_string, ch);
4567                 if (ch == '\n') {
4568                         if (strcmp(heredoc.data + past_EOL, word) == 0) {
4569                                 heredoc.data[past_EOL] = '\0';
4570                                 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
4571                                 return heredoc.data;
4572                         }
4573                         do {
4574                                 o_addchr(&heredoc, ch);
4575                                 past_EOL = heredoc.length;
4576  jump_in:
4577                                 do {
4578                                         ch = i_getch(input);
4579                                         nommu_addchr(as_string, ch);
4580                                 } while (skip_tabs && ch == '\t');
4581                         } while (ch == '\n');
4582                 }
4583                 if (ch == EOF) {
4584                         o_free_unsafe(&heredoc);
4585                         return NULL;
4586                 }
4587                 o_addchr(&heredoc, ch);
4588                 nommu_addchr(as_string, ch);
4589         }
4590 }
4591
4592 /* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
4593  * and load them all. There should be exactly heredoc_cnt of them.
4594  */
4595 static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
4596 {
4597         struct pipe *pi = ctx->list_head;
4598
4599         while (pi && heredoc_cnt) {
4600                 int i;
4601                 struct command *cmd = pi->cmds;
4602
4603                 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
4604                                 pi->num_cmds,
4605                                 cmd->argv ? cmd->argv[0] : "NONE");
4606                 for (i = 0; i < pi->num_cmds; i++) {
4607                         struct redir_struct *redir = cmd->redirects;
4608
4609                         debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
4610                                         i, cmd->argv ? cmd->argv[0] : "NONE");
4611                         while (redir) {
4612                                 if (redir->rd_type == REDIRECT_HEREDOC) {
4613                                         char *p;
4614
4615                                         redir->rd_type = REDIRECT_HEREDOC2;
4616                                         /* redir->dup is (ab)used to indicate <<- */
4617                                         p = fetch_till_str(&ctx->as_string, input,
4618                                                 redir->rd_filename, redir->rd_dup & HEREDOC_SKIPTABS);
4619                                         if (!p) {
4620                                                 syntax_error("unexpected EOF in here document");
4621                                                 return 1;
4622                                         }
4623                                         free(redir->rd_filename);
4624                                         redir->rd_filename = p;
4625                                         heredoc_cnt--;
4626                                 }
4627                                 redir = redir->next;
4628                         }
4629                         cmd++;
4630                 }
4631                 pi = pi->next;
4632         }
4633 #if 0
4634         /* Should be 0. If it isn't, it's a parse error */
4635         if (heredoc_cnt)
4636                 bb_error_msg_and_die("heredoc BUG 2");
4637 #endif
4638         return 0;
4639 }
4640
4641
4642 #if ENABLE_HUSH_TICK
4643 static FILE *generate_stream_from_string(const char *s)
4644 {
4645         FILE *pf;
4646         int pid, channel[2];
4647 #if !BB_MMU
4648         char **to_free;
4649 #endif
4650
4651         xpipe(channel);
4652         pid = BB_MMU ? fork() : vfork();
4653         if (pid < 0)
4654                 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
4655
4656         if (pid == 0) { /* child */
4657                 disable_restore_tty_pgrp_on_exit();
4658                 /* Process substitution is not considered to be usual
4659                  * 'command execution'.
4660                  * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
4661                  */
4662                 bb_signals(0
4663                         + (1 << SIGTSTP)
4664                         + (1 << SIGTTIN)
4665                         + (1 << SIGTTOU)
4666                         , SIG_IGN);
4667                 close(channel[0]); /* NB: close _first_, then move fd! */
4668                 xmove_fd(channel[1], 1);
4669                 /* Prevent it from trying to handle ctrl-z etc */
4670                 USE_HUSH_JOB(G.run_list_level = 1;)
4671 #if BB_MMU
4672                 reset_traps_to_defaults();
4673                 parse_and_run_string(s);
4674                 _exit(G.last_exitcode);
4675 #else
4676         /* We re-execute after vfork on NOMMU. This makes this script safe:
4677          * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
4678          * huge=`cat BIG` # was blocking here forever
4679          * echo OK
4680          */
4681                 re_execute_shell(&to_free,
4682                                 s,
4683                                 G.global_argv[0],
4684                                 G.global_argv + 1);
4685 #endif
4686         }
4687
4688         /* parent */
4689         enable_restore_tty_pgrp_on_exit();
4690 #if !BB_MMU
4691         free(to_free);
4692 #endif
4693         close(channel[1]);
4694         pf = fdopen(channel[0], "r");
4695         return pf;
4696 }
4697
4698 /* Return code is exit status of the process that is run. */
4699 static int process_command_subs(o_string *dest, const char *s)
4700 {
4701         FILE *pf;
4702         struct in_str pipe_str;
4703         int ch, eol_cnt;
4704
4705         pf = generate_stream_from_string(s);
4706         if (pf == NULL)
4707                 return 1;
4708         close_on_exec_on(fileno(pf));
4709
4710         /* Now send results of command back into original context */
4711         setup_file_in_str(&pipe_str, pf);
4712         eol_cnt = 0;
4713         while ((ch = i_getch(&pipe_str)) != EOF) {
4714                 if (ch == '\n') {
4715                         eol_cnt++;
4716                         continue;
4717                 }
4718                 while (eol_cnt) {
4719                         o_addchr(dest, '\n');
4720                         eol_cnt--;
4721                 }
4722                 o_addQchr(dest, ch);
4723         }
4724
4725         debug_printf("done reading from pipe, pclose()ing\n");
4726         /* Note: we got EOF, and we just close the read end of the pipe.
4727          * We do not wait for the `cmd` child to terminate. bash and ash do.
4728          * Try these:
4729          * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec
4730          * `false`; echo $? - bash outputs "1"
4731          */
4732         fclose(pf);
4733         debug_printf("closed FILE from child. return 0\n");
4734         return 0;
4735 }
4736 #endif
4737
4738 static int parse_group(o_string *dest, struct parse_context *ctx,
4739         struct in_str *input, int ch)
4740 {
4741         /* dest contains characters seen prior to ( or {.
4742          * Typically it's empty, but for function defs,
4743          * it contains function name (without '()'). */
4744         struct pipe *pipe_list;
4745         int endch;
4746         struct command *command = ctx->command;
4747
4748         debug_printf_parse("parse_group entered\n");
4749 #if ENABLE_HUSH_FUNCTIONS
4750         if (ch == '(' && !dest->o_quoted) {
4751                 if (dest->length)
4752                         if (done_word(dest, ctx))
4753                                 return 1;
4754                 if (!command->argv)
4755                         goto skip; /* (... */
4756                 if (command->argv[1]) { /* word word ... (... */
4757                         syntax_error_unexpected_ch('(');
4758                         return 1;
4759                 }
4760                 /* it is "word(..." or "word (..." */
4761                 do
4762                         ch = i_getch(input);
4763                 while (ch == ' ' || ch == '\t');
4764                 if (ch != ')') {
4765                         syntax_error_unexpected_ch(ch);
4766                         return 1;
4767                 }
4768                 nommu_addchr(&ctx->as_string, ch);
4769                 do
4770                         ch = i_getch(input);
4771                 while (ch == ' ' || ch == '\t' || ch == '\n');
4772                 if (ch != '{') {
4773                         syntax_error_unexpected_ch(ch);
4774                         return 1;
4775                 }
4776                 nommu_addchr(&ctx->as_string, ch);
4777                 command->grp_type = GRP_FUNCTION;
4778                 goto skip;
4779         }
4780 #endif
4781         if (command->argv /* word [word]{... */
4782          || dest->length /* word{... */
4783          || dest->o_quoted /* ""{... */
4784         ) {
4785                 syntax_error(NULL);
4786                 debug_printf_parse("parse_group return 1: "
4787                         "syntax error, groups and arglists don't mix\n");
4788                 return 1;
4789         }
4790
4791 #if ENABLE_HUSH_FUNCTIONS
4792  skip:
4793 #endif
4794         endch = '}';
4795         if (ch == '(') {
4796                 endch = ')';
4797                 command->grp_type = GRP_SUBSHELL;
4798         } else {
4799                 /* bash does not allow "{echo...", requires whitespace */
4800                 ch = i_getch(input);
4801                 if (ch != ' ' && ch != '\t' && ch != '\n') {
4802                         syntax_error_unexpected_ch(ch);
4803                         return 1;
4804                 }
4805                 nommu_addchr(&ctx->as_string, ch);
4806         }
4807
4808         {
4809 #if !BB_MMU
4810                 char *as_string = NULL;
4811 #endif
4812                 pipe_list = parse_stream(&as_string, input, endch);
4813 #if !BB_MMU
4814                 if (as_string)
4815                         o_addstr(&ctx->as_string, as_string);
4816 #endif
4817                 /* empty ()/{} or parse error? */
4818                 if (!pipe_list || pipe_list == ERR_PTR) {
4819                         /* parse_stream already emitted error msg */
4820 #if !BB_MMU
4821                         free(as_string);
4822 #endif
4823                         debug_printf_parse("parse_group return 1: "
4824                                 "parse_stream returned %p\n", pipe_list);
4825                         return 1;
4826                 }
4827                 command->group = pipe_list;
4828 #if !BB_MMU
4829                 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
4830                 command->group_as_string = as_string;
4831                 debug_printf_parse("end of group, remembering as:'%s'\n",
4832                                 command->group_as_string);
4833 #endif
4834         }
4835         debug_printf_parse("parse_group return 0\n");
4836         return 0;
4837         /* command remains "open", available for possible redirects */
4838 }
4839
4840 #if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT
4841 /* Subroutines for copying $(...) and `...` things */
4842 static void add_till_backquote(o_string *dest, struct in_str *input);
4843 /* '...' */
4844 static void add_till_single_quote(o_string *dest, struct in_str *input)
4845 {
4846         while (1) {
4847                 int ch = i_getch(input);
4848                 if (ch == EOF) {
4849                         syntax_error_unterm_ch('\'');
4850                         /*xfunc_die(); - redundant */
4851                 }
4852                 if (ch == '\'')
4853                         return;
4854                 o_addchr(dest, ch);
4855         }
4856 }
4857 /* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
4858 static void add_till_double_quote(o_string *dest, struct in_str *input)
4859 {
4860         while (1) {
4861                 int ch = i_getch(input);
4862                 if (ch == EOF) {
4863                         syntax_error_unterm_ch('"');
4864                         /*xfunc_die(); - redundant */
4865                 }
4866                 if (ch == '"')
4867                         return;
4868                 if (ch == '\\') {  /* \x. Copy both chars. */
4869                         o_addchr(dest, ch);
4870                         ch = i_getch(input);
4871                 }
4872                 o_addchr(dest, ch);
4873                 if (ch == '`') {
4874                         add_till_backquote(dest, input);
4875                         o_addchr(dest, ch);
4876                         continue;
4877                 }
4878                 //if (ch == '$') ...
4879         }
4880 }
4881 /* Process `cmd` - copy contents until "`" is seen. Complicated by
4882  * \` quoting.
4883  * "Within the backquoted style of command substitution, backslash
4884  * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
4885  * The search for the matching backquote shall be satisfied by the first
4886  * backquote found without a preceding backslash; during this search,
4887  * if a non-escaped backquote is encountered within a shell comment,
4888  * a here-document, an embedded command substitution of the $(command)
4889  * form, or a quoted string, undefined results occur. A single-quoted
4890  * or double-quoted string that begins, but does not end, within the
4891  * "`...`" sequence produces undefined results."
4892  * Example                               Output
4893  * echo `echo '\'TEST\`echo ZZ\`BEST`    \TESTZZBEST
4894  */
4895 static void add_till_backquote(o_string *dest, struct in_str *input)
4896 {
4897         while (1) {
4898                 int ch = i_getch(input);
4899                 if (ch == EOF) {
4900                         syntax_error_unterm_ch('`');
4901                         /*xfunc_die(); - redundant */
4902                 }
4903                 if (ch == '`')
4904                         return;
4905                 if (ch == '\\') {
4906                         /* \x. Copy both chars unless it is \` */
4907                         int ch2 = i_getch(input);
4908                         if (ch2 == EOF) {
4909                                 syntax_error_unterm_ch('`');
4910                                 /*xfunc_die(); - redundant */
4911                         }
4912                         if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
4913                                 o_addchr(dest, ch);
4914                         ch = ch2;
4915                 }
4916                 o_addchr(dest, ch);
4917         }
4918 }
4919 /* Process $(cmd) - copy contents until ")" is seen. Complicated by
4920  * quoting and nested ()s.
4921  * "With the $(command) style of command substitution, all characters
4922  * following the open parenthesis to the matching closing parenthesis
4923  * constitute the command. Any valid shell script can be used for command,
4924  * except a script consisting solely of redirections which produces
4925  * unspecified results."
4926  * Example                              Output
4927  * echo $(echo '(TEST)' BEST)           (TEST) BEST
4928  * echo $(echo 'TEST)' BEST)            TEST) BEST
4929  * echo $(echo \(\(TEST\) BEST)         ((TEST) BEST
4930  */
4931 static void add_till_closing_paren(o_string *dest, struct in_str *input, bool dbl)
4932 {
4933         int count = 0;
4934         while (1) {
4935                 int ch = i_getch(input);
4936                 if (ch == EOF) {
4937                         syntax_error_unterm_ch(')');
4938                         /*xfunc_die(); - redundant */
4939                 }
4940                 if (ch == '(')
4941                         count++;
4942                 if (ch == ')') {
4943                         if (--count < 0) {
4944                                 if (!dbl)
4945                                         break;
4946                                 if (i_peek(input) == ')') {
4947                                         i_getch(input);
4948                                         break;
4949                                 }
4950                         }
4951                 }
4952                 o_addchr(dest, ch);
4953                 if (ch == '\'') {
4954                         add_till_single_quote(dest, input);
4955                         o_addchr(dest, ch);
4956                         continue;
4957                 }
4958                 if (ch == '"') {
4959                         add_till_double_quote(dest, input);
4960                         o_addchr(dest, ch);
4961                         continue;
4962                 }
4963                 if (ch == '\\') {
4964                         /* \x. Copy verbatim. Important for  \(, \) */
4965                         ch = i_getch(input);
4966                         if (ch == EOF) {
4967                                 syntax_error_unterm_ch(')');
4968                                 /*xfunc_die(); - redundant */
4969                         }
4970                         o_addchr(dest, ch);
4971                         continue;
4972                 }
4973         }
4974 }
4975 #endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */
4976
4977 /* Return code: 0 for OK, 1 for syntax error */
4978 #if BB_MMU
4979 #define handle_dollar(as_string, dest, input) \
4980         handle_dollar(dest, input)
4981 #endif
4982 static int handle_dollar(o_string *as_string,
4983                 o_string *dest,
4984                 struct in_str *input)
4985 {
4986         int expansion;
4987         int ch = i_peek(input);  /* first character after the $ */
4988         unsigned char quote_mask = dest->o_escape ? 0x80 : 0;
4989
4990         debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
4991         if (isalpha(ch)) {
4992                 ch = i_getch(input);
4993                 nommu_addchr(as_string, ch);
4994  make_var:
4995                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4996                 while (1) {
4997                         debug_printf_parse(": '%c'\n", ch);
4998                         o_addchr(dest, ch | quote_mask);
4999                         quote_mask = 0;
5000                         ch = i_peek(input);
5001                         if (!isalnum(ch) && ch != '_')
5002                                 break;
5003                         ch = i_getch(input);
5004                         nommu_addchr(as_string, ch);
5005                 }
5006                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5007         } else if (isdigit(ch)) {
5008  make_one_char_var:
5009                 ch = i_getch(input);
5010                 nommu_addchr(as_string, ch);
5011                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5012                 debug_printf_parse(": '%c'\n", ch);
5013                 o_addchr(dest, ch | quote_mask);
5014                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5015         } else switch (ch) {
5016         case '$': /* pid */
5017         case '!': /* last bg pid */
5018         case '?': /* last exit code */
5019         case '#': /* number of args */
5020         case '*': /* args */
5021         case '@': /* args */
5022                 goto make_one_char_var;
5023         case '{': {
5024                 bool first_char, all_digits;
5025
5026                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5027                 ch = i_getch(input);
5028                 nommu_addchr(as_string, ch);
5029                 /* XXX maybe someone will try to escape the '}' */
5030                 expansion = 0;
5031                 first_char = true;
5032                 all_digits = false;
5033                 while (1) {
5034                         ch = i_getch(input);
5035                         nommu_addchr(as_string, ch);
5036                         if (ch == '}')
5037                                 break;
5038
5039                         if (first_char) {
5040                                 if (ch == '#')
5041                                         /* ${#var}: length of var contents */
5042                                         goto char_ok;
5043                                 else if (isdigit(ch)) {
5044                                         all_digits = true;
5045                                         goto char_ok;
5046                                 }
5047                         }
5048
5049                         if (expansion < 2
5050                          && (  (all_digits && !isdigit(ch))
5051                             || (!all_digits && !isalnum(ch) && ch != '_')
5052                             )
5053                         ) {
5054                                 /* handle parameter expansions
5055                                  * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
5056                                  */
5057                                 if (first_char)
5058                                         goto case_default;
5059                                 switch (ch) {
5060                                 case ':': /* null modifier */
5061                                         if (expansion == 0) {
5062                                                 debug_printf_parse(": null modifier\n");
5063                                                 ++expansion;
5064                                                 break;
5065                                         }
5066                                         goto case_default;
5067                                 case '#': /* remove prefix */
5068                                 case '%': /* remove suffix */
5069                                         if (expansion == 0) {
5070                                                 debug_printf_parse(": remove suffix/prefix\n");
5071                                                 expansion = 2;
5072                                                 break;
5073                                         }
5074                                         goto case_default;
5075                                 case '-': /* default value */
5076                                 case '=': /* assign default */
5077                                 case '+': /* alternative */
5078                                 case '?': /* error indicate */
5079                                         debug_printf_parse(": parameter expansion\n");
5080                                         expansion = 2;
5081                                         break;
5082                                 default:
5083                                 case_default:
5084                                         syntax_error_unterm_str("${name}");
5085                                         debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
5086                                         return 1;
5087                                 }
5088                         }
5089  char_ok:
5090                         debug_printf_parse(": '%c'\n", ch);
5091                         o_addchr(dest, ch | quote_mask);
5092                         quote_mask = 0;
5093                         first_char = false;
5094                 }
5095                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5096                 break;
5097         }
5098 #if (ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK)
5099         case '(': {
5100 # if !BB_MMU
5101                 int pos;
5102 # endif
5103                 ch = i_getch(input);
5104                 nommu_addchr(as_string, ch);
5105 # if ENABLE_SH_MATH_SUPPORT
5106                 if (i_peek(input) == '(') {
5107                         ch = i_getch(input);
5108                         nommu_addchr(as_string, ch);
5109                         o_addchr(dest, SPECIAL_VAR_SYMBOL);
5110                         o_addchr(dest, /*quote_mask |*/ '+');
5111 #  if !BB_MMU
5112                         pos = dest->length;
5113 #  endif
5114                         add_till_closing_paren(dest, input, true);
5115 #  if !BB_MMU
5116                         if (as_string) {
5117                                 o_addstr(as_string, dest->data + pos);
5118                                 o_addchr(as_string, ')');
5119                                 o_addchr(as_string, ')');
5120                         }
5121 #  endif
5122                         o_addchr(dest, SPECIAL_VAR_SYMBOL);
5123                         break;
5124                 }
5125 # endif
5126 # if ENABLE_HUSH_TICK
5127                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5128                 o_addchr(dest, quote_mask | '`');
5129 #  if !BB_MMU
5130                 pos = dest->length;
5131 #  endif
5132                 add_till_closing_paren(dest, input, false);
5133 #  if !BB_MMU
5134                 if (as_string) {
5135                         o_addstr(as_string, dest->data + pos);
5136                         o_addchr(as_string, '`');
5137                 }
5138 #  endif
5139                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5140 # endif
5141                 break;
5142         }
5143 #endif
5144         case '_':
5145                 ch = i_getch(input);
5146                 nommu_addchr(as_string, ch);
5147                 ch = i_peek(input);
5148                 if (isalnum(ch)) { /* it's $_name or $_123 */
5149                         ch = '_';
5150                         goto make_var;
5151                 }
5152                 /* else: it's $_ */
5153         /* TODO: */
5154         /* $_ Shell or shell script name; or last cmd name */
5155         /* $- Option flags set by set builtin or shell options (-i etc) */
5156         default:
5157                 o_addQchr(dest, '$');
5158         }
5159         debug_printf_parse("handle_dollar return 0\n");
5160         return 0;
5161 }
5162
5163 #if BB_MMU
5164 #define parse_stream_dquoted(as_string, dest, input, dquote_end) \
5165         parse_stream_dquoted(dest, input, dquote_end)
5166 #endif
5167 static int parse_stream_dquoted(o_string *as_string,
5168                 o_string *dest,
5169                 struct in_str *input,
5170                 int dquote_end)
5171 {
5172         int ch;
5173         int next;
5174
5175  again:
5176         ch = i_getch(input);
5177         if (ch != EOF)
5178                 nommu_addchr(as_string, ch);
5179         if (ch == dquote_end) { /* may be only '"' or EOF */
5180                 if (dest->o_assignment == NOT_ASSIGNMENT)
5181                         dest->o_escape ^= 1;
5182                 debug_printf_parse("parse_stream_dquoted return 0\n");
5183                 return 0;
5184         }
5185         /* note: can't move it above ch == dquote_end check! */
5186         if (ch == EOF) {
5187                 syntax_error_unterm_ch('"');
5188                 /*xfunc_die(); - redundant */
5189         }
5190         next = '\0';
5191         if (ch != '\n') {
5192                 next = i_peek(input);
5193         }
5194         debug_printf_parse(": ch=%c (%d) escape=%d\n",
5195                                         ch, ch, dest->o_escape);
5196         if (ch == '\\') {
5197                 if (next == EOF) {
5198                         syntax_error("\\<eof>");
5199                         xfunc_die();
5200                 }
5201                 /* bash:
5202                  * "The backslash retains its special meaning [in "..."]
5203                  * only when followed by one of the following characters:
5204                  * $, `, ", \, or <newline>.  A double quote may be quoted
5205                  * within double quotes by preceding it with a backslash.
5206                  */
5207                 if (strchr("$`\"\\", next) != NULL) {
5208                         o_addqchr(dest, i_getch(input));
5209                 } else {
5210                         o_addqchr(dest, '\\');
5211                 }
5212                 goto again;
5213         }
5214         if (ch == '$') {
5215                 if (handle_dollar(as_string, dest, input) != 0) {
5216                         debug_printf_parse("parse_stream_dquoted return 1: "
5217                                         "handle_dollar returned non-0\n");
5218                         return 1;
5219                 }
5220                 goto again;
5221         }
5222 #if ENABLE_HUSH_TICK
5223         if (ch == '`') {
5224                 //int pos = dest->length;
5225                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5226                 o_addchr(dest, 0x80 | '`');
5227                 add_till_backquote(dest, input);
5228                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5229                 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
5230                 goto again;
5231         }
5232 #endif
5233         o_addQchr(dest, ch);
5234         if (ch == '='
5235          && (dest->o_assignment == MAYBE_ASSIGNMENT
5236             || dest->o_assignment == WORD_IS_KEYWORD)
5237          && is_well_formed_var_name(dest->data, '=')
5238         ) {
5239                 dest->o_assignment = DEFINITELY_ASSIGNMENT;
5240         }
5241         goto again;
5242 }
5243
5244 /*
5245  * Scan input until EOF or end_trigger char.
5246  * Return a list of pipes to execute, or NULL on EOF
5247  * or if end_trigger character is met.
5248  * On syntax error, exit is shell is not interactive,
5249  * reset parsing machinery and start parsing anew,
5250  * or return ERR_PTR.
5251  */
5252 static struct pipe *parse_stream(char **pstring,
5253                 struct in_str *input,
5254                 int end_trigger)
5255 {
5256         struct parse_context ctx;
5257         o_string dest = NULL_O_STRING;
5258         int is_in_dquote;
5259         int heredoc_cnt;
5260
5261         /* Double-quote state is handled in the state variable is_in_dquote.
5262          * A single-quote triggers a bypass of the main loop until its mate is
5263          * found.  When recursing, quote state is passed in via dest->o_escape.
5264          */
5265         debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
5266                         end_trigger ? : 'X');
5267         debug_enter();
5268
5269         G.ifs = get_local_var_value("IFS");
5270         if (G.ifs == NULL)
5271                 G.ifs = " \t\n";
5272
5273  reset:
5274 #if ENABLE_HUSH_INTERACTIVE
5275         input->promptmode = 0; /* PS1 */
5276 #endif
5277         /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */
5278         initialize_context(&ctx);
5279         is_in_dquote = 0;
5280         heredoc_cnt = 0;
5281         while (1) {
5282                 const char *is_ifs;
5283                 const char *is_special;
5284                 int ch;
5285                 int next;
5286                 int redir_fd;
5287                 redir_type redir_style;
5288
5289                 if (is_in_dquote) {
5290                         /* dest.o_quoted = 1; - already is (see below) */
5291                         if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) {
5292                                 goto parse_error;
5293                         }
5294                         /* We reached closing '"' */
5295                         is_in_dquote = 0;
5296                 }
5297                 ch = i_getch(input);
5298                 debug_printf_parse(": ch=%c (%d) escape=%d\n",
5299                                                 ch, ch, dest.o_escape);
5300                 if (ch == EOF) {
5301                         struct pipe *pi;
5302
5303                         if (heredoc_cnt) {
5304                                 syntax_error_unterm_str("here document");
5305                                 xfunc_die();
5306                         }
5307                         if (done_word(&dest, &ctx)) {
5308                                 xfunc_die();
5309                         }
5310                         o_free(&dest);
5311                         done_pipe(&ctx, PIPE_SEQ);
5312                         pi = ctx.list_head;
5313                         /* If we got nothing... */
5314                         /* (this makes bare "&" cmd a no-op.
5315                          * bash says: "syntax error near unexpected token '&'") */
5316                         if (pi->num_cmds == 0
5317                             IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
5318                         ) {
5319                                 free_pipe_list(pi);
5320                                 pi = NULL;
5321                         }
5322 #if !BB_MMU
5323                         debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
5324                         if (pstring)
5325                                 *pstring = ctx.as_string.data;
5326                         else
5327                                 o_free_unsafe(&ctx.as_string);
5328 #endif
5329                         debug_leave();
5330                         debug_printf_parse("parse_stream return %p\n", pi);
5331                         return pi;
5332                 }
5333                 nommu_addchr(&ctx.as_string, ch);
5334                 is_ifs = strchr(G.ifs, ch);
5335                 is_special = strchr("<>;&|(){}#'" /* special outside of "str" */
5336                                 "\\$\"" USE_HUSH_TICK("`") /* always special */
5337                                 , ch);
5338
5339                 if (!is_special && !is_ifs) { /* ordinary char */
5340                         o_addQchr(&dest, ch);
5341                         if ((dest.o_assignment == MAYBE_ASSIGNMENT
5342                             || dest.o_assignment == WORD_IS_KEYWORD)
5343                          && ch == '='
5344                          && is_well_formed_var_name(dest.data, '=')
5345                         ) {
5346                                 dest.o_assignment = DEFINITELY_ASSIGNMENT;
5347                         }
5348                         continue;
5349                 }
5350
5351                 if (is_ifs) {
5352                         if (done_word(&dest, &ctx)) {
5353                                 goto parse_error;
5354                         }
5355                         if (ch == '\n') {
5356 #if ENABLE_HUSH_CASE
5357                                 /* "case ... in <newline> word) ..." -
5358                                  * newlines are ignored (but ';' wouldn't be) */
5359                                 if (ctx.command->argv == NULL
5360                                  && ctx.ctx_res_w == RES_MATCH
5361                                 ) {
5362                                         continue;
5363                                 }
5364 #endif
5365                                 /* Treat newline as a command separator. */
5366                                 done_pipe(&ctx, PIPE_SEQ);
5367                                 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
5368                                 if (heredoc_cnt) {
5369                                         if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
5370                                                 goto parse_error;
5371                                         }
5372                                         heredoc_cnt = 0;
5373                                 }
5374                                 dest.o_assignment = MAYBE_ASSIGNMENT;
5375                                 ch = ';';
5376                                 /* note: if (is_ifs) continue;
5377                                  * will still trigger for us */
5378                         }
5379                 }
5380                 if (end_trigger && end_trigger == ch
5381                  && (heredoc_cnt == 0 || end_trigger != ';')
5382                 ) {
5383                         if (heredoc_cnt) {
5384                                 /* This is technically valid:
5385                                  * { cat <<HERE; }; echo Ok
5386                                  * heredoc
5387                                  * heredoc
5388                                  * HERE
5389                                  * but we don't support this.
5390                                  * We require heredoc to be in enclosing {}/(),
5391                                  * if any.
5392                                  */
5393                                 syntax_error_unterm_str("here document");
5394                                 goto parse_error;
5395                         }
5396                         if (done_word(&dest, &ctx)) {
5397                                 goto parse_error;
5398                         }
5399                         /* Disallow "{ cmd }" without semicolon or & */
5400                         //debug_printf_parse("null pi %d\n", IS_NULL_PIPE(ctx.pipe))
5401                         //debug_printf_parse("null cmd %d\n", IS_NULL_CMD(ctx.command))
5402                         if (ch == '}'
5403                          && !(IS_NULL_PIPE(ctx.pipe) && IS_NULL_CMD(ctx.command))
5404                         ) {
5405                                 syntax_error_unexpected_ch(ch);
5406                                 goto parse_error;
5407                         }
5408                         done_pipe(&ctx, PIPE_SEQ);
5409                         dest.o_assignment = MAYBE_ASSIGNMENT;
5410                         /* Do we sit outside of any if's, loops or case's? */
5411                         if (!HAS_KEYWORDS
5412                          IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
5413                         ) {
5414                                 o_free(&dest);
5415 #if !BB_MMU
5416                                 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
5417                                 if (pstring)
5418                                         *pstring = ctx.as_string.data;
5419                                 else
5420                                         o_free_unsafe(&ctx.as_string);
5421 #endif
5422                                 debug_leave();
5423                                 debug_printf_parse("parse_stream return %p: "
5424                                                 "end_trigger char found\n",
5425                                                 ctx.list_head);
5426                                 return ctx.list_head;
5427                         }
5428                 }
5429                 if (is_ifs)
5430                         continue;
5431
5432                 next = '\0';
5433                 if (ch != '\n') {
5434                         next = i_peek(input);
5435                 }
5436
5437                 /* Catch <, > before deciding whether this word is
5438                  * an assignment. a=1 2>z b=2: b=2 is still assignment */
5439                 switch (ch) {
5440                 case '>':
5441                         redir_fd = redirect_opt_num(&dest);
5442                         if (done_word(&dest, &ctx)) {
5443                                 goto parse_error;
5444                         }
5445                         redir_style = REDIRECT_OVERWRITE;
5446                         if (next == '>') {
5447                                 redir_style = REDIRECT_APPEND;
5448                                 ch = i_getch(input);
5449                                 nommu_addchr(&ctx.as_string, ch);
5450                         }
5451 #if 0
5452                         else if (next == '(') {
5453                                 syntax_error(">(process) not supported");
5454                                 goto parse_error;
5455                         }
5456 #endif
5457                         if (parse_redirect(&ctx, redir_fd, redir_style, input))
5458                                 goto parse_error;
5459                         continue; /* back to top of while (1) */
5460                 case '<':
5461                         redir_fd = redirect_opt_num(&dest);
5462                         if (done_word(&dest, &ctx)) {
5463                                 goto parse_error;
5464                         }
5465                         redir_style = REDIRECT_INPUT;
5466                         if (next == '<') {
5467                                 redir_style = REDIRECT_HEREDOC;
5468                                 heredoc_cnt++;
5469                                 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
5470                                 ch = i_getch(input);
5471                                 nommu_addchr(&ctx.as_string, ch);
5472                         } else if (next == '>') {
5473                                 redir_style = REDIRECT_IO;
5474                                 ch = i_getch(input);
5475                                 nommu_addchr(&ctx.as_string, ch);
5476                         }
5477 #if 0
5478                         else if (next == '(') {
5479                                 syntax_error("<(process) not supported");
5480                                 goto parse_error;
5481                         }
5482 #endif
5483                         if (parse_redirect(&ctx, redir_fd, redir_style, input))
5484                                 goto parse_error;
5485                         continue; /* back to top of while (1) */
5486                 }
5487
5488                 if (dest.o_assignment == MAYBE_ASSIGNMENT
5489                  /* check that we are not in word in "a=1 2>word b=1": */
5490                  && !ctx.pending_redirect
5491                 ) {
5492                         /* ch is a special char and thus this word
5493                          * cannot be an assignment */
5494                         dest.o_assignment = NOT_ASSIGNMENT;
5495                 }
5496
5497                 switch (ch) {
5498                 case '#':
5499                         if (dest.length == 0) {
5500                                 while (1) {
5501                                         ch = i_peek(input);
5502                                         if (ch == EOF || ch == '\n')
5503                                                 break;
5504                                         i_getch(input);
5505                                         /* note: we do not add it to &ctx.as_string */
5506                                 }
5507                                 nommu_addchr(&ctx.as_string, '\n');
5508                         } else {
5509                                 o_addQchr(&dest, ch);
5510                         }
5511                         break;
5512                 case '\\':
5513                         if (next == EOF) {
5514                                 syntax_error("\\<eof>");
5515                                 xfunc_die();
5516                         }
5517                         o_addchr(&dest, '\\');
5518                         ch = i_getch(input);
5519                         nommu_addchr(&ctx.as_string, ch);
5520                         o_addchr(&dest, ch);
5521                         /* Example: echo Hello \2>file
5522                          * we need to know that word 2 is quoted */
5523                         dest.o_quoted = 1;
5524                         break;
5525                 case '$':
5526                         if (handle_dollar(&ctx.as_string, &dest, input) != 0) {
5527                                 debug_printf_parse("parse_stream parse error: "
5528                                         "handle_dollar returned non-0\n");
5529                                 goto parse_error;
5530                         }
5531                         break;
5532                 case '\'':
5533                         dest.o_quoted = 1;
5534                         while (1) {
5535                                 ch = i_getch(input);
5536                                 if (ch == EOF) {
5537                                         syntax_error_unterm_ch('\'');
5538                                         /*xfunc_die(); - redundant */
5539                                 }
5540                                 nommu_addchr(&ctx.as_string, ch);
5541                                 if (ch == '\'')
5542                                         break;
5543                                 if (dest.o_assignment == NOT_ASSIGNMENT)
5544                                         o_addqchr(&dest, ch);
5545                                 else
5546                                         o_addchr(&dest, ch);
5547                         }
5548                         break;
5549                 case '"':
5550                         dest.o_quoted = 1;
5551                         is_in_dquote ^= 1; /* invert */
5552                         if (dest.o_assignment == NOT_ASSIGNMENT)
5553                                 dest.o_escape ^= 1;
5554                         break;
5555 #if ENABLE_HUSH_TICK
5556                 case '`': {
5557 #if !BB_MMU
5558                         int pos;
5559 #endif
5560                         o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5561                         o_addchr(&dest, '`');
5562 #if !BB_MMU
5563                         pos = dest.length;
5564 #endif
5565                         add_till_backquote(&dest, input);
5566 #if !BB_MMU
5567                         o_addstr(&ctx.as_string, dest.data + pos);
5568                         o_addchr(&ctx.as_string, '`');
5569 #endif
5570                         o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5571                         //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
5572                         break;
5573                 }
5574 #endif
5575                 case ';':
5576 #if ENABLE_HUSH_CASE
5577  case_semi:
5578 #endif
5579                         if (done_word(&dest, &ctx)) {
5580                                 goto parse_error;
5581                         }
5582                         done_pipe(&ctx, PIPE_SEQ);
5583 #if ENABLE_HUSH_CASE
5584                         /* Eat multiple semicolons, detect
5585                          * whether it means something special */
5586                         while (1) {
5587                                 ch = i_peek(input);
5588                                 if (ch != ';')
5589                                         break;
5590                                 ch = i_getch(input);
5591                                 nommu_addchr(&ctx.as_string, ch);
5592                                 if (ctx.ctx_res_w == RES_CASEI) {
5593                                         ctx.ctx_dsemicolon = 1;
5594                                         ctx.ctx_res_w = RES_MATCH;
5595                                         break;
5596                                 }
5597                         }
5598 #endif
5599  new_cmd:
5600                         /* We just finished a cmd. New one may start
5601                          * with an assignment */
5602                         dest.o_assignment = MAYBE_ASSIGNMENT;
5603                         break;
5604                 case '&':
5605                         if (done_word(&dest, &ctx)) {
5606                                 goto parse_error;
5607                         }
5608                         if (next == '&') {
5609                                 ch = i_getch(input);
5610                                 nommu_addchr(&ctx.as_string, ch);
5611                                 done_pipe(&ctx, PIPE_AND);
5612                         } else {
5613                                 done_pipe(&ctx, PIPE_BG);
5614                         }
5615                         goto new_cmd;
5616                 case '|':
5617                         if (done_word(&dest, &ctx)) {
5618                                 goto parse_error;
5619                         }
5620 #if ENABLE_HUSH_CASE
5621                         if (ctx.ctx_res_w == RES_MATCH)
5622                                 break; /* we are in case's "word | word)" */
5623 #endif
5624                         if (next == '|') { /* || */
5625                                 ch = i_getch(input);
5626                                 nommu_addchr(&ctx.as_string, ch);
5627                                 done_pipe(&ctx, PIPE_OR);
5628                         } else {
5629                                 /* we could pick up a file descriptor choice here
5630                                  * with redirect_opt_num(), but bash doesn't do it.
5631                                  * "echo foo 2| cat" yields "foo 2". */
5632                                 done_command(&ctx);
5633                         }
5634                         goto new_cmd;
5635                 case '(':
5636 #if ENABLE_HUSH_CASE
5637                         /* "case... in [(]word)..." - skip '(' */
5638                         if (ctx.ctx_res_w == RES_MATCH
5639                          && ctx.command->argv == NULL /* not (word|(... */
5640                          && dest.length == 0 /* not word(... */
5641                          && dest.o_quoted == 0 /* not ""(... */
5642                         ) {
5643                                 continue;
5644                         }
5645 #endif
5646                 case '{':
5647                         if (parse_group(&dest, &ctx, input, ch) != 0) {
5648                                 goto parse_error;
5649                         }
5650                         goto new_cmd;
5651                 case ')':
5652 #if ENABLE_HUSH_CASE
5653                         if (ctx.ctx_res_w == RES_MATCH)
5654                                 goto case_semi;
5655 #endif
5656                 case '}':
5657                         /* proper use of this character is caught by end_trigger:
5658                          * if we see {, we call parse_group(..., end_trigger='}')
5659                          * and it will match } earlier (not here). */
5660                         syntax_error_unexpected_ch(ch);
5661                         goto parse_error;
5662                 default:
5663                         if (HUSH_DEBUG)
5664                                 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
5665                 }
5666         } /* while (1) */
5667
5668  parse_error:
5669         {
5670                 struct parse_context *pctx;
5671                 IF_HAS_KEYWORDS(struct parse_context *p2;)
5672
5673                 /* Clean up allocated tree.
5674                  * Samples for finding leaks on syntax error recovery path.
5675                  * Run them from interactive shell, watch pmap `pidof hush`.
5676                  * while if false; then false; fi do break; done
5677                  * (bash accepts it)
5678                  * while if false; then false; fi; do break; fi
5679                  * Samples to catch leaks at execution:
5680                  * while if (true | {true;}); then echo ok; fi; do break; done
5681                  * while if (true | {true;}); then echo ok; fi; do (if echo ok; break; then :; fi) | cat; break; done
5682                  */
5683                 pctx = &ctx;
5684                 do {
5685                         /* Update pipe/command counts,
5686                          * otherwise freeing may miss some */
5687                         done_pipe(pctx, PIPE_SEQ);
5688                         debug_printf_clean("freeing list %p from ctx %p\n",
5689                                         pctx->list_head, pctx);
5690                         debug_print_tree(pctx->list_head, 0);
5691                         free_pipe_list(pctx->list_head);
5692                         debug_printf_clean("freed list %p\n", pctx->list_head);
5693 #if !BB_MMU
5694                         o_free_unsafe(&pctx->as_string);
5695 #endif
5696                         IF_HAS_KEYWORDS(p2 = pctx->stack;)
5697                         if (pctx != &ctx) {
5698                                 free(pctx);
5699                         }
5700                         IF_HAS_KEYWORDS(pctx = p2;)
5701                 } while (HAS_KEYWORDS && pctx);
5702                 /* Free text, clear all dest fields */
5703                 o_free(&dest);
5704                 /* If we are not in top-level parse, we return,
5705                  * our caller will propagate error.
5706                  */
5707                 if (end_trigger != ';') {
5708 #if !BB_MMU
5709                         if (pstring)
5710                                 *pstring = NULL;
5711 #endif
5712                         debug_leave();
5713                         return ERR_PTR;
5714                 }
5715                 /* Discard cached input, force prompt */
5716                 input->p = NULL;
5717                 USE_HUSH_INTERACTIVE(input->promptme = 1;)
5718                 goto reset;
5719         }
5720 }
5721
5722 /* Executing from string: eval, sh -c '...'
5723  *          or from file: /etc/profile, . file, sh <script>, sh (intereactive)
5724  * end_trigger controls how often we stop parsing
5725  * NUL: parse all, execute, return
5726  * ';': parse till ';' or newline, execute, repeat till EOF
5727  */
5728 static void parse_and_run_stream(struct in_str *inp, int end_trigger)
5729 {
5730         while (1) {
5731                 struct pipe *pipe_list;
5732
5733                 pipe_list = parse_stream(NULL, inp, end_trigger);
5734                 if (!pipe_list) /* EOF */
5735                         break;
5736                 debug_print_tree(pipe_list, 0);
5737                 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
5738                 run_and_free_list(pipe_list);
5739         }
5740 }
5741
5742 static void parse_and_run_string(const char *s)
5743 {
5744         struct in_str input;
5745         setup_string_in_str(&input, s);
5746         parse_and_run_stream(&input, '\0');
5747 }
5748
5749 static void parse_and_run_file(FILE *f)
5750 {
5751         struct in_str input;
5752         setup_file_in_str(&input, f);
5753         parse_and_run_stream(&input, ';');
5754 }
5755
5756 /* Called a few times only (or even once if "sh -c") */
5757 static void block_signals(int second_time)
5758 {
5759         unsigned sig;
5760         unsigned mask;
5761
5762         mask = (1 << SIGQUIT);
5763         if (G_interactive_fd)
5764                 mask = (1 << SIGQUIT) | SPECIAL_INTERACTIVE_SIGS;
5765         G.non_DFL_mask = mask;
5766
5767         if (!second_time)
5768                 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
5769         sig = 0;
5770         while (mask) {
5771                 if (mask & 1)
5772                         sigaddset(&G.blocked_set, sig);
5773                 mask >>= 1;
5774                 sig++;
5775         }
5776         sigdelset(&G.blocked_set, SIGCHLD);
5777
5778         sigprocmask(SIG_SETMASK, &G.blocked_set,
5779                         second_time ? NULL : &G.inherited_set);
5780         /* POSIX allows shell to re-enable SIGCHLD
5781          * even if it was SIG_IGN on entry */
5782 //      G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
5783         if (!second_time)
5784                 signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler);
5785 }
5786
5787 #if ENABLE_HUSH_JOB
5788 /* helper */
5789 static void maybe_set_to_sigexit(int sig)
5790 {
5791         void (*handler)(int);
5792         /* non_DFL_mask'ed signals are, well, masked,
5793          * no need to set handler for them.
5794          */
5795         if (!((G.non_DFL_mask >> sig) & 1)) {
5796                 handler = signal(sig, sigexit);
5797                 if (handler == SIG_IGN) /* oops... restore back to IGN! */
5798                         signal(sig, handler);
5799         }
5800 }
5801 /* Set handlers to restore tty pgrp and exit */
5802 static void set_fatal_handlers(void)
5803 {
5804         /* We _must_ restore tty pgrp on fatal signals */
5805         if (HUSH_DEBUG) {
5806                 maybe_set_to_sigexit(SIGILL );
5807                 maybe_set_to_sigexit(SIGFPE );
5808                 maybe_set_to_sigexit(SIGBUS );
5809                 maybe_set_to_sigexit(SIGSEGV);
5810                 maybe_set_to_sigexit(SIGTRAP);
5811         } /* else: hush is perfect. what SEGV? */
5812         maybe_set_to_sigexit(SIGABRT);
5813         /* bash 3.2 seems to handle these just like 'fatal' ones */
5814         maybe_set_to_sigexit(SIGPIPE);
5815         maybe_set_to_sigexit(SIGALRM);
5816 //TODO: disable and move down when proper SIGHUP handling is added
5817         maybe_set_to_sigexit(SIGHUP );
5818         /* if we are interactive, [SIGHUP,] SIGTERM and SIGINT are masked.
5819          * if we aren't interactive... but in this case
5820          * we never want to restore pgrp on exit, and this fn is not called */
5821         /*maybe_set_to_sigexit(SIGTERM);*/
5822         /*maybe_set_to_sigexit(SIGINT );*/
5823 }
5824 #endif
5825
5826 static int set_mode(const char cstate, const char mode)
5827 {
5828         int state = (cstate == '-' ? 1 : 0);
5829         switch (mode) {
5830                 case 'n': G.fake_mode = state; break;
5831                 case 'x': /*G.debug_mode = state;*/ break;
5832                 default:  return EXIT_FAILURE;
5833         }
5834         return EXIT_SUCCESS;
5835 }
5836
5837 int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
5838 int hush_main(int argc, char **argv)
5839 {
5840         static const struct variable const_shell_ver = {
5841                 .next = NULL,
5842                 .varstr = (char*)hush_version_str,
5843                 .max_len = 1, /* 0 can provoke free(name) */
5844                 .flg_export = 1,
5845                 .flg_read_only = 1,
5846         };
5847         int signal_mask_is_inited = 0;
5848         int opt;
5849         char **e;
5850         struct variable *cur_var;
5851
5852         INIT_G();
5853         if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, is already done */
5854                 G.last_exitcode = EXIT_SUCCESS;
5855 #if !BB_MMU
5856         G.argv0_for_re_execing = argv[0];
5857 #endif
5858         /* Deal with HUSH_VERSION */
5859         G.shell_ver = const_shell_ver; /* copying struct here */
5860         G.top_var = &G.shell_ver;
5861         debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
5862         unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
5863         /* Initialize our shell local variables with the values
5864          * currently living in the environment */
5865         cur_var = G.top_var;
5866         e = environ;
5867         if (e) while (*e) {
5868                 char *value = strchr(*e, '=');
5869                 if (value) { /* paranoia */
5870                         cur_var->next = xzalloc(sizeof(*cur_var));
5871                         cur_var = cur_var->next;
5872                         cur_var->varstr = *e;
5873                         cur_var->max_len = strlen(*e);
5874                         cur_var->flg_export = 1;
5875                 }
5876                 e++;
5877         }
5878         debug_printf_env("putenv '%s'\n", hush_version_str);
5879         putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */
5880 #if ENABLE_FEATURE_EDITING
5881         G.line_input_state = new_line_input_t(FOR_SHELL);
5882 #endif
5883         G.global_argc = argc;
5884         G.global_argv = argv;
5885         /* Initialize some more globals to non-zero values */
5886         set_cwd();
5887 #if ENABLE_HUSH_INTERACTIVE
5888         if (ENABLE_FEATURE_EDITING)
5889                 cmdedit_set_initial_prompt();
5890         G.PS2 = "> ";
5891 #endif
5892
5893         if (setjmp(die_jmp)) {
5894                 /* xfunc has failed! die die die */
5895                 /* no EXIT traps, this is an escape hatch! */
5896                 G.exiting = 1;
5897                 hush_exit(xfunc_error_retval);
5898         }
5899
5900         /* Shell is non-interactive at first. We need to call
5901          * block_signals(0) if we are going to execute "sh <script>",
5902          * "sh -c <cmds>" or login shell's /etc/profile and friends.
5903          * If we later decide that we are interactive, we run block_signals(0)
5904          * (or re-run block_signals(1) if we ran block_signals(0) before)
5905          * in order to intercept (more) signals.
5906          */
5907
5908         /* Parse options */
5909         /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
5910         while (1) {
5911                 opt = getopt(argc, argv, "c:xins"
5912 #if !BB_MMU
5913                                 "<:$:R:V:"
5914 # if ENABLE_HUSH_FUNCTIONS
5915                                 "F:"
5916 # endif
5917 #endif
5918                 );
5919                 if (opt <= 0)
5920                         break;
5921                 switch (opt) {
5922                 case 'c':
5923                         if (!G.root_pid)
5924                                 G.root_pid = getpid();
5925                         G.global_argv = argv + optind;
5926                         if (!argv[optind]) {
5927                                 /* -c 'script' (no params): prevent empty $0 */
5928                                 *--G.global_argv = argv[0];
5929                                 optind--;
5930                         } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */
5931                         G.global_argc = argc - optind;
5932                         block_signals(0); /* 0: called 1st time */
5933                         parse_and_run_string(optarg);
5934                         goto final_return;
5935                 case 'i':
5936                         /* Well, we cannot just declare interactiveness,
5937                          * we have to have some stuff (ctty, etc) */
5938                         /* G_interactive_fd++; */
5939                         break;
5940                 case 's':
5941                         /* "-s" means "read from stdin", but this is how we always
5942                          * operate, so simply do nothing here. */
5943                         break;
5944 #if !BB_MMU
5945                 case '<': /* "big heredoc" support */
5946                         full_write(STDOUT_FILENO, optarg, strlen(optarg));
5947                         _exit(0);
5948                 case '$':
5949                         G.root_pid = bb_strtou(optarg, &optarg, 16);
5950                         optarg++;
5951                         G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
5952                         optarg++;
5953                         G.last_exitcode = bb_strtou(optarg, &optarg, 16);
5954 # if ENABLE_HUSH_LOOPS
5955                         optarg++;
5956                         G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
5957 # endif
5958                         break;
5959                 case 'R':
5960                 case 'V':
5961                         set_local_var(xstrdup(optarg), 0, opt == 'R');
5962                         break;
5963 # if ENABLE_HUSH_FUNCTIONS
5964                 case 'F': {
5965                         struct function *funcp = new_function(optarg);
5966                         /* funcp->name is already set to optarg */
5967                         /* funcp->body is set to NULL. It's a special case. */
5968                         funcp->body_as_string = argv[optind];
5969                         optind++;
5970                         break;
5971                 }
5972 # endif
5973 #endif
5974                 case 'n':
5975                 case 'x':
5976                         if (!set_mode('-', opt))
5977                                 break;
5978                 default:
5979 #ifndef BB_VER
5980                         fprintf(stderr, "Usage: sh [FILE]...\n"
5981                                         "   or: sh -c command [args]...\n\n");
5982                         exit(EXIT_FAILURE);
5983 #else
5984                         bb_show_usage();
5985 #endif
5986                 }
5987         } /* option parsing loop */
5988
5989         if (!G.root_pid)
5990                 G.root_pid = getpid();
5991
5992         /* If we are login shell... */
5993         if (argv[0] && argv[0][0] == '-') {
5994                 FILE *input;
5995                 /* XXX what should argv be while sourcing /etc/profile? */
5996                 debug_printf("sourcing /etc/profile\n");
5997                 input = fopen_for_read("/etc/profile");
5998                 if (input != NULL) {
5999                         close_on_exec_on(fileno(input));
6000                         block_signals(0); /* 0: called 1st time */
6001                         signal_mask_is_inited = 1;
6002                         parse_and_run_file(input);
6003                         fclose(input);
6004                 }
6005                 /* bash: after sourcing /etc/profile,
6006                  * tries to source (in the given order):
6007                  * ~/.bash_profile, ~/.bash_login, ~/.profile,
6008                  * stopping of first found. --noprofile turns this off.
6009                  * bash also sources ~/.bash_logout on exit.
6010                  * If called as sh, skips .bash_XXX files.
6011                  */
6012         }
6013
6014         if (argv[optind]) {
6015                 FILE *input;
6016                 /*
6017                  * "bash <script>" (which is never interactive (unless -i?))
6018                  * sources $BASH_ENV here (without scanning $PATH).
6019                  * If called as sh, does the same but with $ENV.
6020                  */
6021                 debug_printf("running script '%s'\n", argv[optind]);
6022                 G.global_argv = argv + optind;
6023                 G.global_argc = argc - optind;
6024                 input = xfopen_for_read(argv[optind]);
6025                 close_on_exec_on(fileno(input));
6026                 if (!signal_mask_is_inited)
6027                         block_signals(0); /* 0: called 1st time */
6028                 parse_and_run_file(input);
6029 #if ENABLE_FEATURE_CLEAN_UP
6030                 fclose(input);
6031 #endif
6032                 goto final_return;
6033         }
6034
6035         /* Up to here, shell was non-interactive. Now it may become one.
6036          * NB: don't forget to (re)run block_signals(0/1) as needed.
6037          */
6038
6039         /* A shell is interactive if the '-i' flag was given, or if all of
6040          * the following conditions are met:
6041          *    no -c command
6042          *    no arguments remaining or the -s flag given
6043          *    standard input is a terminal
6044          *    standard output is a terminal
6045          * Refer to Posix.2, the description of the 'sh' utility.
6046          */
6047 #if ENABLE_HUSH_JOB
6048         if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
6049                 G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
6050                 debug_printf("saved_tty_pgrp:%d\n", G.saved_tty_pgrp);
6051 //TODO: "interactive" and "have job control" are two different things.
6052 //If tcgetpgrp fails here, "have job control" is false, but "interactive"
6053 //should stay on! Currently, we mix these into one.
6054                 if (G.saved_tty_pgrp >= 0) {
6055                         /* try to dup stdin to high fd#, >= 255 */
6056                         G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
6057                         if (G_interactive_fd < 0) {
6058                                 /* try to dup to any fd */
6059                                 G_interactive_fd = dup(STDIN_FILENO);
6060                                 if (G_interactive_fd < 0)
6061                                         /* give up */
6062                                         G_interactive_fd = 0;
6063                         }
6064 // TODO: track & disallow any attempts of user
6065 // to (inadvertently) close/redirect it
6066                 }
6067         }
6068         debug_printf("interactive_fd:%d\n", G_interactive_fd);
6069         if (G_interactive_fd) {
6070                 pid_t shell_pgrp;
6071
6072                 /* We are indeed interactive shell, and we will perform
6073                  * job control. Setting up for that. */
6074
6075                 close_on_exec_on(G_interactive_fd);
6076                 /* If we were run as 'hush &', sleep until we are
6077                  * in the foreground (tty pgrp == our pgrp).
6078                  * If we get started under a job aware app (like bash),
6079                  * make sure we are now in charge so we don't fight over
6080                  * who gets the foreground */
6081                 while (1) {
6082                         shell_pgrp = getpgrp();
6083                         G.saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
6084                         if (G.saved_tty_pgrp == shell_pgrp)
6085                                 break;
6086                         /* send TTIN to ourself (should stop us) */
6087                         kill(- shell_pgrp, SIGTTIN);
6088                 }
6089                 /* Block some signals */
6090                 block_signals(signal_mask_is_inited);
6091                 /* Set other signals to restore saved_tty_pgrp */
6092                 set_fatal_handlers();
6093                 /* Put ourselves in our own process group */
6094                 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
6095                 /* Grab control of the terminal */
6096                 tcsetpgrp(G_interactive_fd, getpid());
6097                 /* -1 is special - makes xfuncs longjmp, not exit
6098                  * (we reset die_sleep = 0 whereever we [v]fork) */
6099                 enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */
6100         } else if (!signal_mask_is_inited) {
6101                 block_signals(0); /* 0: called 1st time */
6102         } /* else: block_signals(0) was done before */
6103 #elif ENABLE_HUSH_INTERACTIVE
6104         /* No job control compiled in, only prompt/line editing */
6105         if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
6106                 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
6107                 if (G_interactive_fd < 0) {
6108                         /* try to dup to any fd */
6109                         G_interactive_fd = dup(STDIN_FILENO);
6110                         if (G_interactive_fd < 0)
6111                                 /* give up */
6112                                 G_interactive_fd = 0;
6113                 }
6114         }
6115         if (G_interactive_fd) {
6116                 close_on_exec_on(G_interactive_fd);
6117                 block_signals(signal_mask_is_inited);
6118         } else if (!signal_mask_is_inited) {
6119                 block_signals(0);
6120         }
6121 #else
6122         /* We have interactiveness code disabled */
6123         if (!signal_mask_is_inited) {
6124                 block_signals(0);
6125         }
6126 #endif
6127         /* bash:
6128          * if interactive but not a login shell, sources ~/.bashrc
6129          * (--norc turns this off, --rcfile <file> overrides)
6130          */
6131
6132         if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
6133                 printf("\n\n%s hush - the humble shell\n", bb_banner);
6134                 printf("Enter 'help' for a list of built-in commands.\n\n");
6135         }
6136
6137         parse_and_run_file(stdin);
6138
6139  final_return:
6140 #if ENABLE_FEATURE_CLEAN_UP
6141         if (G.cwd != bb_msg_unknown)
6142                 free((char*)G.cwd);
6143         cur_var = G.top_var->next;
6144         while (cur_var) {
6145                 struct variable *tmp = cur_var;
6146                 if (!cur_var->max_len)
6147                         free(cur_var->varstr);
6148                 cur_var = cur_var->next;
6149                 free(tmp);
6150         }
6151 #endif
6152         hush_exit(G.last_exitcode);
6153 }
6154
6155
6156 #if ENABLE_LASH
6157 int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
6158 int lash_main(int argc, char **argv)
6159 {
6160         //bb_error_msg("lash is deprecated, please use hush instead");
6161         return hush_main(argc, argv);
6162 }
6163 #endif
6164
6165
6166 /*
6167  * Built-ins
6168  */
6169 static int builtin_trap(char **argv)
6170 {
6171         int i;
6172         int sig;
6173         char *new_cmd;
6174
6175         if (!G.traps)
6176                 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
6177
6178         argv++;
6179         if (!*argv) {
6180                 /* No args: print all trapped. This isn't 100% correct as we
6181                  * should be escaping the cmd so that it can be pasted back in
6182                  */
6183                 for (i = 0; i < NSIG; ++i)
6184                         if (G.traps[i])
6185                                 printf("trap -- '%s' %s\n", G.traps[i], get_signame(i));
6186                 return EXIT_SUCCESS;
6187         }
6188
6189         new_cmd = NULL;
6190         i = 0;
6191         /* If first arg is decimal: reset all specified signals */
6192         sig = bb_strtou(*argv, NULL, 10);
6193         if (errno == 0) {
6194                 int ret;
6195  set_all:
6196                 ret = EXIT_SUCCESS;
6197                 while (*argv) {
6198                         sig = get_signum(*argv++);
6199                         if (sig < 0 || sig >= NSIG) {
6200                                 ret = EXIT_FAILURE;
6201                                 /* Mimic bash message exactly */
6202                                 bb_perror_msg("trap: %s: invalid signal specification", argv[i]);
6203                                 continue;
6204                         }
6205
6206                         free(G.traps[sig]);
6207                         G.traps[sig] = xstrdup(new_cmd);
6208
6209                         debug_printf("trap: setting SIG%s (%i) to '%s'",
6210                                 get_signame(sig), sig, G.traps[sig]);
6211
6212                         /* There is no signal for 0 (EXIT) */
6213                         if (sig == 0)
6214                                 continue;
6215
6216                         if (new_cmd) {
6217                                 sigaddset(&G.blocked_set, sig);
6218                         } else {
6219                                 /* There was a trap handler, we are removing it
6220                                  * (if sig has non-DFL handling,
6221                                  * we don't need to do anything) */
6222                                 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
6223                                         continue;
6224                                 sigdelset(&G.blocked_set, sig);
6225                         }
6226                         sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
6227                 }
6228                 return ret;
6229         }
6230
6231         /* First arg is "-": reset all specified to default */
6232         /* First arg is "": ignore all specified */
6233         /* Everything else: execute first arg upon signal */
6234         if (!argv[1]) {
6235                 bb_error_msg("trap: invalid arguments");
6236                 return EXIT_FAILURE;
6237         }
6238         if (NOT_LONE_DASH(*argv))
6239                 new_cmd = *argv;
6240         argv++;
6241         goto set_all;
6242 }
6243
6244 static int builtin_true(char **argv UNUSED_PARAM)
6245 {
6246         return 0;
6247 }
6248
6249 static int builtin_test(char **argv)
6250 {
6251         int argc = 0;
6252         while (*argv) {
6253                 argc++;
6254                 argv++;
6255         }
6256         return test_main(argc, argv - argc);
6257 }
6258
6259 static int builtin_echo(char **argv)
6260 {
6261         int argc = 0;
6262         while (*argv) {
6263                 argc++;
6264                 argv++;
6265         }
6266         return echo_main(argc, argv - argc);
6267 }
6268
6269 static int builtin_eval(char **argv)
6270 {
6271         int rcode = EXIT_SUCCESS;
6272
6273         if (*++argv) {
6274                 char *str = expand_strvec_to_string(argv);
6275                 /* bash:
6276                  * eval "echo Hi; done" ("done" is syntax error):
6277                  * "echo Hi" will not execute too.
6278                  */
6279                 parse_and_run_string(str);
6280                 free(str);
6281                 rcode = G.last_exitcode;
6282         }
6283         return rcode;
6284 }
6285
6286 static int builtin_cd(char **argv)
6287 {
6288         const char *newdir = argv[1];
6289         if (newdir == NULL) {
6290                 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
6291                  * bash says "bash: cd: HOME not set" and does nothing
6292                  * (exitcode 1)
6293                  */
6294                 newdir = getenv("HOME") ? : "/";
6295         }
6296         if (chdir(newdir)) {
6297                 /* Mimic bash message exactly */
6298                 bb_perror_msg("cd: %s", newdir);
6299                 return EXIT_FAILURE;
6300         }
6301         set_cwd();
6302         return EXIT_SUCCESS;
6303 }
6304
6305 static int builtin_exec(char **argv)
6306 {
6307         if (*++argv == NULL)
6308                 return EXIT_SUCCESS; /* bash does this */
6309         {
6310 #if !BB_MMU
6311                 nommu_save_t dummy;
6312 #endif
6313 // FIXME: if exec fails, bash does NOT exit! We do...
6314                 pseudo_exec_argv(&dummy, argv, 0, NULL);
6315                 /* never returns */
6316         }
6317 }
6318
6319 static int builtin_exit(char **argv)
6320 {
6321         debug_printf_exec("%s()\n", __func__);
6322 // TODO: bash does it ONLY on top-level sh exit (+interacive only?)
6323         //puts("exit"); /* bash does it */
6324 // TODO: warn if we have background jobs: "There are stopped jobs"
6325 // On second consecutive 'exit', exit anyway.
6326 // perhaps use G.exiting = -1 as indicator "last cmd was exit"
6327
6328         /* note: EXIT trap is run by hush_exit */
6329         if (*++argv == NULL)
6330                 hush_exit(G.last_exitcode);
6331         /* mimic bash: exit 123abc == exit 255 + error msg */
6332         xfunc_error_retval = 255;
6333         /* bash: exit -2 == exit 254, no error msg */
6334         hush_exit(xatoi(*argv) & 0xff);
6335 }
6336
6337 static int builtin_export(char **argv)
6338 {
6339         if (*++argv == NULL) {
6340                 char **e = environ;
6341                 if (e) {
6342                         while (*e) {
6343 #if 0
6344                                 puts(*e++);
6345 #else
6346                                 /* ash emits: export VAR='VAL'
6347                                  * bash: declare -x VAR="VAL"
6348                                  * we follow ash example */
6349                                 const char *s = *e++;
6350                                 const char *p = strchr(s, '=');
6351
6352                                 if (!p) /* wtf? take next variable */
6353                                         continue;
6354                                 /* export var= */
6355                                 printf("export %.*s", (int)(p - s) + 1, s);
6356                                 s = p + 1;
6357                                 while (*s) {
6358                                         if (*s != '\'') {
6359                                                 p = strchrnul(s, '\'');
6360                                                 /* print 'xxxx' */
6361                                                 printf("'%.*s'", (int)(p - s), s);
6362                                                 if (*p == '\0')
6363                                                         break;
6364                                                 s = p;
6365                                         }
6366                                         /* s points to '; print ''...'''" */
6367                                         putchar('"');
6368                                         do putchar('\''); while (*++s == '\'');
6369                                         putchar('"');
6370                                 }
6371                                 putchar('\n');
6372 #endif
6373                         }
6374                         fflush(stdout);
6375                 }
6376                 return EXIT_SUCCESS;
6377         }
6378
6379         do {
6380                 const char *value;
6381                 char *name = *argv;
6382
6383                 value = strchr(name, '=');
6384                 if (!value) {
6385                         /* They are exporting something without a =VALUE */
6386                         struct variable *var;
6387
6388                         var = get_local_var(name);
6389                         if (var) {
6390                                 var->flg_export = 1;
6391                                 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
6392                                 putenv(var->varstr);
6393                         }
6394                         /* bash does not return an error when trying to export
6395                          * an undefined variable.  Do likewise. */
6396                         continue;
6397                 }
6398                 set_local_var(xstrdup(name), 1, 0);
6399         } while (*++argv);
6400
6401         return EXIT_SUCCESS;
6402 }
6403
6404 #if ENABLE_HUSH_JOB
6405 /* built-in 'fg' and 'bg' handler */
6406 static int builtin_fg_bg(char **argv)
6407 {
6408         int i, jobnum;
6409         struct pipe *pi;
6410
6411         if (!G_interactive_fd)
6412                 return EXIT_FAILURE;
6413         /* If they gave us no args, assume they want the last backgrounded task */
6414         if (!argv[1]) {
6415                 for (pi = G.job_list; pi; pi = pi->next) {
6416                         if (pi->jobid == G.last_jobid) {
6417                                 goto found;
6418                         }
6419                 }
6420                 bb_error_msg("%s: no current job", argv[0]);
6421                 return EXIT_FAILURE;
6422         }
6423         if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
6424                 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
6425                 return EXIT_FAILURE;
6426         }
6427         for (pi = G.job_list; pi; pi = pi->next) {
6428                 if (pi->jobid == jobnum) {
6429                         goto found;
6430                 }
6431         }
6432         bb_error_msg("%s: %d: no such job", argv[0], jobnum);
6433         return EXIT_FAILURE;
6434  found:
6435         // TODO: bash prints a string representation
6436         // of job being foregrounded (like "sleep 1 | cat")
6437         if (argv[0][0] == 'f') {
6438                 /* Put the job into the foreground.  */
6439                 tcsetpgrp(G_interactive_fd, pi->pgrp);
6440         }
6441
6442         /* Restart the processes in the job */
6443         debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
6444         for (i = 0; i < pi->num_cmds; i++) {
6445                 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
6446                 pi->cmds[i].is_stopped = 0;
6447         }
6448         pi->stopped_cmds = 0;
6449
6450         i = kill(- pi->pgrp, SIGCONT);
6451         if (i < 0) {
6452                 if (errno == ESRCH) {
6453                         delete_finished_bg_job(pi);
6454                         return EXIT_SUCCESS;
6455                 }
6456                 bb_perror_msg("kill (SIGCONT)");
6457         }
6458
6459         if (argv[0][0] == 'f') {
6460                 remove_bg_job(pi);
6461                 return checkjobs_and_fg_shell(pi);
6462         }
6463         return EXIT_SUCCESS;
6464 }
6465 #endif
6466
6467 #if ENABLE_HUSH_HELP
6468 static int builtin_help(char **argv UNUSED_PARAM)
6469 {
6470         const struct built_in_command *x;
6471
6472         printf("\n"
6473                 "Built-in commands:\n"
6474                 "------------------\n");
6475         for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
6476                 printf("%s\t%s\n", x->cmd, x->descr);
6477         }
6478         printf("\n\n");
6479         return EXIT_SUCCESS;
6480 }
6481 #endif
6482
6483 #if ENABLE_HUSH_JOB
6484 static int builtin_jobs(char **argv UNUSED_PARAM)
6485 {
6486         struct pipe *job;
6487         const char *status_string;
6488
6489         for (job = G.job_list; job; job = job->next) {
6490                 if (job->alive_cmds == job->stopped_cmds)
6491                         status_string = "Stopped";
6492                 else
6493                         status_string = "Running";
6494
6495                 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
6496         }
6497         return EXIT_SUCCESS;
6498 }
6499 #endif
6500
6501 #if HUSH_DEBUG
6502 static int builtin_memleak(char **argv UNUSED_PARAM)
6503 {
6504         void *p;
6505         unsigned long l;
6506
6507         /* Crude attempt to find where "free memory" starts,
6508          * sans fragmentation. */
6509         p = malloc(240);
6510         l = (unsigned long)p;
6511         free(p);
6512         p = malloc(3400);
6513         if (l < (unsigned long)p) l = (unsigned long)p;
6514         free(p);
6515
6516         if (!G.memleak_value)
6517                 G.memleak_value = l;
6518         
6519         l -= G.memleak_value;
6520         if ((long)l < 0)
6521                 l = 0;
6522         l /= 1024;
6523         if (l > 127)
6524                 l = 127;
6525
6526         /* Exitcode is "how many kilobytes we leaked since 1st call" */
6527         return l;
6528 }
6529 #endif
6530
6531 static int builtin_pwd(char **argv UNUSED_PARAM)
6532 {
6533         puts(set_cwd());
6534         return EXIT_SUCCESS;
6535 }
6536
6537 static int builtin_read(char **argv)
6538 {
6539         char *string;
6540         const char *name = "REPLY";
6541
6542         if (argv[1]) {
6543                 name = argv[1];
6544                 /* bash (3.2.33(1)) bug: "read 0abcd" will execute,
6545                  * and _after_ that_ it will complain */
6546                 if (!is_well_formed_var_name(name, '\0')) {
6547                         /* Mimic bash message */
6548                         bb_error_msg("read: '%s': not a valid identifier", name);
6549                         return 1;
6550                 }
6551         }
6552
6553 //TODO: bash unbackslashes input, splits words and puts them in argv[i]
6554
6555         string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
6556         return set_local_var(string, 0, 0);
6557 }
6558
6559 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
6560  * built-in 'set' handler
6561  * SUSv3 says:
6562  * set [-abCefhmnuvx] [-o option] [argument...]
6563  * set [+abCefhmnuvx] [+o option] [argument...]
6564  * set -- [argument...]
6565  * set -o
6566  * set +o
6567  * Implementations shall support the options in both their hyphen and
6568  * plus-sign forms. These options can also be specified as options to sh.
6569  * Examples:
6570  * Write out all variables and their values: set
6571  * Set $1, $2, and $3 and set "$#" to 3: set c a b
6572  * Turn on the -x and -v options: set -xv
6573  * Unset all positional parameters: set --
6574  * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
6575  * Set the positional parameters to the expansion of x, even if x expands
6576  * with a leading '-' or '+': set -- $x
6577  *
6578  * So far, we only support "set -- [argument...]" and some of the short names.
6579  */
6580 static int builtin_set(char **argv)
6581 {
6582         int n;
6583         char **pp, **g_argv;
6584         char *arg = *++argv;
6585
6586         if (arg == NULL) {
6587                 struct variable *e;
6588                 for (e = G.top_var; e; e = e->next)
6589                         puts(e->varstr);
6590                 return EXIT_SUCCESS;
6591         }
6592
6593         do {
6594                 if (!strcmp(arg, "--")) {
6595                         ++argv;
6596                         goto set_argv;
6597                 }
6598                 if (arg[0] != '+' && arg[0] != '-')
6599                         break;
6600                 for (n = 1; arg[n]; ++n)
6601                         if (set_mode(arg[0], arg[n]))
6602                                 goto error;
6603         } while ((arg = *++argv) != NULL);
6604         /* Now argv[0] is 1st argument */
6605
6606         if (arg == NULL)
6607                 return EXIT_SUCCESS;
6608  set_argv:
6609
6610         /* NB: G.global_argv[0] ($0) is never freed/changed */
6611         g_argv = G.global_argv;
6612         if (G.global_args_malloced) {
6613                 pp = g_argv;
6614                 while (*++pp)
6615                         free(*pp);
6616                 g_argv[1] = NULL;
6617         } else {
6618                 G.global_args_malloced = 1;
6619                 pp = xzalloc(sizeof(pp[0]) * 2);
6620                 pp[0] = g_argv[0]; /* retain $0 */
6621                 g_argv = pp;
6622         }
6623         /* This realloc's G.global_argv */
6624         G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
6625
6626         n = 1;
6627         while (*++pp)
6628                 n++;
6629         G.global_argc = n;
6630
6631         return EXIT_SUCCESS;
6632
6633         /* Nothing known, so abort */
6634  error:
6635         bb_error_msg("set: %s: invalid option", arg);
6636         return EXIT_FAILURE;
6637 }
6638
6639 static int builtin_shift(char **argv)
6640 {
6641         int n = 1;
6642         if (argv[1]) {
6643                 n = atoi(argv[1]);
6644         }
6645         if (n >= 0 && n < G.global_argc) {
6646                 if (G.global_args_malloced) {
6647                         int m = 1;
6648                         while (m <= n)
6649                                 free(G.global_argv[m++]);
6650                 }
6651                 G.global_argc -= n;
6652                 memmove(&G.global_argv[1], &G.global_argv[n+1],
6653                                 G.global_argc * sizeof(G.global_argv[0]));
6654                 return EXIT_SUCCESS;
6655         }
6656         return EXIT_FAILURE;
6657 }
6658
6659 static int builtin_source(char **argv)
6660 {
6661         FILE *input;
6662
6663         if (*++argv == NULL)
6664                 return EXIT_FAILURE;
6665
6666         /* XXX search through $PATH is missing */
6667         input = fopen_or_warn(*argv, "r");
6668         if (!input) {
6669                 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
6670                 return EXIT_FAILURE;
6671         }
6672         close_on_exec_on(fileno(input));
6673
6674         /* Now run the file */
6675 //TODO:
6676         /* XXX argv and argc are broken; need to save old G.global_argv
6677          * (pointer only is OK!) on this stack frame,
6678          * set G.global_argv=argv+1, recurse, and restore. */
6679         parse_and_run_file(input);
6680         fclose(input);
6681         return G.last_exitcode;
6682 }
6683
6684 static int builtin_umask(char **argv)
6685 {
6686         mode_t new_umask;
6687         const char *arg = argv[1];
6688         if (arg) {
6689 //TODO: umask may take chmod-like symbolic masks
6690                 new_umask = bb_strtou(arg, NULL, 8);
6691                 if (errno) {
6692                         //Message? bash examples:
6693                         //bash: umask: 'q': invalid symbolic mode operator
6694                         //bash: umask: 999: octal number out of range
6695                         return EXIT_FAILURE;
6696                 }
6697         } else {
6698                 new_umask = umask(0);
6699                 printf("%.3o\n", (unsigned) new_umask);
6700                 /* fall through and restore new_umask which we set to 0 */
6701         }
6702         umask(new_umask);
6703         return EXIT_SUCCESS;
6704 }
6705
6706 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
6707 static int builtin_unset(char **argv)
6708 {
6709         int ret;
6710         char var;
6711
6712         if (!*++argv)
6713                 return EXIT_SUCCESS;
6714
6715         var = 'v';
6716         if (argv[0][0] == '-') {
6717                 switch (argv[0][1]) {
6718                 case 'v':
6719                 case 'f':
6720                         var = argv[0][1];
6721                         break;
6722                 default:
6723                         bb_error_msg("unset: %s: invalid option", *argv);
6724                         return EXIT_FAILURE;
6725                 }
6726 //TODO: disallow "unset -vf ..." too
6727                 argv++;
6728         }
6729
6730         ret = EXIT_SUCCESS;
6731         while (*argv) {
6732                 if (var == 'v') {
6733                         if (unset_local_var(*argv)) {
6734                                 /* unset <nonexistent_var> doesn't fail.
6735                                  * Error is when one tries to unset RO var.
6736                                  * Message was printed by unset_local_var. */
6737                                 ret = EXIT_FAILURE;
6738                         }
6739                 }
6740 //#if ENABLE_HUSH_FUNCTIONS
6741 //              else {
6742 //                      unset_local_func(*argv);
6743 //              }
6744 //#endif
6745                 argv++;
6746         }
6747         return ret;
6748 }
6749
6750 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
6751 static int builtin_wait(char **argv)
6752 {
6753         int ret = EXIT_SUCCESS;
6754         int status, sig;
6755
6756         if (*++argv == NULL) {
6757                 /* Don't care about wait results */
6758                 /* Note 1: must wait until there are no more children */
6759                 /* Note 2: must be interruptible */
6760                 /* Examples:
6761                  * $ sleep 3 & sleep 6 & wait
6762                  * [1] 30934 sleep 3
6763                  * [2] 30935 sleep 6
6764                  * [1] Done                   sleep 3
6765                  * [2] Done                   sleep 6
6766                  * $ sleep 3 & sleep 6 & wait
6767                  * [1] 30936 sleep 3
6768                  * [2] 30937 sleep 6
6769                  * [1] Done                   sleep 3
6770                  * ^C <-- after ~4 sec from keyboard
6771                  * $
6772                  */
6773                 sigaddset(&G.blocked_set, SIGCHLD);
6774                 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
6775                 while (1) {
6776                         checkjobs(NULL);
6777                         if (errno == ECHILD)
6778                                 break;
6779                         /* Wait for SIGCHLD or any other signal of interest */
6780                         /* sigtimedwait with infinite timeout: */
6781                         sig = sigwaitinfo(&G.blocked_set, NULL);
6782                         if (sig > 0) {
6783                                 sig = check_and_run_traps(sig);
6784                                 if (sig && sig != SIGCHLD) { /* see note 2 */
6785                                         ret = 128 + sig;
6786                                         break;
6787                                 }
6788                         }
6789                 }
6790                 sigdelset(&G.blocked_set, SIGCHLD);
6791                 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
6792                 return ret;
6793         }
6794
6795         /* This is probably buggy wrt interruptible-ness */
6796         while (*argv) {
6797                 pid_t pid = bb_strtou(*argv, NULL, 10);
6798                 if (errno) {
6799                         /* mimic bash message */
6800                         bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
6801                         return EXIT_FAILURE;
6802                 }
6803                 if (waitpid(pid, &status, 0) == pid) {
6804                         if (WIFSIGNALED(status))
6805                                 ret = 128 + WTERMSIG(status);
6806                         else if (WIFEXITED(status))
6807                                 ret = WEXITSTATUS(status);
6808                         else /* wtf? */
6809                                 ret = EXIT_FAILURE;
6810                 } else {
6811                         bb_perror_msg("wait %s", *argv);
6812                         ret = 127;
6813                 }
6814                 argv++;
6815         }
6816
6817         return ret;
6818 }
6819
6820 #if ENABLE_HUSH_LOOPS
6821 static int builtin_break(char **argv)
6822 {
6823         if (G.depth_of_loop == 0) {
6824                 bb_error_msg("%s: only meaningful in a loop", argv[0]);
6825                 return EXIT_SUCCESS; /* bash compat */
6826         }
6827         G.flag_break_continue++; /* BC_BREAK = 1 */
6828         G.depth_break_continue = 1;
6829         if (argv[1]) {
6830                 G.depth_break_continue = bb_strtou(argv[1], NULL, 10);
6831                 if (errno || !G.depth_break_continue || argv[2]) {
6832                         bb_error_msg("%s: bad arguments", argv[0]);
6833                         G.flag_break_continue = BC_BREAK;
6834                         G.depth_break_continue = UINT_MAX;
6835                 }
6836         }
6837         if (G.depth_of_loop < G.depth_break_continue)
6838                 G.depth_break_continue = G.depth_of_loop;
6839         return EXIT_SUCCESS;
6840 }
6841
6842 static int builtin_continue(char **argv)
6843 {
6844         G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
6845         return builtin_break(argv);
6846 }
6847 #endif