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