blob: 08b3b295f671d60be22070ab185a8ccd524b37ed [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"
Matt Kraai2d91deb2001-08-01 17:21:35 +0000115#define hush_main main
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000116#undef CONFIG_FEATURE_SH_FANCY_PROMPT
117#define BB_BANNER
Eric Andersenaf44a0e2001-04-27 07:26:12 +0000118#endif
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000119#define SPECIAL_VAR_SYMBOL 03
120#define FLAG_EXIT_FROM_LOOP 1
121#define FLAG_PARSE_SEMICOLON (1 << 1) /* symbol ';' is special for parser */
122#define FLAG_REPARSING (1 << 2) /* >=2nd pass */
Eric Andersen25f27032001-04-26 23:22:31 +0000123
124typedef enum {
125 REDIRECT_INPUT = 1,
126 REDIRECT_OVERWRITE = 2,
127 REDIRECT_APPEND = 3,
128 REDIRECT_HEREIS = 4,
129 REDIRECT_IO = 5
130} redir_type;
131
132/* The descrip member of this structure is only used to make debugging
133 * output pretty */
134struct {int mode; int default_fd; char *descrip;} redir_table[] = {
135 { 0, 0, "()" },
136 { O_RDONLY, 0, "<" },
137 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
138 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
139 { O_RDONLY, -1, "<<" },
140 { O_RDWR, 1, "<>" }
141};
142
143typedef enum {
144 PIPE_SEQ = 1,
145 PIPE_AND = 2,
146 PIPE_OR = 3,
147 PIPE_BG = 4,
148} pipe_style;
149
150/* might eventually control execution */
151typedef enum {
152 RES_NONE = 0,
153 RES_IF = 1,
154 RES_THEN = 2,
155 RES_ELIF = 3,
156 RES_ELSE = 4,
157 RES_FI = 5,
158 RES_FOR = 6,
159 RES_WHILE = 7,
160 RES_UNTIL = 8,
161 RES_DO = 9,
162 RES_DONE = 10,
Eric Andersenaf44a0e2001-04-27 07:26:12 +0000163 RES_XXXX = 11,
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000164 RES_IN = 12,
165 RES_SNTX = 13
Eric Andersen25f27032001-04-26 23:22:31 +0000166} reserved_style;
167#define FLAG_END (1<<RES_NONE)
168#define FLAG_IF (1<<RES_IF)
169#define FLAG_THEN (1<<RES_THEN)
170#define FLAG_ELIF (1<<RES_ELIF)
171#define FLAG_ELSE (1<<RES_ELSE)
172#define FLAG_FI (1<<RES_FI)
173#define FLAG_FOR (1<<RES_FOR)
174#define FLAG_WHILE (1<<RES_WHILE)
175#define FLAG_UNTIL (1<<RES_UNTIL)
176#define FLAG_DO (1<<RES_DO)
177#define FLAG_DONE (1<<RES_DONE)
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000178#define FLAG_IN (1<<RES_IN)
Eric Andersen25f27032001-04-26 23:22:31 +0000179#define FLAG_START (1<<RES_XXXX)
180
181/* This holds pointers to the various results of parsing */
182struct p_context {
183 struct child_prog *child;
184 struct pipe *list_head;
185 struct pipe *pipe;
186 struct redir_struct *pending_redirect;
187 reserved_style w;
188 int old_flag; /* for figuring out valid reserved words */
189 struct p_context *stack;
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000190 int type; /* define type of parser : ";$" common or special symbol */
Eric Andersen25f27032001-04-26 23:22:31 +0000191 /* How about quoting status? */
192};
193
194struct redir_struct {
195 redir_type type; /* type of redirection */
196 int fd; /* file descriptor being redirected */
197 int dup; /* -1, or file descriptor being duplicated */
198 struct redir_struct *next; /* pointer to the next redirect in the list */
199 glob_t word; /* *word.gl_pathv is the filename */
200};
201
202struct child_prog {
203 pid_t pid; /* 0 if exited */
204 char **argv; /* program name and arguments */
205 struct pipe *group; /* if non-NULL, first in group or subshell */
206 int subshell; /* flag, non-zero if group must be forked */
207 struct redir_struct *redirects; /* I/O redirections */
208 glob_t glob_result; /* result of parameter globbing */
209 int is_stopped; /* is the program currently running? */
210 struct pipe *family; /* pointer back to the child's parent pipe */
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000211 int sp; /* number of SPECIAL_VAR_SYMBOL */
212 int type;
Eric Andersen25f27032001-04-26 23:22:31 +0000213};
214
215struct pipe {
216 int jobid; /* job number */
217 int num_progs; /* total number of programs in job */
218 int running_progs; /* number of programs running */
219 char *text; /* name of job */
220 char *cmdbuf; /* buffer various argv's point into */
221 pid_t pgrp; /* process group ID for the job */
222 struct child_prog *progs; /* array of commands in pipe */
223 struct pipe *next; /* to track background commands */
224 int stopped_progs; /* number of programs alive, but stopped */
225 int job_context; /* bitmask defining current context */
226 pipe_style followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
227 reserved_style r_mode; /* supports if, for, while, until */
Eric Andersen25f27032001-04-26 23:22:31 +0000228};
229
Eric Andersen25f27032001-04-26 23:22:31 +0000230struct close_me {
231 int fd;
232 struct close_me *next;
233};
234
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000235struct variables {
236 char *name;
237 char *value;
238 int flg_export;
239 int flg_read_only;
240 struct variables *next;
241};
242
Eric Andersen25f27032001-04-26 23:22:31 +0000243/* globals, connect us to the outside world
244 * the first three support $?, $#, and $1 */
245char **global_argv;
246unsigned int global_argc;
247unsigned int last_return_code;
248extern char **environ; /* This is in <unistd.h>, but protected with __USE_GNU */
249
Eric Andersen25f27032001-04-26 23:22:31 +0000250/* "globals" within this file */
Eric Andersenbc604a22001-05-16 05:24:03 +0000251static char *ifs;
Eric Andersen25f27032001-04-26 23:22:31 +0000252static char map[256];
Eric Andersenbc604a22001-05-16 05:24:03 +0000253static int fake_mode;
254static int interactive;
255static struct close_me *close_me_head;
Eric Andersencfa88ec2001-05-11 18:08:16 +0000256static const char *cwd;
Eric Andersenc798b072001-06-22 06:23:03 +0000257static struct pipe *job_list;
Eric Andersenbc604a22001-05-16 05:24:03 +0000258static unsigned int last_bg_pid;
Eric Andersenc798b072001-06-22 06:23:03 +0000259static unsigned int last_jobid;
Eric Andersen6c947d22001-06-25 22:24:38 +0000260static unsigned int shell_terminal;
Eric Andersen25f27032001-04-26 23:22:31 +0000261static char *PS1;
Eric Andersen94ac2442001-05-22 19:05:18 +0000262static char *PS2;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000263struct variables shell_ver = { "HUSH_VERSION", "0.01", 1, 1, 0 };
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000264struct variables *top_vars = &shell_ver;
Eric Andersen25f27032001-04-26 23:22:31 +0000265
Eric Andersen52a97ca2001-06-22 06:49:26 +0000266
Eric Andersen25f27032001-04-26 23:22:31 +0000267#define B_CHUNK (100)
268#define B_NOSPAC 1
Eric Andersen25f27032001-04-26 23:22:31 +0000269
270typedef struct {
271 char *data;
272 int length;
273 int maxlen;
274 int quote;
275 int nonnull;
276} o_string;
277#define NULL_O_STRING {NULL,0,0,0,0}
278/* used for initialization:
279 o_string foo = NULL_O_STRING; */
280
281/* I can almost use ordinary FILE *. Is open_memstream() universally
282 * available? Where is it documented? */
283struct in_str {
284 const char *p;
Matt Kraaibdd4ece2001-05-23 17:43:00 +0000285 char peek_buf[2];
Eric Andersen25f27032001-04-26 23:22:31 +0000286 int __promptme;
287 int promptmode;
288 FILE *file;
289 int (*get) (struct in_str *);
290 int (*peek) (struct in_str *);
291};
292#define b_getch(input) ((input)->get(input))
293#define b_peek(input) ((input)->peek(input))
294
295#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
296
297struct built_in_command {
298 char *cmd; /* name */
299 char *descr; /* description */
300 int (*function) (struct child_prog *); /* function ptr */
301};
302
303/* belongs in busybox.h */
304static inline int max(int a, int b) {
305 return (a>b)?a:b;
306}
307
308/* This should be in utility.c */
309#ifdef DEBUG_SHELL
310static void debug_printf(const char *format, ...)
311{
312 va_list args;
313 va_start(args, format);
314 vfprintf(stderr, format, args);
315 va_end(args);
316}
317#else
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000318static inline void debug_printf(const char *format, ...) { }
Eric Andersen25f27032001-04-26 23:22:31 +0000319#endif
320#define final_printf debug_printf
321
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000322static void __syntax(char *file, int line) {
323 error_msg("syntax error %s:%d", file, line);
Eric Andersen25f27032001-04-26 23:22:31 +0000324}
325#define syntax() __syntax(__FILE__, __LINE__)
326
327/* Index of subroutines: */
328/* function prototypes for builtins */
329static int builtin_cd(struct child_prog *child);
330static int builtin_env(struct child_prog *child);
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000331static int builtin_eval(struct child_prog *child);
Eric Andersen25f27032001-04-26 23:22:31 +0000332static int builtin_exec(struct child_prog *child);
333static int builtin_exit(struct child_prog *child);
334static int builtin_export(struct child_prog *child);
335static int builtin_fg_bg(struct child_prog *child);
336static int builtin_help(struct child_prog *child);
337static int builtin_jobs(struct child_prog *child);
338static int builtin_pwd(struct child_prog *child);
339static int builtin_read(struct child_prog *child);
Eric Andersenf72f5622001-05-15 23:21:41 +0000340static int builtin_set(struct child_prog *child);
Eric Andersen25f27032001-04-26 23:22:31 +0000341static int builtin_shift(struct child_prog *child);
342static int builtin_source(struct child_prog *child);
Eric Andersen25f27032001-04-26 23:22:31 +0000343static int builtin_umask(struct child_prog *child);
344static int builtin_unset(struct child_prog *child);
Eric Andersen83a2ae22001-05-07 17:59:25 +0000345static int builtin_not_written(struct child_prog *child);
Eric Andersen25f27032001-04-26 23:22:31 +0000346/* o_string manipulation: */
347static int b_check_space(o_string *o, int len);
348static int b_addchr(o_string *o, int ch);
349static void b_reset(o_string *o);
350static int b_addqchr(o_string *o, int ch, int quote);
351static int b_adduint(o_string *o, unsigned int i);
352/* in_str manipulations: */
353static int static_get(struct in_str *i);
354static int static_peek(struct in_str *i);
355static int file_get(struct in_str *i);
356static int file_peek(struct in_str *i);
357static void setup_file_in_str(struct in_str *i, FILE *f);
358static void setup_string_in_str(struct in_str *i, const char *s);
359/* close_me manipulations: */
360static void mark_open(int fd);
361static void mark_closed(int fd);
Eric Anderseneaecbf32001-10-31 10:41:31 +0000362static void close_all(void);
Eric Andersen25f27032001-04-26 23:22:31 +0000363/* "run" the final data structures: */
364static char *indenter(int i);
Eric Andersenbf7df042001-05-23 22:18:35 +0000365static int free_pipe_list(struct pipe *head, int indent);
366static int free_pipe(struct pipe *pi, int indent);
Eric Andersen25f27032001-04-26 23:22:31 +0000367/* really run the final data structures: */
368static int setup_redirects(struct child_prog *prog, int squirrel[]);
Eric Andersen25f27032001-04-26 23:22:31 +0000369static int run_list_real(struct pipe *pi);
370static void pseudo_exec(struct child_prog *child) __attribute__ ((noreturn));
371static int run_pipe_real(struct pipe *pi);
372/* extended glob support: */
373static int globhack(const char *src, int flags, glob_t *pglob);
374static int glob_needed(const char *s);
375static int xglob(o_string *dest, int flags, glob_t *pglob);
Eric Andersen78a7c992001-05-15 16:30:25 +0000376/* variable assignment: */
Eric Andersen78a7c992001-05-15 16:30:25 +0000377static int is_assignment(const char *s);
Eric Andersen25f27032001-04-26 23:22:31 +0000378/* data structure manipulation: */
379static int setup_redirect(struct p_context *ctx, int fd, redir_type style, struct in_str *input);
380static void initialize_context(struct p_context *ctx);
381static int done_word(o_string *dest, struct p_context *ctx);
382static int done_command(struct p_context *ctx);
383static int done_pipe(struct p_context *ctx, pipe_style type);
384/* primary string parsing: */
385static int redirect_dup_num(struct in_str *input);
386static int redirect_opt_num(o_string *o);
387static int process_command_subs(o_string *dest, struct p_context *ctx, struct in_str *input, int subst_end);
388static int parse_group(o_string *dest, struct p_context *ctx, struct in_str *input, int ch);
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000389static char *lookup_param(char *src);
390static char *make_string(char **inp);
Eric Andersen25f27032001-04-26 23:22:31 +0000391static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input);
392static int parse_string(o_string *dest, struct p_context *ctx, const char *src);
393static int parse_stream(o_string *dest, struct p_context *ctx, struct in_str *input0, int end_trigger);
394/* setup: */
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000395static int parse_stream_outer(struct in_str *inp, int flag);
396static int parse_string_outer(const char *s, int flag);
Eric Andersen25f27032001-04-26 23:22:31 +0000397static int parse_file_outer(FILE *f);
Eric Andersenbafd94f2001-05-02 16:11:59 +0000398/* job management: */
Eric Andersenc798b072001-06-22 06:23:03 +0000399static int checkjobs(struct pipe* fg_pipe);
Eric Andersenbafd94f2001-05-02 16:11:59 +0000400static void insert_bg_job(struct pipe *pi);
401static void remove_bg_job(struct pipe *pi);
Eric Andersenf72f5622001-05-15 23:21:41 +0000402/* local variable support */
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000403static char **make_list_in(char **inp, char *name);
404static char *insert_var_value(char *inp);
Eric Andersenf72f5622001-05-15 23:21:41 +0000405static char *get_local_var(const char *var);
Eric Andersenf72f5622001-05-15 23:21:41 +0000406static void unset_local_var(const char *name);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000407static int set_local_var(const char *s, int flg_export);
Eric Andersen25f27032001-04-26 23:22:31 +0000408
409/* Table of built-in functions. They can be forked or not, depending on
410 * context: within pipes, they fork. As simple commands, they do not.
411 * When used in non-forking context, they can change global variables
412 * in the parent shell process. If forked, of course they can not.
413 * For example, 'unset foo | whatever' will parse and run, but foo will
414 * still be set at the end. */
415static struct built_in_command bltins[] = {
416 {"bg", "Resume a job in the background", builtin_fg_bg},
Eric Andersen83a2ae22001-05-07 17:59:25 +0000417 {"break", "Exit for, while or until loop", builtin_not_written},
Eric Andersen25f27032001-04-26 23:22:31 +0000418 {"cd", "Change working directory", builtin_cd},
Eric Andersen83a2ae22001-05-07 17:59:25 +0000419 {"continue", "Continue for, while or until loop", builtin_not_written},
Eric Andersen25f27032001-04-26 23:22:31 +0000420 {"env", "Print all environment variables", builtin_env},
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000421 {"eval", "Construct and run shell command", builtin_eval},
Eric Andersenf72f5622001-05-15 23:21:41 +0000422 {"exec", "Exec command, replacing this shell with the exec'd process",
423 builtin_exec},
Eric Andersen25f27032001-04-26 23:22:31 +0000424 {"exit", "Exit from shell()", builtin_exit},
425 {"export", "Set environment variable", builtin_export},
426 {"fg", "Bring job into the foreground", builtin_fg_bg},
427 {"jobs", "Lists the active jobs", builtin_jobs},
428 {"pwd", "Print current directory", builtin_pwd},
429 {"read", "Input environment variable", builtin_read},
Eric Andersen83a2ae22001-05-07 17:59:25 +0000430 {"return", "Return from a function", builtin_not_written},
Eric Andersenf72f5622001-05-15 23:21:41 +0000431 {"set", "Set/unset shell local variables", builtin_set},
Eric Andersen25f27032001-04-26 23:22:31 +0000432 {"shift", "Shift positional parameters", builtin_shift},
Eric Andersen83a2ae22001-05-07 17:59:25 +0000433 {"trap", "Trap signals", builtin_not_written},
434 {"ulimit","Controls resource limits", builtin_not_written},
Eric Andersen25f27032001-04-26 23:22:31 +0000435 {"umask","Sets file creation mask", builtin_umask},
436 {"unset", "Unset environment variable", builtin_unset},
437 {".", "Source-in and run commands in a file", builtin_source},
438 {"help", "List shell built-in commands", builtin_help},
439 {NULL, NULL, NULL}
440};
441
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000442static const char *set_cwd(void)
443{
444 if(cwd==unknown)
445 cwd = NULL; /* xgetcwd(arg) called free(arg) */
446 cwd = xgetcwd((char *)cwd);
447 if (!cwd)
448 cwd = unknown;
449 return cwd;
450}
451
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000452/* built-in 'eval' handler */
453static int builtin_eval(struct child_prog *child)
454{
455 char *str = NULL;
456 int rcode = EXIT_SUCCESS;
457
458 if (child->argv[1]) {
459 str = make_string(child->argv + 1);
460 parse_string_outer(str, FLAG_EXIT_FROM_LOOP |
461 FLAG_PARSE_SEMICOLON);
462 free(str);
463 rcode = last_return_code;
464 }
465 return rcode;
466}
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000467
Eric Andersen25f27032001-04-26 23:22:31 +0000468/* built-in 'cd <path>' handler */
469static int builtin_cd(struct child_prog *child)
470{
471 char *newdir;
472 if (child->argv[1] == NULL)
473 newdir = getenv("HOME");
474 else
475 newdir = child->argv[1];
476 if (chdir(newdir)) {
477 printf("cd: %s: %s\n", newdir, strerror(errno));
478 return EXIT_FAILURE;
479 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000480 set_cwd();
Eric Andersen25f27032001-04-26 23:22:31 +0000481 return EXIT_SUCCESS;
482}
483
484/* built-in 'env' handler */
485static int builtin_env(struct child_prog *dummy)
486{
487 char **e = environ;
488 if (e == NULL) return EXIT_FAILURE;
489 for (; *e; e++) {
490 puts(*e);
491 }
492 return EXIT_SUCCESS;
493}
494
495/* built-in 'exec' handler */
496static int builtin_exec(struct child_prog *child)
497{
498 if (child->argv[1] == NULL)
499 return EXIT_SUCCESS; /* Really? */
500 child->argv++;
501 pseudo_exec(child);
502 /* never returns */
503}
504
505/* built-in 'exit' handler */
506static int builtin_exit(struct child_prog *child)
507{
508 if (child->argv[1] == NULL)
Eric Andersene67c3ce2001-05-02 02:09:36 +0000509 exit(last_return_code);
Eric Andersen25f27032001-04-26 23:22:31 +0000510 exit (atoi(child->argv[1]));
511}
512
513/* built-in 'export VAR=value' handler */
514static int builtin_export(struct child_prog *child)
515{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000516 int res = 0;
517 char *name = child->argv[1];
Eric Andersen25f27032001-04-26 23:22:31 +0000518
Eric Andersenf72f5622001-05-15 23:21:41 +0000519 if (name == NULL) {
Eric Andersen25f27032001-04-26 23:22:31 +0000520 return (builtin_env(child));
521 }
Eric Andersenf72f5622001-05-15 23:21:41 +0000522
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000523 name = strdup(name);
Eric Andersenf72f5622001-05-15 23:21:41 +0000524
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000525 if(name) {
Eric Andersen94ac2442001-05-22 19:05:18 +0000526 char *value = strchr(name, '=');
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000527
Eric Andersen94ac2442001-05-22 19:05:18 +0000528 if (!value) {
529 char *tmp;
530 /* They are exporting something without an =VALUE */
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000531
Eric Andersen94ac2442001-05-22 19:05:18 +0000532 value = get_local_var(name);
533 if (value) {
534 size_t ln = strlen(name);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000535
Eric Andersen94ac2442001-05-22 19:05:18 +0000536 tmp = realloc(name, ln+strlen(value)+2);
537 if(tmp==NULL)
538 res = -1;
539 else {
540 sprintf(tmp+ln, "=%s", value);
541 name = tmp;
542 }
543 } else {
544 /* bash does not return an error when trying to export
545 * an undefined variable. Do likewise. */
546 res = 1;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000547 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000548 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000549 }
550 if (res<0)
Eric Andersenf72f5622001-05-15 23:21:41 +0000551 perror_msg("export");
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000552 else if(res==0)
553 res = set_local_var(name, 1);
554 else
555 res = 0;
556 free(name);
557 return res;
Eric Andersen25f27032001-04-26 23:22:31 +0000558}
559
560/* built-in 'fg' and 'bg' handler */
561static int builtin_fg_bg(struct child_prog *child)
562{
Eric Andersen0fcd4472001-05-02 20:12:03 +0000563 int i, jobnum;
564 struct pipe *pi=NULL;
Eric Andersen25f27032001-04-26 23:22:31 +0000565
Eric Andersenc798b072001-06-22 06:23:03 +0000566 if (!interactive)
567 return EXIT_FAILURE;
Eric Andersen0fcd4472001-05-02 20:12:03 +0000568 /* If they gave us no args, assume they want the last backgrounded task */
569 if (!child->argv[1]) {
Eric Andersenc798b072001-06-22 06:23:03 +0000570 for (pi = job_list; pi; pi = pi->next) {
571 if (pi->jobid == last_jobid) {
Eric Andersen0fcd4472001-05-02 20:12:03 +0000572 break;
573 }
574 }
575 if (!pi) {
576 error_msg("%s: no current job", child->argv[0]);
577 return EXIT_FAILURE;
578 }
579 } else {
580 if (sscanf(child->argv[1], "%%%d", &jobnum) != 1) {
581 error_msg("%s: bad argument '%s'", child->argv[0], child->argv[1]);
582 return EXIT_FAILURE;
583 }
Eric Andersenc798b072001-06-22 06:23:03 +0000584 for (pi = job_list; pi; pi = pi->next) {
Eric Andersen0fcd4472001-05-02 20:12:03 +0000585 if (pi->jobid == jobnum) {
586 break;
587 }
588 }
589 if (!pi) {
590 error_msg("%s: %d: no such job", child->argv[0], jobnum);
591 return EXIT_FAILURE;
Eric Andersen25f27032001-04-26 23:22:31 +0000592 }
593 }
Eric Andersen52a97ca2001-06-22 06:49:26 +0000594
Eric Andersen25f27032001-04-26 23:22:31 +0000595 if (*child->argv[0] == 'f') {
Eric Andersen028b65b2001-06-28 01:10:11 +0000596 /* Put the job into the foreground. */
597 tcsetpgrp(shell_terminal, pi->pgrp);
Eric Andersen25f27032001-04-26 23:22:31 +0000598 }
599
600 /* Restart the processes in the job */
Eric Andersen0fcd4472001-05-02 20:12:03 +0000601 for (i = 0; i < pi->num_progs; i++)
602 pi->progs[i].is_stopped = 0;
Eric Andersen25f27032001-04-26 23:22:31 +0000603
Eric Andersen028b65b2001-06-28 01:10:11 +0000604 if ( (i=kill(- pi->pgrp, SIGCONT)) < 0) {
605 if (i == ESRCH) {
606 remove_bg_job(pi);
607 } else {
608 perror_msg("kill (SIGCONT)");
609 }
610 }
Eric Andersen25f27032001-04-26 23:22:31 +0000611
Eric Andersen0fcd4472001-05-02 20:12:03 +0000612 pi->stopped_progs = 0;
Eric Andersen25f27032001-04-26 23:22:31 +0000613 return EXIT_SUCCESS;
614}
615
616/* built-in 'help' handler */
617static int builtin_help(struct child_prog *dummy)
618{
619 struct built_in_command *x;
620
621 printf("\nBuilt-in commands:\n");
622 printf("-------------------\n");
623 for (x = bltins; x->cmd; x++) {
624 if (x->descr==NULL)
625 continue;
626 printf("%s\t%s\n", x->cmd, x->descr);
627 }
628 printf("\n\n");
629 return EXIT_SUCCESS;
630}
631
632/* built-in 'jobs' handler */
633static int builtin_jobs(struct child_prog *child)
634{
635 struct pipe *job;
636 char *status_string;
637
Eric Andersenc798b072001-06-22 06:23:03 +0000638 for (job = job_list; job; job = job->next) {
Eric Andersen25f27032001-04-26 23:22:31 +0000639 if (job->running_progs == job->stopped_progs)
640 status_string = "Stopped";
641 else
642 status_string = "Running";
Eric Andersen52a97ca2001-06-22 06:49:26 +0000643
Eric Andersen25f27032001-04-26 23:22:31 +0000644 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->text);
645 }
646 return EXIT_SUCCESS;
647}
648
649
650/* built-in 'pwd' handler */
651static int builtin_pwd(struct child_prog *dummy)
652{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000653 puts(set_cwd());
Eric Andersen25f27032001-04-26 23:22:31 +0000654 return EXIT_SUCCESS;
655}
656
657/* built-in 'read VAR' handler */
658static int builtin_read(struct child_prog *child)
659{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000660 int res;
Eric Andersen25f27032001-04-26 23:22:31 +0000661
662 if (child->argv[1]) {
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000663 char string[BUFSIZ];
664 char *var = 0;
Eric Andersen25f27032001-04-26 23:22:31 +0000665
Eric Andersen94ac2442001-05-22 19:05:18 +0000666 string[0] = 0; /* In case stdin has only EOF */
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000667 /* read string */
668 fgets(string, sizeof(string), stdin);
669 chomp(string);
670 var = malloc(strlen(child->argv[1])+strlen(string)+2);
671 if(var) {
672 sprintf(var, "%s=%s", child->argv[1], string);
673 res = set_local_var(var, 0);
674 } else
Eric Andersen94ac2442001-05-22 19:05:18 +0000675 res = -1;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000676 if (res)
677 fprintf(stderr, "read: %m\n");
Eric Andersen94ac2442001-05-22 19:05:18 +0000678 free(var); /* So not move up to avoid breaking errno */
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000679 return res;
680 } else {
681 do res=getchar(); while(res!='\n' && res!=EOF);
682 return 0;
683 }
Eric Andersen25f27032001-04-26 23:22:31 +0000684}
685
Eric Andersenf72f5622001-05-15 23:21:41 +0000686/* built-in 'set VAR=value' handler */
687static int builtin_set(struct child_prog *child)
688{
Eric Andersenf72f5622001-05-15 23:21:41 +0000689 char *temp = child->argv[1];
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000690 struct variables *e;
Eric Andersenf72f5622001-05-15 23:21:41 +0000691
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000692 if (temp == NULL)
693 for(e = top_vars; e; e=e->next)
694 printf("%s=%s\n", e->name, e->value);
695 else
696 set_local_var(temp, 0);
697
Eric Andersenf72f5622001-05-15 23:21:41 +0000698 return EXIT_SUCCESS;
Eric Andersenf72f5622001-05-15 23:21:41 +0000699}
700
701
Eric Andersen25f27032001-04-26 23:22:31 +0000702/* Built-in 'shift' handler */
703static int builtin_shift(struct child_prog *child)
704{
705 int n=1;
706 if (child->argv[1]) {
707 n=atoi(child->argv[1]);
708 }
709 if (n>=0 && n<global_argc) {
710 /* XXX This probably breaks $0 */
711 global_argc -= n;
712 global_argv += n;
713 return EXIT_SUCCESS;
714 } else {
715 return EXIT_FAILURE;
716 }
717}
718
719/* Built-in '.' handler (read-in and execute commands from file) */
720static int builtin_source(struct child_prog *child)
721{
722 FILE *input;
723 int status;
724
725 if (child->argv[1] == NULL)
726 return EXIT_FAILURE;
727
728 /* XXX search through $PATH is missing */
729 input = fopen(child->argv[1], "r");
730 if (!input) {
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000731 error_msg("Couldn't open file '%s'", child->argv[1]);
Eric Andersen25f27032001-04-26 23:22:31 +0000732 return EXIT_FAILURE;
733 }
734
735 /* Now run the file */
736 /* XXX argv and argc are broken; need to save old global_argv
737 * (pointer only is OK!) on this stack frame,
738 * set global_argv=child->argv+1, recurse, and restore. */
739 mark_open(fileno(input));
740 status = parse_file_outer(input);
741 mark_closed(fileno(input));
742 fclose(input);
743 return (status);
744}
745
Eric Andersen25f27032001-04-26 23:22:31 +0000746static int builtin_umask(struct child_prog *child)
747{
Eric Andersen83a2ae22001-05-07 17:59:25 +0000748 mode_t new_umask;
749 const char *arg = child->argv[1];
750 char *end;
751 if (arg) {
752 new_umask=strtoul(arg, &end, 8);
753 if (*end!='\0' || end == arg) {
754 return EXIT_FAILURE;
755 }
756 } else {
757 printf("%.3o\n", (unsigned int) (new_umask=umask(0)));
758 }
759 umask(new_umask);
760 return EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +0000761}
762
763/* built-in 'unset VAR' handler */
764static int builtin_unset(struct child_prog *child)
765{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000766 /* bash returned already true */
Eric Andersenf72f5622001-05-15 23:21:41 +0000767 unset_local_var(child->argv[1]);
Eric Andersen25f27032001-04-26 23:22:31 +0000768 return EXIT_SUCCESS;
769}
770
Eric Andersen83a2ae22001-05-07 17:59:25 +0000771static int builtin_not_written(struct child_prog *child)
772{
773 printf("builtin_%s not written\n",child->argv[0]);
774 return EXIT_FAILURE;
775}
776
Eric Andersen25f27032001-04-26 23:22:31 +0000777static int b_check_space(o_string *o, int len)
778{
779 /* It would be easy to drop a more restrictive policy
780 * in here, such as setting a maximum string length */
781 if (o->length + len > o->maxlen) {
782 char *old_data = o->data;
783 /* assert (data == NULL || o->maxlen != 0); */
784 o->maxlen += max(2*len, B_CHUNK);
785 o->data = realloc(o->data, 1 + o->maxlen);
786 if (o->data == NULL) {
787 free(old_data);
788 }
789 }
790 return o->data == NULL;
791}
792
793static int b_addchr(o_string *o, int ch)
794{
795 debug_printf("b_addchr: %c %d %p\n", ch, o->length, o);
796 if (b_check_space(o, 1)) return B_NOSPAC;
797 o->data[o->length] = ch;
798 o->length++;
799 o->data[o->length] = '\0';
800 return 0;
801}
802
803static void b_reset(o_string *o)
804{
805 o->length = 0;
806 o->nonnull = 0;
807 if (o->data != NULL) *o->data = '\0';
808}
809
810static void b_free(o_string *o)
811{
812 b_reset(o);
813 if (o->data != NULL) free(o->data);
814 o->data = NULL;
815 o->maxlen = 0;
816}
817
818/* My analysis of quoting semantics tells me that state information
819 * is associated with a destination, not a source.
820 */
821static int b_addqchr(o_string *o, int ch, int quote)
822{
823 if (quote && strchr("*?[\\",ch)) {
824 int rc;
825 rc = b_addchr(o, '\\');
826 if (rc) return rc;
827 }
828 return b_addchr(o, ch);
829}
830
831/* belongs in utility.c */
832char *simple_itoa(unsigned int i)
833{
834 /* 21 digits plus null terminator, good for 64-bit or smaller ints */
835 static char local[22];
836 char *p = &local[21];
837 *p-- = '\0';
838 do {
839 *p-- = '0' + i % 10;
840 i /= 10;
841 } while (i > 0);
842 return p + 1;
843}
844
845static int b_adduint(o_string *o, unsigned int i)
846{
847 int r;
848 char *p = simple_itoa(i);
849 /* no escape checking necessary */
850 do r=b_addchr(o, *p++); while (r==0 && *p);
851 return r;
852}
853
854static int static_get(struct in_str *i)
855{
856 int ch=*i->p++;
857 if (ch=='\0') return EOF;
858 return ch;
859}
860
861static int static_peek(struct in_str *i)
862{
863 return *i->p;
864}
865
866static inline void cmdedit_set_initial_prompt(void)
867{
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000868#ifndef CONFIG_FEATURE_SH_FANCY_PROMPT
Eric Andersen25f27032001-04-26 23:22:31 +0000869 PS1 = NULL;
870#else
871 PS1 = getenv("PS1");
872 if(PS1==0)
873 PS1 = "\\w \\$ ";
874#endif
875}
876
877static inline void setup_prompt_string(int promptmode, char **prompt_str)
878{
Eric Andersenaf44a0e2001-04-27 07:26:12 +0000879 debug_printf("setup_prompt_string %d ",promptmode);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000880#ifndef CONFIG_FEATURE_SH_FANCY_PROMPT
Eric Andersen25f27032001-04-26 23:22:31 +0000881 /* Set up the prompt */
882 if (promptmode == 1) {
883 if (PS1)
884 free(PS1);
885 PS1=xmalloc(strlen(cwd)+4);
886 sprintf(PS1, "%s %s", cwd, ( geteuid() != 0 ) ? "$ ":"# ");
887 *prompt_str = PS1;
888 } else {
889 *prompt_str = PS2;
890 }
891#else
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000892 *prompt_str = (promptmode==1)? PS1 : PS2;
Eric Andersenaf44a0e2001-04-27 07:26:12 +0000893#endif
894 debug_printf("result %s\n",*prompt_str);
Eric Andersen25f27032001-04-26 23:22:31 +0000895}
896
897static void get_user_input(struct in_str *i)
898{
899 char *prompt_str;
Eric Andersen088875f2001-04-27 07:49:41 +0000900 static char the_command[BUFSIZ];
Eric Andersen25f27032001-04-26 23:22:31 +0000901
902 setup_prompt_string(i->promptmode, &prompt_str);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000903#ifdef CONFIG_FEATURE_COMMAND_EDITING
Eric Andersen25f27032001-04-26 23:22:31 +0000904 /*
905 ** enable command line editing only while a command line
906 ** is actually being read; otherwise, we'll end up bequeathing
907 ** atexit() handlers and other unwanted stuff to our
908 ** child processes (rob@sysgo.de)
909 */
910 cmdedit_read_input(prompt_str, the_command);
Eric Andersen25f27032001-04-26 23:22:31 +0000911#else
912 fputs(prompt_str, stdout);
913 fflush(stdout);
914 the_command[0]=fgetc(i->file);
915 the_command[1]='\0';
916#endif
Eric Andersen4f6753e2001-05-31 17:17:12 +0000917 fflush(stdout);
Eric Andersen25f27032001-04-26 23:22:31 +0000918 i->p = the_command;
919}
920
921/* This is the magic location that prints prompts
922 * and gets data back from the user */
923static int file_get(struct in_str *i)
924{
925 int ch;
926
927 ch = 0;
928 /* If there is data waiting, eat it up */
929 if (i->p && *i->p) {
930 ch=*i->p++;
931 } else {
932 /* need to double check i->file because we might be doing something
933 * more complicated by now, like sourcing or substituting. */
934 if (i->__promptme && interactive && i->file == stdin) {
Eric Andersen4f6753e2001-05-31 17:17:12 +0000935 while(! i->p || (interactive && strlen(i->p)==0) ) {
936 get_user_input(i);
937 }
Eric Andersen25f27032001-04-26 23:22:31 +0000938 i->promptmode=2;
Eric Andersene67c3ce2001-05-02 02:09:36 +0000939 i->__promptme = 0;
940 if (i->p && *i->p) {
941 ch=*i->p++;
942 }
Eric Andersen4ed5e372001-05-01 01:49:50 +0000943 } else {
Eric Andersene67c3ce2001-05-02 02:09:36 +0000944 ch = fgetc(i->file);
Eric Andersen25f27032001-04-26 23:22:31 +0000945 }
Eric Andersen4ed5e372001-05-01 01:49:50 +0000946
Eric Andersen25f27032001-04-26 23:22:31 +0000947 debug_printf("b_getch: got a %d\n", ch);
948 }
949 if (ch == '\n') i->__promptme=1;
950 return ch;
951}
952
953/* All the callers guarantee this routine will never be
954 * used right after a newline, so prompting is not needed.
955 */
956static int file_peek(struct in_str *i)
957{
958 if (i->p && *i->p) {
959 return *i->p;
960 } else {
Matt Kraaibdd4ece2001-05-23 17:43:00 +0000961 i->peek_buf[0] = fgetc(i->file);
962 i->peek_buf[1] = '\0';
963 i->p = i->peek_buf;
Eric Andersen25f27032001-04-26 23:22:31 +0000964 debug_printf("b_peek: got a %d\n", *i->p);
Matt Kraaibdd4ece2001-05-23 17:43:00 +0000965 return *i->p;
Eric Andersen25f27032001-04-26 23:22:31 +0000966 }
967}
968
969static void setup_file_in_str(struct in_str *i, FILE *f)
970{
971 i->peek = file_peek;
972 i->get = file_get;
973 i->__promptme=1;
974 i->promptmode=1;
975 i->file = f;
976 i->p = NULL;
977}
978
979static void setup_string_in_str(struct in_str *i, const char *s)
980{
981 i->peek = static_peek;
982 i->get = static_get;
983 i->__promptme=1;
984 i->promptmode=1;
985 i->p = s;
986}
987
988static void mark_open(int fd)
989{
990 struct close_me *new = xmalloc(sizeof(struct close_me));
991 new->fd = fd;
992 new->next = close_me_head;
993 close_me_head = new;
994}
995
996static void mark_closed(int fd)
997{
998 struct close_me *tmp;
999 if (close_me_head == NULL || close_me_head->fd != fd)
1000 error_msg_and_die("corrupt close_me");
1001 tmp = close_me_head;
1002 close_me_head = close_me_head->next;
1003 free(tmp);
1004}
1005
Eric Anderseneaecbf32001-10-31 10:41:31 +00001006static void close_all(void)
Eric Andersen25f27032001-04-26 23:22:31 +00001007{
1008 struct close_me *c;
1009 for (c=close_me_head; c; c=c->next) {
1010 close(c->fd);
1011 }
1012 close_me_head = NULL;
1013}
1014
1015/* squirrel != NULL means we squirrel away copies of stdin, stdout,
1016 * and stderr if they are redirected. */
1017static int setup_redirects(struct child_prog *prog, int squirrel[])
1018{
1019 int openfd, mode;
1020 struct redir_struct *redir;
1021
1022 for (redir=prog->redirects; redir; redir=redir->next) {
Eric Andersen817e73c2001-06-06 17:56:09 +00001023 if (redir->dup == -1 && redir->word.gl_pathv == NULL) {
1024 /* something went wrong in the parse. Pretend it didn't happen */
1025 continue;
1026 }
Eric Andersen25f27032001-04-26 23:22:31 +00001027 if (redir->dup == -1) {
1028 mode=redir_table[redir->type].mode;
1029 openfd = open(redir->word.gl_pathv[0], mode, 0666);
1030 if (openfd < 0) {
1031 /* this could get lost if stderr has been redirected, but
1032 bash and ash both lose it as well (though zsh doesn't!) */
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001033 perror_msg("error opening %s", redir->word.gl_pathv[0]);
Eric Andersen25f27032001-04-26 23:22:31 +00001034 return 1;
1035 }
1036 } else {
1037 openfd = redir->dup;
1038 }
1039
1040 if (openfd != redir->fd) {
1041 if (squirrel && redir->fd < 3) {
1042 squirrel[redir->fd] = dup(redir->fd);
1043 }
Eric Andersen83a2ae22001-05-07 17:59:25 +00001044 if (openfd == -3) {
1045 close(openfd);
1046 } else {
1047 dup2(openfd, redir->fd);
Matt Kraaic616e532001-06-05 16:50:08 +00001048 if (redir->dup == -1)
1049 close (openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00001050 }
Eric Andersen25f27032001-04-26 23:22:31 +00001051 }
1052 }
1053 return 0;
1054}
1055
1056static void restore_redirects(int squirrel[])
1057{
1058 int i, fd;
1059 for (i=0; i<3; i++) {
1060 fd = squirrel[i];
1061 if (fd != -1) {
1062 /* No error checking. I sure wouldn't know what
1063 * to do with an error if I found one! */
1064 dup2(fd, i);
1065 close(fd);
1066 }
1067 }
1068}
1069
Eric Andersenada18ff2001-05-21 16:18:22 +00001070/* never returns */
Eric Andersen94ac2442001-05-22 19:05:18 +00001071/* XXX no exit() here. If you don't exec, use _exit instead.
1072 * The at_exit handlers apparently confuse the calling process,
1073 * in particular stdin handling. Not sure why? */
Eric Andersen25f27032001-04-26 23:22:31 +00001074static void pseudo_exec(struct child_prog *child)
1075{
Eric Andersen78a7c992001-05-15 16:30:25 +00001076 int i, rcode;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001077 char *p;
Eric Andersen25f27032001-04-26 23:22:31 +00001078 struct built_in_command *x;
1079 if (child->argv) {
Eric Andersen78a7c992001-05-15 16:30:25 +00001080 for (i=0; is_assignment(child->argv[i]); i++) {
Eric Andersenada18ff2001-05-21 16:18:22 +00001081 debug_printf("pid %d environment modification: %s\n",getpid(),child->argv[i]);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001082 p = insert_var_value(child->argv[i]);
1083 putenv(strdup(p));
1084 if (p != child->argv[i]) free(p);
Eric Andersen78a7c992001-05-15 16:30:25 +00001085 }
1086 child->argv+=i; /* XXX this hack isn't so horrible, since we are about
1087 to exit, and therefore don't need to keep data
1088 structures consistent for free() use. */
1089 /* If a variable is assigned in a forest, and nobody listens,
1090 * was it ever really set?
1091 */
Eric Andersen94ac2442001-05-22 19:05:18 +00001092 if (child->argv[0] == NULL) {
1093 _exit(EXIT_SUCCESS);
1094 }
Eric Andersen78a7c992001-05-15 16:30:25 +00001095
Eric Andersen25f27032001-04-26 23:22:31 +00001096 /*
1097 * Check if the command matches any of the builtins.
1098 * Depending on context, this might be redundant. But it's
1099 * easier to waste a few CPU cycles than it is to figure out
1100 * if this is one of those cases.
1101 */
1102 for (x = bltins; x->cmd; x++) {
1103 if (strcmp(child->argv[0], x->cmd) == 0 ) {
1104 debug_printf("builtin exec %s\n", child->argv[0]);
Eric Andersen57e6a492001-05-22 22:34:51 +00001105 rcode = x->function(child);
1106 fflush(stdout);
1107 _exit(rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00001108 }
1109 }
Eric Andersenaac75e52001-04-30 18:18:45 +00001110
1111 /* Check if the command matches any busybox internal commands
1112 * ("applets") here.
1113 * FIXME: This feature is not 100% safe, since
1114 * BusyBox is not fully reentrant, so we have no guarantee the things
1115 * from the .bss are still zeroed, or that things from .data are still
1116 * at their defaults. We could exec ourself from /proc/self/exe, but I
1117 * really dislike relying on /proc for things. We could exec ourself
1118 * from global_argv[0], but if we are in a chroot, we may not be able
1119 * to find ourself... */
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001120#ifdef CONFIG_FEATURE_SH_STANDALONE_SHELL
Eric Andersenaac75e52001-04-30 18:18:45 +00001121 {
1122 int argc_l;
1123 char** argv_l=child->argv;
1124 char *name = child->argv[0];
1125
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001126#ifdef CONFIG_FEATURE_SH_APPLETS_ALWAYS_WIN
Eric Andersenaac75e52001-04-30 18:18:45 +00001127 /* Following discussions from November 2000 on the busybox mailing
1128 * list, the default configuration, (without
1129 * get_last_path_component()) lets the user force use of an
1130 * external command by specifying the full (with slashes) filename.
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001131 * If you enable CONFIG_FEATURE_SH_APPLETS_ALWAYS_WIN, then applets
Eric Andersenaac75e52001-04-30 18:18:45 +00001132 * _aways_ override external commands, so if you want to run
1133 * /bin/cat, it will use BusyBox cat even if /bin/cat exists on the
1134 * filesystem and is _not_ busybox. Some systems may want this,
1135 * most do not. */
1136 name = get_last_path_component(name);
1137#endif
1138 /* Count argc for use in a second... */
1139 for(argc_l=0;*argv_l!=NULL; argv_l++, argc_l++);
1140 optind = 1;
1141 debug_printf("running applet %s\n", name);
1142 run_applet_by_name(name, argc_l, child->argv);
Eric Andersenaac75e52001-04-30 18:18:45 +00001143 }
1144#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001145 debug_printf("exec of %s\n",child->argv[0]);
1146 execvp(child->argv[0],child->argv);
Eric Andersenada18ff2001-05-21 16:18:22 +00001147 perror_msg("couldn't exec: %s",child->argv[0]);
Eric Andersen94ac2442001-05-22 19:05:18 +00001148 _exit(1);
Eric Andersen25f27032001-04-26 23:22:31 +00001149 } else if (child->group) {
1150 debug_printf("runtime nesting to group\n");
1151 interactive=0; /* crucial!!!! */
1152 rcode = run_list_real(child->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00001153 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00001154 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00001155 _exit(rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00001156 } else {
1157 /* Can happen. See what bash does with ">foo" by itself. */
1158 debug_printf("trying to pseudo_exec null command\n");
Eric Andersen94ac2442001-05-22 19:05:18 +00001159 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00001160 }
1161}
1162
Eric Andersenbafd94f2001-05-02 16:11:59 +00001163static void insert_bg_job(struct pipe *pi)
1164{
1165 struct pipe *thejob;
1166
1167 /* Linear search for the ID of the job to use */
1168 pi->jobid = 1;
Eric Andersenc798b072001-06-22 06:23:03 +00001169 for (thejob = job_list; thejob; thejob = thejob->next)
Eric Andersenbafd94f2001-05-02 16:11:59 +00001170 if (thejob->jobid >= pi->jobid)
1171 pi->jobid = thejob->jobid + 1;
1172
1173 /* add thejob to the list of running jobs */
Eric Andersenc798b072001-06-22 06:23:03 +00001174 if (!job_list) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001175 thejob = job_list = xmalloc(sizeof(*thejob));
Eric Andersenbafd94f2001-05-02 16:11:59 +00001176 } else {
Eric Andersenc798b072001-06-22 06:23:03 +00001177 for (thejob = job_list; thejob->next; thejob = thejob->next) /* nothing */;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001178 thejob->next = xmalloc(sizeof(*thejob));
1179 thejob = thejob->next;
1180 }
1181
1182 /* physically copy the struct job */
Eric Andersen0fcd4472001-05-02 20:12:03 +00001183 memcpy(thejob, pi, sizeof(struct pipe));
Eric Andersenbafd94f2001-05-02 16:11:59 +00001184 thejob->next = NULL;
1185 thejob->running_progs = thejob->num_progs;
1186 thejob->stopped_progs = 0;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001187 thejob->text = xmalloc(BUFSIZ); /* cmdedit buffer size */
Eric Andersen1a6d39b2001-05-08 05:11:54 +00001188
1189 //if (pi->progs[0] && pi->progs[0].argv && pi->progs[0].argv[0])
1190 {
1191 char *bar=thejob->text;
1192 char **foo=pi->progs[0].argv;
1193 while(foo && *foo) {
1194 bar += sprintf(bar, "%s ", *foo++);
1195 }
1196 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00001197
1198 /* we don't wait for background thejobs to return -- append it
1199 to the list of backgrounded thejobs and leave it alone */
Eric Andersen1a6d39b2001-05-08 05:11:54 +00001200 printf("[%d] %d\n", thejob->jobid, thejob->progs[0].pid);
1201 last_bg_pid = thejob->progs[0].pid;
Eric Andersenc798b072001-06-22 06:23:03 +00001202 last_jobid = thejob->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001203}
1204
Eric Andersenc798b072001-06-22 06:23:03 +00001205/* remove a backgrounded job */
Eric Andersenbafd94f2001-05-02 16:11:59 +00001206static void remove_bg_job(struct pipe *pi)
1207{
1208 struct pipe *prev_pipe;
1209
Eric Andersenc798b072001-06-22 06:23:03 +00001210 if (pi == job_list) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001211 job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001212 } else {
Eric Andersenc798b072001-06-22 06:23:03 +00001213 prev_pipe = job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001214 while (prev_pipe->next != pi)
1215 prev_pipe = prev_pipe->next;
1216 prev_pipe->next = pi->next;
1217 }
Eric Andersen028b65b2001-06-28 01:10:11 +00001218 if (job_list)
1219 last_jobid = job_list->jobid;
1220 else
1221 last_jobid = 0;
1222
Eric Andersen52a97ca2001-06-22 06:49:26 +00001223 pi->stopped_progs = 0;
Eric Andersenbf7df042001-05-23 22:18:35 +00001224 free_pipe(pi, 0);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001225 free(pi);
1226}
1227
Eric Andersenc798b072001-06-22 06:23:03 +00001228/* Checks to see if any processes have exited -- if they
Eric Andersenbafd94f2001-05-02 16:11:59 +00001229 have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00001230static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00001231{
Eric Andersenc798b072001-06-22 06:23:03 +00001232 int attributes;
1233 int status;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001234 int prognum = 0;
1235 struct pipe *pi;
1236 pid_t childpid;
1237
Eric Andersenc798b072001-06-22 06:23:03 +00001238 attributes = WUNTRACED;
1239 if (fg_pipe==NULL) {
1240 attributes |= WNOHANG;
1241 }
1242
1243 while ((childpid = waitpid(-1, &status, attributes)) > 0) {
1244 if (fg_pipe) {
1245 int i, rcode = 0;
1246 for (i=0; i < fg_pipe->num_progs; i++) {
1247 if (fg_pipe->progs[i].pid == childpid) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001248 if (i==fg_pipe->num_progs-1)
Eric Andersenc798b072001-06-22 06:23:03 +00001249 rcode=WEXITSTATUS(status);
1250 (fg_pipe->num_progs)--;
1251 return(rcode);
1252 }
1253 }
1254 }
1255
1256 for (pi = job_list; pi; pi = pi->next) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00001257 prognum = 0;
Eric Andersen52a97ca2001-06-22 06:49:26 +00001258 while (prognum < pi->num_progs && pi->progs[prognum].pid != childpid) {
1259 prognum++;
1260 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00001261 if (prognum < pi->num_progs)
1262 break;
1263 }
1264
Eric Andersen99785762001-05-22 21:37:48 +00001265 if(pi==NULL) {
1266 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
1267 continue;
1268 }
Eric Andersenaeb44c42001-05-22 20:29:00 +00001269
Eric Andersenbafd94f2001-05-02 16:11:59 +00001270 if (WIFEXITED(status) || WIFSIGNALED(status)) {
1271 /* child exited */
1272 pi->running_progs--;
1273 pi->progs[prognum].pid = 0;
1274
1275 if (!pi->running_progs) {
1276 printf(JOB_STATUS_FORMAT, pi->jobid, "Done", pi->text);
1277 remove_bg_job(pi);
1278 }
1279 } else {
1280 /* child stopped */
1281 pi->stopped_progs++;
1282 pi->progs[prognum].is_stopped = 1;
1283
Eric Andersen52a97ca2001-06-22 06:49:26 +00001284#if 0
1285 /* Printing this stuff is a pain, since it tends to
1286 * overwrite the prompt an inconveinient moments. So
1287 * don't do that. */
Eric Andersenbafd94f2001-05-02 16:11:59 +00001288 if (pi->stopped_progs == pi->num_progs) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001289 printf("\n"JOB_STATUS_FORMAT, pi->jobid, "Stopped", pi->text);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001290 }
Eric Andersen52a97ca2001-06-22 06:49:26 +00001291#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00001292 }
1293 }
1294
Matt Kraai80abc452001-05-02 21:48:17 +00001295 if (childpid == -1 && errno != ECHILD)
1296 perror_msg("waitpid");
1297
Eric Andersenbafd94f2001-05-02 16:11:59 +00001298 /* move the shell to the foreground */
Eric Andersen028b65b2001-06-28 01:10:11 +00001299 //if (interactive && tcsetpgrp(shell_terminal, getpgid(0)))
1300 // perror_msg("tcsetpgrp-2");
Eric Andersenc798b072001-06-22 06:23:03 +00001301 return -1;
Eric Andersenada18ff2001-05-21 16:18:22 +00001302}
1303
1304/* Figure out our controlling tty, checking in order stderr,
1305 * stdin, and stdout. If check_pgrp is set, also check that
1306 * we belong to the foreground process group associated with
Eric Andersen6c947d22001-06-25 22:24:38 +00001307 * that tty. The value of shell_terminal is needed in order to call
1308 * tcsetpgrp(shell_terminal, ...); */
Eric Andersenc798b072001-06-22 06:23:03 +00001309void controlling_tty(int check_pgrp)
Eric Andersenada18ff2001-05-21 16:18:22 +00001310{
1311 pid_t curpgrp;
Eric Andersenada18ff2001-05-21 16:18:22 +00001312
Eric Andersen6c947d22001-06-25 22:24:38 +00001313 if ((curpgrp = tcgetpgrp(shell_terminal = 2)) < 0
1314 && (curpgrp = tcgetpgrp(shell_terminal = 0)) < 0
1315 && (curpgrp = tcgetpgrp(shell_terminal = 1)) < 0)
1316 goto shell_terminal_error;
Eric Andersenada18ff2001-05-21 16:18:22 +00001317
Eric Andersenc798b072001-06-22 06:23:03 +00001318 if (check_pgrp && curpgrp != getpgid(0))
Eric Andersen6c947d22001-06-25 22:24:38 +00001319 goto shell_terminal_error;
Eric Andersenada18ff2001-05-21 16:18:22 +00001320
Eric Andersenc798b072001-06-22 06:23:03 +00001321 return;
1322
Eric Andersen6c947d22001-06-25 22:24:38 +00001323shell_terminal_error:
1324 shell_terminal = -1;
Eric Andersenc798b072001-06-22 06:23:03 +00001325 return;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001326}
1327
Eric Andersen25f27032001-04-26 23:22:31 +00001328/* run_pipe_real() starts all the jobs, but doesn't wait for anything
Eric Andersenc798b072001-06-22 06:23:03 +00001329 * to finish. See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00001330 *
1331 * return code is normally -1, when the caller has to wait for children
1332 * to finish to determine the exit status of the pipe. If the pipe
1333 * is a simple builtin command, however, the action is done by the
1334 * time run_pipe_real returns, and the exit code is provided as the
1335 * return value.
1336 *
1337 * The input of the pipe is always stdin, the output is always
1338 * stdout. The outpipe[] mechanism in BusyBox-0.48 lash is bogus,
1339 * because it tries to avoid running the command substitution in
1340 * subshell, when that is in fact necessary. The subshell process
1341 * now has its stdout directed to the input of the appropriate pipe,
1342 * so this routine is noticeably simpler.
1343 */
1344static int run_pipe_real(struct pipe *pi)
1345{
1346 int i;
1347 int nextin, nextout;
1348 int pipefds[2]; /* pipefds[0] is for reading */
1349 struct child_prog *child;
1350 struct built_in_command *x;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001351 char *p;
Eric Andersen25f27032001-04-26 23:22:31 +00001352
1353 nextin = 0;
Eric Andersenada18ff2001-05-21 16:18:22 +00001354 pi->pgrp = -1;
Eric Andersen25f27032001-04-26 23:22:31 +00001355
1356 /* Check if this is a simple builtin (not part of a pipe).
1357 * Builtins within pipes have to fork anyway, and are handled in
1358 * pseudo_exec. "echo foo | read bar" doesn't work on bash, either.
1359 */
Eric Andersen04407e52001-06-07 16:42:05 +00001360 if (pi->num_progs == 1) child = & (pi->progs[0]);
1361 if (pi->num_progs == 1 && child->group && child->subshell == 0) {
1362 int squirrel[] = {-1, -1, -1};
1363 int rcode;
1364 debug_printf("non-subshell grouping\n");
1365 setup_redirects(child, squirrel);
1366 /* XXX could we merge code with following builtin case,
1367 * by creating a pseudo builtin that calls run_list_real? */
1368 rcode = run_list_real(child->group);
1369 restore_redirects(squirrel);
1370 return rcode;
1371 } else if (pi->num_progs == 1 && pi->progs[0].argv != NULL) {
Eric Andersen78a7c992001-05-15 16:30:25 +00001372 for (i=0; is_assignment(child->argv[i]); i++) { /* nothing */ }
1373 if (i!=0 && child->argv[i]==NULL) {
1374 /* assignments, but no command: set the local environment */
1375 for (i=0; child->argv[i]!=NULL; i++) {
Eric Andersen99785762001-05-22 21:37:48 +00001376
1377 /* Ok, this case is tricky. We have to decide if this is a
1378 * local variable, or an already exported variable. If it is
1379 * already exported, we have to export the new value. If it is
1380 * not exported, we need only set this as a local variable.
1381 * This junk is all to decide whether or not to export this
1382 * variable. */
1383 int export_me=0;
1384 char *name, *value;
Eric Andersen04407e52001-06-07 16:42:05 +00001385 name = xstrdup(child->argv[i]);
1386 debug_printf("Local environment set: %s\n", name);
Eric Andersen99785762001-05-22 21:37:48 +00001387 value = strchr(name, '=');
1388 if (value)
1389 *value=0;
1390 if ( get_local_var(name)) {
1391 export_me=1;
1392 }
1393 free(name);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001394 p = insert_var_value(child->argv[i]);
1395 set_local_var(p, export_me);
1396 if (p != child->argv[i]) free(p);
Eric Andersen78a7c992001-05-15 16:30:25 +00001397 }
1398 return EXIT_SUCCESS; /* don't worry about errors in set_local_var() yet */
1399 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001400 for (i = 0; is_assignment(child->argv[i]); i++) {
1401 p = insert_var_value(child->argv[i]);
1402 putenv(strdup(p));
1403 if (p != child->argv[i]) {
1404 child->sp--;
1405 free(p);
1406 }
1407 }
1408 if (child->sp) {
1409 char * str = NULL;
1410
1411 str = make_string((child->argv + i));
1412 parse_string_outer(str, FLAG_EXIT_FROM_LOOP | FLAG_REPARSING);
1413 free(str);
1414 return last_return_code;
1415 }
Eric Andersen25f27032001-04-26 23:22:31 +00001416 for (x = bltins; x->cmd; x++) {
Eric Andersen78a7c992001-05-15 16:30:25 +00001417 if (strcmp(child->argv[i], x->cmd) == 0 ) {
Eric Andersen25f27032001-04-26 23:22:31 +00001418 int squirrel[] = {-1, -1, -1};
1419 int rcode;
Eric Andersen78a7c992001-05-15 16:30:25 +00001420 if (x->function == builtin_exec && child->argv[i+1]==NULL) {
Eric Andersen83a2ae22001-05-07 17:59:25 +00001421 debug_printf("magic exec\n");
1422 setup_redirects(child,NULL);
1423 return EXIT_SUCCESS;
1424 }
Eric Andersen25f27032001-04-26 23:22:31 +00001425 debug_printf("builtin inline %s\n", child->argv[0]);
1426 /* XXX setup_redirects acts on file descriptors, not FILEs.
1427 * This is perfect for work that comes after exec().
1428 * Is it really safe for inline use? Experimentally,
1429 * things seem to work with glibc. */
1430 setup_redirects(child, squirrel);
Eric Andersen78a7c992001-05-15 16:30:25 +00001431 child->argv+=i; /* XXX horrible hack */
Eric Andersen25f27032001-04-26 23:22:31 +00001432 rcode = x->function(child);
Eric Andersen78a7c992001-05-15 16:30:25 +00001433 child->argv-=i; /* XXX restore hack so free() can work right */
Eric Andersen25f27032001-04-26 23:22:31 +00001434 restore_redirects(squirrel);
1435 return rcode;
1436 }
1437 }
1438 }
1439
1440 for (i = 0; i < pi->num_progs; i++) {
1441 child = & (pi->progs[i]);
1442
1443 /* pipes are inserted between pairs of commands */
1444 if ((i + 1) < pi->num_progs) {
1445 if (pipe(pipefds)<0) perror_msg_and_die("pipe");
1446 nextout = pipefds[1];
1447 } else {
1448 nextout=1;
1449 pipefds[0] = -1;
1450 }
1451
1452 /* XXX test for failed fork()? */
Eric Andersen72f9a422001-10-28 05:12:20 +00001453#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
1454 if (!(child->pid = fork()))
1455#else
1456 if (!(child->pid = vfork()))
1457#endif
1458 {
Eric Andersen6c947d22001-06-25 22:24:38 +00001459 /* Set the handling for job control signals back to the default. */
1460 signal(SIGINT, SIG_DFL);
1461 signal(SIGQUIT, SIG_DFL);
Eric Andersen7467c8d2001-07-12 20:26:32 +00001462 signal(SIGTERM, SIG_DFL);
Eric Andersen6c947d22001-06-25 22:24:38 +00001463 signal(SIGTSTP, SIG_DFL);
1464 signal(SIGTTIN, SIG_DFL);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001465 signal(SIGTTOU, SIG_DFL);
Eric Andersen6c947d22001-06-25 22:24:38 +00001466 signal(SIGCHLD, SIG_DFL);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001467
Eric Andersen25f27032001-04-26 23:22:31 +00001468 close_all();
1469
1470 if (nextin != 0) {
1471 dup2(nextin, 0);
1472 close(nextin);
1473 }
1474 if (nextout != 1) {
1475 dup2(nextout, 1);
1476 close(nextout);
1477 }
1478 if (pipefds[0]!=-1) {
1479 close(pipefds[0]); /* opposite end of our output pipe */
1480 }
1481
1482 /* Like bash, explicit redirects override pipes,
1483 * and the pipe fd is available for dup'ing. */
1484 setup_redirects(child,NULL);
Eric Andersen52a97ca2001-06-22 06:49:26 +00001485
Eric Andersenada18ff2001-05-21 16:18:22 +00001486 if (interactive && pi->followup!=PIPE_BG) {
Eric Andersenbfae2522001-05-17 00:14:27 +00001487 /* If we (the child) win the race, put ourselves in the process
1488 * group whose leader is the first process in this pipe. */
Eric Andersen0fcd4472001-05-02 20:12:03 +00001489 if (pi->pgrp < 0) {
Eric Andersenada18ff2001-05-21 16:18:22 +00001490 pi->pgrp = getpid();
Eric Andersen0fcd4472001-05-02 20:12:03 +00001491 }
Eric Andersen0fcd4472001-05-02 20:12:03 +00001492 if (setpgid(0, pi->pgrp) == 0) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001493 tcsetpgrp(2, pi->pgrp);
Eric Andersen0fcd4472001-05-02 20:12:03 +00001494 }
1495 }
Eric Andersen25f27032001-04-26 23:22:31 +00001496
1497 pseudo_exec(child);
1498 }
Eric Andersen52a97ca2001-06-22 06:49:26 +00001499
1500
1501 /* put our child in the process group whose leader is the
1502 first process in this pipe */
Eric Andersen0fcd4472001-05-02 20:12:03 +00001503 if (pi->pgrp < 0) {
1504 pi->pgrp = child->pid;
Eric Andersen25f27032001-04-26 23:22:31 +00001505 }
Eric Andersen0fcd4472001-05-02 20:12:03 +00001506 /* Don't check for errors. The child may be dead already,
1507 * in which case setpgid returns error code EACCES. */
1508 setpgid(child->pid, pi->pgrp);
1509
Eric Andersen25f27032001-04-26 23:22:31 +00001510 if (nextin != 0)
1511 close(nextin);
1512 if (nextout != 1)
1513 close(nextout);
1514
1515 /* If there isn't another process, nextin is garbage
1516 but it doesn't matter */
1517 nextin = pipefds[0];
1518 }
1519 return -1;
1520}
1521
1522static int run_list_real(struct pipe *pi)
1523{
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001524 char *save_name = NULL;
1525 char **list = NULL;
1526 char **save_list = NULL;
1527 struct pipe *rpipe;
1528 int flag_rep = 0;
1529 int save_num_progs;
1530 int rcode=0, flag_skip=1;
1531 int flag_restore = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00001532 int if_code=0, next_if_code=0; /* need double-buffer to handle elif */
Eric Andersen4ed5e372001-05-01 01:49:50 +00001533 reserved_style rmode, skip_more_in_this_rmode=RES_XXXX;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001534 /* check syntax for "for" */
1535 for (rpipe = pi; rpipe; rpipe = rpipe->next) {
1536 if ((rpipe->r_mode == RES_IN ||
1537 rpipe->r_mode == RES_FOR) &&
1538 (rpipe->next == NULL)) {
1539 syntax();
1540 return 1;
1541 }
1542 if ((rpipe->r_mode == RES_IN &&
1543 (rpipe->next->r_mode == RES_IN &&
1544 rpipe->next->progs->argv != NULL))||
1545 (rpipe->r_mode == RES_FOR &&
1546 rpipe->next->r_mode != RES_IN)) {
1547 syntax();
1548 return 1;
1549 }
1550 }
1551 for (; pi; pi = (flag_restore != 0) ? rpipe : pi->next) {
1552 if (pi->r_mode == RES_WHILE || pi->r_mode == RES_UNTIL ||
1553 pi->r_mode == RES_FOR) {
1554 flag_restore = 0;
1555 if (!rpipe) {
1556 flag_rep = 0;
1557 rpipe = pi;
1558 }
1559 }
Eric Andersen25f27032001-04-26 23:22:31 +00001560 rmode = pi->r_mode;
Eric Andersen4ed5e372001-05-01 01:49:50 +00001561 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);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001562 if (rmode == skip_more_in_this_rmode && flag_skip) {
1563 if (pi->followup == PIPE_SEQ) flag_skip=0;
1564 continue;
1565 }
1566 flag_skip = 1;
Eric Andersen4ed5e372001-05-01 01:49:50 +00001567 skip_more_in_this_rmode = RES_XXXX;
Eric Andersen25f27032001-04-26 23:22:31 +00001568 if (rmode == RES_THEN || rmode == RES_ELSE) if_code = next_if_code;
1569 if (rmode == RES_THEN && if_code) continue;
1570 if (rmode == RES_ELSE && !if_code) continue;
1571 if (rmode == RES_ELIF && !if_code) continue;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001572 if (rmode == RES_FOR && pi->num_progs) {
1573 if (!list) {
1574 /* if no variable values after "in" we skip "for" */
1575 if (!pi->next->progs->argv) continue;
1576 /* create list of variable values */
1577 list = make_list_in(pi->next->progs->argv,
1578 pi->progs->argv[0]);
1579 save_list = list;
1580 save_name = pi->progs->argv[0];
1581 pi->progs->argv[0] = NULL;
1582 flag_rep = 1;
1583 }
1584 if (!(*list)) {
1585 free(pi->progs->argv[0]);
1586 free(save_list);
1587 list = NULL;
1588 flag_rep = 0;
1589 pi->progs->argv[0] = save_name;
1590 pi->progs->glob_result.gl_pathv[0] =
1591 pi->progs->argv[0];
1592 continue;
1593 } else {
1594 /* insert new value from list for variable */
1595 if (pi->progs->argv[0])
1596 free(pi->progs->argv[0]);
1597 pi->progs->argv[0] = *list++;
1598 pi->progs->glob_result.gl_pathv[0] =
1599 pi->progs->argv[0];
1600 }
1601 }
1602 if (rmode == RES_IN) continue;
1603 if (rmode == RES_DO) {
1604 if (!flag_rep) continue;
1605 }
1606 if ((rmode == RES_DONE)) {
1607 if (flag_rep) {
1608 flag_restore = 1;
1609 } else {
1610 rpipe = NULL;
1611 }
1612 }
Eric Andersen4ed5e372001-05-01 01:49:50 +00001613 if (pi->num_progs == 0) continue;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001614 save_num_progs = pi->num_progs; /* save number of programs */
Eric Andersen25f27032001-04-26 23:22:31 +00001615 rcode = run_pipe_real(pi);
Eric Andersen04407e52001-06-07 16:42:05 +00001616 debug_printf("run_pipe_real returned %d\n",rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00001617 if (rcode!=-1) {
1618 /* We only ran a builtin: rcode was set by the return value
1619 * of run_pipe_real(), and we don't need to wait for anything. */
1620 } else if (pi->followup==PIPE_BG) {
1621 /* XXX check bash's behavior with nontrivial pipes */
1622 /* XXX compute jobid */
1623 /* XXX what does bash do with attempts to background builtins? */
Eric Andersenbafd94f2001-05-02 16:11:59 +00001624 insert_bg_job(pi);
Eric Andersen25f27032001-04-26 23:22:31 +00001625 rcode = EXIT_SUCCESS;
1626 } else {
1627 if (interactive) {
1628 /* move the new process group into the foreground */
Eric Andersen6c947d22001-06-25 22:24:38 +00001629 if (tcsetpgrp(shell_terminal, pi->pgrp) && errno != ENOTTY)
Eric Andersenada18ff2001-05-21 16:18:22 +00001630 perror_msg("tcsetpgrp-3");
Eric Andersenc798b072001-06-22 06:23:03 +00001631 rcode = checkjobs(pi);
Eric Andersen52a97ca2001-06-22 06:49:26 +00001632 /* move the shell to the foreground */
Eric Andersen6c947d22001-06-25 22:24:38 +00001633 if (tcsetpgrp(shell_terminal, getpgid(0)) && errno != ENOTTY)
Eric Andersenada18ff2001-05-21 16:18:22 +00001634 perror_msg("tcsetpgrp-4");
Eric Andersen25f27032001-04-26 23:22:31 +00001635 } else {
Eric Andersenc798b072001-06-22 06:23:03 +00001636 rcode = checkjobs(pi);
Eric Andersen25f27032001-04-26 23:22:31 +00001637 }
Eric Andersen52a97ca2001-06-22 06:49:26 +00001638 debug_printf("checkjobs returned %d\n",rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00001639 }
1640 last_return_code=rcode;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001641 pi->num_progs = save_num_progs; /* restore number of programs */
Eric Andersen25f27032001-04-26 23:22:31 +00001642 if ( rmode == RES_IF || rmode == RES_ELIF )
1643 next_if_code=rcode; /* can be overwritten a number of times */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001644 if (rmode == RES_WHILE)
1645 flag_rep = !last_return_code;
1646 if (rmode == RES_UNTIL)
1647 flag_rep = last_return_code;
Eric Andersen25f27032001-04-26 23:22:31 +00001648 if ( (rcode==EXIT_SUCCESS && pi->followup==PIPE_OR) ||
1649 (rcode!=EXIT_SUCCESS && pi->followup==PIPE_AND) )
Eric Andersen4ed5e372001-05-01 01:49:50 +00001650 skip_more_in_this_rmode=rmode;
Eric Andersen028b65b2001-06-28 01:10:11 +00001651 checkjobs(NULL);
Eric Andersen25f27032001-04-26 23:22:31 +00001652 }
1653 return rcode;
1654}
1655
1656/* broken, of course, but OK for testing */
1657static char *indenter(int i)
1658{
1659 static char blanks[]=" ";
1660 return &blanks[sizeof(blanks)-i-1];
1661}
1662
1663/* return code is the exit status of the pipe */
Eric Andersenbf7df042001-05-23 22:18:35 +00001664static int free_pipe(struct pipe *pi, int indent)
Eric Andersen25f27032001-04-26 23:22:31 +00001665{
1666 char **p;
1667 struct child_prog *child;
1668 struct redir_struct *r, *rnext;
1669 int a, i, ret_code=0;
1670 char *ind = indenter(indent);
Eric Andersen52a97ca2001-06-22 06:49:26 +00001671
1672 if (pi->stopped_progs > 0)
1673 return ret_code;
Eric Andersen25f27032001-04-26 23:22:31 +00001674 final_printf("%s run pipe: (pid %d)\n",ind,getpid());
1675 for (i=0; i<pi->num_progs; i++) {
1676 child = &pi->progs[i];
1677 final_printf("%s command %d:\n",ind,i);
1678 if (child->argv) {
1679 for (a=0,p=child->argv; *p; a++,p++) {
1680 final_printf("%s argv[%d] = %s\n",ind,a,*p);
1681 }
1682 globfree(&child->glob_result);
1683 child->argv=NULL;
1684 } else if (child->group) {
1685 final_printf("%s begin group (subshell:%d)\n",ind, child->subshell);
Eric Andersenbf7df042001-05-23 22:18:35 +00001686 ret_code = free_pipe_list(child->group,indent+3);
Eric Andersen25f27032001-04-26 23:22:31 +00001687 final_printf("%s end group\n",ind);
1688 } else {
1689 final_printf("%s (nil)\n",ind);
1690 }
1691 for (r=child->redirects; r; r=rnext) {
1692 final_printf("%s redirect %d%s", ind, r->fd, redir_table[r->type].descrip);
1693 if (r->dup == -1) {
Eric Andersen817e73c2001-06-06 17:56:09 +00001694 /* guard against the case >$FOO, where foo is unset or blank */
1695 if (r->word.gl_pathv) {
1696 final_printf(" %s\n", *r->word.gl_pathv);
1697 globfree(&r->word);
1698 }
Eric Andersen25f27032001-04-26 23:22:31 +00001699 } else {
1700 final_printf("&%d\n", r->dup);
1701 }
1702 rnext=r->next;
1703 free(r);
1704 }
1705 child->redirects=NULL;
1706 }
1707 free(pi->progs); /* children are an array, they get freed all at once */
1708 pi->progs=NULL;
1709 return ret_code;
1710}
1711
Eric Andersenbf7df042001-05-23 22:18:35 +00001712static int free_pipe_list(struct pipe *head, int indent)
Eric Andersen25f27032001-04-26 23:22:31 +00001713{
1714 int rcode=0; /* if list has no members */
1715 struct pipe *pi, *next;
1716 char *ind = indenter(indent);
1717 for (pi=head; pi; pi=next) {
Eric Andersen25f27032001-04-26 23:22:31 +00001718 final_printf("%s pipe reserved mode %d\n", ind, pi->r_mode);
Eric Andersenbf7df042001-05-23 22:18:35 +00001719 rcode = free_pipe(pi, indent);
Eric Andersen25f27032001-04-26 23:22:31 +00001720 final_printf("%s pipe followup code %d\n", ind, pi->followup);
1721 next=pi->next;
1722 pi->next=NULL;
1723 free(pi);
1724 }
1725 return rcode;
1726}
1727
1728/* Select which version we will use */
1729static int run_list(struct pipe *pi)
1730{
1731 int rcode=0;
1732 if (fake_mode==0) {
1733 rcode = run_list_real(pi);
1734 }
Eric Andersenbf7df042001-05-23 22:18:35 +00001735 /* free_pipe_list has the side effect of clearing memory
Eric Andersen25f27032001-04-26 23:22:31 +00001736 * In the long run that function can be merged with run_list_real,
1737 * but doing that now would hobble the debugging effort. */
Eric Andersenbf7df042001-05-23 22:18:35 +00001738 free_pipe_list(pi,0);
Eric Andersen25f27032001-04-26 23:22:31 +00001739 return rcode;
1740}
1741
1742/* The API for glob is arguably broken. This routine pushes a non-matching
1743 * string into the output structure, removing non-backslashed backslashes.
1744 * If someone can prove me wrong, by performing this function within the
1745 * original glob(3) api, feel free to rewrite this routine into oblivion.
1746 * Return code (0 vs. GLOB_NOSPACE) matches glob(3).
1747 * XXX broken if the last character is '\\', check that before calling.
1748 */
1749static int globhack(const char *src, int flags, glob_t *pglob)
1750{
Eric Andersen817e73c2001-06-06 17:56:09 +00001751 int cnt=0, pathc;
Eric Andersen25f27032001-04-26 23:22:31 +00001752 const char *s;
1753 char *dest;
Eric Andersen817e73c2001-06-06 17:56:09 +00001754 for (cnt=1, s=src; s && *s; s++) {
Eric Andersen25f27032001-04-26 23:22:31 +00001755 if (*s == '\\') s++;
1756 cnt++;
1757 }
1758 dest = malloc(cnt);
1759 if (!dest) return GLOB_NOSPACE;
1760 if (!(flags & GLOB_APPEND)) {
1761 pglob->gl_pathv=NULL;
1762 pglob->gl_pathc=0;
1763 pglob->gl_offs=0;
1764 pglob->gl_offs=0;
1765 }
1766 pathc = ++pglob->gl_pathc;
1767 pglob->gl_pathv = realloc(pglob->gl_pathv, (pathc+1)*sizeof(*pglob->gl_pathv));
1768 if (pglob->gl_pathv == NULL) return GLOB_NOSPACE;
1769 pglob->gl_pathv[pathc-1]=dest;
1770 pglob->gl_pathv[pathc]=NULL;
Eric Andersen817e73c2001-06-06 17:56:09 +00001771 for (s=src; s && *s; s++, dest++) {
Eric Andersen25f27032001-04-26 23:22:31 +00001772 if (*s == '\\') s++;
1773 *dest = *s;
1774 }
1775 *dest='\0';
1776 return 0;
1777}
1778
1779/* XXX broken if the last character is '\\', check that before calling */
1780static int glob_needed(const char *s)
1781{
1782 for (; *s; s++) {
1783 if (*s == '\\') s++;
1784 if (strchr("*[?",*s)) return 1;
1785 }
1786 return 0;
1787}
1788
1789#if 0
1790static void globprint(glob_t *pglob)
1791{
1792 int i;
1793 debug_printf("glob_t at %p:\n", pglob);
1794 debug_printf(" gl_pathc=%d gl_pathv=%p gl_offs=%d gl_flags=%d\n",
1795 pglob->gl_pathc, pglob->gl_pathv, pglob->gl_offs, pglob->gl_flags);
1796 for (i=0; i<pglob->gl_pathc; i++)
1797 debug_printf("pglob->gl_pathv[%d] = %p = %s\n", i,
1798 pglob->gl_pathv[i], pglob->gl_pathv[i]);
1799}
1800#endif
1801
1802static int xglob(o_string *dest, int flags, glob_t *pglob)
1803{
1804 int gr;
1805
1806 /* short-circuit for null word */
1807 /* we can code this better when the debug_printf's are gone */
1808 if (dest->length == 0) {
1809 if (dest->nonnull) {
1810 /* bash man page calls this an "explicit" null */
1811 gr = globhack(dest->data, flags, pglob);
1812 debug_printf("globhack returned %d\n",gr);
1813 } else {
1814 return 0;
1815 }
1816 } else if (glob_needed(dest->data)) {
1817 gr = glob(dest->data, flags, NULL, pglob);
1818 debug_printf("glob returned %d\n",gr);
1819 if (gr == GLOB_NOMATCH) {
1820 /* quote removal, or more accurately, backslash removal */
1821 gr = globhack(dest->data, flags, pglob);
1822 debug_printf("globhack returned %d\n",gr);
1823 }
1824 } else {
1825 gr = globhack(dest->data, flags, pglob);
1826 debug_printf("globhack returned %d\n",gr);
1827 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001828 if (gr == GLOB_NOSPACE)
1829 error_msg_and_die("out of memory during glob");
Eric Andersen25f27032001-04-26 23:22:31 +00001830 if (gr != 0) { /* GLOB_ABORTED ? */
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001831 error_msg("glob(3) error %d",gr);
Eric Andersen25f27032001-04-26 23:22:31 +00001832 }
1833 /* globprint(glob_target); */
1834 return gr;
1835}
1836
Eric Andersenf72f5622001-05-15 23:21:41 +00001837/* This is used to get/check local shell variables */
1838static char *get_local_var(const char *s)
1839{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001840 struct variables *cur;
Eric Andersenf72f5622001-05-15 23:21:41 +00001841
1842 if (!s)
1843 return NULL;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001844 for (cur = top_vars; cur; cur=cur->next)
1845 if(strcmp(cur->name, s)==0)
1846 return cur->value;
Eric Andersenf72f5622001-05-15 23:21:41 +00001847 return NULL;
1848}
1849
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001850/* This is used to set local shell variables
1851 flg_export==0 if only local (not exporting) variable
1852 flg_export==1 if "new" exporting environ
1853 flg_export>1 if current startup environ (not call putenv()) */
1854static int set_local_var(const char *s, int flg_export)
Eric Andersen78a7c992001-05-15 16:30:25 +00001855{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001856 char *name, *value;
Eric Andersen20a69a72001-05-15 17:24:44 +00001857 int result=0;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001858 struct variables *cur;
Eric Andersen20a69a72001-05-15 17:24:44 +00001859
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001860 name=strdup(s);
Eric Andersen20a69a72001-05-15 17:24:44 +00001861
1862 /* Assume when we enter this function that we are already in
1863 * NAME=VALUE format. So the first order of business is to
1864 * split 's' on the '=' into 'name' and 'value' */
1865 value = strchr(name, '=');
Eric Andersen99785762001-05-22 21:37:48 +00001866 if (value==0 && ++value==0) {
1867 free(name);
1868 return -1;
1869 }
1870 *value++ = 0;
Eric Andersen20a69a72001-05-15 17:24:44 +00001871
Eric Andersen99785762001-05-22 21:37:48 +00001872 for(cur = top_vars; cur; cur = cur->next) {
1873 if(strcmp(cur->name, name)==0)
1874 break;
1875 }
Eric Andersen20a69a72001-05-15 17:24:44 +00001876
Eric Andersen99785762001-05-22 21:37:48 +00001877 if(cur) {
1878 if(strcmp(cur->value, value)==0) {
1879 if(flg_export>0 && cur->flg_export==0)
1880 cur->flg_export=flg_export;
1881 else
1882 result++;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001883 } else {
Eric Andersen99785762001-05-22 21:37:48 +00001884 if(cur->flg_read_only) {
1885 error_msg("%s: readonly variable", name);
Eric Andersen20a69a72001-05-15 17:24:44 +00001886 result = -1;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001887 } else {
Eric Andersen99785762001-05-22 21:37:48 +00001888 if(flg_export>0 || cur->flg_export>1)
1889 cur->flg_export=1;
1890 free(cur->value);
1891
1892 cur->value = strdup(value);
1893 }
1894 }
1895 } else {
1896 cur = malloc(sizeof(struct variables));
1897 if(!cur) {
1898 result = -1;
1899 } else {
1900 cur->name = strdup(name);
1901 if(cur->name == 0) {
1902 free(cur);
1903 result = -1;
1904 } else {
1905 struct variables *bottom = top_vars;
1906 cur->value = strdup(value);
1907 cur->next = 0;
1908 cur->flg_export = flg_export;
1909 cur->flg_read_only = 0;
1910 while(bottom->next) bottom=bottom->next;
1911 bottom->next = cur;
Eric Andersen20a69a72001-05-15 17:24:44 +00001912 }
Eric Andersen20a69a72001-05-15 17:24:44 +00001913 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001914 }
Eric Andersen20a69a72001-05-15 17:24:44 +00001915
Eric Andersen94ac2442001-05-22 19:05:18 +00001916 if(result==0 && cur->flg_export==1) {
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001917 *(value-1) = '=';
1918 result = putenv(name);
1919 } else {
Eric Andersen94ac2442001-05-22 19:05:18 +00001920 free(name);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001921 if(result>0) /* equivalent to previous set */
1922 result = 0;
1923 }
Eric Andersen20a69a72001-05-15 17:24:44 +00001924 return result;
1925}
1926
Eric Andersenf72f5622001-05-15 23:21:41 +00001927static void unset_local_var(const char *name)
Eric Andersen20a69a72001-05-15 17:24:44 +00001928{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001929 struct variables *cur;
Eric Andersen20a69a72001-05-15 17:24:44 +00001930
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001931 if (name) {
Eric Andersen94ac2442001-05-22 19:05:18 +00001932 for (cur = top_vars; cur; cur=cur->next) {
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001933 if(strcmp(cur->name, name)==0)
1934 break;
Eric Andersen94ac2442001-05-22 19:05:18 +00001935 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001936 if(cur!=0) {
1937 struct variables *next = top_vars;
Eric Andersen94ac2442001-05-22 19:05:18 +00001938 if(cur->flg_read_only) {
1939 error_msg("%s: readonly variable", name);
1940 return;
1941 } else {
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001942 if(cur->flg_export)
1943 unsetenv(cur->name);
1944 free(cur->name);
1945 free(cur->value);
1946 while (next->next != cur)
1947 next = next->next;
1948 next->next = cur->next;
1949 }
1950 free(cur);
Eric Andersenf72f5622001-05-15 23:21:41 +00001951 }
Eric Andersen20a69a72001-05-15 17:24:44 +00001952 }
Eric Andersen78a7c992001-05-15 16:30:25 +00001953}
1954
1955static int is_assignment(const char *s)
1956{
1957 if (s==NULL || !isalpha(*s)) return 0;
1958 ++s;
1959 while(isalnum(*s) || *s=='_') ++s;
1960 return *s=='=';
1961}
1962
Eric Andersen25f27032001-04-26 23:22:31 +00001963/* the src parameter allows us to peek forward to a possible &n syntax
1964 * for file descriptor duplication, e.g., "2>&1".
1965 * Return code is 0 normally, 1 if a syntax error is detected in src.
1966 * Resource errors (in xmalloc) cause the process to exit */
1967static int setup_redirect(struct p_context *ctx, int fd, redir_type style,
1968 struct in_str *input)
1969{
1970 struct child_prog *child=ctx->child;
1971 struct redir_struct *redir = child->redirects;
1972 struct redir_struct *last_redir=NULL;
1973
1974 /* Create a new redir_struct and drop it onto the end of the linked list */
1975 while(redir) {
1976 last_redir=redir;
1977 redir=redir->next;
1978 }
1979 redir = xmalloc(sizeof(struct redir_struct));
1980 redir->next=NULL;
Eric Andersen817e73c2001-06-06 17:56:09 +00001981 redir->word.gl_pathv=NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00001982 if (last_redir) {
1983 last_redir->next=redir;
1984 } else {
1985 child->redirects=redir;
1986 }
1987
1988 redir->type=style;
1989 redir->fd= (fd==-1) ? redir_table[style].default_fd : fd ;
1990
1991 debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip);
1992
1993 /* Check for a '2>&1' type redirect */
1994 redir->dup = redirect_dup_num(input);
1995 if (redir->dup == -2) return 1; /* syntax error */
1996 if (redir->dup != -1) {
1997 /* Erik had a check here that the file descriptor in question
Eric Andersen83a2ae22001-05-07 17:59:25 +00001998 * is legit; I postpone that to "run time"
1999 * A "-" representation of "close me" shows up as a -3 here */
Eric Andersen25f27032001-04-26 23:22:31 +00002000 debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup);
2001 } else {
2002 /* We do _not_ try to open the file that src points to,
2003 * since we need to return and let src be expanded first.
2004 * Set ctx->pending_redirect, so we know what to do at the
2005 * end of the next parsed word.
2006 */
2007 ctx->pending_redirect = redir;
2008 }
2009 return 0;
2010}
2011
2012struct pipe *new_pipe(void) {
2013 struct pipe *pi;
2014 pi = xmalloc(sizeof(struct pipe));
2015 pi->num_progs = 0;
2016 pi->progs = NULL;
2017 pi->next = NULL;
2018 pi->followup = 0; /* invalid */
2019 return pi;
2020}
2021
2022static void initialize_context(struct p_context *ctx)
2023{
2024 ctx->pipe=NULL;
2025 ctx->pending_redirect=NULL;
2026 ctx->child=NULL;
2027 ctx->list_head=new_pipe();
2028 ctx->pipe=ctx->list_head;
2029 ctx->w=RES_NONE;
2030 ctx->stack=NULL;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002031 ctx->old_flag=0;
Eric Andersen25f27032001-04-26 23:22:31 +00002032 done_command(ctx); /* creates the memory for working child */
2033}
2034
2035/* normal return is 0
2036 * if a reserved word is found, and processed, return 1
2037 * should handle if, then, elif, else, fi, for, while, until, do, done.
2038 * case, function, and select are obnoxious, save those for later.
2039 */
2040int reserved_word(o_string *dest, struct p_context *ctx)
2041{
2042 struct reserved_combo {
2043 char *literal;
2044 int code;
2045 long flag;
2046 };
2047 /* Mostly a list of accepted follow-up reserved words.
2048 * FLAG_END means we are done with the sequence, and are ready
2049 * to turn the compound list into a command.
2050 * FLAG_START means the word must start a new compound list.
2051 */
2052 static struct reserved_combo reserved_list[] = {
2053 { "if", RES_IF, FLAG_THEN | FLAG_START },
2054 { "then", RES_THEN, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
2055 { "elif", RES_ELIF, FLAG_THEN },
2056 { "else", RES_ELSE, FLAG_FI },
2057 { "fi", RES_FI, FLAG_END },
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002058 { "for", RES_FOR, FLAG_IN | FLAG_START },
Eric Andersen25f27032001-04-26 23:22:31 +00002059 { "while", RES_WHILE, FLAG_DO | FLAG_START },
2060 { "until", RES_UNTIL, FLAG_DO | FLAG_START },
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002061 { "in", RES_IN, FLAG_DO },
Eric Andersen25f27032001-04-26 23:22:31 +00002062 { "do", RES_DO, FLAG_DONE },
2063 { "done", RES_DONE, FLAG_END }
2064 };
2065 struct reserved_combo *r;
2066 for (r=reserved_list;
2067#define NRES sizeof(reserved_list)/sizeof(struct reserved_combo)
2068 r<reserved_list+NRES; r++) {
2069 if (strcmp(dest->data, r->literal) == 0) {
2070 debug_printf("found reserved word %s, code %d\n",r->literal,r->code);
2071 if (r->flag & FLAG_START) {
2072 struct p_context *new = xmalloc(sizeof(struct p_context));
2073 debug_printf("push stack\n");
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002074 if (ctx->w == RES_IN || ctx->w == RES_FOR) {
2075 syntax();
2076 free(new);
2077 ctx->w = RES_SNTX;
2078 b_reset(dest);
2079 return 1;
2080 }
Eric Andersen25f27032001-04-26 23:22:31 +00002081 *new = *ctx; /* physical copy */
2082 initialize_context(ctx);
2083 ctx->stack=new;
2084 } else if ( ctx->w == RES_NONE || ! (ctx->old_flag & (1<<r->code))) {
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002085 syntax();
2086 ctx->w = RES_SNTX;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002087 b_reset(dest);
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002088 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002089 }
2090 ctx->w=r->code;
2091 ctx->old_flag = r->flag;
2092 if (ctx->old_flag & FLAG_END) {
2093 struct p_context *old;
2094 debug_printf("pop stack\n");
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002095 done_pipe(ctx,PIPE_SEQ);
Eric Andersen25f27032001-04-26 23:22:31 +00002096 old = ctx->stack;
2097 old->child->group = ctx->list_head;
Eric Andersen04407e52001-06-07 16:42:05 +00002098 old->child->subshell = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00002099 *ctx = *old; /* physical copy */
2100 free(old);
Eric Andersen25f27032001-04-26 23:22:31 +00002101 }
2102 b_reset (dest);
2103 return 1;
2104 }
2105 }
2106 return 0;
2107}
2108
2109/* normal return is 0.
2110 * Syntax or xglob errors return 1. */
2111static int done_word(o_string *dest, struct p_context *ctx)
2112{
2113 struct child_prog *child=ctx->child;
2114 glob_t *glob_target;
2115 int gr, flags = 0;
2116
2117 debug_printf("done_word: %s %p\n", dest->data, child);
2118 if (dest->length == 0 && !dest->nonnull) {
2119 debug_printf(" true null, ignored\n");
2120 return 0;
2121 }
2122 if (ctx->pending_redirect) {
2123 glob_target = &ctx->pending_redirect->word;
2124 } else {
2125 if (child->group) {
2126 syntax();
2127 return 1; /* syntax error, groups and arglists don't mix */
2128 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002129 if (!child->argv && (ctx->type & FLAG_PARSE_SEMICOLON)) {
Eric Andersen25f27032001-04-26 23:22:31 +00002130 debug_printf("checking %s for reserved-ness\n",dest->data);
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002131 if (reserved_word(dest,ctx)) return ctx->w==RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00002132 }
2133 glob_target = &child->glob_result;
2134 if (child->argv) flags |= GLOB_APPEND;
2135 }
2136 gr = xglob(dest, flags, glob_target);
2137 if (gr != 0) return 1;
2138
2139 b_reset(dest);
2140 if (ctx->pending_redirect) {
2141 ctx->pending_redirect=NULL;
2142 if (glob_target->gl_pathc != 1) {
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002143 error_msg("ambiguous redirect");
Eric Andersen25f27032001-04-26 23:22:31 +00002144 return 1;
2145 }
2146 } else {
2147 child->argv = glob_target->gl_pathv;
2148 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002149 if (ctx->w == RES_FOR) {
2150 done_word(dest,ctx);
2151 done_pipe(ctx,PIPE_SEQ);
2152 }
Eric Andersen25f27032001-04-26 23:22:31 +00002153 return 0;
2154}
2155
2156/* The only possible error here is out of memory, in which case
2157 * xmalloc exits. */
2158static int done_command(struct p_context *ctx)
2159{
2160 /* The child is really already in the pipe structure, so
2161 * advance the pipe counter and make a new, null child.
2162 * Only real trickiness here is that the uncommitted
2163 * child structure, to which ctx->child points, is not
2164 * counted in pi->num_progs. */
2165 struct pipe *pi=ctx->pipe;
2166 struct child_prog *prog=ctx->child;
2167
2168 if (prog && prog->group == NULL
2169 && prog->argv == NULL
2170 && prog->redirects == NULL) {
2171 debug_printf("done_command: skipping null command\n");
2172 return 0;
2173 } else if (prog) {
2174 pi->num_progs++;
2175 debug_printf("done_command: num_progs incremented to %d\n",pi->num_progs);
2176 } else {
2177 debug_printf("done_command: initializing\n");
2178 }
2179 pi->progs = xrealloc(pi->progs, sizeof(*pi->progs) * (pi->num_progs+1));
2180
2181 prog = pi->progs + pi->num_progs;
2182 prog->redirects = NULL;
2183 prog->argv = NULL;
2184 prog->is_stopped = 0;
2185 prog->group = NULL;
2186 prog->glob_result.gl_pathv = NULL;
2187 prog->family = pi;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002188 prog->sp = 0;
2189 ctx->child = prog;
2190 prog->type = ctx->type;
Eric Andersen25f27032001-04-26 23:22:31 +00002191
Eric Andersen25f27032001-04-26 23:22:31 +00002192 /* but ctx->pipe and ctx->list_head remain unchanged */
2193 return 0;
2194}
2195
2196static int done_pipe(struct p_context *ctx, pipe_style type)
2197{
2198 struct pipe *new_p;
2199 done_command(ctx); /* implicit closure of previous command */
2200 debug_printf("done_pipe, type %d\n", type);
2201 ctx->pipe->followup = type;
2202 ctx->pipe->r_mode = ctx->w;
2203 new_p=new_pipe();
2204 ctx->pipe->next = new_p;
2205 ctx->pipe = new_p;
2206 ctx->child = NULL;
2207 done_command(ctx); /* set up new pipe to accept commands */
2208 return 0;
2209}
2210
2211/* peek ahead in the in_str to find out if we have a "&n" construct,
2212 * as in "2>&1", that represents duplicating a file descriptor.
2213 * returns either -2 (syntax error), -1 (no &), or the number found.
2214 */
2215static int redirect_dup_num(struct in_str *input)
2216{
2217 int ch, d=0, ok=0;
2218 ch = b_peek(input);
2219 if (ch != '&') return -1;
2220
2221 b_getch(input); /* get the & */
Eric Andersen83a2ae22001-05-07 17:59:25 +00002222 ch=b_peek(input);
2223 if (ch == '-') {
2224 b_getch(input);
2225 return -3; /* "-" represents "close me" */
2226 }
2227 while (isdigit(ch)) {
Eric Andersen25f27032001-04-26 23:22:31 +00002228 d = d*10+(ch-'0');
2229 ok=1;
2230 b_getch(input);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002231 ch = b_peek(input);
Eric Andersen25f27032001-04-26 23:22:31 +00002232 }
2233 if (ok) return d;
2234
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002235 error_msg("ambiguous redirect");
Eric Andersen25f27032001-04-26 23:22:31 +00002236 return -2;
2237}
2238
2239/* If a redirect is immediately preceded by a number, that number is
2240 * supposed to tell which file descriptor to redirect. This routine
2241 * looks for such preceding numbers. In an ideal world this routine
2242 * needs to handle all the following classes of redirects...
2243 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
2244 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
2245 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
2246 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
2247 * A -1 output from this program means no valid number was found, so the
2248 * caller should use the appropriate default for this redirection.
2249 */
2250static int redirect_opt_num(o_string *o)
2251{
2252 int num;
2253
2254 if (o->length==0) return -1;
2255 for(num=0; num<o->length; num++) {
2256 if (!isdigit(*(o->data+num))) {
2257 return -1;
2258 }
2259 }
2260 /* reuse num (and save an int) */
2261 num=atoi(o->data);
2262 b_reset(o);
2263 return num;
2264}
2265
2266FILE *generate_stream_from_list(struct pipe *head)
2267{
2268 FILE *pf;
2269#if 1
2270 int pid, channel[2];
2271 if (pipe(channel)<0) perror_msg_and_die("pipe");
Eric Andersen72f9a422001-10-28 05:12:20 +00002272#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
Eric Andersen25f27032001-04-26 23:22:31 +00002273 pid=fork();
Eric Andersen72f9a422001-10-28 05:12:20 +00002274#else
2275 pid=vfork();
2276#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002277 if (pid<0) {
2278 perror_msg_and_die("fork");
2279 } else if (pid==0) {
2280 close(channel[0]);
2281 if (channel[1] != 1) {
2282 dup2(channel[1],1);
2283 close(channel[1]);
2284 }
2285#if 0
2286#define SURROGATE "surrogate response"
2287 write(1,SURROGATE,sizeof(SURROGATE));
Eric Andersen94ac2442001-05-22 19:05:18 +00002288 _exit(run_list(head));
Eric Andersen25f27032001-04-26 23:22:31 +00002289#else
Eric Andersen94ac2442001-05-22 19:05:18 +00002290 _exit(run_list_real(head)); /* leaks memory */
Eric Andersen25f27032001-04-26 23:22:31 +00002291#endif
2292 }
2293 debug_printf("forked child %d\n",pid);
2294 close(channel[1]);
2295 pf = fdopen(channel[0],"r");
2296 debug_printf("pipe on FILE *%p\n",pf);
2297#else
Eric Andersenbf7df042001-05-23 22:18:35 +00002298 free_pipe_list(head,0);
Eric Andersen25f27032001-04-26 23:22:31 +00002299 pf=popen("echo surrogate response","r");
2300 debug_printf("started fake pipe on FILE *%p\n",pf);
2301#endif
2302 return pf;
2303}
2304
2305/* this version hacked for testing purposes */
2306/* return code is exit status of the process that is run. */
2307static int process_command_subs(o_string *dest, struct p_context *ctx, struct in_str *input, int subst_end)
2308{
2309 int retcode;
2310 o_string result=NULL_O_STRING;
2311 struct p_context inner;
2312 FILE *p;
2313 struct in_str pipe_str;
2314 initialize_context(&inner);
2315
2316 /* recursion to generate command */
2317 retcode = parse_stream(&result, &inner, input, subst_end);
2318 if (retcode != 0) return retcode; /* syntax error or EOF */
2319 done_word(&result, &inner);
2320 done_pipe(&inner, PIPE_SEQ);
2321 b_free(&result);
2322
2323 p=generate_stream_from_list(inner.list_head);
2324 if (p==NULL) return 1;
2325 mark_open(fileno(p));
2326 setup_file_in_str(&pipe_str, p);
2327
2328 /* now send results of command back into original context */
2329 retcode = parse_stream(dest, ctx, &pipe_str, '\0');
2330 /* XXX In case of a syntax error, should we try to kill the child?
2331 * That would be tough to do right, so just read until EOF. */
2332 if (retcode == 1) {
2333 while (b_getch(&pipe_str)!=EOF) { /* discard */ };
2334 }
2335
2336 debug_printf("done reading from pipe, pclose()ing\n");
2337 /* This is the step that wait()s for the child. Should be pretty
2338 * safe, since we just read an EOF from its stdout. We could try
2339 * to better, by using wait(), and keeping track of background jobs
2340 * at the same time. That would be a lot of work, and contrary
2341 * to the KISS philosophy of this program. */
2342 mark_closed(fileno(p));
2343 retcode=pclose(p);
Eric Andersena15dc152001-05-23 23:46:09 +00002344 free_pipe_list(inner.list_head,0);
Eric Andersen25f27032001-04-26 23:22:31 +00002345 debug_printf("pclosed, retcode=%d\n",retcode);
2346 /* XXX this process fails to trim a single trailing newline */
2347 return retcode;
2348}
2349
2350static int parse_group(o_string *dest, struct p_context *ctx,
2351 struct in_str *input, int ch)
2352{
2353 int rcode, endch=0;
2354 struct p_context sub;
2355 struct child_prog *child = ctx->child;
2356 if (child->argv) {
2357 syntax();
2358 return 1; /* syntax error, groups and arglists don't mix */
2359 }
2360 initialize_context(&sub);
2361 switch(ch) {
2362 case '(': endch=')'; child->subshell=1; break;
2363 case '{': endch='}'; break;
2364 default: syntax(); /* really logic error */
2365 }
2366 rcode=parse_stream(dest,&sub,input,endch);
2367 done_word(dest,&sub); /* finish off the final word in the subcontext */
2368 done_pipe(&sub, PIPE_SEQ); /* and the final command there, too */
2369 child->group = sub.list_head;
2370 return rcode;
2371 /* child remains "open", available for possible redirects */
2372}
2373
2374/* basically useful version until someone wants to get fancier,
2375 * see the bash man page under "Parameter Expansion" */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002376static char *lookup_param(char *src)
Eric Andersen25f27032001-04-26 23:22:31 +00002377{
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002378 char *p=NULL;
2379 if (src) {
2380 p = getenv(src);
Eric Andersenf72f5622001-05-15 23:21:41 +00002381 if (!p)
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002382 p = get_local_var(src);
Eric Andersen20a69a72001-05-15 17:24:44 +00002383 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002384 return p;
Eric Andersen25f27032001-04-26 23:22:31 +00002385}
2386
2387/* return code: 0 for OK, 1 for syntax error */
2388static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input)
2389{
2390 int i, advance=0;
Eric Andersen25f27032001-04-26 23:22:31 +00002391 char sep[]=" ";
2392 int ch = input->peek(input); /* first character after the $ */
2393 debug_printf("handle_dollar: ch=%c\n",ch);
2394 if (isalpha(ch)) {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002395 b_addchr(dest, SPECIAL_VAR_SYMBOL);
2396 ctx->child->sp++;
Eric Andersen25f27032001-04-26 23:22:31 +00002397 while(ch=b_peek(input),isalnum(ch) || ch=='_') {
2398 b_getch(input);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002399 b_addchr(dest,ch);
Eric Andersen25f27032001-04-26 23:22:31 +00002400 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002401 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00002402 } else if (isdigit(ch)) {
2403 i = ch-'0'; /* XXX is $0 special? */
2404 if (i<global_argc) {
2405 parse_string(dest, ctx, global_argv[i]); /* recursion */
2406 }
2407 advance = 1;
2408 } else switch (ch) {
2409 case '$':
2410 b_adduint(dest,getpid());
2411 advance = 1;
2412 break;
2413 case '!':
2414 if (last_bg_pid > 0) b_adduint(dest, last_bg_pid);
2415 advance = 1;
2416 break;
2417 case '?':
2418 b_adduint(dest,last_return_code);
2419 advance = 1;
2420 break;
2421 case '#':
2422 b_adduint(dest,global_argc ? global_argc-1 : 0);
2423 advance = 1;
2424 break;
2425 case '{':
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002426 b_addchr(dest, SPECIAL_VAR_SYMBOL);
2427 ctx->child->sp++;
Eric Andersen25f27032001-04-26 23:22:31 +00002428 b_getch(input);
2429 /* XXX maybe someone will try to escape the '}' */
2430 while(ch=b_getch(input),ch!=EOF && ch!='}') {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002431 b_addchr(dest,ch);
Eric Andersen25f27032001-04-26 23:22:31 +00002432 }
2433 if (ch != '}') {
2434 syntax();
2435 return 1;
2436 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002437 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00002438 break;
2439 case '(':
Matt Kraai9f8caf12001-05-02 16:26:12 +00002440 b_getch(input);
Eric Andersen25f27032001-04-26 23:22:31 +00002441 process_command_subs(dest, ctx, input, ')');
2442 break;
2443 case '*':
2444 sep[0]=ifs[0];
2445 for (i=1; i<global_argc; i++) {
2446 parse_string(dest, ctx, global_argv[i]);
2447 if (i+1 < global_argc) parse_string(dest, ctx, sep);
2448 }
2449 break;
2450 case '@':
2451 case '-':
2452 case '_':
2453 /* still unhandled, but should be eventually */
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002454 error_msg("unhandled syntax: $%c",ch);
Eric Andersen25f27032001-04-26 23:22:31 +00002455 return 1;
2456 break;
2457 default:
2458 b_addqchr(dest,'$',dest->quote);
2459 }
2460 /* Eat the character if the flag was set. If the compiler
2461 * is smart enough, we could substitute "b_getch(input);"
2462 * for all the "advance = 1;" above, and also end up with
2463 * a nice size-optimized program. Hah! That'll be the day.
2464 */
2465 if (advance) b_getch(input);
2466 return 0;
2467}
2468
2469int parse_string(o_string *dest, struct p_context *ctx, const char *src)
2470{
2471 struct in_str foo;
2472 setup_string_in_str(&foo, src);
2473 return parse_stream(dest, ctx, &foo, '\0');
2474}
2475
2476/* return code is 0 for normal exit, 1 for syntax error */
2477int parse_stream(o_string *dest, struct p_context *ctx,
2478 struct in_str *input, int end_trigger)
2479{
2480 unsigned int ch, m;
2481 int redir_fd;
2482 redir_type redir_style;
2483 int next;
2484
2485 /* Only double-quote state is handled in the state variable dest->quote.
2486 * A single-quote triggers a bypass of the main loop until its mate is
2487 * found. When recursing, quote state is passed in via dest->quote. */
2488
2489 debug_printf("parse_stream, end_trigger=%d\n",end_trigger);
2490 while ((ch=b_getch(input))!=EOF) {
2491 m = map[ch];
2492 next = (ch == '\n') ? 0 : b_peek(input);
2493 debug_printf("parse_stream: ch=%c (%d) m=%d quote=%d\n",
2494 ch,ch,m,dest->quote);
2495 if (m==0 || ((m==1 || m==2) && dest->quote)) {
2496 b_addqchr(dest, ch, dest->quote);
Eric Andersenaac75e52001-04-30 18:18:45 +00002497 } else {
2498 if (m==2) { /* unquoted IFS */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002499 if (done_word(dest, ctx)) {
2500 return 1;
2501 }
Matt Kraai20a30692001-05-02 17:52:49 +00002502 /* If we aren't performing a substitution, treat a newline as a
2503 * command separator. */
2504 if (end_trigger != '\0' && ch=='\n')
2505 done_pipe(ctx,PIPE_SEQ);
Eric Andersenaac75e52001-04-30 18:18:45 +00002506 }
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002507 if (ch == end_trigger && !dest->quote && ctx->w==RES_NONE) {
Matt Kraaibdd4ece2001-05-23 17:43:00 +00002508 debug_printf("leaving parse_stream (triggered)\n");
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002509 return 0;
2510 }
Eric Andersen25f27032001-04-26 23:22:31 +00002511#if 0
2512 if (ch=='\n') {
2513 /* Yahoo! Time to run with it! */
2514 done_pipe(ctx,PIPE_SEQ);
2515 run_list(ctx->list_head);
2516 initialize_context(ctx);
2517 }
2518#endif
Eric Andersenaac75e52001-04-30 18:18:45 +00002519 if (m!=2) switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00002520 case '#':
2521 if (dest->length == 0 && !dest->quote) {
2522 while(ch=b_peek(input),ch!=EOF && ch!='\n') { b_getch(input); }
2523 } else {
2524 b_addqchr(dest, ch, dest->quote);
2525 }
2526 break;
2527 case '\\':
2528 if (next == EOF) {
2529 syntax();
2530 return 1;
2531 }
2532 b_addqchr(dest, '\\', dest->quote);
2533 b_addqchr(dest, b_getch(input), dest->quote);
2534 break;
2535 case '$':
2536 if (handle_dollar(dest, ctx, input)!=0) return 1;
2537 break;
2538 case '\'':
2539 dest->nonnull = 1;
2540 while(ch=b_getch(input),ch!=EOF && ch!='\'') {
2541 b_addchr(dest,ch);
2542 }
2543 if (ch==EOF) {
2544 syntax();
2545 return 1;
2546 }
2547 break;
2548 case '"':
2549 dest->nonnull = 1;
2550 dest->quote = !dest->quote;
2551 break;
2552 case '`':
2553 process_command_subs(dest, ctx, input, '`');
2554 break;
2555 case '>':
2556 redir_fd = redirect_opt_num(dest);
2557 done_word(dest, ctx);
2558 redir_style=REDIRECT_OVERWRITE;
2559 if (next == '>') {
2560 redir_style=REDIRECT_APPEND;
2561 b_getch(input);
2562 } else if (next == '(') {
2563 syntax(); /* until we support >(list) Process Substitution */
2564 return 1;
2565 }
2566 setup_redirect(ctx, redir_fd, redir_style, input);
2567 break;
2568 case '<':
2569 redir_fd = redirect_opt_num(dest);
2570 done_word(dest, ctx);
2571 redir_style=REDIRECT_INPUT;
2572 if (next == '<') {
2573 redir_style=REDIRECT_HEREIS;
2574 b_getch(input);
2575 } else if (next == '>') {
2576 redir_style=REDIRECT_IO;
2577 b_getch(input);
2578 } else if (next == '(') {
2579 syntax(); /* until we support <(list) Process Substitution */
2580 return 1;
2581 }
2582 setup_redirect(ctx, redir_fd, redir_style, input);
2583 break;
2584 case ';':
2585 done_word(dest, ctx);
2586 done_pipe(ctx,PIPE_SEQ);
2587 break;
2588 case '&':
2589 done_word(dest, ctx);
2590 if (next=='&') {
2591 b_getch(input);
2592 done_pipe(ctx,PIPE_AND);
2593 } else {
2594 done_pipe(ctx,PIPE_BG);
2595 }
2596 break;
2597 case '|':
2598 done_word(dest, ctx);
2599 if (next=='|') {
2600 b_getch(input);
2601 done_pipe(ctx,PIPE_OR);
2602 } else {
2603 /* we could pick up a file descriptor choice here
2604 * with redirect_opt_num(), but bash doesn't do it.
2605 * "echo foo 2| cat" yields "foo 2". */
2606 done_command(ctx);
2607 }
2608 break;
2609 case '(':
2610 case '{':
2611 if (parse_group(dest, ctx, input, ch)!=0) return 1;
2612 break;
2613 case ')':
2614 case '}':
2615 syntax(); /* Proper use of this character caught by end_trigger */
2616 return 1;
2617 break;
2618 default:
2619 syntax(); /* this is really an internal logic error */
2620 return 1;
Eric Andersenaac75e52001-04-30 18:18:45 +00002621 }
Eric Andersen25f27032001-04-26 23:22:31 +00002622 }
2623 }
2624 /* complain if quote? No, maybe we just finished a command substitution
2625 * that was quoted. Example:
2626 * $ echo "`cat foo` plus more"
2627 * and we just got the EOF generated by the subshell that ran "cat foo"
2628 * The only real complaint is if we got an EOF when end_trigger != '\0',
2629 * that is, we were really supposed to get end_trigger, and never got
2630 * one before the EOF. Can't use the standard "syntax error" return code,
2631 * so that parse_stream_outer can distinguish the EOF and exit smoothly. */
Matt Kraaibdd4ece2001-05-23 17:43:00 +00002632 debug_printf("leaving parse_stream (EOF)\n");
Eric Andersen25f27032001-04-26 23:22:31 +00002633 if (end_trigger != '\0') return -1;
2634 return 0;
2635}
2636
2637void mapset(const unsigned char *set, int code)
2638{
2639 const unsigned char *s;
2640 for (s=set; *s; s++) map[*s] = code;
2641}
2642
2643void update_ifs_map(void)
2644{
2645 /* char *ifs and char map[256] are both globals. */
2646 ifs = getenv("IFS");
2647 if (ifs == NULL) ifs=" \t\n";
2648 /* Precompute a list of 'flow through' behavior so it can be treated
2649 * quickly up front. Computation is necessary because of IFS.
2650 * Special case handling of IFS == " \t\n" is not implemented.
2651 * The map[] array only really needs two bits each, and on most machines
2652 * that would be faster because of the reduced L1 cache footprint.
2653 */
Eric Andersenaeb44c42001-05-22 20:29:00 +00002654 memset(map,0,sizeof(map)); /* most characters flow through always */
2655 mapset("\\$'\"`", 3); /* never flow through */
2656 mapset("<>;&|(){}#", 1); /* flow through if quoted */
2657 mapset(ifs, 2); /* also flow through if quoted */
Eric Andersen25f27032001-04-26 23:22:31 +00002658}
2659
2660/* most recursion does not come through here, the exeception is
2661 * from builtin_source() */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002662int parse_stream_outer(struct in_str *inp, int flag)
Eric Andersen25f27032001-04-26 23:22:31 +00002663{
2664
2665 struct p_context ctx;
2666 o_string temp=NULL_O_STRING;
2667 int rcode;
2668 do {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002669 ctx.type = flag;
Eric Andersen25f27032001-04-26 23:22:31 +00002670 initialize_context(&ctx);
2671 update_ifs_map();
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002672 if (!(flag & FLAG_PARSE_SEMICOLON) || (flag & FLAG_REPARSING)) mapset(";$&|", 0);
Eric Andersen25f27032001-04-26 23:22:31 +00002673 inp->promptmode=1;
2674 rcode = parse_stream(&temp, &ctx, inp, '\n');
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002675 if (rcode != 1 && ctx.old_flag != 0) {
2676 syntax();
2677 }
2678 if (rcode != 1 && ctx.old_flag == 0) {
2679 done_word(&temp, &ctx);
2680 done_pipe(&ctx,PIPE_SEQ);
2681 run_list(ctx.list_head);
2682 } else {
2683 if (ctx.old_flag != 0) {
2684 free(ctx.stack);
2685 b_reset(&temp);
2686 }
2687 temp.nonnull = 0;
2688 temp.quote = 0;
2689 inp->p = NULL;
2690 free_pipe_list(ctx.list_head,0);
2691 }
Eric Andersena813afc2001-05-24 16:19:36 +00002692 b_free(&temp);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002693 } while (rcode != -1 && !(flag & FLAG_EXIT_FROM_LOOP)); /* loop on syntax errors, return on EOF */
Eric Andersen25f27032001-04-26 23:22:31 +00002694 return 0;
2695}
2696
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002697static int parse_string_outer(const char *s, int flag)
Eric Andersen25f27032001-04-26 23:22:31 +00002698{
2699 struct in_str input;
2700 setup_string_in_str(&input, s);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002701 return parse_stream_outer(&input, flag);
Eric Andersen25f27032001-04-26 23:22:31 +00002702}
2703
2704static int parse_file_outer(FILE *f)
2705{
2706 int rcode;
2707 struct in_str input;
2708 setup_file_in_str(&input, f);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002709 rcode = parse_stream_outer(&input, FLAG_PARSE_SEMICOLON);
Eric Andersen25f27032001-04-26 23:22:31 +00002710 return rcode;
2711}
2712
Eric Andersen6c947d22001-06-25 22:24:38 +00002713/* Make sure we have a controlling tty. If we get started under a job
2714 * aware app (like bash for example), make sure we are now in charge so
2715 * we don't fight over who gets the foreground */
Eric Anderseneaecbf32001-10-31 10:41:31 +00002716static void setup_job_control(void)
Eric Andersen52a97ca2001-06-22 06:49:26 +00002717{
Eric Andersen6c947d22001-06-25 22:24:38 +00002718 static pid_t shell_pgrp;
2719 /* Loop until we are in the foreground. */
2720 while (tcgetpgrp (shell_terminal) != (shell_pgrp = getpgrp ()))
2721 kill (- shell_pgrp, SIGTTIN);
Eric Andersen52a97ca2001-06-22 06:49:26 +00002722
Eric Andersen6c947d22001-06-25 22:24:38 +00002723 /* Ignore interactive and job-control signals. */
2724 signal(SIGINT, SIG_IGN);
2725 signal(SIGQUIT, SIG_IGN);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002726 signal(SIGTERM, SIG_IGN);
Eric Andersen6c947d22001-06-25 22:24:38 +00002727 signal(SIGTSTP, SIG_IGN);
2728 signal(SIGTTIN, SIG_IGN);
2729 signal(SIGTTOU, SIG_IGN);
Eric Andersen028b65b2001-06-28 01:10:11 +00002730 signal(SIGCHLD, SIG_IGN);
Eric Andersen6c947d22001-06-25 22:24:38 +00002731
2732 /* Put ourselves in our own process group. */
Eric Andersen5c66d062001-06-26 23:16:31 +00002733 setsid();
Eric Andersen6c947d22001-06-25 22:24:38 +00002734 shell_pgrp = getpid ();
Eric Andersena90f20b2001-06-26 23:00:21 +00002735 setpgid (shell_pgrp, shell_pgrp);
Eric Andersen6c947d22001-06-25 22:24:38 +00002736
2737 /* Grab control of the terminal. */
2738 tcsetpgrp(shell_terminal, shell_pgrp);
2739}
Eric Andersenada18ff2001-05-21 16:18:22 +00002740
Matt Kraai2d91deb2001-08-01 17:21:35 +00002741int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00002742{
2743 int opt;
2744 FILE *input;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002745 char **e = environ;
Eric Andersenbc604a22001-05-16 05:24:03 +00002746
Eric Andersen25f27032001-04-26 23:22:31 +00002747 /* XXX what should these be while sourcing /etc/profile? */
2748 global_argc = argc;
2749 global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00002750
Matt Kraai2d91deb2001-08-01 17:21:35 +00002751 /* (re?) initialize globals. Sometimes hush_main() ends up calling
2752 * hush_main(), therefore we cannot rely on the BSS to zero out this
Eric Andersen94ac2442001-05-22 19:05:18 +00002753 * stuff. Reset these to 0 every time. */
2754 ifs = NULL;
Eric Andersenaeb44c42001-05-22 20:29:00 +00002755 /* map[] is taken care of with call to update_ifs_map() */
Eric Andersen94ac2442001-05-22 19:05:18 +00002756 fake_mode = 0;
2757 interactive = 0;
2758 close_me_head = NULL;
2759 last_bg_pid = 0;
Eric Andersen52a97ca2001-06-22 06:49:26 +00002760 job_list = NULL;
Eric Andersenc798b072001-06-22 06:23:03 +00002761 last_jobid = 0;
Eric Andersen94ac2442001-05-22 19:05:18 +00002762
2763 /* Initialize some more globals to non-zero values */
2764 set_cwd();
Eric Andersenbdfd0d72001-10-24 05:00:29 +00002765#ifdef CONFIG_FEATURE_COMMAND_EDITING
Eric Andersen94ac2442001-05-22 19:05:18 +00002766 cmdedit_set_initial_prompt();
2767#else
2768 PS1 = NULL;
2769#endif
2770 PS2 = "> ";
2771
2772 /* initialize our shell local variables with the values
2773 * currently living in the environment */
2774 if (e) {
2775 for (; *e; e++)
2776 set_local_var(*e, 2); /* without call putenv() */
2777 }
2778
2779 last_return_code=EXIT_SUCCESS;
2780
Eric Andersen25f27032001-04-26 23:22:31 +00002781
2782 if (argv[0] && argv[0][0] == '-') {
2783 debug_printf("\nsourcing /etc/profile\n");
Eric Andersena90f20b2001-06-26 23:00:21 +00002784 if ((input = fopen("/etc/profile", "r")) != NULL) {
2785 mark_open(fileno(input));
2786 parse_file_outer(input);
2787 mark_closed(fileno(input));
2788 fclose(input);
2789 }
Eric Andersen25f27032001-04-26 23:22:31 +00002790 }
2791 input=stdin;
2792
Eric Andersen25f27032001-04-26 23:22:31 +00002793 while ((opt = getopt(argc, argv, "c:xif")) > 0) {
2794 switch (opt) {
2795 case 'c':
2796 {
2797 global_argv = argv+optind;
2798 global_argc = argc-optind;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002799 opt = parse_string_outer(optarg, FLAG_PARSE_SEMICOLON);
Eric Andersene67c3ce2001-05-02 02:09:36 +00002800 goto final_return;
Eric Andersen25f27032001-04-26 23:22:31 +00002801 }
2802 break;
2803 case 'i':
2804 interactive++;
2805 break;
2806 case 'f':
2807 fake_mode++;
2808 break;
2809 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002810#ifndef BB_VER
Eric Andersen25f27032001-04-26 23:22:31 +00002811 fprintf(stderr, "Usage: sh [FILE]...\n"
2812 " or: sh -c command [args]...\n\n");
2813 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002814#else
2815 show_usage();
2816#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002817 }
2818 }
2819 /* A shell is interactive if the `-i' flag was given, or if all of
2820 * the following conditions are met:
2821 * no -c command
2822 * no arguments remaining or the -s flag given
2823 * standard input is a terminal
2824 * standard output is a terminal
2825 * Refer to Posix.2, the description of the `sh' utility. */
2826 if (argv[optind]==NULL && input==stdin &&
2827 isatty(fileno(stdin)) && isatty(fileno(stdout))) {
2828 interactive++;
2829 }
Eric Andersene67c3ce2001-05-02 02:09:36 +00002830
2831 debug_printf("\ninteractive=%d\n", interactive);
Eric Andersen25f27032001-04-26 23:22:31 +00002832 if (interactive) {
2833 /* Looks like they want an interactive shell */
Eric Andersenbdfd0d72001-10-24 05:00:29 +00002834#ifndef CONFIG_FEATURE_SH_EXTRA_QUIET
Eric Andersend63dee42001-10-19 00:22:23 +00002835 printf( "\n\n" BB_BANNER " hush - the humble shell v0.01 (testing)\n");
2836 printf( "Enter 'help' for a list of built-in commands.\n\n");
2837#endif
Eric Andersen52a97ca2001-06-22 06:49:26 +00002838 setup_job_control();
Eric Andersenada18ff2001-05-21 16:18:22 +00002839 }
Eric Andersen52a97ca2001-06-22 06:49:26 +00002840
Eric Andersenada18ff2001-05-21 16:18:22 +00002841 if (argv[optind]==NULL) {
Eric Andersene67c3ce2001-05-02 02:09:36 +00002842 opt=parse_file_outer(stdin);
2843 goto final_return;
Eric Andersen25f27032001-04-26 23:22:31 +00002844 }
Eric Andersen25f27032001-04-26 23:22:31 +00002845
2846 debug_printf("\nrunning script '%s'\n", argv[optind]);
2847 global_argv = argv+optind;
2848 global_argc = argc-optind;
2849 input = xfopen(argv[optind], "r");
2850 opt = parse_file_outer(input);
2851
Eric Andersenbdfd0d72001-10-24 05:00:29 +00002852#ifdef CONFIG_FEATURE_CLEAN_UP
Eric Andersenaeb44c42001-05-22 20:29:00 +00002853 fclose(input);
2854 if (cwd && cwd != unknown)
2855 free((char*)cwd);
2856 {
2857 struct variables *cur, *tmp;
2858 for(cur = top_vars; cur; cur = tmp) {
2859 tmp = cur->next;
2860 if (!cur->flg_read_only) {
2861 free(cur->name);
2862 free(cur->value);
2863 free(cur);
2864 }
2865 }
2866 }
Eric Andersen25f27032001-04-26 23:22:31 +00002867#endif
2868
Eric Andersene67c3ce2001-05-02 02:09:36 +00002869final_return:
2870 return(opt?opt:last_return_code);
Eric Andersen25f27032001-04-26 23:22:31 +00002871}
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002872
2873static char *insert_var_value(char *inp)
2874{
2875 int res_str_len = 0;
2876 int len;
2877 int done = 0;
2878 char *p, *p1, *res_str = NULL;
2879
2880 while ((p = strchr(inp, SPECIAL_VAR_SYMBOL))) {
2881 if (p != inp) {
2882 len = p - inp;
2883 res_str = xrealloc(res_str, (res_str_len + len));
2884 strncpy((res_str + res_str_len), inp, len);
2885 res_str_len += len;
2886 }
2887 inp = ++p;
2888 p = strchr(inp, SPECIAL_VAR_SYMBOL);
2889 *p = '\0';
2890 if ((p1 = lookup_param(inp))) {
2891 len = res_str_len + strlen(p1);
2892 res_str = xrealloc(res_str, (1 + len));
2893 strcpy((res_str + res_str_len), p1);
2894 res_str_len = len;
2895 }
2896 *p = SPECIAL_VAR_SYMBOL;
2897 inp = ++p;
2898 done = 1;
2899 }
2900 if (done) {
2901 res_str = xrealloc(res_str, (1 + res_str_len + strlen(inp)));
2902 strcpy((res_str + res_str_len), inp);
2903 while ((p = strchr(res_str, '\n'))) {
2904 *p = ' ';
2905 }
2906 }
2907 return (res_str == NULL) ? inp : res_str;
2908}
2909
2910static char **make_list_in(char **inp, char *name)
2911{
2912 int len, i;
2913 int name_len = strlen(name);
2914 int n = 0;
2915 char **list;
2916 char *p1, *p2, *p3;
2917
2918 /* create list of variable values */
2919 list = xmalloc(sizeof(*list));
2920 for (i = 0; inp[i]; i++) {
2921 p3 = insert_var_value(inp[i]);
2922 p1 = p3;
2923 while (*p1) {
2924 if ((*p1 == ' ')) {
2925 p1++;
2926 continue;
2927 }
2928 if ((p2 = strchr(p1, ' '))) {
2929 len = p2 - p1;
2930 } else {
2931 len = strlen(p1);
2932 p2 = p1 + len;
2933 }
2934 /* we use n + 2 in realloc for list,because we add
2935 * new element and then we will add NULL element */
2936 list = xrealloc(list, sizeof(*list) * (n + 2));
2937 list[n] = xmalloc(2 + name_len + len);
2938 strcpy(list[n], name);
2939 strcat(list[n], "=");
2940 strncat(list[n], p1, len);
2941 list[n++][name_len + len + 1] = '\0';
2942 p1 = p2;
2943 }
2944 if (p3 != inp[i]) free(p3);
2945 }
2946 list[n] = NULL;
2947 return list;
2948}
2949
2950/* Make new string for parser */
2951static char * make_string(char ** inp)
2952{
2953 char *p;
2954 char *str = NULL;
2955 int n;
2956 int len = 2;
2957
2958 for (n = 0; inp[n]; n++) {
2959 p = insert_var_value(inp[n]);
2960 str = xrealloc(str, (len + strlen(p)));
2961 if (n) {
2962 strcat(str, " ");
2963 } else {
2964 *str = '\0';
2965 }
2966 strcat(str, p);
2967 len = strlen(str) + 3;
2968 if (p != inp[n]) free(p);
2969 }
2970 len = strlen(str);
2971 *(str + len) = '\n';
2972 *(str + len + 1) = '\0';
2973 return str;
2974}