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