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