aa740f1b45e42fe0f45fe53c74f3b1a402e428e5
[platform/upstream/busybox.git] / shell / hush.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * sh.c -- a prototype Bourne shell grammar parser
4  *      Intended to follow the original Thompson and Ritchie
5  *      "small and simple is beautiful" philosophy, which
6  *      incidentally is a good match to today's BusyBox.
7  *
8  * Copyright (C) 2000,2001  Larry Doolittle  <larry@doolittle.boa.org>
9  *
10  * Credits:
11  *      The parser routines proper are all original material, first
12  *      written Dec 2000 and Jan 2001 by Larry Doolittle.  The
13  *      execution engine, the builtins, and much of the underlying
14  *      support has been adapted from busybox-0.49pre's lash, which is
15  *      Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
16  *      written by Erik Andersen <andersen@codepoet.org>.  That, in turn,
17  *      is based in part on ladsh.c, by Michael K. Johnson and Erik W.
18  *      Troan, which they placed in the public domain.  I don't know
19  *      how much of the Johnson/Troan code has survived the repeated
20  *      rewrites.
21  *
22  * Other credits:
23  *      b_addchr() derived from similar w_addchar function in glibc-2.2
24  *      setup_redirect(), redirect_opt_num(), and big chunks of main()
25  *      and many builtins derived from contributions by Erik Andersen
26  *      miscellaneous bugfixes from Matt Kraai
27  *
28  * There are two big (and related) architecture differences between
29  * this parser and the lash parser.  One is that this version is
30  * actually designed from the ground up to understand nearly all
31  * of the Bourne grammar.  The second, consequential change is that
32  * the parser and input reader have been turned inside out.  Now,
33  * the parser is in control, and asks for input as needed.  The old
34  * way had the input reader in control, and it asked for parsing to
35  * take place as needed.  The new way makes it much easier to properly
36  * handle the recursion implicit in the various substitutions, especially
37  * across continuation lines.
38  *
39  * Bash grammar not implemented: (how many of these were in original sh?)
40  *      $_
41  *      ! negation operator for pipes
42  *      &> and >& redirection of stdout+stderr
43  *      Brace Expansion
44  *      Tilde Expansion
45  *      fancy forms of Parameter Expansion
46  *      aliases
47  *      Arithmetic Expansion
48  *      <(list) and >(list) Process Substitution
49  *      reserved words: case, esac, select, function
50  *      Here Documents ( << word )
51  *      Functions
52  * Major bugs:
53  *      job handling woefully incomplete and buggy (improved --vda)
54  *      reserved word execution woefully incomplete and buggy
55  * to-do:
56  *      port selected bugfixes from post-0.49 busybox lash - done?
57  *      finish implementing reserved words: for, while, until, do, done
58  *      change { and } from special chars to reserved words
59  *      builtins: break, continue, eval, return, set, trap, ulimit
60  *      test magic exec
61  *      handle children going into background
62  *      clean up recognition of null pipes
63  *      check setting of global_argc and global_argv
64  *      control-C handling, probably with longjmp
65  *      follow IFS rules more precisely, including update semantics
66  *      figure out what to do with backslash-newline
67  *      explain why we use signal instead of sigaction
68  *      propagate syntax errors, die on resource errors?
69  *      continuation lines, both explicit and implicit - done?
70  *      memory leak finding and plugging - done?
71  *      more testing, especially quoting rules and redirection
72  *      document how quoting rules not precisely followed for variable assignments
73  *      maybe change charmap[] to use 2-bit entries
74  *      (eventually) remove all the printf's
75  *
76  * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
77  */
78
79
80 #include <glob.h>      /* glob, of course */
81 /* #include <dmalloc.h> */
82
83 #include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
84
85
86 #if !BB_MMU && ENABLE_HUSH_TICK
87 //#undef ENABLE_HUSH_TICK
88 //#define ENABLE_HUSH_TICK 0
89 #warning On NOMMU, hush command substitution is dangerous.
90 #warning Dont use it for commands which produce lots of output.
91 #warning For more info see shell/hush.c, generate_stream_from_list().
92 #endif
93
94 #if !BB_MMU && ENABLE_HUSH_JOB
95 #undef ENABLE_HUSH_JOB
96 #define ENABLE_HUSH_JOB 0
97 #endif
98
99 #if !ENABLE_HUSH_INTERACTIVE
100 #undef ENABLE_FEATURE_EDITING
101 #define ENABLE_FEATURE_EDITING 0
102 #undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
103 #define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
104 #endif
105
106
107 /* If you comment out one of these below, it will be #defined later
108  * to perform debug printfs to stderr: */
109 #define debug_printf(...)        do {} while (0)
110 /* Finer-grained debug switches */
111 #define debug_printf_parse(...)  do {} while (0)
112 #define debug_print_tree(a, b)   do {} while (0)
113 #define debug_printf_exec(...)   do {} while (0)
114 #define debug_printf_jobs(...)   do {} while (0)
115 #define debug_printf_expand(...) do {} while (0)
116 #define debug_printf_clean(...)  do {} while (0)
117
118 #ifndef debug_printf
119 #define debug_printf(...) fprintf(stderr, __VA_ARGS__)
120 #endif
121
122 #ifndef debug_printf_parse
123 #define debug_printf_parse(...) fprintf(stderr, __VA_ARGS__)
124 #endif
125
126 #ifndef debug_printf_exec
127 #define debug_printf_exec(...) fprintf(stderr, __VA_ARGS__)
128 #endif
129
130 #ifndef debug_printf_jobs
131 #define debug_printf_jobs(...) fprintf(stderr, __VA_ARGS__)
132 #define DEBUG_SHELL_JOBS 1
133 #endif
134
135 #ifndef debug_printf_expand
136 #define debug_printf_expand(...) fprintf(stderr, __VA_ARGS__)
137 #define DEBUG_EXPAND 1
138 #endif
139
140 /* Keep unconditionally on for now */
141 #define ENABLE_HUSH_DEBUG 1
142
143 #ifndef debug_printf_clean
144 /* broken, of course, but OK for testing */
145 static const char *indenter(int i)
146 {
147         static const char blanks[] ALIGN1 =
148                 "                                    ";
149         return &blanks[sizeof(blanks) - i - 1];
150 }
151 #define debug_printf_clean(...) fprintf(stderr, __VA_ARGS__)
152 #define DEBUG_CLEAN 1
153 #endif
154
155
156 /*
157  * Leak hunting. Use hush_leaktool.sh for post-processing.
158  */
159 #ifdef FOR_HUSH_LEAKTOOL
160 void *xxmalloc(int lineno, size_t size)
161 {
162         void *ptr = xmalloc((size + 0xff) & ~0xff);
163         fprintf(stderr, "line %d: malloc %p\n", lineno, ptr);
164         return ptr;
165 }
166 void *xxrealloc(int lineno, void *ptr, size_t size)
167 {
168         ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
169         fprintf(stderr, "line %d: realloc %p\n", lineno, ptr);
170         return ptr;
171 }
172 char *xxstrdup(int lineno, const char *str)
173 {
174         char *ptr = xstrdup(str);
175         fprintf(stderr, "line %d: strdup %p\n", lineno, ptr);
176         return ptr;
177 }
178 void xxfree(void *ptr)
179 {
180         fprintf(stderr, "free %p\n", ptr);
181         free(ptr);
182 }
183 #define xmalloc(s)     xxmalloc(__LINE__, s)
184 #define xrealloc(p, s) xxrealloc(__LINE__, p, s)
185 #define xstrdup(s)     xxstrdup(__LINE__, s)
186 #define free(p)        xxfree(p)
187 #endif
188
189
190 #define SPECIAL_VAR_SYMBOL   3
191
192 #define PARSEFLAG_EXIT_FROM_LOOP 1
193 #define PARSEFLAG_SEMICOLON      (1 << 1)  /* symbol ';' is special for parser */
194 #define PARSEFLAG_REPARSING      (1 << 2)  /* >= 2nd pass */
195
196 typedef enum {
197         REDIRECT_INPUT     = 1,
198         REDIRECT_OVERWRITE = 2,
199         REDIRECT_APPEND    = 3,
200         REDIRECT_HEREIS    = 4,
201         REDIRECT_IO        = 5
202 } redir_type;
203
204 /* The descrip member of this structure is only used to make debugging
205  * output pretty */
206 static const struct {
207         int mode;
208         signed char default_fd;
209         char descrip[3];
210 } redir_table[] = {
211         { 0,                         0, "()" },
212         { O_RDONLY,                  0, "<"  },
213         { O_CREAT|O_TRUNC|O_WRONLY,  1, ">"  },
214         { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
215         { O_RDONLY,                 -1, "<<" },
216         { O_RDWR,                    1, "<>" }
217 };
218
219 typedef enum {
220         PIPE_SEQ = 1,
221         PIPE_AND = 2,
222         PIPE_OR  = 3,
223         PIPE_BG  = 4,
224 } pipe_style;
225
226 /* might eventually control execution */
227 typedef enum {
228         RES_NONE  = 0,
229 #if ENABLE_HUSH_IF
230         RES_IF    = 1,
231         RES_THEN  = 2,
232         RES_ELIF  = 3,
233         RES_ELSE  = 4,
234         RES_FI    = 5,
235 #endif
236 #if ENABLE_HUSH_LOOPS
237         RES_FOR   = 6,
238         RES_WHILE = 7,
239         RES_UNTIL = 8,
240         RES_DO    = 9,
241         RES_DONE  = 10,
242         RES_IN    = 11,
243 #endif
244         RES_XXXX  = 12,
245         RES_SNTX  = 13
246 } reserved_style;
247 enum {
248         FLAG_END   = (1 << RES_NONE ),
249 #if ENABLE_HUSH_IF
250         FLAG_IF    = (1 << RES_IF   ),
251         FLAG_THEN  = (1 << RES_THEN ),
252         FLAG_ELIF  = (1 << RES_ELIF ),
253         FLAG_ELSE  = (1 << RES_ELSE ),
254         FLAG_FI    = (1 << RES_FI   ),
255 #endif
256 #if ENABLE_HUSH_LOOPS
257         FLAG_FOR   = (1 << RES_FOR  ),
258         FLAG_WHILE = (1 << RES_WHILE),
259         FLAG_UNTIL = (1 << RES_UNTIL),
260         FLAG_DO    = (1 << RES_DO   ),
261         FLAG_DONE  = (1 << RES_DONE ),
262         FLAG_IN    = (1 << RES_IN   ),
263 #endif
264         FLAG_START = (1 << RES_XXXX ),
265 };
266
267 /* This holds pointers to the various results of parsing */
268 struct p_context {
269         struct child_prog *child;
270         struct pipe *list_head;
271         struct pipe *pipe;
272         struct redir_struct *pending_redirect;
273         smallint res_w;
274         smallint parse_type;        /* bitmask of PARSEFLAG_xxx, defines type of parser : ";$" common or special symbol */
275         int old_flag;               /* bitmask of FLAG_xxx, for figuring out valid reserved words */
276         struct p_context *stack;
277         /* How about quoting status? */
278 };
279
280 struct redir_struct {
281         struct redir_struct *next;  /* pointer to the next redirect in the list */
282         redir_type type;            /* type of redirection */
283         int fd;                     /* file descriptor being redirected */
284         int dup;                    /* -1, or file descriptor being duplicated */
285         char **glob_word;           /* *word.gl_pathv is the filename */
286 };
287
288 struct child_prog {
289         pid_t pid;                  /* 0 if exited */
290         char **argv;                /* program name and arguments */
291         struct pipe *group;         /* if non-NULL, first in group or subshell */
292         smallint subshell;          /* flag, non-zero if group must be forked */
293         smallint is_stopped;        /* is the program currently running? */
294         struct redir_struct *redirects; /* I/O redirections */
295         struct pipe *family;        /* pointer back to the child's parent pipe */
296         //sp counting seems to be broken... so commented out, grep for '//sp:'
297         //sp: int sp;               /* number of SPECIAL_VAR_SYMBOL */
298         //seems to be unused, grep for '//pt:'
299         //pt: int parse_type;
300 };
301 /* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
302  * and on execution these are substituted with their values.
303  * Substitution can make _several_ words out of one argv[n]!
304  * Example: argv[0]=='.^C*^C.' here: echo .$*.
305  */
306
307 struct pipe {
308         struct pipe *next;
309         int num_progs;              /* total number of programs in job */
310         int running_progs;          /* number of programs running (not exited) */
311         int stopped_progs;          /* number of programs alive, but stopped */
312 #if ENABLE_HUSH_JOB
313         int jobid;                  /* job number */
314         pid_t pgrp;                 /* process group ID for the job */
315         char *cmdtext;              /* name of job */
316 #endif
317         char *cmdbuf;               /* buffer various argv's point into */
318         struct child_prog *progs;   /* array of commands in pipe */
319         int job_context;            /* bitmask defining current context */
320         smallint followup;          /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
321         smallint res_word;          /* needed for if, for, while, until... */
322 };
323
324 /* On program start, environ points to initial environment.
325  * putenv adds new pointers into it, unsetenv removes them.
326  * Neither of these (de)allocates the strings.
327  * setenv allocates new strings in malloc space and does putenv,
328  * and thus setenv is unusable (leaky) for shell's purposes */
329 #define setenv(...) setenv_is_leaky_dont_use()
330 struct variable {
331         struct variable *next;
332         char *varstr;        /* points to "name=" portion */
333         int max_len;         /* if > 0, name is part of initial env; else name is malloced */
334         smallint flg_export; /* putenv should be done on this var */
335         smallint flg_read_only;
336 };
337
338 typedef struct {
339         char *data;
340         int length;
341         int maxlen;
342         smallint o_quote;
343         smallint nonnull;
344 } o_string;
345 #define NULL_O_STRING {NULL,0,0,0,0}
346 /* used for initialization: o_string foo = NULL_O_STRING; */
347
348 /* I can almost use ordinary FILE *.  Is open_memstream() universally
349  * available?  Where is it documented? */
350 struct in_str {
351         const char *p;
352         /* eof_flag=1: last char in ->p is really an EOF */
353         char eof_flag; /* meaningless if ->p == NULL */
354         char peek_buf[2];
355 #if ENABLE_HUSH_INTERACTIVE
356         smallint promptme;
357         smallint promptmode; /* 0: PS1, 1: PS2 */
358 #endif
359         FILE *file;
360         int (*get) (struct in_str *);
361         int (*peek) (struct in_str *);
362 };
363 #define b_getch(input) ((input)->get(input))
364 #define b_peek(input) ((input)->peek(input))
365
366 enum {
367         CHAR_ORDINARY           = 0,
368         CHAR_ORDINARY_IF_QUOTED = 1, /* example: *, # */
369         CHAR_IFS                = 2, /* treated as ordinary if quoted */
370         CHAR_SPECIAL            = 3, /* example: $ */
371 };
372
373 #define HUSH_VER_STR "0.02"
374
375 /* "Globals" within this file */
376
377 /* Sorted roughly by size (smaller offsets == smaller code) */
378 struct globals {
379 #if ENABLE_HUSH_INTERACTIVE
380         /* 'interactive_fd' is a fd# open to ctty, if we have one
381          * _AND_ if we decided to act interactively */
382         int interactive_fd;
383         const char *PS1;
384         const char *PS2;
385 #endif
386 #if ENABLE_FEATURE_EDITING
387         line_input_t *line_input_state;
388 #endif
389 #if ENABLE_HUSH_JOB
390         int run_list_level;
391         pid_t saved_task_pgrp;
392         pid_t saved_tty_pgrp;
393         int last_jobid;
394         struct pipe *job_list;
395         struct pipe *toplevel_list;
396         smallint ctrl_z_flag;
397 #endif
398         smallint fake_mode;
399         /* these three support $?, $#, and $1 */
400         char **global_argv;
401         int global_argc;
402         int last_return_code;
403         const char *ifs;
404         const char *cwd;
405         unsigned last_bg_pid;
406         struct variable *top_var; /* = &shell_ver (set in main()) */
407         struct variable shell_ver;
408 #if ENABLE_FEATURE_SH_STANDALONE
409         struct nofork_save_area nofork_save;
410 #endif
411 #if ENABLE_HUSH_JOB
412         sigjmp_buf toplevel_jb;
413 #endif
414         unsigned char charmap[256];
415         char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2];
416 };
417
418 #define G (*ptr_to_globals)
419
420 #if !ENABLE_HUSH_INTERACTIVE
421 enum { interactive_fd = 0 };
422 #endif
423 #if !ENABLE_HUSH_JOB
424 enum { run_list_level = 0 };
425 #endif
426
427 #if ENABLE_HUSH_INTERACTIVE
428 #define interactive_fd   (G.interactive_fd  )
429 #define PS1              (G.PS1             )
430 #define PS2              (G.PS2             )
431 #endif
432 #if ENABLE_FEATURE_EDITING
433 #define line_input_state (G.line_input_state)
434 #endif
435 #if ENABLE_HUSH_JOB
436 #define run_list_level   (G.run_list_level  )
437 #define saved_task_pgrp  (G.saved_task_pgrp )
438 #define saved_tty_pgrp   (G.saved_tty_pgrp  )
439 #define last_jobid       (G.last_jobid      )
440 #define job_list         (G.job_list        )
441 #define toplevel_list    (G.toplevel_list   )
442 #define toplevel_jb      (G.toplevel_jb     )
443 #define ctrl_z_flag      (G.ctrl_z_flag     )
444 #endif /* JOB */
445 #define global_argv      (G.global_argv     )
446 #define global_argc      (G.global_argc     )
447 #define last_return_code (G.last_return_code)
448 #define ifs              (G.ifs             )
449 #define fake_mode        (G.fake_mode       )
450 #define cwd              (G.cwd             )
451 #define last_bg_pid      (G.last_bg_pid     )
452 #define top_var          (G.top_var         )
453 #define shell_ver        (G.shell_ver       )
454 #if ENABLE_FEATURE_SH_STANDALONE
455 #define nofork_save      (G.nofork_save     )
456 #endif
457 #if ENABLE_HUSH_JOB
458 #define toplevel_jb      (G.toplevel_jb     )
459 #endif
460 #define charmap          (G.charmap         )
461 #define user_input_buf   (G.user_input_buf  )
462 #define INIT_G() do { \
463         SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
464 } while (0)
465
466
467 #define B_CHUNK  100
468 #define B_NOSPAC 1
469 #define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
470
471 #if 1
472 /* Normal */
473 static void syntax(const char *msg)
474 {
475         /* Was using fancy stuff:
476          * (interactive_fd ? bb_error_msg : bb_error_msg_and_die)(...params...)
477          * but it SEGVs. ?! Oh well... explicit temp ptr works around that */
478         void (*fp)(const char *s, ...);
479
480         fp = (interactive_fd ? bb_error_msg : bb_error_msg_and_die);
481         fp(msg ? "%s: %s" : "syntax error", "syntax error", msg);
482 }
483
484 #else
485 /* Debug */
486 static void syntax_lineno(int line)
487 {
488         void (*fp)(const char *s, ...);
489
490         fp = (interactive_fd ? bb_error_msg : bb_error_msg_and_die);
491         fp("syntax error hush.c:%d", line);
492 }
493 #define syntax(str) syntax_lineno(__LINE__)
494 #endif
495
496 /* Index of subroutines: */
497 /*   o_string manipulation: */
498 static int b_check_space(o_string *o, int len);
499 static int b_addchr(o_string *o, int ch);
500 static void b_reset(o_string *o);
501 static int b_addqchr(o_string *o, int ch, int quote);
502 /*  in_str manipulations: */
503 static int static_get(struct in_str *i);
504 static int static_peek(struct in_str *i);
505 static int file_get(struct in_str *i);
506 static int file_peek(struct in_str *i);
507 static void setup_file_in_str(struct in_str *i, FILE *f);
508 static void setup_string_in_str(struct in_str *i, const char *s);
509 /*  "run" the final data structures: */
510 #if !defined(DEBUG_CLEAN)
511 #define free_pipe_list(head, indent) free_pipe_list(head)
512 #define free_pipe(pi, indent)        free_pipe(pi)
513 #endif
514 static int free_pipe_list(struct pipe *head, int indent);
515 static int free_pipe(struct pipe *pi, int indent);
516 /*  really run the final data structures: */
517 static int setup_redirects(struct child_prog *prog, int squirrel[]);
518 static int run_list(struct pipe *pi);
519 static void pseudo_exec_argv(char **argv) ATTRIBUTE_NORETURN;
520 static void pseudo_exec(struct child_prog *child) ATTRIBUTE_NORETURN;
521 static int run_pipe(struct pipe *pi);
522 /*   extended glob support: */
523 static char **globhack(const char *src, char **strings);
524 static int glob_needed(const char *s);
525 static int xglob(o_string *dest, char ***pglob);
526 /*   variable assignment: */
527 static int is_assignment(const char *s);
528 /*   data structure manipulation: */
529 static int setup_redirect(struct p_context *ctx, int fd, redir_type style, struct in_str *input);
530 static void initialize_context(struct p_context *ctx);
531 static int done_word(o_string *dest, struct p_context *ctx);
532 static int done_command(struct p_context *ctx);
533 static int done_pipe(struct p_context *ctx, pipe_style type);
534 /*   primary string parsing: */
535 static int redirect_dup_num(struct in_str *input);
536 static int redirect_opt_num(o_string *o);
537 #if ENABLE_HUSH_TICK
538 static int process_command_subs(o_string *dest, /*struct p_context *ctx,*/
539                 struct in_str *input, const char *subst_end);
540 #endif
541 static int parse_group(o_string *dest, struct p_context *ctx, struct in_str *input, int ch);
542 static const char *lookup_param(const char *src);
543 static int handle_dollar(o_string *dest, /*struct p_context *ctx,*/
544                 struct in_str *input);
545 static int parse_stream(o_string *dest, struct p_context *ctx, struct in_str *input0, const char *end_trigger);
546 /*   setup: */
547 static int parse_and_run_stream(struct in_str *inp, int parse_flag);
548 static int parse_and_run_string(const char *s, int parse_flag);
549 static int parse_and_run_file(FILE *f);
550 /*   job management: */
551 static int checkjobs(struct pipe* fg_pipe);
552 #if ENABLE_HUSH_JOB
553 static int checkjobs_and_fg_shell(struct pipe* fg_pipe);
554 static void insert_bg_job(struct pipe *pi);
555 static void remove_bg_job(struct pipe *pi);
556 static void delete_finished_bg_job(struct pipe *pi);
557 #else
558 int checkjobs_and_fg_shell(struct pipe* fg_pipe); /* never called */
559 #endif
560 /*     local variable support */
561 static char **expand_strvec_to_strvec(char **argv);
562 /* used for eval */
563 static char *expand_strvec_to_string(char **argv);
564 /* used for expansion of right hand of assignments */
565 static char *expand_string_to_string(const char *str);
566 static struct variable *get_local_var(const char *name);
567 static int set_local_var(char *str, int flg_export);
568 static void unset_local_var(const char *name);
569
570
571 static char **add_strings_to_strings(int need_xstrdup, char **strings, char **add)
572 {
573         int i;
574         unsigned count1;
575         unsigned count2;
576         char **v;
577
578         v = strings;
579         count1 = 0;
580         if (v) {
581                 while (*v) {
582                         count1++;
583                         v++;
584                 }
585         }
586         count2 = 0;
587         v = add;
588         while (*v) {
589                 count2++;
590                 v++;
591         }
592         v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
593         v[count1 + count2] = NULL;
594         i = count2;
595         while (--i >= 0)
596                 v[count1 + i] = need_xstrdup ? xstrdup(add[i]) : add[i];
597         return v;
598 }
599
600 /* 'add' should be a malloced pointer */
601 static char **add_string_to_strings(char **strings, char *add)
602 {
603         char *v[2];
604
605         v[0] = add;
606         v[1] = NULL;
607
608         return add_strings_to_strings(0, strings, v);
609 }
610
611 static void free_strings(char **strings)
612 {
613         if (strings) {
614                 char **v = strings;
615                 while (*v)
616                         free(*v++);
617                 free(strings);
618         }
619 }
620
621
622 /* Function prototypes for builtins */
623 static int builtin_cd(char **argv);
624 static int builtin_echo(char **argv);
625 static int builtin_eval(char **argv);
626 static int builtin_exec(char **argv);
627 static int builtin_exit(char **argv);
628 static int builtin_export(char **argv);
629 #if ENABLE_HUSH_JOB
630 static int builtin_fg_bg(char **argv);
631 static int builtin_jobs(char **argv);
632 #endif
633 #if ENABLE_HUSH_HELP
634 static int builtin_help(char **argv);
635 #endif
636 static int builtin_pwd(char **argv);
637 static int builtin_read(char **argv);
638 static int builtin_test(char **argv);
639 static int builtin_set(char **argv);
640 static int builtin_shift(char **argv);
641 static int builtin_source(char **argv);
642 static int builtin_umask(char **argv);
643 static int builtin_unset(char **argv);
644 //static int builtin_not_written(char **argv);
645
646 /* Table of built-in functions.  They can be forked or not, depending on
647  * context: within pipes, they fork.  As simple commands, they do not.
648  * When used in non-forking context, they can change global variables
649  * in the parent shell process.  If forked, of course they cannot.
650  * For example, 'unset foo | whatever' will parse and run, but foo will
651  * still be set at the end. */
652 struct built_in_command {
653         const char *cmd;                /* name */
654         int (*function) (char **argv);  /* function ptr */
655 #if ENABLE_HUSH_HELP
656         const char *descr;              /* description */
657 #define BLTIN(cmd, func, help) { cmd, func, help }
658 #else
659 #define BLTIN(cmd, func, help) { cmd, func }
660 #endif
661 };
662
663 /* For now, echo and test are unconditionally enabled.
664  * Maybe make it configurable? */
665 static const struct built_in_command bltins[] = {
666         BLTIN("["     , builtin_test, "Test condition"),
667         BLTIN("[["    , builtin_test, "Test condition"),
668 #if ENABLE_HUSH_JOB
669         BLTIN("bg"    , builtin_fg_bg, "Resume a job in the background"),
670 #endif
671 //      BLTIN("break" , builtin_not_written, "Exit for, while or until loop"),
672         BLTIN("cd"    , builtin_cd, "Change working directory"),
673 //      BLTIN("continue", builtin_not_written, "Continue for, while or until loop"),
674         BLTIN("echo"  , builtin_echo, "Write strings to stdout"),
675         BLTIN("eval"  , builtin_eval, "Construct and run shell command"),
676         BLTIN("exec"  , builtin_exec, "Exec command, replacing this shell with the exec'd process"),
677         BLTIN("exit"  , builtin_exit, "Exit from shell"),
678         BLTIN("export", builtin_export, "Set environment variable"),
679 #if ENABLE_HUSH_JOB
680         BLTIN("fg"    , builtin_fg_bg, "Bring job into the foreground"),
681         BLTIN("jobs"  , builtin_jobs, "Lists the active jobs"),
682 #endif
683 // TODO: remove pwd? we have it as an applet...
684         BLTIN("pwd"   , builtin_pwd, "Print current directory"),
685         BLTIN("read"  , builtin_read, "Input environment variable"),
686 //      BLTIN("return", builtin_not_written, "Return from a function"),
687         BLTIN("set"   , builtin_set, "Set/unset shell local variables"),
688         BLTIN("shift" , builtin_shift, "Shift positional parameters"),
689 //      BLTIN("trap"  , builtin_not_written, "Trap signals"),
690         BLTIN("test"  , builtin_test, "Test condition"),
691 //      BLTIN("ulimit", builtin_not_written, "Controls resource limits"),
692         BLTIN("umask" , builtin_umask, "Sets file creation mask"),
693         BLTIN("unset" , builtin_unset, "Unset environment variable"),
694         BLTIN("."     , builtin_source, "Source-in and run commands in a file"),
695 #if ENABLE_HUSH_HELP
696         BLTIN("help"  , builtin_help, "List shell built-in commands"),
697 #endif
698         BLTIN(NULL, NULL, NULL)
699 };
700
701 #if ENABLE_HUSH_JOB
702
703 /* Signals are grouped, we handle them in batches */
704 static void set_fatal_sighandler(void (*handler)(int))
705 {
706         bb_signals(0
707                 + (1 << SIGILL)
708                 + (1 << SIGTRAP)
709                 + (1 << SIGABRT)
710                 + (1 << SIGFPE)
711                 + (1 << SIGBUS)
712                 + (1 << SIGSEGV)
713         /* bash 3.2 seems to handle these just like 'fatal' ones */
714                 + (1 << SIGHUP)
715                 + (1 << SIGPIPE)
716                 + (1 << SIGALRM)
717                 , handler);
718 }
719 static void set_jobctrl_sighandler(void (*handler)(int))
720 {
721         bb_signals(0
722                 + (1 << SIGTSTP)
723                 + (1 << SIGTTIN)
724                 + (1 << SIGTTOU)
725                 , handler);
726 }
727 static void set_misc_sighandler(void (*handler)(int))
728 {
729         bb_signals(0
730                 + (1 << SIGINT)
731                 + (1 << SIGQUIT)
732                 + (1 << SIGTERM)
733                 , handler);
734 }
735 /* SIGCHLD is special and handled separately */
736
737 static void set_every_sighandler(void (*handler)(int))
738 {
739         set_fatal_sighandler(handler);
740         set_jobctrl_sighandler(handler);
741         set_misc_sighandler(handler);
742         signal(SIGCHLD, handler);
743 }
744
745 static void handler_ctrl_c(int sig ATTRIBUTE_UNUSED)
746 {
747         debug_printf_jobs("got sig %d\n", sig);
748 // as usual we can have all kinds of nasty problems with leaked malloc data here
749         siglongjmp(toplevel_jb, 1);
750 }
751
752 static void handler_ctrl_z(int sig ATTRIBUTE_UNUSED)
753 {
754         pid_t pid;
755
756         debug_printf_jobs("got tty sig %d in pid %d\n", sig, getpid());
757         pid = fork();
758         if (pid < 0) /* can't fork. Pretend there was no ctrl-Z */
759                 return;
760         ctrl_z_flag = 1;
761         if (!pid) { /* child */
762                 if (ENABLE_HUSH_JOB)
763                         die_sleep = 0; /* let nofork's xfuncs die */
764                 setpgrp();
765                 debug_printf_jobs("set pgrp for child %d ok\n", getpid());
766                 set_every_sighandler(SIG_DFL);
767                 raise(SIGTSTP); /* resend TSTP so that child will be stopped */
768                 debug_printf_jobs("returning in child\n");
769                 /* return to nofork, it will eventually exit now,
770                  * not return back to shell */
771                 return;
772         }
773         /* parent */
774         /* finish filling up pipe info */
775         toplevel_list->pgrp = pid; /* child is in its own pgrp */
776         toplevel_list->progs[0].pid = pid;
777         /* parent needs to longjmp out of running nofork.
778          * we will "return" exitcode 0, with child put in background */
779 // as usual we can have all kinds of nasty problems with leaked malloc data here
780         debug_printf_jobs("siglongjmp in parent\n");
781         siglongjmp(toplevel_jb, 1);
782 }
783
784 /* Restores tty foreground process group, and exits.
785  * May be called as signal handler for fatal signal
786  * (will faithfully resend signal to itself, producing correct exit state)
787  * or called directly with -EXITCODE.
788  * We also call it if xfunc is exiting. */
789 static void sigexit(int sig) ATTRIBUTE_NORETURN;
790 static void sigexit(int sig)
791 {
792         /* Disable all signals: job control, SIGPIPE, etc. */
793         sigprocmask_allsigs(SIG_BLOCK);
794
795         if (interactive_fd)
796                 tcsetpgrp(interactive_fd, saved_tty_pgrp);
797
798         /* Not a signal, just exit */
799         if (sig <= 0)
800                 _exit(- sig);
801
802         kill_myself_with_sig(sig); /* does not return */
803 }
804
805 /* Restores tty foreground process group, and exits. */
806 static void hush_exit(int exitcode) ATTRIBUTE_NORETURN;
807 static void hush_exit(int exitcode)
808 {
809         fflush(NULL); /* flush all streams */
810         sigexit(- (exitcode & 0xff));
811 }
812
813 #else /* !JOB */
814
815 #define set_fatal_sighandler(handler)   ((void)0)
816 #define set_jobctrl_sighandler(handler) ((void)0)
817 #define set_misc_sighandler(handler)    ((void)0)
818 #define hush_exit(e)                    exit(e)
819
820 #endif /* JOB */
821
822
823 static const char *set_cwd(void)
824 {
825         if (cwd == bb_msg_unknown)
826                 cwd = NULL;     /* xrealloc_getcwd_or_warn(arg) calls free(arg)! */
827         cwd = xrealloc_getcwd_or_warn((char *)cwd);
828         if (!cwd)
829                 cwd = bb_msg_unknown;
830         return cwd;
831 }
832
833
834 /* built-in 'test' handler */
835 static int builtin_test(char **argv)
836 {
837         int argc = 0;
838         while (*argv) {
839                 argc++;
840                 argv++;
841         }
842         return test_main(argc, argv - argc);
843 }
844
845 /* built-in 'test' handler */
846 static int builtin_echo(char **argv)
847 {
848         int argc = 0;
849         while (*argv) {
850                 argc++;
851                 argv++;
852         }
853         return echo_main(argc, argv - argc);
854 }
855
856 /* built-in 'eval' handler */
857 static int builtin_eval(char **argv)
858 {
859         int rcode = EXIT_SUCCESS;
860
861         if (argv[1]) {
862                 char *str = expand_strvec_to_string(argv + 1);
863                 parse_and_run_string(str, PARSEFLAG_EXIT_FROM_LOOP |
864                                         PARSEFLAG_SEMICOLON);
865                 free(str);
866                 rcode = last_return_code;
867         }
868         return rcode;
869 }
870
871 /* built-in 'cd <path>' handler */
872 static int builtin_cd(char **argv)
873 {
874         const char *newdir;
875         if (argv[1] == NULL) {
876                 // bash does nothing (exitcode 0) if HOME is ""; if it's unset,
877                 // bash says "bash: cd: HOME not set" and does nothing (exitcode 1)
878                 newdir = getenv("HOME") ? : "/";
879         } else
880                 newdir = argv[1];
881         if (chdir(newdir)) {
882                 printf("cd: %s: %s\n", newdir, strerror(errno));
883                 return EXIT_FAILURE;
884         }
885         set_cwd();
886         return EXIT_SUCCESS;
887 }
888
889 /* built-in 'exec' handler */
890 static int builtin_exec(char **argv)
891 {
892         if (argv[1] == NULL)
893                 return EXIT_SUCCESS; /* bash does this */
894 // FIXME: if exec fails, bash does NOT exit! We do...
895         pseudo_exec_argv(argv + 1);
896         /* never returns */
897 }
898
899 /* built-in 'exit' handler */
900 static int builtin_exit(char **argv)
901 {
902 // TODO: bash does it ONLY on top-level sh exit (+interacive only?)
903         //puts("exit"); /* bash does it */
904 // TODO: warn if we have background jobs: "There are stopped jobs"
905 // On second consecutive 'exit', exit anyway.
906
907         if (argv[1] == NULL)
908                 hush_exit(last_return_code);
909         /* mimic bash: exit 123abc == exit 255 + error msg */
910         xfunc_error_retval = 255;
911         /* bash: exit -2 == exit 254, no error msg */
912         hush_exit(xatoi(argv[1]) & 0xff);
913 }
914
915 /* built-in 'export VAR=value' handler */
916 static int builtin_export(char **argv)
917 {
918         const char *value;
919         char *name = argv[1];
920
921         if (name == NULL) {
922                 // TODO:
923                 // ash emits: export VAR='VAL'
924                 // bash: declare -x VAR="VAL"
925                 // (both also escape as needed (quotes, $, etc))
926                 char **e = environ;
927                 if (e)
928                         while (*e)
929                                 puts(*e++);
930                 return EXIT_SUCCESS;
931         }
932
933         value = strchr(name, '=');
934         if (!value) {
935                 /* They are exporting something without a =VALUE */
936                 struct variable *var;
937
938                 var = get_local_var(name);
939                 if (var) {
940                         var->flg_export = 1;
941                         putenv(var->varstr);
942                 }
943                 /* bash does not return an error when trying to export
944                  * an undefined variable.  Do likewise. */
945                 return EXIT_SUCCESS;
946         }
947
948         set_local_var(xstrdup(name), 1);
949         return EXIT_SUCCESS;
950 }
951
952 #if ENABLE_HUSH_JOB
953 /* built-in 'fg' and 'bg' handler */
954 static int builtin_fg_bg(char **argv)
955 {
956         int i, jobnum;
957         struct pipe *pi;
958
959         if (!interactive_fd)
960                 return EXIT_FAILURE;
961         /* If they gave us no args, assume they want the last backgrounded task */
962         if (!argv[1]) {
963                 for (pi = job_list; pi; pi = pi->next) {
964                         if (pi->jobid == last_jobid) {
965                                 goto found;
966                         }
967                 }
968                 bb_error_msg("%s: no current job", argv[0]);
969                 return EXIT_FAILURE;
970         }
971         if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
972                 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
973                 return EXIT_FAILURE;
974         }
975         for (pi = job_list; pi; pi = pi->next) {
976                 if (pi->jobid == jobnum) {
977                         goto found;
978                 }
979         }
980         bb_error_msg("%s: %d: no such job", argv[0], jobnum);
981         return EXIT_FAILURE;
982  found:
983         // TODO: bash prints a string representation
984         // of job being foregrounded (like "sleep 1 | cat")
985         if (*argv[0] == 'f') {
986                 /* Put the job into the foreground.  */
987                 tcsetpgrp(interactive_fd, pi->pgrp);
988         }
989
990         /* Restart the processes in the job */
991         debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_progs, pi->pgrp);
992         for (i = 0; i < pi->num_progs; i++) {
993                 debug_printf_jobs("reviving pid %d\n", pi->progs[i].pid);
994                 pi->progs[i].is_stopped = 0;
995         }
996         pi->stopped_progs = 0;
997
998         i = kill(- pi->pgrp, SIGCONT);
999         if (i < 0) {
1000                 if (errno == ESRCH) {
1001                         delete_finished_bg_job(pi);
1002                         return EXIT_SUCCESS;
1003                 } else {
1004                         bb_perror_msg("kill (SIGCONT)");
1005                 }
1006         }
1007
1008         if (*argv[0] == 'f') {
1009                 remove_bg_job(pi);
1010                 return checkjobs_and_fg_shell(pi);
1011         }
1012         return EXIT_SUCCESS;
1013 }
1014 #endif
1015
1016 /* built-in 'help' handler */
1017 #if ENABLE_HUSH_HELP
1018 static int builtin_help(char **argv ATTRIBUTE_UNUSED)
1019 {
1020         const struct built_in_command *x;
1021
1022         printf("\nBuilt-in commands:\n");
1023         printf("-------------------\n");
1024         for (x = bltins; x->cmd; x++) {
1025                 printf("%s\t%s\n", x->cmd, x->descr);
1026         }
1027         printf("\n\n");
1028         return EXIT_SUCCESS;
1029 }
1030 #endif
1031
1032 #if ENABLE_HUSH_JOB
1033 /* built-in 'jobs' handler */
1034 static int builtin_jobs(char **argv ATTRIBUTE_UNUSED)
1035 {
1036         struct pipe *job;
1037         const char *status_string;
1038
1039         for (job = job_list; job; job = job->next) {
1040                 if (job->running_progs == job->stopped_progs)
1041                         status_string = "Stopped";
1042                 else
1043                         status_string = "Running";
1044
1045                 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
1046         }
1047         return EXIT_SUCCESS;
1048 }
1049 #endif
1050
1051 /* built-in 'pwd' handler */
1052 static int builtin_pwd(char **argv ATTRIBUTE_UNUSED)
1053 {
1054         puts(set_cwd());
1055         return EXIT_SUCCESS;
1056 }
1057
1058 /* built-in 'read VAR' handler */
1059 static int builtin_read(char **argv)
1060 {
1061         char *string;
1062         const char *name = argv[1] ? argv[1] : "REPLY";
1063
1064         string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
1065         return set_local_var(string, 0);
1066 }
1067
1068 /* built-in 'set [VAR=value]' handler */
1069 static int builtin_set(char **argv)
1070 {
1071         char *temp = argv[1];
1072         struct variable *e;
1073
1074         if (temp == NULL)
1075                 for (e = top_var; e; e = e->next)
1076                         puts(e->varstr);
1077         else
1078                 set_local_var(xstrdup(temp), 0);
1079
1080         return EXIT_SUCCESS;
1081 }
1082
1083
1084 /* Built-in 'shift' handler */
1085 static int builtin_shift(char **argv)
1086 {
1087         int n = 1;
1088         if (argv[1]) {
1089                 n = atoi(argv[1]);
1090         }
1091         if (n >= 0 && n < global_argc) {
1092                 global_argv[n] = global_argv[0];
1093                 global_argc -= n;
1094                 global_argv += n;
1095                 return EXIT_SUCCESS;
1096         }
1097         return EXIT_FAILURE;
1098 }
1099
1100 /* Built-in '.' handler (read-in and execute commands from file) */
1101 static int builtin_source(char **argv)
1102 {
1103         FILE *input;
1104         int status;
1105
1106         if (argv[1] == NULL)
1107                 return EXIT_FAILURE;
1108
1109         /* XXX search through $PATH is missing */
1110         input = fopen(argv[1], "r");
1111         if (!input) {
1112                 bb_error_msg("cannot open '%s'", argv[1]);
1113                 return EXIT_FAILURE;
1114         }
1115         close_on_exec_on(fileno(input));
1116
1117         /* Now run the file */
1118         /* XXX argv and argc are broken; need to save old global_argv
1119          * (pointer only is OK!) on this stack frame,
1120          * set global_argv=argv+1, recurse, and restore. */
1121         status = parse_and_run_file(input);
1122         fclose(input);
1123         return status;
1124 }
1125
1126 static int builtin_umask(char **argv)
1127 {
1128         mode_t new_umask;
1129         const char *arg = argv[1];
1130         char *end;
1131         if (arg) {
1132                 new_umask = strtoul(arg, &end, 8);
1133                 if (*end != '\0' || end == arg) {
1134                         return EXIT_FAILURE;
1135                 }
1136         } else {
1137                 new_umask = umask(0);
1138                 printf("%.3o\n", (unsigned) new_umask);
1139         }
1140         umask(new_umask);
1141         return EXIT_SUCCESS;
1142 }
1143
1144 /* built-in 'unset VAR' handler */
1145 static int builtin_unset(char **argv)
1146 {
1147         /* bash always returns true */
1148         unset_local_var(argv[1]);
1149         return EXIT_SUCCESS;
1150 }
1151
1152 //static int builtin_not_written(char **argv)
1153 //{
1154 //      printf("builtin_%s not written\n", argv[0]);
1155 //      return EXIT_FAILURE;
1156 //}
1157
1158 static int b_check_space(o_string *o, int len)
1159 {
1160         /* It would be easy to drop a more restrictive policy
1161          * in here, such as setting a maximum string length */
1162         if (o->length + len > o->maxlen) {
1163                 /* assert(data == NULL || o->maxlen != 0); */
1164                 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1165                 o->data = xrealloc(o->data, 1 + o->maxlen);
1166         }
1167         return o->data == NULL;
1168 }
1169
1170 static int b_addchr(o_string *o, int ch)
1171 {
1172         debug_printf("b_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1173         if (b_check_space(o, 1))
1174                 return B_NOSPAC;
1175         o->data[o->length] = ch;
1176         o->length++;
1177         o->data[o->length] = '\0';
1178         return 0;
1179 }
1180
1181 static void b_reset(o_string *o)
1182 {
1183         o->length = 0;
1184         o->nonnull = 0;
1185         if (o->data)
1186                 o->data[0] = '\0';
1187 }
1188
1189 static void b_free(o_string *o)
1190 {
1191         free(o->data);
1192         memset(o, 0, sizeof(*o));
1193 }
1194
1195 /* My analysis of quoting semantics tells me that state information
1196  * is associated with a destination, not a source.
1197  */
1198 static int b_addqchr(o_string *o, int ch, int quote)
1199 {
1200         if (quote && strchr("*?[\\", ch)) {
1201                 int rc;
1202                 rc = b_addchr(o, '\\');
1203                 if (rc)
1204                         return rc;
1205         }
1206         return b_addchr(o, ch);
1207 }
1208
1209 static int static_get(struct in_str *i)
1210 {
1211         int ch = *i->p++;
1212         if (ch == '\0') return EOF;
1213         return ch;
1214 }
1215
1216 static int static_peek(struct in_str *i)
1217 {
1218         return *i->p;
1219 }
1220
1221 #if ENABLE_HUSH_INTERACTIVE
1222 #if ENABLE_FEATURE_EDITING
1223 static void cmdedit_set_initial_prompt(void)
1224 {
1225 #if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
1226         PS1 = NULL;
1227 #else
1228         PS1 = getenv("PS1");
1229         if (PS1 == NULL)
1230                 PS1 = "\\w \\$ ";
1231 #endif
1232 }
1233 #endif /* EDITING */
1234
1235 static const char* setup_prompt_string(int promptmode)
1236 {
1237         const char *prompt_str;
1238         debug_printf("setup_prompt_string %d ", promptmode);
1239 #if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
1240         /* Set up the prompt */
1241         if (promptmode == 0) { /* PS1 */
1242                 free((char*)PS1);
1243                 PS1 = xasprintf("%s %c ", cwd, (geteuid() != 0) ? '$' : '#');
1244                 prompt_str = PS1;
1245         } else {
1246                 prompt_str = PS2;
1247         }
1248 #else
1249         prompt_str = (promptmode == 0) ? PS1 : PS2;
1250 #endif
1251         debug_printf("result '%s'\n", prompt_str);
1252         return prompt_str;
1253 }
1254
1255 static void get_user_input(struct in_str *i)
1256 {
1257         int r;
1258         const char *prompt_str;
1259
1260         prompt_str = setup_prompt_string(i->promptmode);
1261 #if ENABLE_FEATURE_EDITING
1262         /* Enable command line editing only while a command line
1263          * is actually being read */
1264         do {
1265                 r = read_line_input(prompt_str, user_input_buf, BUFSIZ-1, line_input_state);
1266         } while (r == 0); /* repeat if Ctrl-C */
1267         i->eof_flag = (r < 0);
1268         if (i->eof_flag) { /* EOF/error detected */
1269                 user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1270                 user_input_buf[1] = '\0';
1271         }
1272 #else
1273         fputs(prompt_str, stdout);
1274         fflush(stdout);
1275         user_input_buf[0] = r = fgetc(i->file);
1276         /*user_input_buf[1] = '\0'; - already is and never changed */
1277         i->eof_flag = (r == EOF);
1278 #endif
1279         i->p = user_input_buf;
1280 }
1281 #endif  /* INTERACTIVE */
1282
1283 /* This is the magic location that prints prompts
1284  * and gets data back from the user */
1285 static int file_get(struct in_str *i)
1286 {
1287         int ch;
1288
1289         /* If there is data waiting, eat it up */
1290         if (i->p && *i->p) {
1291 #if ENABLE_HUSH_INTERACTIVE
1292  take_cached:
1293 #endif
1294                 ch = *i->p++;
1295                 if (i->eof_flag && !*i->p)
1296                         ch = EOF;
1297         } else {
1298                 /* need to double check i->file because we might be doing something
1299                  * more complicated by now, like sourcing or substituting. */
1300 #if ENABLE_HUSH_INTERACTIVE
1301                 if (interactive_fd && i->promptme && i->file == stdin) {
1302                         do {
1303                                 get_user_input(i);
1304                         } while (!*i->p); /* need non-empty line */
1305                         i->promptmode = 1; /* PS2 */
1306                         i->promptme = 0;
1307                         goto take_cached;
1308                 }
1309 #endif
1310                 ch = fgetc(i->file);
1311         }
1312         debug_printf("file_get: got a '%c' %d\n", ch, ch);
1313 #if ENABLE_HUSH_INTERACTIVE
1314         if (ch == '\n')
1315                 i->promptme = 1;
1316 #endif
1317         return ch;
1318 }
1319
1320 /* All the callers guarantee this routine will never be
1321  * used right after a newline, so prompting is not needed.
1322  */
1323 static int file_peek(struct in_str *i)
1324 {
1325         int ch;
1326         if (i->p && *i->p) {
1327                 if (i->eof_flag && !i->p[1])
1328                         return EOF;
1329                 return *i->p;
1330         }
1331         ch = fgetc(i->file);
1332         i->eof_flag = (ch == EOF);
1333         i->peek_buf[0] = ch;
1334         i->peek_buf[1] = '\0';
1335         i->p = i->peek_buf;
1336         debug_printf("file_peek: got a '%c' %d\n", *i->p, *i->p);
1337         return ch;
1338 }
1339
1340 static void setup_file_in_str(struct in_str *i, FILE *f)
1341 {
1342         i->peek = file_peek;
1343         i->get = file_get;
1344 #if ENABLE_HUSH_INTERACTIVE
1345         i->promptme = 1;
1346         i->promptmode = 0; /* PS1 */
1347 #endif
1348         i->file = f;
1349         i->p = NULL;
1350 }
1351
1352 static void setup_string_in_str(struct in_str *i, const char *s)
1353 {
1354         i->peek = static_peek;
1355         i->get = static_get;
1356 #if ENABLE_HUSH_INTERACTIVE
1357         i->promptme = 1;
1358         i->promptmode = 0; /* PS1 */
1359 #endif
1360         i->p = s;
1361         i->eof_flag = 0;
1362 }
1363
1364 /* squirrel != NULL means we squirrel away copies of stdin, stdout,
1365  * and stderr if they are redirected. */
1366 static int setup_redirects(struct child_prog *prog, int squirrel[])
1367 {
1368         int openfd, mode;
1369         struct redir_struct *redir;
1370
1371         for (redir = prog->redirects; redir; redir = redir->next) {
1372                 if (redir->dup == -1 && redir->glob_word == NULL) {
1373                         /* something went wrong in the parse.  Pretend it didn't happen */
1374                         continue;
1375                 }
1376                 if (redir->dup == -1) {
1377                         char *p;
1378                         mode = redir_table[redir->type].mode;
1379                         p = expand_string_to_string(redir->glob_word[0]);
1380                         openfd = open_or_warn(p, mode);
1381                         free(p);
1382                         if (openfd < 0) {
1383                         /* this could get lost if stderr has been redirected, but
1384                            bash and ash both lose it as well (though zsh doesn't!) */
1385                                 return 1;
1386                         }
1387                 } else {
1388                         openfd = redir->dup;
1389                 }
1390
1391                 if (openfd != redir->fd) {
1392                         if (squirrel && redir->fd < 3) {
1393                                 squirrel[redir->fd] = dup(redir->fd);
1394                         }
1395                         if (openfd == -3) {
1396                                 //close(openfd); // close(-3) ??!
1397                         } else {
1398                                 dup2(openfd, redir->fd);
1399                                 if (redir->dup == -1)
1400                                         close(openfd);
1401                         }
1402                 }
1403         }
1404         return 0;
1405 }
1406
1407 static void restore_redirects(int squirrel[])
1408 {
1409         int i, fd;
1410         for (i = 0; i < 3; i++) {
1411                 fd = squirrel[i];
1412                 if (fd != -1) {
1413                         /* We simply die on error */
1414                         xmove_fd(fd, i);
1415                 }
1416         }
1417 }
1418
1419 /* Called after [v]fork() in run_pipe(), or from builtin_exec().
1420  * Never returns.
1421  * XXX no exit() here.  If you don't exec, use _exit instead.
1422  * The at_exit handlers apparently confuse the calling process,
1423  * in particular stdin handling.  Not sure why? -- because of vfork! (vda) */
1424 static void pseudo_exec_argv(char **argv)
1425 {
1426         int i, rcode;
1427         char *p;
1428         const struct built_in_command *x;
1429
1430         for (i = 0; is_assignment(argv[i]); i++) {
1431                 debug_printf_exec("pid %d environment modification: %s\n",
1432                                 getpid(), argv[i]);
1433 // FIXME: vfork case??
1434                 p = expand_string_to_string(argv[i]);
1435                 putenv(p);
1436         }
1437         argv += i;
1438         /* If a variable is assigned in a forest, and nobody listens,
1439          * was it ever really set?
1440          */
1441         if (!argv[0])
1442                 _exit(EXIT_SUCCESS);
1443
1444         argv = expand_strvec_to_strvec(argv);
1445
1446         /*
1447          * Check if the command matches any of the builtins.
1448          * Depending on context, this might be redundant.  But it's
1449          * easier to waste a few CPU cycles than it is to figure out
1450          * if this is one of those cases.
1451          */
1452         for (x = bltins; x->cmd; x++) {
1453                 if (strcmp(argv[0], x->cmd) == 0) {
1454                         debug_printf_exec("running builtin '%s'\n", argv[0]);
1455                         rcode = x->function(argv);
1456                         fflush(stdout);
1457                         _exit(rcode);
1458                 }
1459         }
1460
1461         /* Check if the command matches any busybox applets */
1462 #if ENABLE_FEATURE_SH_STANDALONE
1463         if (strchr(argv[0], '/') == NULL) {
1464                 int a = find_applet_by_name(argv[0]);
1465                 if (a >= 0) {
1466                         if (APPLET_IS_NOEXEC(a)) {
1467                                 debug_printf_exec("running applet '%s'\n", argv[0]);
1468 // is it ok that run_applet_no_and_exit() does exit(), not _exit()?
1469                                 run_applet_no_and_exit(a, argv);
1470                         }
1471                         /* re-exec ourselves with the new arguments */
1472                         debug_printf_exec("re-execing applet '%s'\n", argv[0]);
1473                         execvp(bb_busybox_exec_path, argv);
1474                         /* If they called chroot or otherwise made the binary no longer
1475                          * executable, fall through */
1476                 }
1477         }
1478 #endif
1479
1480         debug_printf_exec("execing '%s'\n", argv[0]);
1481         execvp(argv[0], argv);
1482         bb_perror_msg("cannot exec '%s'", argv[0]);
1483         _exit(1);
1484 }
1485
1486 /* Called after [v]fork() in run_pipe()
1487  */
1488 static void pseudo_exec(struct child_prog *child)
1489 {
1490 // FIXME: buggy wrt NOMMU! Must not modify any global data
1491 // until it does exec/_exit, but currently it does
1492 // (puts malloc'ed stuff into environment)
1493         if (child->argv)
1494                 pseudo_exec_argv(child->argv);
1495
1496         if (child->group) {
1497 #if !BB_MMU
1498                 bb_error_msg_and_die("nested lists are not supported on NOMMU");
1499 #else
1500                 int rcode;
1501
1502 #if ENABLE_HUSH_INTERACTIVE
1503 // run_list_level now takes care of it?
1504 //              debug_printf_exec("pseudo_exec: setting interactive_fd=0\n");
1505 //              interactive_fd = 0;    /* crucial!!!! */
1506 #endif
1507                 debug_printf_exec("pseudo_exec: run_list\n");
1508                 rcode = run_list(child->group);
1509                 /* OK to leak memory by not calling free_pipe_list,
1510                  * since this process is about to exit */
1511                 _exit(rcode);
1512 #endif
1513         }
1514
1515         /* Can happen.  See what bash does with ">foo" by itself. */
1516         debug_printf("trying to pseudo_exec null command\n");
1517         _exit(EXIT_SUCCESS);
1518 }
1519
1520 #if ENABLE_HUSH_JOB
1521 static const char *get_cmdtext(struct pipe *pi)
1522 {
1523         char **argv;
1524         char *p;
1525         int len;
1526
1527         /* This is subtle. ->cmdtext is created only on first backgrounding.
1528          * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
1529          * On subsequent bg argv is trashed, but we won't use it */
1530         if (pi->cmdtext)
1531                 return pi->cmdtext;
1532         argv = pi->progs[0].argv;
1533         if (!argv || !argv[0])
1534                 return (pi->cmdtext = xzalloc(1));
1535
1536         len = 0;
1537         do len += strlen(*argv) + 1; while (*++argv);
1538         pi->cmdtext = p = xmalloc(len);
1539         argv = pi->progs[0].argv;
1540         do {
1541                 len = strlen(*argv);
1542                 memcpy(p, *argv, len);
1543                 p += len;
1544                 *p++ = ' ';
1545         } while (*++argv);
1546         p[-1] = '\0';
1547         return pi->cmdtext;
1548 }
1549
1550 static void insert_bg_job(struct pipe *pi)
1551 {
1552         struct pipe *thejob;
1553         int i;
1554
1555         /* Linear search for the ID of the job to use */
1556         pi->jobid = 1;
1557         for (thejob = job_list; thejob; thejob = thejob->next)
1558                 if (thejob->jobid >= pi->jobid)
1559                         pi->jobid = thejob->jobid + 1;
1560
1561         /* Add thejob to the list of running jobs */
1562         if (!job_list) {
1563                 thejob = job_list = xmalloc(sizeof(*thejob));
1564         } else {
1565                 for (thejob = job_list; thejob->next; thejob = thejob->next)
1566                         continue;
1567                 thejob->next = xmalloc(sizeof(*thejob));
1568                 thejob = thejob->next;
1569         }
1570
1571         /* Physically copy the struct job */
1572         memcpy(thejob, pi, sizeof(struct pipe));
1573         thejob->progs = xzalloc(sizeof(pi->progs[0]) * pi->num_progs);
1574         /* We cannot copy entire pi->progs[] vector! Double free()s will happen */
1575         for (i = 0; i < pi->num_progs; i++) {
1576 // TODO: do we really need to have so many fields which are just dead weight
1577 // at execution stage?
1578                 thejob->progs[i].pid = pi->progs[i].pid;
1579                 /* all other fields are not used and stay zero */
1580         }
1581         thejob->next = NULL;
1582         thejob->cmdtext = xstrdup(get_cmdtext(pi));
1583
1584         /* We don't wait for background thejobs to return -- append it
1585            to the list of backgrounded thejobs and leave it alone */
1586         printf("[%d] %d %s\n", thejob->jobid, thejob->progs[0].pid, thejob->cmdtext);
1587         last_bg_pid = thejob->progs[0].pid;
1588         last_jobid = thejob->jobid;
1589 }
1590
1591 static void remove_bg_job(struct pipe *pi)
1592 {
1593         struct pipe *prev_pipe;
1594
1595         if (pi == job_list) {
1596                 job_list = pi->next;
1597         } else {
1598                 prev_pipe = job_list;
1599                 while (prev_pipe->next != pi)
1600                         prev_pipe = prev_pipe->next;
1601                 prev_pipe->next = pi->next;
1602         }
1603         if (job_list)
1604                 last_jobid = job_list->jobid;
1605         else
1606                 last_jobid = 0;
1607 }
1608
1609 /* remove a backgrounded job */
1610 static void delete_finished_bg_job(struct pipe *pi)
1611 {
1612         remove_bg_job(pi);
1613         pi->stopped_progs = 0;
1614         free_pipe(pi, 0);
1615         free(pi);
1616 }
1617 #endif /* JOB */
1618
1619 /* Checks to see if any processes have exited -- if they
1620    have, figure out why and see if a job has completed */
1621 static int checkjobs(struct pipe* fg_pipe)
1622 {
1623         int attributes;
1624         int status;
1625 #if ENABLE_HUSH_JOB
1626         int prognum = 0;
1627         struct pipe *pi;
1628 #endif
1629         pid_t childpid;
1630         int rcode = 0;
1631
1632         attributes = WUNTRACED;
1633         if (fg_pipe == NULL) {
1634                 attributes |= WNOHANG;
1635         }
1636
1637 /* Do we do this right?
1638  * bash-3.00# sleep 20 | false
1639  * <ctrl-Z pressed>
1640  * [3]+  Stopped          sleep 20 | false
1641  * bash-3.00# echo $?
1642  * 1   <========== bg pipe is not fully done, but exitcode is already known!
1643  */
1644
1645 //FIXME: non-interactive bash does not continue even if all processes in fg pipe
1646 //are stopped. Testcase: "cat | cat" in a script (not on command line)
1647 // + killall -STOP cat
1648
1649  wait_more:
1650 // TODO: safe_waitpid?
1651         while ((childpid = waitpid(-1, &status, attributes)) > 0) {
1652                 const int dead = WIFEXITED(status) || WIFSIGNALED(status);
1653
1654 #ifdef DEBUG_SHELL_JOBS
1655                 if (WIFSTOPPED(status))
1656                         debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
1657                                         childpid, WSTOPSIG(status), WEXITSTATUS(status));
1658                 if (WIFSIGNALED(status))
1659                         debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
1660                                         childpid, WTERMSIG(status), WEXITSTATUS(status));
1661                 if (WIFEXITED(status))
1662                         debug_printf_jobs("pid %d exited, exitcode %d\n",
1663                                         childpid, WEXITSTATUS(status));
1664 #endif
1665                 /* Were we asked to wait for fg pipe? */
1666                 if (fg_pipe) {
1667                         int i;
1668                         for (i = 0; i < fg_pipe->num_progs; i++) {
1669                                 debug_printf_jobs("check pid %d\n", fg_pipe->progs[i].pid);
1670                                 if (fg_pipe->progs[i].pid == childpid) {
1671                                         /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */
1672                                         if (dead) {
1673                                                 fg_pipe->progs[i].pid = 0;
1674                                                 fg_pipe->running_progs--;
1675                                                 if (i == fg_pipe->num_progs - 1)
1676                                                         /* last process gives overall exitstatus */
1677                                                         rcode = WEXITSTATUS(status);
1678                                         } else {
1679                                                 fg_pipe->progs[i].is_stopped = 1;
1680                                                 fg_pipe->stopped_progs++;
1681                                         }
1682                                         debug_printf_jobs("fg_pipe: running_progs %d stopped_progs %d\n",
1683                                                         fg_pipe->running_progs, fg_pipe->stopped_progs);
1684                                         if (fg_pipe->running_progs - fg_pipe->stopped_progs <= 0) {
1685                                                 /* All processes in fg pipe have exited/stopped */
1686 #if ENABLE_HUSH_JOB
1687                                                 if (fg_pipe->running_progs)
1688                                                         insert_bg_job(fg_pipe);
1689 #endif
1690                                                 return rcode;
1691                                         }
1692                                         /* There are still running processes in the fg pipe */
1693                                         goto wait_more;
1694                                 }
1695                         }
1696                         /* fall through to searching process in bg pipes */
1697                 }
1698
1699 #if ENABLE_HUSH_JOB
1700                 /* We asked to wait for bg or orphaned children */
1701                 /* No need to remember exitcode in this case */
1702                 for (pi = job_list; pi; pi = pi->next) {
1703                         prognum = 0;
1704                         while (prognum < pi->num_progs) {
1705                                 if (pi->progs[prognum].pid == childpid)
1706                                         goto found_pi_and_prognum;
1707                                 prognum++;
1708                         }
1709                 }
1710 #endif
1711
1712                 /* Happens when shell is used as init process (init=/bin/sh) */
1713                 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
1714                 goto wait_more;
1715
1716 #if ENABLE_HUSH_JOB
1717  found_pi_and_prognum:
1718                 if (dead) {
1719                         /* child exited */
1720                         pi->progs[prognum].pid = 0;
1721                         pi->running_progs--;
1722                         if (!pi->running_progs) {
1723                                 printf(JOB_STATUS_FORMAT, pi->jobid,
1724                                                         "Done", pi->cmdtext);
1725                                 delete_finished_bg_job(pi);
1726                         }
1727                 } else {
1728                         /* child stopped */
1729                         pi->stopped_progs++;
1730                         pi->progs[prognum].is_stopped = 1;
1731                 }
1732 #endif
1733         }
1734
1735         /* wait found no children or failed */
1736
1737         if (childpid && errno != ECHILD)
1738                 bb_perror_msg("waitpid");
1739         return rcode;
1740 }
1741
1742 #if ENABLE_HUSH_JOB
1743 static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
1744 {
1745         pid_t p;
1746         int rcode = checkjobs(fg_pipe);
1747         /* Job finished, move the shell to the foreground */
1748         p = getpgid(0); /* pgid of our process */
1749         debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p);
1750         if (tcsetpgrp(interactive_fd, p) && errno != ENOTTY)
1751                 bb_perror_msg("tcsetpgrp-4a");
1752         return rcode;
1753 }
1754 #endif
1755
1756 /* run_pipe() starts all the jobs, but doesn't wait for anything
1757  * to finish.  See checkjobs().
1758  *
1759  * return code is normally -1, when the caller has to wait for children
1760  * to finish to determine the exit status of the pipe.  If the pipe
1761  * is a simple builtin command, however, the action is done by the
1762  * time run_pipe returns, and the exit code is provided as the
1763  * return value.
1764  *
1765  * The input of the pipe is always stdin, the output is always
1766  * stdout.  The outpipe[] mechanism in BusyBox-0.48 lash is bogus,
1767  * because it tries to avoid running the command substitution in
1768  * subshell, when that is in fact necessary.  The subshell process
1769  * now has its stdout directed to the input of the appropriate pipe,
1770  * so this routine is noticeably simpler.
1771  *
1772  * Returns -1 only if started some children. IOW: we have to
1773  * mask out retvals of builtins etc with 0xff!
1774  */
1775 static int run_pipe(struct pipe *pi)
1776 {
1777         int i;
1778         int nextin;
1779         int pipefds[2];         /* pipefds[0] is for reading */
1780         struct child_prog *child;
1781         const struct built_in_command *x;
1782         char *p;
1783         /* it is not always needed, but we aim to smaller code */
1784         int squirrel[] = { -1, -1, -1 };
1785         int rcode;
1786         const int single_fg = (pi->num_progs == 1 && pi->followup != PIPE_BG);
1787
1788         debug_printf_exec("run_pipe start: single_fg=%d\n", single_fg);
1789
1790 #if ENABLE_HUSH_JOB
1791         pi->pgrp = -1;
1792 #endif
1793         pi->running_progs = 1;
1794         pi->stopped_progs = 0;
1795
1796         /* Check if this is a simple builtin (not part of a pipe).
1797          * Builtins within pipes have to fork anyway, and are handled in
1798          * pseudo_exec.  "echo foo | read bar" doesn't work on bash, either.
1799          */
1800         child = &(pi->progs[0]);
1801         if (single_fg && child->group && child->subshell == 0) {
1802                 debug_printf("non-subshell grouping\n");
1803                 setup_redirects(child, squirrel);
1804                 debug_printf_exec(": run_list\n");
1805                 rcode = run_list(child->group) & 0xff;
1806                 restore_redirects(squirrel);
1807                 debug_printf_exec("run_pipe return %d\n", rcode);
1808                 return rcode;
1809         }
1810
1811         if (single_fg && child->argv != NULL) {
1812                 char **argv_expanded;
1813                 char **argv = child->argv;
1814
1815                 for (i = 0; is_assignment(argv[i]); i++)
1816                         continue;
1817                 if (i != 0 && argv[i] == NULL) {
1818                         /* assignments, but no command: set the local environment */
1819                         for (i = 0; argv[i] != NULL; i++) {
1820                                 debug_printf("local environment set: %s\n", argv[i]);
1821                                 p = expand_string_to_string(argv[i]);
1822                                 set_local_var(p, 0);
1823                         }
1824                         return EXIT_SUCCESS;   /* don't worry about errors in set_local_var() yet */
1825                 }
1826                 for (i = 0; is_assignment(argv[i]); i++) {
1827                         p = expand_string_to_string(argv[i]);
1828                         //sp: child->sp--;
1829                         putenv(p);
1830                 }
1831                 for (x = bltins; x->cmd; x++) {
1832                         if (strcmp(argv[i], x->cmd) == 0) {
1833                                 if (x->function == builtin_exec && argv[i+1] == NULL) {
1834                                         debug_printf("magic exec\n");
1835                                         setup_redirects(child, NULL);
1836                                         return EXIT_SUCCESS;
1837                                 }
1838                                 debug_printf("builtin inline %s\n", argv[0]);
1839                                 /* XXX setup_redirects acts on file descriptors, not FILEs.
1840                                  * This is perfect for work that comes after exec().
1841                                  * Is it really safe for inline use?  Experimentally,
1842                                  * things seem to work with glibc. */
1843                                 setup_redirects(child, squirrel);
1844                                 debug_printf_exec(": builtin '%s' '%s'...\n", x->cmd, argv[i+1]);
1845                                 //sp: if (child->sp) /* btw we can do it unconditionally... */
1846                                 argv_expanded = expand_strvec_to_strvec(argv + i);
1847                                 rcode = x->function(argv_expanded) & 0xff;
1848                                 free(argv_expanded);
1849                                 restore_redirects(squirrel);
1850                                 debug_printf_exec("run_pipe return %d\n", rcode);
1851                                 return rcode;
1852                         }
1853                 }
1854 #if ENABLE_FEATURE_SH_STANDALONE
1855                 {
1856                         int a = find_applet_by_name(argv[i]);
1857                         if (a >= 0 && APPLET_IS_NOFORK(a)) {
1858                                 setup_redirects(child, squirrel);
1859                                 save_nofork_data(&nofork_save);
1860                                 argv_expanded = argv + i;
1861                                 //sp: if (child->sp)
1862                                 argv_expanded = expand_strvec_to_strvec(argv + i);
1863                                 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n", argv_expanded[0], argv_expanded[1]);
1864                                 rcode = run_nofork_applet_prime(&nofork_save, a, argv_expanded);
1865                                 free(argv_expanded);
1866                                 restore_redirects(squirrel);
1867                                 debug_printf_exec("run_pipe return %d\n", rcode);
1868                                 return rcode;
1869                         }
1870                 }
1871 #endif
1872         }
1873
1874         /* Disable job control signals for shell (parent) and
1875          * for initial child code after fork */
1876         set_jobctrl_sighandler(SIG_IGN);
1877
1878         /* Going to fork a child per each pipe member */
1879         pi->running_progs = 0;
1880         nextin = 0;
1881
1882         for (i = 0; i < pi->num_progs; i++) {
1883                 child = &(pi->progs[i]);
1884                 if (child->argv)
1885                         debug_printf_exec(": pipe member '%s' '%s'...\n", child->argv[0], child->argv[1]);
1886                 else
1887                         debug_printf_exec(": pipe member with no argv\n");
1888
1889                 /* pipes are inserted between pairs of commands */
1890                 pipefds[0] = 0;
1891                 pipefds[1] = 1;
1892                 if ((i + 1) < pi->num_progs)
1893                         xpipe(pipefds);
1894
1895                 child->pid = BB_MMU ? fork() : vfork();
1896                 if (!child->pid) { /* child */
1897                         if (ENABLE_HUSH_JOB)
1898                                 die_sleep = 0; /* let nofork's xfuncs die */
1899 #if ENABLE_HUSH_JOB
1900                         /* Every child adds itself to new process group
1901                          * with pgid == pid_of_first_child_in_pipe */
1902                         if (run_list_level == 1 && interactive_fd) {
1903                                 pid_t pgrp;
1904                                 /* Don't do pgrp restore anymore on fatal signals */
1905                                 set_fatal_sighandler(SIG_DFL);
1906                                 pgrp = pi->pgrp;
1907                                 if (pgrp < 0) /* true for 1st process only */
1908                                         pgrp = getpid();
1909                                 if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) {
1910                                         /* We do it in *every* child, not just first,
1911                                          * to avoid races */
1912                                         tcsetpgrp(interactive_fd, pgrp);
1913                                 }
1914                         }
1915 #endif
1916                         xmove_fd(nextin, 0);
1917                         xmove_fd(pipefds[1], 1); /* write end */
1918                         if (pipefds[0] > 1)
1919                                 close(pipefds[0]); /* read end */
1920                         /* Like bash, explicit redirects override pipes,
1921                          * and the pipe fd is available for dup'ing. */
1922                         setup_redirects(child, NULL);
1923
1924                         /* Restore default handlers just prior to exec */
1925                         set_jobctrl_sighandler(SIG_DFL);
1926                         set_misc_sighandler(SIG_DFL);
1927                         signal(SIGCHLD, SIG_DFL);
1928                         pseudo_exec(child); /* does not return */
1929                 }
1930
1931                 if (child->pid < 0) { /* [v]fork failed */
1932                         /* Clearly indicate, was it fork or vfork */
1933                         bb_perror_msg(BB_MMU ? "fork" : "vfork");
1934                 } else {
1935                         pi->running_progs++;
1936 #if ENABLE_HUSH_JOB
1937                         /* Second and next children need to know pid of first one */
1938                         if (pi->pgrp < 0)
1939                                 pi->pgrp = child->pid;
1940 #endif
1941                 }
1942
1943                 if (i)
1944                         close(nextin);
1945                 if ((i + 1) < pi->num_progs)
1946                         close(pipefds[1]); /* write end */
1947                 /* Pass read (output) pipe end to next iteration */
1948                 nextin = pipefds[0];
1949         }
1950
1951         if (!pi->running_progs) {
1952                 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
1953                 return 1;
1954         }
1955
1956         debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->running_progs);
1957         return -1;
1958 }
1959
1960 #ifndef debug_print_tree
1961 static void debug_print_tree(struct pipe *pi, int lvl)
1962 {
1963         static const char *PIPE[] = {
1964                 [PIPE_SEQ] = "SEQ",
1965                 [PIPE_AND] = "AND",
1966                 [PIPE_OR ] = "OR" ,
1967                 [PIPE_BG ] = "BG" ,
1968         };
1969         static const char *RES[] = {
1970                 [RES_NONE ] = "NONE" ,
1971 #if ENABLE_HUSH_IF
1972                 [RES_IF   ] = "IF"   ,
1973                 [RES_THEN ] = "THEN" ,
1974                 [RES_ELIF ] = "ELIF" ,
1975                 [RES_ELSE ] = "ELSE" ,
1976                 [RES_FI   ] = "FI"   ,
1977 #endif
1978 #if ENABLE_HUSH_LOOPS
1979                 [RES_FOR  ] = "FOR"  ,
1980                 [RES_WHILE] = "WHILE",
1981                 [RES_UNTIL] = "UNTIL",
1982                 [RES_DO   ] = "DO"   ,
1983                 [RES_DONE ] = "DONE" ,
1984                 [RES_IN   ] = "IN"   ,
1985 #endif
1986                 [RES_XXXX ] = "XXXX" ,
1987                 [RES_SNTX ] = "SNTX" ,
1988         };
1989
1990         int pin, prn;
1991
1992         pin = 0;
1993         while (pi) {
1994                 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
1995                                 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
1996                 prn = 0;
1997                 while (prn < pi->num_progs) {
1998                         struct child_prog *child = &pi->progs[prn];
1999                         char **argv = child->argv;
2000
2001                         fprintf(stderr, "%*s prog %d", lvl*2, "", prn);
2002                         if (child->group) {
2003                                 fprintf(stderr, " group %s: (argv=%p)\n",
2004                                                 (child->subshell ? "()" : "{}"),
2005                                                 argv);
2006                                 debug_print_tree(child->group, lvl+1);
2007                                 prn++;
2008                                 continue;
2009                         }
2010                         if (argv) while (*argv) {
2011                                 fprintf(stderr, " '%s'", *argv);
2012                                 argv++;
2013                         }
2014                         fprintf(stderr, "\n");
2015                         prn++;
2016                 }
2017                 pi = pi->next;
2018                 pin++;
2019         }
2020 }
2021 #endif
2022
2023 /* NB: called by pseudo_exec, and therefore must not modify any
2024  * global data until exec/_exit (we can be a child after vfork!) */
2025 static int run_list(struct pipe *pi)
2026 {
2027         struct pipe *rpipe;
2028 #if ENABLE_HUSH_LOOPS
2029         char *for_varname = NULL;
2030         char **for_lcur = NULL;
2031         char **for_list = NULL;
2032         int flag_rep = 0;
2033 #endif
2034         int flag_skip = 1;
2035         int rcode = 0; /* probably for gcc only */
2036         int flag_restore = 0;
2037 #if ENABLE_HUSH_IF
2038         int if_code = 0, next_if_code = 0;  /* need double-buffer to handle elif */
2039 #else
2040         enum { if_code = 0, next_if_code = 0 };
2041 #endif
2042         reserved_style rword;
2043         reserved_style skip_more_for_this_rword = RES_XXXX;
2044
2045         debug_printf_exec("run_list start lvl %d\n", run_list_level + 1);
2046
2047 #if ENABLE_HUSH_LOOPS
2048         /* check syntax for "for" */
2049         for (rpipe = pi; rpipe; rpipe = rpipe->next) {
2050                 if ((rpipe->res_word == RES_IN || rpipe->res_word == RES_FOR)
2051                  && (rpipe->next == NULL)
2052                 ) {
2053                         syntax("malformed for"); /* no IN or no commands after IN */
2054                         debug_printf_exec("run_list lvl %d return 1\n", run_list_level);
2055                         return 1;
2056                 }
2057                 if ((rpipe->res_word == RES_IN && rpipe->next->res_word == RES_IN && rpipe->next->progs[0].argv != NULL)
2058                  || (rpipe->res_word == RES_FOR && rpipe->next->res_word != RES_IN)
2059                 ) {
2060                         /* TODO: what is tested in the first condition? */
2061                         syntax("malformed for"); /* 2nd condition: not followed by IN */
2062                         debug_printf_exec("run_list lvl %d return 1\n", run_list_level);
2063                         return 1;
2064                 }
2065         }
2066 #else
2067         rpipe = NULL;
2068 #endif
2069
2070 #if ENABLE_HUSH_JOB
2071         /* Example of nested list: "while true; do { sleep 1 | exit 2; } done".
2072          * We are saving state before entering outermost list ("while...done")
2073          * so that ctrl-Z will correctly background _entire_ outermost list,
2074          * not just a part of it (like "sleep 1 | exit 2") */
2075         if (++run_list_level == 1 && interactive_fd) {
2076                 if (sigsetjmp(toplevel_jb, 1)) {
2077                         /* ctrl-Z forked and we are parent; or ctrl-C.
2078                          * Sighandler has longjmped us here */
2079                         signal(SIGINT, SIG_IGN);
2080                         signal(SIGTSTP, SIG_IGN);
2081                         /* Restore level (we can be coming from deep inside
2082                          * nested levels) */
2083                         run_list_level = 1;
2084 #if ENABLE_FEATURE_SH_STANDALONE
2085                         if (nofork_save.saved) { /* if save area is valid */
2086                                 debug_printf_jobs("exiting nofork early\n");
2087                                 restore_nofork_data(&nofork_save);
2088                         }
2089 #endif
2090                         if (ctrl_z_flag) {
2091                                 /* ctrl-Z has forked and stored pid of the child in pi->pid.
2092                                  * Remember this child as background job */
2093                                 insert_bg_job(pi);
2094                         } else {
2095                                 /* ctrl-C. We just stop doing whatever we were doing */
2096                                 bb_putchar('\n');
2097                         }
2098                         rcode = 0;
2099                         goto ret;
2100                 }
2101                 /* ctrl-Z handler will store pid etc in pi */
2102                 toplevel_list = pi;
2103                 ctrl_z_flag = 0;
2104 #if ENABLE_FEATURE_SH_STANDALONE
2105                 nofork_save.saved = 0; /* in case we will run a nofork later */
2106 #endif
2107                 signal_SA_RESTART_empty_mask(SIGTSTP, handler_ctrl_z);
2108                 signal(SIGINT, handler_ctrl_c);
2109         }
2110 #endif /* JOB */
2111
2112         for (; pi; pi = flag_restore ? rpipe : pi->next) {
2113 //why?          int save_num_progs;
2114                 rword = pi->res_word;
2115 #if ENABLE_HUSH_LOOPS
2116                 if (rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR) {
2117                         flag_restore = 0;
2118                         if (!rpipe) {
2119                                 flag_rep = 0;
2120                                 rpipe = pi;
2121                         }
2122                 }
2123 #endif
2124                 debug_printf_exec(": rword=%d if_code=%d next_if_code=%d skip_more=%d\n",
2125                                 rword, if_code, next_if_code, skip_more_for_this_rword);
2126                 if (rword == skip_more_for_this_rword && flag_skip) {
2127                         if (pi->followup == PIPE_SEQ)
2128                                 flag_skip = 0;
2129                         continue;
2130                 }
2131                 flag_skip = 1;
2132                 skip_more_for_this_rword = RES_XXXX;
2133 #if ENABLE_HUSH_IF
2134                 if (rword == RES_THEN || rword == RES_ELSE)
2135                         if_code = next_if_code;
2136                 if (rword == RES_THEN && if_code)
2137                         continue;
2138                 if (rword == RES_ELSE && !if_code)
2139                         continue;
2140                 if (rword == RES_ELIF && !if_code)
2141                         break;
2142 #endif
2143 #if ENABLE_HUSH_LOOPS
2144                 if (rword == RES_FOR && pi->num_progs) {
2145                         if (!for_lcur) {
2146                                 /* first loop through for */
2147                                 /* if no variable values after "in" we skip "for" */
2148                                 if (!pi->next->progs->argv)
2149                                         continue;
2150                                 /* create list of variable values */
2151                                 for_list = expand_strvec_to_strvec(pi->next->progs->argv);
2152                                 for_lcur = for_list;
2153                                 for_varname = pi->progs->argv[0];
2154                                 pi->progs->argv[0] = NULL;
2155                                 flag_rep = 1;
2156                         }
2157                         free(pi->progs->argv[0]);
2158                         if (!*for_lcur) {
2159                                 /* for loop is over, clean up */
2160                                 free(for_list);
2161                                 for_lcur = NULL;
2162                                 flag_rep = 0;
2163                                 pi->progs->argv[0] = for_varname;
2164                                 continue;
2165                         }
2166                         /* insert next value from for_lcur */
2167                         /* vda: does it need escaping? */
2168                         pi->progs->argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++);
2169                 }
2170                 if (rword == RES_IN)
2171                         continue;
2172                 if (rword == RES_DO) {
2173                         if (!flag_rep)
2174                                 continue;
2175                 }
2176                 if (rword == RES_DONE) {
2177                         if (flag_rep) {
2178                                 flag_restore = 1;
2179                         } else {
2180                                 rpipe = NULL;
2181                         }
2182                 }
2183 #endif
2184                 if (pi->num_progs == 0)
2185                         continue;
2186 //why?          save_num_progs = pi->num_progs;
2187                 debug_printf_exec(": run_pipe with %d members\n", pi->num_progs);
2188                 rcode = run_pipe(pi);
2189                 if (rcode != -1) {
2190                         /* We only ran a builtin: rcode was set by the return value
2191                          * of run_pipe(), and we don't need to wait for anything. */
2192                 } else if (pi->followup == PIPE_BG) {
2193                         /* What does bash do with attempts to background builtins? */
2194                         /* Even bash 3.2 doesn't do that well with nested bg:
2195                          * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
2196                          * I'm NOT treating inner &'s as jobs */
2197 #if ENABLE_HUSH_JOB
2198                         if (run_list_level == 1)
2199                                 insert_bg_job(pi);
2200 #endif
2201                         rcode = EXIT_SUCCESS;
2202                 } else {
2203 #if ENABLE_HUSH_JOB
2204                         if (run_list_level == 1 && interactive_fd) {
2205                                 /* waits for completion, then fg's main shell */
2206                                 rcode = checkjobs_and_fg_shell(pi);
2207                         } else
2208 #endif
2209                         {
2210                                 /* this one just waits for completion */
2211                                 rcode = checkjobs(pi);
2212                         }
2213                         debug_printf_exec(": checkjobs returned %d\n", rcode);
2214                 }
2215                 debug_printf_exec(": setting last_return_code=%d\n", rcode);
2216                 last_return_code = rcode;
2217 //why?          pi->num_progs = save_num_progs;
2218 #if ENABLE_HUSH_IF
2219                 if (rword == RES_IF || rword == RES_ELIF)
2220                         next_if_code = rcode;  /* can be overwritten a number of times */
2221 #endif
2222 #if ENABLE_HUSH_LOOPS
2223                 if (rword == RES_WHILE)
2224                         flag_rep = !last_return_code;
2225                 if (rword == RES_UNTIL)
2226                         flag_rep = last_return_code;
2227 #endif
2228                 if ((rcode == EXIT_SUCCESS && pi->followup == PIPE_OR)
2229                  || (rcode != EXIT_SUCCESS && pi->followup == PIPE_AND)
2230                 ) {
2231                         skip_more_for_this_rword = rword;
2232                 }
2233                 checkjobs(NULL);
2234         }
2235
2236 #if ENABLE_HUSH_JOB
2237         if (ctrl_z_flag) {
2238                 /* ctrl-Z forked somewhere in the past, we are the child,
2239                  * and now we completed running the list. Exit. */
2240                 exit(rcode);
2241         }
2242  ret:
2243         if (!--run_list_level && interactive_fd) {
2244                 signal(SIGTSTP, SIG_IGN);
2245                 signal(SIGINT, SIG_IGN);
2246         }
2247 #endif
2248         debug_printf_exec("run_list lvl %d return %d\n", run_list_level + 1, rcode);
2249         return rcode;
2250 }
2251
2252 /* return code is the exit status of the pipe */
2253 static int free_pipe(struct pipe *pi, int indent)
2254 {
2255         char **p;
2256         struct child_prog *child;
2257         struct redir_struct *r, *rnext;
2258         int a, i, ret_code = 0;
2259
2260         if (pi->stopped_progs > 0)
2261                 return ret_code;
2262         debug_printf_clean("%s run pipe: (pid %d)\n", indenter(indent), getpid());
2263         for (i = 0; i < pi->num_progs; i++) {
2264                 child = &pi->progs[i];
2265                 debug_printf_clean("%s  command %d:\n", indenter(indent), i);
2266                 if (child->argv) {
2267                         for (a = 0, p = child->argv; *p; a++, p++) {
2268                                 debug_printf_clean("%s   argv[%d] = %s\n", indenter(indent), a, *p);
2269                         }
2270                         free_strings(child->argv);
2271                         child->argv = NULL;
2272                 } else if (child->group) {
2273                         debug_printf_clean("%s   begin group (subshell:%d)\n", indenter(indent), child->subshell);
2274                         ret_code = free_pipe_list(child->group, indent+3);
2275                         debug_printf_clean("%s   end group\n", indenter(indent));
2276                 } else {
2277                         debug_printf_clean("%s   (nil)\n", indenter(indent));
2278                 }
2279                 for (r = child->redirects; r; r = rnext) {
2280                         debug_printf_clean("%s   redirect %d%s", indenter(indent), r->fd, redir_table[r->type].descrip);
2281                         if (r->dup == -1) {
2282                                 /* guard against the case >$FOO, where foo is unset or blank */
2283                                 if (r->glob_word) {
2284                                         debug_printf_clean(" %s\n", r->glob_word[0]);
2285                                         free_strings(r->glob_word);
2286                                         r->glob_word = NULL;
2287                                 }
2288                         } else {
2289                                 debug_printf_clean("&%d\n", r->dup);
2290                         }
2291                         rnext = r->next;
2292                         free(r);
2293                 }
2294                 child->redirects = NULL;
2295         }
2296         free(pi->progs);   /* children are an array, they get freed all at once */
2297         pi->progs = NULL;
2298 #if ENABLE_HUSH_JOB
2299         free(pi->cmdtext);
2300         pi->cmdtext = NULL;
2301 #endif
2302         return ret_code;
2303 }
2304
2305 static int free_pipe_list(struct pipe *head, int indent)
2306 {
2307         int rcode = 0;   /* if list has no members */
2308         struct pipe *pi, *next;
2309
2310         for (pi = head; pi; pi = next) {
2311                 debug_printf_clean("%s pipe reserved mode %d\n", indenter(indent), pi->res_word);
2312                 rcode = free_pipe(pi, indent);
2313                 debug_printf_clean("%s pipe followup code %d\n", indenter(indent), pi->followup);
2314                 next = pi->next;
2315                 /*pi->next = NULL;*/
2316                 free(pi);
2317         }
2318         return rcode;
2319 }
2320
2321 /* Select which version we will use */
2322 static int run_and_free_list(struct pipe *pi)
2323 {
2324         int rcode = 0;
2325         debug_printf_exec("run_and_free_list entered\n");
2326         if (!fake_mode) {
2327                 debug_printf_exec(": run_list with %d members\n", pi->num_progs);
2328                 rcode = run_list(pi);
2329         }
2330         /* free_pipe_list has the side effect of clearing memory.
2331          * In the long run that function can be merged with run_list,
2332          * but doing that now would hobble the debugging effort. */
2333         free_pipe_list(pi, /* indent: */ 0);
2334         debug_printf_exec("run_nad_free_list return %d\n", rcode);
2335         return rcode;
2336 }
2337
2338 /* Whoever decided to muck with glob internal data is AN IDIOT! */
2339 /* uclibc happily changed the way it works (and it has rights to do so!),
2340    all hell broke loose (SEGVs) */
2341
2342 /* The API for glob is arguably broken.  This routine pushes a non-matching
2343  * string into the output structure, removing non-backslashed backslashes.
2344  * If someone can prove me wrong, by performing this function within the
2345  * original glob(3) api, feel free to rewrite this routine into oblivion.
2346  * XXX broken if the last character is '\\', check that before calling.
2347  */
2348 static char **globhack(const char *src, char **strings)
2349 {
2350         int cnt;
2351         const char *s;
2352         char *v, *dest;
2353
2354         for (cnt = 1, s = src; s && *s; s++) {
2355                 if (*s == '\\') s++;
2356                 cnt++;
2357         }
2358         v = dest = xmalloc(cnt);
2359         for (s = src; s && *s; s++, dest++) {
2360                 if (*s == '\\') s++;
2361                 *dest = *s;
2362         }
2363         *dest = '\0';
2364
2365         return add_string_to_strings(strings, v);
2366 }
2367
2368 /* XXX broken if the last character is '\\', check that before calling */
2369 static int glob_needed(const char *s)
2370 {
2371         for (; *s; s++) {
2372                 if (*s == '\\')
2373                         s++;
2374                 if (strchr("*[?", *s))
2375                         return 1;
2376         }
2377         return 0;
2378 }
2379
2380 static int xglob(o_string *dest, char ***pglob)
2381 {
2382         /* short-circuit for null word */
2383         /* we can code this better when the debug_printf's are gone */
2384         if (dest->length == 0) {
2385                 if (dest->nonnull) {
2386                         /* bash man page calls this an "explicit" null */
2387                         *pglob = globhack(dest->data, *pglob);
2388                 }
2389                 return 0;
2390         }
2391
2392         if (glob_needed(dest->data)) {
2393                 glob_t globdata;
2394                 int gr;
2395
2396                 memset(&globdata, 0, sizeof(globdata));
2397                 gr = glob(dest->data, 0, NULL, &globdata);
2398                 debug_printf("glob returned %d\n", gr);
2399                 if (gr == GLOB_NOSPACE)
2400                         bb_error_msg_and_die("out of memory during glob");
2401                 if (gr == GLOB_NOMATCH) {
2402                         debug_printf("globhack returned %d\n", gr);
2403                         /* quote removal, or more accurately, backslash removal */
2404                         *pglob = globhack(dest->data, *pglob);
2405                         globfree(&globdata);
2406                         return 0;
2407                 }
2408                 if (gr != 0) { /* GLOB_ABORTED ? */
2409                         bb_error_msg("glob(3) error %d", gr);
2410                 }
2411                 if (globdata.gl_pathv && globdata.gl_pathv[0])
2412                         *pglob = add_strings_to_strings(1, *pglob, globdata.gl_pathv);
2413                 globfree(&globdata);
2414                 return gr;
2415         }
2416
2417         *pglob = globhack(dest->data, *pglob);
2418         return 0;
2419 }
2420
2421 /* expand_strvec_to_strvec() takes a list of strings, expands
2422  * all variable references within and returns a pointer to
2423  * a list of expanded strings, possibly with larger number
2424  * of strings. (Think VAR="a b"; echo $VAR).
2425  * This new list is allocated as a single malloc block.
2426  * NULL-terminated list of char* pointers is at the beginning of it,
2427  * followed by strings themself.
2428  * Caller can deallocate entire list by single free(list). */
2429
2430 /* Helpers first:
2431  * count_XXX estimates size of the block we need. It's okay
2432  * to over-estimate sizes a bit, if it makes code simpler */
2433 static int count_ifs(const char *str)
2434 {
2435         int cnt = 0;
2436         debug_printf_expand("count_ifs('%s') ifs='%s'", str, ifs);
2437         while (1) {
2438                 str += strcspn(str, ifs);
2439                 if (!*str) break;
2440                 str++; /* str += strspn(str, ifs); */
2441                 cnt++; /* cnt += strspn(str, ifs); - but this code is larger */
2442         }
2443         debug_printf_expand(" return %d\n", cnt);
2444         return cnt;
2445 }
2446
2447 static void count_var_expansion_space(int *countp, int *lenp, char *arg)
2448 {
2449         char first_ch;
2450         int i;
2451         int len = *lenp;
2452         int count = *countp;
2453         const char *val;
2454         char *p;
2455
2456         while ((p = strchr(arg, SPECIAL_VAR_SYMBOL))) {
2457                 len += p - arg;
2458                 arg = ++p;
2459                 p = strchr(p, SPECIAL_VAR_SYMBOL);
2460                 first_ch = arg[0];
2461
2462                 switch (first_ch & 0x7f) {
2463                 /* high bit in 1st_ch indicates that var is double-quoted */
2464                 case '$': /* pid */
2465                 case '!': /* bg pid */
2466                 case '?': /* exitcode */
2467                 case '#': /* argc */
2468                         len += sizeof(int)*3 + 1; /* enough for int */
2469                         break;
2470                 case '*':
2471                 case '@':
2472                         for (i = 1; global_argv[i]; i++) {
2473                                 len += strlen(global_argv[i]) + 1;
2474                                 count++;
2475                                 if (!(first_ch & 0x80))
2476                                         count += count_ifs(global_argv[i]);
2477                         }
2478                         break;
2479                 default:
2480                         *p = '\0';
2481                         arg[0] = first_ch & 0x7f;
2482                         if (isdigit(arg[0])) {
2483                                 i = xatoi_u(arg);
2484                                 val = NULL;
2485                                 if (i < global_argc)
2486                                         val = global_argv[i];
2487                         } else
2488                                 val = lookup_param(arg);
2489                         arg[0] = first_ch;
2490                         *p = SPECIAL_VAR_SYMBOL;
2491
2492                         if (val) {
2493                                 len += strlen(val) + 1;
2494                                 if (!(first_ch & 0x80))
2495                                         count += count_ifs(val);
2496                         }
2497                 }
2498                 arg = ++p;
2499         }
2500
2501         len += strlen(arg) + 1;
2502         count++;
2503         *lenp = len;
2504         *countp = count;
2505 }
2506
2507 /* Store given string, finalizing the word and starting new one whenever
2508  * we encounter ifs char(s). This is used for expanding variable values.
2509  * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
2510 static int expand_on_ifs(char **list, int n, char **posp, const char *str)
2511 {
2512         char *pos = *posp;
2513         while (1) {
2514                 int word_len = strcspn(str, ifs);
2515                 if (word_len) {
2516                         memcpy(pos, str, word_len); /* store non-ifs chars */
2517                         pos += word_len;
2518                         str += word_len;
2519                 }
2520                 if (!*str)  /* EOL - do not finalize word */
2521                         break;
2522                 *pos++ = '\0';
2523                 if (n) debug_printf_expand("expand_on_ifs finalized list[%d]=%p '%s' "
2524                         "strlen=%d next=%p pos=%p\n", n-1, list[n-1], list[n-1],
2525                         strlen(list[n-1]), list[n-1] + strlen(list[n-1]) + 1, pos);
2526                 list[n++] = pos;
2527                 str += strspn(str, ifs); /* skip ifs chars */
2528         }
2529         *posp = pos;
2530         return n;
2531 }
2532
2533 /* Expand all variable references in given string, adding words to list[]
2534  * at n, n+1,... positions. Return updated n (so that list[n] is next one
2535  * to be filled). This routine is extremely tricky: has to deal with
2536  * variables/parameters with whitespace, $* and $@, and constructs like
2537  * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
2538 /* NB: another bug is that we cannot detect empty strings yet:
2539  * "" or $empty"" expands to zero words, has to expand to empty word */
2540 static int expand_vars_to_list(char **list, int n, char **posp, char *arg, char or_mask)
2541 {
2542         /* or_mask is either 0 (normal case) or 0x80
2543          * (expansion of right-hand side of assignment == 1-element expand) */
2544
2545         char first_ch, ored_ch;
2546         int i;
2547         const char *val;
2548         char *p;
2549         char *pos = *posp;
2550
2551         ored_ch = 0;
2552
2553         if (n) debug_printf_expand("expand_vars_to_list finalized list[%d]=%p '%s' "
2554                 "strlen=%d next=%p pos=%p\n", n-1, list[n-1], list[n-1],
2555                 strlen(list[n-1]), list[n-1] + strlen(list[n-1]) + 1, pos);
2556         list[n++] = pos;
2557
2558         while ((p = strchr(arg, SPECIAL_VAR_SYMBOL))) {
2559                 memcpy(pos, arg, p - arg);
2560                 pos += (p - arg);
2561                 arg = ++p;
2562                 p = strchr(p, SPECIAL_VAR_SYMBOL);
2563
2564                 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
2565                 ored_ch |= first_ch;
2566                 val = NULL;
2567                 switch (first_ch & 0x7f) {
2568                 /* Highest bit in first_ch indicates that var is double-quoted */
2569                 case '$': /* pid */
2570                         /* FIXME: (echo $$) should still print pid of main shell */
2571                         val = utoa(getpid()); /* rootpid? */
2572                         break;
2573                 case '!': /* bg pid */
2574                         val = last_bg_pid ? utoa(last_bg_pid) : (char*)"";
2575                         break;
2576                 case '?': /* exitcode */
2577                         val = utoa(last_return_code);
2578                         break;
2579                 case '#': /* argc */
2580                         val = utoa(global_argc ? global_argc-1 : 0);
2581                         break;
2582                 case '*':
2583                 case '@':
2584                         i = 1;
2585                         if (!global_argv[i])
2586                                 break;
2587                         if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
2588                                 while (global_argv[i]) {
2589                                         n = expand_on_ifs(list, n, &pos, global_argv[i]);
2590                                         debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, global_argc-1);
2591                                         if (global_argv[i++][0] && global_argv[i]) {
2592                                                 /* this argv[] is not empty and not last:
2593                                                  * put terminating NUL, start new word */
2594                                                 *pos++ = '\0';
2595                                                 if (n) debug_printf_expand("expand_vars_to_list 2 finalized list[%d]=%p '%s' "
2596                                                         "strlen=%d next=%p pos=%p\n", n-1, list[n-1], list[n-1],
2597                                                         strlen(list[n-1]), list[n-1] + strlen(list[n-1]) + 1, pos);
2598                                                 list[n++] = pos;
2599                                         }
2600                                 }
2601                         } else
2602                         /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
2603                          * and in this case should treat it like '$*' - see 'else...' below */
2604                         if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
2605                                 while (1) {
2606                                         strcpy(pos, global_argv[i]);
2607                                         pos += strlen(global_argv[i]);
2608                                         if (++i >= global_argc)
2609                                                 break;
2610                                         *pos++ = '\0';
2611                                         if (n) debug_printf_expand("expand_vars_to_list 3 finalized list[%d]=%p '%s' "
2612                                                 "strlen=%d next=%p pos=%p\n", n-1, list[n-1], list[n-1],
2613                                                         strlen(list[n-1]), list[n-1] + strlen(list[n-1]) + 1, pos);
2614                                         list[n++] = pos;
2615                                 }
2616                         } else { /* quoted $*: add as one word */
2617                                 while (1) {
2618                                         strcpy(pos, global_argv[i]);
2619                                         pos += strlen(global_argv[i]);
2620                                         if (!global_argv[++i])
2621                                                 break;
2622                                         if (ifs[0])
2623                                                 *pos++ = ifs[0];
2624                                 }
2625                         }
2626                         break;
2627                 default:
2628                         *p = '\0';
2629                         arg[0] = first_ch & 0x7f;
2630                         if (isdigit(arg[0])) {
2631                                 i = xatoi_u(arg);
2632                                 val = NULL;
2633                                 if (i < global_argc)
2634                                         val = global_argv[i];
2635                         } else
2636                                 val = lookup_param(arg);
2637                         arg[0] = first_ch;
2638                         *p = SPECIAL_VAR_SYMBOL;
2639                         if (!(first_ch & 0x80)) { /* unquoted $VAR */
2640                                 if (val) {
2641                                         n = expand_on_ifs(list, n, &pos, val);
2642                                         val = NULL;
2643                                 }
2644                         } /* else: quoted $VAR, val will be appended at pos */
2645                 }
2646                 if (val) {
2647                         strcpy(pos, val);
2648                         pos += strlen(val);
2649                 }
2650                 arg = ++p;
2651         }
2652         debug_printf_expand("expand_vars_to_list adding tail '%s' at %p\n", arg, pos);
2653         strcpy(pos, arg);
2654         pos += strlen(arg) + 1;
2655         if (pos == list[n-1] + 1) { /* expansion is empty */
2656                 if (!(ored_ch & 0x80)) { /* all vars were not quoted... */
2657                         debug_printf_expand("expand_vars_to_list list[%d] empty, going back\n", n);
2658                         pos--;
2659                         n--;
2660                 }
2661         }
2662
2663         *posp = pos;
2664         return n;
2665 }
2666
2667 static char **expand_variables(char **argv, char or_mask)
2668 {
2669         int n;
2670         int count = 1;
2671         int len = 0;
2672         char *pos, **v, **list;
2673
2674         v = argv;
2675         if (!*v) debug_printf_expand("count_var_expansion_space: "
2676                         "argv[0]=NULL count=%d len=%d alloc_space=%d\n",
2677                         count, len, sizeof(char*) * count + len);
2678         while (*v) {
2679                 count_var_expansion_space(&count, &len, *v);
2680                 debug_printf_expand("count_var_expansion_space: "
2681                         "'%s' count=%d len=%d alloc_space=%d\n",
2682                         *v, count, len, sizeof(char*) * count + len);
2683                 v++;
2684         }
2685         len += sizeof(char*) * count; /* total to alloc */
2686         list = xmalloc(len);
2687         pos = (char*)(list + count);
2688         debug_printf_expand("list=%p, list[0] should be %p\n", list, pos);
2689         n = 0;
2690         v = argv;
2691         while (*v)
2692                 n = expand_vars_to_list(list, n, &pos, *v++, or_mask);
2693
2694         if (n) debug_printf_expand("finalized list[%d]=%p '%s' "
2695                 "strlen=%d next=%p pos=%p\n", n-1, list[n-1], list[n-1],
2696                 strlen(list[n-1]), list[n-1] + strlen(list[n-1]) + 1, pos);
2697         list[n] = NULL;
2698
2699 #ifdef DEBUG_EXPAND
2700         {
2701                 int m = 0;
2702                 while (m <= n) {
2703                         debug_printf_expand("list[%d]=%p '%s'\n", m, list[m], list[m]);
2704                         m++;
2705                 }
2706                 debug_printf_expand("used_space=%d\n", pos - (char*)list);
2707         }
2708 #endif
2709         if (ENABLE_HUSH_DEBUG)
2710                 if (pos - (char*)list > len)
2711                         bb_error_msg_and_die("BUG in varexp");
2712         return list;
2713 }
2714
2715 static char **expand_strvec_to_strvec(char **argv)
2716 {
2717         return expand_variables(argv, 0);
2718 }
2719
2720 static char *expand_string_to_string(const char *str)
2721 {
2722         char *argv[2], **list;
2723
2724         argv[0] = (char*)str;
2725         argv[1] = NULL;
2726         list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */
2727         if (ENABLE_HUSH_DEBUG)
2728                 if (!list[0] || list[1])
2729                         bb_error_msg_and_die("BUG in varexp2");
2730         /* actually, just move string 2*sizeof(char*) bytes back */
2731         strcpy((char*)list, list[0]);
2732         debug_printf_expand("string_to_string='%s'\n", (char*)list);
2733         return (char*)list;
2734 }
2735
2736 static char* expand_strvec_to_string(char **argv)
2737 {
2738         char **list;
2739
2740         list = expand_variables(argv, 0x80);
2741         /* Convert all NULs to spaces */
2742         if (list[0]) {
2743                 int n = 1;
2744                 while (list[n]) {
2745                         if (ENABLE_HUSH_DEBUG)
2746                                 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2747                                         bb_error_msg_and_die("BUG in varexp3");
2748                         list[n][-1] = ' '; /* TODO: or to ifs[0]? */
2749                         n++;
2750                 }
2751         }
2752         strcpy((char*)list, list[0]);
2753         debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
2754         return (char*)list;
2755 }
2756
2757 /* This is used to get/check local shell variables */
2758 static struct variable *get_local_var(const char *name)
2759 {
2760         struct variable *cur;
2761         int len;
2762
2763         if (!name)
2764                 return NULL;
2765         len = strlen(name);
2766         for (cur = top_var; cur; cur = cur->next) {
2767                 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
2768                         return cur;
2769         }
2770         return NULL;
2771 }
2772
2773 /* str holds "NAME=VAL" and is expected to be malloced.
2774  * We take ownership of it. */
2775 static int set_local_var(char *str, int flg_export)
2776 {
2777         struct variable *cur;
2778         char *value;
2779         int name_len;
2780
2781         value = strchr(str, '=');
2782         if (!value) { /* not expected to ever happen? */
2783                 free(str);
2784                 return -1;
2785         }
2786
2787         name_len = value - str + 1; /* including '=' */
2788         cur = top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */
2789         while (1) {
2790                 if (strncmp(cur->varstr, str, name_len) != 0) {
2791                         if (!cur->next) {
2792                                 /* Bail out. Note that now cur points
2793                                  * to last var in linked list */
2794                                 break;
2795                         }
2796                         cur = cur->next;
2797                         continue;
2798                 }
2799                 /* We found an existing var with this name */
2800                 *value = '\0';
2801                 if (cur->flg_read_only) {
2802                         bb_error_msg("%s: readonly variable", str);
2803                         free(str);
2804                         return -1;
2805                 }
2806                 unsetenv(str); /* just in case */
2807                 *value = '=';
2808                 if (strcmp(cur->varstr, str) == 0) {
2809  free_and_exp:
2810                         free(str);
2811                         goto exp;
2812                 }
2813                 if (cur->max_len >= strlen(str)) {
2814                         /* This one is from startup env, reuse space */
2815                         strcpy(cur->varstr, str);
2816                         goto free_and_exp;
2817                 }
2818                 /* max_len == 0 signifies "malloced" var, which we can
2819                  * (and has to) free */
2820                 if (!cur->max_len)
2821                         free(cur->varstr);
2822                 cur->max_len = 0;
2823                 goto set_str_and_exp;
2824         }
2825
2826         /* Not found - create next variable struct */
2827         cur->next = xzalloc(sizeof(*cur));
2828         cur = cur->next;
2829
2830  set_str_and_exp:
2831         cur->varstr = str;
2832  exp:
2833         if (flg_export)
2834                 cur->flg_export = 1;
2835         if (cur->flg_export)
2836                 return putenv(cur->varstr);
2837         return 0;
2838 }
2839
2840 static void unset_local_var(const char *name)
2841 {
2842         struct variable *cur;
2843         struct variable *prev = prev; /* for gcc */
2844         int name_len;
2845
2846         if (!name)
2847                 return;
2848         name_len = strlen(name);
2849         cur = top_var;
2850         while (cur) {
2851                 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
2852                         if (cur->flg_read_only) {
2853                                 bb_error_msg("%s: readonly variable", name);
2854                                 return;
2855                         }
2856                 /* prev is ok to use here because 1st variable, HUSH_VERSION,
2857                  * is ro, and we cannot reach this code on the 1st pass */
2858                         prev->next = cur->next;
2859                         unsetenv(cur->varstr);
2860                         if (!cur->max_len)
2861                                 free(cur->varstr);
2862                         free(cur);
2863                         return;
2864                 }
2865                 prev = cur;
2866                 cur = cur->next;
2867         }
2868 }
2869
2870 static int is_assignment(const char *s)
2871 {
2872         if (!s || !isalpha(*s))
2873                 return 0;
2874         s++;
2875         while (isalnum(*s) || *s == '_')
2876                 s++;
2877         return *s == '=';
2878 }
2879
2880 /* the src parameter allows us to peek forward to a possible &n syntax
2881  * for file descriptor duplication, e.g., "2>&1".
2882  * Return code is 0 normally, 1 if a syntax error is detected in src.
2883  * Resource errors (in xmalloc) cause the process to exit */
2884 static int setup_redirect(struct p_context *ctx, int fd, redir_type style,
2885         struct in_str *input)
2886 {
2887         struct child_prog *child = ctx->child;
2888         struct redir_struct *redir = child->redirects;
2889         struct redir_struct *last_redir = NULL;
2890
2891         /* Create a new redir_struct and drop it onto the end of the linked list */
2892         while (redir) {
2893                 last_redir = redir;
2894                 redir = redir->next;
2895         }
2896         redir = xzalloc(sizeof(struct redir_struct));
2897         /* redir->next = NULL; */
2898         /* redir->glob_word = NULL; */
2899         if (last_redir) {
2900                 last_redir->next = redir;
2901         } else {
2902                 child->redirects = redir;
2903         }
2904
2905         redir->type = style;
2906         redir->fd = (fd == -1) ? redir_table[style].default_fd : fd;
2907
2908         debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip);
2909
2910         /* Check for a '2>&1' type redirect */
2911         redir->dup = redirect_dup_num(input);
2912         if (redir->dup == -2) return 1;  /* syntax error */
2913         if (redir->dup != -1) {
2914                 /* Erik had a check here that the file descriptor in question
2915                  * is legit; I postpone that to "run time"
2916                  * A "-" representation of "close me" shows up as a -3 here */
2917                 debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup);
2918         } else {
2919                 /* We do _not_ try to open the file that src points to,
2920                  * since we need to return and let src be expanded first.
2921                  * Set ctx->pending_redirect, so we know what to do at the
2922                  * end of the next parsed word. */
2923                 ctx->pending_redirect = redir;
2924         }
2925         return 0;
2926 }
2927
2928 static struct pipe *new_pipe(void)
2929 {
2930         struct pipe *pi;
2931         pi = xzalloc(sizeof(struct pipe));
2932         /*pi->num_progs = 0;*/
2933         /*pi->progs = NULL;*/
2934         /*pi->next = NULL;*/
2935         /*pi->followup = 0;  invalid */
2936         if (RES_NONE)
2937                 pi->res_word = RES_NONE;
2938         return pi;
2939 }
2940
2941 static void initialize_context(struct p_context *ctx)
2942 {
2943         ctx->child = NULL;
2944         ctx->pipe = ctx->list_head = new_pipe();
2945         ctx->pending_redirect = NULL;
2946         ctx->res_w = RES_NONE;
2947         //only ctx->parse_type is not touched... is this intentional?
2948         ctx->old_flag = 0;
2949         ctx->stack = NULL;
2950         done_command(ctx);   /* creates the memory for working child */
2951 }
2952
2953 /* normal return is 0
2954  * if a reserved word is found, and processed, return 1
2955  * should handle if, then, elif, else, fi, for, while, until, do, done.
2956  * case, function, and select are obnoxious, save those for later.
2957  */
2958 #if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS
2959 static int reserved_word(o_string *dest, struct p_context *ctx)
2960 {
2961         struct reserved_combo {
2962                 char literal[7];
2963                 unsigned char code;
2964                 int flag;
2965         };
2966         /* Mostly a list of accepted follow-up reserved words.
2967          * FLAG_END means we are done with the sequence, and are ready
2968          * to turn the compound list into a command.
2969          * FLAG_START means the word must start a new compound list.
2970          */
2971         static const struct reserved_combo reserved_list[] = {
2972 #if ENABLE_HUSH_IF
2973                 { "if",    RES_IF,    FLAG_THEN | FLAG_START },
2974                 { "then",  RES_THEN,  FLAG_ELIF | FLAG_ELSE | FLAG_FI },
2975                 { "elif",  RES_ELIF,  FLAG_THEN },
2976                 { "else",  RES_ELSE,  FLAG_FI   },
2977                 { "fi",    RES_FI,    FLAG_END  },
2978 #endif
2979 #if ENABLE_HUSH_LOOPS
2980                 { "for",   RES_FOR,   FLAG_IN   | FLAG_START },
2981                 { "while", RES_WHILE, FLAG_DO   | FLAG_START },
2982                 { "until", RES_UNTIL, FLAG_DO   | FLAG_START },
2983                 { "in",    RES_IN,    FLAG_DO   },
2984                 { "do",    RES_DO,    FLAG_DONE },
2985                 { "done",  RES_DONE,  FLAG_END  }
2986 #endif
2987         };
2988
2989         const struct reserved_combo *r;
2990
2991         for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
2992                 if (strcmp(dest->data, r->literal) != 0)
2993                         continue;
2994                 debug_printf("found reserved word %s, code %d\n", r->literal, r->code);
2995                 if (r->flag & FLAG_START) {
2996                         struct p_context *new;
2997                         debug_printf("push stack\n");
2998 #if ENABLE_HUSH_LOOPS
2999                         if (ctx->res_w == RES_IN || ctx->res_w == RES_FOR) {
3000                                 syntax("malformed for"); /* example: 'for if' */
3001                                 ctx->res_w = RES_SNTX;
3002                                 b_reset(dest);
3003                                 return 1;
3004                         }
3005 #endif
3006                         new = xmalloc(sizeof(*new));
3007                         *new = *ctx;   /* physical copy */
3008                         initialize_context(ctx);
3009                         ctx->stack = new;
3010                 } else if (ctx->res_w == RES_NONE || !(ctx->old_flag & (1 << r->code))) {
3011                         syntax(NULL);
3012                         ctx->res_w = RES_SNTX;
3013                         b_reset(dest);
3014                         return 1;
3015                 }
3016                 ctx->res_w = r->code;
3017                 ctx->old_flag = r->flag;
3018                 if (ctx->old_flag & FLAG_END) {
3019                         struct p_context *old;
3020                         debug_printf("pop stack\n");
3021                         done_pipe(ctx, PIPE_SEQ);
3022                         old = ctx->stack;
3023                         old->child->group = ctx->list_head;
3024                         old->child->subshell = 0;
3025                         *ctx = *old;   /* physical copy */
3026                         free(old);
3027                 }
3028                 b_reset(dest);
3029                 return 1;
3030         }
3031         return 0;
3032 }
3033 #else
3034 #define reserved_word(dest, ctx) ((int)0)
3035 #endif
3036
3037 /* Normal return is 0.
3038  * Syntax or xglob errors return 1. */
3039 static int done_word(o_string *dest, struct p_context *ctx)
3040 {
3041         struct child_prog *child = ctx->child;
3042         char ***glob_target;
3043         int gr;
3044
3045         debug_printf_parse("done_word entered: '%s' %p\n", dest->data, child);
3046         if (dest->length == 0 && !dest->nonnull) {
3047                 debug_printf_parse("done_word return 0: true null, ignored\n");
3048                 return 0;
3049         }
3050         if (ctx->pending_redirect) {
3051                 glob_target = &ctx->pending_redirect->glob_word;
3052         } else {
3053                 if (child->group) {
3054                         syntax(NULL);
3055                         debug_printf_parse("done_word return 1: syntax error, groups and arglists don't mix\n");
3056                         return 1;
3057                 }
3058                 if (!child->argv && (ctx->parse_type & PARSEFLAG_SEMICOLON)) {
3059                         debug_printf_parse(": checking '%s' for reserved-ness\n", dest->data);
3060                         if (reserved_word(dest, ctx)) {
3061                                 debug_printf_parse("done_word return %d\n", (ctx->res_w == RES_SNTX));
3062                                 return (ctx->res_w == RES_SNTX);
3063                         }
3064                 }
3065                 glob_target = &child->argv;
3066         }
3067         gr = xglob(dest, glob_target);
3068         if (gr != 0) {
3069                 debug_printf_parse("done_word return 1: xglob returned %d\n", gr);
3070                 return 1;
3071         }
3072
3073         b_reset(dest);
3074         if (ctx->pending_redirect) {
3075                 /* NB: don't free_strings(ctx->pending_redirect->glob_word) here */
3076                 if (ctx->pending_redirect->glob_word
3077                  && ctx->pending_redirect->glob_word[0]
3078                  && ctx->pending_redirect->glob_word[1]
3079                 ) {
3080                         /* more than one word resulted from globbing redir */
3081                         ctx->pending_redirect = NULL;
3082                         bb_error_msg("ambiguous redirect");
3083                         debug_printf_parse("done_word return 1: ambiguous redirect\n");
3084                         return 1;
3085                 }
3086                 ctx->pending_redirect = NULL;
3087         }
3088 #if ENABLE_HUSH_LOOPS
3089         if (ctx->res_w == RES_FOR) {
3090                 done_word(dest, ctx);
3091                 done_pipe(ctx, PIPE_SEQ);
3092         }
3093 #endif
3094         debug_printf_parse("done_word return 0\n");
3095         return 0;
3096 }
3097
3098 /* The only possible error here is out of memory, in which case
3099  * xmalloc exits. */
3100 static int done_command(struct p_context *ctx)
3101 {
3102         /* The child is really already in the pipe structure, so
3103          * advance the pipe counter and make a new, null child. */
3104         struct pipe *pi = ctx->pipe;
3105         struct child_prog *child = ctx->child;
3106
3107         if (child) {
3108                 if (child->group == NULL
3109                  && child->argv == NULL
3110                  && child->redirects == NULL
3111                 ) {
3112                         debug_printf_parse("done_command: skipping null cmd, num_progs=%d\n", pi->num_progs);
3113                         return pi->num_progs;
3114                 }
3115                 pi->num_progs++;
3116                 debug_printf_parse("done_command: ++num_progs=%d\n", pi->num_progs);
3117         } else {
3118                 debug_printf_parse("done_command: initializing, num_progs=%d\n", pi->num_progs);
3119         }
3120
3121         /* Only real trickiness here is that the uncommitted
3122          * child structure is not counted in pi->num_progs. */
3123         pi->progs = xrealloc(pi->progs, sizeof(*pi->progs) * (pi->num_progs+1));
3124         child = &pi->progs[pi->num_progs];
3125
3126         memset(child, 0, sizeof(*child));
3127         /*child->redirects = NULL;*/
3128         /*child->argv = NULL;*/
3129         /*child->is_stopped = 0;*/
3130         /*child->group = NULL;*/
3131         child->family = pi;
3132         //sp: /*child->sp = 0;*/
3133         //pt: child->parse_type = ctx->parse_type;
3134
3135         ctx->child = child;
3136         /* but ctx->pipe and ctx->list_head remain unchanged */
3137
3138         return pi->num_progs; /* used only for 0/nonzero check */
3139 }
3140
3141 static int done_pipe(struct p_context *ctx, pipe_style type)
3142 {
3143         struct pipe *new_p;
3144         int not_null;
3145
3146         debug_printf_parse("done_pipe entered, followup %d\n", type);
3147         not_null = done_command(ctx);  /* implicit closure of previous command */
3148         ctx->pipe->followup = type;
3149         ctx->pipe->res_word = ctx->res_w;
3150         /* Without this check, even just <enter> on command line generates
3151          * tree of three NOPs (!). Which is harmless but annoying.
3152          * IOW: it is safe to do it unconditionally. */
3153         if (not_null) {
3154                 new_p = new_pipe();
3155                 ctx->pipe->next = new_p;
3156                 ctx->pipe = new_p;
3157                 ctx->child = NULL;
3158                 done_command(ctx);  /* set up new pipe to accept commands */
3159         }
3160         debug_printf_parse("done_pipe return 0\n");
3161         return 0;
3162 }
3163
3164 /* peek ahead in the in_str to find out if we have a "&n" construct,
3165  * as in "2>&1", that represents duplicating a file descriptor.
3166  * returns either -2 (syntax error), -1 (no &), or the number found.
3167  */
3168 static int redirect_dup_num(struct in_str *input)
3169 {
3170         int ch, d = 0, ok = 0;
3171         ch = b_peek(input);
3172         if (ch != '&') return -1;
3173
3174         b_getch(input);  /* get the & */
3175         ch = b_peek(input);
3176         if (ch == '-') {
3177                 b_getch(input);
3178                 return -3;  /* "-" represents "close me" */
3179         }
3180         while (isdigit(ch)) {
3181                 d = d*10 + (ch-'0');
3182                 ok = 1;
3183                 b_getch(input);
3184                 ch = b_peek(input);
3185         }
3186         if (ok) return d;
3187
3188         bb_error_msg("ambiguous redirect");
3189         return -2;
3190 }
3191
3192 /* If a redirect is immediately preceded by a number, that number is
3193  * supposed to tell which file descriptor to redirect.  This routine
3194  * looks for such preceding numbers.  In an ideal world this routine
3195  * needs to handle all the following classes of redirects...
3196  *     echo 2>foo     # redirects fd  2 to file "foo", nothing passed to echo
3197  *     echo 49>foo    # redirects fd 49 to file "foo", nothing passed to echo
3198  *     echo -2>foo    # redirects fd  1 to file "foo",    "-2" passed to echo
3199  *     echo 49x>foo   # redirects fd  1 to file "foo",   "49x" passed to echo
3200  * A -1 output from this program means no valid number was found, so the
3201  * caller should use the appropriate default for this redirection.
3202  */
3203 static int redirect_opt_num(o_string *o)
3204 {
3205         int num;
3206
3207         if (o->length == 0)
3208                 return -1;
3209         for (num = 0; num < o->length; num++) {
3210                 if (!isdigit(*(o->data + num))) {
3211                         return -1;
3212                 }
3213         }
3214         /* reuse num (and save an int) */
3215         num = atoi(o->data);
3216         b_reset(o);
3217         return num;
3218 }
3219
3220 #if ENABLE_HUSH_TICK
3221 /* NB: currently disabled on NOMMU */
3222 static FILE *generate_stream_from_list(struct pipe *head)
3223 {
3224         FILE *pf;
3225         int pid, channel[2];
3226
3227         xpipe(channel);
3228 /* *** NOMMU WARNING *** */
3229 /* By using vfork here, we suspend parent till child exits or execs.
3230  * If child will not do it before it fills the pipe, it can block forever
3231  * in write(STDOUT_FILENO), and parent (shell) will be also stuck.
3232  */
3233         pid = BB_MMU ? fork() : vfork();
3234         if (pid < 0)
3235                 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
3236         if (pid == 0) { /* child */
3237                 if (ENABLE_HUSH_JOB)
3238                         die_sleep = 0; /* let nofork's xfuncs die */
3239                 close(channel[0]); /* NB: close _first_, then move fd! */
3240                 xmove_fd(channel[1], 1);
3241                 /* Prevent it from trying to handle ctrl-z etc */
3242 #if ENABLE_HUSH_JOB
3243                 run_list_level = 1;
3244 #endif
3245                 /* Process substitution is not considered to be usual
3246                  * 'command execution'.
3247                  * SUSv3 says ctrl-Z should be ignored, ctrl-C should not. */
3248                 /* Not needed, we are relying on it being disabled
3249                  * everywhere outside actual command execution. */
3250                 /*set_jobctrl_sighandler(SIG_IGN);*/
3251                 set_misc_sighandler(SIG_DFL);
3252                 /* Freeing 'head' here would break NOMMU. */
3253                 _exit(run_list(head));
3254         }
3255         close(channel[1]);
3256         pf = fdopen(channel[0], "r");
3257         return pf;
3258         /* 'head' is freed by the caller */
3259 }
3260
3261 /* Return code is exit status of the process that is run. */
3262 static int process_command_subs(o_string *dest,
3263                 /*struct p_context *ctx,*/
3264                 struct in_str *input,
3265                 const char *subst_end)
3266 {
3267         int retcode, ch, eol_cnt;
3268         o_string result = NULL_O_STRING;
3269         struct p_context inner;
3270         FILE *p;
3271         struct in_str pipe_str;
3272
3273         initialize_context(&inner);
3274
3275         /* recursion to generate command */
3276         retcode = parse_stream(&result, &inner, input, subst_end);
3277         if (retcode != 0)
3278                 return retcode;  /* syntax error or EOF */
3279         done_word(&result, &inner);
3280         done_pipe(&inner, PIPE_SEQ);
3281         b_free(&result);
3282
3283         p = generate_stream_from_list(inner.list_head);
3284         if (p == NULL)
3285                 return 1;
3286         close_on_exec_on(fileno(p));
3287         setup_file_in_str(&pipe_str, p);
3288
3289         /* now send results of command back into original context */
3290         eol_cnt = 0;
3291         while ((ch = b_getch(&pipe_str)) != EOF) {
3292                 if (ch == '\n') {
3293                         eol_cnt++;
3294                         continue;
3295                 }
3296                 while (eol_cnt) {
3297                         b_addqchr(dest, '\n', dest->o_quote);
3298                         eol_cnt--;
3299                 }
3300                 b_addqchr(dest, ch, dest->o_quote);
3301         }
3302
3303         debug_printf("done reading from pipe, pclose()ing\n");
3304         /* This is the step that wait()s for the child.  Should be pretty
3305          * safe, since we just read an EOF from its stdout.  We could try
3306          * to do better, by using wait(), and keeping track of background jobs
3307          * at the same time.  That would be a lot of work, and contrary
3308          * to the KISS philosophy of this program. */
3309         retcode = fclose(p);
3310         free_pipe_list(inner.list_head, /* indent: */ 0);
3311         debug_printf("closed FILE from child, retcode=%d\n", retcode);
3312         return retcode;
3313 }
3314 #endif
3315
3316 static int parse_group(o_string *dest, struct p_context *ctx,
3317         struct in_str *input, int ch)
3318 {
3319         int rcode;
3320         const char *endch = NULL;
3321         struct p_context sub;
3322         struct child_prog *child = ctx->child;
3323
3324         debug_printf_parse("parse_group entered\n");
3325         if (child->argv) {
3326                 syntax(NULL);
3327                 debug_printf_parse("parse_group return 1: syntax error, groups and arglists don't mix\n");
3328                 return 1;
3329         }
3330         initialize_context(&sub);
3331         endch = "}";
3332         if (ch == '(') {
3333                 endch = ")";
3334                 child->subshell = 1;
3335         }
3336         rcode = parse_stream(dest, &sub, input, endch);
3337 //vda: err chk?
3338         done_word(dest, &sub); /* finish off the final word in the subcontext */
3339         done_pipe(&sub, PIPE_SEQ);  /* and the final command there, too */
3340         child->group = sub.list_head;
3341
3342         debug_printf_parse("parse_group return %d\n", rcode);
3343         return rcode;
3344         /* child remains "open", available for possible redirects */
3345 }
3346
3347 /* Basically useful version until someone wants to get fancier,
3348  * see the bash man page under "Parameter Expansion" */
3349 static const char *lookup_param(const char *src)
3350 {
3351         struct variable *var = get_local_var(src);
3352         if (var)
3353                 return strchr(var->varstr, '=') + 1;
3354         return NULL;
3355 }
3356
3357 /* return code: 0 for OK, 1 for syntax error */
3358 static int handle_dollar(o_string *dest, /*struct p_context *ctx,*/ struct in_str *input)
3359 {
3360         int ch = b_peek(input);  /* first character after the $ */
3361         unsigned char quote_mask = dest->o_quote ? 0x80 : 0;
3362
3363         debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
3364         if (isalpha(ch)) {
3365                 b_addchr(dest, SPECIAL_VAR_SYMBOL);
3366                 //sp: ctx->child->sp++;
3367                 while (1) {
3368                         debug_printf_parse(": '%c'\n", ch);
3369                         b_getch(input);
3370                         b_addchr(dest, ch | quote_mask);
3371                         quote_mask = 0;
3372                         ch = b_peek(input);
3373                         if (!isalnum(ch) && ch != '_')
3374                                 break;
3375                 }
3376                 b_addchr(dest, SPECIAL_VAR_SYMBOL);
3377         } else if (isdigit(ch)) {
3378  make_one_char_var:
3379                 b_addchr(dest, SPECIAL_VAR_SYMBOL);
3380                 //sp: ctx->child->sp++;
3381                 debug_printf_parse(": '%c'\n", ch);
3382                 b_getch(input);
3383                 b_addchr(dest, ch | quote_mask);
3384                 b_addchr(dest, SPECIAL_VAR_SYMBOL);
3385         } else switch (ch) {
3386                 case '$': /* pid */
3387                 case '!': /* last bg pid */
3388                 case '?': /* last exit code */
3389                 case '#': /* number of args */
3390                 case '*': /* args */
3391                 case '@': /* args */
3392                         goto make_one_char_var;
3393                 case '{':
3394                         b_addchr(dest, SPECIAL_VAR_SYMBOL);
3395                         //sp: ctx->child->sp++;
3396                         b_getch(input);
3397                         /* XXX maybe someone will try to escape the '}' */
3398                         while (1) {
3399                                 ch = b_getch(input);
3400                                 if (ch == '}')
3401                                         break;
3402                                 if (!isalnum(ch) && ch != '_') {
3403                                         syntax("unterminated ${name}");
3404                                         debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
3405                                         return 1;
3406                                 }
3407                                 debug_printf_parse(": '%c'\n", ch);
3408                                 b_addchr(dest, ch | quote_mask);
3409                                 quote_mask = 0;
3410                         }
3411                         b_addchr(dest, SPECIAL_VAR_SYMBOL);
3412                         break;
3413 #if ENABLE_HUSH_TICK
3414                 case '(':
3415                         b_getch(input);
3416                         process_command_subs(dest, /*ctx,*/ input, ")");
3417                         break;
3418 #endif
3419                 case '-':
3420                 case '_':
3421                         /* still unhandled, but should be eventually */
3422                         bb_error_msg("unhandled syntax: $%c", ch);
3423                         return 1;
3424                         break;
3425                 default:
3426                         b_addqchr(dest, '$', dest->o_quote);
3427         }
3428         debug_printf_parse("handle_dollar return 0\n");
3429         return 0;
3430 }
3431
3432 /* return code is 0 for normal exit, 1 for syntax error */
3433 static int parse_stream(o_string *dest, struct p_context *ctx,
3434         struct in_str *input, const char *end_trigger)
3435 {
3436         int ch, m;
3437         int redir_fd;
3438         redir_type redir_style;
3439         int next;
3440
3441         /* Only double-quote state is handled in the state variable dest->o_quote.
3442          * A single-quote triggers a bypass of the main loop until its mate is
3443          * found.  When recursing, quote state is passed in via dest->o_quote. */
3444
3445         debug_printf_parse("parse_stream entered, end_trigger='%s'\n", end_trigger);
3446
3447         while (1) {
3448                 m = CHAR_IFS;
3449                 next = '\0';
3450                 ch = b_getch(input);
3451                 if (ch != EOF) {
3452                         m = charmap[ch];
3453                         if (ch != '\n')
3454                                 next = b_peek(input);
3455                 }
3456                 debug_printf_parse(": ch=%c (%d) m=%d quote=%d\n",
3457                                                 ch, ch, m, dest->o_quote);
3458                 if (m == CHAR_ORDINARY
3459                  || (m != CHAR_SPECIAL && dest->o_quote)
3460                 ) {
3461                         if (ch == EOF) {
3462                                 syntax("unterminated \"");
3463                                 debug_printf_parse("parse_stream return 1: unterminated \"\n");
3464                                 return 1;
3465                         }
3466                         b_addqchr(dest, ch, dest->o_quote);
3467                         continue;
3468                 }
3469                 if (m == CHAR_IFS) {
3470                         if (done_word(dest, ctx)) {
3471                                 debug_printf_parse("parse_stream return 1: done_word!=0\n");
3472                                 return 1;
3473                         }
3474                         if (ch == EOF)
3475                                 break;
3476                         /* If we aren't performing a substitution, treat
3477                          * a newline as a command separator.
3478                          * [why we don't handle it exactly like ';'? --vda] */
3479                         if (end_trigger && ch == '\n') {
3480                                 done_pipe(ctx, PIPE_SEQ);
3481                         }
3482                 }
3483                 if ((end_trigger && strchr(end_trigger, ch))
3484                  && !dest->o_quote && ctx->res_w == RES_NONE
3485                 ) {
3486                         debug_printf_parse("parse_stream return 0: end_trigger char found\n");
3487                         return 0;
3488                 }
3489                 if (m == CHAR_IFS)
3490                         continue;
3491                 switch (ch) {
3492                 case '#':
3493                         if (dest->length == 0 && !dest->o_quote) {
3494                                 while (1) {
3495                                         ch = b_peek(input);
3496                                         if (ch == EOF || ch == '\n')
3497                                                 break;
3498                                         b_getch(input);
3499                                 }
3500                         } else {
3501                                 b_addqchr(dest, ch, dest->o_quote);
3502                         }
3503                         break;
3504                 case '\\':
3505                         if (next == EOF) {
3506                                 syntax("\\<eof>");
3507                                 debug_printf_parse("parse_stream return 1: \\<eof>\n");
3508                                 return 1;
3509                         }
3510                         b_addqchr(dest, '\\', dest->o_quote);
3511                         b_addqchr(dest, b_getch(input), dest->o_quote);
3512                         break;
3513                 case '$':
3514                         if (handle_dollar(dest, /*ctx,*/ input) != 0) {
3515                                 debug_printf_parse("parse_stream return 1: handle_dollar returned non-0\n");
3516                                 return 1;
3517                         }
3518                         break;
3519                 case '\'':
3520                         dest->nonnull = 1;
3521                         while (1) {
3522                                 ch = b_getch(input);
3523                                 if (ch == EOF || ch == '\'')
3524                                         break;
3525                                 b_addchr(dest, ch);
3526                         }
3527                         if (ch == EOF) {
3528                                 syntax("unterminated '");
3529                                 debug_printf_parse("parse_stream return 1: unterminated '\n");
3530                                 return 1;
3531                         }
3532                         break;
3533                 case '"':
3534                         dest->nonnull = 1;
3535                         dest->o_quote ^= 1; /* invert */
3536                         break;
3537 #if ENABLE_HUSH_TICK
3538                 case '`':
3539                         process_command_subs(dest, /*ctx,*/ input, "`");
3540                         break;
3541 #endif
3542                 case '>':
3543                         redir_fd = redirect_opt_num(dest);
3544                         done_word(dest, ctx);
3545                         redir_style = REDIRECT_OVERWRITE;
3546                         if (next == '>') {
3547                                 redir_style = REDIRECT_APPEND;
3548                                 b_getch(input);
3549                         }
3550 #if 0
3551                         else if (next == '(') {
3552                                 syntax(">(process) not supported");
3553                                 debug_printf_parse("parse_stream return 1: >(process) not supported\n");
3554                                 return 1;
3555                         }
3556 #endif
3557                         setup_redirect(ctx, redir_fd, redir_style, input);
3558                         break;
3559                 case '<':
3560                         redir_fd = redirect_opt_num(dest);
3561                         done_word(dest, ctx);
3562                         redir_style = REDIRECT_INPUT;
3563                         if (next == '<') {
3564                                 redir_style = REDIRECT_HEREIS;
3565                                 b_getch(input);
3566                         } else if (next == '>') {
3567                                 redir_style = REDIRECT_IO;
3568                                 b_getch(input);
3569                         }
3570 #if 0
3571                         else if (next == '(') {
3572                                 syntax("<(process) not supported");
3573                                 debug_printf_parse("parse_stream return 1: <(process) not supported\n");
3574                                 return 1;
3575                         }
3576 #endif
3577                         setup_redirect(ctx, redir_fd, redir_style, input);
3578                         break;
3579                 case ';':
3580                         done_word(dest, ctx);
3581                         done_pipe(ctx, PIPE_SEQ);
3582                         break;
3583                 case '&':
3584                         done_word(dest, ctx);
3585                         if (next == '&') {
3586                                 b_getch(input);
3587                                 done_pipe(ctx, PIPE_AND);
3588                         } else {
3589                                 done_pipe(ctx, PIPE_BG);
3590                         }
3591                         break;
3592                 case '|':
3593                         done_word(dest, ctx);
3594                         if (next == '|') {
3595                                 b_getch(input);
3596                                 done_pipe(ctx, PIPE_OR);
3597                         } else {
3598                                 /* we could pick up a file descriptor choice here
3599                                  * with redirect_opt_num(), but bash doesn't do it.
3600                                  * "echo foo 2| cat" yields "foo 2". */
3601                                 done_command(ctx);
3602                         }
3603                         break;
3604                 case '(':
3605                 case '{':
3606                         if (parse_group(dest, ctx, input, ch) != 0) {
3607                                 debug_printf_parse("parse_stream return 1: parse_group returned non-0\n");
3608                                 return 1;
3609                         }
3610                         break;
3611                 case ')':
3612                 case '}':
3613                         syntax("unexpected }");   /* Proper use of this character is caught by end_trigger */
3614                         debug_printf_parse("parse_stream return 1: unexpected '}'\n");
3615                         return 1;
3616                 default:
3617                         if (ENABLE_HUSH_DEBUG)
3618                                 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
3619                 }
3620         }
3621         /* Complain if quote?  No, maybe we just finished a command substitution
3622          * that was quoted.  Example:
3623          * $ echo "`cat foo` plus more"
3624          * and we just got the EOF generated by the subshell that ran "cat foo"
3625          * The only real complaint is if we got an EOF when end_trigger != NULL,
3626          * that is, we were really supposed to get end_trigger, and never got
3627          * one before the EOF.  Can't use the standard "syntax error" return code,
3628          * so that parse_stream_outer can distinguish the EOF and exit smoothly. */
3629         debug_printf_parse("parse_stream return %d\n", -(end_trigger != NULL));
3630         if (end_trigger)
3631                 return -1;
3632         return 0;
3633 }
3634
3635 static void set_in_charmap(const char *set, int code)
3636 {
3637         while (*set)
3638                 charmap[(unsigned char)*set++] = code;
3639 }
3640
3641 static void update_charmap(void)
3642 {
3643         /* char *ifs and char charmap[256] are both globals. */
3644         ifs = getenv("IFS");
3645         if (ifs == NULL)
3646                 ifs = " \t\n";
3647         /* Precompute a list of 'flow through' behavior so it can be treated
3648          * quickly up front.  Computation is necessary because of IFS.
3649          * Special case handling of IFS == " \t\n" is not implemented.
3650          * The charmap[] array only really needs two bits each,
3651          * and on most machines that would be faster (reduced L1 cache use).
3652          */
3653         memset(charmap, CHAR_ORDINARY, sizeof(charmap));
3654 #if ENABLE_HUSH_TICK
3655         set_in_charmap("\\$\"`", CHAR_SPECIAL);
3656 #else
3657         set_in_charmap("\\$\"", CHAR_SPECIAL);
3658 #endif
3659         set_in_charmap("<>;&|(){}#'", CHAR_ORDINARY_IF_QUOTED);
3660         set_in_charmap(ifs, CHAR_IFS);  /* are ordinary if quoted */
3661 }
3662
3663 /* most recursion does not come through here, the exception is
3664  * from builtin_source() and builtin_eval() */
3665 static int parse_and_run_stream(struct in_str *inp, int parse_flag)
3666 {
3667         struct p_context ctx;
3668         o_string temp = NULL_O_STRING;
3669         int rcode;
3670         do {
3671                 ctx.parse_type = parse_flag;
3672                 initialize_context(&ctx);
3673                 update_charmap();
3674                 if (!(parse_flag & PARSEFLAG_SEMICOLON) || (parse_flag & PARSEFLAG_REPARSING))
3675                         set_in_charmap(";$&|", CHAR_ORDINARY);
3676 #if ENABLE_HUSH_INTERACTIVE
3677                 inp->promptmode = 0; /* PS1 */
3678 #endif
3679                 /* We will stop & execute after each ';' or '\n'.
3680                  * Example: "sleep 9999; echo TEST" + ctrl-C:
3681                  * TEST should be printed */
3682                 rcode = parse_stream(&temp, &ctx, inp, ";\n");
3683                 if (rcode != 1 && ctx.old_flag != 0) {
3684                         syntax(NULL);
3685                 }
3686                 if (rcode != 1 && ctx.old_flag == 0) {
3687                         done_word(&temp, &ctx);
3688                         done_pipe(&ctx, PIPE_SEQ);
3689                         debug_print_tree(ctx.list_head, 0);
3690                         debug_printf_exec("parse_stream_outer: run_and_free_list\n");
3691                         run_and_free_list(ctx.list_head);
3692                 } else {
3693                         if (ctx.old_flag != 0) {
3694                                 free(ctx.stack);
3695                                 b_reset(&temp);
3696                         }
3697                         temp.nonnull = 0;
3698                         temp.o_quote = 0;
3699                         inp->p = NULL;
3700                         free_pipe_list(ctx.list_head, /* indent: */ 0);
3701                 }
3702                 b_free(&temp);
3703         } while (rcode != -1 && !(parse_flag & PARSEFLAG_EXIT_FROM_LOOP));   /* loop on syntax errors, return on EOF */
3704         return 0;
3705 }
3706
3707 static int parse_and_run_string(const char *s, int parse_flag)
3708 {
3709         struct in_str input;
3710         setup_string_in_str(&input, s);
3711         return parse_and_run_stream(&input, parse_flag);
3712 }
3713
3714 static int parse_and_run_file(FILE *f)
3715 {
3716         int rcode;
3717         struct in_str input;
3718         setup_file_in_str(&input, f);
3719         rcode = parse_and_run_stream(&input, PARSEFLAG_SEMICOLON);
3720         return rcode;
3721 }
3722
3723 #if ENABLE_HUSH_JOB
3724 /* Make sure we have a controlling tty.  If we get started under a job
3725  * aware app (like bash for example), make sure we are now in charge so
3726  * we don't fight over who gets the foreground */
3727 static void setup_job_control(void)
3728 {
3729         pid_t shell_pgrp;
3730
3731         saved_task_pgrp = shell_pgrp = getpgrp();
3732         debug_printf_jobs("saved_task_pgrp=%d\n", saved_task_pgrp);
3733         close_on_exec_on(interactive_fd);
3734
3735         /* If we were ran as 'hush &',
3736          * sleep until we are in the foreground.  */
3737         while (tcgetpgrp(interactive_fd) != shell_pgrp) {
3738                 /* Send TTIN to ourself (should stop us) */
3739                 kill(- shell_pgrp, SIGTTIN);
3740                 shell_pgrp = getpgrp();
3741         }
3742
3743         /* Ignore job-control and misc signals.  */
3744         set_jobctrl_sighandler(SIG_IGN);
3745         set_misc_sighandler(SIG_IGN);
3746 //huh?  signal(SIGCHLD, SIG_IGN);
3747
3748         /* We _must_ restore tty pgrp on fatal signals */
3749         set_fatal_sighandler(sigexit);
3750
3751         /* Put ourselves in our own process group.  */
3752         setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
3753         /* Grab control of the terminal.  */
3754         tcsetpgrp(interactive_fd, getpid());
3755 }
3756 #endif
3757
3758 int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
3759 int hush_main(int argc, char **argv)
3760 {
3761         static const char version_str[] ALIGN1 = "HUSH_VERSION="HUSH_VER_STR;
3762         static const struct variable const_shell_ver = {
3763                 .next = NULL,
3764                 .varstr = (char*)version_str,
3765                 .max_len = 1, /* 0 can provoke free(name) */
3766                 .flg_export = 1,
3767                 .flg_read_only = 1,
3768         };
3769
3770         int opt;
3771         FILE *input;
3772         char **e;
3773         struct variable *cur_var;
3774
3775         INIT_G();
3776
3777         /* Deal with HUSH_VERSION */
3778         shell_ver = const_shell_ver; /* copying struct here */
3779         top_var = &shell_ver;
3780         unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
3781         /* Initialize our shell local variables with the values
3782          * currently living in the environment */
3783         cur_var = top_var;
3784         e = environ;
3785         if (e) while (*e) {
3786                 char *value = strchr(*e, '=');
3787                 if (value) { /* paranoia */
3788                         cur_var->next = xzalloc(sizeof(*cur_var));
3789                         cur_var = cur_var->next;
3790                         cur_var->varstr = *e;
3791                         cur_var->max_len = strlen(*e);
3792                         cur_var->flg_export = 1;
3793                 }
3794                 e++;
3795         }
3796         putenv((char *)version_str); /* reinstate HUSH_VERSION */
3797
3798 #if ENABLE_FEATURE_EDITING
3799         line_input_state = new_line_input_t(FOR_SHELL);
3800 #endif
3801         /* XXX what should these be while sourcing /etc/profile? */
3802         global_argc = argc;
3803         global_argv = argv;
3804         /* Initialize some more globals to non-zero values */
3805         set_cwd();
3806 #if ENABLE_HUSH_INTERACTIVE
3807 #if ENABLE_FEATURE_EDITING
3808         cmdedit_set_initial_prompt();
3809 #endif
3810         PS2 = "> ";
3811 #endif
3812
3813         if (EXIT_SUCCESS) /* otherwise is already done */
3814                 last_return_code = EXIT_SUCCESS;
3815
3816         if (argv[0] && argv[0][0] == '-') {
3817                 debug_printf("sourcing /etc/profile\n");
3818                 input = fopen("/etc/profile", "r");
3819                 if (input != NULL) {
3820                         close_on_exec_on(fileno(input));
3821                         parse_and_run_file(input);
3822                         fclose(input);
3823                 }
3824         }
3825         input = stdin;
3826
3827         while ((opt = getopt(argc, argv, "c:xif")) > 0) {
3828                 switch (opt) {
3829                 case 'c':
3830                         global_argv = argv + optind;
3831                         global_argc = argc - optind;
3832                         opt = parse_and_run_string(optarg, PARSEFLAG_SEMICOLON);
3833                         goto final_return;
3834                 case 'i':
3835                         /* Well, we cannot just declare interactiveness,
3836                          * we have to have some stuff (ctty, etc) */
3837                         /* interactive_fd++; */
3838                         break;
3839                 case 'f':
3840                         fake_mode = 1;
3841                         break;
3842                 default:
3843 #ifndef BB_VER
3844                         fprintf(stderr, "Usage: sh [FILE]...\n"
3845                                         "   or: sh -c command [args]...\n\n");
3846                         exit(EXIT_FAILURE);
3847 #else
3848                         bb_show_usage();
3849 #endif
3850                 }
3851         }
3852 #if ENABLE_HUSH_JOB
3853         /* A shell is interactive if the '-i' flag was given, or if all of
3854          * the following conditions are met:
3855          *    no -c command
3856          *    no arguments remaining or the -s flag given
3857          *    standard input is a terminal
3858          *    standard output is a terminal
3859          *    Refer to Posix.2, the description of the 'sh' utility. */
3860         if (argv[optind] == NULL && input == stdin
3861          && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)
3862         ) {
3863                 saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
3864                 debug_printf("saved_tty_pgrp=%d\n", saved_tty_pgrp);
3865                 if (saved_tty_pgrp >= 0) {
3866                         /* try to dup to high fd#, >= 255 */
3867                         interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
3868                         if (interactive_fd < 0) {
3869                                 /* try to dup to any fd */
3870                                 interactive_fd = dup(STDIN_FILENO);
3871                                 if (interactive_fd < 0)
3872                                         /* give up */
3873                                         interactive_fd = 0;
3874                         }
3875                         // TODO: track & disallow any attempts of user
3876                         // to (inadvertently) close/redirect it
3877                 }
3878         }
3879         debug_printf("interactive_fd=%d\n", interactive_fd);
3880         if (interactive_fd) {
3881                 fcntl(interactive_fd, F_SETFD, FD_CLOEXEC);
3882                 /* Looks like they want an interactive shell */
3883                 setup_job_control();
3884                 /* -1 is special - makes xfuncs longjmp, not exit
3885                  * (we reset die_sleep = 0 whereever we [v]fork) */
3886                 die_sleep = -1;
3887                 if (setjmp(die_jmp)) {
3888                         /* xfunc has failed! die die die */
3889                         hush_exit(xfunc_error_retval);
3890                 }
3891 #if !ENABLE_FEATURE_SH_EXTRA_QUIET
3892                 printf("\n\n%s hush - the humble shell v"HUSH_VER_STR"\n", bb_banner);
3893                 printf("Enter 'help' for a list of built-in commands.\n\n");
3894 #endif
3895         }
3896 #elif ENABLE_HUSH_INTERACTIVE
3897 /* no job control compiled, only prompt/line editing */
3898         if (argv[optind] == NULL && input == stdin
3899          && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)
3900         ) {
3901                 interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
3902                 if (interactive_fd < 0) {
3903                         /* try to dup to any fd */
3904                         interactive_fd = dup(STDIN_FILENO);
3905                         if (interactive_fd < 0)
3906                                 /* give up */
3907                                 interactive_fd = 0;
3908                 }
3909                 if (interactive_fd)
3910                         fcntl(interactive_fd, F_SETFD, FD_CLOEXEC);
3911         }
3912 #endif
3913
3914         if (argv[optind] == NULL) {
3915                 opt = parse_and_run_file(stdin);
3916         } else {
3917                 debug_printf("\nrunning script '%s'\n", argv[optind]);
3918                 global_argv = argv + optind;
3919                 global_argc = argc - optind;
3920                 input = xfopen(argv[optind], "r");
3921                 fcntl(fileno(input), F_SETFD, FD_CLOEXEC);
3922                 opt = parse_and_run_file(input);
3923         }
3924
3925  final_return:
3926
3927 #if ENABLE_FEATURE_CLEAN_UP
3928         fclose(input);
3929         if (cwd != bb_msg_unknown)
3930                 free((char*)cwd);
3931         cur_var = top_var->next;
3932         while (cur_var) {
3933                 struct variable *tmp = cur_var;
3934                 if (!cur_var->max_len)
3935                         free(cur_var->varstr);
3936                 cur_var = cur_var->next;
3937                 free(tmp);
3938         }
3939 #endif
3940         hush_exit(opt ? opt : last_return_code);
3941 }
3942
3943
3944 #if ENABLE_LASH
3945 int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
3946 int lash_main(int argc, char **argv)
3947 {
3948         //bb_error_msg("lash is deprecated, please use hush instead");
3949         return hush_main(argc, argv);
3950 }
3951 #endif