hush: fix trap clearing in subshells on MMU; simplify NOMMU a bit:
[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(as_string, dest, input, dquote_end) \
1607         parse_stream_dquoted(dest, input, dquote_end)
1608 #endif
1609 static int parse_stream_dquoted(o_string *as_string,
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 reset_traps_to_defaults(void)
2280 {
2281         unsigned sig;
2282         int dirty;
2283
2284         if (!G.traps)
2285                 return;
2286         dirty = 0;
2287         for (sig = 0; sig < NSIG; sig++) {
2288                 if (!G.traps[sig])
2289                         continue;
2290                 free(G.traps[sig]);
2291                 G.traps[sig] = NULL;
2292                 /* There is no signal for 0 (EXIT) */
2293                 if (sig == 0)
2294                         continue;
2295                 /* there was a trap handler, we are removing it
2296                  * (if sig has non-DFL handling,
2297                  * we don't need to do anything) */
2298                 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
2299                         continue;
2300                 sigdelset(&G.blocked_set, sig);
2301                 dirty = 1;
2302         }
2303         if (dirty)
2304                 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
2305 }
2306 #define clean_up_after_re_execute() ((void)0)
2307
2308 #else /* !BB_MMU */
2309
2310 static void re_execute_shell(const char *s) NORETURN;
2311 static void re_execute_shell(const char *s)
2312 {
2313         struct variable *cur;
2314         char **argv, **pp, **pp2;
2315         unsigned cnt;
2316
2317         /* 1:hush 2:-$<pid> 3:-!<pid> 4:-?<exitcode> 5:-D<depth> <vars...>
2318          * 6:-c 7:<cmd> <argN...> 8:NULL
2319          */
2320         cnt = 8 + G.global_argc;
2321         for (cur = G.top_var; cur; cur = cur->next) {
2322                 if (!cur->flg_export || cur->flg_read_only)
2323                         cnt += 2;
2324         }
2325         G.argv_from_re_execing = pp = xzalloc(sizeof(argv[0]) * cnt);
2326         *pp++ = (char *) G.argv0_for_re_execing;
2327         *pp++ = xasprintf("-$%u", (unsigned) G.root_pid);
2328         *pp++ = xasprintf("-!%u", (unsigned) G.last_bg_pid);
2329         *pp++ = xasprintf("-?%u", (unsigned) G.last_return_code);
2330 #if ENABLE_HUSH_LOOPS
2331         *pp++ = xasprintf("-D%u", G.depth_of_loop);
2332 #endif
2333         for (cur = G.top_var; cur; cur = cur->next) {
2334                 if (cur->varstr == hush_version_str)
2335                         continue;
2336                 if (cur->flg_read_only) {
2337                         *pp++ = (char *) "-R";
2338                         *pp++ = cur->varstr;
2339                 } else if (!cur->flg_export) {
2340                         *pp++ = (char *) "-V";
2341                         *pp++ = cur->varstr;
2342                 }
2343         }
2344 //TODO: pass functions
2345         /* We can pass activated traps here. Say, -Tnn:trap_string
2346          *
2347          * However, POSIX says that subshells reset signals with traps
2348          * to SIG_DFL.
2349          * I tested bash-3.2 and it not only does that with true subshells
2350          * of the form ( list ), but with any forked children shells.
2351          * I set trap "echo W" WINCH; and then tried:
2352          *
2353          * { echo 1; sleep 20; echo 2; } &
2354          * while true; do echo 1; sleep 20; echo 2; break; done &
2355          * true | { echo 1; sleep 20; echo 2; } | cat
2356          *
2357          * In all these cases sending SIGWINCH to the child shell
2358          * did not run the trap. If I add trap "echo V" WINCH;
2359          * _inside_ group (just before echo 1), it works.
2360          *
2361          * I conclude it means we don't need to pass active traps here.
2362          * exec syscall below resets them to SIG_DFL for us.
2363          */
2364         *pp++ = (char *) "-c";
2365         *pp++ = (char *) s;
2366         pp2 = G.global_argv;
2367         while (*pp2)
2368                 *pp++ = *pp2++;
2369         /* *pp = NULL; - is already there */
2370
2371         debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
2372         sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
2373         execv(bb_busybox_exec_path, G.argv_from_re_execing);
2374         /* Fallback. Useful for init=/bin/hush usage etc */
2375         if (G.argv0_for_re_execing[0] == '/')
2376                 execv(G.argv0_for_re_execing, G.argv_from_re_execing);
2377         xfunc_error_retval = 127;
2378         bb_error_msg_and_die("can't re-execute the shell");
2379 }
2380
2381 static void clean_up_after_re_execute(void)
2382 {
2383         char **pp = G.argv_from_re_execing;
2384         if (pp) {
2385                 /* Must match re_execute_shell's allocations */
2386                 free(pp[1]);
2387                 free(pp[2]);
2388                 free(pp[3]);
2389 #if ENABLE_HUSH_LOOPS
2390                 free(pp[4]);
2391 #endif
2392                 free(pp);
2393                 G.argv_from_re_execing = NULL;
2394         }
2395 }
2396 #endif
2397
2398 static int run_list(struct pipe *pi);
2399
2400 /* Called after [v]fork() in run_pipe()
2401  */
2402 static void pseudo_exec(nommu_save_t *nommu_save,
2403                 struct command *command,
2404                 char **argv_expanded) NORETURN;
2405 static void pseudo_exec(nommu_save_t *nommu_save,
2406                 struct command *command,
2407                 char **argv_expanded)
2408 {
2409         if (command->argv) {
2410                 pseudo_exec_argv(nommu_save, command->argv,
2411                                 command->assignment_cnt, argv_expanded);
2412         }
2413
2414         if (command->group) {
2415                 /* Cases when we are here:
2416                  * ( list )
2417                  * { list } &
2418                  * ... | ( list ) | ...
2419                  * ... | { list } | ...
2420                  */
2421 #if BB_MMU
2422                 int rcode;
2423                 debug_printf_exec("pseudo_exec: run_list\n");
2424                 reset_traps_to_defaults();
2425                 rcode = run_list(command->group);
2426                 /* OK to leak memory by not calling free_pipe_list,
2427                  * since this process is about to exit */
2428                 _exit(rcode);
2429 #else
2430                 re_execute_shell(command->group_as_string);
2431 #endif
2432         }
2433
2434         /* Case when we are here: ... | >file */
2435         debug_printf_exec("pseudo_exec'ed null command\n");
2436         _exit(EXIT_SUCCESS);
2437 }
2438
2439 #if ENABLE_HUSH_JOB
2440 static const char *get_cmdtext(struct pipe *pi)
2441 {
2442         char **argv;
2443         char *p;
2444         int len;
2445
2446         /* This is subtle. ->cmdtext is created only on first backgrounding.
2447          * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
2448          * On subsequent bg argv is trashed, but we won't use it */
2449         if (pi->cmdtext)
2450                 return pi->cmdtext;
2451         argv = pi->cmds[0].argv;
2452         if (!argv || !argv[0]) {
2453                 pi->cmdtext = xzalloc(1);
2454                 return pi->cmdtext;
2455         }
2456
2457         len = 0;
2458         do len += strlen(*argv) + 1; while (*++argv);
2459         pi->cmdtext = p = xmalloc(len);
2460         argv = pi->cmds[0].argv;
2461         do {
2462                 len = strlen(*argv);
2463                 memcpy(p, *argv, len);
2464                 p += len;
2465                 *p++ = ' ';
2466         } while (*++argv);
2467         p[-1] = '\0';
2468         return pi->cmdtext;
2469 }
2470
2471 static void insert_bg_job(struct pipe *pi)
2472 {
2473         struct pipe *thejob;
2474         int i;
2475
2476         /* Linear search for the ID of the job to use */
2477         pi->jobid = 1;
2478         for (thejob = G.job_list; thejob; thejob = thejob->next)
2479                 if (thejob->jobid >= pi->jobid)
2480                         pi->jobid = thejob->jobid + 1;
2481
2482         /* Add thejob to the list of running jobs */
2483         if (!G.job_list) {
2484                 thejob = G.job_list = xmalloc(sizeof(*thejob));
2485         } else {
2486                 for (thejob = G.job_list; thejob->next; thejob = thejob->next)
2487                         continue;
2488                 thejob->next = xmalloc(sizeof(*thejob));
2489                 thejob = thejob->next;
2490         }
2491
2492         /* Physically copy the struct job */
2493         memcpy(thejob, pi, sizeof(struct pipe));
2494         thejob->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
2495         /* We cannot copy entire pi->cmds[] vector! Double free()s will happen */
2496         for (i = 0; i < pi->num_cmds; i++) {
2497 // TODO: do we really need to have so many fields which are just dead weight
2498 // at execution stage?
2499                 thejob->cmds[i].pid = pi->cmds[i].pid;
2500                 /* all other fields are not used and stay zero */
2501         }
2502         thejob->next = NULL;
2503         thejob->cmdtext = xstrdup(get_cmdtext(pi));
2504
2505         /* We don't wait for background thejobs to return -- append it
2506            to the list of backgrounded thejobs and leave it alone */
2507         if (G_interactive_fd)
2508                 printf("[%d] %d %s\n", thejob->jobid, thejob->cmds[0].pid, thejob->cmdtext);
2509         G.last_bg_pid = thejob->cmds[0].pid;
2510         G.last_jobid = thejob->jobid;
2511 }
2512
2513 static void remove_bg_job(struct pipe *pi)
2514 {
2515         struct pipe *prev_pipe;
2516
2517         if (pi == G.job_list) {
2518                 G.job_list = pi->next;
2519         } else {
2520                 prev_pipe = G.job_list;
2521                 while (prev_pipe->next != pi)
2522                         prev_pipe = prev_pipe->next;
2523                 prev_pipe->next = pi->next;
2524         }
2525         if (G.job_list)
2526                 G.last_jobid = G.job_list->jobid;
2527         else
2528                 G.last_jobid = 0;
2529 }
2530
2531 /* Remove a backgrounded job */
2532 static void delete_finished_bg_job(struct pipe *pi)
2533 {
2534         remove_bg_job(pi);
2535         pi->stopped_cmds = 0;
2536         free_pipe(pi, 0);
2537         free(pi);
2538 }
2539 #endif /* JOB */
2540
2541 /* Check to see if any processes have exited -- if they
2542  * have, figure out why and see if a job has completed */
2543 static int checkjobs(struct pipe* fg_pipe)
2544 {
2545         int attributes;
2546         int status;
2547 #if ENABLE_HUSH_JOB
2548         struct pipe *pi;
2549 #endif
2550         pid_t childpid;
2551         int rcode = 0;
2552
2553         debug_printf_jobs("checkjobs %p\n", fg_pipe);
2554
2555         errno = 0;
2556 //      if (G.handled_SIGCHLD == G.count_SIGCHLD)
2557 //              /* avoid doing syscall, nothing there anyway */
2558 //              return rcode;
2559
2560         attributes = WUNTRACED;
2561         if (fg_pipe == NULL)
2562                 attributes |= WNOHANG;
2563
2564 /* Do we do this right?
2565  * bash-3.00# sleep 20 | false
2566  * <ctrl-Z pressed>
2567  * [3]+  Stopped          sleep 20 | false
2568  * bash-3.00# echo $?
2569  * 1   <========== bg pipe is not fully done, but exitcode is already known!
2570  */
2571
2572 //FIXME: non-interactive bash does not continue even if all processes in fg pipe
2573 //are stopped. Testcase: "cat | cat" in a script (not on command line)
2574 // + killall -STOP cat
2575
2576  wait_more:
2577         while (1) {
2578                 int i;
2579                 int dead;
2580
2581 //              i = G.count_SIGCHLD;
2582                 childpid = waitpid(-1, &status, attributes);
2583                 if (childpid <= 0) {
2584                         if (childpid && errno != ECHILD)
2585                                 bb_perror_msg("waitpid");
2586 //                      else /* Until next SIGCHLD, waitpid's are useless */
2587 //                              G.handled_SIGCHLD = i;
2588                         break;
2589                 }
2590                 dead = WIFEXITED(status) || WIFSIGNALED(status);
2591
2592 #if DEBUG_JOBS
2593                 if (WIFSTOPPED(status))
2594                         debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
2595                                         childpid, WSTOPSIG(status), WEXITSTATUS(status));
2596                 if (WIFSIGNALED(status))
2597                         debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
2598                                         childpid, WTERMSIG(status), WEXITSTATUS(status));
2599                 if (WIFEXITED(status))
2600                         debug_printf_jobs("pid %d exited, exitcode %d\n",
2601                                         childpid, WEXITSTATUS(status));
2602 #endif
2603                 /* Were we asked to wait for fg pipe? */
2604                 if (fg_pipe) {
2605                         for (i = 0; i < fg_pipe->num_cmds; i++) {
2606                                 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
2607                                 if (fg_pipe->cmds[i].pid != childpid)
2608                                         continue;
2609                                 /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */
2610                                 if (dead) {
2611                                         fg_pipe->cmds[i].pid = 0;
2612                                         fg_pipe->alive_cmds--;
2613                                         if (i == fg_pipe->num_cmds - 1) {
2614                                                 /* last process gives overall exitstatus */
2615                                                 rcode = WEXITSTATUS(status);
2616                                                 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
2617                                         }
2618                                 } else {
2619                                         fg_pipe->cmds[i].is_stopped = 1;
2620                                         fg_pipe->stopped_cmds++;
2621                                 }
2622                                 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
2623                                                 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
2624                                 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
2625                                         /* All processes in fg pipe have exited/stopped */
2626 #if ENABLE_HUSH_JOB
2627                                         if (fg_pipe->alive_cmds)
2628                                                 insert_bg_job(fg_pipe);
2629 #endif
2630                                         return rcode;
2631                                 }
2632                                 /* There are still running processes in the fg pipe */
2633                                 goto wait_more; /* do waitpid again */
2634                         }
2635                         /* it wasnt fg_pipe, look for process in bg pipes */
2636                 }
2637
2638 #if ENABLE_HUSH_JOB
2639                 /* We asked to wait for bg or orphaned children */
2640                 /* No need to remember exitcode in this case */
2641                 for (pi = G.job_list; pi; pi = pi->next) {
2642                         for (i = 0; i < pi->num_cmds; i++) {
2643                                 if (pi->cmds[i].pid == childpid)
2644                                         goto found_pi_and_prognum;
2645                         }
2646                 }
2647                 /* Happens when shell is used as init process (init=/bin/sh) */
2648                 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
2649                 continue; /* do waitpid again */
2650
2651  found_pi_and_prognum:
2652                 if (dead) {
2653                         /* child exited */
2654                         pi->cmds[i].pid = 0;
2655                         pi->alive_cmds--;
2656                         if (!pi->alive_cmds) {
2657                                 if (G_interactive_fd)
2658                                         printf(JOB_STATUS_FORMAT, pi->jobid,
2659                                                         "Done", pi->cmdtext);
2660                                 delete_finished_bg_job(pi);
2661                         }
2662                 } else {
2663                         /* child stopped */
2664                         pi->cmds[i].is_stopped = 1;
2665                         pi->stopped_cmds++;
2666                 }
2667 #endif
2668         } /* while (waitpid succeeds)... */
2669
2670         return rcode;
2671 }
2672
2673 #if ENABLE_HUSH_JOB
2674 static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
2675 {
2676         pid_t p;
2677         int rcode = checkjobs(fg_pipe);
2678         /* Job finished, move the shell to the foreground */
2679         p = getpgid(0); /* pgid of our process */
2680         debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p);
2681         tcsetpgrp(G_interactive_fd, p);
2682         return rcode;
2683 }
2684 #endif
2685
2686 /* Start all the jobs, but don't wait for anything to finish.
2687  * See checkjobs().
2688  *
2689  * Return code is normally -1, when the caller has to wait for children
2690  * to finish to determine the exit status of the pipe.  If the pipe
2691  * is a simple builtin command, however, the action is done by the
2692  * time run_pipe returns, and the exit code is provided as the
2693  * return value.
2694  *
2695  * Returns -1 only if started some children. IOW: we have to
2696  * mask out retvals of builtins etc with 0xff!
2697  *
2698  * The only case when we do not need to [v]fork is when the pipe
2699  * is single, non-backgrounded, non-subshell command. Examples:
2700  * cmd ; ...   { list } ; ...
2701  * cmd && ...  { list } && ...
2702  * cmd || ...  { list } || ...
2703  * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
2704  * or (if SH_STANDALONE) an applet, and we can run the { list }
2705  * with run_list(). If it isn't one of these, we fork and exec cmd.
2706  *
2707  * Cases when we must fork:
2708  * non-single:   cmd | cmd
2709  * backgrounded: cmd &     { list } &
2710  * subshell:     ( list ) [&]
2711  */
2712 static int run_pipe(struct pipe *pi)
2713 {
2714         static const char *const null_ptr = NULL;
2715         int i;
2716         int nextin;
2717         int pipefds[2];         /* pipefds[0] is for reading */
2718         struct command *command;
2719         char **argv_expanded;
2720         char **argv;
2721         char *p;
2722         /* it is not always needed, but we aim to smaller code */
2723         int squirrel[] = { -1, -1, -1 };
2724         int rcode;
2725
2726         debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
2727
2728         USE_HUSH_JOB(pi->pgrp = -1;)
2729         pi->stopped_cmds = 0;
2730         command = &(pi->cmds[0]);
2731         argv_expanded = NULL;
2732
2733         if (pi->num_cmds != 1
2734          || pi->followup == PIPE_BG
2735          || command->grp_type == GRP_SUBSHELL
2736         ) {
2737                 goto must_fork;
2738         }
2739
2740         pi->alive_cmds = 1;
2741
2742         debug_printf_exec(": group:%p argv:'%s'\n",
2743                 command->group, command->argv ? command->argv[0] : "NONE");
2744
2745         if (command->group) {
2746 #if ENABLE_HUSH_FUNCTIONS
2747                 if (command->grp_type == GRP_FUNCTION) {
2748                         /* func () { list } */
2749                         bb_error_msg("here we ought to remember function definition, and go on");
2750                         return EXIT_SUCCESS;
2751                 }
2752 #endif
2753                 /* { list } */
2754                 debug_printf("non-subshell group\n");
2755                 setup_redirects(command, squirrel);
2756                 debug_printf_exec(": run_list\n");
2757                 rcode = run_list(command->group) & 0xff;
2758                 restore_redirects(squirrel);
2759                 debug_printf_exec("run_pipe return %d\n", rcode);
2760                 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
2761                 return rcode;
2762         }
2763
2764         argv = command->argv ? command->argv : (char **) &null_ptr;
2765         {
2766                 const struct built_in_command *x;
2767                 char **new_env = NULL;
2768                 char **old_env = NULL;
2769
2770                 if (argv[command->assignment_cnt] == NULL) {
2771                         /* Assignments, but no command */
2772                         /* Ensure redirects take effect. Try "a=t >file" */
2773                         setup_redirects(command, squirrel);
2774                         restore_redirects(squirrel);
2775                         /* Set shell variables */
2776                         while (*argv) {
2777                                 p = expand_string_to_string(*argv);
2778                                 debug_printf_exec("set shell var:'%s'->'%s'\n",
2779                                                 *argv, p);
2780                                 set_local_var(p, 0, 0);
2781                                 argv++;
2782                         }
2783                         /* Do we need to flag set_local_var() errors?
2784                          * "assignment to readonly var" and "putenv error"
2785                          */
2786                         return EXIT_SUCCESS;
2787                 }
2788
2789                 /* Expand the rest into (possibly) many strings each */
2790                 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
2791
2792                 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
2793                         if (strcmp(argv_expanded[0], x->cmd) != 0)
2794                                 continue;
2795                         if (x->function == builtin_exec && argv_expanded[1] == NULL) {
2796                                 debug_printf("exec with redirects only\n");
2797                                 setup_redirects(command, NULL);
2798                                 rcode = EXIT_SUCCESS;
2799                                 goto clean_up_and_ret1;
2800                         }
2801                         debug_printf("builtin inline %s\n", argv_expanded[0]);
2802                         /* XXX setup_redirects acts on file descriptors, not FILEs.
2803                          * This is perfect for work that comes after exec().
2804                          * Is it really safe for inline use?  Experimentally,
2805                          * things seem to work with glibc. */
2806                         setup_redirects(command, squirrel);
2807                         new_env = expand_assignments(argv, command->assignment_cnt);
2808                         old_env = putenv_all_and_save_old(new_env);
2809                         debug_printf_exec(": builtin '%s' '%s'...\n",
2810                                     x->cmd, argv_expanded[1]);
2811                         rcode = x->function(argv_expanded) & 0xff;
2812 #if ENABLE_FEATURE_SH_STANDALONE
2813  clean_up_and_ret:
2814 #endif
2815                         restore_redirects(squirrel);
2816                         free_strings_and_unsetenv(new_env, 1);
2817                         putenv_all(old_env);
2818                         free(old_env); /* not free_strings()! */
2819  clean_up_and_ret1:
2820                         free(argv_expanded);
2821                         IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
2822                         debug_printf_exec("run_pipe return %d\n", rcode);
2823                         return rcode;
2824                 }
2825 #if ENABLE_FEATURE_SH_STANDALONE
2826                 i = find_applet_by_name(argv_expanded[0]);
2827                 if (i >= 0 && APPLET_IS_NOFORK(i)) {
2828                         setup_redirects(command, squirrel);
2829                         save_nofork_data(&G.nofork_save);
2830                         new_env = expand_assignments(argv, command->assignment_cnt);
2831                         old_env = putenv_all_and_save_old(new_env);
2832                         debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
2833                                         argv_expanded[0], argv_expanded[1]);
2834                         rcode = run_nofork_applet_prime(&G.nofork_save, i, argv_expanded);
2835                         goto clean_up_and_ret;
2836                 }
2837 #endif
2838                 /* It is neither builtin nor applet. We must fork. */
2839         }
2840
2841  must_fork:
2842         /* NB: argv_expanded may already be created, and that
2843          * might include `cmd` runs! Do not rerun it! We *must*
2844          * use argv_expanded if it's non-NULL */
2845
2846         /* Going to fork a child per each pipe member */
2847         pi->alive_cmds = 0;
2848         nextin = 0;
2849
2850         for (i = 0; i < pi->num_cmds; i++) {
2851 #if !BB_MMU
2852                 volatile nommu_save_t nommu_save;
2853                 nommu_save.new_env = NULL;
2854                 nommu_save.old_env = NULL;
2855                 nommu_save.argv = NULL;
2856 #endif
2857                 command = &(pi->cmds[i]);
2858                 if (command->argv) {
2859                         debug_printf_exec(": pipe member '%s' '%s'...\n",
2860                                         command->argv[0], command->argv[1]);
2861                 } else {
2862                         debug_printf_exec(": pipe member with no argv\n");
2863                 }
2864
2865                 /* pipes are inserted between pairs of commands */
2866                 pipefds[0] = 0;
2867                 pipefds[1] = 1;
2868                 if ((i + 1) < pi->num_cmds)
2869                         xpipe(pipefds);
2870
2871                 command->pid = BB_MMU ? fork() : vfork();
2872                 if (!command->pid) { /* child */
2873 #if ENABLE_HUSH_JOB
2874                         die_sleep = 0; /* do not restore tty pgrp on xfunc death */
2875
2876                         /* Every child adds itself to new process group
2877                          * with pgid == pid_of_first_child_in_pipe */
2878                         if (G.run_list_level == 1 && G_interactive_fd) {
2879                                 pid_t pgrp;
2880                                 pgrp = pi->pgrp;
2881                                 if (pgrp < 0) /* true for 1st process only */
2882                                         pgrp = getpid();
2883                                 if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) {
2884                                         /* We do it in *every* child, not just first,
2885                                          * to avoid races */
2886                                         tcsetpgrp(G_interactive_fd, pgrp);
2887                                 }
2888                         }
2889 #endif
2890                         xmove_fd(nextin, 0);
2891                         xmove_fd(pipefds[1], 1); /* write end */
2892                         if (pipefds[0] > 1)
2893                                 close(pipefds[0]); /* read end */
2894                         /* Like bash, explicit redirects override pipes,
2895                          * and the pipe fd is available for dup'ing. */
2896                         setup_redirects(command, NULL);
2897
2898                         /* Restore default handlers just prior to exec */
2899                         /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
2900
2901                         /* Stores to nommu_save list of env vars putenv'ed
2902                          * (NOMMU, on MMU we don't need that) */
2903                         /* cast away volatility... */
2904                         pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
2905                         /* pseudo_exec() does not return */
2906                 }
2907
2908                 /* parent or error */
2909 #if ENABLE_HUSH_JOB
2910                 die_sleep = -1; /* restore tty pgrp on xfunc death */
2911 #endif
2912 #if !BB_MMU
2913                 /* Clean up after vforked child */
2914                 clean_up_after_re_execute();
2915                 free(nommu_save.argv);
2916                 free_strings_and_unsetenv(nommu_save.new_env, 1);
2917                 putenv_all(nommu_save.old_env);
2918 #endif
2919                 free(argv_expanded);
2920                 argv_expanded = NULL;
2921                 if (command->pid < 0) { /* [v]fork failed */
2922                         /* Clearly indicate, was it fork or vfork */
2923                         bb_perror_msg(BB_MMU ? "fork" : "vfork");
2924                 } else {
2925                         pi->alive_cmds++;
2926 #if ENABLE_HUSH_JOB
2927                         /* Second and next children need to know pid of first one */
2928                         if (pi->pgrp < 0)
2929                                 pi->pgrp = command->pid;
2930 #endif
2931                 }
2932
2933                 if (i)
2934                         close(nextin);
2935                 if ((i + 1) < pi->num_cmds)
2936                         close(pipefds[1]); /* write end */
2937                 /* Pass read (output) pipe end to next iteration */
2938                 nextin = pipefds[0];
2939         }
2940
2941         if (!pi->alive_cmds) {
2942                 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
2943                 return 1;
2944         }
2945
2946         debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
2947         return -1;
2948 }
2949
2950 #ifndef debug_print_tree
2951 static void debug_print_tree(struct pipe *pi, int lvl)
2952 {
2953         static const char *const PIPE[] = {
2954                 [PIPE_SEQ] = "SEQ",
2955                 [PIPE_AND] = "AND",
2956                 [PIPE_OR ] = "OR" ,
2957                 [PIPE_BG ] = "BG" ,
2958         };
2959         static const char *RES[] = {
2960                 [RES_NONE ] = "NONE" ,
2961 #if ENABLE_HUSH_IF
2962                 [RES_IF   ] = "IF"   ,
2963                 [RES_THEN ] = "THEN" ,
2964                 [RES_ELIF ] = "ELIF" ,
2965                 [RES_ELSE ] = "ELSE" ,
2966                 [RES_FI   ] = "FI"   ,
2967 #endif
2968 #if ENABLE_HUSH_LOOPS
2969                 [RES_FOR  ] = "FOR"  ,
2970                 [RES_WHILE] = "WHILE",
2971                 [RES_UNTIL] = "UNTIL",
2972                 [RES_DO   ] = "DO"   ,
2973                 [RES_DONE ] = "DONE" ,
2974 #endif
2975 #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
2976                 [RES_IN   ] = "IN"   ,
2977 #endif
2978 #if ENABLE_HUSH_CASE
2979                 [RES_CASE ] = "CASE" ,
2980                 [RES_MATCH] = "MATCH",
2981                 [RES_CASEI] = "CASEI",
2982                 [RES_ESAC ] = "ESAC" ,
2983 #endif
2984                 [RES_XXXX ] = "XXXX" ,
2985                 [RES_SNTX ] = "SNTX" ,
2986         };
2987         static const char *const GRPTYPE[] = {
2988                 "{}",
2989                 "()",
2990 #if ENABLE_HUSH_FUNCTIONS
2991                 "func()",
2992 #endif
2993         };
2994
2995         int pin, prn;
2996
2997         pin = 0;
2998         while (pi) {
2999                 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
3000                                 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
3001                 prn = 0;
3002                 while (prn < pi->num_cmds) {
3003                         struct command *command = &pi->cmds[prn];
3004                         char **argv = command->argv;
3005
3006                         fprintf(stderr, "%*s prog %d assignment_cnt:%d",
3007                                         lvl*2, "", prn,
3008                                         command->assignment_cnt);
3009                         if (command->group) {
3010                                 fprintf(stderr, " group %s: (argv=%p)\n",
3011                                                 GRPTYPE[command->grp_type],
3012                                                 argv);
3013                                 debug_print_tree(command->group, lvl+1);
3014                                 prn++;
3015                                 continue;
3016                         }
3017                         if (argv) while (*argv) {
3018                                 fprintf(stderr, " '%s'", *argv);
3019                                 argv++;
3020                         }
3021                         fprintf(stderr, "\n");
3022                         prn++;
3023                 }
3024                 pi = pi->next;
3025                 pin++;
3026         }
3027 }
3028 #endif
3029
3030 /* NB: called by pseudo_exec, and therefore must not modify any
3031  * global data until exec/_exit (we can be a child after vfork!) */
3032 static int run_list(struct pipe *pi)
3033 {
3034 #if ENABLE_HUSH_CASE
3035         char *case_word = NULL;
3036 #endif
3037 #if ENABLE_HUSH_LOOPS
3038         struct pipe *loop_top = NULL;
3039         char *for_varname = NULL;
3040         char **for_lcur = NULL;
3041         char **for_list = NULL;
3042 #endif
3043         smallint flag_skip = 1;
3044         smalluint rcode = 0; /* probably just for compiler */
3045 #if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
3046         smalluint cond_code = 0;
3047 #else
3048         enum { cond_code = 0, };
3049 #endif
3050         /*enum reserved_style*/ smallint rword = RES_NONE;
3051         /*enum reserved_style*/ smallint skip_more_for_this_rword = RES_XXXX;
3052
3053         debug_printf_exec("run_list start lvl %d\n", G.run_list_level + 1);
3054
3055 #if ENABLE_HUSH_LOOPS
3056         /* Check syntax for "for" */
3057         for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
3058                 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
3059                         continue;
3060                 /* current word is FOR or IN (BOLD in comments below) */
3061                 if (cpipe->next == NULL) {
3062                         syntax("malformed for");
3063                         debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
3064                         return 1;
3065                 }
3066                 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
3067                 if (cpipe->next->res_word == RES_DO)
3068                         continue;
3069                 /* next word is not "do". It must be "in" then ("FOR v in ...") */
3070                 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
3071                  || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
3072                 ) {
3073                         syntax("malformed for");
3074                         debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
3075                         return 1;
3076                 }
3077         }
3078 #endif
3079
3080         /* Past this point, all code paths should jump to ret: label
3081          * in order to return, no direct "return" statements please.
3082          * This helps to ensure that no memory is leaked. */
3083
3084 ////TODO: ctrl-Z handling needs re-thinking and re-testing
3085
3086 #if ENABLE_HUSH_JOB
3087         /* Example of nested list: "while true; do { sleep 1 | exit 2; } done".
3088          * We are saving state before entering outermost list ("while...done")
3089          * so that ctrl-Z will correctly background _entire_ outermost list,
3090          * not just a part of it (like "sleep 1 | exit 2") */
3091         if (++G.run_list_level == 1 && G_interactive_fd) {
3092                 if (sigsetjmp(G.toplevel_jb, 1)) {
3093                         /* ctrl-Z forked and we are parent; or ctrl-C.
3094                          * Sighandler has longjmped us here */
3095                         signal(SIGINT, SIG_IGN);
3096                         signal(SIGTSTP, SIG_IGN);
3097                         /* Restore level (we can be coming from deep inside
3098                          * nested levels) */
3099                         G.run_list_level = 1;
3100 #if ENABLE_FEATURE_SH_STANDALONE
3101                         if (G.nofork_save.saved) { /* if save area is valid */
3102                                 debug_printf_jobs("exiting nofork early\n");
3103                                 restore_nofork_data(&G.nofork_save);
3104                         }
3105 #endif
3106 ////                    if (G.ctrl_z_flag) {
3107 ////                            /* ctrl-Z has forked and stored pid of the child in pi->pid.
3108 ////                             * Remember this child as background job */
3109 ////                            insert_bg_job(pi);
3110 ////                    } else {
3111                                 /* ctrl-C. We just stop doing whatever we were doing */
3112                                 bb_putchar('\n');
3113 ////                    }
3114                         USE_HUSH_LOOPS(loop_top = NULL;)
3115                         USE_HUSH_LOOPS(G.depth_of_loop = 0;)
3116                         rcode = 0;
3117                         goto ret;
3118                 }
3119 ////            /* ctrl-Z handler will store pid etc in pi */
3120 ////            G.toplevel_list = pi;
3121 ////            G.ctrl_z_flag = 0;
3122 ////#if ENABLE_FEATURE_SH_STANDALONE
3123 ////            G.nofork_save.saved = 0; /* in case we will run a nofork later */
3124 ////#endif
3125 ////            signal_SA_RESTART_empty_mask(SIGTSTP, handler_ctrl_z);
3126 ////            signal(SIGINT, handler_ctrl_c);
3127         }
3128 #endif /* JOB */
3129
3130         /* Go through list of pipes, (maybe) executing them. */
3131         for (; pi; pi = USE_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
3132                 if (G.flag_SIGINT)
3133                         break;
3134
3135                 IF_HAS_KEYWORDS(rword = pi->res_word;)
3136                 IF_HAS_NO_KEYWORDS(rword = RES_NONE;)
3137                 debug_printf_exec(": rword=%d cond_code=%d skip_more=%d\n",
3138                                 rword, cond_code, skip_more_for_this_rword);
3139 #if ENABLE_HUSH_LOOPS
3140                 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
3141                  && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
3142                 ) {
3143                         /* start of a loop: remember where loop starts */
3144                         loop_top = pi;
3145                         G.depth_of_loop++;
3146                 }
3147 #endif
3148                 if (rword == skip_more_for_this_rword && flag_skip) {
3149                         if (pi->followup == PIPE_SEQ)
3150                                 flag_skip = 0;
3151                         /* it is "<false> && CMD" or "<true> || CMD"
3152                          * and we should not execute CMD */
3153                         continue;
3154                 }
3155                 flag_skip = 1;
3156                 skip_more_for_this_rword = RES_XXXX;
3157 #if ENABLE_HUSH_IF
3158                 if (cond_code) {
3159                         if (rword == RES_THEN) {
3160                                 /* "if <false> THEN cmd": skip cmd */
3161                                 continue;
3162                         }
3163                 } else {
3164                         if (rword == RES_ELSE || rword == RES_ELIF) {
3165                                 /* "if <true> then ... ELSE/ELIF cmd":
3166                                  * skip cmd and all following ones */
3167                                 break;
3168                         }
3169                 }
3170 #endif
3171 #if ENABLE_HUSH_LOOPS
3172                 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
3173                         if (!for_lcur) {
3174                                 /* first loop through for */
3175
3176                                 static const char encoded_dollar_at[] ALIGN1 = {
3177                                         SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
3178                                 }; /* encoded representation of "$@" */
3179                                 static const char *const encoded_dollar_at_argv[] = {
3180                                         encoded_dollar_at, NULL
3181                                 }; /* argv list with one element: "$@" */
3182                                 char **vals;
3183
3184                                 vals = (char**)encoded_dollar_at_argv;
3185                                 if (pi->next->res_word == RES_IN) {
3186                                         /* if no variable values after "in" we skip "for" */
3187                                         if (!pi->next->cmds[0].argv)
3188                                                 break;
3189                                         vals = pi->next->cmds[0].argv;
3190                                 } /* else: "for var; do..." -> assume "$@" list */
3191                                 /* create list of variable values */
3192                                 debug_print_strings("for_list made from", vals);
3193                                 for_list = expand_strvec_to_strvec(vals);
3194                                 for_lcur = for_list;
3195                                 debug_print_strings("for_list", for_list);
3196                                 for_varname = pi->cmds[0].argv[0];
3197                                 pi->cmds[0].argv[0] = NULL;
3198                         }
3199                         free(pi->cmds[0].argv[0]);
3200                         if (!*for_lcur) {
3201                                 /* "for" loop is over, clean up */
3202                                 free(for_list);
3203                                 for_list = NULL;
3204                                 for_lcur = NULL;
3205                                 pi->cmds[0].argv[0] = for_varname;
3206                                 break;
3207                         }
3208                         /* insert next value from for_lcur */
3209 //TODO: does it need escaping?
3210                         pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++);
3211                         pi->cmds[0].assignment_cnt = 1;
3212                 }
3213                 if (rword == RES_IN) {
3214                         continue; /* "for v IN list;..." - "in" has no cmds anyway */
3215                 }
3216                 if (rword == RES_DONE) {
3217                         continue; /* "done" has no cmds too */
3218                 }
3219 #endif
3220 #if ENABLE_HUSH_CASE
3221                 if (rword == RES_CASE) {
3222                         case_word = expand_strvec_to_string(pi->cmds->argv);
3223                         continue;
3224                 }
3225                 if (rword == RES_MATCH) {
3226                         char **argv;
3227
3228                         if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
3229                                 break;
3230                         /* all prev words didn't match, does this one match? */
3231                         argv = pi->cmds->argv;
3232                         while (*argv) {
3233                                 char *pattern = expand_string_to_string(*argv);
3234                                 /* TODO: which FNM_xxx flags to use? */
3235                                 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
3236                                 free(pattern);
3237                                 if (cond_code == 0) { /* match! we will execute this branch */
3238                                         free(case_word); /* make future "word)" stop */
3239                                         case_word = NULL;
3240                                         break;
3241                                 }
3242                                 argv++;
3243                         }
3244                         continue;
3245                 }
3246                 if (rword == RES_CASEI) { /* inside of a case branch */
3247                         if (cond_code != 0)
3248                                 continue; /* not matched yet, skip this pipe */
3249                 }
3250 #endif
3251                 /* Just pressing <enter> in shell should check for jobs.
3252                  * OTOH, in non-interactive shell this is useless
3253                  * and only leads to extra job checks */
3254                 if (pi->num_cmds == 0) {
3255                         if (G_interactive_fd)
3256                                 goto check_jobs_and_continue;
3257                         continue;
3258                 }
3259
3260                 /* After analyzing all keywords and conditions, we decided
3261                  * to execute this pipe. NB: have to do checkjobs(NULL)
3262                  * after run_pipe() to collect any background children,
3263                  * even if list execution is to be stopped. */
3264                 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
3265                 {
3266                         int r;
3267 #if ENABLE_HUSH_LOOPS
3268                         G.flag_break_continue = 0;
3269 #endif
3270                         rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
3271                         if (r != -1) {
3272                                 /* we only ran a builtin: rcode is already known
3273                                  * and we don't need to wait for anything. */
3274                                 check_and_run_traps(0);
3275 #if ENABLE_HUSH_LOOPS
3276                                 /* was it "break" or "continue"? */
3277                                 if (G.flag_break_continue) {
3278                                         smallint fbc = G.flag_break_continue;
3279                                         /* we might fall into outer *loop*,
3280                                          * don't want to break it too */
3281                                         if (loop_top) {
3282                                                 G.depth_break_continue--;
3283                                                 if (G.depth_break_continue == 0)
3284                                                         G.flag_break_continue = 0;
3285                                                 /* else: e.g. "continue 2" should *break* once, *then* continue */
3286                                         } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
3287                                         if (G.depth_break_continue != 0 || fbc == BC_BREAK)
3288                                                 goto check_jobs_and_break;
3289                                         /* "continue": simulate end of loop */
3290                                         rword = RES_DONE;
3291                                         continue;
3292                                 }
3293 #endif
3294                         } else if (pi->followup == PIPE_BG) {
3295                                 /* what does bash do with attempts to background builtins? */
3296                                 /* even bash 3.2 doesn't do that well with nested bg:
3297                                  * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
3298                                  * I'm NOT treating inner &'s as jobs */
3299                                 check_and_run_traps(0);
3300 #if ENABLE_HUSH_JOB
3301                                 if (G.run_list_level == 1)
3302                                         insert_bg_job(pi);
3303 #endif
3304                                 rcode = 0; /* EXIT_SUCCESS */
3305                         } else {
3306 #if ENABLE_HUSH_JOB
3307                                 if (G.run_list_level == 1 && G_interactive_fd) {
3308                                         /* waits for completion, then fg's main shell */
3309                                         rcode = checkjobs_and_fg_shell(pi);
3310                                         check_and_run_traps(0);
3311                                         debug_printf_exec(": checkjobs_and_fg_shell returned %d\n", rcode);
3312                                 } else
3313 #endif
3314                                 { /* this one just waits for completion */
3315                                         rcode = checkjobs(pi);
3316                                         check_and_run_traps(0);
3317                                         debug_printf_exec(": checkjobs returned %d\n", rcode);
3318                                 }
3319                         }
3320                 }
3321                 debug_printf_exec(": setting last_return_code=%d\n", rcode);
3322                 G.last_return_code = rcode;
3323
3324                 /* Analyze how result affects subsequent commands */
3325 #if ENABLE_HUSH_IF
3326                 if (rword == RES_IF || rword == RES_ELIF)
3327                         cond_code = rcode;
3328 #endif
3329 #if ENABLE_HUSH_LOOPS
3330                 if (rword == RES_WHILE) {
3331                         if (rcode) {
3332                                 rcode = 0; /* "while false; do...done" - exitcode 0 */
3333                                 goto check_jobs_and_break;
3334                         }
3335                 }
3336                 if (rword == RES_UNTIL) {
3337                         if (!rcode) {
3338  check_jobs_and_break:
3339                                 checkjobs(NULL);
3340                                 break;
3341                         }
3342                 }
3343 #endif
3344                 if ((rcode == 0 && pi->followup == PIPE_OR)
3345                  || (rcode != 0 && pi->followup == PIPE_AND)
3346                 ) {
3347                         skip_more_for_this_rword = rword;
3348                 }
3349
3350  check_jobs_and_continue:
3351                 checkjobs(NULL);
3352         } /* for (pi) */
3353
3354 #if ENABLE_HUSH_JOB
3355 ////    if (G.ctrl_z_flag) {
3356 ////            /* ctrl-Z forked somewhere in the past, we are the child,
3357 ////             * and now we completed running the list. Exit. */
3358 //////TODO: _exit?
3359 ////            exit(rcode);
3360 ////    }
3361  ret:
3362         G.run_list_level--;
3363 ////    if (!G.run_list_level && G_interactive_fd) {
3364 ////            signal(SIGTSTP, SIG_IGN);
3365 ////            signal(SIGINT, SIG_IGN);
3366 ////    }
3367 #endif
3368         debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
3369 #if ENABLE_HUSH_LOOPS
3370         if (loop_top)
3371                 G.depth_of_loop--;
3372         free(for_list);
3373 #endif
3374 #if ENABLE_HUSH_CASE
3375         free(case_word);
3376 #endif
3377         return rcode;
3378 }
3379
3380 /* Select which version we will use */
3381 static int run_and_free_list(struct pipe *pi)
3382 {
3383         int rcode = 0;
3384         debug_printf_exec("run_and_free_list entered\n");
3385         if (!G.fake_mode) {
3386                 debug_printf_exec(": run_list with %d members\n", pi->num_cmds);
3387                 rcode = run_list(pi);
3388         }
3389         /* free_pipe_list has the side effect of clearing memory.
3390          * In the long run that function can be merged with run_list,
3391          * but doing that now would hobble the debugging effort. */
3392         free_pipe_list(pi, /* indent: */ 0);
3393         debug_printf_exec("run_and_free_list return %d\n", rcode);
3394         return rcode;
3395 }
3396
3397
3398 /* Peek ahead in the in_str to find out if we have a "&n" construct,
3399  * as in "2>&1", that represents duplicating a file descriptor.
3400  * Return either -2 (syntax error), -1 (no &), or the number found.
3401  */
3402 static int redirect_dup_num(struct in_str *input)
3403 {
3404         int ch, d = 0, ok = 0;
3405         ch = i_peek(input);
3406         if (ch != '&') return -1;
3407
3408         i_getch(input);  /* get the & */
3409         ch = i_peek(input);
3410         if (ch == '-') {
3411                 i_getch(input);
3412                 return -3;  /* "-" represents "close me" */
3413         }
3414         while (isdigit(ch)) {
3415                 d = d*10 + (ch-'0');
3416                 ok = 1;
3417                 i_getch(input);
3418                 ch = i_peek(input);
3419         }
3420         if (ok) return d;
3421
3422         bb_error_msg("ambiguous redirect");
3423         return -2;
3424 }
3425
3426 /* The src parameter allows us to peek forward to a possible &n syntax
3427  * for file descriptor duplication, e.g., "2>&1".
3428  * Return code is 0 normally, 1 if a syntax error is detected in src.
3429  * Resource errors (in xmalloc) cause the process to exit */
3430 static int setup_redirect(struct parse_context *ctx,
3431                 int fd,
3432                 redir_type style,
3433                 struct in_str *input)
3434 {
3435         struct command *command = ctx->command;
3436         struct redir_struct *redir;
3437         struct redir_struct **redirp;
3438         int dup_num;
3439
3440         /* Check for a '2>&1' type redirect */
3441         dup_num = redirect_dup_num(input);
3442         if (dup_num == -2)
3443                 return 1;  /* syntax error */
3444
3445         /* Create a new redir_struct and drop it onto the end of the linked list */
3446         redirp = &command->redirects;
3447         while ((redir = *redirp) != NULL) {
3448                 redirp = &(redir->next);
3449         }
3450         *redirp = redir = xzalloc(sizeof(*redir));
3451         /* redir->next = NULL; */
3452         /* redir->rd_filename = NULL; */
3453         redir->rd_type = style;
3454         redir->fd = (fd == -1) ? redir_table[style].default_fd : fd;
3455
3456         debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip);
3457
3458         redir->dup = dup_num;
3459         if (dup_num != -1) {
3460                 /* Erik had a check here that the file descriptor in question
3461                  * is legit; I postpone that to "run time"
3462                  * A "-" representation of "close me" shows up as a -3 here */
3463                 debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup);
3464         } else {
3465                 /* We do _not_ try to open the file that src points to,
3466                  * since we need to return and let src be expanded first.
3467                  * Set ctx->pending_redirect, so we know what to do at the
3468                  * end of the next parsed word. */
3469                 ctx->pending_redirect = redir;
3470         }
3471         return 0;
3472 }
3473
3474
3475 static struct pipe *new_pipe(void)
3476 {
3477         struct pipe *pi;
3478         pi = xzalloc(sizeof(struct pipe));
3479         /*pi->followup = 0; - deliberately invalid value */
3480         /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
3481         return pi;
3482 }
3483
3484 /* Command (member of a pipe) is complete. The only possible error here
3485  * is out of memory, in which case xmalloc exits. */
3486 static int done_command(struct parse_context *ctx)
3487 {
3488         /* The command is really already in the pipe structure, so
3489          * advance the pipe counter and make a new, null command. */
3490         struct pipe *pi = ctx->pipe;
3491         struct command *command = ctx->command;
3492
3493         if (command) {
3494                 if (command->group == NULL
3495                  && command->argv == NULL
3496                  && command->redirects == NULL
3497                 ) {
3498                         debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
3499                         return pi->num_cmds;
3500                 }
3501                 pi->num_cmds++;
3502                 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
3503         } else {
3504                 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
3505         }
3506
3507         /* Only real trickiness here is that the uncommitted
3508          * command structure is not counted in pi->num_cmds. */
3509         pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
3510         command = &pi->cmds[pi->num_cmds];
3511         memset(command, 0, sizeof(*command));
3512
3513         ctx->command = command;
3514         /* but ctx->pipe and ctx->list_head remain unchanged */
3515
3516         return pi->num_cmds; /* used only for 0/nonzero check */
3517 }
3518
3519 static void done_pipe(struct parse_context *ctx, pipe_style type)
3520 {
3521         int not_null;
3522
3523         debug_printf_parse("done_pipe entered, followup %d\n", type);
3524         /* Close previous command */
3525         not_null = done_command(ctx);
3526         ctx->pipe->followup = type;
3527         IF_HAS_KEYWORDS(ctx->pipe->pi_inverted = ctx->ctx_inverted;)
3528         IF_HAS_KEYWORDS(ctx->ctx_inverted = 0;)
3529         IF_HAS_KEYWORDS(ctx->pipe->res_word = ctx->ctx_res_w;)
3530
3531         /* Without this check, even just <enter> on command line generates
3532          * tree of three NOPs (!). Which is harmless but annoying.
3533          * IOW: it is safe to do it unconditionally.
3534          * RES_NONE case is for "for a in; do ..." (empty IN set)
3535          * to work, possibly other cases too. */
3536         if (not_null IF_HAS_KEYWORDS(|| ctx->ctx_res_w != RES_NONE)) {
3537                 struct pipe *new_p;
3538                 debug_printf_parse("done_pipe: adding new pipe: "
3539                                 "not_null:%d ctx->ctx_res_w:%d\n",
3540                                 not_null, ctx->ctx_res_w);
3541                 new_p = new_pipe();
3542                 ctx->pipe->next = new_p;
3543                 ctx->pipe = new_p;
3544                 /* RES_THEN, RES_DO etc are "sticky" -
3545                  * they remain set for commands inside if/while.
3546                  * This is used to control execution.
3547                  * RES_FOR and RES_IN are NOT sticky (needed to support
3548                  * cases where variable or value happens to match a keyword):
3549                  */
3550 #if ENABLE_HUSH_LOOPS
3551                 if (ctx->ctx_res_w == RES_FOR
3552                  || ctx->ctx_res_w == RES_IN)
3553                         ctx->ctx_res_w = RES_NONE;
3554 #endif
3555 #if ENABLE_HUSH_CASE
3556                 if (ctx->ctx_res_w == RES_MATCH)
3557                         ctx->ctx_res_w = RES_CASEI;
3558 #endif
3559                 ctx->command = NULL; /* trick done_command below */
3560                 /* Create the memory for command, roughly:
3561                  * ctx->pipe->cmds = new struct command;
3562                  * ctx->command = &ctx->pipe->cmds[0];
3563                  */
3564                 done_command(ctx);
3565         }
3566         debug_printf_parse("done_pipe return\n");
3567 }
3568
3569 static void initialize_context(struct parse_context *ctx)
3570 {
3571         memset(ctx, 0, sizeof(*ctx));
3572         ctx->pipe = ctx->list_head = new_pipe();
3573         /* Create the memory for command, roughly:
3574          * ctx->pipe->cmds = new struct command;
3575          * ctx->command = &ctx->pipe->cmds[0];
3576          */
3577         done_command(ctx);
3578 }
3579
3580
3581 /* If a reserved word is found and processed, parse context is modified
3582  * and 1 is returned.
3583  */
3584 #if HAS_KEYWORDS
3585 struct reserved_combo {
3586         char literal[6];
3587         unsigned char res;
3588         unsigned char assignment_flag;
3589         int flag;
3590 };
3591 enum {
3592         FLAG_END   = (1 << RES_NONE ),
3593 #if ENABLE_HUSH_IF
3594         FLAG_IF    = (1 << RES_IF   ),
3595         FLAG_THEN  = (1 << RES_THEN ),
3596         FLAG_ELIF  = (1 << RES_ELIF ),
3597         FLAG_ELSE  = (1 << RES_ELSE ),
3598         FLAG_FI    = (1 << RES_FI   ),
3599 #endif
3600 #if ENABLE_HUSH_LOOPS
3601         FLAG_FOR   = (1 << RES_FOR  ),
3602         FLAG_WHILE = (1 << RES_WHILE),
3603         FLAG_UNTIL = (1 << RES_UNTIL),
3604         FLAG_DO    = (1 << RES_DO   ),
3605         FLAG_DONE  = (1 << RES_DONE ),
3606         FLAG_IN    = (1 << RES_IN   ),
3607 #endif
3608 #if ENABLE_HUSH_CASE
3609         FLAG_MATCH = (1 << RES_MATCH),
3610         FLAG_ESAC  = (1 << RES_ESAC ),
3611 #endif
3612         FLAG_START = (1 << RES_XXXX ),
3613 };
3614
3615 static const struct reserved_combo* match_reserved_word(o_string *word)
3616 {
3617         /* Mostly a list of accepted follow-up reserved words.
3618          * FLAG_END means we are done with the sequence, and are ready
3619          * to turn the compound list into a command.
3620          * FLAG_START means the word must start a new compound list.
3621          */
3622         static const struct reserved_combo reserved_list[] = {
3623 #if ENABLE_HUSH_IF
3624                 { "!",     RES_NONE,  NOT_ASSIGNMENT , 0 },
3625                 { "if",    RES_IF,    WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
3626                 { "then",  RES_THEN,  WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
3627                 { "elif",  RES_ELIF,  WORD_IS_KEYWORD, FLAG_THEN },
3628                 { "else",  RES_ELSE,  WORD_IS_KEYWORD, FLAG_FI   },
3629                 { "fi",    RES_FI,    NOT_ASSIGNMENT , FLAG_END  },
3630 #endif
3631 #if ENABLE_HUSH_LOOPS
3632                 { "for",   RES_FOR,   NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
3633                 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
3634                 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
3635                 { "in",    RES_IN,    NOT_ASSIGNMENT , FLAG_DO   },
3636                 { "do",    RES_DO,    WORD_IS_KEYWORD, FLAG_DONE },
3637                 { "done",  RES_DONE,  NOT_ASSIGNMENT , FLAG_END  },
3638 #endif
3639 #if ENABLE_HUSH_CASE
3640                 { "case",  RES_CASE,  NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
3641                 { "esac",  RES_ESAC,  NOT_ASSIGNMENT , FLAG_END  },
3642 #endif
3643         };
3644         const struct reserved_combo *r;
3645
3646         for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
3647                 if (strcmp(word->data, r->literal) == 0)
3648                         return r;
3649         }
3650         return NULL;
3651 }
3652 static int reserved_word(o_string *word, struct parse_context *ctx)
3653 {
3654 #if ENABLE_HUSH_CASE
3655         static const struct reserved_combo reserved_match = {
3656                 "",        RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
3657         };
3658 #endif
3659         const struct reserved_combo *r;
3660
3661         r = match_reserved_word(word);
3662         if (!r)
3663                 return 0;
3664
3665         debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
3666 #if ENABLE_HUSH_CASE
3667         if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE)
3668                 /* "case word IN ..." - IN part starts first match part */
3669                 r = &reserved_match;
3670         else
3671 #endif
3672         if (r->flag == 0) { /* '!' */
3673                 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
3674                         syntax("! ! command");
3675                         IF_HAS_KEYWORDS(ctx->ctx_res_w = RES_SNTX;)
3676                 }
3677                 ctx->ctx_inverted = 1;
3678                 return 1;
3679         }
3680         if (r->flag & FLAG_START) {
3681                 struct parse_context *old;
3682                 old = xmalloc(sizeof(*old));
3683                 debug_printf_parse("push stack %p\n", old);
3684                 *old = *ctx;   /* physical copy */
3685                 initialize_context(ctx);
3686                 ctx->stack = old;
3687         } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
3688                 syntax(word->data);
3689                 ctx->ctx_res_w = RES_SNTX;
3690                 return 1;
3691         }
3692         ctx->ctx_res_w = r->res;
3693         ctx->old_flag = r->flag;
3694         if (ctx->old_flag & FLAG_END) {
3695                 struct parse_context *old;
3696                 done_pipe(ctx, PIPE_SEQ);
3697                 debug_printf_parse("pop stack %p\n", ctx->stack);
3698                 old = ctx->stack;
3699                 old->command->group = ctx->list_head;
3700                 old->command->grp_type = GRP_NORMAL;
3701 #if !BB_MMU
3702                 o_addstr(&old->as_string, ctx->as_string.data);
3703                 o_free_unsafe(&ctx->as_string);
3704                 old->command->group_as_string = xstrdup(old->as_string.data);
3705                 debug_printf_parse("pop, remembering as:'%s'\n",
3706                                 old->command->group_as_string);
3707 #endif
3708                 *ctx = *old;   /* physical copy */
3709                 free(old);
3710         }
3711         word->o_assignment = r->assignment_flag;
3712         return 1;
3713 }
3714 #endif
3715
3716 /* Word is complete, look at it and update parsing context.
3717  * Normal return is 0. Syntax errors return 1.
3718  * Note: on return, word is reset, but not o_free'd!
3719  */
3720 static int done_word(o_string *word, struct parse_context *ctx)
3721 {
3722         struct command *command = ctx->command;
3723
3724         debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
3725         if (word->length == 0 && word->nonnull == 0) {
3726                 debug_printf_parse("done_word return 0: true null, ignored\n");
3727                 return 0;
3728         }
3729         /* If this word wasn't an assignment, next ones definitely
3730          * can't be assignments. Even if they look like ones. */
3731         if (word->o_assignment != DEFINITELY_ASSIGNMENT
3732          && word->o_assignment != WORD_IS_KEYWORD
3733         ) {
3734                 word->o_assignment = NOT_ASSIGNMENT;
3735         } else {
3736                 if (word->o_assignment == DEFINITELY_ASSIGNMENT)
3737                         command->assignment_cnt++;
3738                 word->o_assignment = MAYBE_ASSIGNMENT;
3739         }
3740
3741         if (ctx->pending_redirect) {
3742                 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
3743                  * only if run as "bash", not "sh" */
3744                 ctx->pending_redirect->rd_filename = xstrdup(word->data);
3745                 word->o_assignment = NOT_ASSIGNMENT;
3746                 debug_printf("word stored in rd_filename: '%s'\n", word->data);
3747         } else {
3748                 /* "{ echo foo; } echo bar" - bad */
3749                 /* NB: bash allows e.g.:
3750                  * if true; then { echo foo; } fi
3751                  * while if false; then false; fi do break; done
3752                  * TODO? */
3753                 if (command->group) {
3754                         syntax(word->data);
3755                         debug_printf_parse("done_word return 1: syntax error, "
3756                                         "groups and arglists don't mix\n");
3757                         return 1;
3758                 }
3759 #if HAS_KEYWORDS
3760 #if ENABLE_HUSH_CASE
3761                 if (ctx->ctx_dsemicolon
3762                  && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
3763                 ) {
3764                         /* already done when ctx_dsemicolon was set to 1: */
3765                         /* ctx->ctx_res_w = RES_MATCH; */
3766                         ctx->ctx_dsemicolon = 0;
3767                 } else
3768 #endif
3769                 if (!command->argv /* if it's the first word... */
3770 #if ENABLE_HUSH_LOOPS
3771                  && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
3772                  && ctx->ctx_res_w != RES_IN
3773 #endif
3774                 ) {
3775                         debug_printf_parse(": checking '%s' for reserved-ness\n", word->data);
3776                         if (reserved_word(word, ctx)) {
3777                                 o_reset(word);
3778                                 debug_printf_parse("done_word return %d\n",
3779                                                 (ctx->ctx_res_w == RES_SNTX));
3780                                 return (ctx->ctx_res_w == RES_SNTX);
3781                         }
3782                 }
3783 #endif
3784                 if (word->nonnull /* word had "xx" or 'xx' at least as part of it. */
3785                  /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
3786                  && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
3787                  /* (otherwise it's known to be not empty and is already safe) */
3788                 ) {
3789                         /* exclude "$@" - it can expand to no word despite "" */
3790                         char *p = word->data;
3791                         while (p[0] == SPECIAL_VAR_SYMBOL
3792                             && (p[1] & 0x7f) == '@'
3793                             && p[2] == SPECIAL_VAR_SYMBOL
3794                         ) {
3795                                 p += 3;
3796                         }
3797                         if (p == word->data || p[0] != '\0') {
3798                                 /* saw no "$@", or not only "$@" but some
3799                                  * real text is there too */
3800                                 /* insert "empty variable" reference, this makes
3801                                  * e.g. "", $empty"" etc to not disappear */
3802                                 o_addchr(word, SPECIAL_VAR_SYMBOL);
3803                                 o_addchr(word, SPECIAL_VAR_SYMBOL);
3804                         }
3805                 }
3806                 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
3807                 debug_print_strings("word appended to argv", command->argv);
3808         }
3809
3810         o_reset(word);
3811         ctx->pending_redirect = NULL;
3812
3813 #if ENABLE_HUSH_LOOPS
3814         /* Force FOR to have just one word (variable name) */
3815         /* NB: basically, this makes hush see "for v in ..." syntax as if
3816          * as it is "for v; in ...". FOR and IN become two pipe structs
3817          * in parse tree. */
3818         if (ctx->ctx_res_w == RES_FOR) {
3819 //TODO: check that command->argv[0] is a valid variable name!
3820                 done_pipe(ctx, PIPE_SEQ);
3821         }
3822 #endif
3823 #if ENABLE_HUSH_CASE
3824         /* Force CASE to have just one word */
3825         if (ctx->ctx_res_w == RES_CASE) {
3826                 done_pipe(ctx, PIPE_SEQ);
3827         }
3828 #endif
3829         debug_printf_parse("done_word return 0\n");
3830         return 0;
3831 }
3832
3833 /* If a redirect is immediately preceded by a number, that number is
3834  * supposed to tell which file descriptor to redirect.  This routine
3835  * looks for such preceding numbers.  In an ideal world this routine
3836  * needs to handle all the following classes of redirects...
3837  *     echo 2>foo     # redirects fd  2 to file "foo", nothing passed to echo
3838  *     echo 49>foo    # redirects fd 49 to file "foo", nothing passed to echo
3839  *     echo -2>foo    # redirects fd  1 to file "foo",    "-2" passed to echo
3840  *     echo 49x>foo   # redirects fd  1 to file "foo",   "49x" passed to echo
3841  * A -1 output from this program means no valid number was found, so the
3842  * caller should use the appropriate default for this redirection.
3843  */
3844 static int redirect_opt_num(o_string *o)
3845 {
3846         int num;
3847
3848         if (o->length == 0)
3849                 return -1;
3850         for (num = 0; num < o->length; num++) {
3851                 if (!isdigit(o->data[num])) {
3852                         return -1;
3853                 }
3854         }
3855         num = atoi(o->data);
3856         o_reset(o);
3857         return num;
3858 }
3859
3860 #if BB_MMU
3861 #define parse_stream(pstring, input, end_trigger) \
3862         parse_stream(input, end_trigger)
3863 #endif
3864 static struct pipe *parse_stream(char **pstring,
3865                 struct in_str *input,
3866                 int end_trigger);
3867 static void parse_and_run_string(const char *s);
3868
3869 #if ENABLE_HUSH_TICK
3870 static FILE *generate_stream_from_string(const char *s)
3871 {
3872         FILE *pf;
3873         int pid, channel[2];
3874
3875         xpipe(channel);
3876         pid = BB_MMU ? fork() : vfork();
3877         if (pid < 0)
3878                 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
3879
3880         if (pid == 0) { /* child */
3881 #if ENABLE_HUSH_JOB
3882                 die_sleep = 0; /* do not restore tty pgrp on xfunc death */
3883 #endif
3884                 /* Process substitution is not considered to be usual
3885                  * 'command execution'.
3886                  * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
3887                  */
3888                 bb_signals(0
3889                         + (1 << SIGTSTP)
3890                         + (1 << SIGTTIN)
3891                         + (1 << SIGTTOU)
3892                         , SIG_IGN);
3893                 close(channel[0]); /* NB: close _first_, then move fd! */
3894                 xmove_fd(channel[1], 1);
3895                 /* Prevent it from trying to handle ctrl-z etc */
3896                 USE_HUSH_JOB(G.run_list_level = 1;)
3897 #if BB_MMU
3898                 reset_traps_to_defaults();
3899                 parse_and_run_string(s);
3900                 _exit(G.last_return_code);
3901 #else
3902         /* We re-execute after vfork on NOMMU. This makes this script safe:
3903          * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
3904          * huge=`cat BIG` # was blocking here forever
3905          * echo OK
3906          */
3907                 re_execute_shell(s);
3908 #endif
3909         }
3910
3911         /* parent */
3912 #if ENABLE_HUSH_JOB
3913         die_sleep = -1; /* restore tty pgrp on xfunc death */
3914 #endif
3915         clean_up_after_re_execute();
3916         close(channel[1]);
3917         pf = fdopen(channel[0], "r");
3918         return pf;
3919 }
3920
3921 /* Return code is exit status of the process that is run. */
3922 static int process_command_subs(o_string *dest, const char *s)
3923 {
3924         FILE *pf;
3925         struct in_str pipe_str;
3926         int ch, eol_cnt;
3927
3928         pf = generate_stream_from_string(s);
3929         if (pf == NULL)
3930                 return 1;
3931         close_on_exec_on(fileno(pf));
3932
3933         /* Now send results of command back into original context */
3934         setup_file_in_str(&pipe_str, pf);
3935         eol_cnt = 0;
3936         while ((ch = i_getch(&pipe_str)) != EOF) {
3937                 if (ch == '\n') {
3938                         eol_cnt++;
3939                         continue;
3940                 }
3941                 while (eol_cnt) {
3942                         o_addchr(dest, '\n');
3943                         eol_cnt--;
3944                 }
3945                 o_addQchr(dest, ch);
3946         }
3947
3948         debug_printf("done reading from pipe, pclose()ing\n");
3949         /* Note: we got EOF, and we just close the read end of the pipe.
3950          * We do not wait for the `cmd` child to terminate. bash and ash do.
3951          * Try these:
3952          * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec
3953          * `false`; echo $? - bash outputs "1"
3954          */
3955         fclose(pf);
3956         debug_printf("closed FILE from child. return 0\n");
3957         return 0;
3958 }
3959 #endif
3960
3961 static int parse_group(o_string *dest, struct parse_context *ctx,
3962         struct in_str *input, int ch)
3963 {
3964         /* dest contains characters seen prior to ( or {.
3965          * Typically it's empty, but for function defs,
3966          * it contains function name (without '()'). */
3967         struct pipe *pipe_list;
3968         int endch;
3969         struct command *command = ctx->command;
3970
3971         debug_printf_parse("parse_group entered\n");
3972 #if ENABLE_HUSH_FUNCTIONS
3973         if (ch == 'F') { /* function definition? */
3974                 bb_error_msg("aha '%s' is a function, parsing it...", dest->data);
3975                 //command->fname = dest->data;
3976                 command->grp_type = GRP_FUNCTION;
3977 //TODO: review every o_reset() location... do they handle all o_string fields correctly?
3978                 memset(dest, 0, sizeof(*dest));
3979         }
3980 #endif
3981         if (command->argv /* word [word](... */
3982          || dest->length /* word(... */
3983          || dest->nonnull /* ""(... */
3984         ) {
3985                 syntax(NULL);
3986                 debug_printf_parse("parse_group return 1: "
3987                         "syntax error, groups and arglists don't mix\n");
3988                 return 1;
3989         }
3990         endch = '}';
3991         if (ch == '(') {
3992                 endch = ')';
3993                 command->grp_type = GRP_SUBSHELL;
3994         }
3995         {
3996 #if !BB_MMU
3997                 char *as_string = NULL;
3998 #endif
3999                 pipe_list = parse_stream(&as_string, input, endch);
4000 #if !BB_MMU
4001                 if (as_string)
4002                         o_addstr(&ctx->as_string, as_string);
4003 #endif
4004                 /* empty ()/{} or parse error? */
4005                 if (!pipe_list || pipe_list == ERR_PTR) {
4006 #if !BB_MMU
4007                         free(as_string);
4008 #endif
4009                         syntax(NULL);
4010                         debug_printf_parse("parse_group return 1: "
4011                                 "parse_stream returned %p\n", pipe_list);
4012                         return 1;
4013                 }
4014                 command->group = pipe_list;
4015 #if !BB_MMU
4016                 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
4017                 command->group_as_string = as_string;
4018                 debug_printf_parse("end of group, remembering as:'%s'\n",
4019                                 command->group_as_string);
4020 #endif
4021         }
4022         debug_printf_parse("parse_group return 0\n");
4023         return 0;
4024         /* command remains "open", available for possible redirects */
4025 }
4026
4027 #if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT
4028 /* Subroutines for copying $(...) and `...` things */
4029 static void add_till_backquote(o_string *dest, struct in_str *input);
4030 /* '...' */
4031 static void add_till_single_quote(o_string *dest, struct in_str *input)
4032 {
4033         while (1) {
4034                 int ch = i_getch(input);
4035                 if (ch == EOF)
4036                         break;
4037                 if (ch == '\'')
4038                         break;
4039                 o_addchr(dest, ch);
4040         }
4041 }
4042 /* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
4043 static void add_till_double_quote(o_string *dest, struct in_str *input)
4044 {
4045         while (1) {
4046                 int ch = i_getch(input);
4047                 if (ch == '"')
4048                         break;
4049                 if (ch == '\\') {  /* \x. Copy both chars. */
4050                         o_addchr(dest, ch);
4051                         ch = i_getch(input);
4052                 }
4053                 if (ch == EOF)
4054                         break;
4055                 o_addchr(dest, ch);
4056                 if (ch == '`') {
4057                         add_till_backquote(dest, input);
4058                         o_addchr(dest, ch);
4059                         continue;
4060                 }
4061                 //if (ch == '$') ...
4062         }
4063 }
4064 /* Process `cmd` - copy contents until "`" is seen. Complicated by
4065  * \` quoting.
4066  * "Within the backquoted style of command substitution, backslash
4067  * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
4068  * The search for the matching backquote shall be satisfied by the first
4069  * backquote found without a preceding backslash; during this search,
4070  * if a non-escaped backquote is encountered within a shell comment,
4071  * a here-document, an embedded command substitution of the $(command)
4072  * form, or a quoted string, undefined results occur. A single-quoted
4073  * or double-quoted string that begins, but does not end, within the
4074  * "`...`" sequence produces undefined results."
4075  * Example                               Output
4076  * echo `echo '\'TEST\`echo ZZ\`BEST`    \TESTZZBEST
4077  */
4078 static void add_till_backquote(o_string *dest, struct in_str *input)
4079 {
4080         while (1) {
4081                 int ch = i_getch(input);
4082                 if (ch == '`')
4083                         break;
4084                 if (ch == '\\') {  /* \x. Copy both chars unless it is \` */
4085                         int ch2 = i_getch(input);
4086                         if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
4087                                 o_addchr(dest, ch);
4088                         ch = ch2;
4089                 }
4090                 if (ch == EOF)
4091                         break;
4092                 o_addchr(dest, ch);
4093         }
4094 }
4095 /* Process $(cmd) - copy contents until ")" is seen. Complicated by
4096  * quoting and nested ()s.
4097  * "With the $(command) style of command substitution, all characters
4098  * following the open parenthesis to the matching closing parenthesis
4099  * constitute the command. Any valid shell script can be used for command,
4100  * except a script consisting solely of redirections which produces
4101  * unspecified results."
4102  * Example                              Output
4103  * echo $(echo '(TEST)' BEST)           (TEST) BEST
4104  * echo $(echo 'TEST)' BEST)            TEST) BEST
4105  * echo $(echo \(\(TEST\) BEST)         ((TEST) BEST
4106  */
4107 static void add_till_closing_paren(o_string *dest, struct in_str *input, bool dbl)
4108 {
4109         int count = 0;
4110         while (1) {
4111                 int ch = i_getch(input);
4112                 if (ch == EOF)
4113                         break;
4114                 if (ch == '(')
4115                         count++;
4116                 if (ch == ')') {
4117                         if (--count < 0) {
4118                                 if (!dbl)
4119                                         break;
4120                                 if (i_peek(input) == ')') {
4121                                         i_getch(input);
4122                                         break;
4123                                 }
4124                         }
4125                 }
4126                 o_addchr(dest, ch);
4127                 if (ch == '\'') {
4128                         add_till_single_quote(dest, input);
4129                         o_addchr(dest, ch);
4130                         continue;
4131                 }
4132                 if (ch == '"') {
4133                         add_till_double_quote(dest, input);
4134                         o_addchr(dest, ch);
4135                         continue;
4136                 }
4137                 if (ch == '\\') { /* \x. Copy verbatim. Important for  \(, \) */
4138                         ch = i_getch(input);
4139                         if (ch == EOF)
4140                                 break;
4141                         o_addchr(dest, ch);
4142                         continue;
4143                 }
4144         }
4145 }
4146 #endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */
4147
4148 /* Return code: 0 for OK, 1 for syntax error */
4149 #if BB_MMU
4150 #define handle_dollar(as_string, dest, input) \
4151         handle_dollar(dest, input)
4152 #endif
4153 static int handle_dollar(o_string *as_string,
4154                 o_string *dest,
4155                 struct in_str *input)
4156 {
4157         int expansion;
4158         int ch = i_peek(input);  /* first character after the $ */
4159         unsigned char quote_mask = dest->o_escape ? 0x80 : 0;
4160
4161         debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
4162         if (isalpha(ch)) {
4163                 ch = i_getch(input);
4164 #if !BB_MMU
4165                 if (as_string) o_addchr(as_string, ch);
4166 #endif
4167  make_var:
4168                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4169                 while (1) {
4170                         debug_printf_parse(": '%c'\n", ch);
4171                         o_addchr(dest, ch | quote_mask);
4172                         quote_mask = 0;
4173                         ch = i_peek(input);
4174                         if (!isalnum(ch) && ch != '_')
4175                                 break;
4176                         ch = i_getch(input);
4177 #if !BB_MMU
4178                         if (as_string) o_addchr(as_string, ch);
4179 #endif
4180                 }
4181                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4182         } else if (isdigit(ch)) {
4183  make_one_char_var:
4184                 ch = i_getch(input);
4185 #if !BB_MMU
4186                 if (as_string) o_addchr(as_string, ch);
4187 #endif
4188                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4189                 debug_printf_parse(": '%c'\n", ch);
4190                 o_addchr(dest, ch | quote_mask);
4191                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4192         } else switch (ch) {
4193         case '$': /* pid */
4194         case '!': /* last bg pid */
4195         case '?': /* last exit code */
4196         case '#': /* number of args */
4197         case '*': /* args */
4198         case '@': /* args */
4199                 goto make_one_char_var;
4200         case '{': {
4201                 bool first_char, all_digits;
4202
4203                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4204                 ch = i_getch(input);
4205 #if !BB_MMU
4206                 if (as_string) o_addchr(as_string, ch);
4207 #endif
4208                 /* XXX maybe someone will try to escape the '}' */
4209                 expansion = 0;
4210                 first_char = true;
4211                 all_digits = false;
4212                 while (1) {
4213                         ch = i_getch(input);
4214 #if !BB_MMU
4215                         if (as_string) o_addchr(as_string, ch);
4216 #endif
4217                         if (ch == '}')
4218                                 break;
4219
4220                         if (first_char) {
4221                                 if (ch == '#')
4222                                         /* ${#var}: length of var contents */
4223                                         goto char_ok;
4224                                 else if (isdigit(ch)) {
4225                                         all_digits = true;
4226                                         goto char_ok;
4227                                 }
4228                         }
4229
4230                         if (expansion < 2
4231                          && (  (all_digits && !isdigit(ch))
4232                             || (!all_digits && !isalnum(ch) && ch != '_')
4233                             )
4234                         ) {
4235                                 /* handle parameter expansions
4236                                  * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
4237                                  */
4238                                 if (first_char)
4239                                         goto case_default;
4240                                 switch (ch) {
4241                                 case ':': /* null modifier */
4242                                         if (expansion == 0) {
4243                                                 debug_printf_parse(": null modifier\n");
4244                                                 ++expansion;
4245                                                 break;
4246                                         }
4247                                         goto case_default;
4248 #if 0 /* not implemented yet :( */
4249                                 case '#': /* remove prefix */
4250                                 case '%': /* remove suffix */
4251                                         if (expansion == 0) {
4252                                                 debug_printf_parse(": remove suffix/prefix\n");
4253                                                 expansion = 2;
4254                                                 break;
4255                                         }
4256                                         goto case_default;
4257 #endif
4258                                 case '-': /* default value */
4259                                 case '=': /* assign default */
4260                                 case '+': /* alternative */
4261                                 case '?': /* error indicate */
4262                                         debug_printf_parse(": parameter expansion\n");
4263                                         expansion = 2;
4264                                         break;
4265                                 default:
4266                                 case_default:
4267                                         syntax("unterminated ${name}");
4268                                         debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
4269                                         return 1;
4270                                 }
4271                         }
4272  char_ok:
4273                         debug_printf_parse(": '%c'\n", ch);
4274                         o_addchr(dest, ch | quote_mask);
4275                         quote_mask = 0;
4276                         first_char = false;
4277                 }
4278                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4279                 break;
4280         }
4281 #if (ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK)
4282         case '(': {
4283 # if !BB_MMU
4284                 int pos;
4285 # endif
4286                 ch = i_getch(input);
4287 # if !BB_MMU
4288                 if (as_string) o_addchr(as_string, ch);
4289 # endif
4290 # if ENABLE_SH_MATH_SUPPORT
4291                 if (i_peek(input) == '(') {
4292                         ch = i_getch(input);
4293 #  if !BB_MMU
4294                         if (as_string) o_addchr(as_string, ch);
4295 #  endif
4296                         o_addchr(dest, SPECIAL_VAR_SYMBOL);
4297                         o_addchr(dest, /*quote_mask |*/ '+');
4298 #  if !BB_MMU
4299                         pos = dest->length;
4300 #  endif
4301                         add_till_closing_paren(dest, input, true);
4302 #  if !BB_MMU
4303                         if (as_string) {
4304                                 o_addstr(as_string, dest->data + pos);
4305                                 o_addchr(as_string, ')');
4306                                 o_addchr(as_string, ')');
4307                         }
4308 #  endif
4309                         o_addchr(dest, SPECIAL_VAR_SYMBOL);
4310                         break;
4311                 }
4312 # endif
4313 # if ENABLE_HUSH_TICK
4314                 //int pos = dest->length;
4315                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4316                 o_addchr(dest, quote_mask | '`');
4317 #  if !BB_MMU
4318                 pos = dest->length;
4319 #  endif
4320                 add_till_closing_paren(dest, input, false);
4321 #  if !BB_MMU
4322                 if (as_string) {
4323                         o_addstr(as_string, dest->data + pos);
4324                         o_addchr(as_string, '`');
4325                 }
4326 #  endif
4327                 //debug_printf_subst("SUBST RES2 '%s'\n", dest->data + pos);
4328                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4329 # endif
4330                 break;
4331         }
4332 #endif
4333         case '_':
4334                 ch = i_getch(input);
4335 #if !BB_MMU
4336                 if (as_string) o_addchr(as_string, ch);
4337 #endif
4338                 ch = i_peek(input);
4339                 if (isalnum(ch)) { /* it's $_name or $_123 */
4340                         ch = '_';
4341                         goto make_var;
4342                 }
4343                 /* else: it's $_ */
4344         /* TODO: */
4345         /* $_ Shell or shell script name; or last cmd name */
4346         /* $- Option flags set by set builtin or shell options (-i etc) */
4347         default:
4348                 o_addQchr(dest, '$');
4349         }
4350         debug_printf_parse("handle_dollar return 0\n");
4351         return 0;
4352 }
4353
4354 #if BB_MMU
4355 #define parse_stream_dquoted(as_string, dest, input, dquote_end) \
4356         parse_stream_dquoted(dest, input, dquote_end)
4357 #endif
4358 static int parse_stream_dquoted(o_string *as_string,
4359                 o_string *dest,
4360                 struct in_str *input,
4361                 int dquote_end)
4362 {
4363         int ch;
4364         int next;
4365
4366  again:
4367         ch = i_getch(input);
4368 #if !BB_MMU
4369         if (as_string && ch != EOF)
4370                 o_addchr(as_string, ch);
4371 #endif
4372         if (ch == dquote_end) { /* may be only '"' or EOF */
4373                 dest->nonnull = 1;
4374                 if (dest->o_assignment == NOT_ASSIGNMENT)
4375                         dest->o_escape ^= 1;
4376                 debug_printf_parse("parse_stream_dquoted return 0\n");
4377                 return 0;
4378         }
4379         if (ch == EOF) {
4380                 syntax("unterminated \"");
4381                 debug_printf_parse("parse_stream_dquoted return 1: unterminated \"\n");
4382                 return 1;
4383         }
4384         next = '\0';
4385         if (ch != '\n') {
4386                 next = i_peek(input);
4387         }
4388         debug_printf_parse(": ch=%c (%d) escape=%d\n",
4389                                         ch, ch, dest->o_escape);
4390         if (ch == '\\') {
4391                 if (next == EOF) {
4392                         syntax("\\<eof>");
4393                         debug_printf_parse("parse_stream_dquoted return 1: \\<eof>\n");
4394                         return 1;
4395                 }
4396                 /* bash:
4397                  * "The backslash retains its special meaning [in "..."]
4398                  * only when followed by one of the following characters:
4399                  * $, `, ", \, or <newline>.  A double quote may be quoted
4400                  * within double quotes by preceding it with a backslash.
4401                  * If enabled, history expansion will be performed unless
4402                  * an ! appearing in double quotes is escaped using
4403                  * a backslash. The backslash preceding the ! is not removed."
4404                  */
4405                 if (strchr("$`\"\\", next) != NULL) {
4406                         o_addqchr(dest, i_getch(input));
4407                 } else {
4408                         o_addqchr(dest, '\\');
4409                 }
4410                 goto again;
4411         }
4412         if (ch == '$') {
4413                 if (handle_dollar(as_string, dest, input) != 0) {
4414                         debug_printf_parse("parse_stream_dquoted return 1: "
4415                                         "handle_dollar returned non-0\n");
4416                         return 1;
4417                 }
4418                 goto again;
4419         }
4420 #if ENABLE_HUSH_TICK
4421         if (ch == '`') {
4422                 //int pos = dest->length;
4423                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4424                 o_addchr(dest, 0x80 | '`');
4425                 add_till_backquote(dest, input);
4426                 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4427                 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
4428                 goto again;
4429         }
4430 #endif
4431         o_addQchr(dest, ch);
4432         if (ch == '='
4433          && (dest->o_assignment == MAYBE_ASSIGNMENT
4434             || dest->o_assignment == WORD_IS_KEYWORD)
4435          && is_assignment(dest->data)
4436         ) {
4437                 dest->o_assignment = DEFINITELY_ASSIGNMENT;
4438         }
4439         goto again;
4440 }
4441
4442 /*
4443  * Scan input until EOF or end_trigger char.
4444  * Return a list of pipes to execute, or NULL on EOF
4445  * or if end_trigger character is met.
4446  * On syntax error, exit is shell is not interactive,
4447  * reset parsing machinery and start parsing anew,
4448  * or return ERR_PTR.
4449  */
4450 static struct pipe *parse_stream(char **pstring,
4451                 struct in_str *input,
4452                 int end_trigger)
4453 {
4454         struct parse_context ctx;
4455         o_string dest = NULL_O_STRING;
4456         int is_in_dquote;
4457
4458         /* Double-quote state is handled in the state variable is_in_dquote.
4459          * A single-quote triggers a bypass of the main loop until its mate is
4460          * found.  When recursing, quote state is passed in via dest->o_escape.
4461          */
4462         debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
4463                         end_trigger ? : 'X');
4464
4465         G.ifs = get_local_var_value("IFS");
4466         if (G.ifs == NULL)
4467                 G.ifs = " \t\n";
4468
4469  reset:
4470 #if ENABLE_HUSH_INTERACTIVE
4471         input->promptmode = 0; /* PS1 */
4472 #endif
4473         /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */
4474         initialize_context(&ctx);
4475         is_in_dquote = 0;
4476         while (1) {
4477                 const char *is_ifs;
4478                 const char *is_special;
4479                 int ch;
4480                 int next;
4481                 int redir_fd;
4482                 redir_type redir_style;
4483
4484                 if (is_in_dquote) {
4485                         if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) {
4486                                 goto parse_error;
4487                         }
4488                         /* We reached closing '"' */
4489                         is_in_dquote = 0;
4490                 }
4491                 ch = i_getch(input);
4492                 debug_printf_parse(": ch=%c (%d) escape=%d\n",
4493                                                 ch, ch, dest.o_escape);
4494                 if (ch == EOF) {
4495                         struct pipe *pi;
4496                         if (done_word(&dest, &ctx)) {
4497                                 goto parse_error;
4498                         }
4499                         o_free(&dest);
4500                         done_pipe(&ctx, PIPE_SEQ);
4501                         pi = ctx.list_head;
4502                         /* If we got nothing... */
4503 // TODO: test script consisting of just "&"
4504                         if (pi->num_cmds == 0
4505                             IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
4506                         ) {
4507                                 free_pipe_list(pi, 0);
4508                                 pi = NULL;
4509                         }
4510                         debug_printf_parse("parse_stream return %p\n", pi);
4511 #if !BB_MMU
4512                         debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
4513                         if (pstring)
4514                                 *pstring = ctx.as_string.data;
4515                         else
4516                                 o_free_unsafe(&ctx.as_string);
4517 #endif
4518                         return pi;
4519                 }
4520 #if !BB_MMU
4521                 o_addchr(&ctx.as_string, ch);
4522 #endif
4523                 is_ifs = strchr(G.ifs, ch);
4524                 is_special = strchr("<>;&|(){}#'" /* special outside of "str" */
4525                                 "\\$\"" USE_HUSH_TICK("`") /* always special */
4526                                 , ch);
4527
4528                 if (!is_special && !is_ifs) { /* ordinary char */
4529                         o_addQchr(&dest, ch);
4530                         if ((dest.o_assignment == MAYBE_ASSIGNMENT
4531                             || dest.o_assignment == WORD_IS_KEYWORD)
4532                          && ch == '='
4533                          && is_assignment(dest.data)
4534                         ) {
4535                                 dest.o_assignment = DEFINITELY_ASSIGNMENT;
4536                         }
4537                         continue;
4538                 }
4539
4540                 if (is_ifs) {
4541                         if (done_word(&dest, &ctx)) {
4542                                 goto parse_error;
4543                         }
4544                         if (ch == '\n') {
4545 #if ENABLE_HUSH_CASE
4546                                 /* "case ... in <newline> word) ..." -
4547                                  * newlines are ignored (but ';' wouldn't be) */
4548                                 if (ctx.command->argv == NULL
4549                                  && ctx.ctx_res_w == RES_MATCH
4550                                 ) {
4551                                         continue;
4552                                 }
4553 #endif
4554                                 /* Treat newline as a command separator. */
4555                                 done_pipe(&ctx, PIPE_SEQ);
4556                                 dest.o_assignment = MAYBE_ASSIGNMENT;
4557                                 ch = ';';
4558                                 /* note: if (is_ifs) continue;
4559                                  * will still trigger for us */
4560                         }
4561                 }
4562                 if (end_trigger && end_trigger == ch) {
4563 //TODO: disallow "{ cmd }" without semicolon
4564                         if (done_word(&dest, &ctx)) {
4565                                 goto parse_error;
4566                         }
4567                         done_pipe(&ctx, PIPE_SEQ);
4568                         dest.o_assignment = MAYBE_ASSIGNMENT;
4569                         /* Do we sit outside of any if's, loops or case's? */
4570                         if (!HAS_KEYWORDS
4571                          IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
4572                         ) {
4573                                 debug_printf_parse("parse_stream return %p: "
4574                                                 "end_trigger char found\n",
4575                                                 ctx.list_head);
4576                                 o_free(&dest);
4577 #if !BB_MMU
4578                                 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
4579                                 if (pstring)
4580                                         *pstring = ctx.as_string.data;
4581                                 else
4582                                         o_free_unsafe(&ctx.as_string);
4583 #endif
4584                                 return ctx.list_head;
4585                         }
4586                 }
4587                 if (is_ifs)
4588                         continue;
4589
4590                 if (dest.o_assignment == MAYBE_ASSIGNMENT) {
4591                         /* ch is a special char and thus this word
4592                          * cannot be an assignment */
4593                         dest.o_assignment = NOT_ASSIGNMENT;
4594                 }
4595
4596                 next = '\0';
4597                 if (ch != '\n') {
4598                         next = i_peek(input);
4599                 }
4600
4601                 switch (ch) {
4602                 case '#':
4603                         if (dest.length == 0) {
4604                                 while (1) {
4605                                         ch = i_peek(input);
4606                                         if (ch == EOF || ch == '\n')
4607                                                 break;
4608                                         i_getch(input);
4609                                         /* note: we do not add it to &ctx.as_string */
4610                                 }
4611 #if !BB_MMU
4612 //TODO: go back one char?
4613                                 o_addchr(&ctx.as_string, '\n');
4614 #endif
4615                         } else {
4616                                 o_addQchr(&dest, ch);
4617                         }
4618                         break;
4619                 case '\\':
4620                         if (next == EOF) {
4621                                 syntax("\\<eof>");
4622                                 goto parse_error;
4623                         }
4624                         o_addchr(&dest, '\\');
4625                         ch = i_getch(input);
4626                         o_addchr(&dest, ch);
4627 #if !BB_MMU
4628                         o_addchr(&ctx.as_string, ch);
4629 #endif
4630                         break;
4631                 case '$':
4632                         if (handle_dollar(&ctx.as_string, &dest, input) != 0) {
4633                                 debug_printf_parse("parse_stream parse error: "
4634                                         "handle_dollar returned non-0\n");
4635                                 goto parse_error;
4636                         }
4637                         break;
4638                 case '\'':
4639                         dest.nonnull = 1;
4640                         while (1) {
4641                                 ch = i_getch(input);
4642                                 if (ch == EOF) {
4643                                         syntax("unterminated '");
4644                                         goto parse_error;
4645                                 }
4646 #if !BB_MMU
4647                                 o_addchr(&ctx.as_string, ch);
4648 #endif
4649                                 if (ch == '\'')
4650                                         break;
4651                                 if (dest.o_assignment == NOT_ASSIGNMENT)
4652                                         o_addqchr(&dest, ch);
4653                                 else
4654                                         o_addchr(&dest, ch);
4655                         }
4656                         break;
4657                 case '"':
4658                         dest.nonnull = 1;
4659                         is_in_dquote ^= 1; /* invert */
4660                         if (dest.o_assignment == NOT_ASSIGNMENT)
4661                                 dest.o_escape ^= 1;
4662                         break;
4663 #if ENABLE_HUSH_TICK
4664                 case '`': {
4665                         //int pos = dest.length;
4666                         o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4667                         o_addchr(&dest, '`');
4668                         add_till_backquote(&dest, input);
4669                         o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4670                         //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
4671                         break;
4672                 }
4673 #endif
4674                 case '>':
4675                         redir_fd = redirect_opt_num(&dest);
4676                         if (done_word(&dest, &ctx)) {
4677                                 goto parse_error;
4678                         }
4679                         redir_style = REDIRECT_OVERWRITE;
4680                         if (next == '>') {
4681                                 redir_style = REDIRECT_APPEND;
4682                                 ch = i_getch(input);
4683 #if !BB_MMU
4684                                 o_addchr(&ctx.as_string, ch);
4685 #endif
4686                         }
4687 #if 0
4688                         else if (next == '(') {
4689                                 syntax(">(process) not supported");
4690                                 goto parse_error;
4691                         }
4692 #endif
4693                         setup_redirect(&ctx, redir_fd, redir_style, input);
4694                         break;
4695                 case '<':
4696                         redir_fd = redirect_opt_num(&dest);
4697                         if (done_word(&dest, &ctx)) {
4698                                 goto parse_error;
4699                         }
4700                         redir_style = REDIRECT_INPUT;
4701                         if (next == '<') {
4702                                 redir_style = REDIRECT_HEREIS;
4703                                 ch = i_getch(input);
4704 #if !BB_MMU
4705                                 o_addchr(&ctx.as_string, ch);
4706 #endif
4707                         } else if (next == '>') {
4708                                 redir_style = REDIRECT_IO;
4709                                 ch = i_getch(input);
4710 #if !BB_MMU
4711                                 o_addchr(&ctx.as_string, ch);
4712 #endif
4713                         }
4714 #if 0
4715                         else if (next == '(') {
4716                                 syntax("<(process) not supported");
4717                                 goto parse_error;
4718                         }
4719 #endif
4720                         setup_redirect(&ctx, redir_fd, redir_style, input);
4721                         break;
4722                 case ';':
4723 #if ENABLE_HUSH_CASE
4724  case_semi:
4725 #endif
4726                         if (done_word(&dest, &ctx)) {
4727                                 goto parse_error;
4728                         }
4729                         done_pipe(&ctx, PIPE_SEQ);
4730 #if ENABLE_HUSH_CASE
4731                         /* Eat multiple semicolons, detect
4732                          * whether it means something special */
4733                         while (1) {
4734                                 ch = i_peek(input);
4735                                 if (ch != ';')
4736                                         break;
4737                                 ch = i_getch(input);
4738 #if !BB_MMU
4739                                 o_addchr(&ctx.as_string, ch);
4740 #endif
4741                                 if (ctx.ctx_res_w == RES_CASEI) {
4742                                         ctx.ctx_dsemicolon = 1;
4743                                         ctx.ctx_res_w = RES_MATCH;
4744                                         break;
4745                                 }
4746                         }
4747 #endif
4748  new_cmd:
4749                         /* We just finished a cmd. New one may start
4750                          * with an assignment */
4751                         dest.o_assignment = MAYBE_ASSIGNMENT;
4752                         break;
4753                 case '&':
4754                         if (done_word(&dest, &ctx)) {
4755                                 goto parse_error;
4756                         }
4757                         if (next == '&') {
4758                                 ch = i_getch(input);
4759 #if !BB_MMU
4760                                 o_addchr(&ctx.as_string, ch);
4761 #endif
4762                                 done_pipe(&ctx, PIPE_AND);
4763                         } else {
4764                                 done_pipe(&ctx, PIPE_BG);
4765                         }
4766                         goto new_cmd;
4767                 case '|':
4768                         if (done_word(&dest, &ctx)) {
4769                                 goto parse_error;
4770                         }
4771 #if ENABLE_HUSH_CASE
4772                         if (ctx.ctx_res_w == RES_MATCH)
4773                                 break; /* we are in case's "word | word)" */
4774 #endif
4775                         if (next == '|') { /* || */
4776                                 ch = i_getch(input);
4777 #if !BB_MMU
4778                                 o_addchr(&ctx.as_string, ch);
4779 #endif
4780                                 done_pipe(&ctx, PIPE_OR);
4781                         } else {
4782                                 /* we could pick up a file descriptor choice here
4783                                  * with redirect_opt_num(), but bash doesn't do it.
4784                                  * "echo foo 2| cat" yields "foo 2". */
4785                                 done_command(&ctx);
4786                         }
4787                         goto new_cmd;
4788                 case '(':
4789 #if ENABLE_HUSH_CASE
4790                         /* "case... in [(]word)..." - skip '(' */
4791                         if (ctx.ctx_res_w == RES_MATCH
4792                          && ctx.command->argv == NULL /* not (word|(... */
4793                          && dest.length == 0 /* not word(... */
4794                          && dest.nonnull == 0 /* not ""(... */
4795                         ) {
4796                                 continue;
4797                         }
4798 #endif
4799 #if ENABLE_HUSH_FUNCTIONS
4800                         if (dest.length != 0 /* not just () but word() */
4801                          && dest.nonnull == 0 /* not a"b"c() */
4802                          && ctx.command->argv == NULL /* it's the first word */
4803 //TODO: "func ( ) {...}" - note spaces - is valid format too in bash
4804                          && i_peek(input) == ')'
4805                          && !match_reserved_word(&dest)
4806                         ) {
4807                                 bb_error_msg("seems like a function definition");
4808                                 i_getch(input);
4809 //if !BB_MMU o_addchr(&ctx.as_string...
4810                                 do {
4811 //TODO: do it properly.
4812                                         ch = i_getch(input);
4813                                 } while (ch == ' ' || ch == '\n');
4814                                 if (ch != '{') {
4815                                         syntax("was expecting {");
4816                                         goto parse_error;
4817                                 }
4818                                 ch = 'F'; /* magic value */
4819                         }
4820 #endif
4821                 case '{':
4822                         if (parse_group(&dest, &ctx, input, ch) != 0) {
4823                                 goto parse_error;
4824                         }
4825                         goto new_cmd;
4826                 case ')':
4827 #if ENABLE_HUSH_CASE
4828                         if (ctx.ctx_res_w == RES_MATCH)
4829                                 goto case_semi;
4830 #endif
4831                 case '}':
4832                         /* proper use of this character is caught by end_trigger:
4833                          * if we see {, we call parse_group(..., end_trigger='}')
4834                          * and it will match } earlier (not here). */
4835                         syntax("unexpected } or )");
4836                         goto parse_error;
4837                 default:
4838                         if (HUSH_DEBUG)
4839                                 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
4840                 }
4841         } /* while (1) */
4842
4843  parse_error:
4844         {
4845                 struct parse_context *pctx;
4846                 IF_HAS_KEYWORDS(struct parse_context *p2;)
4847
4848                 /* Clean up allocated tree.
4849                  * Samples for finding leaks on syntax error recovery path.
4850                  * Run them from interactive shell, watch pmap `pidof hush`.
4851                  * while if false; then false; fi do break; done
4852                  * (bash accepts it)
4853                  * while if false; then false; fi; do break; fi
4854                  * Samples to catch leaks at execution:
4855                  * while if (true | {true;}); then echo ok; fi; do break; done
4856                  * while if (true | {true;}); then echo ok; fi; do (if echo ok; break; then :; fi) | cat; break; done
4857                  */
4858                 pctx = &ctx;
4859                 do {
4860                         /* Update pipe/command counts,
4861                          * otherwise freeing may miss some */
4862                         done_pipe(pctx, PIPE_SEQ);
4863                         debug_printf_clean("freeing list %p from ctx %p\n",
4864                                         pctx->list_head, pctx);
4865                         debug_print_tree(pctx->list_head, 0);
4866                         free_pipe_list(pctx->list_head, 0);
4867                         debug_printf_clean("freed list %p\n", pctx->list_head);
4868 #if !BB_MMU
4869                         o_free_unsafe(&pctx->as_string);
4870 #endif
4871                         IF_HAS_KEYWORDS(p2 = pctx->stack;)
4872                         if (pctx != &ctx) {
4873                                 free(pctx);
4874                         }
4875                         IF_HAS_KEYWORDS(pctx = p2;)
4876                 } while (HAS_KEYWORDS && pctx);
4877                 /* Free text, clear all dest fields */
4878                 o_free(&dest);
4879                 /* If we are not in top-level parse, we return,
4880                  * our caller will propagate error.
4881                  */
4882                 if (end_trigger != ';') {
4883 #if !BB_MMU
4884                         if (pstring)
4885                                 *pstring = NULL;
4886 #endif
4887                         return ERR_PTR;
4888                 }
4889                 /* Discard cached input, force prompt */
4890                 input->p = NULL;
4891                 USE_HUSH_INTERACTIVE(input->promptme = 1;)
4892                 goto reset;
4893         }
4894 }
4895
4896 /* Executing from string: eval, sh -c '...'
4897  *          or from file: /etc/profile, . file, sh <script>, sh (intereactive)
4898  * end_trigger controls how often we stop parsing
4899  * NUL: parse all, execute, return
4900  * ';': parse till ';' or newline, execute, repeat till EOF
4901  */
4902 static void parse_and_run_stream(struct in_str *inp, int end_trigger)
4903 {
4904         while (1) {
4905                 struct pipe *pipe_list;
4906
4907                 pipe_list = parse_stream(NULL, inp, end_trigger);
4908                 if (!pipe_list) /* EOF */
4909                         break;
4910                 debug_print_tree(pipe_list, 0);
4911                 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
4912                 run_and_free_list(pipe_list);
4913         }
4914 }
4915
4916 static void parse_and_run_string(const char *s)
4917 {
4918         struct in_str input;
4919         setup_string_in_str(&input, s);
4920         parse_and_run_stream(&input, '\0');
4921 }
4922
4923 static void parse_and_run_file(FILE *f)
4924 {
4925         struct in_str input;
4926         setup_file_in_str(&input, f);
4927         parse_and_run_stream(&input, ';');
4928 }
4929
4930 /* Called a few times only (or even once if "sh -c") */
4931 static void block_signals(int second_time)
4932 {
4933         unsigned sig;
4934         unsigned mask;
4935
4936         mask = (1 << SIGQUIT);
4937         if (G_interactive_fd) {
4938                 mask = 0
4939                         | (1 << SIGQUIT)
4940                         | (1 << SIGTERM)
4941                         | (1 << SIGHUP)
4942 #if ENABLE_HUSH_JOB
4943                         | (1 << SIGTTIN) | (1 << SIGTTOU) | (1 << SIGTSTP)
4944 #endif
4945                         | (1 << SIGINT)
4946                 ;
4947         }
4948         G.non_DFL_mask = mask;
4949
4950         if (!second_time)
4951                 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
4952         sig = 0;
4953         while (mask) {
4954                 if (mask & 1)
4955                         sigaddset(&G.blocked_set, sig);
4956                 mask >>= 1;
4957                 sig++;
4958         }
4959         sigdelset(&G.blocked_set, SIGCHLD);
4960
4961         sigprocmask(SIG_SETMASK, &G.blocked_set,
4962                         second_time ? NULL : &G.inherited_set);
4963         /* POSIX allows shell to re-enable SIGCHLD
4964          * even if it was SIG_IGN on entry */
4965 //      G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
4966         if (!second_time)
4967                 signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler);
4968 }
4969
4970 #if ENABLE_HUSH_JOB
4971 /* helper */
4972 static void maybe_set_to_sigexit(int sig)
4973 {
4974         void (*handler)(int);
4975         /* non_DFL_mask'ed signals are, well, masked,
4976          * no need to set handler for them.
4977          */
4978         if (!((G.non_DFL_mask >> sig) & 1)) {
4979                 handler = signal(sig, sigexit);
4980                 if (handler == SIG_IGN) /* oops... restore back to IGN! */
4981                         signal(sig, handler);
4982         }
4983 }
4984 /* Set handlers to restore tty pgrm and exit */
4985 static void set_fatal_handlers(void)
4986 {
4987         /* We _must_ restore tty pgrp on fatal signals */
4988         if (HUSH_DEBUG) {
4989                 maybe_set_to_sigexit(SIGILL );
4990                 maybe_set_to_sigexit(SIGFPE );
4991                 maybe_set_to_sigexit(SIGBUS );
4992                 maybe_set_to_sigexit(SIGSEGV);
4993                 maybe_set_to_sigexit(SIGTRAP);
4994         } /* else: hush is perfect. what SEGV? */
4995         maybe_set_to_sigexit(SIGABRT);
4996         /* bash 3.2 seems to handle these just like 'fatal' ones */
4997         maybe_set_to_sigexit(SIGPIPE);
4998         maybe_set_to_sigexit(SIGALRM);
4999         maybe_set_to_sigexit(SIGHUP );
5000         /* if we are interactive, SIGTERM and SIGINT are masked.
5001          * if we aren't interactive... but in this case
5002          * we never want to restore pgrp on exit, and this fn is not called */
5003         /*maybe_set_to_sigexit(SIGTERM);*/
5004         /*maybe_set_to_sigexit(SIGINT );*/
5005 }
5006 #endif
5007
5008 static int set_mode(const char cstate, const char mode)
5009 {
5010         int state = (cstate == '-' ? 1 : 0);
5011         switch (mode) {
5012                 case 'n': G.fake_mode = state; break;
5013                 case 'x': /*G.debug_mode = state;*/ break;
5014                 default:  return EXIT_FAILURE;
5015         }
5016         return EXIT_SUCCESS;
5017 }
5018
5019 int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
5020 int hush_main(int argc, char **argv)
5021 {
5022         static const struct variable const_shell_ver = {
5023                 .next = NULL,
5024                 .varstr = (char*)hush_version_str,
5025                 .max_len = 1, /* 0 can provoke free(name) */
5026                 .flg_export = 1,
5027                 .flg_read_only = 1,
5028         };
5029         int signal_mask_is_inited = 0;
5030         int opt;
5031         char **e;
5032         struct variable *cur_var;
5033
5034         INIT_G();
5035         if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, is already done */
5036                 G.last_return_code = EXIT_SUCCESS;
5037 #if !BB_MMU
5038         G.argv0_for_re_execing = argv[0];
5039 #endif
5040         /* Deal with HUSH_VERSION */
5041         G.shell_ver = const_shell_ver; /* copying struct here */
5042         G.top_var = &G.shell_ver;
5043         debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
5044         unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
5045         /* Initialize our shell local variables with the values
5046          * currently living in the environment */
5047         cur_var = G.top_var;
5048         e = environ;
5049         if (e) while (*e) {
5050                 char *value = strchr(*e, '=');
5051                 if (value) { /* paranoia */
5052                         cur_var->next = xzalloc(sizeof(*cur_var));
5053                         cur_var = cur_var->next;
5054                         cur_var->varstr = *e;
5055                         cur_var->max_len = strlen(*e);
5056                         cur_var->flg_export = 1;
5057                 }
5058                 e++;
5059         }
5060         debug_printf_env("putenv '%s'\n", hush_version_str);
5061         putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */
5062 #if ENABLE_FEATURE_EDITING
5063         G.line_input_state = new_line_input_t(FOR_SHELL);
5064 #endif
5065         G.global_argc = argc;
5066         G.global_argv = argv;
5067         /* Initialize some more globals to non-zero values */
5068         set_cwd();
5069 #if ENABLE_HUSH_INTERACTIVE
5070         if (ENABLE_FEATURE_EDITING)
5071                 cmdedit_set_initial_prompt();
5072         G.PS2 = "> ";
5073 #endif
5074
5075         /* Shell is non-interactive at first. We need to call
5076          * block_signals(0) if we are going to execute "sh script",
5077          * "sh -c cmds" or login shell's /etc/profile and friends.
5078          * If we later decide that we are interactive, we run block_signals(0)
5079          * (or re-run block_signals(1) if we ran block_signals(0) before)
5080          * in order to intercept (more) signals.
5081          */
5082
5083         /* Parse options */
5084         /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
5085         while (1) {
5086                 opt = getopt(argc, argv, "c:xins"
5087 #if !BB_MMU
5088                                 "$:!:?:D:R:V:"
5089 #endif
5090                 );
5091                 if (opt <= 0)
5092                         break;
5093                 switch (opt) {
5094                 case 'c':
5095                         if (!G.root_pid)
5096                                 G.root_pid = getpid();
5097                         G.global_argv = argv + optind;
5098                         if (!argv[optind]) {
5099                                 /* -c 'script' (no params): prevent empty $0 */
5100                                 *--G.global_argv = argv[0];
5101                                 optind--;
5102                         } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */
5103                         G.global_argc = argc - optind;
5104                         block_signals(0); /* 0: called 1st time */
5105                         parse_and_run_string(optarg);
5106                         goto final_return;
5107                 case 'i':
5108                         /* Well, we cannot just declare interactiveness,
5109                          * we have to have some stuff (ctty, etc) */
5110                         /* G_interactive_fd++; */
5111                         break;
5112                 case 's':
5113                         /* "-s" means "read from stdin", but this is how we always
5114                          * operate, so simply do nothing here. */
5115                         break;
5116 #if !BB_MMU
5117                 case '$':
5118                         G.root_pid = xatoi_u(optarg);
5119                         break;
5120                 case '!':
5121                         G.last_bg_pid = xatoi_u(optarg);
5122                         break;
5123                 case '?':
5124                         G.last_return_code = xatoi_u(optarg);
5125                         break;
5126 #if ENABLE_HUSH_LOOPS
5127                 case 'D':
5128                         G.depth_of_loop = xatoi_u(optarg);
5129                         break;
5130 #endif
5131                 case 'R':
5132                 case 'V':
5133                         set_local_var(xstrdup(optarg), 0, opt == 'R');
5134                         break;
5135 #endif
5136                 case 'n':
5137                 case 'x':
5138                         if (!set_mode('-', opt))
5139                                 break;
5140                 default:
5141 #ifndef BB_VER
5142                         fprintf(stderr, "Usage: sh [FILE]...\n"
5143                                         "   or: sh -c command [args]...\n\n");
5144                         exit(EXIT_FAILURE);
5145 #else
5146                         bb_show_usage();
5147 #endif
5148                 }
5149         } /* option parsing loop */
5150
5151         if (!G.root_pid)
5152                 G.root_pid = getpid();
5153
5154         /* If we are login shell... */
5155         if (argv[0] && argv[0][0] == '-') {
5156                 FILE *input;
5157                 /* XXX what should argv be while sourcing /etc/profile? */
5158                 debug_printf("sourcing /etc/profile\n");
5159                 input = fopen_for_read("/etc/profile");
5160                 if (input != NULL) {
5161                         close_on_exec_on(fileno(input));
5162                         block_signals(0); /* 0: called 1st time */
5163                         signal_mask_is_inited = 1;
5164                         parse_and_run_file(input);
5165                         fclose(input);
5166                 }
5167                 /* bash: after sourcing /etc/profile,
5168                  * tries to source (in the given order):
5169                  * ~/.bash_profile, ~/.bash_login, ~/.profile,
5170                  * stopping of first found. --noprofile turns this off.
5171                  * bash also sources ~/.bash_logout on exit.
5172                  * If called as sh, skips .bash_XXX files.
5173                  */
5174         }
5175
5176         if (argv[optind]) {
5177                 FILE *input;
5178                 /*
5179                  * Non-interactive "bash <script>" sources $BASH_ENV here
5180                  * (without scanning $PATH).
5181                  * If called as sh, does the same but with $ENV.
5182                  */
5183                 debug_printf("running script '%s'\n", argv[optind]);
5184                 G.global_argv = argv + optind;
5185                 G.global_argc = argc - optind;
5186                 input = xfopen_for_read(argv[optind]);
5187                 close_on_exec_on(fileno(input));
5188                 if (!signal_mask_is_inited)
5189                         block_signals(0); /* 0: called 1st time */
5190                 parse_and_run_file(input);
5191 #if ENABLE_FEATURE_CLEAN_UP
5192                 fclose(input);
5193 #endif
5194                 goto final_return;
5195         }
5196
5197         /* Up to here, shell was non-interactive. Now it may become one.
5198          * NB: don't forget to (re)run block_signals(0/1) as needed.
5199          */
5200
5201         /* A shell is interactive if the '-i' flag was given, or if all of
5202          * the following conditions are met:
5203          *    no -c command
5204          *    no arguments remaining or the -s flag given
5205          *    standard input is a terminal
5206          *    standard output is a terminal
5207          * Refer to Posix.2, the description of the 'sh' utility.
5208          */
5209 #if ENABLE_HUSH_JOB
5210         if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
5211                 G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
5212                 debug_printf("saved_tty_pgrp:%d\n", G.saved_tty_pgrp);
5213                 if (G.saved_tty_pgrp >= 0) {
5214                         /* try to dup stdin to high fd#, >= 255 */
5215                         G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
5216                         if (G_interactive_fd < 0) {
5217                                 /* try to dup to any fd */
5218                                 G_interactive_fd = dup(STDIN_FILENO);
5219                                 if (G_interactive_fd < 0)
5220                                         /* give up */
5221                                         G_interactive_fd = 0;
5222                         }
5223 // TODO: track & disallow any attempts of user
5224 // to (inadvertently) close/redirect it
5225                 }
5226         }
5227         debug_printf("interactive_fd:%d\n", G_interactive_fd);
5228         if (G_interactive_fd) {
5229                 pid_t shell_pgrp;
5230
5231                 /* We are indeed interactive shell, and we will perform
5232                  * job control. Setting up for that. */
5233
5234                 close_on_exec_on(G_interactive_fd);
5235                 /* If we were run as 'hush &', sleep until we are
5236                  * in the foreground (tty pgrp == our pgrp).
5237                  * If we get started under a job aware app (like bash),
5238                  * make sure we are now in charge so we don't fight over
5239                  * who gets the foreground */
5240                 while (1) {
5241                         shell_pgrp = getpgrp();
5242                         G.saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
5243                         if (G.saved_tty_pgrp == shell_pgrp)
5244                                 break;
5245                         /* send TTIN to ourself (should stop us) */
5246                         kill(- shell_pgrp, SIGTTIN);
5247                 }
5248                 /* Block some signals */
5249                 block_signals(signal_mask_is_inited);
5250                 /* Set other signals to restore saved_tty_pgrp */
5251                 set_fatal_handlers();
5252                 /* Put ourselves in our own process group */
5253                 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
5254                 /* Grab control of the terminal */
5255                 tcsetpgrp(G_interactive_fd, getpid());
5256                 /* -1 is special - makes xfuncs longjmp, not exit
5257                  * (we reset die_sleep = 0 whereever we [v]fork) */
5258                 die_sleep = -1;
5259                 if (setjmp(die_jmp)) {
5260                         /* xfunc has failed! die die die */
5261                         hush_exit(xfunc_error_retval);
5262                 }
5263         } else if (!signal_mask_is_inited) {
5264                 block_signals(0); /* 0: called 1st time */
5265         } /* else: block_signals(0) was done before */
5266 #elif ENABLE_HUSH_INTERACTIVE
5267         /* No job control compiled in, only prompt/line editing */
5268         if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
5269                 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
5270                 if (G_interactive_fd < 0) {
5271                         /* try to dup to any fd */
5272                         G_interactive_fd = dup(STDIN_FILENO);
5273                         if (G_interactive_fd < 0)
5274                                 /* give up */
5275                                 G_interactive_fd = 0;
5276                 }
5277         }
5278         if (G_interactive_fd) {
5279                 close_on_exec_on(G_interactive_fd);
5280                 block_signals(signal_mask_is_inited);
5281         } else if (!signal_mask_is_inited) {
5282                 block_signals(0);
5283         }
5284 #else
5285         /* We have interactiveness code disabled */
5286         if (!signal_mask_is_inited) {
5287                 block_signals(0);
5288         }
5289 #endif
5290         /* bash:
5291          * if interactive but not a login shell, sources ~/.bashrc
5292          * (--norc turns this off, --rcfile <file> overrides)
5293          */
5294
5295         if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
5296                 printf("\n\n%s hush - the humble shell v"HUSH_VER_STR"\n", bb_banner);
5297                 printf("Enter 'help' for a list of built-in commands.\n\n");
5298         }
5299
5300         parse_and_run_file(stdin);
5301
5302  final_return:
5303 #if ENABLE_FEATURE_CLEAN_UP
5304         if (G.cwd != bb_msg_unknown)
5305                 free((char*)G.cwd);
5306         cur_var = G.top_var->next;
5307         while (cur_var) {
5308                 struct variable *tmp = cur_var;
5309                 if (!cur_var->max_len)
5310                         free(cur_var->varstr);
5311                 cur_var = cur_var->next;
5312                 free(tmp);
5313         }
5314 #endif
5315         hush_exit(G.last_return_code);
5316 }
5317
5318
5319 #if ENABLE_LASH
5320 int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
5321 int lash_main(int argc, char **argv)
5322 {
5323         //bb_error_msg("lash is deprecated, please use hush instead");
5324         return hush_main(argc, argv);
5325 }
5326 #endif
5327
5328
5329 /*
5330  * Built-ins
5331  */
5332 static int builtin_trap(char **argv)
5333 {
5334         int i;
5335         int sig;
5336         char *new_cmd;
5337
5338         if (!G.traps)
5339                 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
5340
5341         if (!argv[1]) {
5342                 /* No args: print all trapped.  This isn't 100% correct as we should
5343                  * be escaping the cmd so that it can be pasted back in ...
5344                  */
5345                 for (i = 0; i < NSIG; ++i)
5346                         if (G.traps[i])
5347                                 printf("trap -- '%s' %s\n", G.traps[i], get_signame(i));
5348                 return EXIT_SUCCESS;
5349         }
5350
5351         new_cmd = NULL;
5352         i = 0;
5353         /* if first arg is decimal: reset all specified */
5354         sig = bb_strtou(*++argv, NULL, 10);
5355         if (errno == 0) {
5356                 int ret;
5357  set_all:
5358                 ret = EXIT_SUCCESS;
5359                 while (*argv) {
5360                         sig = get_signum(*argv++);
5361                         if (sig < 0 || sig >= NSIG) {
5362                                 ret = EXIT_FAILURE;
5363                                 /* mimic bash message exactly */
5364                                 bb_perror_msg("trap: %s: invalid signal specification", argv[i]);
5365                                 continue;
5366                         }
5367
5368                         free(G.traps[sig]);
5369                         G.traps[sig] = xstrdup(new_cmd);
5370
5371                         debug_printf("trap: setting SIG%s (%i) to '%s'",
5372                                 get_signame(sig), sig, G.traps[sig]);
5373
5374                         /* There is no signal for 0 (EXIT) */
5375                         if (sig == 0)
5376                                 continue;
5377
5378                         if (new_cmd) {
5379                                 sigaddset(&G.blocked_set, sig);
5380                         } else {
5381                                 /* there was a trap handler, we are removing it
5382                                  * (if sig has non-DFL handling,
5383                                  * we don't need to do anything) */
5384                                 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
5385                                         continue;
5386                                 sigdelset(&G.blocked_set, sig);
5387                         }
5388                         sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
5389                 }
5390                 return ret;
5391         }
5392
5393         /* first arg is "-": reset all specified to default */
5394         /* first arg is "": ignore all specified */
5395         /* everything else: execute first arg upon signal */
5396         if (!argv[1]) {
5397                 bb_error_msg("trap: invalid arguments");
5398                 return EXIT_FAILURE;
5399         }
5400         if (LONE_DASH(*argv))
5401                 /* nothing! */;
5402         else
5403                 new_cmd = *argv;
5404         argv++;
5405         goto set_all;
5406 }
5407
5408 static int builtin_true(char **argv UNUSED_PARAM)
5409 {
5410         return 0;
5411 }
5412
5413 static int builtin_test(char **argv)
5414 {
5415         int argc = 0;
5416         while (*argv) {
5417                 argc++;
5418                 argv++;
5419         }
5420         return test_main(argc, argv - argc);
5421 }
5422
5423 static int builtin_echo(char **argv)
5424 {
5425         int argc = 0;
5426         while (*argv) {
5427                 argc++;
5428                 argv++;
5429         }
5430         return echo_main(argc, argv - argc);
5431 }
5432
5433 static int builtin_eval(char **argv)
5434 {
5435         int rcode = EXIT_SUCCESS;
5436
5437         if (argv[1]) {
5438                 char *str = expand_strvec_to_string(argv + 1);
5439                 /* bash:
5440                  * eval "echo Hi; done" ("done" is syntax error):
5441                  * "echo Hi" will not execute too.
5442                  */
5443                 parse_and_run_string(str);
5444                 free(str);
5445                 rcode = G.last_return_code;
5446         }
5447         return rcode;
5448 }
5449
5450 static int builtin_cd(char **argv)
5451 {
5452         const char *newdir;
5453         if (argv[1] == NULL) {
5454                 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
5455                  * bash says "bash: cd: HOME not set" and does nothing (exitcode 1)
5456                  */
5457                 newdir = getenv("HOME") ? : "/";
5458         } else
5459                 newdir = argv[1];
5460         if (chdir(newdir)) {
5461                 printf("cd: %s: %s\n", newdir, strerror(errno));
5462                 return EXIT_FAILURE;
5463         }
5464         set_cwd();
5465         return EXIT_SUCCESS;
5466 }
5467
5468 static int builtin_exec(char **argv)
5469 {
5470         if (argv[1] == NULL)
5471                 return EXIT_SUCCESS; /* bash does this */
5472         {
5473 #if !BB_MMU
5474                 nommu_save_t dummy;
5475 #endif
5476 // FIXME: if exec fails, bash does NOT exit! We do...
5477                 pseudo_exec_argv(&dummy, argv + 1, 0, NULL);
5478                 /* never returns */
5479         }
5480 }
5481
5482 static int builtin_exit(char **argv)
5483 {
5484 // TODO: bash does it ONLY on top-level sh exit (+interacive only?)
5485         //puts("exit"); /* bash does it */
5486 // TODO: warn if we have background jobs: "There are stopped jobs"
5487 // On second consecutive 'exit', exit anyway.
5488         if (argv[1] == NULL)
5489                 hush_exit(G.last_return_code);
5490         /* mimic bash: exit 123abc == exit 255 + error msg */
5491         xfunc_error_retval = 255;
5492         /* bash: exit -2 == exit 254, no error msg */
5493         hush_exit(xatoi(argv[1]) & 0xff);
5494 }
5495
5496 static int builtin_export(char **argv)
5497 {
5498         const char *value;
5499         char *name = argv[1];
5500
5501         if (name == NULL) {
5502                 // TODO:
5503                 // ash emits: export VAR='VAL'
5504                 // bash: declare -x VAR="VAL"
5505                 // (both also escape as needed (quotes, $, etc))
5506                 char **e = environ;
5507                 if (e)
5508                         while (*e)
5509                                 puts(*e++);
5510                 return EXIT_SUCCESS;
5511         }
5512
5513         value = strchr(name, '=');
5514         if (!value) {
5515                 /* They are exporting something without a =VALUE */
5516                 struct variable *var;
5517
5518                 var = get_local_var(name);
5519                 if (var) {
5520                         var->flg_export = 1;
5521                         debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
5522                         putenv(var->varstr);
5523                 }
5524                 /* bash does not return an error when trying to export
5525                  * an undefined variable.  Do likewise. */
5526                 return EXIT_SUCCESS;
5527         }
5528
5529         set_local_var(xstrdup(name), 1, 0);
5530         return EXIT_SUCCESS;
5531 }
5532
5533 #if ENABLE_HUSH_JOB
5534 /* built-in 'fg' and 'bg' handler */
5535 static int builtin_fg_bg(char **argv)
5536 {
5537         int i, jobnum;
5538         struct pipe *pi;
5539
5540         if (!G_interactive_fd)
5541                 return EXIT_FAILURE;
5542         /* If they gave us no args, assume they want the last backgrounded task */
5543         if (!argv[1]) {
5544                 for (pi = G.job_list; pi; pi = pi->next) {
5545                         if (pi->jobid == G.last_jobid) {
5546                                 goto found;
5547                         }
5548                 }
5549                 bb_error_msg("%s: no current job", argv[0]);
5550                 return EXIT_FAILURE;
5551         }
5552         if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
5553                 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
5554                 return EXIT_FAILURE;
5555         }
5556         for (pi = G.job_list; pi; pi = pi->next) {
5557                 if (pi->jobid == jobnum) {
5558                         goto found;
5559                 }
5560         }
5561         bb_error_msg("%s: %d: no such job", argv[0], jobnum);
5562         return EXIT_FAILURE;
5563  found:
5564         // TODO: bash prints a string representation
5565         // of job being foregrounded (like "sleep 1 | cat")
5566         if (argv[0][0] == 'f') {
5567                 /* Put the job into the foreground.  */
5568                 tcsetpgrp(G_interactive_fd, pi->pgrp);
5569         }
5570
5571         /* Restart the processes in the job */
5572         debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
5573         for (i = 0; i < pi->num_cmds; i++) {
5574                 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
5575                 pi->cmds[i].is_stopped = 0;
5576         }
5577         pi->stopped_cmds = 0;
5578
5579         i = kill(- pi->pgrp, SIGCONT);
5580         if (i < 0) {
5581                 if (errno == ESRCH) {
5582                         delete_finished_bg_job(pi);
5583                         return EXIT_SUCCESS;
5584                 }
5585                 bb_perror_msg("kill (SIGCONT)");
5586         }
5587
5588         if (argv[0][0] == 'f') {
5589                 remove_bg_job(pi);
5590                 return checkjobs_and_fg_shell(pi);
5591         }
5592         return EXIT_SUCCESS;
5593 }
5594 #endif
5595
5596 #if ENABLE_HUSH_HELP
5597 static int builtin_help(char **argv UNUSED_PARAM)
5598 {
5599         const struct built_in_command *x;
5600
5601         printf("\n"
5602                 "Built-in commands:\n"
5603                 "------------------\n");
5604         for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
5605                 printf("%s\t%s\n", x->cmd, x->descr);
5606         }
5607         printf("\n\n");
5608         return EXIT_SUCCESS;
5609 }
5610 #endif
5611
5612 #if ENABLE_HUSH_JOB
5613 static int builtin_jobs(char **argv UNUSED_PARAM)
5614 {
5615         struct pipe *job;
5616         const char *status_string;
5617
5618         for (job = G.job_list; job; job = job->next) {
5619                 if (job->alive_cmds == job->stopped_cmds)
5620                         status_string = "Stopped";
5621                 else
5622                         status_string = "Running";
5623
5624                 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
5625         }
5626         return EXIT_SUCCESS;
5627 }
5628 #endif
5629
5630 static int builtin_pwd(char **argv UNUSED_PARAM)
5631 {
5632         puts(set_cwd());
5633         return EXIT_SUCCESS;
5634 }
5635
5636 static int builtin_read(char **argv)
5637 {
5638         char *string;
5639         const char *name = argv[1] ? argv[1] : "REPLY";
5640
5641         string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
5642         return set_local_var(string, 0, 0);
5643 }
5644
5645 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
5646  * built-in 'set' handler
5647  * SUSv3 says:
5648  * set [-abCefhmnuvx] [-o option] [argument...]
5649  * set [+abCefhmnuvx] [+o option] [argument...]
5650  * set -- [argument...]
5651  * set -o
5652  * set +o
5653  * Implementations shall support the options in both their hyphen and
5654  * plus-sign forms. These options can also be specified as options to sh.
5655  * Examples:
5656  * Write out all variables and their values: set
5657  * Set $1, $2, and $3 and set "$#" to 3: set c a b
5658  * Turn on the -x and -v options: set -xv
5659  * Unset all positional parameters: set --
5660  * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
5661  * Set the positional parameters to the expansion of x, even if x expands
5662  * with a leading '-' or '+': set -- $x
5663  *
5664  * So far, we only support "set -- [argument...]" and some of the short names.
5665  */
5666 static int builtin_set(char **argv)
5667 {
5668         int n;
5669         char **pp, **g_argv;
5670         char *arg = *++argv;
5671
5672         if (arg == NULL) {
5673                 struct variable *e;
5674                 for (e = G.top_var; e; e = e->next)
5675                         puts(e->varstr);
5676                 return EXIT_SUCCESS;
5677         }
5678
5679         do {
5680                 if (!strcmp(arg, "--")) {
5681                         ++argv;
5682                         goto set_argv;
5683                 }
5684
5685                 if (arg[0] == '+' || arg[0] == '-') {
5686                         for (n = 1; arg[n]; ++n)
5687                                 if (set_mode(arg[0], arg[n]))
5688                                         goto error;
5689                         continue;
5690                 }
5691
5692                 break;
5693         } while ((arg = *++argv) != NULL);
5694         /* Now argv[0] is 1st argument */
5695
5696         /* Only reset global_argv if we didn't process anything */
5697         if (arg == NULL)
5698                 return EXIT_SUCCESS;
5699  set_argv:
5700
5701         /* NB: G.global_argv[0] ($0) is never freed/changed */
5702         g_argv = G.global_argv;
5703         if (G.global_args_malloced) {
5704                 pp = g_argv;
5705                 while (*++pp)
5706                         free(*pp);
5707                 g_argv[1] = NULL;
5708         } else {
5709                 G.global_args_malloced = 1;
5710                 pp = xzalloc(sizeof(pp[0]) * 2);
5711                 pp[0] = g_argv[0]; /* retain $0 */
5712                 g_argv = pp;
5713         }
5714         /* This realloc's G.global_argv */
5715         G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
5716
5717         n = 1;
5718         while (*++pp)
5719                 n++;
5720         G.global_argc = n;
5721
5722         return EXIT_SUCCESS;
5723
5724         /* Nothing known, so abort */
5725  error:
5726         bb_error_msg("set: %s: invalid option", arg);
5727         return EXIT_FAILURE;
5728 }
5729
5730 static int builtin_shift(char **argv)
5731 {
5732         int n = 1;
5733         if (argv[1]) {
5734                 n = atoi(argv[1]);
5735         }
5736         if (n >= 0 && n < G.global_argc) {
5737                 if (G.global_args_malloced) {
5738                         int m = 1;
5739                         while (m <= n)
5740                                 free(G.global_argv[m++]);
5741                 }
5742                 G.global_argc -= n;
5743                 memmove(&G.global_argv[1], &G.global_argv[n+1],
5744                                 G.global_argc * sizeof(G.global_argv[0]));
5745                 return EXIT_SUCCESS;
5746         }
5747         return EXIT_FAILURE;
5748 }
5749
5750 static int builtin_source(char **argv)
5751 {
5752         FILE *input;
5753
5754         if (argv[1] == NULL)
5755                 return EXIT_FAILURE;
5756
5757         /* XXX search through $PATH is missing */
5758         input = fopen_for_read(argv[1]);
5759         if (!input) {
5760                 bb_error_msg("can't open '%s'", argv[1]);
5761                 return EXIT_FAILURE;
5762         }
5763         close_on_exec_on(fileno(input));
5764
5765         /* Now run the file */
5766         /* XXX argv and argc are broken; need to save old G.global_argv
5767          * (pointer only is OK!) on this stack frame,
5768          * set G.global_argv=argv+1, recurse, and restore. */
5769         parse_and_run_file(input);
5770         fclose(input);
5771         return G.last_return_code;
5772 }
5773
5774 static int builtin_umask(char **argv)
5775 {
5776         mode_t new_umask;
5777         const char *arg = argv[1];
5778         if (arg) {
5779                 new_umask = bb_strtou(arg, NULL, 8);
5780                 if (errno)
5781                         return EXIT_FAILURE;
5782         } else {
5783                 new_umask = umask(0);
5784                 printf("%.3o\n", (unsigned) new_umask);
5785         }
5786         umask(new_umask);
5787         return EXIT_SUCCESS;
5788 }
5789
5790 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
5791 static int builtin_unset(char **argv)
5792 {
5793         size_t i;
5794         int ret;
5795         bool var = true;
5796
5797         if (!argv[1])
5798                 return EXIT_SUCCESS;
5799
5800         i = 0;
5801         if (argv[1][0] == '-') {
5802                 switch (argv[1][1]) {
5803                 case 'v': break;
5804                 case 'f': if (ENABLE_HUSH_FUNCTIONS) { var = false; break; }
5805                 default:
5806                         bb_error_msg("unset: %s: invalid option", argv[1]);
5807                         return EXIT_FAILURE;
5808                 }
5809                 ++i;
5810         }
5811
5812         ret = EXIT_SUCCESS;
5813         while (argv[++i]) {
5814                 if (var) {
5815                         if (unset_local_var(argv[i]))
5816                                 ret = EXIT_FAILURE;
5817                 }
5818 #if ENABLE_HUSH_FUNCTIONS
5819                 else
5820                         unset_local_func(argv[i]);
5821 #endif
5822         }
5823         return ret;
5824 }
5825
5826 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
5827 static int builtin_wait(char **argv)
5828 {
5829         int ret = EXIT_SUCCESS;
5830         int status, sig;
5831
5832         if (*++argv == NULL) {
5833                 /* Don't care about wait results */
5834                 /* Note 1: must wait until there are no more children */
5835                 /* Note 2: must be interruptible */
5836                 /* Examples:
5837                  * $ sleep 3 & sleep 6 & wait
5838                  * [1] 30934 sleep 3
5839                  * [2] 30935 sleep 6
5840                  * [1] Done                   sleep 3
5841                  * [2] Done                   sleep 6
5842                  * $ sleep 3 & sleep 6 & wait
5843                  * [1] 30936 sleep 3
5844                  * [2] 30937 sleep 6
5845                  * [1] Done                   sleep 3
5846                  * ^C <-- after ~4 sec from keyboard
5847                  * $
5848                  */
5849                 sigaddset(&G.blocked_set, SIGCHLD);
5850                 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
5851                 while (1) {
5852                         checkjobs(NULL);
5853                         if (errno == ECHILD)
5854                                 break;
5855                         /* Wait for SIGCHLD or any other signal of interest */
5856                         /* sigtimedwait with infinite timeout: */
5857                         sig = sigwaitinfo(&G.blocked_set, NULL);
5858                         if (sig > 0) {
5859                                 sig = check_and_run_traps(sig);
5860                                 if (sig && sig != SIGCHLD) { /* see note 2 */
5861                                         ret = 128 + sig;
5862                                         break;
5863                                 }
5864                         }
5865                 }
5866                 sigdelset(&G.blocked_set, SIGCHLD);
5867                 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
5868                 return ret;
5869         }
5870
5871         /* This is probably buggy wrt interruptible-ness */
5872         while (*argv) {
5873                 pid_t pid = bb_strtou(*argv, NULL, 10);
5874                 if (errno) {
5875                         /* mimic bash message */
5876                         bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
5877                         return EXIT_FAILURE;
5878                 }
5879                 if (waitpid(pid, &status, 0) == pid) {
5880                         if (WIFSIGNALED(status))
5881                                 ret = 128 + WTERMSIG(status);
5882                         else if (WIFEXITED(status))
5883                                 ret = WEXITSTATUS(status);
5884                         else /* wtf? */
5885                                 ret = EXIT_FAILURE;
5886                 } else {
5887                         bb_perror_msg("wait %s", *argv);
5888                         ret = 127;
5889                 }
5890                 argv++;
5891         }
5892
5893         return ret;
5894 }
5895
5896 #if ENABLE_HUSH_LOOPS
5897 static int builtin_break(char **argv)
5898 {
5899         if (G.depth_of_loop == 0) {
5900                 bb_error_msg("%s: only meaningful in a loop", argv[0]);
5901                 return EXIT_SUCCESS; /* bash compat */
5902         }
5903         G.flag_break_continue++; /* BC_BREAK = 1 */
5904         G.depth_break_continue = 1;
5905         if (argv[1]) {
5906                 G.depth_break_continue = bb_strtou(argv[1], NULL, 10);
5907                 if (errno || !G.depth_break_continue || argv[2]) {
5908                         bb_error_msg("%s: bad arguments", argv[0]);
5909                         G.flag_break_continue = BC_BREAK;
5910                         G.depth_break_continue = UINT_MAX;
5911                 }
5912         }
5913         if (G.depth_of_loop < G.depth_break_continue)
5914                 G.depth_break_continue = G.depth_of_loop;
5915         return EXIT_SUCCESS;
5916 }
5917
5918 static int builtin_continue(char **argv)
5919 {
5920         G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
5921         return builtin_break(argv);
5922 }
5923 #endif