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