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