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