blob: 7e274324ee05ef34ae14400683a0442507b481f6 [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
Eric Andersencb81e642003-07-14 21:21:08 +000012 * written Dec 2000 and Jan 2001 by Larry Doolittle. The
13 * execution engine, the builtins, and much of the underlying
14 * support has been adapted from busybox-0.49pre's lash, which is
Eric Andersenc7bda1c2004-03-15 08:29:22 +000015 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersencb81e642003-07-14 21:21:08 +000016 * written by Erik Andersen <andersen@codepoet.org>. That, in turn,
17 * is based in part on ladsh.c, by Michael K. Johnson and Erik W.
18 * Troan, which they placed in the public domain. I don't know
19 * how much of the Johnson/Troan code has survived the repeated
20 * rewrites.
21 *
Eric Andersen25f27032001-04-26 23:22:31 +000022 * Other credits:
23 * simple_itoa() was lifted from boa-0.93.15
24 * b_addchr() derived from similar w_addchar function in glibc-2.2
25 * setup_redirect(), redirect_opt_num(), and big chunks of main()
26 * and many builtins derived from contributions by Erik Andersen
27 * miscellaneous bugfixes from Matt Kraai
28 *
29 * There are two big (and related) architecture differences between
30 * this parser and the lash parser. One is that this version is
31 * actually designed from the ground up to understand nearly all
32 * of the Bourne grammar. The second, consequential change is that
33 * the parser and input reader have been turned inside out. Now,
34 * the parser is in control, and asks for input as needed. The old
35 * way had the input reader in control, and it asked for parsing to
36 * take place as needed. The new way makes it much easier to properly
37 * handle the recursion implicit in the various substitutions, especially
38 * across continuation lines.
39 *
40 * Bash grammar not implemented: (how many of these were in original sh?)
41 * $@ (those sure look like weird quoting rules)
42 * $_
43 * ! negation operator for pipes
44 * &> and >& redirection of stdout+stderr
45 * Brace Expansion
46 * Tilde Expansion
47 * fancy forms of Parameter Expansion
Eric Andersen78a7c992001-05-15 16:30:25 +000048 * aliases
Eric Andersen25f27032001-04-26 23:22:31 +000049 * Arithmetic Expansion
50 * <(list) and >(list) Process Substitution
Eric Andersen83a2ae22001-05-07 17:59:25 +000051 * reserved words: case, esac, select, function
Eric Andersen25f27032001-04-26 23:22:31 +000052 * Here Documents ( << word )
53 * Functions
54 * Major bugs:
55 * job handling woefully incomplete and buggy
56 * reserved word execution woefully incomplete and buggy
Eric Andersen25f27032001-04-26 23:22:31 +000057 * to-do:
Eric Andersen83a2ae22001-05-07 17:59:25 +000058 * port selected bugfixes from post-0.49 busybox lash - done?
59 * finish implementing reserved words: for, while, until, do, done
60 * change { and } from special chars to reserved words
61 * builtins: break, continue, eval, return, set, trap, ulimit
62 * test magic exec
Eric Andersen25f27032001-04-26 23:22:31 +000063 * handle children going into background
64 * clean up recognition of null pipes
Eric Andersen25f27032001-04-26 23:22:31 +000065 * check setting of global_argc and global_argv
66 * control-C handling, probably with longjmp
Eric Andersen25f27032001-04-26 23:22:31 +000067 * follow IFS rules more precisely, including update semantics
Eric Andersen25f27032001-04-26 23:22:31 +000068 * figure out what to do with backslash-newline
69 * explain why we use signal instead of sigaction
70 * propagate syntax errors, die on resource errors?
71 * continuation lines, both explicit and implicit - done?
72 * memory leak finding and plugging - done?
73 * more testing, especially quoting rules and redirection
Eric Andersen78a7c992001-05-15 16:30:25 +000074 * document how quoting rules not precisely followed for variable assignments
Eric Andersen25f27032001-04-26 23:22:31 +000075 * maybe change map[] to use 2-bit entries
76 * (eventually) remove all the printf's
Eric Andersen25f27032001-04-26 23:22:31 +000077 *
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000078 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersen25f27032001-04-26 23:22:31 +000079 */
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +000080
81#include "busybox.h"
Eric Andersen25f27032001-04-26 23:22:31 +000082#include <ctype.h> /* isalpha, isdigit */
83#include <unistd.h> /* getpid */
84#include <stdlib.h> /* getenv, atoi */
85#include <string.h> /* strchr */
86#include <stdio.h> /* popen etc. */
87#include <glob.h> /* glob, of course */
88#include <stdarg.h> /* va_list */
89#include <errno.h>
90#include <fcntl.h>
91#include <getopt.h> /* should be pretty obvious */
92
Eric Andersen83a2ae22001-05-07 17:59:25 +000093#include <sys/stat.h> /* ulimit */
Eric Andersen25f27032001-04-26 23:22:31 +000094#include <sys/types.h>
95#include <sys/wait.h>
96#include <signal.h>
97
98/* #include <dmalloc.h> */
Eric Andersen4ed5e372001-05-01 01:49:50 +000099/* #define DEBUG_SHELL */
Eric Andersen25f27032001-04-26 23:22:31 +0000100
"Robert P. J. Day"f3501602006-07-01 12:19:39 +0000101
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000102#define SPECIAL_VAR_SYMBOL 03
103#define FLAG_EXIT_FROM_LOOP 1
104#define FLAG_PARSE_SEMICOLON (1 << 1) /* symbol ';' is special for parser */
105#define FLAG_REPARSING (1 << 2) /* >=2nd pass */
Eric Andersen25f27032001-04-26 23:22:31 +0000106
107typedef enum {
108 REDIRECT_INPUT = 1,
109 REDIRECT_OVERWRITE = 2,
110 REDIRECT_APPEND = 3,
111 REDIRECT_HEREIS = 4,
112 REDIRECT_IO = 5
113} redir_type;
114
115/* The descrip member of this structure is only used to make debugging
116 * output pretty */
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +0000117static const struct {int mode; int default_fd; const char *descrip;} redir_table[] = {
Eric Andersen25f27032001-04-26 23:22:31 +0000118 { 0, 0, "()" },
119 { O_RDONLY, 0, "<" },
120 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
121 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
122 { O_RDONLY, -1, "<<" },
123 { O_RDWR, 1, "<>" }
124};
125
126typedef enum {
127 PIPE_SEQ = 1,
128 PIPE_AND = 2,
129 PIPE_OR = 3,
130 PIPE_BG = 4,
131} pipe_style;
132
133/* might eventually control execution */
134typedef enum {
135 RES_NONE = 0,
136 RES_IF = 1,
137 RES_THEN = 2,
138 RES_ELIF = 3,
139 RES_ELSE = 4,
140 RES_FI = 5,
141 RES_FOR = 6,
142 RES_WHILE = 7,
143 RES_UNTIL = 8,
144 RES_DO = 9,
145 RES_DONE = 10,
Eric Andersenaf44a0e2001-04-27 07:26:12 +0000146 RES_XXXX = 11,
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000147 RES_IN = 12,
148 RES_SNTX = 13
Eric Andersen25f27032001-04-26 23:22:31 +0000149} reserved_style;
150#define FLAG_END (1<<RES_NONE)
151#define FLAG_IF (1<<RES_IF)
152#define FLAG_THEN (1<<RES_THEN)
153#define FLAG_ELIF (1<<RES_ELIF)
154#define FLAG_ELSE (1<<RES_ELSE)
155#define FLAG_FI (1<<RES_FI)
156#define FLAG_FOR (1<<RES_FOR)
157#define FLAG_WHILE (1<<RES_WHILE)
158#define FLAG_UNTIL (1<<RES_UNTIL)
159#define FLAG_DO (1<<RES_DO)
160#define FLAG_DONE (1<<RES_DONE)
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000161#define FLAG_IN (1<<RES_IN)
Eric Andersen25f27032001-04-26 23:22:31 +0000162#define FLAG_START (1<<RES_XXXX)
163
164/* This holds pointers to the various results of parsing */
165struct p_context {
166 struct child_prog *child;
167 struct pipe *list_head;
168 struct pipe *pipe;
169 struct redir_struct *pending_redirect;
170 reserved_style w;
171 int old_flag; /* for figuring out valid reserved words */
172 struct p_context *stack;
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000173 int type; /* define type of parser : ";$" common or special symbol */
Eric Andersen25f27032001-04-26 23:22:31 +0000174 /* How about quoting status? */
175};
176
177struct redir_struct {
178 redir_type type; /* type of redirection */
179 int fd; /* file descriptor being redirected */
180 int dup; /* -1, or file descriptor being duplicated */
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000181 struct redir_struct *next; /* pointer to the next redirect in the list */
Eric Andersen25f27032001-04-26 23:22:31 +0000182 glob_t word; /* *word.gl_pathv is the filename */
183};
184
185struct child_prog {
186 pid_t pid; /* 0 if exited */
187 char **argv; /* program name and arguments */
188 struct pipe *group; /* if non-NULL, first in group or subshell */
189 int subshell; /* flag, non-zero if group must be forked */
190 struct redir_struct *redirects; /* I/O redirections */
191 glob_t glob_result; /* result of parameter globbing */
192 int is_stopped; /* is the program currently running? */
193 struct pipe *family; /* pointer back to the child's parent pipe */
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000194 int sp; /* number of SPECIAL_VAR_SYMBOL */
195 int type;
Eric Andersen25f27032001-04-26 23:22:31 +0000196};
197
198struct pipe {
199 int jobid; /* job number */
200 int num_progs; /* total number of programs in job */
201 int running_progs; /* number of programs running */
202 char *text; /* name of job */
203 char *cmdbuf; /* buffer various argv's point into */
204 pid_t pgrp; /* process group ID for the job */
205 struct child_prog *progs; /* array of commands in pipe */
206 struct pipe *next; /* to track background commands */
207 int stopped_progs; /* number of programs alive, but stopped */
208 int job_context; /* bitmask defining current context */
209 pipe_style followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
210 reserved_style r_mode; /* supports if, for, while, until */
Eric Andersen25f27032001-04-26 23:22:31 +0000211};
212
Eric Andersen25f27032001-04-26 23:22:31 +0000213struct close_me {
214 int fd;
215 struct close_me *next;
216};
217
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000218struct variables {
219 char *name;
220 char *value;
221 int flg_export;
222 int flg_read_only;
223 struct variables *next;
224};
225
Eric Andersen25f27032001-04-26 23:22:31 +0000226/* globals, connect us to the outside world
227 * the first three support $?, $#, and $1 */
"Vladimir N. Oleynik"19c37012005-09-22 14:33:15 +0000228static char **global_argv;
"Vladimir N. Oleynik"4ccd2b42006-01-31 09:27:48 +0000229static int global_argc;
230static int last_return_code;
Eric Andersen25f27032001-04-26 23:22:31 +0000231extern char **environ; /* This is in <unistd.h>, but protected with __USE_GNU */
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000232
Eric Andersen25f27032001-04-26 23:22:31 +0000233/* "globals" within this file */
Eric Andersenbc604a22001-05-16 05:24:03 +0000234static char *ifs;
"Vladimir N. Oleynik"4ccd2b42006-01-31 09:27:48 +0000235static unsigned char map[256];
Eric Andersenbc604a22001-05-16 05:24:03 +0000236static int fake_mode;
237static int interactive;
238static struct close_me *close_me_head;
Eric Andersencfa88ec2001-05-11 18:08:16 +0000239static const char *cwd;
Eric Andersenc798b072001-06-22 06:23:03 +0000240static struct pipe *job_list;
Eric Andersenbc604a22001-05-16 05:24:03 +0000241static unsigned int last_bg_pid;
"Vladimir N. Oleynik"4ccd2b42006-01-31 09:27:48 +0000242static int last_jobid;
Eric Andersen6c947d22001-06-25 22:24:38 +0000243static unsigned int shell_terminal;
Eric Andersen25f27032001-04-26 23:22:31 +0000244static char *PS1;
Eric Andersen94ac2442001-05-22 19:05:18 +0000245static char *PS2;
"Vladimir N. Oleynik"19c37012005-09-22 14:33:15 +0000246static struct variables shell_ver = { "HUSH_VERSION", "0.01", 1, 1, 0 };
247static struct variables *top_vars = &shell_ver;
Eric Andersen25f27032001-04-26 23:22:31 +0000248
Eric Andersen52a97ca2001-06-22 06:49:26 +0000249
Eric Andersen25f27032001-04-26 23:22:31 +0000250#define B_CHUNK (100)
251#define B_NOSPAC 1
Eric Andersen25f27032001-04-26 23:22:31 +0000252
253typedef struct {
254 char *data;
255 int length;
256 int maxlen;
257 int quote;
258 int nonnull;
259} o_string;
260#define NULL_O_STRING {NULL,0,0,0,0}
261/* used for initialization:
262 o_string foo = NULL_O_STRING; */
263
264/* I can almost use ordinary FILE *. Is open_memstream() universally
265 * available? Where is it documented? */
266struct in_str {
267 const char *p;
Matt Kraaibdd4ece2001-05-23 17:43:00 +0000268 char peek_buf[2];
Eric Andersen25f27032001-04-26 23:22:31 +0000269 int __promptme;
270 int promptmode;
271 FILE *file;
272 int (*get) (struct in_str *);
273 int (*peek) (struct in_str *);
274};
275#define b_getch(input) ((input)->get(input))
276#define b_peek(input) ((input)->peek(input))
277
278#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
279
280struct built_in_command {
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +0000281 const char *cmd; /* name */
282 const char *descr; /* description */
Eric Andersen25f27032001-04-26 23:22:31 +0000283 int (*function) (struct child_prog *); /* function ptr */
284};
285
286/* belongs in busybox.h */
Rob Landley88621d72006-08-29 19:41:06 +0000287static int max(int a, int b) {
Eric Andersen25f27032001-04-26 23:22:31 +0000288 return (a>b)?a:b;
289}
290
291/* This should be in utility.c */
292#ifdef DEBUG_SHELL
293static void debug_printf(const char *format, ...)
294{
295 va_list args;
296 va_start(args, format);
297 vfprintf(stderr, format, args);
298 va_end(args);
299}
Rob Landley88621d72006-08-29 19:41:06 +0000300/* broken, of course, but OK for testing */
301static char *indenter(int i)
302{
303 static char blanks[]=" ";
304 return &blanks[sizeof(blanks)-i-1];
305}
Eric Andersen25f27032001-04-26 23:22:31 +0000306#else
Rob Landley88621d72006-08-29 19:41:06 +0000307#define debug_printf(...) do {;} while(0);
Eric Andersen25f27032001-04-26 23:22:31 +0000308#endif
309#define final_printf debug_printf
310
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000311static void __syntax(char *file, int line) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000312 bb_error_msg("syntax error %s:%d", file, line);
Eric Andersen25f27032001-04-26 23:22:31 +0000313}
Denis Vlasenko8de82bf2006-10-11 21:38:33 +0000314// NB: was __FILE__, but that produces full path sometimess, so...
315#define syntax() __syntax("hush.c", __LINE__)
Eric Andersen25f27032001-04-26 23:22:31 +0000316
317/* Index of subroutines: */
318/* function prototypes for builtins */
319static int builtin_cd(struct child_prog *child);
320static int builtin_env(struct child_prog *child);
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000321static int builtin_eval(struct child_prog *child);
Eric Andersen25f27032001-04-26 23:22:31 +0000322static int builtin_exec(struct child_prog *child);
323static int builtin_exit(struct child_prog *child);
324static int builtin_export(struct child_prog *child);
325static int builtin_fg_bg(struct child_prog *child);
326static int builtin_help(struct child_prog *child);
327static int builtin_jobs(struct child_prog *child);
328static int builtin_pwd(struct child_prog *child);
329static int builtin_read(struct child_prog *child);
Eric Andersenf72f5622001-05-15 23:21:41 +0000330static int builtin_set(struct child_prog *child);
Eric Andersen25f27032001-04-26 23:22:31 +0000331static int builtin_shift(struct child_prog *child);
332static int builtin_source(struct child_prog *child);
Eric Andersen25f27032001-04-26 23:22:31 +0000333static int builtin_umask(struct child_prog *child);
334static int builtin_unset(struct child_prog *child);
Eric Andersen83a2ae22001-05-07 17:59:25 +0000335static int builtin_not_written(struct child_prog *child);
Eric Andersen25f27032001-04-26 23:22:31 +0000336/* o_string manipulation: */
337static int b_check_space(o_string *o, int len);
338static int b_addchr(o_string *o, int ch);
339static void b_reset(o_string *o);
340static int b_addqchr(o_string *o, int ch, int quote);
341static int b_adduint(o_string *o, unsigned int i);
342/* in_str manipulations: */
343static int static_get(struct in_str *i);
344static int static_peek(struct in_str *i);
345static int file_get(struct in_str *i);
346static int file_peek(struct in_str *i);
347static void setup_file_in_str(struct in_str *i, FILE *f);
348static void setup_string_in_str(struct in_str *i, const char *s);
349/* close_me manipulations: */
350static void mark_open(int fd);
351static void mark_closed(int fd);
Eric Anderseneaecbf32001-10-31 10:41:31 +0000352static void close_all(void);
Eric Andersen25f27032001-04-26 23:22:31 +0000353/* "run" the final data structures: */
Eric Andersenbf7df042001-05-23 22:18:35 +0000354static int free_pipe_list(struct pipe *head, int indent);
355static int free_pipe(struct pipe *pi, int indent);
Eric Andersen25f27032001-04-26 23:22:31 +0000356/* really run the final data structures: */
357static int setup_redirects(struct child_prog *prog, int squirrel[]);
Eric Andersen25f27032001-04-26 23:22:31 +0000358static int run_list_real(struct pipe *pi);
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +0000359static void pseudo_exec(struct child_prog *child) ATTRIBUTE_NORETURN;
Eric Andersen25f27032001-04-26 23:22:31 +0000360static int run_pipe_real(struct pipe *pi);
361/* extended glob support: */
362static int globhack(const char *src, int flags, glob_t *pglob);
363static int glob_needed(const char *s);
364static int xglob(o_string *dest, int flags, glob_t *pglob);
Eric Andersen78a7c992001-05-15 16:30:25 +0000365/* variable assignment: */
Eric Andersen78a7c992001-05-15 16:30:25 +0000366static int is_assignment(const char *s);
Eric Andersen25f27032001-04-26 23:22:31 +0000367/* data structure manipulation: */
368static int setup_redirect(struct p_context *ctx, int fd, redir_type style, struct in_str *input);
369static void initialize_context(struct p_context *ctx);
370static int done_word(o_string *dest, struct p_context *ctx);
371static int done_command(struct p_context *ctx);
372static int done_pipe(struct p_context *ctx, pipe_style type);
373/* primary string parsing: */
374static int redirect_dup_num(struct in_str *input);
375static int redirect_opt_num(o_string *o);
376static int process_command_subs(o_string *dest, struct p_context *ctx, struct in_str *input, int subst_end);
377static int parse_group(o_string *dest, struct p_context *ctx, struct in_str *input, int ch);
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000378static char *lookup_param(char *src);
379static char *make_string(char **inp);
Eric Andersen25f27032001-04-26 23:22:31 +0000380static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input);
381static int parse_string(o_string *dest, struct p_context *ctx, const char *src);
382static int parse_stream(o_string *dest, struct p_context *ctx, struct in_str *input0, int end_trigger);
383/* setup: */
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000384static int parse_stream_outer(struct in_str *inp, int flag);
385static int parse_string_outer(const char *s, int flag);
Eric Andersen25f27032001-04-26 23:22:31 +0000386static int parse_file_outer(FILE *f);
Eric Andersenbafd94f2001-05-02 16:11:59 +0000387/* job management: */
Eric Andersenc798b072001-06-22 06:23:03 +0000388static int checkjobs(struct pipe* fg_pipe);
Eric Andersenbafd94f2001-05-02 16:11:59 +0000389static void insert_bg_job(struct pipe *pi);
390static void remove_bg_job(struct pipe *pi);
Eric Andersenf72f5622001-05-15 23:21:41 +0000391/* local variable support */
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000392static char **make_list_in(char **inp, char *name);
393static char *insert_var_value(char *inp);
Eric Andersenf72f5622001-05-15 23:21:41 +0000394static char *get_local_var(const char *var);
Eric Andersenf72f5622001-05-15 23:21:41 +0000395static void unset_local_var(const char *name);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000396static int set_local_var(const char *s, int flg_export);
Eric Andersen25f27032001-04-26 23:22:31 +0000397
398/* Table of built-in functions. They can be forked or not, depending on
399 * context: within pipes, they fork. As simple commands, they do not.
400 * When used in non-forking context, they can change global variables
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000401 * in the parent shell process. If forked, of course they cannot.
Eric Andersen25f27032001-04-26 23:22:31 +0000402 * For example, 'unset foo | whatever' will parse and run, but foo will
403 * still be set at the end. */
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +0000404static const struct built_in_command bltins[] = {
Eric Andersen25f27032001-04-26 23:22:31 +0000405 {"bg", "Resume a job in the background", builtin_fg_bg},
Eric Andersen83a2ae22001-05-07 17:59:25 +0000406 {"break", "Exit for, while or until loop", builtin_not_written},
Eric Andersen25f27032001-04-26 23:22:31 +0000407 {"cd", "Change working directory", builtin_cd},
Eric Andersen83a2ae22001-05-07 17:59:25 +0000408 {"continue", "Continue for, while or until loop", builtin_not_written},
Eric Andersen25f27032001-04-26 23:22:31 +0000409 {"env", "Print all environment variables", builtin_env},
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000410 {"eval", "Construct and run shell command", builtin_eval},
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000411 {"exec", "Exec command, replacing this shell with the exec'd process",
Eric Andersenf72f5622001-05-15 23:21:41 +0000412 builtin_exec},
Eric Andersen25f27032001-04-26 23:22:31 +0000413 {"exit", "Exit from shell()", builtin_exit},
414 {"export", "Set environment variable", builtin_export},
415 {"fg", "Bring job into the foreground", builtin_fg_bg},
416 {"jobs", "Lists the active jobs", builtin_jobs},
417 {"pwd", "Print current directory", builtin_pwd},
418 {"read", "Input environment variable", builtin_read},
Eric Andersen83a2ae22001-05-07 17:59:25 +0000419 {"return", "Return from a function", builtin_not_written},
Eric Andersenf72f5622001-05-15 23:21:41 +0000420 {"set", "Set/unset shell local variables", builtin_set},
Eric Andersen25f27032001-04-26 23:22:31 +0000421 {"shift", "Shift positional parameters", builtin_shift},
Eric Andersen83a2ae22001-05-07 17:59:25 +0000422 {"trap", "Trap signals", builtin_not_written},
423 {"ulimit","Controls resource limits", builtin_not_written},
Eric Andersen25f27032001-04-26 23:22:31 +0000424 {"umask","Sets file creation mask", builtin_umask},
425 {"unset", "Unset environment variable", builtin_unset},
426 {".", "Source-in and run commands in a file", builtin_source},
427 {"help", "List shell built-in commands", builtin_help},
428 {NULL, NULL, NULL}
429};
430
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000431static const char *set_cwd(void)
432{
Manuel Novoa III cad53642003-03-19 09:13:01 +0000433 if(cwd==bb_msg_unknown)
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000434 cwd = NULL; /* xgetcwd(arg) called free(arg) */
435 cwd = xgetcwd((char *)cwd);
436 if (!cwd)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000437 cwd = bb_msg_unknown;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000438 return cwd;
439}
440
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000441/* built-in 'eval' handler */
442static int builtin_eval(struct child_prog *child)
443{
444 char *str = NULL;
445 int rcode = EXIT_SUCCESS;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000446
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000447 if (child->argv[1]) {
448 str = make_string(child->argv + 1);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000449 parse_string_outer(str, FLAG_EXIT_FROM_LOOP |
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000450 FLAG_PARSE_SEMICOLON);
451 free(str);
452 rcode = last_return_code;
453 }
454 return rcode;
455}
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000456
Eric Andersen25f27032001-04-26 23:22:31 +0000457/* built-in 'cd <path>' handler */
458static int builtin_cd(struct child_prog *child)
459{
460 char *newdir;
461 if (child->argv[1] == NULL)
462 newdir = getenv("HOME");
463 else
464 newdir = child->argv[1];
465 if (chdir(newdir)) {
466 printf("cd: %s: %s\n", newdir, strerror(errno));
467 return EXIT_FAILURE;
468 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000469 set_cwd();
Eric Andersen25f27032001-04-26 23:22:31 +0000470 return EXIT_SUCCESS;
471}
472
473/* built-in 'env' handler */
"Vladimir N. Oleynik"4ccd2b42006-01-31 09:27:48 +0000474static int builtin_env(struct child_prog *dummy ATTRIBUTE_UNUSED)
Eric Andersen25f27032001-04-26 23:22:31 +0000475{
476 char **e = environ;
477 if (e == NULL) return EXIT_FAILURE;
478 for (; *e; e++) {
479 puts(*e);
480 }
481 return EXIT_SUCCESS;
482}
483
484/* built-in 'exec' handler */
485static int builtin_exec(struct child_prog *child)
486{
487 if (child->argv[1] == NULL)
488 return EXIT_SUCCESS; /* Really? */
489 child->argv++;
490 pseudo_exec(child);
491 /* never returns */
492}
493
494/* built-in 'exit' handler */
495static int builtin_exit(struct child_prog *child)
496{
497 if (child->argv[1] == NULL)
Eric Andersene67c3ce2001-05-02 02:09:36 +0000498 exit(last_return_code);
Eric Andersen25f27032001-04-26 23:22:31 +0000499 exit (atoi(child->argv[1]));
500}
501
502/* built-in 'export VAR=value' handler */
503static int builtin_export(struct child_prog *child)
504{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000505 int res = 0;
506 char *name = child->argv[1];
Eric Andersen25f27032001-04-26 23:22:31 +0000507
Eric Andersenf72f5622001-05-15 23:21:41 +0000508 if (name == NULL) {
Denis Vlasenkod9e15f22006-11-27 16:49:55 +0000509 return builtin_env(child);
Eric Andersen25f27032001-04-26 23:22:31 +0000510 }
Eric Andersenf72f5622001-05-15 23:21:41 +0000511
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000512 name = strdup(name);
Eric Andersenf72f5622001-05-15 23:21:41 +0000513
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000514 if(name) {
Eric Andersen94ac2442001-05-22 19:05:18 +0000515 char *value = strchr(name, '=');
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000516
Eric Andersen94ac2442001-05-22 19:05:18 +0000517 if (!value) {
518 char *tmp;
519 /* They are exporting something without an =VALUE */
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000520
Eric Andersen94ac2442001-05-22 19:05:18 +0000521 value = get_local_var(name);
522 if (value) {
523 size_t ln = strlen(name);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000524
Eric Andersen94ac2442001-05-22 19:05:18 +0000525 tmp = realloc(name, ln+strlen(value)+2);
526 if(tmp==NULL)
527 res = -1;
528 else {
529 sprintf(tmp+ln, "=%s", value);
530 name = tmp;
531 }
532 } else {
533 /* bash does not return an error when trying to export
534 * an undefined variable. Do likewise. */
535 res = 1;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000536 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000537 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000538 }
539 if (res<0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000540 bb_perror_msg("export");
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000541 else if(res==0)
542 res = set_local_var(name, 1);
543 else
544 res = 0;
545 free(name);
546 return res;
Eric Andersen25f27032001-04-26 23:22:31 +0000547}
548
549/* built-in 'fg' and 'bg' handler */
550static int builtin_fg_bg(struct child_prog *child)
551{
Eric Andersen0fcd4472001-05-02 20:12:03 +0000552 int i, jobnum;
553 struct pipe *pi=NULL;
Eric Andersen25f27032001-04-26 23:22:31 +0000554
Eric Andersenc798b072001-06-22 06:23:03 +0000555 if (!interactive)
556 return EXIT_FAILURE;
Eric Andersen0fcd4472001-05-02 20:12:03 +0000557 /* If they gave us no args, assume they want the last backgrounded task */
558 if (!child->argv[1]) {
Eric Andersenc798b072001-06-22 06:23:03 +0000559 for (pi = job_list; pi; pi = pi->next) {
560 if (pi->jobid == last_jobid) {
Eric Andersen0fcd4472001-05-02 20:12:03 +0000561 break;
562 }
563 }
564 if (!pi) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000565 bb_error_msg("%s: no current job", child->argv[0]);
Eric Andersen0fcd4472001-05-02 20:12:03 +0000566 return EXIT_FAILURE;
567 }
568 } else {
569 if (sscanf(child->argv[1], "%%%d", &jobnum) != 1) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000570 bb_error_msg("%s: bad argument '%s'", child->argv[0], child->argv[1]);
Eric Andersen0fcd4472001-05-02 20:12:03 +0000571 return EXIT_FAILURE;
572 }
Eric Andersenc798b072001-06-22 06:23:03 +0000573 for (pi = job_list; pi; pi = pi->next) {
Eric Andersen0fcd4472001-05-02 20:12:03 +0000574 if (pi->jobid == jobnum) {
575 break;
576 }
577 }
578 if (!pi) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000579 bb_error_msg("%s: %d: no such job", child->argv[0], jobnum);
Eric Andersen0fcd4472001-05-02 20:12:03 +0000580 return EXIT_FAILURE;
Eric Andersen25f27032001-04-26 23:22:31 +0000581 }
582 }
Eric Andersen52a97ca2001-06-22 06:49:26 +0000583
Eric Andersen25f27032001-04-26 23:22:31 +0000584 if (*child->argv[0] == 'f') {
Eric Andersen028b65b2001-06-28 01:10:11 +0000585 /* Put the job into the foreground. */
586 tcsetpgrp(shell_terminal, pi->pgrp);
Eric Andersen25f27032001-04-26 23:22:31 +0000587 }
588
589 /* Restart the processes in the job */
Eric Andersen0fcd4472001-05-02 20:12:03 +0000590 for (i = 0; i < pi->num_progs; i++)
591 pi->progs[i].is_stopped = 0;
Eric Andersen25f27032001-04-26 23:22:31 +0000592
Eric Andersen028b65b2001-06-28 01:10:11 +0000593 if ( (i=kill(- pi->pgrp, SIGCONT)) < 0) {
594 if (i == ESRCH) {
595 remove_bg_job(pi);
596 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000597 bb_perror_msg("kill (SIGCONT)");
Eric Andersen028b65b2001-06-28 01:10:11 +0000598 }
599 }
Eric Andersen25f27032001-04-26 23:22:31 +0000600
Eric Andersen0fcd4472001-05-02 20:12:03 +0000601 pi->stopped_progs = 0;
Eric Andersen25f27032001-04-26 23:22:31 +0000602 return EXIT_SUCCESS;
603}
604
605/* built-in 'help' handler */
"Vladimir N. Oleynik"4ccd2b42006-01-31 09:27:48 +0000606static int builtin_help(struct child_prog *dummy ATTRIBUTE_UNUSED)
Eric Andersen25f27032001-04-26 23:22:31 +0000607{
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +0000608 const struct built_in_command *x;
Eric Andersen25f27032001-04-26 23:22:31 +0000609
610 printf("\nBuilt-in commands:\n");
611 printf("-------------------\n");
612 for (x = bltins; x->cmd; x++) {
613 if (x->descr==NULL)
614 continue;
615 printf("%s\t%s\n", x->cmd, x->descr);
616 }
617 printf("\n\n");
618 return EXIT_SUCCESS;
619}
620
621/* built-in 'jobs' handler */
"Vladimir N. Oleynik"4ccd2b42006-01-31 09:27:48 +0000622static int builtin_jobs(struct child_prog *child ATTRIBUTE_UNUSED)
Eric Andersen25f27032001-04-26 23:22:31 +0000623{
624 struct pipe *job;
625 char *status_string;
626
Eric Andersenc798b072001-06-22 06:23:03 +0000627 for (job = job_list; job; job = job->next) {
Eric Andersen25f27032001-04-26 23:22:31 +0000628 if (job->running_progs == job->stopped_progs)
629 status_string = "Stopped";
630 else
631 status_string = "Running";
Eric Andersen52a97ca2001-06-22 06:49:26 +0000632
Eric Andersen25f27032001-04-26 23:22:31 +0000633 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->text);
634 }
635 return EXIT_SUCCESS;
636}
637
638
639/* built-in 'pwd' handler */
"Vladimir N. Oleynik"4ccd2b42006-01-31 09:27:48 +0000640static int builtin_pwd(struct child_prog *dummy ATTRIBUTE_UNUSED)
Eric Andersen25f27032001-04-26 23:22:31 +0000641{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000642 puts(set_cwd());
Eric Andersen25f27032001-04-26 23:22:31 +0000643 return EXIT_SUCCESS;
644}
645
646/* built-in 'read VAR' handler */
647static int builtin_read(struct child_prog *child)
648{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000649 int res;
Eric Andersen25f27032001-04-26 23:22:31 +0000650
651 if (child->argv[1]) {
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000652 char string[BUFSIZ];
653 char *var = 0;
Eric Andersen25f27032001-04-26 23:22:31 +0000654
Eric Andersen94ac2442001-05-22 19:05:18 +0000655 string[0] = 0; /* In case stdin has only EOF */
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000656 /* read string */
657 fgets(string, sizeof(string), stdin);
658 chomp(string);
659 var = malloc(strlen(child->argv[1])+strlen(string)+2);
660 if(var) {
661 sprintf(var, "%s=%s", child->argv[1], string);
662 res = set_local_var(var, 0);
663 } else
Eric Andersen94ac2442001-05-22 19:05:18 +0000664 res = -1;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000665 if (res)
Rob Landley5483de12006-06-20 21:35:26 +0000666 bb_perror_msg("read");
Eric Andersen94ac2442001-05-22 19:05:18 +0000667 free(var); /* So not move up to avoid breaking errno */
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000668 return res;
669 } else {
670 do res=getchar(); while(res!='\n' && res!=EOF);
671 return 0;
672 }
Eric Andersen25f27032001-04-26 23:22:31 +0000673}
674
Eric Andersenf72f5622001-05-15 23:21:41 +0000675/* built-in 'set VAR=value' handler */
676static int builtin_set(struct child_prog *child)
677{
Eric Andersenf72f5622001-05-15 23:21:41 +0000678 char *temp = child->argv[1];
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000679 struct variables *e;
Eric Andersenf72f5622001-05-15 23:21:41 +0000680
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000681 if (temp == NULL)
682 for(e = top_vars; e; e=e->next)
683 printf("%s=%s\n", e->name, e->value);
684 else
685 set_local_var(temp, 0);
686
Eric Andersenf72f5622001-05-15 23:21:41 +0000687 return EXIT_SUCCESS;
Eric Andersenf72f5622001-05-15 23:21:41 +0000688}
689
690
Eric Andersen25f27032001-04-26 23:22:31 +0000691/* Built-in 'shift' handler */
692static int builtin_shift(struct child_prog *child)
693{
694 int n=1;
695 if (child->argv[1]) {
696 n=atoi(child->argv[1]);
697 }
698 if (n>=0 && n<global_argc) {
699 /* XXX This probably breaks $0 */
700 global_argc -= n;
701 global_argv += n;
702 return EXIT_SUCCESS;
703 } else {
704 return EXIT_FAILURE;
705 }
706}
707
708/* Built-in '.' handler (read-in and execute commands from file) */
709static int builtin_source(struct child_prog *child)
710{
711 FILE *input;
712 int status;
713
714 if (child->argv[1] == NULL)
715 return EXIT_FAILURE;
716
717 /* XXX search through $PATH is missing */
718 input = fopen(child->argv[1], "r");
719 if (!input) {
Denis Vlasenkoa9595882006-09-29 21:30:43 +0000720 bb_error_msg("cannot open '%s'", child->argv[1]);
Eric Andersen25f27032001-04-26 23:22:31 +0000721 return EXIT_FAILURE;
722 }
723
724 /* Now run the file */
725 /* XXX argv and argc are broken; need to save old global_argv
726 * (pointer only is OK!) on this stack frame,
727 * set global_argv=child->argv+1, recurse, and restore. */
728 mark_open(fileno(input));
729 status = parse_file_outer(input);
730 mark_closed(fileno(input));
731 fclose(input);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +0000732 return status;
Eric Andersen25f27032001-04-26 23:22:31 +0000733}
734
Eric Andersen25f27032001-04-26 23:22:31 +0000735static int builtin_umask(struct child_prog *child)
736{
Eric Andersen83a2ae22001-05-07 17:59:25 +0000737 mode_t new_umask;
738 const char *arg = child->argv[1];
739 char *end;
740 if (arg) {
741 new_umask=strtoul(arg, &end, 8);
742 if (*end!='\0' || end == arg) {
743 return EXIT_FAILURE;
744 }
745 } else {
746 printf("%.3o\n", (unsigned int) (new_umask=umask(0)));
747 }
748 umask(new_umask);
749 return EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +0000750}
751
752/* built-in 'unset VAR' handler */
753static int builtin_unset(struct child_prog *child)
754{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000755 /* bash returned already true */
Eric Andersenf72f5622001-05-15 23:21:41 +0000756 unset_local_var(child->argv[1]);
Eric Andersen25f27032001-04-26 23:22:31 +0000757 return EXIT_SUCCESS;
758}
759
Eric Andersen83a2ae22001-05-07 17:59:25 +0000760static int builtin_not_written(struct child_prog *child)
761{
762 printf("builtin_%s not written\n",child->argv[0]);
763 return EXIT_FAILURE;
764}
765
Eric Andersen25f27032001-04-26 23:22:31 +0000766static int b_check_space(o_string *o, int len)
767{
768 /* It would be easy to drop a more restrictive policy
769 * in here, such as setting a maximum string length */
770 if (o->length + len > o->maxlen) {
771 char *old_data = o->data;
772 /* assert (data == NULL || o->maxlen != 0); */
773 o->maxlen += max(2*len, B_CHUNK);
774 o->data = realloc(o->data, 1 + o->maxlen);
775 if (o->data == NULL) {
776 free(old_data);
777 }
778 }
779 return o->data == NULL;
780}
781
782static int b_addchr(o_string *o, int ch)
783{
784 debug_printf("b_addchr: %c %d %p\n", ch, o->length, o);
785 if (b_check_space(o, 1)) return B_NOSPAC;
786 o->data[o->length] = ch;
787 o->length++;
788 o->data[o->length] = '\0';
789 return 0;
790}
791
792static void b_reset(o_string *o)
793{
794 o->length = 0;
795 o->nonnull = 0;
796 if (o->data != NULL) *o->data = '\0';
797}
798
799static void b_free(o_string *o)
800{
801 b_reset(o);
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000802 free(o->data);
Eric Andersen25f27032001-04-26 23:22:31 +0000803 o->data = NULL;
804 o->maxlen = 0;
805}
806
807/* My analysis of quoting semantics tells me that state information
808 * is associated with a destination, not a source.
809 */
810static int b_addqchr(o_string *o, int ch, int quote)
811{
812 if (quote && strchr("*?[\\",ch)) {
813 int rc;
814 rc = b_addchr(o, '\\');
815 if (rc) return rc;
816 }
817 return b_addchr(o, ch);
818}
819
820/* belongs in utility.c */
"Vladimir N. Oleynik"19c37012005-09-22 14:33:15 +0000821static char *simple_itoa(unsigned int i)
Eric Andersen25f27032001-04-26 23:22:31 +0000822{
823 /* 21 digits plus null terminator, good for 64-bit or smaller ints */
824 static char local[22];
825 char *p = &local[21];
826 *p-- = '\0';
827 do {
828 *p-- = '0' + i % 10;
829 i /= 10;
830 } while (i > 0);
831 return p + 1;
832}
833
834static int b_adduint(o_string *o, unsigned int i)
835{
836 int r;
837 char *p = simple_itoa(i);
838 /* no escape checking necessary */
839 do r=b_addchr(o, *p++); while (r==0 && *p);
840 return r;
841}
842
843static int static_get(struct in_str *i)
844{
845 int ch=*i->p++;
846 if (ch=='\0') return EOF;
847 return ch;
848}
849
850static int static_peek(struct in_str *i)
851{
852 return *i->p;
853}
854
Rob Landley88621d72006-08-29 19:41:06 +0000855static void cmdedit_set_initial_prompt(void)
Eric Andersen25f27032001-04-26 23:22:31 +0000856{
Denis Vlasenko38f63192007-01-22 09:03:07 +0000857#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Eric Andersen25f27032001-04-26 23:22:31 +0000858 PS1 = NULL;
859#else
860 PS1 = getenv("PS1");
861 if(PS1==0)
862 PS1 = "\\w \\$ ";
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000863#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000864}
865
Rob Landley88621d72006-08-29 19:41:06 +0000866static void setup_prompt_string(int promptmode, char **prompt_str)
Eric Andersen25f27032001-04-26 23:22:31 +0000867{
Eric Andersenaf44a0e2001-04-27 07:26:12 +0000868 debug_printf("setup_prompt_string %d ",promptmode);
Denis Vlasenko38f63192007-01-22 09:03:07 +0000869#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Eric Andersen25f27032001-04-26 23:22:31 +0000870 /* Set up the prompt */
871 if (promptmode == 1) {
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000872 free(PS1);
Eric Andersen25f27032001-04-26 23:22:31 +0000873 PS1=xmalloc(strlen(cwd)+4);
874 sprintf(PS1, "%s %s", cwd, ( geteuid() != 0 ) ? "$ ":"# ");
875 *prompt_str = PS1;
876 } else {
877 *prompt_str = PS2;
878 }
879#else
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000880 *prompt_str = (promptmode==1)? PS1 : PS2;
Eric Andersenaf44a0e2001-04-27 07:26:12 +0000881#endif
882 debug_printf("result %s\n",*prompt_str);
Eric Andersen25f27032001-04-26 23:22:31 +0000883}
884
Denis Vlasenko38f63192007-01-22 09:03:07 +0000885#if ENABLE_FEATURE_EDITING
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000886static line_input_t *line_input_state;
887#endif
888
Eric Andersen25f27032001-04-26 23:22:31 +0000889static void get_user_input(struct in_str *i)
890{
891 char *prompt_str;
Eric Andersen088875f2001-04-27 07:49:41 +0000892 static char the_command[BUFSIZ];
Eric Andersen25f27032001-04-26 23:22:31 +0000893
894 setup_prompt_string(i->promptmode, &prompt_str);
Denis Vlasenko38f63192007-01-22 09:03:07 +0000895#if ENABLE_FEATURE_EDITING
Eric Andersen25f27032001-04-26 23:22:31 +0000896 /*
897 ** enable command line editing only while a command line
898 ** is actually being read; otherwise, we'll end up bequeathing
899 ** atexit() handlers and other unwanted stuff to our
900 ** child processes (rob@sysgo.de)
901 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000902 read_line_input(prompt_str, the_command, BUFSIZ, line_input_state);
Eric Andersen25f27032001-04-26 23:22:31 +0000903#else
904 fputs(prompt_str, stdout);
905 fflush(stdout);
906 the_command[0]=fgetc(i->file);
907 the_command[1]='\0';
908#endif
Eric Andersen4f6753e2001-05-31 17:17:12 +0000909 fflush(stdout);
Eric Andersen25f27032001-04-26 23:22:31 +0000910 i->p = the_command;
911}
912
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000913/* This is the magic location that prints prompts
Eric Andersen25f27032001-04-26 23:22:31 +0000914 * and gets data back from the user */
915static int file_get(struct in_str *i)
916{
917 int ch;
918
919 ch = 0;
920 /* If there is data waiting, eat it up */
921 if (i->p && *i->p) {
922 ch=*i->p++;
923 } else {
924 /* need to double check i->file because we might be doing something
925 * more complicated by now, like sourcing or substituting. */
926 if (i->__promptme && interactive && i->file == stdin) {
Eric Andersen4f6753e2001-05-31 17:17:12 +0000927 while(! i->p || (interactive && strlen(i->p)==0) ) {
928 get_user_input(i);
929 }
Eric Andersen25f27032001-04-26 23:22:31 +0000930 i->promptmode=2;
Eric Andersene67c3ce2001-05-02 02:09:36 +0000931 i->__promptme = 0;
932 if (i->p && *i->p) {
933 ch=*i->p++;
934 }
Eric Andersen4ed5e372001-05-01 01:49:50 +0000935 } else {
Eric Andersene67c3ce2001-05-02 02:09:36 +0000936 ch = fgetc(i->file);
Eric Andersen25f27032001-04-26 23:22:31 +0000937 }
Eric Andersen4ed5e372001-05-01 01:49:50 +0000938
Eric Andersen25f27032001-04-26 23:22:31 +0000939 debug_printf("b_getch: got a %d\n", ch);
940 }
941 if (ch == '\n') i->__promptme=1;
942 return ch;
943}
944
945/* All the callers guarantee this routine will never be
946 * used right after a newline, so prompting is not needed.
947 */
948static int file_peek(struct in_str *i)
949{
950 if (i->p && *i->p) {
951 return *i->p;
952 } else {
Matt Kraaibdd4ece2001-05-23 17:43:00 +0000953 i->peek_buf[0] = fgetc(i->file);
954 i->peek_buf[1] = '\0';
955 i->p = i->peek_buf;
Eric Andersen25f27032001-04-26 23:22:31 +0000956 debug_printf("b_peek: got a %d\n", *i->p);
Matt Kraaibdd4ece2001-05-23 17:43:00 +0000957 return *i->p;
Eric Andersen25f27032001-04-26 23:22:31 +0000958 }
959}
960
961static void setup_file_in_str(struct in_str *i, FILE *f)
962{
963 i->peek = file_peek;
964 i->get = file_get;
965 i->__promptme=1;
966 i->promptmode=1;
967 i->file = f;
968 i->p = NULL;
969}
970
971static void setup_string_in_str(struct in_str *i, const char *s)
972{
973 i->peek = static_peek;
974 i->get = static_get;
975 i->__promptme=1;
976 i->promptmode=1;
977 i->p = s;
978}
979
980static void mark_open(int fd)
981{
982 struct close_me *new = xmalloc(sizeof(struct close_me));
983 new->fd = fd;
984 new->next = close_me_head;
985 close_me_head = new;
986}
987
988static void mark_closed(int fd)
989{
990 struct close_me *tmp;
991 if (close_me_head == NULL || close_me_head->fd != fd)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000992 bb_error_msg_and_die("corrupt close_me");
Eric Andersen25f27032001-04-26 23:22:31 +0000993 tmp = close_me_head;
994 close_me_head = close_me_head->next;
995 free(tmp);
996}
997
Eric Anderseneaecbf32001-10-31 10:41:31 +0000998static void close_all(void)
Eric Andersen25f27032001-04-26 23:22:31 +0000999{
1000 struct close_me *c;
1001 for (c=close_me_head; c; c=c->next) {
1002 close(c->fd);
1003 }
1004 close_me_head = NULL;
1005}
1006
1007/* squirrel != NULL means we squirrel away copies of stdin, stdout,
1008 * and stderr if they are redirected. */
1009static int setup_redirects(struct child_prog *prog, int squirrel[])
1010{
1011 int openfd, mode;
1012 struct redir_struct *redir;
1013
1014 for (redir=prog->redirects; redir; redir=redir->next) {
Eric Andersen817e73c2001-06-06 17:56:09 +00001015 if (redir->dup == -1 && redir->word.gl_pathv == NULL) {
1016 /* something went wrong in the parse. Pretend it didn't happen */
1017 continue;
1018 }
Eric Andersen25f27032001-04-26 23:22:31 +00001019 if (redir->dup == -1) {
1020 mode=redir_table[redir->type].mode;
1021 openfd = open(redir->word.gl_pathv[0], mode, 0666);
1022 if (openfd < 0) {
1023 /* this could get lost if stderr has been redirected, but
1024 bash and ash both lose it as well (though zsh doesn't!) */
Manuel Novoa III cad53642003-03-19 09:13:01 +00001025 bb_perror_msg("error opening %s", redir->word.gl_pathv[0]);
Eric Andersen25f27032001-04-26 23:22:31 +00001026 return 1;
1027 }
1028 } else {
1029 openfd = redir->dup;
1030 }
1031
1032 if (openfd != redir->fd) {
1033 if (squirrel && redir->fd < 3) {
1034 squirrel[redir->fd] = dup(redir->fd);
1035 }
Eric Andersen83a2ae22001-05-07 17:59:25 +00001036 if (openfd == -3) {
1037 close(openfd);
1038 } else {
1039 dup2(openfd, redir->fd);
Matt Kraaic616e532001-06-05 16:50:08 +00001040 if (redir->dup == -1)
1041 close (openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00001042 }
Eric Andersen25f27032001-04-26 23:22:31 +00001043 }
1044 }
1045 return 0;
1046}
1047
1048static void restore_redirects(int squirrel[])
1049{
1050 int i, fd;
1051 for (i=0; i<3; i++) {
1052 fd = squirrel[i];
1053 if (fd != -1) {
1054 /* No error checking. I sure wouldn't know what
1055 * to do with an error if I found one! */
1056 dup2(fd, i);
1057 close(fd);
1058 }
1059 }
1060}
1061
Eric Andersenada18ff2001-05-21 16:18:22 +00001062/* never returns */
Eric Andersen94ac2442001-05-22 19:05:18 +00001063/* XXX no exit() here. If you don't exec, use _exit instead.
1064 * The at_exit handlers apparently confuse the calling process,
1065 * in particular stdin handling. Not sure why? */
Eric Andersen25f27032001-04-26 23:22:31 +00001066static void pseudo_exec(struct child_prog *child)
1067{
Eric Andersen78a7c992001-05-15 16:30:25 +00001068 int i, rcode;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001069 char *p;
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +00001070 const struct built_in_command *x;
Eric Andersen25f27032001-04-26 23:22:31 +00001071 if (child->argv) {
Eric Andersen78a7c992001-05-15 16:30:25 +00001072 for (i=0; is_assignment(child->argv[i]); i++) {
Eric Andersenada18ff2001-05-21 16:18:22 +00001073 debug_printf("pid %d environment modification: %s\n",getpid(),child->argv[i]);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001074 p = insert_var_value(child->argv[i]);
1075 putenv(strdup(p));
1076 if (p != child->argv[i]) free(p);
Eric Andersen78a7c992001-05-15 16:30:25 +00001077 }
1078 child->argv+=i; /* XXX this hack isn't so horrible, since we are about
1079 to exit, and therefore don't need to keep data
1080 structures consistent for free() use. */
1081 /* If a variable is assigned in a forest, and nobody listens,
1082 * was it ever really set?
1083 */
Eric Andersen94ac2442001-05-22 19:05:18 +00001084 if (child->argv[0] == NULL) {
1085 _exit(EXIT_SUCCESS);
1086 }
Eric Andersen78a7c992001-05-15 16:30:25 +00001087
Eric Andersen25f27032001-04-26 23:22:31 +00001088 /*
1089 * Check if the command matches any of the builtins.
1090 * Depending on context, this might be redundant. But it's
1091 * easier to waste a few CPU cycles than it is to figure out
1092 * if this is one of those cases.
1093 */
1094 for (x = bltins; x->cmd; x++) {
1095 if (strcmp(child->argv[0], x->cmd) == 0 ) {
1096 debug_printf("builtin exec %s\n", child->argv[0]);
Eric Andersen57e6a492001-05-22 22:34:51 +00001097 rcode = x->function(child);
1098 fflush(stdout);
1099 _exit(rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00001100 }
1101 }
Eric Andersenaac75e52001-04-30 18:18:45 +00001102
1103 /* Check if the command matches any busybox internal commands
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001104 * ("applets") here.
Eric Andersenaac75e52001-04-30 18:18:45 +00001105 * FIXME: This feature is not 100% safe, since
1106 * BusyBox is not fully reentrant, so we have no guarantee the things
1107 * from the .bss are still zeroed, or that things from .data are still
1108 * at their defaults. We could exec ourself from /proc/self/exe, but I
1109 * really dislike relying on /proc for things. We could exec ourself
1110 * from global_argv[0], but if we are in a chroot, we may not be able
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001111 * to find ourself... */
Denis Vlasenko38f63192007-01-22 09:03:07 +00001112#if ENABLE_FEATURE_SH_STANDALONE_SHELL
Eric Andersenaac75e52001-04-30 18:18:45 +00001113 {
1114 int argc_l;
1115 char** argv_l=child->argv;
1116 char *name = child->argv[0];
1117
Eric Andersenaac75e52001-04-30 18:18:45 +00001118 /* Count argc for use in a second... */
1119 for(argc_l=0;*argv_l!=NULL; argv_l++, argc_l++);
1120 optind = 1;
1121 debug_printf("running applet %s\n", name);
1122 run_applet_by_name(name, argc_l, child->argv);
Eric Andersenaac75e52001-04-30 18:18:45 +00001123 }
1124#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001125 debug_printf("exec of %s\n",child->argv[0]);
1126 execvp(child->argv[0],child->argv);
Denis Vlasenkoa9595882006-09-29 21:30:43 +00001127 bb_perror_msg("cannot exec: %s",child->argv[0]);
Eric Andersen94ac2442001-05-22 19:05:18 +00001128 _exit(1);
Eric Andersen25f27032001-04-26 23:22:31 +00001129 } else if (child->group) {
1130 debug_printf("runtime nesting to group\n");
1131 interactive=0; /* crucial!!!! */
1132 rcode = run_list_real(child->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00001133 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00001134 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00001135 _exit(rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00001136 } else {
1137 /* Can happen. See what bash does with ">foo" by itself. */
1138 debug_printf("trying to pseudo_exec null command\n");
Eric Andersen94ac2442001-05-22 19:05:18 +00001139 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00001140 }
1141}
1142
Eric Andersenbafd94f2001-05-02 16:11:59 +00001143static void insert_bg_job(struct pipe *pi)
1144{
1145 struct pipe *thejob;
1146
1147 /* Linear search for the ID of the job to use */
1148 pi->jobid = 1;
Eric Andersenc798b072001-06-22 06:23:03 +00001149 for (thejob = job_list; thejob; thejob = thejob->next)
Eric Andersenbafd94f2001-05-02 16:11:59 +00001150 if (thejob->jobid >= pi->jobid)
1151 pi->jobid = thejob->jobid + 1;
1152
1153 /* add thejob to the list of running jobs */
Eric Andersenc798b072001-06-22 06:23:03 +00001154 if (!job_list) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001155 thejob = job_list = xmalloc(sizeof(*thejob));
Eric Andersenbafd94f2001-05-02 16:11:59 +00001156 } else {
Eric Andersenc798b072001-06-22 06:23:03 +00001157 for (thejob = job_list; thejob->next; thejob = thejob->next) /* nothing */;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001158 thejob->next = xmalloc(sizeof(*thejob));
1159 thejob = thejob->next;
1160 }
1161
1162 /* physically copy the struct job */
Eric Andersen0fcd4472001-05-02 20:12:03 +00001163 memcpy(thejob, pi, sizeof(struct pipe));
Eric Andersenbafd94f2001-05-02 16:11:59 +00001164 thejob->next = NULL;
1165 thejob->running_progs = thejob->num_progs;
1166 thejob->stopped_progs = 0;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001167 thejob->text = xmalloc(BUFSIZ); /* cmdedit buffer size */
Eric Andersen1a6d39b2001-05-08 05:11:54 +00001168
1169 //if (pi->progs[0] && pi->progs[0].argv && pi->progs[0].argv[0])
1170 {
1171 char *bar=thejob->text;
1172 char **foo=pi->progs[0].argv;
1173 while(foo && *foo) {
1174 bar += sprintf(bar, "%s ", *foo++);
1175 }
1176 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00001177
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001178 /* we don't wait for background thejobs to return -- append it
Eric Andersenbafd94f2001-05-02 16:11:59 +00001179 to the list of backgrounded thejobs and leave it alone */
Eric Andersen1a6d39b2001-05-08 05:11:54 +00001180 printf("[%d] %d\n", thejob->jobid, thejob->progs[0].pid);
1181 last_bg_pid = thejob->progs[0].pid;
Eric Andersenc798b072001-06-22 06:23:03 +00001182 last_jobid = thejob->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001183}
1184
Eric Andersenc798b072001-06-22 06:23:03 +00001185/* remove a backgrounded job */
Eric Andersenbafd94f2001-05-02 16:11:59 +00001186static void remove_bg_job(struct pipe *pi)
1187{
1188 struct pipe *prev_pipe;
1189
Eric Andersenc798b072001-06-22 06:23:03 +00001190 if (pi == job_list) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001191 job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001192 } else {
Eric Andersenc798b072001-06-22 06:23:03 +00001193 prev_pipe = job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001194 while (prev_pipe->next != pi)
1195 prev_pipe = prev_pipe->next;
1196 prev_pipe->next = pi->next;
1197 }
Eric Andersen028b65b2001-06-28 01:10:11 +00001198 if (job_list)
1199 last_jobid = job_list->jobid;
1200 else
1201 last_jobid = 0;
1202
Eric Andersen52a97ca2001-06-22 06:49:26 +00001203 pi->stopped_progs = 0;
Eric Andersenbf7df042001-05-23 22:18:35 +00001204 free_pipe(pi, 0);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001205 free(pi);
1206}
1207
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001208/* Checks to see if any processes have exited -- if they
Eric Andersenbafd94f2001-05-02 16:11:59 +00001209 have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00001210static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00001211{
Eric Andersenc798b072001-06-22 06:23:03 +00001212 int attributes;
1213 int status;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001214 int prognum = 0;
1215 struct pipe *pi;
1216 pid_t childpid;
1217
Eric Andersenc798b072001-06-22 06:23:03 +00001218 attributes = WUNTRACED;
1219 if (fg_pipe==NULL) {
1220 attributes |= WNOHANG;
1221 }
1222
1223 while ((childpid = waitpid(-1, &status, attributes)) > 0) {
1224 if (fg_pipe) {
1225 int i, rcode = 0;
1226 for (i=0; i < fg_pipe->num_progs; i++) {
1227 if (fg_pipe->progs[i].pid == childpid) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001228 if (i==fg_pipe->num_progs-1)
Eric Andersenc798b072001-06-22 06:23:03 +00001229 rcode=WEXITSTATUS(status);
1230 (fg_pipe->num_progs)--;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001231 return rcode;
Eric Andersenc798b072001-06-22 06:23:03 +00001232 }
1233 }
1234 }
1235
1236 for (pi = job_list; pi; pi = pi->next) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00001237 prognum = 0;
Eric Andersen52a97ca2001-06-22 06:49:26 +00001238 while (prognum < pi->num_progs && pi->progs[prognum].pid != childpid) {
1239 prognum++;
1240 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00001241 if (prognum < pi->num_progs)
1242 break;
1243 }
1244
Eric Andersen99785762001-05-22 21:37:48 +00001245 if(pi==NULL) {
1246 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
1247 continue;
1248 }
Eric Andersenaeb44c42001-05-22 20:29:00 +00001249
Eric Andersenbafd94f2001-05-02 16:11:59 +00001250 if (WIFEXITED(status) || WIFSIGNALED(status)) {
1251 /* child exited */
1252 pi->running_progs--;
1253 pi->progs[prognum].pid = 0;
1254
1255 if (!pi->running_progs) {
1256 printf(JOB_STATUS_FORMAT, pi->jobid, "Done", pi->text);
1257 remove_bg_job(pi);
1258 }
1259 } else {
1260 /* child stopped */
1261 pi->stopped_progs++;
1262 pi->progs[prognum].is_stopped = 1;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001263 }
1264 }
1265
Matt Kraai80abc452001-05-02 21:48:17 +00001266 if (childpid == -1 && errno != ECHILD)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001267 bb_perror_msg("waitpid");
Matt Kraai80abc452001-05-02 21:48:17 +00001268
Eric Andersenbafd94f2001-05-02 16:11:59 +00001269 /* move the shell to the foreground */
Eric Andersen028b65b2001-06-28 01:10:11 +00001270 //if (interactive && tcsetpgrp(shell_terminal, getpgid(0)))
Manuel Novoa III cad53642003-03-19 09:13:01 +00001271 // bb_perror_msg("tcsetpgrp-2");
Eric Andersenc798b072001-06-22 06:23:03 +00001272 return -1;
Eric Andersenada18ff2001-05-21 16:18:22 +00001273}
1274
Eric Andersen25f27032001-04-26 23:22:31 +00001275/* run_pipe_real() starts all the jobs, but doesn't wait for anything
Eric Andersenc798b072001-06-22 06:23:03 +00001276 * to finish. See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00001277 *
1278 * return code is normally -1, when the caller has to wait for children
1279 * to finish to determine the exit status of the pipe. If the pipe
1280 * is a simple builtin command, however, the action is done by the
1281 * time run_pipe_real returns, and the exit code is provided as the
1282 * return value.
1283 *
1284 * The input of the pipe is always stdin, the output is always
1285 * stdout. The outpipe[] mechanism in BusyBox-0.48 lash is bogus,
1286 * because it tries to avoid running the command substitution in
1287 * subshell, when that is in fact necessary. The subshell process
1288 * now has its stdout directed to the input of the appropriate pipe,
1289 * so this routine is noticeably simpler.
1290 */
1291static int run_pipe_real(struct pipe *pi)
1292{
1293 int i;
1294 int nextin, nextout;
1295 int pipefds[2]; /* pipefds[0] is for reading */
Rob Landley53702e52006-07-19 21:43:53 +00001296 struct child_prog *child;
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +00001297 const struct built_in_command *x;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001298 char *p;
Eric Andersen25f27032001-04-26 23:22:31 +00001299
1300 nextin = 0;
Eric Andersenada18ff2001-05-21 16:18:22 +00001301 pi->pgrp = -1;
Eric Andersen25f27032001-04-26 23:22:31 +00001302
1303 /* Check if this is a simple builtin (not part of a pipe).
1304 * Builtins within pipes have to fork anyway, and are handled in
1305 * pseudo_exec. "echo foo | read bar" doesn't work on bash, either.
1306 */
Rob Landley53702e52006-07-19 21:43:53 +00001307 child = & (pi->progs[0]);
Eric Andersen04407e52001-06-07 16:42:05 +00001308 if (pi->num_progs == 1 && child->group && child->subshell == 0) {
1309 int squirrel[] = {-1, -1, -1};
1310 int rcode;
1311 debug_printf("non-subshell grouping\n");
1312 setup_redirects(child, squirrel);
1313 /* XXX could we merge code with following builtin case,
1314 * by creating a pseudo builtin that calls run_list_real? */
1315 rcode = run_list_real(child->group);
1316 restore_redirects(squirrel);
1317 return rcode;
1318 } else if (pi->num_progs == 1 && pi->progs[0].argv != NULL) {
Eric Andersen78a7c992001-05-15 16:30:25 +00001319 for (i=0; is_assignment(child->argv[i]); i++) { /* nothing */ }
1320 if (i!=0 && child->argv[i]==NULL) {
1321 /* assignments, but no command: set the local environment */
1322 for (i=0; child->argv[i]!=NULL; i++) {
Eric Andersen99785762001-05-22 21:37:48 +00001323
1324 /* Ok, this case is tricky. We have to decide if this is a
1325 * local variable, or an already exported variable. If it is
1326 * already exported, we have to export the new value. If it is
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001327 * not exported, we need only set this as a local variable.
Eric Andersen99785762001-05-22 21:37:48 +00001328 * This junk is all to decide whether or not to export this
1329 * variable. */
1330 int export_me=0;
1331 char *name, *value;
Rob Landleyd921b2e2006-08-03 15:41:12 +00001332 name = xstrdup(child->argv[i]);
Eric Andersen04407e52001-06-07 16:42:05 +00001333 debug_printf("Local environment set: %s\n", name);
Eric Andersen99785762001-05-22 21:37:48 +00001334 value = strchr(name, '=');
1335 if (value)
1336 *value=0;
1337 if ( get_local_var(name)) {
1338 export_me=1;
1339 }
1340 free(name);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001341 p = insert_var_value(child->argv[i]);
1342 set_local_var(p, export_me);
1343 if (p != child->argv[i]) free(p);
Eric Andersen78a7c992001-05-15 16:30:25 +00001344 }
1345 return EXIT_SUCCESS; /* don't worry about errors in set_local_var() yet */
1346 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001347 for (i = 0; is_assignment(child->argv[i]); i++) {
1348 p = insert_var_value(child->argv[i]);
1349 putenv(strdup(p));
1350 if (p != child->argv[i]) {
1351 child->sp--;
1352 free(p);
1353 }
1354 }
1355 if (child->sp) {
1356 char * str = NULL;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001357
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001358 str = make_string((child->argv + i));
1359 parse_string_outer(str, FLAG_EXIT_FROM_LOOP | FLAG_REPARSING);
1360 free(str);
1361 return last_return_code;
1362 }
Eric Andersen25f27032001-04-26 23:22:31 +00001363 for (x = bltins; x->cmd; x++) {
Eric Andersen78a7c992001-05-15 16:30:25 +00001364 if (strcmp(child->argv[i], x->cmd) == 0 ) {
Eric Andersen25f27032001-04-26 23:22:31 +00001365 int squirrel[] = {-1, -1, -1};
1366 int rcode;
Eric Andersen78a7c992001-05-15 16:30:25 +00001367 if (x->function == builtin_exec && child->argv[i+1]==NULL) {
Eric Andersen83a2ae22001-05-07 17:59:25 +00001368 debug_printf("magic exec\n");
1369 setup_redirects(child,NULL);
1370 return EXIT_SUCCESS;
1371 }
Eric Andersen25f27032001-04-26 23:22:31 +00001372 debug_printf("builtin inline %s\n", child->argv[0]);
1373 /* XXX setup_redirects acts on file descriptors, not FILEs.
1374 * This is perfect for work that comes after exec().
1375 * Is it really safe for inline use? Experimentally,
1376 * things seem to work with glibc. */
1377 setup_redirects(child, squirrel);
Eric Andersen78a7c992001-05-15 16:30:25 +00001378 child->argv+=i; /* XXX horrible hack */
Eric Andersen25f27032001-04-26 23:22:31 +00001379 rcode = x->function(child);
Eric Andersen78a7c992001-05-15 16:30:25 +00001380 child->argv-=i; /* XXX restore hack so free() can work right */
Eric Andersen25f27032001-04-26 23:22:31 +00001381 restore_redirects(squirrel);
1382 return rcode;
1383 }
1384 }
1385 }
1386
1387 for (i = 0; i < pi->num_progs; i++) {
1388 child = & (pi->progs[i]);
1389
1390 /* pipes are inserted between pairs of commands */
1391 if ((i + 1) < pi->num_progs) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001392 if (pipe(pipefds)<0) bb_perror_msg_and_die("pipe");
Eric Andersen25f27032001-04-26 23:22:31 +00001393 nextout = pipefds[1];
1394 } else {
1395 nextout=1;
1396 pipefds[0] = -1;
1397 }
1398
1399 /* XXX test for failed fork()? */
Eric Andersene3efc922004-04-12 17:59:24 +00001400#if !defined(__UCLIBC__) || defined(__ARCH_HAS_MMU__)
Eric Andersen72f9a422001-10-28 05:12:20 +00001401 if (!(child->pid = fork()))
1402#else
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001403 if (!(child->pid = vfork()))
Eric Andersen72f9a422001-10-28 05:12:20 +00001404#endif
1405 {
Eric Andersen6c947d22001-06-25 22:24:38 +00001406 /* Set the handling for job control signals back to the default. */
1407 signal(SIGINT, SIG_DFL);
1408 signal(SIGQUIT, SIG_DFL);
Eric Andersen7467c8d2001-07-12 20:26:32 +00001409 signal(SIGTERM, SIG_DFL);
Eric Andersen6c947d22001-06-25 22:24:38 +00001410 signal(SIGTSTP, SIG_DFL);
1411 signal(SIGTTIN, SIG_DFL);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001412 signal(SIGTTOU, SIG_DFL);
Eric Andersen6c947d22001-06-25 22:24:38 +00001413 signal(SIGCHLD, SIG_DFL);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001414
Eric Andersen25f27032001-04-26 23:22:31 +00001415 close_all();
1416
1417 if (nextin != 0) {
1418 dup2(nextin, 0);
1419 close(nextin);
1420 }
1421 if (nextout != 1) {
1422 dup2(nextout, 1);
1423 close(nextout);
1424 }
1425 if (pipefds[0]!=-1) {
1426 close(pipefds[0]); /* opposite end of our output pipe */
1427 }
1428
1429 /* Like bash, explicit redirects override pipes,
1430 * and the pipe fd is available for dup'ing. */
1431 setup_redirects(child,NULL);
Eric Andersen52a97ca2001-06-22 06:49:26 +00001432
Eric Andersenada18ff2001-05-21 16:18:22 +00001433 if (interactive && pi->followup!=PIPE_BG) {
Eric Andersenbfae2522001-05-17 00:14:27 +00001434 /* If we (the child) win the race, put ourselves in the process
1435 * group whose leader is the first process in this pipe. */
Eric Andersen0fcd4472001-05-02 20:12:03 +00001436 if (pi->pgrp < 0) {
Eric Andersenada18ff2001-05-21 16:18:22 +00001437 pi->pgrp = getpid();
Eric Andersen0fcd4472001-05-02 20:12:03 +00001438 }
Eric Andersen0fcd4472001-05-02 20:12:03 +00001439 if (setpgid(0, pi->pgrp) == 0) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001440 tcsetpgrp(2, pi->pgrp);
Eric Andersen0fcd4472001-05-02 20:12:03 +00001441 }
1442 }
Eric Andersen25f27032001-04-26 23:22:31 +00001443
1444 pseudo_exec(child);
1445 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001446
Eric Andersen52a97ca2001-06-22 06:49:26 +00001447
1448 /* put our child in the process group whose leader is the
1449 first process in this pipe */
Eric Andersen0fcd4472001-05-02 20:12:03 +00001450 if (pi->pgrp < 0) {
1451 pi->pgrp = child->pid;
Eric Andersen25f27032001-04-26 23:22:31 +00001452 }
Eric Andersen0fcd4472001-05-02 20:12:03 +00001453 /* Don't check for errors. The child may be dead already,
1454 * in which case setpgid returns error code EACCES. */
1455 setpgid(child->pid, pi->pgrp);
1456
Eric Andersen25f27032001-04-26 23:22:31 +00001457 if (nextin != 0)
1458 close(nextin);
1459 if (nextout != 1)
1460 close(nextout);
1461
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001462 /* If there isn't another process, nextin is garbage
Eric Andersen25f27032001-04-26 23:22:31 +00001463 but it doesn't matter */
1464 nextin = pipefds[0];
1465 }
1466 return -1;
1467}
1468
1469static int run_list_real(struct pipe *pi)
1470{
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001471 char *save_name = NULL;
1472 char **list = NULL;
1473 char **save_list = NULL;
1474 struct pipe *rpipe;
1475 int flag_rep = 0;
1476 int save_num_progs;
1477 int rcode=0, flag_skip=1;
1478 int flag_restore = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00001479 int if_code=0, next_if_code=0; /* need double-buffer to handle elif */
Eric Andersen4ed5e372001-05-01 01:49:50 +00001480 reserved_style rmode, skip_more_in_this_rmode=RES_XXXX;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001481 /* check syntax for "for" */
1482 for (rpipe = pi; rpipe; rpipe = rpipe->next) {
1483 if ((rpipe->r_mode == RES_IN ||
1484 rpipe->r_mode == RES_FOR) &&
1485 (rpipe->next == NULL)) {
1486 syntax();
1487 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001488 }
1489 if ((rpipe->r_mode == RES_IN &&
1490 (rpipe->next->r_mode == RES_IN &&
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001491 rpipe->next->progs->argv != NULL))||
1492 (rpipe->r_mode == RES_FOR &&
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001493 rpipe->next->r_mode != RES_IN)) {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001494 syntax();
1495 return 1;
1496 }
1497 }
1498 for (; pi; pi = (flag_restore != 0) ? rpipe : pi->next) {
1499 if (pi->r_mode == RES_WHILE || pi->r_mode == RES_UNTIL ||
1500 pi->r_mode == RES_FOR) {
1501 flag_restore = 0;
1502 if (!rpipe) {
1503 flag_rep = 0;
1504 rpipe = pi;
1505 }
1506 }
Eric Andersen25f27032001-04-26 23:22:31 +00001507 rmode = pi->r_mode;
Eric Andersen4ed5e372001-05-01 01:49:50 +00001508 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 +00001509 if (rmode == skip_more_in_this_rmode && flag_skip) {
1510 if (pi->followup == PIPE_SEQ) flag_skip=0;
1511 continue;
1512 }
1513 flag_skip = 1;
Eric Andersen4ed5e372001-05-01 01:49:50 +00001514 skip_more_in_this_rmode = RES_XXXX;
Eric Andersen25f27032001-04-26 23:22:31 +00001515 if (rmode == RES_THEN || rmode == RES_ELSE) if_code = next_if_code;
1516 if (rmode == RES_THEN && if_code) continue;
1517 if (rmode == RES_ELSE && !if_code) continue;
Eric Andersen99fcd162004-04-12 21:41:29 +00001518 if (rmode == RES_ELIF && !if_code) break;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001519 if (rmode == RES_FOR && pi->num_progs) {
1520 if (!list) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001521 /* if no variable values after "in" we skip "for" */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001522 if (!pi->next->progs->argv) continue;
1523 /* create list of variable values */
1524 list = make_list_in(pi->next->progs->argv,
1525 pi->progs->argv[0]);
1526 save_list = list;
1527 save_name = pi->progs->argv[0];
1528 pi->progs->argv[0] = NULL;
1529 flag_rep = 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001530 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001531 if (!(*list)) {
1532 free(pi->progs->argv[0]);
1533 free(save_list);
1534 list = NULL;
1535 flag_rep = 0;
1536 pi->progs->argv[0] = save_name;
1537 pi->progs->glob_result.gl_pathv[0] =
1538 pi->progs->argv[0];
1539 continue;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001540 } else {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001541 /* insert new value from list for variable */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001542 if (pi->progs->argv[0])
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001543 free(pi->progs->argv[0]);
1544 pi->progs->argv[0] = *list++;
1545 pi->progs->glob_result.gl_pathv[0] =
1546 pi->progs->argv[0];
1547 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001548 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001549 if (rmode == RES_IN) continue;
1550 if (rmode == RES_DO) {
1551 if (!flag_rep) continue;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001552 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001553 if ((rmode == RES_DONE)) {
1554 if (flag_rep) {
1555 flag_restore = 1;
1556 } else {
1557 rpipe = NULL;
1558 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001559 }
Eric Andersen4ed5e372001-05-01 01:49:50 +00001560 if (pi->num_progs == 0) continue;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001561 save_num_progs = pi->num_progs; /* save number of programs */
Eric Andersen25f27032001-04-26 23:22:31 +00001562 rcode = run_pipe_real(pi);
Eric Andersen04407e52001-06-07 16:42:05 +00001563 debug_printf("run_pipe_real returned %d\n",rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00001564 if (rcode!=-1) {
1565 /* We only ran a builtin: rcode was set by the return value
1566 * of run_pipe_real(), and we don't need to wait for anything. */
1567 } else if (pi->followup==PIPE_BG) {
1568 /* XXX check bash's behavior with nontrivial pipes */
1569 /* XXX compute jobid */
1570 /* XXX what does bash do with attempts to background builtins? */
Eric Andersenbafd94f2001-05-02 16:11:59 +00001571 insert_bg_job(pi);
Eric Andersen25f27032001-04-26 23:22:31 +00001572 rcode = EXIT_SUCCESS;
1573 } else {
1574 if (interactive) {
1575 /* move the new process group into the foreground */
Eric Andersen6c947d22001-06-25 22:24:38 +00001576 if (tcsetpgrp(shell_terminal, pi->pgrp) && errno != ENOTTY)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001577 bb_perror_msg("tcsetpgrp-3");
Eric Andersenc798b072001-06-22 06:23:03 +00001578 rcode = checkjobs(pi);
Eric Andersen52a97ca2001-06-22 06:49:26 +00001579 /* move the shell to the foreground */
Eric Andersen6c947d22001-06-25 22:24:38 +00001580 if (tcsetpgrp(shell_terminal, getpgid(0)) && errno != ENOTTY)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001581 bb_perror_msg("tcsetpgrp-4");
Eric Andersen25f27032001-04-26 23:22:31 +00001582 } else {
Eric Andersenc798b072001-06-22 06:23:03 +00001583 rcode = checkjobs(pi);
Eric Andersen25f27032001-04-26 23:22:31 +00001584 }
Eric Andersen52a97ca2001-06-22 06:49:26 +00001585 debug_printf("checkjobs returned %d\n",rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00001586 }
1587 last_return_code=rcode;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001588 pi->num_progs = save_num_progs; /* restore number of programs */
Eric Andersen25f27032001-04-26 23:22:31 +00001589 if ( rmode == RES_IF || rmode == RES_ELIF )
1590 next_if_code=rcode; /* can be overwritten a number of times */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001591 if (rmode == RES_WHILE)
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001592 flag_rep = !last_return_code;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001593 if (rmode == RES_UNTIL)
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001594 flag_rep = last_return_code;
Eric Andersen25f27032001-04-26 23:22:31 +00001595 if ( (rcode==EXIT_SUCCESS && pi->followup==PIPE_OR) ||
1596 (rcode!=EXIT_SUCCESS && pi->followup==PIPE_AND) )
Eric Andersen4ed5e372001-05-01 01:49:50 +00001597 skip_more_in_this_rmode=rmode;
Eric Andersen028b65b2001-06-28 01:10:11 +00001598 checkjobs(NULL);
Eric Andersen25f27032001-04-26 23:22:31 +00001599 }
1600 return rcode;
1601}
1602
Eric Andersen25f27032001-04-26 23:22:31 +00001603/* return code is the exit status of the pipe */
Eric Andersenbf7df042001-05-23 22:18:35 +00001604static int free_pipe(struct pipe *pi, int indent)
Eric Andersen25f27032001-04-26 23:22:31 +00001605{
1606 char **p;
1607 struct child_prog *child;
1608 struct redir_struct *r, *rnext;
1609 int a, i, ret_code=0;
Eric Andersen52a97ca2001-06-22 06:49:26 +00001610
1611 if (pi->stopped_progs > 0)
1612 return ret_code;
Rob Landley88621d72006-08-29 19:41:06 +00001613 final_printf("%s run pipe: (pid %d)\n",indenter(indent),getpid());
Eric Andersen25f27032001-04-26 23:22:31 +00001614 for (i=0; i<pi->num_progs; i++) {
1615 child = &pi->progs[i];
Rob Landley88621d72006-08-29 19:41:06 +00001616 final_printf("%s command %d:\n",indenter(indent),i);
Eric Andersen25f27032001-04-26 23:22:31 +00001617 if (child->argv) {
1618 for (a=0,p=child->argv; *p; a++,p++) {
Rob Landley88621d72006-08-29 19:41:06 +00001619 final_printf("%s argv[%d] = %s\n",indenter(indent),a,*p);
Eric Andersen25f27032001-04-26 23:22:31 +00001620 }
1621 globfree(&child->glob_result);
1622 child->argv=NULL;
1623 } else if (child->group) {
Rob Landley88621d72006-08-29 19:41:06 +00001624 final_printf("%s begin group (subshell:%d)\n",indenter(indent), child->subshell);
Eric Andersenbf7df042001-05-23 22:18:35 +00001625 ret_code = free_pipe_list(child->group,indent+3);
Rob Landley88621d72006-08-29 19:41:06 +00001626 final_printf("%s end group\n",indenter(indent));
Eric Andersen25f27032001-04-26 23:22:31 +00001627 } else {
Rob Landley88621d72006-08-29 19:41:06 +00001628 final_printf("%s (nil)\n",indenter(indent));
Eric Andersen25f27032001-04-26 23:22:31 +00001629 }
1630 for (r=child->redirects; r; r=rnext) {
Rob Landley88621d72006-08-29 19:41:06 +00001631 final_printf("%s redirect %d%s", indenter(indent), r->fd, redir_table[r->type].descrip);
Eric Andersen25f27032001-04-26 23:22:31 +00001632 if (r->dup == -1) {
Eric Andersen817e73c2001-06-06 17:56:09 +00001633 /* guard against the case >$FOO, where foo is unset or blank */
1634 if (r->word.gl_pathv) {
1635 final_printf(" %s\n", *r->word.gl_pathv);
1636 globfree(&r->word);
1637 }
Eric Andersen25f27032001-04-26 23:22:31 +00001638 } else {
1639 final_printf("&%d\n", r->dup);
1640 }
1641 rnext=r->next;
1642 free(r);
1643 }
1644 child->redirects=NULL;
1645 }
1646 free(pi->progs); /* children are an array, they get freed all at once */
1647 pi->progs=NULL;
1648 return ret_code;
1649}
1650
Eric Andersenbf7df042001-05-23 22:18:35 +00001651static int free_pipe_list(struct pipe *head, int indent)
Eric Andersen25f27032001-04-26 23:22:31 +00001652{
1653 int rcode=0; /* if list has no members */
1654 struct pipe *pi, *next;
Eric Andersen25f27032001-04-26 23:22:31 +00001655 for (pi=head; pi; pi=next) {
Rob Landley88621d72006-08-29 19:41:06 +00001656 final_printf("%s pipe reserved mode %d\n", indenter(indent), pi->r_mode);
Eric Andersenbf7df042001-05-23 22:18:35 +00001657 rcode = free_pipe(pi, indent);
Rob Landley88621d72006-08-29 19:41:06 +00001658 final_printf("%s pipe followup code %d\n", indenter(indent), pi->followup);
Eric Andersen25f27032001-04-26 23:22:31 +00001659 next=pi->next;
1660 pi->next=NULL;
1661 free(pi);
1662 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001663 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00001664}
1665
1666/* Select which version we will use */
1667static int run_list(struct pipe *pi)
1668{
1669 int rcode=0;
1670 if (fake_mode==0) {
1671 rcode = run_list_real(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001672 }
Eric Andersenbf7df042001-05-23 22:18:35 +00001673 /* free_pipe_list has the side effect of clearing memory
Eric Andersen25f27032001-04-26 23:22:31 +00001674 * In the long run that function can be merged with run_list_real,
1675 * but doing that now would hobble the debugging effort. */
Eric Andersenbf7df042001-05-23 22:18:35 +00001676 free_pipe_list(pi,0);
Eric Andersen25f27032001-04-26 23:22:31 +00001677 return rcode;
1678}
1679
1680/* The API for glob is arguably broken. This routine pushes a non-matching
1681 * string into the output structure, removing non-backslashed backslashes.
1682 * If someone can prove me wrong, by performing this function within the
1683 * original glob(3) api, feel free to rewrite this routine into oblivion.
1684 * Return code (0 vs. GLOB_NOSPACE) matches glob(3).
1685 * XXX broken if the last character is '\\', check that before calling.
1686 */
1687static int globhack(const char *src, int flags, glob_t *pglob)
1688{
Eric Andersen817e73c2001-06-06 17:56:09 +00001689 int cnt=0, pathc;
Eric Andersen25f27032001-04-26 23:22:31 +00001690 const char *s;
1691 char *dest;
Eric Andersen817e73c2001-06-06 17:56:09 +00001692 for (cnt=1, s=src; s && *s; s++) {
Eric Andersen25f27032001-04-26 23:22:31 +00001693 if (*s == '\\') s++;
1694 cnt++;
1695 }
1696 dest = malloc(cnt);
1697 if (!dest) return GLOB_NOSPACE;
1698 if (!(flags & GLOB_APPEND)) {
1699 pglob->gl_pathv=NULL;
1700 pglob->gl_pathc=0;
1701 pglob->gl_offs=0;
1702 pglob->gl_offs=0;
1703 }
1704 pathc = ++pglob->gl_pathc;
1705 pglob->gl_pathv = realloc(pglob->gl_pathv, (pathc+1)*sizeof(*pglob->gl_pathv));
1706 if (pglob->gl_pathv == NULL) return GLOB_NOSPACE;
1707 pglob->gl_pathv[pathc-1]=dest;
1708 pglob->gl_pathv[pathc]=NULL;
Eric Andersen817e73c2001-06-06 17:56:09 +00001709 for (s=src; s && *s; s++, dest++) {
Eric Andersen25f27032001-04-26 23:22:31 +00001710 if (*s == '\\') s++;
1711 *dest = *s;
1712 }
1713 *dest='\0';
1714 return 0;
1715}
1716
1717/* XXX broken if the last character is '\\', check that before calling */
1718static int glob_needed(const char *s)
1719{
1720 for (; *s; s++) {
1721 if (*s == '\\') s++;
1722 if (strchr("*[?",*s)) return 1;
1723 }
1724 return 0;
1725}
1726
Eric Andersen25f27032001-04-26 23:22:31 +00001727static int xglob(o_string *dest, int flags, glob_t *pglob)
1728{
1729 int gr;
1730
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001731 /* short-circuit for null word */
Eric Andersen25f27032001-04-26 23:22:31 +00001732 /* we can code this better when the debug_printf's are gone */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001733 if (dest->length == 0) {
1734 if (dest->nonnull) {
1735 /* bash man page calls this an "explicit" null */
1736 gr = globhack(dest->data, flags, pglob);
1737 debug_printf("globhack returned %d\n",gr);
1738 } else {
Eric Andersen25f27032001-04-26 23:22:31 +00001739 return 0;
1740 }
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001741 } else if (glob_needed(dest->data)) {
Eric Andersen25f27032001-04-26 23:22:31 +00001742 gr = glob(dest->data, flags, NULL, pglob);
1743 debug_printf("glob returned %d\n",gr);
1744 if (gr == GLOB_NOMATCH) {
1745 /* quote removal, or more accurately, backslash removal */
1746 gr = globhack(dest->data, flags, pglob);
1747 debug_printf("globhack returned %d\n",gr);
1748 }
1749 } else {
1750 gr = globhack(dest->data, flags, pglob);
1751 debug_printf("globhack returned %d\n",gr);
1752 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001753 if (gr == GLOB_NOSPACE)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001754 bb_error_msg_and_die("out of memory during glob");
Eric Andersen25f27032001-04-26 23:22:31 +00001755 if (gr != 0) { /* GLOB_ABORTED ? */
Manuel Novoa III cad53642003-03-19 09:13:01 +00001756 bb_error_msg("glob(3) error %d",gr);
Eric Andersen25f27032001-04-26 23:22:31 +00001757 }
1758 /* globprint(glob_target); */
1759 return gr;
1760}
1761
Eric Andersenf72f5622001-05-15 23:21:41 +00001762/* This is used to get/check local shell variables */
1763static char *get_local_var(const char *s)
1764{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001765 struct variables *cur;
Eric Andersenf72f5622001-05-15 23:21:41 +00001766
1767 if (!s)
1768 return NULL;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001769 for (cur = top_vars; cur; cur=cur->next)
1770 if(strcmp(cur->name, s)==0)
1771 return cur->value;
Eric Andersenf72f5622001-05-15 23:21:41 +00001772 return NULL;
1773}
1774
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001775/* This is used to set local shell variables
1776 flg_export==0 if only local (not exporting) variable
1777 flg_export==1 if "new" exporting environ
1778 flg_export>1 if current startup environ (not call putenv()) */
1779static int set_local_var(const char *s, int flg_export)
Eric Andersen78a7c992001-05-15 16:30:25 +00001780{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001781 char *name, *value;
Eric Andersen20a69a72001-05-15 17:24:44 +00001782 int result=0;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001783 struct variables *cur;
Eric Andersen20a69a72001-05-15 17:24:44 +00001784
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001785 name=strdup(s);
Eric Andersen20a69a72001-05-15 17:24:44 +00001786
1787 /* Assume when we enter this function that we are already in
1788 * NAME=VALUE format. So the first order of business is to
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001789 * split 's' on the '=' into 'name' and 'value' */
Eric Andersen20a69a72001-05-15 17:24:44 +00001790 value = strchr(name, '=');
Eric Andersen99785762001-05-22 21:37:48 +00001791 if (value==0 && ++value==0) {
1792 free(name);
1793 return -1;
1794 }
1795 *value++ = 0;
Eric Andersen20a69a72001-05-15 17:24:44 +00001796
Eric Andersen99785762001-05-22 21:37:48 +00001797 for(cur = top_vars; cur; cur = cur->next) {
1798 if(strcmp(cur->name, name)==0)
1799 break;
1800 }
Eric Andersen20a69a72001-05-15 17:24:44 +00001801
Eric Andersen99785762001-05-22 21:37:48 +00001802 if(cur) {
1803 if(strcmp(cur->value, value)==0) {
1804 if(flg_export>0 && cur->flg_export==0)
1805 cur->flg_export=flg_export;
1806 else
1807 result++;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001808 } else {
Eric Andersen99785762001-05-22 21:37:48 +00001809 if(cur->flg_read_only) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001810 bb_error_msg("%s: readonly variable", name);
Eric Andersen20a69a72001-05-15 17:24:44 +00001811 result = -1;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001812 } else {
Eric Andersen99785762001-05-22 21:37:48 +00001813 if(flg_export>0 || cur->flg_export>1)
1814 cur->flg_export=1;
1815 free(cur->value);
1816
1817 cur->value = strdup(value);
1818 }
1819 }
1820 } else {
1821 cur = malloc(sizeof(struct variables));
1822 if(!cur) {
1823 result = -1;
1824 } else {
1825 cur->name = strdup(name);
1826 if(cur->name == 0) {
1827 free(cur);
1828 result = -1;
1829 } else {
1830 struct variables *bottom = top_vars;
1831 cur->value = strdup(value);
1832 cur->next = 0;
1833 cur->flg_export = flg_export;
1834 cur->flg_read_only = 0;
1835 while(bottom->next) bottom=bottom->next;
1836 bottom->next = cur;
Eric Andersen20a69a72001-05-15 17:24:44 +00001837 }
Eric Andersen20a69a72001-05-15 17:24:44 +00001838 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001839 }
Eric Andersen20a69a72001-05-15 17:24:44 +00001840
Eric Andersen94ac2442001-05-22 19:05:18 +00001841 if(result==0 && cur->flg_export==1) {
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001842 *(value-1) = '=';
1843 result = putenv(name);
1844 } else {
Eric Andersen94ac2442001-05-22 19:05:18 +00001845 free(name);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001846 if(result>0) /* equivalent to previous set */
1847 result = 0;
1848 }
Eric Andersen20a69a72001-05-15 17:24:44 +00001849 return result;
1850}
1851
Eric Andersenf72f5622001-05-15 23:21:41 +00001852static void unset_local_var(const char *name)
Eric Andersen20a69a72001-05-15 17:24:44 +00001853{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001854 struct variables *cur;
Eric Andersen20a69a72001-05-15 17:24:44 +00001855
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001856 if (name) {
Eric Andersen94ac2442001-05-22 19:05:18 +00001857 for (cur = top_vars; cur; cur=cur->next) {
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001858 if(strcmp(cur->name, name)==0)
1859 break;
Eric Andersen94ac2442001-05-22 19:05:18 +00001860 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001861 if(cur!=0) {
1862 struct variables *next = top_vars;
Eric Andersen94ac2442001-05-22 19:05:18 +00001863 if(cur->flg_read_only) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001864 bb_error_msg("%s: readonly variable", name);
Eric Andersen94ac2442001-05-22 19:05:18 +00001865 return;
1866 } else {
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001867 if(cur->flg_export)
1868 unsetenv(cur->name);
1869 free(cur->name);
1870 free(cur->value);
1871 while (next->next != cur)
1872 next = next->next;
1873 next->next = cur->next;
1874 }
1875 free(cur);
Eric Andersenf72f5622001-05-15 23:21:41 +00001876 }
Eric Andersen20a69a72001-05-15 17:24:44 +00001877 }
Eric Andersen78a7c992001-05-15 16:30:25 +00001878}
1879
1880static int is_assignment(const char *s)
1881{
1882 if (s==NULL || !isalpha(*s)) return 0;
1883 ++s;
1884 while(isalnum(*s) || *s=='_') ++s;
1885 return *s=='=';
1886}
1887
Eric Andersen25f27032001-04-26 23:22:31 +00001888/* the src parameter allows us to peek forward to a possible &n syntax
1889 * for file descriptor duplication, e.g., "2>&1".
1890 * Return code is 0 normally, 1 if a syntax error is detected in src.
1891 * Resource errors (in xmalloc) cause the process to exit */
1892static int setup_redirect(struct p_context *ctx, int fd, redir_type style,
1893 struct in_str *input)
1894{
1895 struct child_prog *child=ctx->child;
1896 struct redir_struct *redir = child->redirects;
1897 struct redir_struct *last_redir=NULL;
1898
1899 /* Create a new redir_struct and drop it onto the end of the linked list */
1900 while(redir) {
1901 last_redir=redir;
1902 redir=redir->next;
1903 }
1904 redir = xmalloc(sizeof(struct redir_struct));
1905 redir->next=NULL;
Eric Andersen817e73c2001-06-06 17:56:09 +00001906 redir->word.gl_pathv=NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00001907 if (last_redir) {
1908 last_redir->next=redir;
1909 } else {
1910 child->redirects=redir;
1911 }
1912
1913 redir->type=style;
1914 redir->fd= (fd==-1) ? redir_table[style].default_fd : fd ;
1915
1916 debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip);
1917
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001918 /* Check for a '2>&1' type redirect */
Eric Andersen25f27032001-04-26 23:22:31 +00001919 redir->dup = redirect_dup_num(input);
1920 if (redir->dup == -2) return 1; /* syntax error */
1921 if (redir->dup != -1) {
1922 /* Erik had a check here that the file descriptor in question
Eric Andersen83a2ae22001-05-07 17:59:25 +00001923 * is legit; I postpone that to "run time"
1924 * A "-" representation of "close me" shows up as a -3 here */
Eric Andersen25f27032001-04-26 23:22:31 +00001925 debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup);
1926 } else {
1927 /* We do _not_ try to open the file that src points to,
1928 * since we need to return and let src be expanded first.
1929 * Set ctx->pending_redirect, so we know what to do at the
1930 * end of the next parsed word.
1931 */
1932 ctx->pending_redirect = redir;
1933 }
1934 return 0;
1935}
1936
"Vladimir N. Oleynik"19c37012005-09-22 14:33:15 +00001937static struct pipe *new_pipe(void) {
Eric Andersen25f27032001-04-26 23:22:31 +00001938 struct pipe *pi;
1939 pi = xmalloc(sizeof(struct pipe));
1940 pi->num_progs = 0;
1941 pi->progs = NULL;
1942 pi->next = NULL;
1943 pi->followup = 0; /* invalid */
Rob Landley032e2cb2005-12-12 06:52:45 +00001944 pi->r_mode = RES_NONE;
Eric Andersen25f27032001-04-26 23:22:31 +00001945 return pi;
1946}
1947
1948static void initialize_context(struct p_context *ctx)
1949{
1950 ctx->pipe=NULL;
1951 ctx->pending_redirect=NULL;
1952 ctx->child=NULL;
1953 ctx->list_head=new_pipe();
1954 ctx->pipe=ctx->list_head;
1955 ctx->w=RES_NONE;
1956 ctx->stack=NULL;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001957 ctx->old_flag=0;
Eric Andersen25f27032001-04-26 23:22:31 +00001958 done_command(ctx); /* creates the memory for working child */
1959}
1960
1961/* normal return is 0
1962 * if a reserved word is found, and processed, return 1
1963 * should handle if, then, elif, else, fi, for, while, until, do, done.
1964 * case, function, and select are obnoxious, save those for later.
1965 */
"Vladimir N. Oleynik"19c37012005-09-22 14:33:15 +00001966static int reserved_word(o_string *dest, struct p_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00001967{
1968 struct reserved_combo {
1969 char *literal;
1970 int code;
1971 long flag;
1972 };
1973 /* Mostly a list of accepted follow-up reserved words.
1974 * FLAG_END means we are done with the sequence, and are ready
1975 * to turn the compound list into a command.
1976 * FLAG_START means the word must start a new compound list.
1977 */
1978 static struct reserved_combo reserved_list[] = {
1979 { "if", RES_IF, FLAG_THEN | FLAG_START },
1980 { "then", RES_THEN, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
1981 { "elif", RES_ELIF, FLAG_THEN },
1982 { "else", RES_ELSE, FLAG_FI },
1983 { "fi", RES_FI, FLAG_END },
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001984 { "for", RES_FOR, FLAG_IN | FLAG_START },
Eric Andersen25f27032001-04-26 23:22:31 +00001985 { "while", RES_WHILE, FLAG_DO | FLAG_START },
1986 { "until", RES_UNTIL, FLAG_DO | FLAG_START },
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001987 { "in", RES_IN, FLAG_DO },
Eric Andersen25f27032001-04-26 23:22:31 +00001988 { "do", RES_DO, FLAG_DONE },
1989 { "done", RES_DONE, FLAG_END }
1990 };
1991 struct reserved_combo *r;
1992 for (r=reserved_list;
1993#define NRES sizeof(reserved_list)/sizeof(struct reserved_combo)
1994 r<reserved_list+NRES; r++) {
1995 if (strcmp(dest->data, r->literal) == 0) {
1996 debug_printf("found reserved word %s, code %d\n",r->literal,r->code);
1997 if (r->flag & FLAG_START) {
1998 struct p_context *new = xmalloc(sizeof(struct p_context));
1999 debug_printf("push stack\n");
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002000 if (ctx->w == RES_IN || ctx->w == RES_FOR) {
2001 syntax();
2002 free(new);
2003 ctx->w = RES_SNTX;
2004 b_reset(dest);
2005 return 1;
2006 }
Eric Andersen25f27032001-04-26 23:22:31 +00002007 *new = *ctx; /* physical copy */
2008 initialize_context(ctx);
2009 ctx->stack=new;
2010 } else if ( ctx->w == RES_NONE || ! (ctx->old_flag & (1<<r->code))) {
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002011 syntax();
2012 ctx->w = RES_SNTX;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002013 b_reset(dest);
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002014 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002015 }
2016 ctx->w=r->code;
2017 ctx->old_flag = r->flag;
2018 if (ctx->old_flag & FLAG_END) {
2019 struct p_context *old;
2020 debug_printf("pop stack\n");
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002021 done_pipe(ctx,PIPE_SEQ);
Eric Andersen25f27032001-04-26 23:22:31 +00002022 old = ctx->stack;
2023 old->child->group = ctx->list_head;
Eric Andersen04407e52001-06-07 16:42:05 +00002024 old->child->subshell = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00002025 *ctx = *old; /* physical copy */
2026 free(old);
Eric Andersen25f27032001-04-26 23:22:31 +00002027 }
2028 b_reset (dest);
2029 return 1;
2030 }
2031 }
2032 return 0;
2033}
2034
2035/* normal return is 0.
2036 * Syntax or xglob errors return 1. */
2037static int done_word(o_string *dest, struct p_context *ctx)
2038{
2039 struct child_prog *child=ctx->child;
2040 glob_t *glob_target;
2041 int gr, flags = 0;
2042
2043 debug_printf("done_word: %s %p\n", dest->data, child);
2044 if (dest->length == 0 && !dest->nonnull) {
2045 debug_printf(" true null, ignored\n");
2046 return 0;
2047 }
2048 if (ctx->pending_redirect) {
2049 glob_target = &ctx->pending_redirect->word;
2050 } else {
2051 if (child->group) {
2052 syntax();
2053 return 1; /* syntax error, groups and arglists don't mix */
2054 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002055 if (!child->argv && (ctx->type & FLAG_PARSE_SEMICOLON)) {
Eric Andersen25f27032001-04-26 23:22:31 +00002056 debug_printf("checking %s for reserved-ness\n",dest->data);
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002057 if (reserved_word(dest,ctx)) return ctx->w==RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00002058 }
2059 glob_target = &child->glob_result;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002060 if (child->argv) flags |= GLOB_APPEND;
Eric Andersen25f27032001-04-26 23:22:31 +00002061 }
2062 gr = xglob(dest, flags, glob_target);
2063 if (gr != 0) return 1;
2064
2065 b_reset(dest);
2066 if (ctx->pending_redirect) {
2067 ctx->pending_redirect=NULL;
2068 if (glob_target->gl_pathc != 1) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00002069 bb_error_msg("ambiguous redirect");
Eric Andersen25f27032001-04-26 23:22:31 +00002070 return 1;
2071 }
2072 } else {
2073 child->argv = glob_target->gl_pathv;
2074 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002075 if (ctx->w == RES_FOR) {
2076 done_word(dest,ctx);
2077 done_pipe(ctx,PIPE_SEQ);
2078 }
Eric Andersen25f27032001-04-26 23:22:31 +00002079 return 0;
2080}
2081
2082/* The only possible error here is out of memory, in which case
2083 * xmalloc exits. */
2084static int done_command(struct p_context *ctx)
2085{
2086 /* The child is really already in the pipe structure, so
2087 * advance the pipe counter and make a new, null child.
2088 * Only real trickiness here is that the uncommitted
2089 * child structure, to which ctx->child points, is not
2090 * counted in pi->num_progs. */
2091 struct pipe *pi=ctx->pipe;
2092 struct child_prog *prog=ctx->child;
2093
2094 if (prog && prog->group == NULL
2095 && prog->argv == NULL
2096 && prog->redirects == NULL) {
2097 debug_printf("done_command: skipping null command\n");
2098 return 0;
2099 } else if (prog) {
2100 pi->num_progs++;
2101 debug_printf("done_command: num_progs incremented to %d\n",pi->num_progs);
2102 } else {
2103 debug_printf("done_command: initializing\n");
2104 }
2105 pi->progs = xrealloc(pi->progs, sizeof(*pi->progs) * (pi->num_progs+1));
2106
2107 prog = pi->progs + pi->num_progs;
2108 prog->redirects = NULL;
2109 prog->argv = NULL;
2110 prog->is_stopped = 0;
2111 prog->group = NULL;
2112 prog->glob_result.gl_pathv = NULL;
2113 prog->family = pi;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002114 prog->sp = 0;
2115 ctx->child = prog;
2116 prog->type = ctx->type;
Eric Andersen25f27032001-04-26 23:22:31 +00002117
Eric Andersen25f27032001-04-26 23:22:31 +00002118 /* but ctx->pipe and ctx->list_head remain unchanged */
2119 return 0;
2120}
2121
2122static int done_pipe(struct p_context *ctx, pipe_style type)
2123{
2124 struct pipe *new_p;
2125 done_command(ctx); /* implicit closure of previous command */
2126 debug_printf("done_pipe, type %d\n", type);
2127 ctx->pipe->followup = type;
2128 ctx->pipe->r_mode = ctx->w;
2129 new_p=new_pipe();
2130 ctx->pipe->next = new_p;
2131 ctx->pipe = new_p;
2132 ctx->child = NULL;
2133 done_command(ctx); /* set up new pipe to accept commands */
2134 return 0;
2135}
2136
2137/* peek ahead in the in_str to find out if we have a "&n" construct,
2138 * as in "2>&1", that represents duplicating a file descriptor.
2139 * returns either -2 (syntax error), -1 (no &), or the number found.
2140 */
2141static int redirect_dup_num(struct in_str *input)
2142{
2143 int ch, d=0, ok=0;
2144 ch = b_peek(input);
2145 if (ch != '&') return -1;
2146
2147 b_getch(input); /* get the & */
Eric Andersen83a2ae22001-05-07 17:59:25 +00002148 ch=b_peek(input);
2149 if (ch == '-') {
2150 b_getch(input);
2151 return -3; /* "-" represents "close me" */
2152 }
2153 while (isdigit(ch)) {
Eric Andersen25f27032001-04-26 23:22:31 +00002154 d = d*10+(ch-'0');
2155 ok=1;
2156 b_getch(input);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002157 ch = b_peek(input);
Eric Andersen25f27032001-04-26 23:22:31 +00002158 }
2159 if (ok) return d;
2160
Manuel Novoa III cad53642003-03-19 09:13:01 +00002161 bb_error_msg("ambiguous redirect");
Eric Andersen25f27032001-04-26 23:22:31 +00002162 return -2;
2163}
2164
2165/* If a redirect is immediately preceded by a number, that number is
2166 * supposed to tell which file descriptor to redirect. This routine
2167 * looks for such preceding numbers. In an ideal world this routine
2168 * needs to handle all the following classes of redirects...
2169 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
2170 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
2171 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
2172 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
2173 * A -1 output from this program means no valid number was found, so the
2174 * caller should use the appropriate default for this redirection.
2175 */
2176static int redirect_opt_num(o_string *o)
2177{
2178 int num;
2179
2180 if (o->length==0) return -1;
2181 for(num=0; num<o->length; num++) {
2182 if (!isdigit(*(o->data+num))) {
2183 return -1;
2184 }
2185 }
2186 /* reuse num (and save an int) */
2187 num=atoi(o->data);
2188 b_reset(o);
2189 return num;
2190}
2191
"Vladimir N. Oleynik"19c37012005-09-22 14:33:15 +00002192static FILE *generate_stream_from_list(struct pipe *head)
Eric Andersen25f27032001-04-26 23:22:31 +00002193{
2194 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00002195 int pid, channel[2];
Manuel Novoa III cad53642003-03-19 09:13:01 +00002196 if (pipe(channel)<0) bb_perror_msg_and_die("pipe");
Eric Andersene3efc922004-04-12 17:59:24 +00002197#if !defined(__UCLIBC__) || defined(__ARCH_HAS_MMU__)
Eric Andersen25f27032001-04-26 23:22:31 +00002198 pid=fork();
Eric Andersen72f9a422001-10-28 05:12:20 +00002199#else
2200 pid=vfork();
2201#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002202 if (pid<0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00002203 bb_perror_msg_and_die("fork");
Eric Andersen25f27032001-04-26 23:22:31 +00002204 } else if (pid==0) {
2205 close(channel[0]);
2206 if (channel[1] != 1) {
2207 dup2(channel[1],1);
2208 close(channel[1]);
2209 }
Eric Andersen94ac2442001-05-22 19:05:18 +00002210 _exit(run_list_real(head)); /* leaks memory */
Eric Andersen25f27032001-04-26 23:22:31 +00002211 }
2212 debug_printf("forked child %d\n",pid);
2213 close(channel[1]);
2214 pf = fdopen(channel[0],"r");
2215 debug_printf("pipe on FILE *%p\n",pf);
Eric Andersen25f27032001-04-26 23:22:31 +00002216 return pf;
2217}
2218
2219/* this version hacked for testing purposes */
2220/* return code is exit status of the process that is run. */
2221static int process_command_subs(o_string *dest, struct p_context *ctx, struct in_str *input, int subst_end)
2222{
2223 int retcode;
2224 o_string result=NULL_O_STRING;
2225 struct p_context inner;
2226 FILE *p;
2227 struct in_str pipe_str;
2228 initialize_context(&inner);
2229
2230 /* recursion to generate command */
2231 retcode = parse_stream(&result, &inner, input, subst_end);
2232 if (retcode != 0) return retcode; /* syntax error or EOF */
2233 done_word(&result, &inner);
2234 done_pipe(&inner, PIPE_SEQ);
2235 b_free(&result);
2236
2237 p=generate_stream_from_list(inner.list_head);
2238 if (p==NULL) return 1;
2239 mark_open(fileno(p));
2240 setup_file_in_str(&pipe_str, p);
2241
2242 /* now send results of command back into original context */
2243 retcode = parse_stream(dest, ctx, &pipe_str, '\0');
2244 /* XXX In case of a syntax error, should we try to kill the child?
2245 * That would be tough to do right, so just read until EOF. */
2246 if (retcode == 1) {
2247 while (b_getch(&pipe_str)!=EOF) { /* discard */ };
2248 }
2249
2250 debug_printf("done reading from pipe, pclose()ing\n");
2251 /* This is the step that wait()s for the child. Should be pretty
2252 * safe, since we just read an EOF from its stdout. We could try
2253 * to better, by using wait(), and keeping track of background jobs
2254 * at the same time. That would be a lot of work, and contrary
2255 * to the KISS philosophy of this program. */
2256 mark_closed(fileno(p));
2257 retcode=pclose(p);
Eric Andersena15dc152001-05-23 23:46:09 +00002258 free_pipe_list(inner.list_head,0);
Eric Andersen25f27032001-04-26 23:22:31 +00002259 debug_printf("pclosed, retcode=%d\n",retcode);
2260 /* XXX this process fails to trim a single trailing newline */
2261 return retcode;
2262}
2263
2264static int parse_group(o_string *dest, struct p_context *ctx,
2265 struct in_str *input, int ch)
2266{
2267 int rcode, endch=0;
2268 struct p_context sub;
2269 struct child_prog *child = ctx->child;
2270 if (child->argv) {
2271 syntax();
2272 return 1; /* syntax error, groups and arglists don't mix */
2273 }
2274 initialize_context(&sub);
Denis Vlasenkobf0a2012006-12-26 10:42:51 +00002275 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00002276 case '(': endch=')'; child->subshell=1; break;
2277 case '{': endch='}'; break;
2278 default: syntax(); /* really logic error */
2279 }
2280 rcode=parse_stream(dest,&sub,input,endch);
2281 done_word(dest,&sub); /* finish off the final word in the subcontext */
2282 done_pipe(&sub, PIPE_SEQ); /* and the final command there, too */
2283 child->group = sub.list_head;
2284 return rcode;
2285 /* child remains "open", available for possible redirects */
2286}
2287
2288/* basically useful version until someone wants to get fancier,
2289 * see the bash man page under "Parameter Expansion" */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002290static char *lookup_param(char *src)
Eric Andersen25f27032001-04-26 23:22:31 +00002291{
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002292 char *p=NULL;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002293 if (src) {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002294 p = getenv(src);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002295 if (!p)
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002296 p = get_local_var(src);
Eric Andersen20a69a72001-05-15 17:24:44 +00002297 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002298 return p;
Eric Andersen25f27032001-04-26 23:22:31 +00002299}
2300
2301/* return code: 0 for OK, 1 for syntax error */
2302static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input)
2303{
2304 int i, advance=0;
Eric Andersen25f27032001-04-26 23:22:31 +00002305 char sep[]=" ";
2306 int ch = input->peek(input); /* first character after the $ */
2307 debug_printf("handle_dollar: ch=%c\n",ch);
2308 if (isalpha(ch)) {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002309 b_addchr(dest, SPECIAL_VAR_SYMBOL);
2310 ctx->child->sp++;
Eric Andersen25f27032001-04-26 23:22:31 +00002311 while(ch=b_peek(input),isalnum(ch) || ch=='_') {
2312 b_getch(input);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002313 b_addchr(dest,ch);
Eric Andersen25f27032001-04-26 23:22:31 +00002314 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002315 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00002316 } else if (isdigit(ch)) {
2317 i = ch-'0'; /* XXX is $0 special? */
2318 if (i<global_argc) {
2319 parse_string(dest, ctx, global_argv[i]); /* recursion */
2320 }
2321 advance = 1;
2322 } else switch (ch) {
2323 case '$':
2324 b_adduint(dest,getpid());
2325 advance = 1;
2326 break;
2327 case '!':
2328 if (last_bg_pid > 0) b_adduint(dest, last_bg_pid);
2329 advance = 1;
2330 break;
2331 case '?':
2332 b_adduint(dest,last_return_code);
2333 advance = 1;
2334 break;
2335 case '#':
2336 b_adduint(dest,global_argc ? global_argc-1 : 0);
2337 advance = 1;
2338 break;
2339 case '{':
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002340 b_addchr(dest, SPECIAL_VAR_SYMBOL);
2341 ctx->child->sp++;
Eric Andersen25f27032001-04-26 23:22:31 +00002342 b_getch(input);
2343 /* XXX maybe someone will try to escape the '}' */
2344 while(ch=b_getch(input),ch!=EOF && ch!='}') {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002345 b_addchr(dest,ch);
Eric Andersen25f27032001-04-26 23:22:31 +00002346 }
2347 if (ch != '}') {
2348 syntax();
2349 return 1;
2350 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002351 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00002352 break;
2353 case '(':
Matt Kraai9f8caf12001-05-02 16:26:12 +00002354 b_getch(input);
Eric Andersen25f27032001-04-26 23:22:31 +00002355 process_command_subs(dest, ctx, input, ')');
2356 break;
2357 case '*':
2358 sep[0]=ifs[0];
2359 for (i=1; i<global_argc; i++) {
2360 parse_string(dest, ctx, global_argv[i]);
2361 if (i+1 < global_argc) parse_string(dest, ctx, sep);
2362 }
2363 break;
2364 case '@':
2365 case '-':
2366 case '_':
2367 /* still unhandled, but should be eventually */
Manuel Novoa III cad53642003-03-19 09:13:01 +00002368 bb_error_msg("unhandled syntax: $%c",ch);
Eric Andersen25f27032001-04-26 23:22:31 +00002369 return 1;
2370 break;
2371 default:
2372 b_addqchr(dest,'$',dest->quote);
2373 }
2374 /* Eat the character if the flag was set. If the compiler
2375 * is smart enough, we could substitute "b_getch(input);"
2376 * for all the "advance = 1;" above, and also end up with
2377 * a nice size-optimized program. Hah! That'll be the day.
2378 */
2379 if (advance) b_getch(input);
2380 return 0;
2381}
2382
2383int parse_string(o_string *dest, struct p_context *ctx, const char *src)
2384{
2385 struct in_str foo;
2386 setup_string_in_str(&foo, src);
2387 return parse_stream(dest, ctx, &foo, '\0');
2388}
2389
2390/* return code is 0 for normal exit, 1 for syntax error */
2391int parse_stream(o_string *dest, struct p_context *ctx,
2392 struct in_str *input, int end_trigger)
2393{
"Vladimir N. Oleynik"4ccd2b42006-01-31 09:27:48 +00002394 int ch, m;
Eric Andersen25f27032001-04-26 23:22:31 +00002395 int redir_fd;
2396 redir_type redir_style;
2397 int next;
2398
2399 /* Only double-quote state is handled in the state variable dest->quote.
2400 * A single-quote triggers a bypass of the main loop until its mate is
2401 * found. When recursing, quote state is passed in via dest->quote. */
2402
2403 debug_printf("parse_stream, end_trigger=%d\n",end_trigger);
2404 while ((ch=b_getch(input))!=EOF) {
2405 m = map[ch];
2406 next = (ch == '\n') ? 0 : b_peek(input);
2407 debug_printf("parse_stream: ch=%c (%d) m=%d quote=%d\n",
2408 ch,ch,m,dest->quote);
2409 if (m==0 || ((m==1 || m==2) && dest->quote)) {
2410 b_addqchr(dest, ch, dest->quote);
Eric Andersenaac75e52001-04-30 18:18:45 +00002411 } else {
2412 if (m==2) { /* unquoted IFS */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002413 if (done_word(dest, ctx)) {
2414 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002415 }
Matt Kraai20a30692001-05-02 17:52:49 +00002416 /* If we aren't performing a substitution, treat a newline as a
2417 * command separator. */
2418 if (end_trigger != '\0' && ch=='\n')
2419 done_pipe(ctx,PIPE_SEQ);
Eric Andersenaac75e52001-04-30 18:18:45 +00002420 }
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002421 if (ch == end_trigger && !dest->quote && ctx->w==RES_NONE) {
Matt Kraaibdd4ece2001-05-23 17:43:00 +00002422 debug_printf("leaving parse_stream (triggered)\n");
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002423 return 0;
2424 }
Eric Andersenaac75e52001-04-30 18:18:45 +00002425 if (m!=2) switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00002426 case '#':
2427 if (dest->length == 0 && !dest->quote) {
2428 while(ch=b_peek(input),ch!=EOF && ch!='\n') { b_getch(input); }
2429 } else {
2430 b_addqchr(dest, ch, dest->quote);
2431 }
2432 break;
2433 case '\\':
2434 if (next == EOF) {
2435 syntax();
2436 return 1;
2437 }
2438 b_addqchr(dest, '\\', dest->quote);
2439 b_addqchr(dest, b_getch(input), dest->quote);
2440 break;
2441 case '$':
2442 if (handle_dollar(dest, ctx, input)!=0) return 1;
2443 break;
2444 case '\'':
2445 dest->nonnull = 1;
2446 while(ch=b_getch(input),ch!=EOF && ch!='\'') {
2447 b_addchr(dest,ch);
2448 }
2449 if (ch==EOF) {
2450 syntax();
2451 return 1;
2452 }
2453 break;
2454 case '"':
2455 dest->nonnull = 1;
2456 dest->quote = !dest->quote;
2457 break;
2458 case '`':
2459 process_command_subs(dest, ctx, input, '`');
2460 break;
2461 case '>':
2462 redir_fd = redirect_opt_num(dest);
2463 done_word(dest, ctx);
2464 redir_style=REDIRECT_OVERWRITE;
2465 if (next == '>') {
2466 redir_style=REDIRECT_APPEND;
2467 b_getch(input);
2468 } else if (next == '(') {
2469 syntax(); /* until we support >(list) Process Substitution */
2470 return 1;
2471 }
2472 setup_redirect(ctx, redir_fd, redir_style, input);
2473 break;
2474 case '<':
2475 redir_fd = redirect_opt_num(dest);
2476 done_word(dest, ctx);
2477 redir_style=REDIRECT_INPUT;
2478 if (next == '<') {
2479 redir_style=REDIRECT_HEREIS;
2480 b_getch(input);
2481 } else if (next == '>') {
2482 redir_style=REDIRECT_IO;
2483 b_getch(input);
2484 } else if (next == '(') {
2485 syntax(); /* until we support <(list) Process Substitution */
2486 return 1;
2487 }
2488 setup_redirect(ctx, redir_fd, redir_style, input);
2489 break;
2490 case ';':
2491 done_word(dest, ctx);
2492 done_pipe(ctx,PIPE_SEQ);
2493 break;
2494 case '&':
2495 done_word(dest, ctx);
2496 if (next=='&') {
2497 b_getch(input);
2498 done_pipe(ctx,PIPE_AND);
2499 } else {
2500 done_pipe(ctx,PIPE_BG);
2501 }
2502 break;
2503 case '|':
2504 done_word(dest, ctx);
2505 if (next=='|') {
2506 b_getch(input);
2507 done_pipe(ctx,PIPE_OR);
2508 } else {
2509 /* we could pick up a file descriptor choice here
2510 * with redirect_opt_num(), but bash doesn't do it.
2511 * "echo foo 2| cat" yields "foo 2". */
2512 done_command(ctx);
2513 }
2514 break;
2515 case '(':
2516 case '{':
2517 if (parse_group(dest, ctx, input, ch)!=0) return 1;
2518 break;
2519 case ')':
2520 case '}':
2521 syntax(); /* Proper use of this character caught by end_trigger */
2522 return 1;
2523 break;
2524 default:
2525 syntax(); /* this is really an internal logic error */
2526 return 1;
Eric Andersenaac75e52001-04-30 18:18:45 +00002527 }
Eric Andersen25f27032001-04-26 23:22:31 +00002528 }
2529 }
2530 /* complain if quote? No, maybe we just finished a command substitution
2531 * that was quoted. Example:
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002532 * $ echo "`cat foo` plus more"
Eric Andersen25f27032001-04-26 23:22:31 +00002533 * and we just got the EOF generated by the subshell that ran "cat foo"
2534 * The only real complaint is if we got an EOF when end_trigger != '\0',
2535 * that is, we were really supposed to get end_trigger, and never got
2536 * one before the EOF. Can't use the standard "syntax error" return code,
2537 * so that parse_stream_outer can distinguish the EOF and exit smoothly. */
Matt Kraaibdd4ece2001-05-23 17:43:00 +00002538 debug_printf("leaving parse_stream (EOF)\n");
Eric Andersen25f27032001-04-26 23:22:31 +00002539 if (end_trigger != '\0') return -1;
2540 return 0;
2541}
2542
Eric Andersena68ea1c2006-01-30 22:48:39 +00002543static void mapset(const char *set, int code)
Eric Andersen25f27032001-04-26 23:22:31 +00002544{
"Vladimir N. Oleynik"4ccd2b42006-01-31 09:27:48 +00002545 const unsigned char *s;
2546 for (s = (const unsigned char *)set; *s; s++) map[(int)*s] = code;
Eric Andersen25f27032001-04-26 23:22:31 +00002547}
2548
"Vladimir N. Oleynik"19c37012005-09-22 14:33:15 +00002549static void update_ifs_map(void)
Eric Andersen25f27032001-04-26 23:22:31 +00002550{
2551 /* char *ifs and char map[256] are both globals. */
2552 ifs = getenv("IFS");
2553 if (ifs == NULL) ifs=" \t\n";
2554 /* Precompute a list of 'flow through' behavior so it can be treated
2555 * quickly up front. Computation is necessary because of IFS.
2556 * Special case handling of IFS == " \t\n" is not implemented.
2557 * The map[] array only really needs two bits each, and on most machines
2558 * that would be faster because of the reduced L1 cache footprint.
2559 */
Eric Andersenaeb44c42001-05-22 20:29:00 +00002560 memset(map,0,sizeof(map)); /* most characters flow through always */
2561 mapset("\\$'\"`", 3); /* never flow through */
2562 mapset("<>;&|(){}#", 1); /* flow through if quoted */
2563 mapset(ifs, 2); /* also flow through if quoted */
Eric Andersen25f27032001-04-26 23:22:31 +00002564}
2565
Eric Andersenaff114c2004-04-14 17:51:38 +00002566/* most recursion does not come through here, the exception is
Eric Andersen25f27032001-04-26 23:22:31 +00002567 * from builtin_source() */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002568int parse_stream_outer(struct in_str *inp, int flag)
Eric Andersen25f27032001-04-26 23:22:31 +00002569{
2570
2571 struct p_context ctx;
2572 o_string temp=NULL_O_STRING;
2573 int rcode;
2574 do {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002575 ctx.type = flag;
Eric Andersen25f27032001-04-26 23:22:31 +00002576 initialize_context(&ctx);
2577 update_ifs_map();
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002578 if (!(flag & FLAG_PARSE_SEMICOLON) || (flag & FLAG_REPARSING)) mapset(";$&|", 0);
Eric Andersen25f27032001-04-26 23:22:31 +00002579 inp->promptmode=1;
2580 rcode = parse_stream(&temp, &ctx, inp, '\n');
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002581 if (rcode != 1 && ctx.old_flag != 0) {
2582 syntax();
2583 }
2584 if (rcode != 1 && ctx.old_flag == 0) {
2585 done_word(&temp, &ctx);
2586 done_pipe(&ctx,PIPE_SEQ);
2587 run_list(ctx.list_head);
2588 } else {
2589 if (ctx.old_flag != 0) {
2590 free(ctx.stack);
2591 b_reset(&temp);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002592 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002593 temp.nonnull = 0;
2594 temp.quote = 0;
2595 inp->p = NULL;
2596 free_pipe_list(ctx.list_head,0);
2597 }
Eric Andersena813afc2001-05-24 16:19:36 +00002598 b_free(&temp);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002599 } while (rcode != -1 && !(flag & FLAG_EXIT_FROM_LOOP)); /* loop on syntax errors, return on EOF */
Eric Andersen25f27032001-04-26 23:22:31 +00002600 return 0;
2601}
2602
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002603static int parse_string_outer(const char *s, int flag)
Eric Andersen25f27032001-04-26 23:22:31 +00002604{
2605 struct in_str input;
2606 setup_string_in_str(&input, s);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002607 return parse_stream_outer(&input, flag);
Eric Andersen25f27032001-04-26 23:22:31 +00002608}
2609
2610static int parse_file_outer(FILE *f)
2611{
2612 int rcode;
2613 struct in_str input;
2614 setup_file_in_str(&input, f);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002615 rcode = parse_stream_outer(&input, FLAG_PARSE_SEMICOLON);
Eric Andersen25f27032001-04-26 23:22:31 +00002616 return rcode;
2617}
2618
Eric Andersen6c947d22001-06-25 22:24:38 +00002619/* Make sure we have a controlling tty. If we get started under a job
2620 * aware app (like bash for example), make sure we are now in charge so
2621 * we don't fight over who gets the foreground */
Eric Anderseneaecbf32001-10-31 10:41:31 +00002622static void setup_job_control(void)
Eric Andersen52a97ca2001-06-22 06:49:26 +00002623{
Eric Andersen6c947d22001-06-25 22:24:38 +00002624 static pid_t shell_pgrp;
2625 /* Loop until we are in the foreground. */
2626 while (tcgetpgrp (shell_terminal) != (shell_pgrp = getpgrp ()))
2627 kill (- shell_pgrp, SIGTTIN);
Eric Andersen52a97ca2001-06-22 06:49:26 +00002628
Eric Andersen6c947d22001-06-25 22:24:38 +00002629 /* Ignore interactive and job-control signals. */
2630 signal(SIGINT, SIG_IGN);
2631 signal(SIGQUIT, SIG_IGN);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002632 signal(SIGTERM, SIG_IGN);
Eric Andersen6c947d22001-06-25 22:24:38 +00002633 signal(SIGTSTP, SIG_IGN);
2634 signal(SIGTTIN, SIG_IGN);
2635 signal(SIGTTOU, SIG_IGN);
Eric Andersen028b65b2001-06-28 01:10:11 +00002636 signal(SIGCHLD, SIG_IGN);
Eric Andersen6c947d22001-06-25 22:24:38 +00002637
2638 /* Put ourselves in our own process group. */
Eric Andersen5c66d062001-06-26 23:16:31 +00002639 setsid();
Denis Vlasenko9af7c9d2007-01-19 21:19:35 +00002640 shell_pgrp = getpid();
2641 setpgid(shell_pgrp, shell_pgrp);
Eric Andersen6c947d22001-06-25 22:24:38 +00002642
2643 /* Grab control of the terminal. */
2644 tcsetpgrp(shell_terminal, shell_pgrp);
2645}
Eric Andersenada18ff2001-05-21 16:18:22 +00002646
Matt Kraai2d91deb2001-08-01 17:21:35 +00002647int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00002648{
2649 int opt;
2650 FILE *input;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002651 char **e = environ;
Eric Andersenbc604a22001-05-16 05:24:03 +00002652
Denis Vlasenko38f63192007-01-22 09:03:07 +00002653#if ENABLE_FEATURE_EDITING
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002654 line_input_state = new_line_input_t(FOR_SHELL);
2655#endif
2656
Eric Andersen25f27032001-04-26 23:22:31 +00002657 /* XXX what should these be while sourcing /etc/profile? */
2658 global_argc = argc;
2659 global_argv = argv;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002660
Matt Kraai2d91deb2001-08-01 17:21:35 +00002661 /* (re?) initialize globals. Sometimes hush_main() ends up calling
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002662 * hush_main(), therefore we cannot rely on the BSS to zero out this
Eric Andersen94ac2442001-05-22 19:05:18 +00002663 * stuff. Reset these to 0 every time. */
2664 ifs = NULL;
Eric Andersenaeb44c42001-05-22 20:29:00 +00002665 /* map[] is taken care of with call to update_ifs_map() */
Eric Andersen94ac2442001-05-22 19:05:18 +00002666 fake_mode = 0;
2667 interactive = 0;
2668 close_me_head = NULL;
2669 last_bg_pid = 0;
Eric Andersen52a97ca2001-06-22 06:49:26 +00002670 job_list = NULL;
Eric Andersenc798b072001-06-22 06:23:03 +00002671 last_jobid = 0;
Eric Andersen94ac2442001-05-22 19:05:18 +00002672
2673 /* Initialize some more globals to non-zero values */
2674 set_cwd();
Denis Vlasenko38f63192007-01-22 09:03:07 +00002675 if (ENABLE_FEATURE_EDITING)
2676 cmdedit_set_initial_prompt();
Rob Landley215c61d2006-09-15 04:10:05 +00002677 else PS1 = NULL;
Eric Andersen94ac2442001-05-22 19:05:18 +00002678 PS2 = "> ";
2679
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002680 /* initialize our shell local variables with the values
Eric Andersen94ac2442001-05-22 19:05:18 +00002681 * currently living in the environment */
2682 if (e) {
2683 for (; *e; e++)
2684 set_local_var(*e, 2); /* without call putenv() */
2685 }
2686
2687 last_return_code=EXIT_SUCCESS;
2688
Eric Andersen25f27032001-04-26 23:22:31 +00002689
2690 if (argv[0] && argv[0][0] == '-') {
2691 debug_printf("\nsourcing /etc/profile\n");
Eric Andersena90f20b2001-06-26 23:00:21 +00002692 if ((input = fopen("/etc/profile", "r")) != NULL) {
2693 mark_open(fileno(input));
2694 parse_file_outer(input);
2695 mark_closed(fileno(input));
2696 fclose(input);
2697 }
Eric Andersen25f27032001-04-26 23:22:31 +00002698 }
2699 input=stdin;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002700
Eric Andersen25f27032001-04-26 23:22:31 +00002701 while ((opt = getopt(argc, argv, "c:xif")) > 0) {
2702 switch (opt) {
2703 case 'c':
2704 {
2705 global_argv = argv+optind;
2706 global_argc = argc-optind;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002707 opt = parse_string_outer(optarg, FLAG_PARSE_SEMICOLON);
Eric Andersene67c3ce2001-05-02 02:09:36 +00002708 goto final_return;
Eric Andersen25f27032001-04-26 23:22:31 +00002709 }
2710 break;
2711 case 'i':
2712 interactive++;
2713 break;
2714 case 'f':
2715 fake_mode++;
2716 break;
2717 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002718#ifndef BB_VER
Eric Andersen25f27032001-04-26 23:22:31 +00002719 fprintf(stderr, "Usage: sh [FILE]...\n"
2720 " or: sh -c command [args]...\n\n");
2721 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002722#else
Manuel Novoa III cad53642003-03-19 09:13:01 +00002723 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002724#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002725 }
2726 }
2727 /* A shell is interactive if the `-i' flag was given, or if all of
2728 * the following conditions are met:
2729 * no -c command
2730 * no arguments remaining or the -s flag given
2731 * standard input is a terminal
2732 * standard output is a terminal
2733 * Refer to Posix.2, the description of the `sh' utility. */
2734 if (argv[optind]==NULL && input==stdin &&
Eric Andersen70060d22004-03-27 10:02:48 +00002735 isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Eric Andersen25f27032001-04-26 23:22:31 +00002736 interactive++;
2737 }
Eric Andersene67c3ce2001-05-02 02:09:36 +00002738
2739 debug_printf("\ninteractive=%d\n", interactive);
Eric Andersen25f27032001-04-26 23:22:31 +00002740 if (interactive) {
2741 /* Looks like they want an interactive shell */
Denis Vlasenko38f63192007-01-22 09:03:07 +00002742#if !ENABLE_FEATURE_SH_EXTRA_QUIET
"Vladimir N. Oleynik"dd1ccdd2006-02-16 15:40:24 +00002743 printf( "\n\n%s hush - the humble shell v0.01 (testing)\n",
2744 BB_BANNER);
Eric Andersend63dee42001-10-19 00:22:23 +00002745 printf( "Enter 'help' for a list of built-in commands.\n\n");
2746#endif
Eric Andersen52a97ca2001-06-22 06:49:26 +00002747 setup_job_control();
Eric Andersenada18ff2001-05-21 16:18:22 +00002748 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002749
Eric Andersenada18ff2001-05-21 16:18:22 +00002750 if (argv[optind]==NULL) {
Eric Andersene67c3ce2001-05-02 02:09:36 +00002751 opt=parse_file_outer(stdin);
2752 goto final_return;
Eric Andersen25f27032001-04-26 23:22:31 +00002753 }
Eric Andersen25f27032001-04-26 23:22:31 +00002754
2755 debug_printf("\nrunning script '%s'\n", argv[optind]);
2756 global_argv = argv+optind;
2757 global_argc = argc-optind;
Rob Landleyd921b2e2006-08-03 15:41:12 +00002758 input = xfopen(argv[optind], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00002759 opt = parse_file_outer(input);
2760
Denis Vlasenko38f63192007-01-22 09:03:07 +00002761#if ENABLE_FEATURE_CLEAN_UP
Eric Andersenaeb44c42001-05-22 20:29:00 +00002762 fclose(input);
Manuel Novoa III cad53642003-03-19 09:13:01 +00002763 if (cwd && cwd != bb_msg_unknown)
Eric Andersenaeb44c42001-05-22 20:29:00 +00002764 free((char*)cwd);
2765 {
2766 struct variables *cur, *tmp;
2767 for(cur = top_vars; cur; cur = tmp) {
2768 tmp = cur->next;
2769 if (!cur->flg_read_only) {
2770 free(cur->name);
2771 free(cur->value);
2772 free(cur);
2773 }
2774 }
2775 }
Eric Andersen25f27032001-04-26 23:22:31 +00002776#endif
2777
Eric Andersene67c3ce2001-05-02 02:09:36 +00002778final_return:
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002779 return opt ? opt : last_return_code;
Eric Andersen25f27032001-04-26 23:22:31 +00002780}
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002781
2782static char *insert_var_value(char *inp)
2783{
2784 int res_str_len = 0;
2785 int len;
2786 int done = 0;
2787 char *p, *p1, *res_str = NULL;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002788
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002789 while ((p = strchr(inp, SPECIAL_VAR_SYMBOL))) {
2790 if (p != inp) {
2791 len = p - inp;
2792 res_str = xrealloc(res_str, (res_str_len + len));
2793 strncpy((res_str + res_str_len), inp, len);
2794 res_str_len += len;
2795 }
2796 inp = ++p;
2797 p = strchr(inp, SPECIAL_VAR_SYMBOL);
2798 *p = '\0';
2799 if ((p1 = lookup_param(inp))) {
2800 len = res_str_len + strlen(p1);
2801 res_str = xrealloc(res_str, (1 + len));
2802 strcpy((res_str + res_str_len), p1);
2803 res_str_len = len;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002804 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002805 *p = SPECIAL_VAR_SYMBOL;
2806 inp = ++p;
2807 done = 1;
2808 }
2809 if (done) {
2810 res_str = xrealloc(res_str, (1 + res_str_len + strlen(inp)));
2811 strcpy((res_str + res_str_len), inp);
2812 while ((p = strchr(res_str, '\n'))) {
2813 *p = ' ';
2814 }
2815 }
2816 return (res_str == NULL) ? inp : res_str;
2817}
2818
2819static char **make_list_in(char **inp, char *name)
2820{
2821 int len, i;
2822 int name_len = strlen(name);
2823 int n = 0;
2824 char **list;
2825 char *p1, *p2, *p3;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002826
2827 /* create list of variable values */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002828 list = xmalloc(sizeof(*list));
2829 for (i = 0; inp[i]; i++) {
2830 p3 = insert_var_value(inp[i]);
2831 p1 = p3;
2832 while (*p1) {
2833 if ((*p1 == ' ')) {
2834 p1++;
2835 continue;
2836 }
2837 if ((p2 = strchr(p1, ' '))) {
2838 len = p2 - p1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002839 } else {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002840 len = strlen(p1);
2841 p2 = p1 + len;
2842 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002843 /* we use n + 2 in realloc for list,because we add
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002844 * new element and then we will add NULL element */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002845 list = xrealloc(list, sizeof(*list) * (n + 2));
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002846 list[n] = xmalloc(2 + name_len + len);
2847 strcpy(list[n], name);
2848 strcat(list[n], "=");
2849 strncat(list[n], p1, len);
2850 list[n++][name_len + len + 1] = '\0';
2851 p1 = p2;
2852 }
2853 if (p3 != inp[i]) free(p3);
2854 }
2855 list[n] = NULL;
2856 return list;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002857}
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002858
2859/* Make new string for parser */
2860static char * make_string(char ** inp)
2861{
2862 char *p;
2863 char *str = NULL;
2864 int n;
2865 int len = 2;
2866
2867 for (n = 0; inp[n]; n++) {
2868 p = insert_var_value(inp[n]);
2869 str = xrealloc(str, (len + strlen(p)));
2870 if (n) {
2871 strcat(str, " ");
2872 } else {
2873 *str = '\0';
2874 }
2875 strcat(str, p);
2876 len = strlen(str) + 3;
2877 if (p != inp[n]) free(p);
2878 }
2879 len = strlen(str);
2880 *(str + len) = '\n';
2881 *(str + len + 1) = '\0';
2882 return str;
2883}