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