Fix a stupid segfault caused by dereferencing a NULL ptr.
[oweals/busybox.git] / 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.
13  *      The execution engine, the builtins, and much of the underlying
14  *      support has been adapted from busybox-0.49pre's lash,
15  *      which is Copyright (C) 2000 by Lineo, Inc., and
16  *      written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>.
17  *      That, in turn, is based in part on ladsh.c, by Michael K. Johnson and
18  *      Erik W. Troan, which they placed in the public domain.  I don't know
19  *      how much of the Johnson/Troan code has survived the repeated rewrites.
20  * Other credits:
21  *      simple_itoa() was lifted from boa-0.93.15
22  *      b_addchr() derived from similar w_addchar function in glibc-2.2
23  *      setup_redirect(), redirect_opt_num(), and big chunks of main()
24  *        and many builtins derived from contributions by Erik Andersen
25  *      miscellaneous bugfixes from Matt Kraai
26  *
27  * There are two big (and related) architecture differences between
28  * this parser and the lash parser.  One is that this version is
29  * actually designed from the ground up to understand nearly all
30  * of the Bourne grammar.  The second, consequential change is that
31  * the parser and input reader have been turned inside out.  Now,
32  * the parser is in control, and asks for input as needed.  The old
33  * way had the input reader in control, and it asked for parsing to
34  * take place as needed.  The new way makes it much easier to properly
35  * handle the recursion implicit in the various substitutions, especially
36  * across continuation lines.
37  *
38  * Bash grammar not implemented: (how many of these were in original sh?)
39  *      $@ (those sure look like weird quoting rules)
40  *      $_
41  *      ! negation operator for pipes
42  *      &> and >& redirection of stdout+stderr
43  *      Brace Expansion
44  *      Tilde Expansion
45  *      fancy forms of Parameter Expansion
46  *      Arithmetic Expansion
47  *      <(list) and >(list) Process Substitution
48  *      reserved words: case, esac, select, function
49  *      Here Documents ( << word )
50  *      Functions
51  * Major bugs:
52  *      job handling woefully incomplete and buggy
53  *      reserved word execution woefully incomplete and buggy
54  * to-do:
55  *      port selected bugfixes from post-0.49 busybox lash - done?
56  *      finish implementing reserved words: for, while, until, do, done
57  *      change { and } from special chars to reserved words
58  *      builtins: break, continue, eval, return, set, trap, ulimit
59  *      test magic exec
60  *      handle children going into background
61  *      clean up recognition of null pipes
62  *      have builtin_exec set flag to avoid restore_redirects
63  *      check setting of global_argc and global_argv
64  *      control-C handling, probably with longjmp
65  *      VAR=value prefix for simple commands
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  *      maybe change map[] to use 2-bit entries
74  *      (eventually) remove all the printf's
75  *
76  * This program is free software; you can redistribute it and/or modify
77  * it under the terms of the GNU General Public License as published by
78  * the Free Software Foundation; either version 2 of the License, or
79  * (at your option) any later version.
80  *
81  * This program is distributed in the hope that it will be useful,
82  * but WITHOUT ANY WARRANTY; without even the implied warranty of
83  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
84  * General Public License for more details.
85  *
86  * You should have received a copy of the GNU General Public License
87  * along with this program; if not, write to the Free Software
88  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
89  */
90 #include <ctype.h>     /* isalpha, isdigit */
91 #include <unistd.h>    /* getpid */
92 #include <stdlib.h>    /* getenv, atoi */
93 #include <string.h>    /* strchr */
94 #include <stdio.h>     /* popen etc. */
95 #include <glob.h>      /* glob, of course */
96 #include <stdarg.h>    /* va_list */
97 #include <errno.h>
98 #include <fcntl.h>
99 #include <getopt.h>    /* should be pretty obvious */
100
101 #include <sys/stat.h>  /* ulimit */
102 #include <sys/types.h>
103 #include <sys/wait.h>
104 #include <signal.h>
105
106 /* #include <dmalloc.h> */
107 /* #define DEBUG_SHELL */
108
109 #ifdef BB_VER
110 #include "busybox.h"
111 #include "cmdedit.h"
112 #else
113 #define applet_name "hush"
114 #include "standalone.h"
115 #define shell_main main
116 #define BB_FEATURE_SH_SIMPLE_PROMPT
117 #endif
118
119 typedef enum {
120         REDIRECT_INPUT     = 1,
121         REDIRECT_OVERWRITE = 2,
122         REDIRECT_APPEND    = 3,
123         REDIRECT_HEREIS    = 4,
124         REDIRECT_IO        = 5
125 } redir_type;
126
127 /* The descrip member of this structure is only used to make debugging
128  * output pretty */
129 struct {int mode; int default_fd; char *descrip;} redir_table[] = {
130         { 0,                         0, "()" },
131         { O_RDONLY,                  0, "<"  },
132         { O_CREAT|O_TRUNC|O_WRONLY,  1, ">"  },
133         { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
134         { O_RDONLY,                 -1, "<<" },
135         { O_RDWR,                    1, "<>" }
136 };
137
138 typedef enum {
139         PIPE_SEQ = 1,
140         PIPE_AND = 2,
141         PIPE_OR  = 3,
142         PIPE_BG  = 4,
143 } pipe_style;
144
145 /* might eventually control execution */
146 typedef enum {
147         RES_NONE  = 0,
148         RES_IF    = 1,
149         RES_THEN  = 2,
150         RES_ELIF  = 3,
151         RES_ELSE  = 4,
152         RES_FI    = 5,
153         RES_FOR   = 6,
154         RES_WHILE = 7,
155         RES_UNTIL = 8,
156         RES_DO    = 9,
157         RES_DONE  = 10,
158         RES_XXXX  = 11,
159         RES_SNTX  = 12
160 } reserved_style;
161 #define FLAG_END   (1<<RES_NONE)
162 #define FLAG_IF    (1<<RES_IF)
163 #define FLAG_THEN  (1<<RES_THEN)
164 #define FLAG_ELIF  (1<<RES_ELIF)
165 #define FLAG_ELSE  (1<<RES_ELSE)
166 #define FLAG_FI    (1<<RES_FI)
167 #define FLAG_FOR   (1<<RES_FOR)
168 #define FLAG_WHILE (1<<RES_WHILE)
169 #define FLAG_UNTIL (1<<RES_UNTIL)
170 #define FLAG_DO    (1<<RES_DO)
171 #define FLAG_DONE  (1<<RES_DONE)
172 #define FLAG_START (1<<RES_XXXX)
173
174 /* This holds pointers to the various results of parsing */
175 struct p_context {
176         struct child_prog *child;
177         struct pipe *list_head;
178         struct pipe *pipe;
179         struct redir_struct *pending_redirect;
180         reserved_style w;
181         int old_flag;                           /* for figuring out valid reserved words */
182         struct p_context *stack;
183         /* How about quoting status? */
184 };
185
186 struct redir_struct {
187         redir_type type;                        /* type of redirection */
188         int fd;                                         /* file descriptor being redirected */
189         int dup;                                        /* -1, or file descriptor being duplicated */
190         struct redir_struct *next;      /* pointer to the next redirect in the list */ 
191         glob_t word;                            /* *word.gl_pathv is the filename */
192 };
193
194 struct child_prog {
195         pid_t pid;                                      /* 0 if exited */
196         char **argv;                            /* program name and arguments */
197         struct pipe *group;                     /* if non-NULL, first in group or subshell */
198         int subshell;                           /* flag, non-zero if group must be forked */
199         struct redir_struct *redirects; /* I/O redirections */
200         glob_t glob_result;                     /* result of parameter globbing */
201         int is_stopped;                         /* is the program currently running? */
202         struct pipe *family;            /* pointer back to the child's parent pipe */
203 };
204
205 struct pipe {
206         int jobid;                                      /* job number */
207         int num_progs;                          /* total number of programs in job */
208         int running_progs;                      /* number of programs running */
209         char *text;                                     /* name of job */
210         char *cmdbuf;                           /* buffer various argv's point into */
211         pid_t pgrp;                                     /* process group ID for the job */
212         struct child_prog *progs;       /* array of commands in pipe */
213         struct pipe *next;                      /* to track background commands */
214         int stopped_progs;                      /* number of programs alive, but stopped */
215         int job_context;                        /* bitmask defining current context */
216         pipe_style followup;            /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
217         reserved_style r_mode;          /* supports if, for, while, until */
218 };
219
220 struct jobset {
221         struct pipe *head;                      /* head of list of running jobs */
222         struct pipe *fg;                        /* current foreground job */
223 };
224
225 struct close_me {
226         int fd;
227         struct close_me *next;
228 };
229
230 /* globals, connect us to the outside world
231  * the first three support $?, $#, and $1 */
232 char **global_argv;
233 unsigned int global_argc;
234 unsigned int last_return_code;
235 extern char **environ; /* This is in <unistd.h>, but protected with __USE_GNU */
236  
237 /* Variables we export */
238 unsigned int shell_context;  /* Used in cmdedit.c to reset the
239                               * context when someone hits ^C */
240
241 /* "globals" within this file */
242 static char *ifs=NULL;
243 static char map[256];
244 static int fake_mode=0;
245 static int interactive=0;
246 static struct close_me *close_me_head = NULL;
247 static char *cwd;
248 static struct jobset *job_list;
249 static unsigned int last_bg_pid=0;
250 static char *PS1;
251 static char *PS2 = "> ";
252
253 #define B_CHUNK (100)
254 #define B_NOSPAC 1
255 #define MAX_LINE 256       /* for cwd */
256 #define MAX_READ 256       /* for builtin_read */
257
258 typedef struct {
259         char *data;
260         int length;
261         int maxlen;
262         int quote;
263         int nonnull;
264 } o_string;
265 #define NULL_O_STRING {NULL,0,0,0,0}
266 /* used for initialization:
267         o_string foo = NULL_O_STRING; */
268
269 /* I can almost use ordinary FILE *.  Is open_memstream() universally
270  * available?  Where is it documented? */
271 struct in_str {
272         const char *p;
273         int __promptme;
274         int promptmode;
275         FILE *file;
276         int (*get) (struct in_str *);
277         int (*peek) (struct in_str *);
278 };
279 #define b_getch(input) ((input)->get(input))
280 #define b_peek(input) ((input)->peek(input))
281
282 #define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
283
284 struct built_in_command {
285         char *cmd;                                      /* name */
286         char *descr;                            /* description */
287         int (*function) (struct child_prog *);  /* function ptr */
288 };
289
290 /* belongs in busybox.h */
291 static inline int max(int a, int b) {
292         return (a>b)?a:b;
293 }
294
295 /* This should be in utility.c */
296 #ifdef DEBUG_SHELL
297 static void debug_printf(const char *format, ...)
298 {
299         va_list args;
300         va_start(args, format);
301         vfprintf(stderr, format, args);
302         va_end(args);
303 }
304 #else
305 static void debug_printf(const char *format, ...) { }
306 #endif
307 #define final_printf debug_printf
308
309 void __syntax(char *file, int line) {
310         fprintf(stderr,"syntax error %s:%d\n",file,line);
311 }
312 #define syntax() __syntax(__FILE__, __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_exec(struct child_prog *child);
319 static int builtin_exit(struct child_prog *child);
320 static int builtin_export(struct child_prog *child);
321 static int builtin_fg_bg(struct child_prog *child);
322 static int builtin_help(struct child_prog *child);
323 static int builtin_jobs(struct child_prog *child);
324 static int builtin_pwd(struct child_prog *child);
325 static int builtin_read(struct child_prog *child);
326 static int builtin_shift(struct child_prog *child);
327 static int builtin_source(struct child_prog *child);
328 static int builtin_umask(struct child_prog *child);
329 static int builtin_unset(struct child_prog *child);
330 static int builtin_not_written(struct child_prog *child);
331 /*   o_string manipulation: */
332 static int b_check_space(o_string *o, int len);
333 static int b_addchr(o_string *o, int ch);
334 static void b_reset(o_string *o);
335 static int b_addqchr(o_string *o, int ch, int quote);
336 static int b_adduint(o_string *o, unsigned int i);
337 /*  in_str manipulations: */
338 static int static_get(struct in_str *i);
339 static int static_peek(struct in_str *i);
340 static int file_get(struct in_str *i);
341 static int file_peek(struct in_str *i);
342 static void setup_file_in_str(struct in_str *i, FILE *f);
343 static void setup_string_in_str(struct in_str *i, const char *s);
344 /*  close_me manipulations: */
345 static void mark_open(int fd);
346 static void mark_closed(int fd);
347 static void close_all();
348 /*  "run" the final data structures: */
349 static char *indenter(int i);
350 static int run_list_test(struct pipe *head, int indent);
351 static int run_pipe_test(struct pipe *pi, int indent);
352 /*  really run the final data structures: */
353 static int setup_redirects(struct child_prog *prog, int squirrel[]);
354 static int pipe_wait(struct pipe *pi);
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 /*   data structure manipulation: */
363 static int setup_redirect(struct p_context *ctx, int fd, redir_type style, struct in_str *input);
364 static void initialize_context(struct p_context *ctx);
365 static int done_word(o_string *dest, struct p_context *ctx);
366 static int done_command(struct p_context *ctx);
367 static int done_pipe(struct p_context *ctx, pipe_style type);
368 /*   primary string parsing: */
369 static int redirect_dup_num(struct in_str *input);
370 static int redirect_opt_num(o_string *o);
371 static int process_command_subs(o_string *dest, struct p_context *ctx, struct in_str *input, int subst_end);
372 static int parse_group(o_string *dest, struct p_context *ctx, struct in_str *input, int ch);
373 static void lookup_param(o_string *dest, struct p_context *ctx, o_string *src);
374 static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input);
375 static int parse_string(o_string *dest, struct p_context *ctx, const char *src);
376 static int parse_stream(o_string *dest, struct p_context *ctx, struct in_str *input0, int end_trigger);
377 /*   setup: */
378 static int parse_stream_outer(struct in_str *inp);
379 static int parse_string_outer(const char *s);
380 static int parse_file_outer(FILE *f);
381 /*   job management: */
382 static void checkjobs();
383 static void insert_bg_job(struct pipe *pi);
384 static void remove_bg_job(struct pipe *pi);
385 static void free_pipe(struct pipe *pi);
386
387 /* Table of built-in functions.  They can be forked or not, depending on
388  * context: within pipes, they fork.  As simple commands, they do not.
389  * When used in non-forking context, they can change global variables
390  * in the parent shell process.  If forked, of course they can not.
391  * For example, 'unset foo | whatever' will parse and run, but foo will
392  * still be set at the end. */
393 static struct built_in_command bltins[] = {
394         {"bg", "Resume a job in the background", builtin_fg_bg},
395         {"break", "Exit for, while or until loop", builtin_not_written},
396         {"cd", "Change working directory", builtin_cd},
397         {"continue", "Continue for, while or until loop", builtin_not_written},
398         {"env", "Print all environment variables", builtin_env},
399         {"eval", "Construct and run shell command", builtin_not_written},
400         {"exec", "Exec command, replacing this shell with the exec'd process", builtin_exec},
401         {"exit", "Exit from shell()", builtin_exit},
402         {"export", "Set environment variable", builtin_export},
403         {"fg", "Bring job into the foreground", builtin_fg_bg},
404         {"jobs", "Lists the active jobs", builtin_jobs},
405         {"pwd", "Print current directory", builtin_pwd},
406         {"read", "Input environment variable", builtin_read},
407         {"return", "Return from a function", builtin_not_written},
408         {"set", "Set/unset shell options", builtin_not_written},
409         {"shift", "Shift positional parameters", builtin_shift},
410         {"trap", "Trap signals", builtin_not_written},
411         {"ulimit","Controls resource limits", builtin_not_written},
412         {"umask","Sets file creation mask", builtin_umask},
413         {"unset", "Unset environment variable", builtin_unset},
414         {".", "Source-in and run commands in a file", builtin_source},
415         {"help", "List shell built-in commands", builtin_help},
416         {NULL, NULL, NULL}
417 };
418
419 /* built-in 'cd <path>' handler */
420 static int builtin_cd(struct child_prog *child)
421 {
422         char *newdir;
423         if (child->argv[1] == NULL)
424                 newdir = getenv("HOME");
425         else
426                 newdir = child->argv[1];
427         if (chdir(newdir)) {
428                 printf("cd: %s: %s\n", newdir, strerror(errno));
429                 return EXIT_FAILURE;
430         }
431         getcwd(cwd, sizeof(char)*MAX_LINE);
432         return EXIT_SUCCESS;
433 }
434
435 /* built-in 'env' handler */
436 static int builtin_env(struct child_prog *dummy)
437 {
438         char **e = environ;
439         if (e == NULL) return EXIT_FAILURE;
440         for (; *e; e++) {
441                 puts(*e);
442         }
443         return EXIT_SUCCESS;
444 }
445
446 /* built-in 'exec' handler */
447 static int builtin_exec(struct child_prog *child)
448 {
449         if (child->argv[1] == NULL)
450                 return EXIT_SUCCESS;   /* Really? */
451         child->argv++;
452         pseudo_exec(child);
453         /* never returns */
454 }
455
456 /* built-in 'exit' handler */
457 static int builtin_exit(struct child_prog *child)
458 {
459         if (child->argv[1] == NULL)
460                 exit(last_return_code);
461         exit (atoi(child->argv[1]));
462 }
463
464 /* built-in 'export VAR=value' handler */
465 static int builtin_export(struct child_prog *child)
466 {
467         int res;
468
469         if (child->argv[1] == NULL) {
470                 return (builtin_env(child));
471         }
472         /* FIXME -- I leak memory.  This will be
473          * fixed up properly when we add local
474          * variable support -- I hope */
475         res = putenv(strdup(child->argv[1]));
476         if (res)
477                 fprintf(stderr, "export: %s\n", strerror(errno));
478         return (res);
479 }
480
481 /* built-in 'fg' and 'bg' handler */
482 static int builtin_fg_bg(struct child_prog *child)
483 {
484         int i, jobnum;
485         struct pipe *pi=NULL;
486
487         /* If they gave us no args, assume they want the last backgrounded task */
488         if (!child->argv[1]) {
489                 for (pi = job_list->head; pi; pi = pi->next) {
490                         if (pi->progs && pi->progs->pid == last_bg_pid) {
491                                 break;
492                         }
493                 }
494                 if (!pi) {
495                         error_msg("%s: no current job", child->argv[0]);
496                         return EXIT_FAILURE;
497                 }
498         } else {
499                 if (sscanf(child->argv[1], "%%%d", &jobnum) != 1) {
500                         error_msg("%s: bad argument '%s'", child->argv[0], child->argv[1]);
501                         return EXIT_FAILURE;
502                 }
503
504                 for (pi = job_list->head; pi; pi = pi->next) {
505                         if (pi->jobid == jobnum) {
506                                 break;
507                         }
508                 }
509                 if (!pi) {
510                         error_msg("%s: %d: no such job", child->argv[0], jobnum);
511                         return EXIT_FAILURE;
512                 }
513         }
514         if (*child->argv[0] == 'f') {
515                 /* Make this job the foreground job */
516                 signal(SIGTTOU, SIG_IGN);
517                 /* suppress messages when run from /linuxrc mag@sysgo.de */
518                 if (tcsetpgrp(0, pi->pgrp) && errno != ENOTTY)
519                         perror_msg("tcsetpgrp"); 
520                 signal(SIGTTOU, SIG_DFL);
521                 job_list->fg = pi;
522         }
523
524         /* Restart the processes in the job */
525         for (i = 0; i < pi->num_progs; i++)
526                 pi->progs[i].is_stopped = 0;
527
528         kill(-pi->pgrp, SIGCONT);
529
530         pi->stopped_progs = 0;
531         return EXIT_SUCCESS;
532 }
533
534 /* built-in 'help' handler */
535 static int builtin_help(struct child_prog *dummy)
536 {
537         struct built_in_command *x;
538
539         printf("\nBuilt-in commands:\n");
540         printf("-------------------\n");
541         for (x = bltins; x->cmd; x++) {
542                 if (x->descr==NULL)
543                         continue;
544                 printf("%s\t%s\n", x->cmd, x->descr);
545         }
546         printf("\n\n");
547         return EXIT_SUCCESS;
548 }
549
550 /* built-in 'jobs' handler */
551 static int builtin_jobs(struct child_prog *child)
552 {
553         struct pipe *job;
554         char *status_string;
555
556         for (job = job_list->head; job; job = job->next) {
557                 if (job->running_progs == job->stopped_progs)
558                         status_string = "Stopped";
559                 else
560                         status_string = "Running";
561                 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->text);
562         }
563         return EXIT_SUCCESS;
564 }
565
566
567 /* built-in 'pwd' handler */
568 static int builtin_pwd(struct child_prog *dummy)
569 {
570         getcwd(cwd, MAX_LINE);
571         puts(cwd);
572         return EXIT_SUCCESS;
573 }
574
575 /* built-in 'read VAR' handler */
576 static int builtin_read(struct child_prog *child)
577 {
578         int res = 0, len, newlen;
579         char *s;
580         char string[MAX_READ];
581
582         if (child->argv[1]) {
583                 /* argument (VAR) given: put "VAR=" into buffer */
584                 strcpy(string, child->argv[1]);
585                 len = strlen(string);
586                 string[len++] = '=';
587                 string[len]   = '\0';
588                 /* XXX would it be better to go through in_str? */
589                 fgets(&string[len], sizeof(string) - len, stdin);       /* read string */
590                 newlen = strlen(string);
591                 if(newlen > len)
592                         string[--newlen] = '\0';        /* chomp trailing newline */
593                 /*
594                 ** string should now contain "VAR=<value>"
595                 ** copy it (putenv() won't do that, so we must make sure
596                 ** the string resides in a static buffer!)
597                 */
598                 res = -1;
599                 if((s = strdup(string)))
600                         res = putenv(s);
601                 if (res)
602                         fprintf(stderr, "read: %s\n", strerror(errno));
603         }
604         else
605                 fgets(string, sizeof(string), stdin);
606
607         return (res);
608 }
609
610 /* Built-in 'shift' handler */
611 static int builtin_shift(struct child_prog *child)
612 {
613         int n=1;
614         if (child->argv[1]) {
615                 n=atoi(child->argv[1]);
616         }
617         if (n>=0 && n<global_argc) {
618                 /* XXX This probably breaks $0 */
619                 global_argc -= n;
620                 global_argv += n;
621                 return EXIT_SUCCESS;
622         } else {
623                 return EXIT_FAILURE;
624         }
625 }
626
627 /* Built-in '.' handler (read-in and execute commands from file) */
628 static int builtin_source(struct child_prog *child)
629 {
630         FILE *input;
631         int status;
632
633         if (child->argv[1] == NULL)
634                 return EXIT_FAILURE;
635
636         /* XXX search through $PATH is missing */
637         input = fopen(child->argv[1], "r");
638         if (!input) {
639                 fprintf(stderr, "Couldn't open file '%s'\n", child->argv[1]);
640                 return EXIT_FAILURE;
641         }
642
643         /* Now run the file */
644         /* XXX argv and argc are broken; need to save old global_argv
645          * (pointer only is OK!) on this stack frame,
646          * set global_argv=child->argv+1, recurse, and restore. */
647         mark_open(fileno(input));
648         status = parse_file_outer(input);
649         mark_closed(fileno(input));
650         fclose(input);
651         return (status);
652 }
653
654 static int builtin_umask(struct child_prog *child)
655 {
656         mode_t new_umask;
657         const char *arg = child->argv[1];
658         char *end;
659         if (arg) {
660                 new_umask=strtoul(arg, &end, 8);
661                 if (*end!='\0' || end == arg) {
662                         return EXIT_FAILURE;
663                 }
664         } else {
665                 printf("%.3o\n", (unsigned int) (new_umask=umask(0)));
666         }
667         umask(new_umask);
668         return EXIT_SUCCESS;
669 }
670
671 /* built-in 'unset VAR' handler */
672 static int builtin_unset(struct child_prog *child)
673 {
674         if (child->argv[1] == NULL) {
675                 fprintf(stderr, "unset: parameter required.\n");
676                 return EXIT_FAILURE;
677         }
678         unsetenv(child->argv[1]);
679         return EXIT_SUCCESS;
680 }
681
682 static int builtin_not_written(struct child_prog *child)
683 {
684         printf("builtin_%s not written\n",child->argv[0]);
685         return EXIT_FAILURE;
686 }
687
688 static int b_check_space(o_string *o, int len)
689 {
690         /* It would be easy to drop a more restrictive policy
691          * in here, such as setting a maximum string length */
692         if (o->length + len > o->maxlen) {
693                 char *old_data = o->data;
694                 /* assert (data == NULL || o->maxlen != 0); */
695                 o->maxlen += max(2*len, B_CHUNK);
696                 o->data = realloc(o->data, 1 + o->maxlen);
697                 if (o->data == NULL) {
698                         free(old_data);
699                 }
700         }
701         return o->data == NULL;
702 }
703
704 static int b_addchr(o_string *o, int ch)
705 {
706         debug_printf("b_addchr: %c %d %p\n", ch, o->length, o);
707         if (b_check_space(o, 1)) return B_NOSPAC;
708         o->data[o->length] = ch;
709         o->length++;
710         o->data[o->length] = '\0';
711         return 0;
712 }
713
714 static void b_reset(o_string *o)
715 {
716         o->length = 0;
717         o->nonnull = 0;
718         if (o->data != NULL) *o->data = '\0';
719 }
720
721 static void b_free(o_string *o)
722 {
723         b_reset(o);
724         if (o->data != NULL) free(o->data);
725         o->data = NULL;
726         o->maxlen = 0;
727 }
728
729 /* My analysis of quoting semantics tells me that state information
730  * is associated with a destination, not a source.
731  */
732 static int b_addqchr(o_string *o, int ch, int quote)
733 {
734         if (quote && strchr("*?[\\",ch)) {
735                 int rc;
736                 rc = b_addchr(o, '\\');
737                 if (rc) return rc;
738         }
739         return b_addchr(o, ch);
740 }
741
742 /* belongs in utility.c */
743 char *simple_itoa(unsigned int i)
744 {
745         /* 21 digits plus null terminator, good for 64-bit or smaller ints */
746         static char local[22];
747         char *p = &local[21];
748         *p-- = '\0';
749         do {
750                 *p-- = '0' + i % 10;
751                 i /= 10;
752         } while (i > 0);
753         return p + 1;
754 }
755
756 static int b_adduint(o_string *o, unsigned int i)
757 {
758         int r;
759         char *p = simple_itoa(i);
760         /* no escape checking necessary */
761         do r=b_addchr(o, *p++); while (r==0 && *p);
762         return r;
763 }
764
765 static int static_get(struct in_str *i)
766 {
767         int ch=*i->p++;
768         if (ch=='\0') return EOF;
769         return ch;
770 }
771
772 static int static_peek(struct in_str *i)
773 {
774         return *i->p;
775 }
776
777 static inline void cmdedit_set_initial_prompt(void)
778 {
779 #ifdef BB_FEATURE_SH_SIMPLE_PROMPT
780         PS1 = NULL;
781 #else
782         PS1 = getenv("PS1");
783         if(PS1==0)
784                 PS1 = "\\w \\$ ";
785 #endif  
786 }
787
788 static inline void setup_prompt_string(int promptmode, char **prompt_str)
789 {
790         debug_printf("setup_prompt_string %d ",promptmode);
791 #ifdef BB_FEATURE_SH_SIMPLE_PROMPT
792         /* Set up the prompt */
793         if (promptmode == 1) {
794                 if (PS1)
795                         free(PS1);
796                 PS1=xmalloc(strlen(cwd)+4);
797                 sprintf(PS1, "%s %s", cwd, ( geteuid() != 0 ) ?  "$ ":"# ");
798                 *prompt_str = PS1;
799         } else {
800                 *prompt_str = PS2;
801         }
802 #else
803         *prompt_str = (promptmode==0)? PS1 : PS2;
804 #endif
805         debug_printf("result %s\n",*prompt_str);
806 }
807
808 static void get_user_input(struct in_str *i)
809 {
810         char *prompt_str;
811         static char the_command[BUFSIZ];
812
813         setup_prompt_string(i->promptmode, &prompt_str);
814 #ifdef BB_FEATURE_COMMAND_EDITING
815         /*
816          ** enable command line editing only while a command line
817          ** is actually being read; otherwise, we'll end up bequeathing
818          ** atexit() handlers and other unwanted stuff to our
819          ** child processes (rob@sysgo.de)
820          */
821         cmdedit_read_input(prompt_str, the_command);
822         cmdedit_terminate();
823 #else
824         fputs(prompt_str, stdout);
825         fflush(stdout);
826         the_command[0]=fgetc(i->file);
827         the_command[1]='\0';
828 #endif
829         i->p = the_command;
830 }
831
832 /* This is the magic location that prints prompts 
833  * and gets data back from the user */
834 static int file_get(struct in_str *i)
835 {
836         int ch;
837
838         ch = 0;
839         /* If there is data waiting, eat it up */
840         if (i->p && *i->p) {
841                 ch=*i->p++;
842         } else {
843                 /* need to double check i->file because we might be doing something
844                  * more complicated by now, like sourcing or substituting. */
845                 if (i->__promptme && interactive && i->file == stdin) {
846                         get_user_input(i);
847                         i->promptmode=2;
848                         i->__promptme = 0;
849                         if (i->p && *i->p) {
850                                 ch=*i->p++;
851                         }
852                 } else {
853                         ch = fgetc(i->file);
854                 }
855
856                 debug_printf("b_getch: got a %d\n", ch);
857         }
858         if (ch == '\n') i->__promptme=1;
859         return ch;
860 }
861
862 /* All the callers guarantee this routine will never be
863  * used right after a newline, so prompting is not needed.
864  */
865 static int file_peek(struct in_str *i)
866 {
867         if (i->p && *i->p) {
868                 return *i->p;
869         } else {
870                 static char buffer[2];
871                 buffer[0] = fgetc(i->file);
872                 buffer[1] = '\0';
873                 i->p = buffer;
874                 debug_printf("b_peek: got a %d\n", *i->p);
875                 return *i->p; 
876         }
877 }
878
879 static void setup_file_in_str(struct in_str *i, FILE *f)
880 {
881         i->peek = file_peek;
882         i->get = file_get;
883         i->__promptme=1;
884         i->promptmode=1;
885         i->file = f;
886         i->p = NULL;
887 }
888
889 static void setup_string_in_str(struct in_str *i, const char *s)
890 {
891         i->peek = static_peek;
892         i->get = static_get;
893         i->__promptme=1;
894         i->promptmode=1;
895         i->p = s;
896 }
897
898 static void mark_open(int fd)
899 {
900         struct close_me *new = xmalloc(sizeof(struct close_me));
901         new->fd = fd;
902         new->next = close_me_head;
903         close_me_head = new;
904 }
905
906 static void mark_closed(int fd)
907 {
908         struct close_me *tmp;
909         if (close_me_head == NULL || close_me_head->fd != fd)
910                 error_msg_and_die("corrupt close_me");
911         tmp = close_me_head;
912         close_me_head = close_me_head->next;
913         free(tmp);
914 }
915
916 static void close_all()
917 {
918         struct close_me *c;
919         for (c=close_me_head; c; c=c->next) {
920                 close(c->fd);
921         }
922         close_me_head = NULL;
923 }
924
925 /* squirrel != NULL means we squirrel away copies of stdin, stdout,
926  * and stderr if they are redirected. */
927 static int setup_redirects(struct child_prog *prog, int squirrel[])
928 {
929         int openfd, mode;
930         struct redir_struct *redir;
931
932         for (redir=prog->redirects; redir; redir=redir->next) {
933                 if (redir->dup == -1) {
934                         mode=redir_table[redir->type].mode;
935                         openfd = open(redir->word.gl_pathv[0], mode, 0666);
936                         if (openfd < 0) {
937                         /* this could get lost if stderr has been redirected, but
938                            bash and ash both lose it as well (though zsh doesn't!) */
939                                 fprintf(stderr,"error opening %s: %s\n", redir->word.gl_pathv[0],
940                                         strerror(errno));
941                                 return 1;
942                         }
943                 } else {
944                         openfd = redir->dup;
945                 }
946
947                 if (openfd != redir->fd) {
948                         if (squirrel && redir->fd < 3) {
949                                 squirrel[redir->fd] = dup(redir->fd);
950                         }
951                         if (openfd == -3) {
952                                 close(openfd);
953                         } else {
954                                 dup2(openfd, redir->fd);
955                                 close(openfd);
956                         }
957                 }
958         }
959         return 0;
960 }
961
962 static void restore_redirects(int squirrel[])
963 {
964         int i, fd;
965         for (i=0; i<3; i++) {
966                 fd = squirrel[i];
967                 if (fd != -1) {
968                         /* No error checking.  I sure wouldn't know what
969                          * to do with an error if I found one! */
970                         dup2(fd, i);
971                         close(fd);
972                 }
973         }
974 }
975
976 /* XXX this definitely needs some more thought, work, and
977  * cribbing from other shells */
978 static int pipe_wait(struct pipe *pi)
979 {
980         int rcode=0, i, pid, running, status;
981         running = pi->num_progs;
982         while (running) {
983                 pid=waitpid(-1, &status, 0);
984                 if (pid < 0) perror_msg_and_die("waitpid");
985                 for (i=0; i < pi->num_progs; i++) {
986                         if (pi->progs[i].pid == pid) {
987                                 if (i==pi->num_progs-1) rcode=WEXITSTATUS(status);
988                                 pi->progs[i].pid = 0;
989                                 running--;
990                                 break;
991                         }
992                 }
993         }
994         return rcode;
995 }
996
997 /* very simple version for testing */
998 static void pseudo_exec(struct child_prog *child)
999 {
1000         int rcode;
1001         struct built_in_command *x;
1002         if (child->argv) {
1003                 /*
1004                  * Check if the command matches any of the builtins.
1005                  * Depending on context, this might be redundant.  But it's
1006                  * easier to waste a few CPU cycles than it is to figure out
1007                  * if this is one of those cases.
1008                  */
1009                 for (x = bltins; x->cmd; x++) {
1010                         if (strcmp(child->argv[0], x->cmd) == 0 ) {
1011                                 debug_printf("builtin exec %s\n", child->argv[0]);
1012                                 exit(x->function(child));
1013                         }
1014                 }
1015
1016                 /* Check if the command matches any busybox internal commands
1017                  * ("applets") here.  
1018                  * FIXME: This feature is not 100% safe, since
1019                  * BusyBox is not fully reentrant, so we have no guarantee the things
1020                  * from the .bss are still zeroed, or that things from .data are still
1021                  * at their defaults.  We could exec ourself from /proc/self/exe, but I
1022                  * really dislike relying on /proc for things.  We could exec ourself
1023                  * from global_argv[0], but if we are in a chroot, we may not be able
1024                  * to find ourself... */ 
1025 #ifdef BB_FEATURE_SH_STANDALONE_SHELL
1026                 {
1027                         int argc_l;
1028                         char** argv_l=child->argv;
1029                         char *name = child->argv[0];
1030
1031 #ifdef BB_FEATURE_SH_APPLETS_ALWAYS_WIN
1032                         /* Following discussions from November 2000 on the busybox mailing
1033                          * list, the default configuration, (without
1034                          * get_last_path_component()) lets the user force use of an
1035                          * external command by specifying the full (with slashes) filename.
1036                          * If you enable BB_FEATURE_SH_APPLETS_ALWAYS_WIN, then applets
1037                          * _aways_ override external commands, so if you want to run
1038                          * /bin/cat, it will use BusyBox cat even if /bin/cat exists on the
1039                          * filesystem and is _not_ busybox.  Some systems may want this,
1040                          * most do not.  */
1041                         name = get_last_path_component(name);
1042 #endif
1043                         /* Count argc for use in a second... */
1044                         for(argc_l=0;*argv_l!=NULL; argv_l++, argc_l++);
1045                         optind = 1;
1046                         debug_printf("running applet %s\n", name);
1047                         run_applet_by_name(name, argc_l, child->argv);
1048                 }
1049 #endif
1050                 debug_printf("exec of %s\n",child->argv[0]);
1051                 execvp(child->argv[0],child->argv);
1052                 perror("execvp");
1053                 exit(1);
1054         } else if (child->group) {
1055                 debug_printf("runtime nesting to group\n");
1056                 interactive=0;    /* crucial!!!! */
1057                 rcode = run_list_real(child->group);
1058                 /* OK to leak memory by not calling run_list_test,
1059                  * since this process is about to exit */
1060                 exit(rcode);
1061         } else {
1062                 /* Can happen.  See what bash does with ">foo" by itself. */
1063                 debug_printf("trying to pseudo_exec null command\n");
1064                 exit(EXIT_SUCCESS);
1065         }
1066 }
1067
1068 static void insert_bg_job(struct pipe *pi)
1069 {
1070         struct pipe *thejob;
1071
1072         /* Linear search for the ID of the job to use */
1073         pi->jobid = 1;
1074         for (thejob = job_list->head; thejob; thejob = thejob->next)
1075                 if (thejob->jobid >= pi->jobid)
1076                         pi->jobid = thejob->jobid + 1;
1077
1078         /* add thejob to the list of running jobs */
1079         if (!job_list->head) {
1080                 thejob = job_list->head = xmalloc(sizeof(*thejob));
1081         } else {
1082                 for (thejob = job_list->head; thejob->next; thejob = thejob->next) /* nothing */;
1083                 thejob->next = xmalloc(sizeof(*thejob));
1084                 thejob = thejob->next;
1085         }
1086
1087         /* physically copy the struct job */
1088         memcpy(thejob, pi, sizeof(struct pipe));
1089         thejob->next = NULL;
1090         thejob->running_progs = thejob->num_progs;
1091         thejob->stopped_progs = 0;
1092
1093         /* we don't wait for background thejobs to return -- append it 
1094            to the list of backgrounded thejobs and leave it alone */
1095         printf("[%d] %d\n", pi->jobid, pi->pgrp);
1096         last_bg_pid = pi->pgrp;
1097 }
1098
1099 /* remove a backgrounded job from a jobset */
1100 static void remove_bg_job(struct pipe *pi)
1101 {
1102         struct pipe *prev_pipe;
1103
1104         free_pipe(pi);
1105         if (pi == job_list->head) {
1106                 job_list->head = pi->next;
1107         } else {
1108                 prev_pipe = job_list->head;
1109                 while (prev_pipe->next != pi)
1110                         prev_pipe = prev_pipe->next;
1111                 prev_pipe->next = pi->next;
1112         }
1113
1114         free(pi);
1115 }
1116
1117 /* free up all memory from a pipe */
1118 static void free_pipe(struct pipe *pi)
1119 {
1120         int i;
1121
1122         for (i = 0; i < pi->num_progs; i++) {
1123                 free(pi->progs[i].argv);
1124                 if (pi->progs[i].redirects)
1125                         free(pi->progs[i].redirects);
1126         }
1127         if (pi->progs)
1128                 free(pi->progs);
1129         if (pi->text)
1130                 free(pi->text);
1131         if (pi->cmdbuf)
1132                 free(pi->cmdbuf);
1133         memset(pi, 0, sizeof(struct pipe));
1134 }
1135
1136
1137 /* Checks to see if any background processes have exited -- if they 
1138    have, figure out why and see if a job has completed */
1139 static void checkjobs()
1140 {
1141         int status;
1142         int prognum = 0;
1143         struct pipe *pi;
1144         pid_t childpid;
1145
1146         while ((childpid = waitpid(-1, &status, WNOHANG | WUNTRACED)) > 0) {
1147                 for (pi = job_list->head; pi; pi = pi->next) {
1148                         prognum = 0;
1149                         while (prognum < pi->num_progs &&
1150                                    pi->progs[prognum].pid != childpid) prognum++;
1151                         if (prognum < pi->num_progs)
1152                                 break;
1153                 }
1154
1155                 if (WIFEXITED(status) || WIFSIGNALED(status)) {
1156                         /* child exited */
1157                         pi->running_progs--;
1158                         pi->progs[prognum].pid = 0;
1159
1160                         if (!pi->running_progs) {
1161                                 printf(JOB_STATUS_FORMAT, pi->jobid, "Done", pi->text);
1162                                 remove_bg_job(pi);
1163                         }
1164                 } else {
1165                         if(pi==NULL)
1166                                 break;
1167                         /* child stopped */
1168                         pi->stopped_progs++;
1169                         pi->progs[prognum].is_stopped = 1;
1170
1171                         if (pi->stopped_progs == pi->num_progs) {
1172                                 printf(JOB_STATUS_FORMAT, pi->jobid, "Stopped",
1173                                                 pi->text);
1174                         }
1175                 }
1176         }
1177
1178         if (childpid == -1 && errno != ECHILD)
1179                 perror_msg("waitpid");
1180
1181         /* move the shell to the foreground */
1182         if (tcsetpgrp(0, getpgrp()) && errno != ENOTTY)
1183                 perror_msg("tcsetpgrp"); 
1184 }
1185
1186 /* run_pipe_real() starts all the jobs, but doesn't wait for anything
1187  * to finish.  See pipe_wait().
1188  *
1189  * return code is normally -1, when the caller has to wait for children
1190  * to finish to determine the exit status of the pipe.  If the pipe
1191  * is a simple builtin command, however, the action is done by the
1192  * time run_pipe_real returns, and the exit code is provided as the
1193  * return value.
1194  *
1195  * The input of the pipe is always stdin, the output is always
1196  * stdout.  The outpipe[] mechanism in BusyBox-0.48 lash is bogus,
1197  * because it tries to avoid running the command substitution in
1198  * subshell, when that is in fact necessary.  The subshell process
1199  * now has its stdout directed to the input of the appropriate pipe,
1200  * so this routine is noticeably simpler.
1201  */
1202 static int run_pipe_real(struct pipe *pi)
1203 {
1204         int i;
1205         int ctty;
1206         int nextin, nextout;
1207         int pipefds[2];                         /* pipefds[0] is for reading */
1208         struct child_prog *child;
1209         struct built_in_command *x;
1210
1211         ctty = -1;
1212         nextin = 0;
1213         pi->pgrp = 0;
1214
1215         /* Check if we are supposed to run in the foreground */
1216         if (interactive && pi->followup!=PIPE_BG) {
1217                 if ((pi->pgrp = tcgetpgrp(ctty = 2)) < 0
1218                                 && (pi->pgrp = tcgetpgrp(ctty = 0)) < 0
1219                                 && (pi->pgrp = tcgetpgrp(ctty = 1)) < 0)
1220                         return errno = ENOTTY, -1;
1221
1222                 if (pi->pgrp < 0 && pi->pgrp != getpgrp())
1223                         return errno = EPERM, -1;
1224         }
1225
1226         /* Check if this is a simple builtin (not part of a pipe).
1227          * Builtins within pipes have to fork anyway, and are handled in
1228          * pseudo_exec.  "echo foo | read bar" doesn't work on bash, either.
1229          */
1230         if (pi->num_progs == 1 && pi->progs[0].argv != NULL) {
1231                 child = & (pi->progs[0]);
1232                 if (child->group && ! child->subshell) {
1233                         int squirrel[] = {-1, -1, -1};
1234                         int rcode;
1235                         debug_printf("non-subshell grouping\n");
1236                         setup_redirects(child, squirrel);
1237                         /* XXX could we merge code with following builtin case,
1238                          * by creating a pseudo builtin that calls run_list_real? */
1239                         rcode = run_list_real(child->group);
1240                         restore_redirects(squirrel);
1241                         return rcode;
1242                 }
1243                 for (x = bltins; x->cmd; x++) {
1244                         if (strcmp(child->argv[0], x->cmd) == 0 ) {
1245                                 int squirrel[] = {-1, -1, -1};
1246                                 int rcode;
1247                                 if (x->function == builtin_exec && child->argv[1]==NULL) {
1248                                         debug_printf("magic exec\n");
1249                                         setup_redirects(child,NULL);
1250                                         return EXIT_SUCCESS;
1251                                 }
1252                                 debug_printf("builtin inline %s\n", child->argv[0]);
1253                                 /* XXX setup_redirects acts on file descriptors, not FILEs.
1254                                  * This is perfect for work that comes after exec().
1255                                  * Is it really safe for inline use?  Experimentally,
1256                                  * things seem to work with glibc. */
1257                                 setup_redirects(child, squirrel);
1258                                 rcode = x->function(child);
1259                                 restore_redirects(squirrel);
1260                                 return rcode;
1261                         }
1262                 }
1263         }
1264
1265         for (i = 0; i < pi->num_progs; i++) {
1266                 child = & (pi->progs[i]);
1267
1268                 /* pipes are inserted between pairs of commands */
1269                 if ((i + 1) < pi->num_progs) {
1270                         if (pipe(pipefds)<0) perror_msg_and_die("pipe");
1271                         nextout = pipefds[1];
1272                 } else {
1273                         nextout=1;
1274                         pipefds[0] = -1;
1275                 }
1276
1277                 /* XXX test for failed fork()? */
1278                 if (!(child->pid = fork())) {
1279
1280                         signal(SIGTTOU, SIG_DFL);
1281                         
1282                         close_all();
1283
1284                         if (nextin != 0) {
1285                                 dup2(nextin, 0);
1286                                 close(nextin);
1287                         }
1288                         if (nextout != 1) {
1289                                 dup2(nextout, 1);
1290                                 close(nextout);
1291                         }
1292                         if (pipefds[0]!=-1) {
1293                                 close(pipefds[0]);  /* opposite end of our output pipe */
1294                         }
1295
1296                         /* Like bash, explicit redirects override pipes,
1297                          * and the pipe fd is available for dup'ing. */
1298                         setup_redirects(child,NULL);
1299                         
1300                         if (pi->followup!=PIPE_BG) {
1301                                 /* Put our child in the process group whose leader is the
1302                                  * first process in this pipe. */
1303                                 if (pi->pgrp < 0) {
1304                                         pi->pgrp = child->pid;
1305                                 }
1306                                 /* Don't check for errors.  The child may be dead already,
1307                                  * in which case setpgid returns error code EACCES. */
1308                                 if (setpgid(0, pi->pgrp) == 0) {
1309                                         signal(SIGTTOU, SIG_IGN);
1310                                         tcsetpgrp(ctty, pi->pgrp);
1311                                         signal(SIGTTOU, SIG_DFL);
1312                                 }
1313                         }
1314
1315                         pseudo_exec(child);
1316                 }
1317                 /* Put our child in the process group whose leader is the
1318                  * first process in this pipe. */
1319                 if (pi->pgrp < 0) {
1320                         pi->pgrp = child->pid;
1321                 }
1322                 /* Don't check for errors.  The child may be dead already,
1323                  * in which case setpgid returns error code EACCES. */
1324                 setpgid(child->pid, pi->pgrp);
1325
1326                 if (nextin != 0)
1327                         close(nextin);
1328                 if (nextout != 1)
1329                         close(nextout);
1330
1331                 /* If there isn't another process, nextin is garbage 
1332                    but it doesn't matter */
1333                 nextin = pipefds[0];
1334         }
1335         return -1;
1336 }
1337
1338 static int run_list_real(struct pipe *pi)
1339 {
1340         int rcode=0;
1341         int if_code=0, next_if_code=0;  /* need double-buffer to handle elif */
1342         reserved_style rmode, skip_more_in_this_rmode=RES_XXXX;
1343         for (;pi;pi=pi->next) {
1344                 rmode = pi->r_mode;
1345                 debug_printf("rmode=%d  if_code=%d  next_if_code=%d skip_more=%d\n", rmode, if_code, next_if_code, skip_more_in_this_rmode);
1346                 if (rmode == skip_more_in_this_rmode) continue;
1347                 skip_more_in_this_rmode = RES_XXXX;
1348                 if (rmode == RES_THEN || rmode == RES_ELSE) if_code = next_if_code;
1349                 if (rmode == RES_THEN &&  if_code) continue;
1350                 if (rmode == RES_ELSE && !if_code) continue;
1351                 if (rmode == RES_ELIF && !if_code) continue;
1352                 if (pi->num_progs == 0) continue;
1353                 rcode = run_pipe_real(pi);
1354                 if (rcode!=-1) {
1355                         /* We only ran a builtin: rcode was set by the return value
1356                          * of run_pipe_real(), and we don't need to wait for anything. */
1357                 } else if (pi->followup==PIPE_BG) {
1358                         /* XXX check bash's behavior with nontrivial pipes */
1359                         /* XXX compute jobid */
1360                         /* XXX what does bash do with attempts to background builtins? */
1361                         insert_bg_job(pi);
1362                         rcode = EXIT_SUCCESS;
1363                 } else {
1364
1365                         if (interactive) {
1366                                 /* move the new process group into the foreground */
1367                                 /* suppress messages when run from /linuxrc mag@sysgo.de */
1368                                 //signal(SIGTTIN, SIG_IGN);
1369                                 //signal(SIGTTOU, SIG_IGN);
1370                                 if (tcsetpgrp(0, pi->pgrp) && errno != ENOTTY)
1371                                         perror_msg("tcsetpgrp");
1372                                 rcode = pipe_wait(pi);
1373                                 if (tcsetpgrp(0, getpgrp()) && errno != ENOTTY)
1374                                         perror_msg("tcsetpgrp");
1375                                 //signal(SIGTTIN, SIG_DFL);
1376                                 //signal(SIGTTOU, SIG_DFL);
1377                         } else {
1378                                 rcode = pipe_wait(pi);
1379                         }
1380                 }
1381                 last_return_code=rcode;
1382                 if ( rmode == RES_IF || rmode == RES_ELIF )
1383                         next_if_code=rcode;  /* can be overwritten a number of times */
1384                 if ( (rcode==EXIT_SUCCESS && pi->followup==PIPE_OR) ||
1385                      (rcode!=EXIT_SUCCESS && pi->followup==PIPE_AND) )
1386                         skip_more_in_this_rmode=rmode;
1387                         /* return rcode; */ /* XXX broken if list is part of if/then/else */
1388         }
1389         checkjobs();
1390         return rcode;
1391 }
1392
1393 /* broken, of course, but OK for testing */
1394 static char *indenter(int i)
1395 {
1396         static char blanks[]="                                    ";
1397         return &blanks[sizeof(blanks)-i-1];
1398 }
1399
1400 /* return code is the exit status of the pipe */
1401 static int run_pipe_test(struct pipe *pi, int indent)
1402 {
1403         char **p;
1404         struct child_prog *child;
1405         struct redir_struct *r, *rnext;
1406         int a, i, ret_code=0;
1407         char *ind = indenter(indent);
1408         final_printf("%s run pipe: (pid %d)\n",ind,getpid());
1409         for (i=0; i<pi->num_progs; i++) {
1410                 child = &pi->progs[i];
1411                 final_printf("%s  command %d:\n",ind,i);
1412                 if (child->argv) {
1413                         for (a=0,p=child->argv; *p; a++,p++) {
1414                                 final_printf("%s   argv[%d] = %s\n",ind,a,*p);
1415                         }
1416                         globfree(&child->glob_result);
1417                         child->argv=NULL;
1418                 } else if (child->group) {
1419                         final_printf("%s   begin group (subshell:%d)\n",ind, child->subshell);
1420                         ret_code = run_list_test(child->group,indent+3);
1421                         final_printf("%s   end group\n",ind);
1422                 } else {
1423                         final_printf("%s   (nil)\n",ind);
1424                 }
1425                 for (r=child->redirects; r; r=rnext) {
1426                         final_printf("%s   redirect %d%s", ind, r->fd, redir_table[r->type].descrip);
1427                         if (r->dup == -1) {
1428                                 final_printf(" %s\n", *r->word.gl_pathv);
1429                                 globfree(&r->word);
1430                         } else {
1431                                 final_printf("&%d\n", r->dup);
1432                         }
1433                         rnext=r->next;
1434                         free(r);
1435                 }
1436                 child->redirects=NULL;
1437         }
1438         free(pi->progs);   /* children are an array, they get freed all at once */
1439         pi->progs=NULL;
1440         return ret_code;
1441 }
1442
1443 static int run_list_test(struct pipe *head, int indent)
1444 {
1445         int rcode=0;   /* if list has no members */
1446         struct pipe *pi, *next;
1447         char *ind = indenter(indent);
1448         for (pi=head; pi; pi=next) {
1449                 if (pi->num_progs == 0) break;
1450                 final_printf("%s pipe reserved mode %d\n", ind, pi->r_mode);
1451                 rcode = run_pipe_test(pi, indent);
1452                 final_printf("%s pipe followup code %d\n", ind, pi->followup);
1453                 next=pi->next;
1454                 pi->next=NULL;
1455                 free(pi);
1456         }
1457         return rcode;   
1458 }
1459
1460 /* Select which version we will use */
1461 static int run_list(struct pipe *pi)
1462 {
1463         int rcode=0;
1464         if (fake_mode==0) {
1465                 rcode = run_list_real(pi);
1466         } 
1467         /* run_list_test has the side effect of clearing memory
1468          * In the long run that function can be merged with run_list_real,
1469          * but doing that now would hobble the debugging effort. */
1470         run_list_test(pi,0);
1471         return rcode;
1472 }
1473
1474 /* The API for glob is arguably broken.  This routine pushes a non-matching
1475  * string into the output structure, removing non-backslashed backslashes.
1476  * If someone can prove me wrong, by performing this function within the
1477  * original glob(3) api, feel free to rewrite this routine into oblivion.
1478  * Return code (0 vs. GLOB_NOSPACE) matches glob(3).
1479  * XXX broken if the last character is '\\', check that before calling.
1480  */
1481 static int globhack(const char *src, int flags, glob_t *pglob)
1482 {
1483         int cnt, pathc;
1484         const char *s;
1485         char *dest;
1486         for (cnt=1, s=src; *s; s++) {
1487                 if (*s == '\\') s++;
1488                 cnt++;
1489         }
1490         dest = malloc(cnt);
1491         if (!dest) return GLOB_NOSPACE;
1492         if (!(flags & GLOB_APPEND)) {
1493                 pglob->gl_pathv=NULL;
1494                 pglob->gl_pathc=0;
1495                 pglob->gl_offs=0;
1496                 pglob->gl_offs=0;
1497         }
1498         pathc = ++pglob->gl_pathc;
1499         pglob->gl_pathv = realloc(pglob->gl_pathv, (pathc+1)*sizeof(*pglob->gl_pathv));
1500         if (pglob->gl_pathv == NULL) return GLOB_NOSPACE;
1501         pglob->gl_pathv[pathc-1]=dest;
1502         pglob->gl_pathv[pathc]=NULL;
1503         for (s=src; *s; s++, dest++) {
1504                 if (*s == '\\') s++;
1505                 *dest = *s;
1506         }
1507         *dest='\0';
1508         return 0;
1509 }
1510
1511 /* XXX broken if the last character is '\\', check that before calling */
1512 static int glob_needed(const char *s)
1513 {
1514         for (; *s; s++) {
1515                 if (*s == '\\') s++;
1516                 if (strchr("*[?",*s)) return 1;
1517         }
1518         return 0;
1519 }
1520
1521 #if 0
1522 static void globprint(glob_t *pglob)
1523 {
1524         int i;
1525         debug_printf("glob_t at %p:\n", pglob);
1526         debug_printf("  gl_pathc=%d  gl_pathv=%p  gl_offs=%d  gl_flags=%d\n",
1527                 pglob->gl_pathc, pglob->gl_pathv, pglob->gl_offs, pglob->gl_flags);
1528         for (i=0; i<pglob->gl_pathc; i++)
1529                 debug_printf("pglob->gl_pathv[%d] = %p = %s\n", i,
1530                         pglob->gl_pathv[i], pglob->gl_pathv[i]);
1531 }
1532 #endif
1533
1534 static int xglob(o_string *dest, int flags, glob_t *pglob)
1535 {
1536         int gr;
1537
1538         /* short-circuit for null word */
1539         /* we can code this better when the debug_printf's are gone */
1540         if (dest->length == 0) {
1541                 if (dest->nonnull) {
1542                         /* bash man page calls this an "explicit" null */
1543                         gr = globhack(dest->data, flags, pglob);
1544                         debug_printf("globhack returned %d\n",gr);
1545                 } else {
1546                         return 0;
1547                 }
1548         } else if (glob_needed(dest->data)) {
1549                 gr = glob(dest->data, flags, NULL, pglob);
1550                 debug_printf("glob returned %d\n",gr);
1551                 if (gr == GLOB_NOMATCH) {
1552                         /* quote removal, or more accurately, backslash removal */
1553                         gr = globhack(dest->data, flags, pglob);
1554                         debug_printf("globhack returned %d\n",gr);
1555                 }
1556         } else {
1557                 gr = globhack(dest->data, flags, pglob);
1558                 debug_printf("globhack returned %d\n",gr);
1559         }
1560         if (gr == GLOB_NOSPACE) {
1561                 fprintf(stderr,"out of memory during glob\n");
1562                 exit(1);
1563         }
1564         if (gr != 0) { /* GLOB_ABORTED ? */
1565                 fprintf(stderr,"glob(3) error %d\n",gr);
1566         }
1567         /* globprint(glob_target); */
1568         return gr;
1569 }
1570
1571 /* the src parameter allows us to peek forward to a possible &n syntax
1572  * for file descriptor duplication, e.g., "2>&1".
1573  * Return code is 0 normally, 1 if a syntax error is detected in src.
1574  * Resource errors (in xmalloc) cause the process to exit */
1575 static int setup_redirect(struct p_context *ctx, int fd, redir_type style,
1576         struct in_str *input)
1577 {
1578         struct child_prog *child=ctx->child;
1579         struct redir_struct *redir = child->redirects;
1580         struct redir_struct *last_redir=NULL;
1581
1582         /* Create a new redir_struct and drop it onto the end of the linked list */
1583         while(redir) {
1584                 last_redir=redir;
1585                 redir=redir->next;
1586         }
1587         redir = xmalloc(sizeof(struct redir_struct));
1588         redir->next=NULL;
1589         if (last_redir) {
1590                 last_redir->next=redir;
1591         } else {
1592                 child->redirects=redir;
1593         }
1594
1595         redir->type=style;
1596         redir->fd= (fd==-1) ? redir_table[style].default_fd : fd ;
1597
1598         debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip);
1599
1600         /* Check for a '2>&1' type redirect */ 
1601         redir->dup = redirect_dup_num(input);
1602         if (redir->dup == -2) return 1;  /* syntax error */
1603         if (redir->dup != -1) {
1604                 /* Erik had a check here that the file descriptor in question
1605                  * is legit; I postpone that to "run time"
1606                  * A "-" representation of "close me" shows up as a -3 here */
1607                 debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup);
1608         } else {
1609                 /* We do _not_ try to open the file that src points to,
1610                  * since we need to return and let src be expanded first.
1611                  * Set ctx->pending_redirect, so we know what to do at the
1612                  * end of the next parsed word.
1613                  */
1614                 ctx->pending_redirect = redir;
1615         }
1616         return 0;
1617 }
1618
1619 struct pipe *new_pipe(void) {
1620         struct pipe *pi;
1621         pi = xmalloc(sizeof(struct pipe));
1622         pi->num_progs = 0;
1623         pi->progs = NULL;
1624         pi->next = NULL;
1625         pi->followup = 0;  /* invalid */
1626         return pi;
1627 }
1628
1629 static void initialize_context(struct p_context *ctx)
1630 {
1631         ctx->pipe=NULL;
1632         ctx->pending_redirect=NULL;
1633         ctx->child=NULL;
1634         ctx->list_head=new_pipe();
1635         ctx->pipe=ctx->list_head;
1636         ctx->w=RES_NONE;
1637         ctx->stack=NULL;
1638         done_command(ctx);   /* creates the memory for working child */
1639 }
1640
1641 /* normal return is 0
1642  * if a reserved word is found, and processed, return 1
1643  * should handle if, then, elif, else, fi, for, while, until, do, done.
1644  * case, function, and select are obnoxious, save those for later.
1645  */
1646 int reserved_word(o_string *dest, struct p_context *ctx)
1647 {
1648         struct reserved_combo {
1649                 char *literal;
1650                 int code;
1651                 long flag;
1652         };
1653         /* Mostly a list of accepted follow-up reserved words.
1654          * FLAG_END means we are done with the sequence, and are ready
1655          * to turn the compound list into a command.
1656          * FLAG_START means the word must start a new compound list.
1657          */
1658         static struct reserved_combo reserved_list[] = {
1659                 { "if",    RES_IF,    FLAG_THEN | FLAG_START },
1660                 { "then",  RES_THEN,  FLAG_ELIF | FLAG_ELSE | FLAG_FI },
1661                 { "elif",  RES_ELIF,  FLAG_THEN },
1662                 { "else",  RES_ELSE,  FLAG_FI   },
1663                 { "fi",    RES_FI,    FLAG_END  },
1664                 { "for",   RES_FOR,   FLAG_DO   | FLAG_START },
1665                 { "while", RES_WHILE, FLAG_DO   | FLAG_START },
1666                 { "until", RES_UNTIL, FLAG_DO   | FLAG_START },
1667                 { "do",    RES_DO,    FLAG_DONE },
1668                 { "done",  RES_DONE,  FLAG_END  }
1669         };
1670         struct reserved_combo *r;
1671         for (r=reserved_list;
1672 #define NRES sizeof(reserved_list)/sizeof(struct reserved_combo)
1673                 r<reserved_list+NRES; r++) {
1674                 if (strcmp(dest->data, r->literal) == 0) {
1675                         debug_printf("found reserved word %s, code %d\n",r->literal,r->code);
1676                         if (r->flag & FLAG_START) {
1677                                 struct p_context *new = xmalloc(sizeof(struct p_context));
1678                                 debug_printf("push stack\n");
1679                                 *new = *ctx;   /* physical copy */
1680                                 initialize_context(ctx);
1681                                 ctx->stack=new;
1682                         } else if ( ctx->w == RES_NONE || ! (ctx->old_flag & (1<<r->code))) {
1683                                 syntax();
1684                                 ctx->w = RES_SNTX;
1685                                 b_reset (dest);
1686                                 return 1;
1687                         }
1688                         ctx->w=r->code;
1689                         ctx->old_flag = r->flag;
1690                         if (ctx->old_flag & FLAG_END) {
1691                                 struct p_context *old;
1692                                 debug_printf("pop stack\n");
1693                                 old = ctx->stack;
1694                                 old->child->group = ctx->list_head;
1695                                 *ctx = *old;   /* physical copy */
1696                                 free(old);
1697                         }
1698                         b_reset (dest);
1699                         return 1;
1700                 }
1701         }
1702         return 0;
1703 }
1704
1705 /* normal return is 0.
1706  * Syntax or xglob errors return 1. */
1707 static int done_word(o_string *dest, struct p_context *ctx)
1708 {
1709         struct child_prog *child=ctx->child;
1710         glob_t *glob_target;
1711         int gr, flags = 0;
1712
1713         debug_printf("done_word: %s %p\n", dest->data, child);
1714         if (dest->length == 0 && !dest->nonnull) {
1715                 debug_printf("  true null, ignored\n");
1716                 return 0;
1717         }
1718         if (ctx->pending_redirect) {
1719                 glob_target = &ctx->pending_redirect->word;
1720         } else {
1721                 if (child->group) {
1722                         syntax();
1723                         return 1;  /* syntax error, groups and arglists don't mix */
1724                 }
1725                 if (!child->argv) {
1726                         debug_printf("checking %s for reserved-ness\n",dest->data);
1727                         if (reserved_word(dest,ctx)) return ctx->w==RES_SNTX;
1728                 }
1729                 glob_target = &child->glob_result;
1730                 if (child->argv) flags |= GLOB_APPEND;
1731         }
1732         gr = xglob(dest, flags, glob_target);
1733         if (gr != 0) return 1;
1734
1735         b_reset(dest);
1736         if (ctx->pending_redirect) {
1737                 ctx->pending_redirect=NULL;
1738                 if (glob_target->gl_pathc != 1) {
1739                         fprintf(stderr, "ambiguous redirect\n");
1740                         return 1;
1741                 }
1742         } else {
1743                 child->argv = glob_target->gl_pathv;
1744         }
1745         return 0;
1746 }
1747
1748 /* The only possible error here is out of memory, in which case
1749  * xmalloc exits. */
1750 static int done_command(struct p_context *ctx)
1751 {
1752         /* The child is really already in the pipe structure, so
1753          * advance the pipe counter and make a new, null child.
1754          * Only real trickiness here is that the uncommitted
1755          * child structure, to which ctx->child points, is not
1756          * counted in pi->num_progs. */
1757         struct pipe *pi=ctx->pipe;
1758         struct child_prog *prog=ctx->child;
1759
1760         if (prog && prog->group == NULL
1761                  && prog->argv == NULL
1762                  && prog->redirects == NULL) {
1763                 debug_printf("done_command: skipping null command\n");
1764                 return 0;
1765         } else if (prog) {
1766                 pi->num_progs++;
1767                 debug_printf("done_command: num_progs incremented to %d\n",pi->num_progs);
1768         } else {
1769                 debug_printf("done_command: initializing\n");
1770         }
1771         pi->progs = xrealloc(pi->progs, sizeof(*pi->progs) * (pi->num_progs+1));
1772
1773         prog = pi->progs + pi->num_progs;
1774         prog->redirects = NULL;
1775         prog->argv = NULL;
1776         prog->is_stopped = 0;
1777         prog->group = NULL;
1778         prog->glob_result.gl_pathv = NULL;
1779         prog->family = pi;
1780
1781         ctx->child=prog;
1782         /* but ctx->pipe and ctx->list_head remain unchanged */
1783         return 0;
1784 }
1785
1786 static int done_pipe(struct p_context *ctx, pipe_style type)
1787 {
1788         struct pipe *new_p;
1789         done_command(ctx);  /* implicit closure of previous command */
1790         debug_printf("done_pipe, type %d\n", type);
1791         ctx->pipe->followup = type;
1792         ctx->pipe->r_mode = ctx->w;
1793         new_p=new_pipe();
1794         ctx->pipe->next = new_p;
1795         ctx->pipe = new_p;
1796         ctx->child = NULL;
1797         done_command(ctx);  /* set up new pipe to accept commands */
1798         return 0;
1799 }
1800
1801 /* peek ahead in the in_str to find out if we have a "&n" construct,
1802  * as in "2>&1", that represents duplicating a file descriptor.
1803  * returns either -2 (syntax error), -1 (no &), or the number found.
1804  */
1805 static int redirect_dup_num(struct in_str *input)
1806 {
1807         int ch, d=0, ok=0;
1808         ch = b_peek(input);
1809         if (ch != '&') return -1;
1810
1811         b_getch(input);  /* get the & */
1812         ch=b_peek(input);
1813         if (ch == '-') {
1814                 b_getch(input);
1815                 return -3;  /* "-" represents "close me" */
1816         }
1817         while (isdigit(ch)) {
1818                 d = d*10+(ch-'0');
1819                 ok=1;
1820                 b_getch(input);
1821                 ch = b_peek(input);
1822         }
1823         if (ok) return d;
1824
1825         fprintf(stderr, "ambiguous redirect\n");
1826         return -2;
1827 }
1828
1829 /* If a redirect is immediately preceded by a number, that number is
1830  * supposed to tell which file descriptor to redirect.  This routine
1831  * looks for such preceding numbers.  In an ideal world this routine
1832  * needs to handle all the following classes of redirects...
1833  *     echo 2>foo     # redirects fd  2 to file "foo", nothing passed to echo
1834  *     echo 49>foo    # redirects fd 49 to file "foo", nothing passed to echo
1835  *     echo -2>foo    # redirects fd  1 to file "foo",    "-2" passed to echo
1836  *     echo 49x>foo   # redirects fd  1 to file "foo",   "49x" passed to echo
1837  * A -1 output from this program means no valid number was found, so the
1838  * caller should use the appropriate default for this redirection.
1839  */
1840 static int redirect_opt_num(o_string *o)
1841 {
1842         int num;
1843
1844         if (o->length==0) return -1;
1845         for(num=0; num<o->length; num++) {
1846                 if (!isdigit(*(o->data+num))) {
1847                         return -1;
1848                 }
1849         }
1850         /* reuse num (and save an int) */
1851         num=atoi(o->data);
1852         b_reset(o);
1853         return num;
1854 }
1855
1856 FILE *generate_stream_from_list(struct pipe *head)
1857 {
1858         FILE *pf;
1859 #if 1
1860         int pid, channel[2];
1861         if (pipe(channel)<0) perror_msg_and_die("pipe");
1862         pid=fork();
1863         if (pid<0) {
1864                 perror_msg_and_die("fork");
1865         } else if (pid==0) {
1866                 close(channel[0]);
1867                 if (channel[1] != 1) {
1868                         dup2(channel[1],1);
1869                         close(channel[1]);
1870                 }
1871 #if 0
1872 #define SURROGATE "surrogate response"
1873                 write(1,SURROGATE,sizeof(SURROGATE));
1874                 exit(run_list(head));
1875 #else
1876                 exit(run_list_real(head));   /* leaks memory */
1877 #endif
1878         }
1879         debug_printf("forked child %d\n",pid);
1880         close(channel[1]);
1881         pf = fdopen(channel[0],"r");
1882         debug_printf("pipe on FILE *%p\n",pf);
1883 #else
1884         run_list_test(head,0);
1885         pf=popen("echo surrogate response","r");
1886         debug_printf("started fake pipe on FILE *%p\n",pf);
1887 #endif
1888         return pf;
1889 }
1890
1891 /* this version hacked for testing purposes */
1892 /* return code is exit status of the process that is run. */
1893 static int process_command_subs(o_string *dest, struct p_context *ctx, struct in_str *input, int subst_end)
1894 {
1895         int retcode;
1896         o_string result=NULL_O_STRING;
1897         struct p_context inner;
1898         FILE *p;
1899         struct in_str pipe_str;
1900         initialize_context(&inner);
1901
1902         /* recursion to generate command */
1903         retcode = parse_stream(&result, &inner, input, subst_end);
1904         if (retcode != 0) return retcode;  /* syntax error or EOF */
1905         done_word(&result, &inner);
1906         done_pipe(&inner, PIPE_SEQ);
1907         b_free(&result);
1908
1909         p=generate_stream_from_list(inner.list_head);
1910         if (p==NULL) return 1;
1911         mark_open(fileno(p));
1912         setup_file_in_str(&pipe_str, p);
1913
1914         /* now send results of command back into original context */
1915         retcode = parse_stream(dest, ctx, &pipe_str, '\0');
1916         /* XXX In case of a syntax error, should we try to kill the child?
1917          * That would be tough to do right, so just read until EOF. */
1918         if (retcode == 1) {
1919                 while (b_getch(&pipe_str)!=EOF) { /* discard */ };
1920         }
1921
1922         debug_printf("done reading from pipe, pclose()ing\n");
1923         /* This is the step that wait()s for the child.  Should be pretty
1924          * safe, since we just read an EOF from its stdout.  We could try
1925          * to better, by using wait(), and keeping track of background jobs
1926          * at the same time.  That would be a lot of work, and contrary
1927          * to the KISS philosophy of this program. */
1928         mark_closed(fileno(p));
1929         retcode=pclose(p);
1930         debug_printf("pclosed, retcode=%d\n",retcode);
1931         /* XXX this process fails to trim a single trailing newline */
1932         return retcode;
1933 }
1934
1935 static int parse_group(o_string *dest, struct p_context *ctx,
1936         struct in_str *input, int ch)
1937 {
1938         int rcode, endch=0;
1939         struct p_context sub;
1940         struct child_prog *child = ctx->child;
1941         if (child->argv) {
1942                 syntax();
1943                 return 1;  /* syntax error, groups and arglists don't mix */
1944         }
1945         initialize_context(&sub);
1946         switch(ch) {
1947                 case '(': endch=')'; child->subshell=1; break;
1948                 case '{': endch='}'; break;
1949                 default: syntax();   /* really logic error */
1950         }
1951         rcode=parse_stream(dest,&sub,input,endch);
1952         done_word(dest,&sub); /* finish off the final word in the subcontext */
1953         done_pipe(&sub, PIPE_SEQ);  /* and the final command there, too */
1954         child->group = sub.list_head;
1955         return rcode;
1956         /* child remains "open", available for possible redirects */
1957 }
1958
1959 /* basically useful version until someone wants to get fancier,
1960  * see the bash man page under "Parameter Expansion" */
1961 static void lookup_param(o_string *dest, struct p_context *ctx, o_string *src)
1962 {
1963         const char *p=NULL;
1964         if (src->data) p = getenv(src->data);
1965         if (p) parse_string(dest, ctx, p);   /* recursion */
1966         b_free(src);
1967 }
1968
1969 /* return code: 0 for OK, 1 for syntax error */
1970 static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input)
1971 {
1972         int i, advance=0;
1973         o_string alt=NULL_O_STRING;
1974         char sep[]=" ";
1975         int ch = input->peek(input);  /* first character after the $ */
1976         debug_printf("handle_dollar: ch=%c\n",ch);
1977         if (isalpha(ch)) {
1978                 while(ch=b_peek(input),isalnum(ch) || ch=='_') {
1979                         b_getch(input);
1980                         b_addchr(&alt,ch);
1981                 }
1982                 lookup_param(dest, ctx, &alt);
1983         } else if (isdigit(ch)) {
1984                 i = ch-'0';  /* XXX is $0 special? */
1985                 if (i<global_argc) {
1986                         parse_string(dest, ctx, global_argv[i]); /* recursion */
1987                 }
1988                 advance = 1;
1989         } else switch (ch) {
1990                 case '$':
1991                         b_adduint(dest,getpid());
1992                         advance = 1;
1993                         break;
1994                 case '!':
1995                         if (last_bg_pid > 0) b_adduint(dest, last_bg_pid);
1996                         advance = 1;
1997                         break;
1998                 case '?':
1999                         b_adduint(dest,last_return_code);
2000                         advance = 1;
2001                         break;
2002                 case '#':
2003                         b_adduint(dest,global_argc ? global_argc-1 : 0);
2004                         advance = 1;
2005                         break;
2006                 case '{':
2007                         b_getch(input);
2008                         /* XXX maybe someone will try to escape the '}' */
2009                         while(ch=b_getch(input),ch!=EOF && ch!='}') {
2010                                 b_addchr(&alt,ch);
2011                         }
2012                         if (ch != '}') {
2013                                 syntax();
2014                                 return 1;
2015                         }
2016                         lookup_param(dest, ctx, &alt);
2017                         break;
2018                 case '(':
2019                         b_getch(input);
2020                         process_command_subs(dest, ctx, input, ')');
2021                         break;
2022                 case '*':
2023                         sep[0]=ifs[0];
2024                         for (i=1; i<global_argc; i++) {
2025                                 parse_string(dest, ctx, global_argv[i]);
2026                                 if (i+1 < global_argc) parse_string(dest, ctx, sep);
2027                         }
2028                         break;
2029                 case '@':
2030                 case '-':
2031                 case '_':
2032                         /* still unhandled, but should be eventually */
2033                         fprintf(stderr,"unhandled syntax: $%c\n",ch);
2034                         return 1;
2035                         break;
2036                 default:
2037                         b_addqchr(dest,'$',dest->quote);
2038         }
2039         /* Eat the character if the flag was set.  If the compiler
2040          * is smart enough, we could substitute "b_getch(input);"
2041          * for all the "advance = 1;" above, and also end up with
2042          * a nice size-optimized program.  Hah!  That'll be the day.
2043          */
2044         if (advance) b_getch(input);
2045         return 0;
2046 }
2047
2048 int parse_string(o_string *dest, struct p_context *ctx, const char *src)
2049 {
2050         struct in_str foo;
2051         setup_string_in_str(&foo, src);
2052         return parse_stream(dest, ctx, &foo, '\0');
2053 }
2054
2055 /* return code is 0 for normal exit, 1 for syntax error */
2056 int parse_stream(o_string *dest, struct p_context *ctx,
2057         struct in_str *input, int end_trigger)
2058 {
2059         unsigned int ch, m;
2060         int redir_fd;
2061         redir_type redir_style;
2062         int next;
2063
2064         /* Only double-quote state is handled in the state variable dest->quote.
2065          * A single-quote triggers a bypass of the main loop until its mate is
2066          * found.  When recursing, quote state is passed in via dest->quote. */
2067
2068         debug_printf("parse_stream, end_trigger=%d\n",end_trigger);
2069         while ((ch=b_getch(input))!=EOF) {
2070                 m = map[ch];
2071                 next = (ch == '\n') ? 0 : b_peek(input);
2072                 debug_printf("parse_stream: ch=%c (%d) m=%d quote=%d\n",
2073                         ch,ch,m,dest->quote);
2074                 if (m==0 || ((m==1 || m==2) && dest->quote)) {
2075                         b_addqchr(dest, ch, dest->quote);
2076                 } else {
2077                         if (m==2) {  /* unquoted IFS */
2078                                 done_word(dest, ctx);
2079                                 /* If we aren't performing a substitution, treat a newline as a
2080                                  * command separator.  */
2081                                 if (end_trigger != '\0' && ch=='\n')
2082                                         done_pipe(ctx,PIPE_SEQ);
2083                         }
2084                         if (ch == end_trigger && !dest->quote && ctx->w==RES_NONE) {
2085                                 debug_printf("leaving parse_stream\n");
2086                                 return 0;
2087                         }
2088 #if 0
2089                         if (ch=='\n') {
2090                                 /* Yahoo!  Time to run with it! */
2091                                 done_pipe(ctx,PIPE_SEQ);
2092                                 run_list(ctx->list_head);
2093                                 initialize_context(ctx);
2094                         }
2095 #endif
2096                         if (m!=2) switch (ch) {
2097                 case '#':
2098                         if (dest->length == 0 && !dest->quote) {
2099                                 while(ch=b_peek(input),ch!=EOF && ch!='\n') { b_getch(input); }
2100                         } else {
2101                                 b_addqchr(dest, ch, dest->quote);
2102                         }
2103                         break;
2104                 case '\\':
2105                         if (next == EOF) {
2106                                 syntax();
2107                                 return 1;
2108                         }
2109                         b_addqchr(dest, '\\', dest->quote);
2110                         b_addqchr(dest, b_getch(input), dest->quote);
2111                         break;
2112                 case '$':
2113                         if (handle_dollar(dest, ctx, input)!=0) return 1;
2114                         break;
2115                 case '\'':
2116                         dest->nonnull = 1;
2117                         while(ch=b_getch(input),ch!=EOF && ch!='\'') {
2118                                 b_addchr(dest,ch);
2119                         }
2120                         if (ch==EOF) {
2121                                 syntax();
2122                                 return 1;
2123                         }
2124                         break;
2125                 case '"':
2126                         dest->nonnull = 1;
2127                         dest->quote = !dest->quote;
2128                         break;
2129                 case '`':
2130                         process_command_subs(dest, ctx, input, '`');
2131                         break;
2132                 case '>':
2133                         redir_fd = redirect_opt_num(dest);
2134                         done_word(dest, ctx);
2135                         redir_style=REDIRECT_OVERWRITE;
2136                         if (next == '>') {
2137                                 redir_style=REDIRECT_APPEND;
2138                                 b_getch(input);
2139                         } else if (next == '(') {
2140                                 syntax();   /* until we support >(list) Process Substitution */
2141                                 return 1;
2142                         }
2143                         setup_redirect(ctx, redir_fd, redir_style, input);
2144                         break;
2145                 case '<':
2146                         redir_fd = redirect_opt_num(dest);
2147                         done_word(dest, ctx);
2148                         redir_style=REDIRECT_INPUT;
2149                         if (next == '<') {
2150                                 redir_style=REDIRECT_HEREIS;
2151                                 b_getch(input);
2152                         } else if (next == '>') {
2153                                 redir_style=REDIRECT_IO;
2154                                 b_getch(input);
2155                         } else if (next == '(') {
2156                                 syntax();   /* until we support <(list) Process Substitution */
2157                                 return 1;
2158                         }
2159                         setup_redirect(ctx, redir_fd, redir_style, input);
2160                         break;
2161                 case ';':
2162                         done_word(dest, ctx);
2163                         done_pipe(ctx,PIPE_SEQ);
2164                         break;
2165                 case '&':
2166                         done_word(dest, ctx);
2167                         if (next=='&') {
2168                                 b_getch(input);
2169                                 done_pipe(ctx,PIPE_AND);
2170                         } else {
2171                                 done_pipe(ctx,PIPE_BG);
2172                         }
2173                         break;
2174                 case '|':
2175                         done_word(dest, ctx);
2176                         if (next=='|') {
2177                                 b_getch(input);
2178                                 done_pipe(ctx,PIPE_OR);
2179                         } else {
2180                                 /* we could pick up a file descriptor choice here
2181                                  * with redirect_opt_num(), but bash doesn't do it.
2182                                  * "echo foo 2| cat" yields "foo 2". */
2183                                 done_command(ctx);
2184                         }
2185                         break;
2186                 case '(':
2187                 case '{':
2188                         if (parse_group(dest, ctx, input, ch)!=0) return 1;
2189                         break;
2190                 case ')':
2191                 case '}':
2192                         syntax();   /* Proper use of this character caught by end_trigger */
2193                         return 1;
2194                         break;
2195                 default:
2196                         syntax();   /* this is really an internal logic error */
2197                         return 1;
2198                         }
2199                 }
2200         }
2201         /* complain if quote?  No, maybe we just finished a command substitution
2202          * that was quoted.  Example:
2203          * $ echo "`cat foo` plus more" 
2204          * and we just got the EOF generated by the subshell that ran "cat foo"
2205          * The only real complaint is if we got an EOF when end_trigger != '\0',
2206          * that is, we were really supposed to get end_trigger, and never got
2207          * one before the EOF.  Can't use the standard "syntax error" return code,
2208          * so that parse_stream_outer can distinguish the EOF and exit smoothly. */
2209         if (end_trigger != '\0') return -1;
2210         return 0;
2211 }
2212
2213 void mapset(const unsigned char *set, int code)
2214 {
2215         const unsigned char *s;
2216         for (s=set; *s; s++) map[*s] = code;
2217 }
2218
2219 void update_ifs_map(void)
2220 {
2221         /* char *ifs and char map[256] are both globals. */
2222         ifs = getenv("IFS");
2223         if (ifs == NULL) ifs=" \t\n";
2224         /* Precompute a list of 'flow through' behavior so it can be treated
2225          * quickly up front.  Computation is necessary because of IFS.
2226          * Special case handling of IFS == " \t\n" is not implemented.
2227          * The map[] array only really needs two bits each, and on most machines
2228          * that would be faster because of the reduced L1 cache footprint.
2229          */
2230         memset(map,0,256);        /* most characters flow through always */
2231         mapset("\\$'\"`", 3);     /* never flow through */
2232         mapset("<>;&|(){}#", 1);  /* flow through if quoted */
2233         mapset(ifs, 2);           /* also flow through if quoted */
2234 }
2235
2236 /* most recursion does not come through here, the exeception is
2237  * from builtin_source() */
2238 int parse_stream_outer(struct in_str *inp)
2239 {
2240
2241         struct p_context ctx;
2242         o_string temp=NULL_O_STRING;
2243         int rcode;
2244         do {
2245                 initialize_context(&ctx);
2246                 update_ifs_map();
2247                 inp->promptmode=1;
2248                 rcode = parse_stream(&temp, &ctx, inp, '\n');
2249                 done_word(&temp, &ctx);
2250                 done_pipe(&ctx,PIPE_SEQ);
2251                 run_list(ctx.list_head);
2252         } while (rcode != -1);   /* loop on syntax errors, return on EOF */
2253         return 0;
2254 }
2255
2256 static int parse_string_outer(const char *s)
2257 {
2258         struct in_str input;
2259         setup_string_in_str(&input, s);
2260         return parse_stream_outer(&input);
2261 }
2262
2263 static int parse_file_outer(FILE *f)
2264 {
2265         int rcode;
2266         struct in_str input;
2267         setup_file_in_str(&input, f);
2268         rcode = parse_stream_outer(&input);
2269         return rcode;
2270 }
2271
2272 int shell_main(int argc, char **argv)
2273 {
2274         int opt;
2275         FILE *input;
2276         struct jobset joblist_end = { NULL, NULL };
2277         job_list = &joblist_end;
2278
2279         last_return_code=EXIT_SUCCESS;
2280
2281         /* XXX what should these be while sourcing /etc/profile? */
2282         global_argc = argc;
2283         global_argv = argv;
2284
2285         /* don't pay any attention to this signal; it just confuses 
2286            things and isn't really meant for shells anyway */
2287         signal(SIGTTOU, SIG_IGN);
2288
2289         if (argv[0] && argv[0][0] == '-') {
2290                 debug_printf("\nsourcing /etc/profile\n");
2291                 input = xfopen("/etc/profile", "r");
2292                 mark_open(fileno(input));
2293                 parse_file_outer(input);
2294                 mark_closed(fileno(input));
2295                 fclose(input);
2296         }
2297         input=stdin;
2298         
2299         /* initialize the cwd -- this is never freed...*/
2300         cwd = xgetcwd(0);
2301 #ifdef BB_FEATURE_COMMAND_EDITING
2302         cmdedit_set_initial_prompt();
2303 #else
2304         PS1 = NULL;
2305 #endif
2306         
2307         while ((opt = getopt(argc, argv, "c:xif")) > 0) {
2308                 switch (opt) {
2309                         case 'c':
2310                                 {
2311                                         global_argv = argv+optind;
2312                                         global_argc = argc-optind;
2313                                         opt = parse_string_outer(optarg);
2314                                         goto final_return;
2315                                 }
2316                                 break;
2317                         case 'i':
2318                                 interactive++;
2319                                 break;
2320                         case 'f':
2321                                 fake_mode++;
2322                                 break;
2323                         default:
2324                                 fprintf(stderr, "Usage: sh [FILE]...\n"
2325                                                 "   or: sh -c command [args]...\n\n");
2326                                 exit(EXIT_FAILURE);
2327                 }
2328         }
2329         /* A shell is interactive if the `-i' flag was given, or if all of
2330          * the following conditions are met:
2331          *        no -c command
2332          *    no arguments remaining or the -s flag given
2333          *    standard input is a terminal
2334          *    standard output is a terminal
2335          *    Refer to Posix.2, the description of the `sh' utility. */
2336         if (argv[optind]==NULL && input==stdin &&
2337                         isatty(fileno(stdin)) && isatty(fileno(stdout))) {
2338                 interactive++;
2339         }
2340
2341         debug_printf("\ninteractive=%d\n", interactive);
2342         if (interactive) {
2343                 /* Looks like they want an interactive shell */
2344                 fprintf(stdout, "\nhush -- the humble shell v0.01 (testing)\n\n");
2345                 opt=parse_file_outer(stdin);
2346                 goto final_return;
2347         }
2348
2349         debug_printf("\nrunning script '%s'\n", argv[optind]);
2350         global_argv = argv+optind;
2351         global_argc = argc-optind;
2352         input = xfopen(argv[optind], "r");
2353         opt = parse_file_outer(input);
2354
2355 #ifdef BB_FEATURE_CLEAN_UP
2356         fclose(input.file);
2357 #endif
2358
2359 final_return:
2360         return(opt?opt:last_return_code);
2361 }