hush: now it's -Wwrite-strings clean
[oweals/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  *      simple_itoa() was lifted from boa-0.93.15
24  *      b_addchr() derived from similar w_addchar function in glibc-2.2
25  *      setup_redirect(), redirect_opt_num(), and big chunks of main()
26  *        and many builtins derived from contributions by Erik Andersen
27  *      miscellaneous bugfixes from Matt Kraai
28  *
29  * There are two big (and related) architecture differences between
30  * this parser and the lash parser.  One is that this version is
31  * actually designed from the ground up to understand nearly all
32  * of the Bourne grammar.  The second, consequential change is that
33  * the parser and input reader have been turned inside out.  Now,
34  * the parser is in control, and asks for input as needed.  The old
35  * way had the input reader in control, and it asked for parsing to
36  * take place as needed.  The new way makes it much easier to properly
37  * handle the recursion implicit in the various substitutions, especially
38  * across continuation lines.
39  *
40  * Bash grammar not implemented: (how many of these were in original sh?)
41  *      $@ (those sure look like weird quoting rules)
42  *      $_
43  *      ! negation operator for pipes
44  *      &> and >& redirection of stdout+stderr
45  *      Brace Expansion
46  *      Tilde Expansion
47  *      fancy forms of Parameter Expansion
48  *      aliases
49  *      Arithmetic Expansion
50  *      <(list) and >(list) Process Substitution
51  *      reserved words: case, esac, select, function
52  *      Here Documents ( << word )
53  *      Functions
54  * Major bugs:
55  *      job handling woefully incomplete and buggy
56  *      reserved word execution woefully incomplete and buggy
57  * to-do:
58  *      port selected bugfixes from post-0.49 busybox lash - done?
59  *      finish implementing reserved words: for, while, until, do, done
60  *      change { and } from special chars to reserved words
61  *      builtins: break, continue, eval, return, set, trap, ulimit
62  *      test magic exec
63  *      handle children going into background
64  *      clean up recognition of null pipes
65  *      check setting of global_argc and global_argv
66  *      control-C handling, probably with longjmp
67  *      follow IFS rules more precisely, including update semantics
68  *      figure out what to do with backslash-newline
69  *      explain why we use signal instead of sigaction
70  *      propagate syntax errors, die on resource errors?
71  *      continuation lines, both explicit and implicit - done?
72  *      memory leak finding and plugging - done?
73  *      more testing, especially quoting rules and redirection
74  *      document how quoting rules not precisely followed for variable assignments
75  *      maybe change map[] to use 2-bit entries
76  *      (eventually) remove all the printf's
77  *
78  * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
79  */
80
81 #include "busybox.h"
82 #include <glob.h>      /* glob, of course */
83 #include <getopt.h>    /* should be pretty obvious */
84
85 //#include <sys/wait.h>
86 //#include <signal.h>
87
88 /* #include <dmalloc.h> */
89 /* #define DEBUG_SHELL */
90
91
92 #define SPECIAL_VAR_SYMBOL 03
93 #define FLAG_EXIT_FROM_LOOP 1
94 #define FLAG_PARSE_SEMICOLON (1 << 1)           /* symbol ';' is special for parser */
95 #define FLAG_REPARSING           (1 << 2)               /* >=2nd pass */
96
97 typedef enum {
98         REDIRECT_INPUT     = 1,
99         REDIRECT_OVERWRITE = 2,
100         REDIRECT_APPEND    = 3,
101         REDIRECT_HEREIS    = 4,
102         REDIRECT_IO        = 5
103 } redir_type;
104
105 /* The descrip member of this structure is only used to make debugging
106  * output pretty */
107 static const struct {int mode; int default_fd; const char *descrip;} redir_table[] = {
108         { 0,                         0, "()" },
109         { O_RDONLY,                  0, "<"  },
110         { O_CREAT|O_TRUNC|O_WRONLY,  1, ">"  },
111         { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
112         { O_RDONLY,                 -1, "<<" },
113         { O_RDWR,                    1, "<>" }
114 };
115
116 typedef enum {
117         PIPE_SEQ = 1,
118         PIPE_AND = 2,
119         PIPE_OR  = 3,
120         PIPE_BG  = 4,
121 } pipe_style;
122
123 /* might eventually control execution */
124 typedef enum {
125         RES_NONE  = 0,
126         RES_IF    = 1,
127         RES_THEN  = 2,
128         RES_ELIF  = 3,
129         RES_ELSE  = 4,
130         RES_FI    = 5,
131         RES_FOR   = 6,
132         RES_WHILE = 7,
133         RES_UNTIL = 8,
134         RES_DO    = 9,
135         RES_DONE  = 10,
136         RES_XXXX  = 11,
137         RES_IN    = 12,
138         RES_SNTX  = 13
139 } reserved_style;
140 #define FLAG_END   (1<<RES_NONE)
141 #define FLAG_IF    (1<<RES_IF)
142 #define FLAG_THEN  (1<<RES_THEN)
143 #define FLAG_ELIF  (1<<RES_ELIF)
144 #define FLAG_ELSE  (1<<RES_ELSE)
145 #define FLAG_FI    (1<<RES_FI)
146 #define FLAG_FOR   (1<<RES_FOR)
147 #define FLAG_WHILE (1<<RES_WHILE)
148 #define FLAG_UNTIL (1<<RES_UNTIL)
149 #define FLAG_DO    (1<<RES_DO)
150 #define FLAG_DONE  (1<<RES_DONE)
151 #define FLAG_IN    (1<<RES_IN)
152 #define FLAG_START (1<<RES_XXXX)
153
154 /* This holds pointers to the various results of parsing */
155 struct p_context {
156         struct child_prog *child;
157         struct pipe *list_head;
158         struct pipe *pipe;
159         struct redir_struct *pending_redirect;
160         reserved_style w;
161         int old_flag;               /* for figuring out valid reserved words */
162         struct p_context *stack;
163         int type;           /* define type of parser : ";$" common or special symbol */
164         /* How about quoting status? */
165 };
166
167 struct redir_struct {
168         redir_type type;            /* type of redirection */
169         int fd;                     /* file descriptor being redirected */
170         int dup;                    /* -1, or file descriptor being duplicated */
171         struct redir_struct *next;  /* pointer to the next redirect in the list */
172         glob_t word;                /* *word.gl_pathv is the filename */
173 };
174
175 struct child_prog {
176         pid_t pid;                  /* 0 if exited */
177         char **argv;                /* program name and arguments */
178         struct pipe *group;         /* if non-NULL, first in group or subshell */
179         int subshell;               /* flag, non-zero if group must be forked */
180         struct redir_struct *redirects; /* I/O redirections */
181         glob_t glob_result;         /* result of parameter globbing */
182         int is_stopped;             /* is the program currently running? */
183         struct pipe *family;        /* pointer back to the child's parent pipe */
184         int sp;                     /* number of SPECIAL_VAR_SYMBOL */
185         int type;
186 };
187
188 struct pipe {
189         int jobid;                  /* job number */
190         int num_progs;              /* total number of programs in job */
191         int running_progs;          /* number of programs running */
192         char *text;                 /* name of job */
193         char *cmdbuf;               /* buffer various argv's point into */
194         pid_t pgrp;                 /* process group ID for the job */
195         struct child_prog *progs;   /* array of commands in pipe */
196         struct pipe *next;          /* to track background commands */
197         int stopped_progs;          /* number of programs alive, but stopped */
198         int job_context;            /* bitmask defining current context */
199         pipe_style followup;        /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
200         reserved_style r_mode;      /* supports if, for, while, until */
201 };
202
203 struct close_me {
204         int fd;
205         struct close_me *next;
206 };
207
208 struct variables {
209         const char *name;
210         const char *value;
211         int flg_export;
212         int flg_read_only;
213         struct variables *next;
214 };
215
216 /* globals, connect us to the outside world
217  * the first three support $?, $#, and $1 */
218 static char **global_argv;
219 static int global_argc;
220 static int last_return_code;
221 extern char **environ; /* This is in <unistd.h>, but protected with __USE_GNU */
222
223 /* "globals" within this file */
224 static const char *ifs;
225 static unsigned char map[256];
226 static int fake_mode;
227 static int interactive;
228 static struct close_me *close_me_head;
229 static const char *cwd;
230 static struct pipe *job_list;
231 static unsigned last_bg_pid;
232 static int last_jobid;
233 static unsigned shell_terminal;
234 static const char *PS1;
235 static const char *PS2;
236 static struct variables shell_ver = { "HUSH_VERSION", "0.01", 1, 1, 0 };
237 static struct variables *top_vars = &shell_ver;
238
239
240 #define B_CHUNK (100)
241 #define B_NOSPAC 1
242
243 typedef struct {
244         char *data;
245         int length;
246         int maxlen;
247         int quote;
248         int nonnull;
249 } o_string;
250 #define NULL_O_STRING {NULL,0,0,0,0}
251 /* used for initialization:
252         o_string foo = NULL_O_STRING; */
253
254 /* I can almost use ordinary FILE *.  Is open_memstream() universally
255  * available?  Where is it documented? */
256 struct in_str {
257         const char *p;
258         char peek_buf[2];
259         int __promptme;
260         int promptmode;
261         FILE *file;
262         int (*get) (struct in_str *);
263         int (*peek) (struct in_str *);
264 };
265 #define b_getch(input) ((input)->get(input))
266 #define b_peek(input) ((input)->peek(input))
267
268 #define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
269
270 struct built_in_command {
271         const char *cmd;                        /* name */
272         const char *descr;                      /* description */
273         int (*function) (struct child_prog *);  /* function ptr */
274 };
275
276 /* belongs in busybox.h */
277 static int max(int a, int b)
278 {
279         return (a>b)?a:b;
280 }
281
282 /* This should be in utility.c */
283 #ifdef DEBUG_SHELL
284 static void debug_printf(const char *format, ...)
285 {
286         va_list args;
287         va_start(args, format);
288         vfprintf(stderr, format, args);
289         va_end(args);
290 }
291 /* broken, of course, but OK for testing */
292 static char *indenter(int i)
293 {
294         static char blanks[] = "                                    ";
295         return &blanks[sizeof(blanks)-i-1];
296 }
297 #else
298 #define debug_printf(...) do {;} while (0);
299 #endif
300 #define final_printf debug_printf
301
302 static void __syntax(const char *file, int line)
303 {
304         bb_error_msg("syntax error %s:%d", file, line);
305 }
306 // NB: was __FILE__, but that produces full path sometimess, so...
307 #define syntax() __syntax("hush.c", __LINE__)
308
309 /* Index of subroutines: */
310 /*   function prototypes for builtins */
311 static int builtin_cd(struct child_prog *child);
312 static int builtin_env(struct child_prog *child);
313 static int builtin_eval(struct child_prog *child);
314 static int builtin_exec(struct child_prog *child);
315 static int builtin_exit(struct child_prog *child);
316 static int builtin_export(struct child_prog *child);
317 static int builtin_fg_bg(struct child_prog *child);
318 static int builtin_help(struct child_prog *child);
319 static int builtin_jobs(struct child_prog *child);
320 static int builtin_pwd(struct child_prog *child);
321 static int builtin_read(struct child_prog *child);
322 static int builtin_set(struct child_prog *child);
323 static int builtin_shift(struct child_prog *child);
324 static int builtin_source(struct child_prog *child);
325 static int builtin_umask(struct child_prog *child);
326 static int builtin_unset(struct child_prog *child);
327 static int builtin_not_written(struct child_prog *child);
328 /*   o_string manipulation: */
329 static int b_check_space(o_string *o, int len);
330 static int b_addchr(o_string *o, int ch);
331 static void b_reset(o_string *o);
332 static int b_addqchr(o_string *o, int ch, int quote);
333 static int b_adduint(o_string *o, unsigned i);
334 /*  in_str manipulations: */
335 static int static_get(struct in_str *i);
336 static int static_peek(struct in_str *i);
337 static int file_get(struct in_str *i);
338 static int file_peek(struct in_str *i);
339 static void setup_file_in_str(struct in_str *i, FILE *f);
340 static void setup_string_in_str(struct in_str *i, const char *s);
341 /*  close_me manipulations: */
342 static void mark_open(int fd);
343 static void mark_closed(int fd);
344 static void close_all(void);
345 /*  "run" the final data structures: */
346 static int free_pipe_list(struct pipe *head, int indent);
347 static int free_pipe(struct pipe *pi, int indent);
348 /*  really run the final data structures: */
349 static int setup_redirects(struct child_prog *prog, int squirrel[]);
350 static int run_list_real(struct pipe *pi);
351 static void pseudo_exec(struct child_prog *child) ATTRIBUTE_NORETURN;
352 static int run_pipe_real(struct pipe *pi);
353 /*   extended glob support: */
354 static int globhack(const char *src, int flags, glob_t *pglob);
355 static int glob_needed(const char *s);
356 static int xglob(o_string *dest, int flags, glob_t *pglob);
357 /*   variable assignment: */
358 static int is_assignment(const char *s);
359 /*   data structure manipulation: */
360 static int setup_redirect(struct p_context *ctx, int fd, redir_type style, struct in_str *input);
361 static void initialize_context(struct p_context *ctx);
362 static int done_word(o_string *dest, struct p_context *ctx);
363 static int done_command(struct p_context *ctx);
364 static int done_pipe(struct p_context *ctx, pipe_style type);
365 /*   primary string parsing: */
366 static int redirect_dup_num(struct in_str *input);
367 static int redirect_opt_num(o_string *o);
368 static int process_command_subs(o_string *dest, struct p_context *ctx, struct in_str *input, int subst_end);
369 static int parse_group(o_string *dest, struct p_context *ctx, struct in_str *input, int ch);
370 static const char *lookup_param(const char *src);
371 static char *make_string(char **inp);
372 static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input);
373 static int parse_string(o_string *dest, struct p_context *ctx, const char *src);
374 static int parse_stream(o_string *dest, struct p_context *ctx, struct in_str *input0, int end_trigger);
375 /*   setup: */
376 static int parse_stream_outer(struct in_str *inp, int flag);
377 static int parse_string_outer(const char *s, int flag);
378 static int parse_file_outer(FILE *f);
379 /*   job management: */
380 static int checkjobs(struct pipe* fg_pipe);
381 static void insert_bg_job(struct pipe *pi);
382 static void remove_bg_job(struct pipe *pi);
383 /*     local variable support */
384 static char **make_list_in(char **inp, char *name);
385 static char *insert_var_value(char *inp);
386 static const char *get_local_var(const char *var);
387 static void  unset_local_var(const char *name);
388 static int set_local_var(const char *s, int flg_export);
389
390 /* Table of built-in functions.  They can be forked or not, depending on
391  * context: within pipes, they fork.  As simple commands, they do not.
392  * When used in non-forking context, they can change global variables
393  * in the parent shell process.  If forked, of course they cannot.
394  * For example, 'unset foo | whatever' will parse and run, but foo will
395  * still be set at the end. */
396 static const struct built_in_command bltins[] = {
397         { "bg", "Resume a job in the background", builtin_fg_bg },
398         { "break", "Exit for, while or until loop", builtin_not_written },
399         { "cd", "Change working directory", builtin_cd },
400         { "continue", "Continue for, while or until loop", builtin_not_written },
401         { "env", "Print all environment variables", builtin_env },
402         { "eval", "Construct and run shell command", builtin_eval },
403         { "exec", "Exec command, replacing this shell with the exec'd process",
404                 builtin_exec },
405         { "exit", "Exit from shell()", builtin_exit },
406         { "export", "Set environment variable", builtin_export },
407         { "fg", "Bring job into the foreground", builtin_fg_bg },
408         { "jobs", "Lists the active jobs", builtin_jobs },
409         { "pwd", "Print current directory", builtin_pwd },
410         { "read", "Input environment variable", builtin_read },
411         { "return", "Return from a function", builtin_not_written },
412         { "set", "Set/unset shell local variables", builtin_set },
413         { "shift", "Shift positional parameters", builtin_shift },
414         { "trap", "Trap signals", builtin_not_written },
415         { "ulimit","Controls resource limits", builtin_not_written },
416         { "umask","Sets file creation mask", builtin_umask },
417         { "unset", "Unset environment variable", builtin_unset },
418         { ".", "Source-in and run commands in a file", builtin_source },
419         { "help", "List shell built-in commands", builtin_help },
420         { NULL, NULL, NULL }
421 };
422
423 static const char *set_cwd(void)
424 {
425         if (cwd == bb_msg_unknown)
426                 cwd = NULL;     /* xgetcwd(arg) called free(arg) */
427         cwd = xgetcwd((char *)cwd);
428         if (!cwd)
429                 cwd = bb_msg_unknown;
430         return cwd;
431 }
432
433 /* built-in 'eval' handler */
434 static int builtin_eval(struct child_prog *child)
435 {
436         char *str = NULL;
437         int rcode = EXIT_SUCCESS;
438
439         if (child->argv[1]) {
440                 str = make_string(child->argv + 1);
441                 parse_string_outer(str, FLAG_EXIT_FROM_LOOP |
442                                         FLAG_PARSE_SEMICOLON);
443                 free(str);
444                 rcode = last_return_code;
445         }
446         return rcode;
447 }
448
449 /* built-in 'cd <path>' handler */
450 static int builtin_cd(struct child_prog *child)
451 {
452         char *newdir;
453         if (child->argv[1] == NULL)
454                 newdir = getenv("HOME");
455         else
456                 newdir = child->argv[1];
457         if (chdir(newdir)) {
458                 printf("cd: %s: %s\n", newdir, strerror(errno));
459                 return EXIT_FAILURE;
460         }
461         set_cwd();
462         return EXIT_SUCCESS;
463 }
464
465 /* built-in 'env' handler */
466 static int builtin_env(struct child_prog *dummy ATTRIBUTE_UNUSED)
467 {
468         char **e = environ;
469         if (e == NULL)
470                 return EXIT_FAILURE;
471         while (*e) {
472                 puts(*e++);
473         }
474         return EXIT_SUCCESS;
475 }
476
477 /* built-in 'exec' handler */
478 static int builtin_exec(struct child_prog *child)
479 {
480         if (child->argv[1] == NULL)
481                 return EXIT_SUCCESS;   /* Really? */
482         child->argv++;
483         pseudo_exec(child);
484         /* never returns */
485 }
486
487 /* built-in 'exit' handler */
488 static int builtin_exit(struct child_prog *child)
489 {
490         if (child->argv[1] == NULL)
491                 exit(last_return_code);
492         exit (atoi(child->argv[1]));
493 }
494
495 /* built-in 'export VAR=value' handler */
496 static int builtin_export(struct child_prog *child)
497 {
498         int res = 0;
499         char *name = child->argv[1];
500
501         if (name == NULL) {
502                 return builtin_env(child);
503         }
504
505         name = strdup(name);
506
507         if (name) {
508                 const char *value = strchr(name, '=');
509
510                 if (!value) {
511                         char *tmp;
512                         /* They are exporting something without an =VALUE */
513
514                         value = get_local_var(name);
515                         if (value) {
516                                 size_t ln = strlen(name);
517
518                                 tmp = realloc(name, ln+strlen(value)+2);
519                                 if (tmp == NULL)
520                                         res = -1;
521                                 else {
522                                         sprintf(tmp+ln, "=%s", value);
523                                         name = tmp;
524                                 }
525                         } else {
526                                 /* bash does not return an error when trying to export
527                                  * an undefined variable.  Do likewise. */
528                                 res = 1;
529                         }
530                 }
531         }
532         if (res < 0)
533                 bb_perror_msg("export");
534         else if (res == 0)
535                 res = set_local_var(name, 1);
536         else
537                 res = 0;
538         free(name);
539         return res;
540 }
541
542 /* built-in 'fg' and 'bg' handler */
543 static int builtin_fg_bg(struct child_prog *child)
544 {
545         int i, jobnum;
546         struct pipe *pi = NULL;
547
548         if (!interactive)
549                 return EXIT_FAILURE;
550         /* If they gave us no args, assume they want the last backgrounded task */
551         if (!child->argv[1]) {
552                 for (pi = job_list; pi; pi = pi->next) {
553                         if (pi->jobid == last_jobid) {
554                                 break;
555                         }
556                 }
557                 if (!pi) {
558                         bb_error_msg("%s: no current job", child->argv[0]);
559                         return EXIT_FAILURE;
560                 }
561         } else {
562                 if (sscanf(child->argv[1], "%%%d", &jobnum) != 1) {
563                         bb_error_msg("%s: bad argument '%s'", child->argv[0], child->argv[1]);
564                         return EXIT_FAILURE;
565                 }
566                 for (pi = job_list; pi; pi = pi->next) {
567                         if (pi->jobid == jobnum) {
568                                 break;
569                         }
570                 }
571                 if (!pi) {
572                         bb_error_msg("%s: %d: no such job", child->argv[0], jobnum);
573                         return EXIT_FAILURE;
574                 }
575         }
576
577         if (*child->argv[0] == 'f') {
578                 /* Put the job into the foreground.  */
579                 tcsetpgrp(shell_terminal, pi->pgrp);
580         }
581
582         /* Restart the processes in the job */
583         for (i = 0; i < pi->num_progs; i++)
584                 pi->progs[i].is_stopped = 0;
585
586         if ( (i=kill(- pi->pgrp, SIGCONT)) < 0) {
587                 if (i == ESRCH) {
588                         remove_bg_job(pi);
589                 } else {
590                         bb_perror_msg("kill (SIGCONT)");
591                 }
592         }
593
594         pi->stopped_progs = 0;
595         return EXIT_SUCCESS;
596 }
597
598 /* built-in 'help' handler */
599 static int builtin_help(struct child_prog *dummy ATTRIBUTE_UNUSED)
600 {
601         const struct built_in_command *x;
602
603         printf("\nBuilt-in commands:\n");
604         printf("-------------------\n");
605         for (x = bltins; x->cmd; x++) {
606                 if (x->descr == NULL)
607                         continue;
608                 printf("%s\t%s\n", x->cmd, x->descr);
609         }
610         printf("\n\n");
611         return EXIT_SUCCESS;
612 }
613
614 /* built-in 'jobs' handler */
615 static int builtin_jobs(struct child_prog *child ATTRIBUTE_UNUSED)
616 {
617         struct pipe *job;
618         const char *status_string;
619
620         for (job = job_list; job; job = job->next) {
621                 if (job->running_progs == job->stopped_progs)
622                         status_string = "Stopped";
623                 else
624                         status_string = "Running";
625
626                 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->text);
627         }
628         return EXIT_SUCCESS;
629 }
630
631
632 /* built-in 'pwd' handler */
633 static int builtin_pwd(struct child_prog *dummy ATTRIBUTE_UNUSED)
634 {
635         puts(set_cwd());
636         return EXIT_SUCCESS;
637 }
638
639 /* built-in 'read VAR' handler */
640 static int builtin_read(struct child_prog *child)
641 {
642         int res;
643
644         if (child->argv[1]) {
645                 char string[BUFSIZ];
646                 char *var = NULL;
647
648                 string[0] = '\0';  /* In case stdin has only EOF */
649                 /* read string */
650                 fgets(string, sizeof(string), stdin);
651                 chomp(string);
652                 var = malloc(strlen(child->argv[1]) + strlen(string) + 2);
653                 if (var) {
654                         sprintf(var, "%s=%s", child->argv[1], string);
655                         res = set_local_var(var, 0);
656                 } else
657                         res = -1;
658                 if (res)
659                         bb_perror_msg("read");
660                 free(var);      /* So not move up to avoid breaking errno */
661                 return res;
662         }
663         do res = getchar(); while (res != '\n' && res != EOF);
664         return 0;
665 }
666
667 /* built-in 'set VAR=value' handler */
668 static int builtin_set(struct child_prog *child)
669 {
670         char *temp = child->argv[1];
671         struct variables *e;
672
673         if (temp == NULL)
674                 for (e = top_vars; e; e = e->next)
675                         printf("%s=%s\n", e->name, e->value);
676         else
677                 set_local_var(temp, 0);
678
679         return EXIT_SUCCESS;
680 }
681
682
683 /* Built-in 'shift' handler */
684 static int builtin_shift(struct child_prog *child)
685 {
686         int n = 1;
687         if (child->argv[1]) {
688                 n = atoi(child->argv[1]);
689         }
690         if (n >= 0 && n < global_argc) {
691                 /* XXX This probably breaks $0 */
692                 global_argc -= n;
693                 global_argv += n;
694                 return EXIT_SUCCESS;
695         } else {
696                 return EXIT_FAILURE;
697         }
698 }
699
700 /* Built-in '.' handler (read-in and execute commands from file) */
701 static int builtin_source(struct child_prog *child)
702 {
703         FILE *input;
704         int status;
705
706         if (child->argv[1] == NULL)
707                 return EXIT_FAILURE;
708
709         /* XXX search through $PATH is missing */
710         input = fopen(child->argv[1], "r");
711         if (!input) {
712                 bb_error_msg("cannot open '%s'", child->argv[1]);
713                 return EXIT_FAILURE;
714         }
715
716         /* Now run the file */
717         /* XXX argv and argc are broken; need to save old global_argv
718          * (pointer only is OK!) on this stack frame,
719          * set global_argv=child->argv+1, recurse, and restore. */
720         mark_open(fileno(input));
721         status = parse_file_outer(input);
722         mark_closed(fileno(input));
723         fclose(input);
724         return status;
725 }
726
727 static int builtin_umask(struct child_prog *child)
728 {
729         mode_t new_umask;
730         const char *arg = child->argv[1];
731         char *end;
732         if (arg) {
733                 new_umask = strtoul(arg, &end, 8);
734                 if (*end != '\0' || end == arg) {
735                         return EXIT_FAILURE;
736                 }
737         } else {
738                 new_umask = umask(0);
739                 printf("%.3o\n", (unsigned) new_umask);
740         }
741         umask(new_umask);
742         return EXIT_SUCCESS;
743 }
744
745 /* built-in 'unset VAR' handler */
746 static int builtin_unset(struct child_prog *child)
747 {
748         /* bash returned already true */
749         unset_local_var(child->argv[1]);
750         return EXIT_SUCCESS;
751 }
752
753 static int builtin_not_written(struct child_prog *child)
754 {
755         printf("builtin_%s not written\n", child->argv[0]);
756         return EXIT_FAILURE;
757 }
758
759 static int b_check_space(o_string *o, int len)
760 {
761         /* It would be easy to drop a more restrictive policy
762          * in here, such as setting a maximum string length */
763         if (o->length + len > o->maxlen) {
764                 char *old_data = o->data;
765                 /* assert (data == NULL || o->maxlen != 0); */
766                 o->maxlen += max(2*len, B_CHUNK);
767                 o->data = realloc(o->data, 1 + o->maxlen);
768                 if (o->data == NULL) {
769                         free(old_data);
770                 }
771         }
772         return o->data == NULL;
773 }
774
775 static int b_addchr(o_string *o, int ch)
776 {
777         debug_printf("b_addchr: %c %d %p\n", ch, o->length, o);
778         if (b_check_space(o, 1))
779                 return B_NOSPAC;
780         o->data[o->length] = ch;
781         o->length++;
782         o->data[o->length] = '\0';
783         return 0;
784 }
785
786 static void b_reset(o_string *o)
787 {
788         o->length = 0;
789         o->nonnull = 0;
790         if (o->data != NULL)
791                 *o->data = '\0';
792 }
793
794 static void b_free(o_string *o)
795 {
796         b_reset(o);
797         free(o->data);
798         o->data = NULL;
799         o->maxlen = 0;
800 }
801
802 /* My analysis of quoting semantics tells me that state information
803  * is associated with a destination, not a source.
804  */
805 static int b_addqchr(o_string *o, int ch, int quote)
806 {
807         if (quote && strchr("*?[\\",ch)) {
808                 int rc;
809                 rc = b_addchr(o, '\\');
810                 if (rc)
811                         return rc;
812         }
813         return b_addchr(o, ch);
814 }
815
816 /* belongs in utility.c */
817 static char *simple_itoa(unsigned i)
818 {
819         static char local[sizeof(int)*3 + 2];
820         char *p = &local[sizeof(int)*3 + 2 - 1];
821         *p-- = '\0';
822         do {
823                 *p-- = '0' + i % 10;
824                 i /= 10;
825         } while (i > 0);
826         return p + 1;
827 }
828
829 static int b_adduint(o_string *o, unsigned i)
830 {
831         int r;
832         char *p = simple_itoa(i);
833         /* no escape checking necessary */
834         do r = b_addchr(o, *p++); while (r==0 && *p);
835         return r;
836 }
837
838 static int static_get(struct in_str *i)
839 {
840         int ch = *i->p++;
841         if (ch == '\0') return EOF;
842         return ch;
843 }
844
845 static int static_peek(struct in_str *i)
846 {
847         return *i->p;
848 }
849
850 static void cmdedit_set_initial_prompt(void)
851 {
852 #if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
853         PS1 = NULL;
854 #else
855         PS1 = getenv("PS1");
856         if (PS1 == NULL)
857                 PS1 = "\\w \\$ ";
858 #endif
859 }
860
861 static const char* setup_prompt_string(int promptmode)
862 {
863         const char *prompt_str;
864         debug_printf("setup_prompt_string %d ", promptmode);
865 #if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
866         /* Set up the prompt */
867         if (promptmode == 1) {
868                 char *ns;
869                 free((char*)PS1);
870                 ns = xmalloc(strlen(cwd)+4);
871                 sprintf(ns, "%s %s", cwd, (geteuid() != 0) ? "$ " : "# ");
872                 prompt_str = ns;
873                 PS1 = ns;
874         } else {
875                 prompt_str = PS2;
876         }
877 #else
878         prompt_str = (promptmode == 1) ? PS1 : PS2;
879 #endif
880         debug_printf("result %s\n", prompt_str);
881         return prompt_str;
882 }
883
884 #if ENABLE_FEATURE_EDITING
885 static line_input_t *line_input_state;
886 #endif
887
888 static void get_user_input(struct in_str *i)
889 {
890         const char *prompt_str;
891         static char the_command[BUFSIZ];
892
893         prompt_str = setup_prompt_string(i->promptmode);
894 #if ENABLE_FEATURE_EDITING
895         /*
896          ** enable command line editing only while a command line
897          ** is actually being read; otherwise, we'll end up bequeathing
898          ** atexit() handlers and other unwanted stuff to our
899          ** child processes (rob@sysgo.de)
900          */
901         read_line_input(prompt_str, the_command, BUFSIZ, line_input_state);
902 #else
903         fputs(prompt_str, stdout);
904         fflush(stdout);
905         the_command[0] = fgetc(i->file);
906         the_command[1] = '\0';
907 #endif
908         fflush(stdout);
909         i->p = the_command;
910 }
911
912 /* This is the magic location that prints prompts
913  * and gets data back from the user */
914 static int file_get(struct in_str *i)
915 {
916         int ch;
917
918         ch = 0;
919         /* If there is data waiting, eat it up */
920         if (i->p && *i->p) {
921                 ch = *i->p++;
922         } else {
923                 /* need to double check i->file because we might be doing something
924                  * more complicated by now, like sourcing or substituting. */
925                 if (i->__promptme && interactive && i->file == stdin) {
926                         while (!i->p || !(interactive && strlen(i->p))) {
927                                 get_user_input(i);
928                         }
929                         i->promptmode = 2;
930                         i->__promptme = 0;
931                         if (i->p && *i->p) {
932                                 ch = *i->p++;
933                         }
934                 } else {
935                         ch = fgetc(i->file);
936                 }
937
938                 debug_printf("b_getch: got a %d\n", ch);
939         }
940         if (ch == '\n')
941                 i->__promptme = 1;
942         return ch;
943 }
944
945 /* All the callers guarantee this routine will never be
946  * used right after a newline, so prompting is not needed.
947  */
948 static int file_peek(struct in_str *i)
949 {
950         if (i->p && *i->p) {
951                 return *i->p;
952         } else {
953                 i->peek_buf[0] = fgetc(i->file);
954                 i->peek_buf[1] = '\0';
955                 i->p = i->peek_buf;
956                 debug_printf("b_peek: got a %d\n", *i->p);
957                 return *i->p;
958         }
959 }
960
961 static void setup_file_in_str(struct in_str *i, FILE *f)
962 {
963         i->peek = file_peek;
964         i->get = file_get;
965         i->__promptme = 1;
966         i->promptmode = 1;
967         i->file = f;
968         i->p = NULL;
969 }
970
971 static void setup_string_in_str(struct in_str *i, const char *s)
972 {
973         i->peek = static_peek;
974         i->get = static_get;
975         i->__promptme=1;
976         i->promptmode=1;
977         i->p = s;
978 }
979
980 static void mark_open(int fd)
981 {
982         struct close_me *new = xmalloc(sizeof(struct close_me));
983         new->fd = fd;
984         new->next = close_me_head;
985         close_me_head = new;
986 }
987
988 static void mark_closed(int fd)
989 {
990         struct close_me *tmp;
991         if (close_me_head == NULL || close_me_head->fd != fd)
992                 bb_error_msg_and_die("corrupt close_me");
993         tmp = close_me_head;
994         close_me_head = close_me_head->next;
995         free(tmp);
996 }
997
998 static void close_all(void)
999 {
1000         struct close_me *c;
1001         for (c = close_me_head; c; c = c->next) {
1002                 close(c->fd);
1003         }
1004         close_me_head = NULL;
1005 }
1006
1007 /* squirrel != NULL means we squirrel away copies of stdin, stdout,
1008  * and stderr if they are redirected. */
1009 static int setup_redirects(struct child_prog *prog, int squirrel[])
1010 {
1011         int openfd, mode;
1012         struct redir_struct *redir;
1013
1014         for (redir = prog->redirects; redir; redir = redir->next) {
1015                 if (redir->dup == -1 && redir->word.gl_pathv == NULL) {
1016                         /* something went wrong in the parse.  Pretend it didn't happen */
1017                         continue;
1018                 }
1019                 if (redir->dup == -1) {
1020                         mode = redir_table[redir->type].mode;
1021                         openfd = open(redir->word.gl_pathv[0], mode, 0666);
1022                         if (openfd < 0) {
1023                         /* this could get lost if stderr has been redirected, but
1024                            bash and ash both lose it as well (though zsh doesn't!) */
1025                                 bb_perror_msg("error opening %s", redir->word.gl_pathv[0]);
1026                                 return 1;
1027                         }
1028                 } else {
1029                         openfd = redir->dup;
1030                 }
1031
1032                 if (openfd != redir->fd) {
1033                         if (squirrel && redir->fd < 3) {
1034                                 squirrel[redir->fd] = dup(redir->fd);
1035                         }
1036                         if (openfd == -3) {
1037                                 close(openfd);
1038                         } else {
1039                                 dup2(openfd, redir->fd);
1040                                 if (redir->dup == -1)
1041                                         close (openfd);
1042                         }
1043                 }
1044         }
1045         return 0;
1046 }
1047
1048 static void restore_redirects(int squirrel[])
1049 {
1050         int i, fd;
1051         for (i = 0; i < 3; i++) {
1052                 fd = squirrel[i];
1053                 if (fd != -1) {
1054                         /* No error checking.  I sure wouldn't know what
1055                          * to do with an error if I found one! */
1056                         dup2(fd, i);
1057                         close(fd);
1058                 }
1059         }
1060 }
1061
1062 /* never returns */
1063 /* XXX no exit() here.  If you don't exec, use _exit instead.
1064  * The at_exit handlers apparently confuse the calling process,
1065  * in particular stdin handling.  Not sure why? */
1066 static void pseudo_exec(struct child_prog *child)
1067 {
1068         int i, rcode;
1069         char *p;
1070         const struct built_in_command *x;
1071         if (child->argv) {
1072                 for (i = 0; is_assignment(child->argv[i]); i++) {
1073                         debug_printf("pid %d environment modification: %s\n",
1074                                         getpid(), child->argv[i]);
1075                         p = insert_var_value(child->argv[i]);
1076                         putenv(strdup(p));
1077                         if (p != child->argv[i])
1078                                 free(p);
1079                 }
1080                 child->argv += i;  /* XXX this hack isn't so horrible, since we are about
1081                                         to exit, and therefore don't need to keep data
1082                                         structures consistent for free() use. */
1083                 /* If a variable is assigned in a forest, and nobody listens,
1084                  * was it ever really set?
1085                  */
1086                 if (child->argv[0] == NULL) {
1087                         _exit(EXIT_SUCCESS);
1088                 }
1089
1090                 /*
1091                  * Check if the command matches any of the builtins.
1092                  * Depending on context, this might be redundant.  But it's
1093                  * easier to waste a few CPU cycles than it is to figure out
1094                  * if this is one of those cases.
1095                  */
1096                 for (x = bltins; x->cmd; x++) {
1097                         if (strcmp(child->argv[0], x->cmd) == 0 ) {
1098                                 debug_printf("builtin exec %s\n", child->argv[0]);
1099                                 rcode = x->function(child);
1100                                 fflush(stdout);
1101                                 _exit(rcode);
1102                         }
1103                 }
1104
1105                 /* Check if the command matches any busybox internal commands
1106                  * ("applets") here.
1107                  * FIXME: This feature is not 100% safe, since
1108                  * BusyBox is not fully reentrant, so we have no guarantee the things
1109                  * from the .bss are still zeroed, or that things from .data are still
1110                  * at their defaults.  We could exec ourself from /proc/self/exe, but I
1111                  * really dislike relying on /proc for things.  We could exec ourself
1112                  * from global_argv[0], but if we are in a chroot, we may not be able
1113                  * to find ourself... */
1114 #if ENABLE_FEATURE_SH_STANDALONE_SHELL
1115                 {
1116                         int argc_l;
1117                         char** argv_l=child->argv;
1118                         char *name = child->argv[0];
1119
1120                         /* Count argc for use in a second... */
1121                         for (argc_l = 0; *argv_l; argv_l++, argc_l++)
1122                                 /**/;
1123                         optind = 1;
1124                         debug_printf("running applet %s\n", name);
1125                         run_applet_by_name(name, argc_l, child->argv);
1126                 }
1127 #endif
1128                 debug_printf("exec of %s\n", child->argv[0]);
1129                 execvp(child->argv[0], child->argv);
1130                 bb_perror_msg("cannot exec: %s", child->argv[0]);
1131                 _exit(1);
1132         } else if (child->group) {
1133                 debug_printf("runtime nesting to group\n");
1134                 interactive = 0;    /* crucial!!!! */
1135                 rcode = run_list_real(child->group);
1136                 /* OK to leak memory by not calling free_pipe_list,
1137                  * since this process is about to exit */
1138                 _exit(rcode);
1139         } else {
1140                 /* Can happen.  See what bash does with ">foo" by itself. */
1141                 debug_printf("trying to pseudo_exec null command\n");
1142                 _exit(EXIT_SUCCESS);
1143         }
1144 }
1145
1146 static void insert_bg_job(struct pipe *pi)
1147 {
1148         struct pipe *thejob;
1149
1150         /* Linear search for the ID of the job to use */
1151         pi->jobid = 1;
1152         for (thejob = job_list; thejob; thejob = thejob->next)
1153                 if (thejob->jobid >= pi->jobid)
1154                         pi->jobid = thejob->jobid + 1;
1155
1156         /* add thejob to the list of running jobs */
1157         if (!job_list) {
1158                 thejob = job_list = xmalloc(sizeof(*thejob));
1159         } else {
1160                 for (thejob = job_list; thejob->next; thejob = thejob->next)
1161                         /* nothing */;
1162                 thejob->next = xmalloc(sizeof(*thejob));
1163                 thejob = thejob->next;
1164         }
1165
1166         /* physically copy the struct job */
1167         memcpy(thejob, pi, sizeof(struct pipe));
1168         thejob->next = NULL;
1169         thejob->running_progs = thejob->num_progs;
1170         thejob->stopped_progs = 0;
1171         thejob->text = xmalloc(BUFSIZ); /* cmdedit buffer size */
1172
1173         //if (pi->progs[0] && pi->progs[0].argv && pi->progs[0].argv[0])
1174         {
1175                 char *bar = thejob->text;
1176                 char **foo = pi->progs[0].argv;
1177                 if (foo)
1178                         while (*foo)
1179                                 bar += sprintf(bar, "%s ", *foo++);
1180         }
1181
1182         /* we don't wait for background thejobs to return -- append it
1183            to the list of backgrounded thejobs and leave it alone */
1184         printf("[%d] %d\n", thejob->jobid, thejob->progs[0].pid);
1185         last_bg_pid = thejob->progs[0].pid;
1186         last_jobid = thejob->jobid;
1187 }
1188
1189 /* remove a backgrounded job */
1190 static void remove_bg_job(struct pipe *pi)
1191 {
1192         struct pipe *prev_pipe;
1193
1194         if (pi == job_list) {
1195                 job_list = pi->next;
1196         } else {
1197                 prev_pipe = job_list;
1198                 while (prev_pipe->next != pi)
1199                         prev_pipe = prev_pipe->next;
1200                 prev_pipe->next = pi->next;
1201         }
1202         if (job_list)
1203                 last_jobid = job_list->jobid;
1204         else
1205                 last_jobid = 0;
1206
1207         pi->stopped_progs = 0;
1208         free_pipe(pi, 0);
1209         free(pi);
1210 }
1211
1212 /* Checks to see if any processes have exited -- if they
1213    have, figure out why and see if a job has completed */
1214 static int checkjobs(struct pipe* fg_pipe)
1215 {
1216         int attributes;
1217         int status;
1218         int prognum = 0;
1219         struct pipe *pi;
1220         pid_t childpid;
1221
1222         attributes = WUNTRACED;
1223         if (fg_pipe == NULL) {
1224                 attributes |= WNOHANG;
1225         }
1226
1227         while ((childpid = waitpid(-1, &status, attributes)) > 0) {
1228                 if (fg_pipe) {
1229                         int i, rcode = 0;
1230                         for (i = 0; i < fg_pipe->num_progs; i++) {
1231                                 if (fg_pipe->progs[i].pid == childpid) {
1232                                         if (i == fg_pipe->num_progs-1)
1233                                                 rcode = WEXITSTATUS(status);
1234                                         fg_pipe->num_progs--;
1235                                         return rcode;
1236                                 }
1237                         }
1238                 }
1239
1240                 for (pi = job_list; pi; pi = pi->next) {
1241                         prognum = 0;
1242                         while (prognum < pi->num_progs && pi->progs[prognum].pid != childpid) {
1243                                 prognum++;
1244                         }
1245                         if (prognum < pi->num_progs)
1246                                 break;
1247                 }
1248
1249                 if (pi == NULL) {
1250                         debug_printf("checkjobs: pid %d was not in our list!\n",
1251                                         childpid);
1252                         continue;
1253                 }
1254
1255                 if (WIFEXITED(status) || WIFSIGNALED(status)) {
1256                         /* child exited */
1257                         pi->running_progs--;
1258                         pi->progs[prognum].pid = 0;
1259
1260                         if (!pi->running_progs) {
1261                                 printf(JOB_STATUS_FORMAT, pi->jobid,
1262                                                         "Done", pi->text);
1263                                 remove_bg_job(pi);
1264                         }
1265                 } else {
1266                         /* child stopped */
1267                         pi->stopped_progs++;
1268                         pi->progs[prognum].is_stopped = 1;
1269                 }
1270         }
1271
1272         if (childpid == -1 && errno != ECHILD)
1273                 bb_perror_msg("waitpid");
1274
1275         /* move the shell to the foreground */
1276         //if (interactive && tcsetpgrp(shell_terminal, getpgid(0)))
1277         //      bb_perror_msg("tcsetpgrp-2");
1278         return -1;
1279 }
1280
1281 /* run_pipe_real() starts all the jobs, but doesn't wait for anything
1282  * to finish.  See checkjobs().
1283  *
1284  * return code is normally -1, when the caller has to wait for children
1285  * to finish to determine the exit status of the pipe.  If the pipe
1286  * is a simple builtin command, however, the action is done by the
1287  * time run_pipe_real returns, and the exit code is provided as the
1288  * return value.
1289  *
1290  * The input of the pipe is always stdin, the output is always
1291  * stdout.  The outpipe[] mechanism in BusyBox-0.48 lash is bogus,
1292  * because it tries to avoid running the command substitution in
1293  * subshell, when that is in fact necessary.  The subshell process
1294  * now has its stdout directed to the input of the appropriate pipe,
1295  * so this routine is noticeably simpler.
1296  */
1297 static int run_pipe_real(struct pipe *pi)
1298 {
1299         int i;
1300         int nextin, nextout;
1301         int pipefds[2];                         /* pipefds[0] is for reading */
1302         struct child_prog *child;
1303         const struct built_in_command *x;
1304         char *p;
1305
1306         nextin = 0;
1307         pi->pgrp = -1;
1308
1309         /* Check if this is a simple builtin (not part of a pipe).
1310          * Builtins within pipes have to fork anyway, and are handled in
1311          * pseudo_exec.  "echo foo | read bar" doesn't work on bash, either.
1312          */
1313         child = &(pi->progs[0]);
1314         if (pi->num_progs == 1 && child->group && child->subshell == 0) {
1315                 int squirrel[] = { -1, -1, -1 };
1316                 int rcode;
1317                 debug_printf("non-subshell grouping\n");
1318                 setup_redirects(child, squirrel);
1319                 /* XXX could we merge code with following builtin case,
1320                  * by creating a pseudo builtin that calls run_list_real? */
1321                 rcode = run_list_real(child->group);
1322                 restore_redirects(squirrel);
1323                 return rcode;
1324         } else if (pi->num_progs == 1 && pi->progs[0].argv != NULL) {
1325                 for (i = 0; is_assignment(child->argv[i]); i++)
1326                         /* nothing */;
1327                 if (i != 0 && child->argv[i] == NULL) {
1328                         /* assignments, but no command: set the local environment */
1329                         for (i = 0; child->argv[i] != NULL; i++) {
1330                                 /* Ok, this case is tricky.  We have to decide if this is a
1331                                  * local variable, or an already exported variable.  If it is
1332                                  * already exported, we have to export the new value.  If it is
1333                                  * not exported, we need only set this as a local variable.
1334                                  * This junk is all to decide whether or not to export this
1335                                  * variable. */
1336                                 int export_me = 0;
1337                                 char *name, *value;
1338                                 name = xstrdup(child->argv[i]);
1339                                 debug_printf("Local environment set: %s\n", name);
1340                                 value = strchr(name, '=');
1341                                 if (value)
1342                                         *value = 0;
1343                                 if (get_local_var(name)) {
1344                                         export_me = 1;
1345                                 }
1346                                 free(name);
1347                                 p = insert_var_value(child->argv[i]);
1348                                 set_local_var(p, export_me);
1349                                 if (p != child->argv[i])
1350                                         free(p);
1351                         }
1352                         return EXIT_SUCCESS;   /* don't worry about errors in set_local_var() yet */
1353                 }
1354                 for (i = 0; is_assignment(child->argv[i]); i++) {
1355                         p = insert_var_value(child->argv[i]);
1356                         putenv(strdup(p));
1357                         if (p != child->argv[i]) {
1358                                 child->sp--;
1359                                 free(p);
1360                         }
1361                 }
1362                 if (child->sp) {
1363                         char *str = NULL;
1364
1365                         str = make_string((child->argv + i));
1366                         parse_string_outer(str, FLAG_EXIT_FROM_LOOP | FLAG_REPARSING);
1367                         free(str);
1368                         return last_return_code;
1369                 }
1370                 for (x = bltins; x->cmd; x++) {
1371                         if (strcmp(child->argv[i], x->cmd) == 0 ) {
1372                                 int squirrel[] = { -1, -1, -1 };
1373                                 int rcode;
1374                                 if (x->function == builtin_exec && child->argv[i+1] == NULL) {
1375                                         debug_printf("magic exec\n");
1376                                         setup_redirects(child,NULL);
1377                                         return EXIT_SUCCESS;
1378                                 }
1379                                 debug_printf("builtin inline %s\n", child->argv[0]);
1380                                 /* XXX setup_redirects acts on file descriptors, not FILEs.
1381                                  * This is perfect for work that comes after exec().
1382                                  * Is it really safe for inline use?  Experimentally,
1383                                  * things seem to work with glibc. */
1384                                 setup_redirects(child, squirrel);
1385                                 child->argv += i;  /* XXX horrible hack */
1386                                 rcode = x->function(child);
1387                                 child->argv -= i;  /* XXX restore hack so free() can work right */
1388                                 restore_redirects(squirrel);
1389                                 return rcode;
1390                         }
1391                 }
1392         }
1393
1394         for (i = 0; i < pi->num_progs; i++) {
1395                 child = &(pi->progs[i]);
1396
1397                 /* pipes are inserted between pairs of commands */
1398                 if ((i + 1) < pi->num_progs) {
1399                         if (pipe(pipefds) < 0)
1400                                 bb_perror_msg_and_die("pipe");
1401                         nextout = pipefds[1];
1402                 } else {
1403                         nextout = 1;
1404                         pipefds[0] = -1;
1405                 }
1406
1407                 /* XXX test for failed fork()? */
1408 #if !defined(__UCLIBC__) || defined(__ARCH_HAS_MMU__)
1409                 child->pid = fork();
1410 #else
1411                 child->pid = vfork();
1412 #endif
1413                 if (!child->pid) {
1414                         /* Set the handling for job control signals back to the default.  */
1415                         signal(SIGINT, SIG_DFL);
1416                         signal(SIGQUIT, SIG_DFL);
1417                         signal(SIGTERM, SIG_DFL);
1418                         signal(SIGTSTP, SIG_DFL);
1419                         signal(SIGTTIN, SIG_DFL);
1420                         signal(SIGTTOU, SIG_DFL);
1421                         signal(SIGCHLD, SIG_DFL);
1422
1423                         close_all();
1424
1425                         if (nextin != 0) {
1426                                 dup2(nextin, 0);
1427                                 close(nextin);
1428                         }
1429                         if (nextout != 1) {
1430                                 dup2(nextout, 1);
1431                                 close(nextout);
1432                         }
1433                         if (pipefds[0]!=-1) {
1434                                 close(pipefds[0]);  /* opposite end of our output pipe */
1435                         }
1436
1437                         /* Like bash, explicit redirects override pipes,
1438                          * and the pipe fd is available for dup'ing. */
1439                         setup_redirects(child,NULL);
1440
1441                         if (interactive && pi->followup!=PIPE_BG) {
1442                                 /* If we (the child) win the race, put ourselves in the process
1443                                  * group whose leader is the first process in this pipe. */
1444                                 if (pi->pgrp < 0) {
1445                                         pi->pgrp = getpid();
1446                                 }
1447                                 if (setpgid(0, pi->pgrp) == 0) {
1448                                         tcsetpgrp(2, pi->pgrp);
1449                                 }
1450                         }
1451
1452                         pseudo_exec(child);
1453                 }
1454
1455                 /* put our child in the process group whose leader is the
1456                    first process in this pipe */
1457                 if (pi->pgrp < 0) {
1458                         pi->pgrp = child->pid;
1459                 }
1460                 /* Don't check for errors.  The child may be dead already,
1461                  * in which case setpgid returns error code EACCES. */
1462                 setpgid(child->pid, pi->pgrp);
1463
1464                 if (nextin != 0)
1465                         close(nextin);
1466                 if (nextout != 1)
1467                         close(nextout);
1468
1469                 /* If there isn't another process, nextin is garbage
1470                    but it doesn't matter */
1471                 nextin = pipefds[0];
1472         }
1473         return -1;
1474 }
1475
1476 static int run_list_real(struct pipe *pi)
1477 {
1478         char *save_name = NULL;
1479         char **list = NULL;
1480         char **save_list = NULL;
1481         struct pipe *rpipe;
1482         int flag_rep = 0;
1483         int save_num_progs;
1484         int rcode = 0, flag_skip = 1;
1485         int flag_restore = 0;
1486         int if_code = 0, next_if_code = 0;  /* need double-buffer to handle elif */
1487         reserved_style rmode, skip_more_in_this_rmode = RES_XXXX;
1488         /* check syntax for "for" */
1489         for (rpipe = pi; rpipe; rpipe = rpipe->next) {
1490                 if ((rpipe->r_mode == RES_IN || rpipe->r_mode == RES_FOR)
1491                  && (rpipe->next == NULL)
1492                 ) {
1493                         syntax();
1494                         return 1;
1495                 }
1496                 if ((rpipe->r_mode == RES_IN && rpipe->next->r_mode == RES_IN && rpipe->next->progs->argv != NULL)
1497                  || (rpipe->r_mode == RES_FOR && rpipe->next->r_mode != RES_IN)
1498                 ) {
1499                         syntax();
1500                         return 1;
1501                 }
1502         }
1503         for (; pi; pi = (flag_restore != 0) ? rpipe : pi->next) {
1504                 if (pi->r_mode == RES_WHILE || pi->r_mode == RES_UNTIL
1505                  || pi->r_mode == RES_FOR
1506                 ) {
1507                         flag_restore = 0;
1508                         if (!rpipe) {
1509                                 flag_rep = 0;
1510                                 rpipe = pi;
1511                         }
1512                 }
1513                 rmode = pi->r_mode;
1514                 debug_printf("rmode=%d  if_code=%d  next_if_code=%d skip_more=%d\n",
1515                                 rmode, if_code, next_if_code, skip_more_in_this_rmode);
1516                 if (rmode == skip_more_in_this_rmode && flag_skip) {
1517                         if (pi->followup == PIPE_SEQ)
1518                                 flag_skip = 0;
1519                         continue;
1520                 }
1521                 flag_skip = 1;
1522                 skip_more_in_this_rmode = RES_XXXX;
1523                 if (rmode == RES_THEN || rmode == RES_ELSE)
1524                         if_code = next_if_code;
1525                 if (rmode == RES_THEN &&  if_code)
1526                         continue;
1527                 if (rmode == RES_ELSE && !if_code)
1528                         continue;
1529                 if (rmode == RES_ELIF && !if_code)
1530                         break;
1531                 if (rmode == RES_FOR && pi->num_progs) {
1532                         if (!list) {
1533                                 /* if no variable values after "in" we skip "for" */
1534                                 if (!pi->next->progs->argv)
1535                                         continue;
1536                                 /* create list of variable values */
1537                                 list = make_list_in(pi->next->progs->argv,
1538                                                 pi->progs->argv[0]);
1539                                 save_list = list;
1540                                 save_name = pi->progs->argv[0];
1541                                 pi->progs->argv[0] = NULL;
1542                                 flag_rep = 1;
1543                         }
1544                         if (!*list) {
1545                                 free(pi->progs->argv[0]);
1546                                 free(save_list);
1547                                 list = NULL;
1548                                 flag_rep = 0;
1549                                 pi->progs->argv[0] = save_name;
1550                                 pi->progs->glob_result.gl_pathv[0] = pi->progs->argv[0];
1551                                 continue;
1552                         } else {
1553                                 /* insert new value from list for variable */
1554                                 if (pi->progs->argv[0])
1555                                         free(pi->progs->argv[0]);
1556                                 pi->progs->argv[0] = *list++;
1557                                 pi->progs->glob_result.gl_pathv[0] = pi->progs->argv[0];
1558                         }
1559                 }
1560                 if (rmode == RES_IN)
1561                         continue;
1562                 if (rmode == RES_DO) {
1563                         if (!flag_rep)
1564                                 continue;
1565                 }
1566                 if ((rmode == RES_DONE)) {
1567                         if (flag_rep) {
1568                                 flag_restore = 1;
1569                         } else {
1570                                 rpipe = NULL;
1571                         }
1572                 }
1573                 if (pi->num_progs == 0)
1574                         continue;
1575                 save_num_progs = pi->num_progs; /* save number of programs */
1576                 rcode = run_pipe_real(pi);
1577                 debug_printf("run_pipe_real returned %d\n",rcode);
1578                 if (rcode != -1) {
1579                         /* We only ran a builtin: rcode was set by the return value
1580                          * of run_pipe_real(), and we don't need to wait for anything. */
1581                 } else if (pi->followup == PIPE_BG) {
1582                         /* XXX check bash's behavior with nontrivial pipes */
1583                         /* XXX compute jobid */
1584                         /* XXX what does bash do with attempts to background builtins? */
1585                         insert_bg_job(pi);
1586                         rcode = EXIT_SUCCESS;
1587                 } else {
1588                         if (interactive) {
1589                                 /* move the new process group into the foreground */
1590                                 if (tcsetpgrp(shell_terminal, pi->pgrp) && errno != ENOTTY)
1591                                         bb_perror_msg("tcsetpgrp-3");
1592                                 rcode = checkjobs(pi);
1593                                 /* move the shell to the foreground */
1594                                 if (tcsetpgrp(shell_terminal, getpgid(0)) && errno != ENOTTY)
1595                                         bb_perror_msg("tcsetpgrp-4");
1596                         } else {
1597                                 rcode = checkjobs(pi);
1598                         }
1599                         debug_printf("checkjobs returned %d\n",rcode);
1600                 }
1601                 last_return_code = rcode;
1602                 pi->num_progs = save_num_progs; /* restore number of programs */
1603                 if ( rmode == RES_IF || rmode == RES_ELIF )
1604                         next_if_code = rcode;  /* can be overwritten a number of times */
1605                 if (rmode == RES_WHILE)
1606                         flag_rep = !last_return_code;
1607                 if (rmode == RES_UNTIL)
1608                         flag_rep = last_return_code;
1609                 if ((rcode == EXIT_SUCCESS && pi->followup == PIPE_OR)
1610                  || (rcode != EXIT_SUCCESS && pi->followup == PIPE_AND)
1611                 ) {
1612                         skip_more_in_this_rmode = rmode;
1613                 }
1614                 checkjobs(NULL);
1615         }
1616         return rcode;
1617 }
1618
1619 /* return code is the exit status of the pipe */
1620 static int free_pipe(struct pipe *pi, int indent)
1621 {
1622         char **p;
1623         struct child_prog *child;
1624         struct redir_struct *r, *rnext;
1625         int a, i, ret_code = 0;
1626
1627         if (pi->stopped_progs > 0)
1628                 return ret_code;
1629         final_printf("%s run pipe: (pid %d)\n", indenter(indent), getpid());
1630         for (i = 0; i < pi->num_progs; i++) {
1631                 child = &pi->progs[i];
1632                 final_printf("%s  command %d:\n", indenter(indent), i);
1633                 if (child->argv) {
1634                         for (a = 0, p = child->argv; *p; a++, p++) {
1635                                 final_printf("%s   argv[%d] = %s\n", indenter(indent), a, *p);
1636                         }
1637                         globfree(&child->glob_result);
1638                         child->argv = NULL;
1639                 } else if (child->group) {
1640                         final_printf("%s   begin group (subshell:%d)\n", indenter(indent), child->subshell);
1641                         ret_code = free_pipe_list(child->group, indent+3);
1642                         final_printf("%s   end group\n", indenter(indent));
1643                 } else {
1644                         final_printf("%s   (nil)\n", indenter(indent));
1645                 }
1646                 for (r = child->redirects; r; r = rnext) {
1647                         final_printf("%s   redirect %d%s", indenter(indent), r->fd, redir_table[r->type].descrip);
1648                         if (r->dup == -1) {
1649                                 /* guard against the case >$FOO, where foo is unset or blank */
1650                                 if (r->word.gl_pathv) {
1651                                         final_printf(" %s\n", *r->word.gl_pathv);
1652                                         globfree(&r->word);
1653                                 }
1654                         } else {
1655                                 final_printf("&%d\n", r->dup);
1656                         }
1657                         rnext = r->next;
1658                         free(r);
1659                 }
1660                 child->redirects = NULL;
1661         }
1662         free(pi->progs);   /* children are an array, they get freed all at once */
1663         pi->progs = NULL;
1664         return ret_code;
1665 }
1666
1667 static int free_pipe_list(struct pipe *head, int indent)
1668 {
1669         int rcode = 0;   /* if list has no members */
1670         struct pipe *pi, *next;
1671         for (pi = head; pi; pi = next) {
1672                 final_printf("%s pipe reserved mode %d\n", indenter(indent), pi->r_mode);
1673                 rcode = free_pipe(pi, indent);
1674                 final_printf("%s pipe followup code %d\n", indenter(indent), pi->followup);
1675                 next = pi->next;
1676                 pi->next = NULL;
1677                 free(pi);
1678         }
1679         return rcode;
1680 }
1681
1682 /* Select which version we will use */
1683 static int run_list(struct pipe *pi)
1684 {
1685         int rcode = 0;
1686         if (fake_mode == 0) {
1687                 rcode = run_list_real(pi);
1688         }
1689         /* free_pipe_list has the side effect of clearing memory
1690          * In the long run that function can be merged with run_list_real,
1691          * but doing that now would hobble the debugging effort. */
1692         free_pipe_list(pi,0);
1693         return rcode;
1694 }
1695
1696 /* The API for glob is arguably broken.  This routine pushes a non-matching
1697  * string into the output structure, removing non-backslashed backslashes.
1698  * If someone can prove me wrong, by performing this function within the
1699  * original glob(3) api, feel free to rewrite this routine into oblivion.
1700  * Return code (0 vs. GLOB_NOSPACE) matches glob(3).
1701  * XXX broken if the last character is '\\', check that before calling.
1702  */
1703 static int globhack(const char *src, int flags, glob_t *pglob)
1704 {
1705         int cnt = 0, pathc;
1706         const char *s;
1707         char *dest;
1708         for (cnt = 1, s = src; s && *s; s++) {
1709                 if (*s == '\\') s++;
1710                 cnt++;
1711         }
1712         dest = malloc(cnt);
1713         if (!dest) return GLOB_NOSPACE;
1714         if (!(flags & GLOB_APPEND)) {
1715                 pglob->gl_pathv = NULL;
1716                 pglob->gl_pathc = 0;
1717                 pglob->gl_offs = 0;
1718                 pglob->gl_offs = 0;
1719         }
1720         pathc = ++pglob->gl_pathc;
1721         pglob->gl_pathv = realloc(pglob->gl_pathv, (pathc+1)*sizeof(*pglob->gl_pathv));
1722         if (pglob->gl_pathv == NULL) return GLOB_NOSPACE;
1723         pglob->gl_pathv[pathc-1] = dest;
1724         pglob->gl_pathv[pathc] = NULL;
1725         for (s = src; s && *s; s++, dest++) {
1726                 if (*s == '\\') s++;
1727                 *dest = *s;
1728         }
1729         *dest = '\0';
1730         return 0;
1731 }
1732
1733 /* XXX broken if the last character is '\\', check that before calling */
1734 static int glob_needed(const char *s)
1735 {
1736         for (; *s; s++) {
1737                 if (*s == '\\') s++;
1738                 if (strchr("*[?", *s)) return 1;
1739         }
1740         return 0;
1741 }
1742
1743 static int xglob(o_string *dest, int flags, glob_t *pglob)
1744 {
1745         int gr;
1746
1747         /* short-circuit for null word */
1748         /* we can code this better when the debug_printf's are gone */
1749         if (dest->length == 0) {
1750                 if (dest->nonnull) {
1751                         /* bash man page calls this an "explicit" null */
1752                         gr = globhack(dest->data, flags, pglob);
1753                         debug_printf("globhack returned %d\n", gr);
1754                 } else {
1755                         return 0;
1756                 }
1757         } else if (glob_needed(dest->data)) {
1758                 gr = glob(dest->data, flags, NULL, pglob);
1759                 debug_printf("glob returned %d\n", gr);
1760                 if (gr == GLOB_NOMATCH) {
1761                         /* quote removal, or more accurately, backslash removal */
1762                         gr = globhack(dest->data, flags, pglob);
1763                         debug_printf("globhack returned %d\n", gr);
1764                 }
1765         } else {
1766                 gr = globhack(dest->data, flags, pglob);
1767                 debug_printf("globhack returned %d\n", gr);
1768         }
1769         if (gr == GLOB_NOSPACE)
1770                 bb_error_msg_and_die("out of memory during glob");
1771         if (gr != 0) { /* GLOB_ABORTED ? */
1772                 bb_error_msg("glob(3) error %d", gr);
1773         }
1774         /* globprint(glob_target); */
1775         return gr;
1776 }
1777
1778 /* This is used to get/check local shell variables */
1779 static const char *get_local_var(const char *s)
1780 {
1781         struct variables *cur;
1782
1783         if (!s)
1784                 return NULL;
1785         for (cur = top_vars; cur; cur = cur->next)
1786                 if (strcmp(cur->name, s) == 0)
1787                         return cur->value;
1788         return NULL;
1789 }
1790
1791 /* This is used to set local shell variables
1792    flg_export==0 if only local (not exporting) variable
1793    flg_export==1 if "new" exporting environ
1794    flg_export>1  if current startup environ (not call putenv()) */
1795 static int set_local_var(const char *s, int flg_export)
1796 {
1797         char *name, *value;
1798         int result = 0;
1799         struct variables *cur;
1800
1801         name = strdup(s);
1802
1803         /* Assume when we enter this function that we are already in
1804          * NAME=VALUE format.  So the first order of business is to
1805          * split 's' on the '=' into 'name' and 'value' */
1806         value = strchr(name, '=');
1807         if (value == 0 && ++value == 0) {
1808                 free(name);
1809                 return -1;
1810         }
1811         *value++ = 0;
1812
1813         for (cur = top_vars; cur; cur = cur->next) {
1814                 if (strcmp(cur->name, name) == 0)
1815                         break;
1816         }
1817
1818         if (cur) {
1819                 if (strcmp(cur->value, value) == 0) {
1820                         if (flg_export>0 && cur->flg_export == 0)
1821                                 cur->flg_export = flg_export;
1822                         else
1823                                 result++;
1824                 } else {
1825                         if (cur->flg_read_only) {
1826                                 bb_error_msg("%s: readonly variable", name);
1827                                 result = -1;
1828                         } else {
1829                                 if (flg_export > 0 || cur->flg_export>1)
1830                                         cur->flg_export = 1;
1831                                 free((char*)cur->value);
1832
1833                                 cur->value = strdup(value);
1834                         }
1835                 }
1836         } else {
1837                 cur = malloc(sizeof(struct variables));
1838                 if (!cur) {
1839                         result = -1;
1840                 } else {
1841                         cur->name = strdup(name);
1842                         if (cur->name) {
1843                                 free(cur);
1844                                 result = -1;
1845                         } else {
1846                                 struct variables *bottom = top_vars;
1847                                 cur->value = strdup(value);
1848                                 cur->next = 0;
1849                                 cur->flg_export = flg_export;
1850                                 cur->flg_read_only = 0;
1851                                 while (bottom->next)
1852                                         bottom = bottom->next;
1853                                 bottom->next = cur;
1854                         }
1855                 }
1856         }
1857
1858         if (result == 0 && cur->flg_export == 1) {
1859                 *(value-1) = '=';
1860                 result = putenv(name);
1861         } else {
1862                 free(name);
1863                 if (result > 0)            /* equivalent to previous set */
1864                         result = 0;
1865         }
1866         return result;
1867 }
1868
1869 static void unset_local_var(const char *name)
1870 {
1871         struct variables *cur;
1872
1873         if (name) {
1874                 for (cur = top_vars; cur; cur = cur->next) {
1875                         if (strcmp(cur->name, name) == 0)
1876                                 break;
1877                 }
1878                 if (cur != 0) {
1879                         struct variables *next = top_vars;
1880                         if (cur->flg_read_only) {
1881                                 bb_error_msg("%s: readonly variable", name);
1882                                 return;
1883                         }
1884                         if (cur->flg_export)
1885                                 unsetenv(cur->name);
1886                         free((char*)cur->name);
1887                         free((char*)cur->value);
1888                         while (next->next != cur)
1889                                 next = next->next;
1890                         next->next = cur->next;
1891                         free(cur);
1892                 }
1893         }
1894 }
1895
1896 static int is_assignment(const char *s)
1897 {
1898         if (!s || !isalpha(*s))
1899                 return 0;
1900         s++;
1901         while (isalnum(*s) || *s == '_')
1902                 s++;
1903         return *s == '=';
1904 }
1905
1906 /* the src parameter allows us to peek forward to a possible &n syntax
1907  * for file descriptor duplication, e.g., "2>&1".
1908  * Return code is 0 normally, 1 if a syntax error is detected in src.
1909  * Resource errors (in xmalloc) cause the process to exit */
1910 static int setup_redirect(struct p_context *ctx, int fd, redir_type style,
1911         struct in_str *input)
1912 {
1913         struct child_prog *child = ctx->child;
1914         struct redir_struct *redir = child->redirects;
1915         struct redir_struct *last_redir = NULL;
1916
1917         /* Create a new redir_struct and drop it onto the end of the linked list */
1918         while (redir) {
1919                 last_redir = redir;
1920                 redir = redir->next;
1921         }
1922         redir = xmalloc(sizeof(struct redir_struct));
1923         redir->next = NULL;
1924         redir->word.gl_pathv = NULL;
1925         if (last_redir) {
1926                 last_redir->next = redir;
1927         } else {
1928                 child->redirects = redir;
1929         }
1930
1931         redir->type = style;
1932         redir->fd = (fd == -1) ? redir_table[style].default_fd : fd;
1933
1934         debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip);
1935
1936         /* Check for a '2>&1' type redirect */
1937         redir->dup = redirect_dup_num(input);
1938         if (redir->dup == -2) return 1;  /* syntax error */
1939         if (redir->dup != -1) {
1940                 /* Erik had a check here that the file descriptor in question
1941                  * is legit; I postpone that to "run time"
1942                  * A "-" representation of "close me" shows up as a -3 here */
1943                 debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup);
1944         } else {
1945                 /* We do _not_ try to open the file that src points to,
1946                  * since we need to return and let src be expanded first.
1947                  * Set ctx->pending_redirect, so we know what to do at the
1948                  * end of the next parsed word.
1949                  */
1950                 ctx->pending_redirect = redir;
1951         }
1952         return 0;
1953 }
1954
1955 static struct pipe *new_pipe(void) {
1956         struct pipe *pi;
1957         pi = xmalloc(sizeof(struct pipe));
1958         pi->num_progs = 0;
1959         pi->progs = NULL;
1960         pi->next = NULL;
1961         pi->followup = 0;  /* invalid */
1962         pi->r_mode = RES_NONE;
1963         return pi;
1964 }
1965
1966 static void initialize_context(struct p_context *ctx)
1967 {
1968         ctx->pipe = NULL;
1969         ctx->pending_redirect = NULL;
1970         ctx->child = NULL;
1971         ctx->list_head = new_pipe();
1972         ctx->pipe = ctx->list_head;
1973         ctx->w = RES_NONE;
1974         ctx->stack = NULL;
1975         ctx->old_flag = 0;
1976         done_command(ctx);   /* creates the memory for working child */
1977 }
1978
1979 /* normal return is 0
1980  * if a reserved word is found, and processed, return 1
1981  * should handle if, then, elif, else, fi, for, while, until, do, done.
1982  * case, function, and select are obnoxious, save those for later.
1983  */
1984 static int reserved_word(o_string *dest, struct p_context *ctx)
1985 {
1986         struct reserved_combo {
1987                 const char *literal;
1988                 int code;
1989                 long flag;
1990         };
1991         /* Mostly a list of accepted follow-up reserved words.
1992          * FLAG_END means we are done with the sequence, and are ready
1993          * to turn the compound list into a command.
1994          * FLAG_START means the word must start a new compound list.
1995          */
1996         static const struct reserved_combo reserved_list[] = {
1997                 { "if",    RES_IF,    FLAG_THEN | FLAG_START },
1998                 { "then",  RES_THEN,  FLAG_ELIF | FLAG_ELSE | FLAG_FI },
1999                 { "elif",  RES_ELIF,  FLAG_THEN },
2000                 { "else",  RES_ELSE,  FLAG_FI   },
2001                 { "fi",    RES_FI,    FLAG_END  },
2002                 { "for",   RES_FOR,   FLAG_IN   | FLAG_START },
2003                 { "while", RES_WHILE, FLAG_DO   | FLAG_START },
2004                 { "until", RES_UNTIL, FLAG_DO   | FLAG_START },
2005                 { "in",    RES_IN,    FLAG_DO   },
2006                 { "do",    RES_DO,    FLAG_DONE },
2007                 { "done",  RES_DONE,  FLAG_END  }
2008         };
2009         const struct reserved_combo *r;
2010 #define NRES sizeof(reserved_list)/sizeof(reserved_list[0])
2011
2012         for (r = reserved_list; r < reserved_list+NRES; r++) {
2013                 if (strcmp(dest->data, r->literal) == 0) {
2014                         debug_printf("found reserved word %s, code %d\n",r->literal,r->code);
2015                         if (r->flag & FLAG_START) {
2016                                 struct p_context *new = xmalloc(sizeof(struct p_context));
2017                                 debug_printf("push stack\n");
2018                                 if (ctx->w == RES_IN || ctx->w == RES_FOR) {
2019                                         syntax();
2020                                         free(new);
2021                                         ctx->w = RES_SNTX;
2022                                         b_reset(dest);
2023                                         return 1;
2024                                 }
2025                                 *new = *ctx;   /* physical copy */
2026                                 initialize_context(ctx);
2027                                 ctx->stack=new;
2028                         } else if ( ctx->w == RES_NONE || ! (ctx->old_flag & (1<<r->code))) {
2029                                 syntax();
2030                                 ctx->w = RES_SNTX;
2031                                 b_reset(dest);
2032                                 return 1;
2033                         }
2034                         ctx->w=r->code;
2035                         ctx->old_flag = r->flag;
2036                         if (ctx->old_flag & FLAG_END) {
2037                                 struct p_context *old;
2038                                 debug_printf("pop stack\n");
2039                                 done_pipe(ctx,PIPE_SEQ);
2040                                 old = ctx->stack;
2041                                 old->child->group = ctx->list_head;
2042                                 old->child->subshell = 0;
2043                                 *ctx = *old;   /* physical copy */
2044                                 free(old);
2045                         }
2046                         b_reset (dest);
2047                         return 1;
2048                 }
2049         }
2050         return 0;
2051 }
2052
2053 /* normal return is 0.
2054  * Syntax or xglob errors return 1. */
2055 static int done_word(o_string *dest, struct p_context *ctx)
2056 {
2057         struct child_prog *child=ctx->child;
2058         glob_t *glob_target;
2059         int gr, flags = 0;
2060
2061         debug_printf("done_word: %s %p\n", dest->data, child);
2062         if (dest->length == 0 && !dest->nonnull) {
2063                 debug_printf("  true null, ignored\n");
2064                 return 0;
2065         }
2066         if (ctx->pending_redirect) {
2067                 glob_target = &ctx->pending_redirect->word;
2068         } else {
2069                 if (child->group) {
2070                         syntax();
2071                         return 1;  /* syntax error, groups and arglists don't mix */
2072                 }
2073                 if (!child->argv && (ctx->type & FLAG_PARSE_SEMICOLON)) {
2074                         debug_printf("checking %s for reserved-ness\n",dest->data);
2075                         if (reserved_word(dest,ctx)) return ctx->w==RES_SNTX;
2076                 }
2077                 glob_target = &child->glob_result;
2078                 if (child->argv) flags |= GLOB_APPEND;
2079         }
2080         gr = xglob(dest, flags, glob_target);
2081         if (gr != 0) return 1;
2082
2083         b_reset(dest);
2084         if (ctx->pending_redirect) {
2085                 ctx->pending_redirect=NULL;
2086                 if (glob_target->gl_pathc != 1) {
2087                         bb_error_msg("ambiguous redirect");
2088                         return 1;
2089                 }
2090         } else {
2091                 child->argv = glob_target->gl_pathv;
2092         }
2093         if (ctx->w == RES_FOR) {
2094                 done_word(dest,ctx);
2095                 done_pipe(ctx,PIPE_SEQ);
2096         }
2097         return 0;
2098 }
2099
2100 /* The only possible error here is out of memory, in which case
2101  * xmalloc exits. */
2102 static int done_command(struct p_context *ctx)
2103 {
2104         /* The child is really already in the pipe structure, so
2105          * advance the pipe counter and make a new, null child.
2106          * Only real trickiness here is that the uncommitted
2107          * child structure, to which ctx->child points, is not
2108          * counted in pi->num_progs. */
2109         struct pipe *pi=ctx->pipe;
2110         struct child_prog *prog=ctx->child;
2111
2112         if (prog && prog->group == NULL
2113                  && prog->argv == NULL
2114                  && prog->redirects == NULL) {
2115                 debug_printf("done_command: skipping null command\n");
2116                 return 0;
2117         } else if (prog) {
2118                 pi->num_progs++;
2119                 debug_printf("done_command: num_progs incremented to %d\n",pi->num_progs);
2120         } else {
2121                 debug_printf("done_command: initializing\n");
2122         }
2123         pi->progs = xrealloc(pi->progs, sizeof(*pi->progs) * (pi->num_progs+1));
2124
2125         prog = pi->progs + pi->num_progs;
2126         prog->redirects = NULL;
2127         prog->argv = NULL;
2128         prog->is_stopped = 0;
2129         prog->group = NULL;
2130         prog->glob_result.gl_pathv = NULL;
2131         prog->family = pi;
2132         prog->sp = 0;
2133         ctx->child = prog;
2134         prog->type = ctx->type;
2135
2136         /* but ctx->pipe and ctx->list_head remain unchanged */
2137         return 0;
2138 }
2139
2140 static int done_pipe(struct p_context *ctx, pipe_style type)
2141 {
2142         struct pipe *new_p;
2143         done_command(ctx);  /* implicit closure of previous command */
2144         debug_printf("done_pipe, type %d\n", type);
2145         ctx->pipe->followup = type;
2146         ctx->pipe->r_mode = ctx->w;
2147         new_p=new_pipe();
2148         ctx->pipe->next = new_p;
2149         ctx->pipe = new_p;
2150         ctx->child = NULL;
2151         done_command(ctx);  /* set up new pipe to accept commands */
2152         return 0;
2153 }
2154
2155 /* peek ahead in the in_str to find out if we have a "&n" construct,
2156  * as in "2>&1", that represents duplicating a file descriptor.
2157  * returns either -2 (syntax error), -1 (no &), or the number found.
2158  */
2159 static int redirect_dup_num(struct in_str *input)
2160 {
2161         int ch, d=0, ok=0;
2162         ch = b_peek(input);
2163         if (ch != '&') return -1;
2164
2165         b_getch(input);  /* get the & */
2166         ch=b_peek(input);
2167         if (ch == '-') {
2168                 b_getch(input);
2169                 return -3;  /* "-" represents "close me" */
2170         }
2171         while (isdigit(ch)) {
2172                 d = d*10+(ch-'0');
2173                 ok=1;
2174                 b_getch(input);
2175                 ch = b_peek(input);
2176         }
2177         if (ok) return d;
2178
2179         bb_error_msg("ambiguous redirect");
2180         return -2;
2181 }
2182
2183 /* If a redirect is immediately preceded by a number, that number is
2184  * supposed to tell which file descriptor to redirect.  This routine
2185  * looks for such preceding numbers.  In an ideal world this routine
2186  * needs to handle all the following classes of redirects...
2187  *     echo 2>foo     # redirects fd  2 to file "foo", nothing passed to echo
2188  *     echo 49>foo    # redirects fd 49 to file "foo", nothing passed to echo
2189  *     echo -2>foo    # redirects fd  1 to file "foo",    "-2" passed to echo
2190  *     echo 49x>foo   # redirects fd  1 to file "foo",   "49x" passed to echo
2191  * A -1 output from this program means no valid number was found, so the
2192  * caller should use the appropriate default for this redirection.
2193  */
2194 static int redirect_opt_num(o_string *o)
2195 {
2196         int num;
2197
2198         if (o->length==0) return -1;
2199         for (num=0; num<o->length; num++) {
2200                 if (!isdigit(*(o->data+num))) {
2201                         return -1;
2202                 }
2203         }
2204         /* reuse num (and save an int) */
2205         num=atoi(o->data);
2206         b_reset(o);
2207         return num;
2208 }
2209
2210 static FILE *generate_stream_from_list(struct pipe *head)
2211 {
2212         FILE *pf;
2213         int pid, channel[2];
2214         if (pipe(channel)<0) bb_perror_msg_and_die("pipe");
2215 #if !defined(__UCLIBC__) || defined(__ARCH_HAS_MMU__)
2216         pid=fork();
2217 #else
2218         pid=vfork();
2219 #endif
2220         if (pid<0) {
2221                 bb_perror_msg_and_die("fork");
2222         } else if (pid==0) {
2223                 close(channel[0]);
2224                 if (channel[1] != 1) {
2225                         dup2(channel[1],1);
2226                         close(channel[1]);
2227                 }
2228                 _exit(run_list_real(head));   /* leaks memory */
2229         }
2230         debug_printf("forked child %d\n",pid);
2231         close(channel[1]);
2232         pf = fdopen(channel[0],"r");
2233         debug_printf("pipe on FILE *%p\n",pf);
2234         return pf;
2235 }
2236
2237 /* this version hacked for testing purposes */
2238 /* return code is exit status of the process that is run. */
2239 static int process_command_subs(o_string *dest, struct p_context *ctx, struct in_str *input, int subst_end)
2240 {
2241         int retcode;
2242         o_string result=NULL_O_STRING;
2243         struct p_context inner;
2244         FILE *p;
2245         struct in_str pipe_str;
2246         initialize_context(&inner);
2247
2248         /* recursion to generate command */
2249         retcode = parse_stream(&result, &inner, input, subst_end);
2250         if (retcode != 0) return retcode;  /* syntax error or EOF */
2251         done_word(&result, &inner);
2252         done_pipe(&inner, PIPE_SEQ);
2253         b_free(&result);
2254
2255         p=generate_stream_from_list(inner.list_head);
2256         if (p==NULL) return 1;
2257         mark_open(fileno(p));
2258         setup_file_in_str(&pipe_str, p);
2259
2260         /* now send results of command back into original context */
2261         retcode = parse_stream(dest, ctx, &pipe_str, '\0');
2262         /* XXX In case of a syntax error, should we try to kill the child?
2263          * That would be tough to do right, so just read until EOF. */
2264         if (retcode == 1) {
2265                 while (b_getch(&pipe_str)!=EOF) { /* discard */ };
2266         }
2267
2268         debug_printf("done reading from pipe, pclose()ing\n");
2269         /* This is the step that wait()s for the child.  Should be pretty
2270          * safe, since we just read an EOF from its stdout.  We could try
2271          * to better, by using wait(), and keeping track of background jobs
2272          * at the same time.  That would be a lot of work, and contrary
2273          * to the KISS philosophy of this program. */
2274         mark_closed(fileno(p));
2275         retcode=pclose(p);
2276         free_pipe_list(inner.list_head,0);
2277         debug_printf("pclosed, retcode=%d\n",retcode);
2278         /* XXX this process fails to trim a single trailing newline */
2279         return retcode;
2280 }
2281
2282 static int parse_group(o_string *dest, struct p_context *ctx,
2283         struct in_str *input, int ch)
2284 {
2285         int rcode, endch=0;
2286         struct p_context sub;
2287         struct child_prog *child = ctx->child;
2288         if (child->argv) {
2289                 syntax();
2290                 return 1;  /* syntax error, groups and arglists don't mix */
2291         }
2292         initialize_context(&sub);
2293         switch (ch) {
2294                 case '(': endch=')'; child->subshell=1; break;
2295                 case '{': endch='}'; break;
2296                 default: syntax();   /* really logic error */
2297         }
2298         rcode=parse_stream(dest,&sub,input,endch);
2299         done_word(dest,&sub); /* finish off the final word in the subcontext */
2300         done_pipe(&sub, PIPE_SEQ);  /* and the final command there, too */
2301         child->group = sub.list_head;
2302         return rcode;
2303         /* child remains "open", available for possible redirects */
2304 }
2305
2306 /* basically useful version until someone wants to get fancier,
2307  * see the bash man page under "Parameter Expansion" */
2308 static const char *lookup_param(const char *src)
2309 {
2310         const char *p = NULL;
2311         if (src) {
2312                 p = getenv(src);
2313                 if (!p)
2314                         p = get_local_var(src);
2315         }
2316         return p;
2317 }
2318
2319 /* return code: 0 for OK, 1 for syntax error */
2320 static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input)
2321 {
2322         int i, advance=0;
2323         char sep[] = " ";
2324         int ch = input->peek(input);  /* first character after the $ */
2325         debug_printf("handle_dollar: ch=%c\n",ch);
2326         if (isalpha(ch)) {
2327                 b_addchr(dest, SPECIAL_VAR_SYMBOL);
2328                 ctx->child->sp++;
2329                 while (ch=b_peek(input),isalnum(ch) || ch=='_') {
2330                         b_getch(input);
2331                         b_addchr(dest,ch);
2332                 }
2333                 b_addchr(dest, SPECIAL_VAR_SYMBOL);
2334         } else if (isdigit(ch)) {
2335                 i = ch-'0';  /* XXX is $0 special? */
2336                 if (i<global_argc) {
2337                         parse_string(dest, ctx, global_argv[i]); /* recursion */
2338                 }
2339                 advance = 1;
2340         } else switch (ch) {
2341                 case '$':
2342                         b_adduint(dest,getpid());
2343                         advance = 1;
2344                         break;
2345                 case '!':
2346                         if (last_bg_pid > 0) b_adduint(dest, last_bg_pid);
2347                         advance = 1;
2348                         break;
2349                 case '?':
2350                         b_adduint(dest,last_return_code);
2351                         advance = 1;
2352                         break;
2353                 case '#':
2354                         b_adduint(dest,global_argc ? global_argc-1 : 0);
2355                         advance = 1;
2356                         break;
2357                 case '{':
2358                         b_addchr(dest, SPECIAL_VAR_SYMBOL);
2359                         ctx->child->sp++;
2360                         b_getch(input);
2361                         /* XXX maybe someone will try to escape the '}' */
2362                         while (ch=b_getch(input),ch!=EOF && ch!='}') {
2363                                 b_addchr(dest,ch);
2364                         }
2365                         if (ch != '}') {
2366                                 syntax();
2367                                 return 1;
2368                         }
2369                         b_addchr(dest, SPECIAL_VAR_SYMBOL);
2370                         break;
2371                 case '(':
2372                         b_getch(input);
2373                         process_command_subs(dest, ctx, input, ')');
2374                         break;
2375                 case '*':
2376                         sep[0]=ifs[0];
2377                         for (i=1; i<global_argc; i++) {
2378                                 parse_string(dest, ctx, global_argv[i]);
2379                                 if (i+1 < global_argc) parse_string(dest, ctx, sep);
2380                         }
2381                         break;
2382                 case '@':
2383                 case '-':
2384                 case '_':
2385                         /* still unhandled, but should be eventually */
2386                         bb_error_msg("unhandled syntax: $%c",ch);
2387                         return 1;
2388                         break;
2389                 default:
2390                         b_addqchr(dest,'$',dest->quote);
2391         }
2392         /* Eat the character if the flag was set.  If the compiler
2393          * is smart enough, we could substitute "b_getch(input);"
2394          * for all the "advance = 1;" above, and also end up with
2395          * a nice size-optimized program.  Hah!  That'll be the day.
2396          */
2397         if (advance) b_getch(input);
2398         return 0;
2399 }
2400
2401 int parse_string(o_string *dest, struct p_context *ctx, const char *src)
2402 {
2403         struct in_str foo;
2404         setup_string_in_str(&foo, src);
2405         return parse_stream(dest, ctx, &foo, '\0');
2406 }
2407
2408 /* return code is 0 for normal exit, 1 for syntax error */
2409 int parse_stream(o_string *dest, struct p_context *ctx,
2410         struct in_str *input, int end_trigger)
2411 {
2412         int ch, m;
2413         int redir_fd;
2414         redir_type redir_style;
2415         int next;
2416
2417         /* Only double-quote state is handled in the state variable dest->quote.
2418          * A single-quote triggers a bypass of the main loop until its mate is
2419          * found.  When recursing, quote state is passed in via dest->quote. */
2420
2421         debug_printf("parse_stream, end_trigger=%d\n",end_trigger);
2422         while ((ch=b_getch(input))!=EOF) {
2423                 m = map[ch];
2424                 next = (ch == '\n') ? 0 : b_peek(input);
2425                 debug_printf("parse_stream: ch=%c (%d) m=%d quote=%d\n",
2426                         ch,ch,m,dest->quote);
2427                 if (m==0 || ((m==1 || m==2) && dest->quote)) {
2428                         b_addqchr(dest, ch, dest->quote);
2429                 } else {
2430                         if (m==2) {  /* unquoted IFS */
2431                                 if (done_word(dest, ctx)) {
2432                                         return 1;
2433                                 }
2434                                 /* If we aren't performing a substitution, treat a newline as a
2435                                  * command separator.  */
2436                                 if (end_trigger != '\0' && ch=='\n')
2437                                         done_pipe(ctx,PIPE_SEQ);
2438                         }
2439                         if (ch == end_trigger && !dest->quote && ctx->w==RES_NONE) {
2440                                 debug_printf("leaving parse_stream (triggered)\n");
2441                                 return 0;
2442                         }
2443                         if (m!=2) switch (ch) {
2444                 case '#':
2445                         if (dest->length == 0 && !dest->quote) {
2446                                 while (1) {
2447                                         ch = b_peek(input);
2448                                         if (ch == EOF || ch == '\n')
2449                                                 break;
2450                                         b_getch(input);
2451                                 }
2452                         } else {
2453                                 b_addqchr(dest, ch, dest->quote);
2454                         }
2455                         break;
2456                 case '\\':
2457                         if (next == EOF) {
2458                                 syntax();
2459                                 return 1;
2460                         }
2461                         b_addqchr(dest, '\\', dest->quote);
2462                         b_addqchr(dest, b_getch(input), dest->quote);
2463                         break;
2464                 case '$':
2465                         if (handle_dollar(dest, ctx, input)!=0) return 1;
2466                         break;
2467                 case '\'':
2468                         dest->nonnull = 1;
2469                         while (1) {
2470                                 ch = b_getch(input);
2471                                 if (ch == EOF || ch == '\'')
2472                                         break;
2473                                 b_addchr(dest,ch);
2474                         }
2475                         if (ch == EOF) {
2476                                 syntax();
2477                                 return 1;
2478                         }
2479                         break;
2480                 case '"':
2481                         dest->nonnull = 1;
2482                         dest->quote = !dest->quote;
2483                         break;
2484                 case '`':
2485                         process_command_subs(dest, ctx, input, '`');
2486                         break;
2487                 case '>':
2488                         redir_fd = redirect_opt_num(dest);
2489                         done_word(dest, ctx);
2490                         redir_style=REDIRECT_OVERWRITE;
2491                         if (next == '>') {
2492                                 redir_style=REDIRECT_APPEND;
2493                                 b_getch(input);
2494                         } else if (next == '(') {
2495                                 syntax();   /* until we support >(list) Process Substitution */
2496                                 return 1;
2497                         }
2498                         setup_redirect(ctx, redir_fd, redir_style, input);
2499                         break;
2500                 case '<':
2501                         redir_fd = redirect_opt_num(dest);
2502                         done_word(dest, ctx);
2503                         redir_style=REDIRECT_INPUT;
2504                         if (next == '<') {
2505                                 redir_style=REDIRECT_HEREIS;
2506                                 b_getch(input);
2507                         } else if (next == '>') {
2508                                 redir_style=REDIRECT_IO;
2509                                 b_getch(input);
2510                         } else if (next == '(') {
2511                                 syntax();   /* until we support <(list) Process Substitution */
2512                                 return 1;
2513                         }
2514                         setup_redirect(ctx, redir_fd, redir_style, input);
2515                         break;
2516                 case ';':
2517                         done_word(dest, ctx);
2518                         done_pipe(ctx,PIPE_SEQ);
2519                         break;
2520                 case '&':
2521                         done_word(dest, ctx);
2522                         if (next=='&') {
2523                                 b_getch(input);
2524                                 done_pipe(ctx,PIPE_AND);
2525                         } else {
2526                                 done_pipe(ctx,PIPE_BG);
2527                         }
2528                         break;
2529                 case '|':
2530                         done_word(dest, ctx);
2531                         if (next=='|') {
2532                                 b_getch(input);
2533                                 done_pipe(ctx,PIPE_OR);
2534                         } else {
2535                                 /* we could pick up a file descriptor choice here
2536                                  * with redirect_opt_num(), but bash doesn't do it.
2537                                  * "echo foo 2| cat" yields "foo 2". */
2538                                 done_command(ctx);
2539                         }
2540                         break;
2541                 case '(':
2542                 case '{':
2543                         if (parse_group(dest, ctx, input, ch)!=0) return 1;
2544                         break;
2545                 case ')':
2546                 case '}':
2547                         syntax();   /* Proper use of this character caught by end_trigger */
2548                         return 1;
2549                         break;
2550                 default:
2551                         syntax();   /* this is really an internal logic error */
2552                         return 1;
2553                         }
2554                 }
2555         }
2556         /* complain if quote?  No, maybe we just finished a command substitution
2557          * that was quoted.  Example:
2558          * $ echo "`cat foo` plus more"
2559          * and we just got the EOF generated by the subshell that ran "cat foo"
2560          * The only real complaint is if we got an EOF when end_trigger != '\0',
2561          * that is, we were really supposed to get end_trigger, and never got
2562          * one before the EOF.  Can't use the standard "syntax error" return code,
2563          * so that parse_stream_outer can distinguish the EOF and exit smoothly. */
2564         debug_printf("leaving parse_stream (EOF)\n");
2565         if (end_trigger != '\0') return -1;
2566         return 0;
2567 }
2568
2569 static void mapset(const char *set, int code)
2570 {
2571         const unsigned char *s;
2572         for (s = (const unsigned char *)set; *s; s++) map[(int)*s] = code;
2573 }
2574
2575 static void update_ifs_map(void)
2576 {
2577         /* char *ifs and char map[256] are both globals. */
2578         ifs = getenv("IFS");
2579         if (ifs == NULL) ifs = " \t\n";
2580         /* Precompute a list of 'flow through' behavior so it can be treated
2581          * quickly up front.  Computation is necessary because of IFS.
2582          * Special case handling of IFS == " \t\n" is not implemented.
2583          * The map[] array only really needs two bits each, and on most machines
2584          * that would be faster because of the reduced L1 cache footprint.
2585          */
2586         memset(map, 0, sizeof(map)); /* most characters flow through always */
2587         mapset("\\$'\"`", 3);        /* never flow through */
2588         mapset("<>;&|(){}#", 1);     /* flow through if quoted */
2589         mapset(ifs, 2);              /* also flow through if quoted */
2590 }
2591
2592 /* most recursion does not come through here, the exception is
2593  * from builtin_source() */
2594 int parse_stream_outer(struct in_str *inp, int flag)
2595 {
2596
2597         struct p_context ctx;
2598         o_string temp=NULL_O_STRING;
2599         int rcode;
2600         do {
2601                 ctx.type = flag;
2602                 initialize_context(&ctx);
2603                 update_ifs_map();
2604                 if (!(flag & FLAG_PARSE_SEMICOLON) || (flag & FLAG_REPARSING)) mapset(";$&|", 0);
2605                 inp->promptmode=1;
2606                 rcode = parse_stream(&temp, &ctx, inp, '\n');
2607                 if (rcode != 1 && ctx.old_flag != 0) {
2608                         syntax();
2609                 }
2610                 if (rcode != 1 && ctx.old_flag == 0) {
2611                         done_word(&temp, &ctx);
2612                         done_pipe(&ctx,PIPE_SEQ);
2613                         run_list(ctx.list_head);
2614                 } else {
2615                         if (ctx.old_flag != 0) {
2616                                 free(ctx.stack);
2617                                 b_reset(&temp);
2618                         }
2619                         temp.nonnull = 0;
2620                         temp.quote = 0;
2621                         inp->p = NULL;
2622                         free_pipe_list(ctx.list_head,0);
2623                 }
2624                 b_free(&temp);
2625         } while (rcode != -1 && !(flag & FLAG_EXIT_FROM_LOOP));   /* loop on syntax errors, return on EOF */
2626         return 0;
2627 }
2628
2629 static int parse_string_outer(const char *s, int flag)
2630 {
2631         struct in_str input;
2632         setup_string_in_str(&input, s);
2633         return parse_stream_outer(&input, flag);
2634 }
2635
2636 static int parse_file_outer(FILE *f)
2637 {
2638         int rcode;
2639         struct in_str input;
2640         setup_file_in_str(&input, f);
2641         rcode = parse_stream_outer(&input, FLAG_PARSE_SEMICOLON);
2642         return rcode;
2643 }
2644
2645 /* Make sure we have a controlling tty.  If we get started under a job
2646  * aware app (like bash for example), make sure we are now in charge so
2647  * we don't fight over who gets the foreground */
2648 static void setup_job_control(void)
2649 {
2650         static pid_t shell_pgrp;
2651         /* Loop until we are in the foreground.  */
2652         while (tcgetpgrp (shell_terminal) != (shell_pgrp = getpgrp ()))
2653                 kill (- shell_pgrp, SIGTTIN);
2654
2655         /* Ignore interactive and job-control signals.  */
2656         signal(SIGINT, SIG_IGN);
2657         signal(SIGQUIT, SIG_IGN);
2658         signal(SIGTERM, SIG_IGN);
2659         signal(SIGTSTP, SIG_IGN);
2660         signal(SIGTTIN, SIG_IGN);
2661         signal(SIGTTOU, SIG_IGN);
2662         signal(SIGCHLD, SIG_IGN);
2663
2664         /* Put ourselves in our own process group.  */
2665         setsid();
2666         shell_pgrp = getpid();
2667         setpgid(shell_pgrp, shell_pgrp);
2668
2669         /* Grab control of the terminal.  */
2670         tcsetpgrp(shell_terminal, shell_pgrp);
2671 }
2672
2673 int hush_main(int argc, char **argv)
2674 {
2675         int opt;
2676         FILE *input;
2677         char **e = environ;
2678
2679 #if ENABLE_FEATURE_EDITING
2680         line_input_state = new_line_input_t(FOR_SHELL);
2681 #endif
2682
2683         /* XXX what should these be while sourcing /etc/profile? */
2684         global_argc = argc;
2685         global_argv = argv;
2686
2687         /* (re?) initialize globals.  Sometimes hush_main() ends up calling
2688          * hush_main(), therefore we cannot rely on the BSS to zero out this
2689          * stuff.  Reset these to 0 every time. */
2690         ifs = NULL;
2691         /* map[] is taken care of with call to update_ifs_map() */
2692         fake_mode = 0;
2693         interactive = 0;
2694         close_me_head = NULL;
2695         last_bg_pid = 0;
2696         job_list = NULL;
2697         last_jobid = 0;
2698
2699         /* Initialize some more globals to non-zero values */
2700         set_cwd();
2701         if (ENABLE_FEATURE_EDITING)
2702                 cmdedit_set_initial_prompt();
2703         else PS1 = NULL;
2704         PS2 = "> ";
2705
2706         /* initialize our shell local variables with the values
2707          * currently living in the environment */
2708         if (e) {
2709                 for (; *e; e++)
2710                         set_local_var(*e, 2);   /* without call putenv() */
2711         }
2712
2713         last_return_code=EXIT_SUCCESS;
2714
2715
2716         if (argv[0] && argv[0][0] == '-') {
2717                 debug_printf("\nsourcing /etc/profile\n");
2718                 if ((input = fopen("/etc/profile", "r")) != NULL) {
2719                         mark_open(fileno(input));
2720                         parse_file_outer(input);
2721                         mark_closed(fileno(input));
2722                         fclose(input);
2723                 }
2724         }
2725         input=stdin;
2726
2727         while ((opt = getopt(argc, argv, "c:xif")) > 0) {
2728                 switch (opt) {
2729                         case 'c':
2730                                 {
2731                                         global_argv = argv+optind;
2732                                         global_argc = argc-optind;
2733                                         opt = parse_string_outer(optarg, FLAG_PARSE_SEMICOLON);
2734                                         goto final_return;
2735                                 }
2736                                 break;
2737                         case 'i':
2738                                 interactive++;
2739                                 break;
2740                         case 'f':
2741                                 fake_mode++;
2742                                 break;
2743                         default:
2744 #ifndef BB_VER
2745                                 fprintf(stderr, "Usage: sh [FILE]...\n"
2746                                                 "   or: sh -c command [args]...\n\n");
2747                                 exit(EXIT_FAILURE);
2748 #else
2749                                 bb_show_usage();
2750 #endif
2751                 }
2752         }
2753         /* A shell is interactive if the `-i' flag was given, or if all of
2754          * the following conditions are met:
2755          *        no -c command
2756          *    no arguments remaining or the -s flag given
2757          *    standard input is a terminal
2758          *    standard output is a terminal
2759          *    Refer to Posix.2, the description of the `sh' utility. */
2760         if (argv[optind]==NULL && input==stdin &&
2761                         isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
2762                 interactive++;
2763         }
2764
2765         debug_printf("\ninteractive=%d\n", interactive);
2766         if (interactive) {
2767                 /* Looks like they want an interactive shell */
2768 #if !ENABLE_FEATURE_SH_EXTRA_QUIET
2769                 printf( "\n\n%s hush - the humble shell v0.01 (testing)\n",
2770                         BB_BANNER);
2771                 printf( "Enter 'help' for a list of built-in commands.\n\n");
2772 #endif
2773                 setup_job_control();
2774         }
2775
2776         if (argv[optind]==NULL) {
2777                 opt=parse_file_outer(stdin);
2778                 goto final_return;
2779         }
2780
2781         debug_printf("\nrunning script '%s'\n", argv[optind]);
2782         global_argv = argv+optind;
2783         global_argc = argc-optind;
2784         input = xfopen(argv[optind], "r");
2785         opt = parse_file_outer(input);
2786
2787 #if ENABLE_FEATURE_CLEAN_UP
2788         fclose(input);
2789         if (cwd && cwd != bb_msg_unknown)
2790                 free((char*)cwd);
2791         {
2792                 struct variables *cur, *tmp;
2793                 for (cur = top_vars; cur; cur = tmp) {
2794                         tmp = cur->next;
2795                         if (!cur->flg_read_only) {
2796                                 free(cur->name);
2797                                 free(cur->value);
2798                                 free(cur);
2799                         }
2800                 }
2801         }
2802 #endif
2803
2804 final_return:
2805         return opt ? opt : last_return_code;
2806 }
2807
2808 static char *insert_var_value(char *inp)
2809 {
2810         int res_str_len = 0;
2811         int len;
2812         int done = 0;
2813         char *p, *res_str = NULL;
2814         const char *p1;
2815
2816         while ((p = strchr(inp, SPECIAL_VAR_SYMBOL))) {
2817                 if (p != inp) {
2818                         len = p - inp;
2819                         res_str = xrealloc(res_str, (res_str_len + len));
2820                         strncpy((res_str + res_str_len), inp, len);
2821                         res_str_len += len;
2822                 }
2823                 inp = ++p;
2824                 p = strchr(inp, SPECIAL_VAR_SYMBOL);
2825                 *p = '\0';
2826                 p1 = lookup_param(inp);
2827                 if (p1) {
2828                         len = res_str_len + strlen(p1);
2829                         res_str = xrealloc(res_str, (1 + len));
2830                         strcpy((res_str + res_str_len), p1);
2831                         res_str_len = len;
2832                 }
2833                 *p = SPECIAL_VAR_SYMBOL;
2834                 inp = ++p;
2835                 done = 1;
2836         }
2837         if (done) {
2838                 res_str = xrealloc(res_str, (1 + res_str_len + strlen(inp)));
2839                 strcpy((res_str + res_str_len), inp);
2840                 while ((p = strchr(res_str, '\n'))) {
2841                         *p = ' ';
2842                 }
2843         }
2844         return (res_str == NULL) ? inp : res_str;
2845 }
2846
2847 static char **make_list_in(char **inp, char *name)
2848 {
2849         int len, i;
2850         int name_len = strlen(name);
2851         int n = 0;
2852         char **list;
2853         char *p1, *p2, *p3;
2854
2855         /* create list of variable values */
2856         list = xmalloc(sizeof(*list));
2857         for (i = 0; inp[i]; i++) {
2858                 p3 = insert_var_value(inp[i]);
2859                 p1 = p3;
2860                 while (*p1) {
2861                         if ((*p1 == ' ')) {
2862                                 p1++;
2863                                 continue;
2864                         }
2865                         if ((p2 = strchr(p1, ' '))) {
2866                                 len = p2 - p1;
2867                         } else {
2868                                 len = strlen(p1);
2869                                 p2 = p1 + len;
2870                         }
2871                         /* we use n + 2 in realloc for list,because we add
2872                          * new element and then we will add NULL element */
2873                         list = xrealloc(list, sizeof(*list) * (n + 2));
2874                         list[n] = xmalloc(2 + name_len + len);
2875                         strcpy(list[n], name);
2876                         strcat(list[n], "=");
2877                         strncat(list[n], p1, len);
2878                         list[n++][name_len + len + 1] = '\0';
2879                         p1 = p2;
2880                 }
2881                 if (p3 != inp[i]) free(p3);
2882         }
2883         list[n] = NULL;
2884         return list;
2885 }
2886
2887 /* Make new string for parser */
2888 static char * make_string(char ** inp)
2889 {
2890         char *p;
2891         char *str = NULL;
2892         int n;
2893         int len = 2;
2894
2895         for (n = 0; inp[n]; n++) {
2896                 p = insert_var_value(inp[n]);
2897                 str = xrealloc(str, (len + strlen(p)));
2898                 if (n) {
2899                         strcat(str, " ");
2900                 } else {
2901                         *str = '\0';
2902                 }
2903                 strcat(str, p);
2904                 len = strlen(str) + 3;
2905                 if (p != inp[n]) free(p);
2906         }
2907         len = strlen(str);
2908         *(str + len) = '\n';
2909         *(str + len + 1) = '\0';
2910         return str;
2911 }