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