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