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