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