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