blob: 57a4ac04f1241a1f5d1cdbeee45bd1384efbf65f [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:
Eric Andersen25f27032001-04-26 23:22:31 +000023 * b_addchr() derived from similar w_addchar function in glibc-2.2
24 * setup_redirect(), redirect_opt_num(), and big chunks of main()
Denis Vlasenko55b2de72007-04-18 17:21:28 +000025 * and many builtins derived from contributions by Erik Andersen
Eric Andersen25f27032001-04-26 23:22:31 +000026 * miscellaneous bugfixes from Matt Kraai
27 *
28 * There are two big (and related) architecture differences between
29 * this parser and the lash parser. One is that this version is
30 * actually designed from the ground up to understand nearly all
31 * of the Bourne grammar. The second, consequential change is that
32 * the parser and input reader have been turned inside out. Now,
33 * the parser is in control, and asks for input as needed. The old
34 * way had the input reader in control, and it asked for parsing to
35 * take place as needed. The new way makes it much easier to properly
36 * handle the recursion implicit in the various substitutions, especially
37 * across continuation lines.
38 *
39 * Bash grammar not implemented: (how many of these were in original sh?)
40 * $@ (those sure look like weird quoting rules)
41 * $_
42 * ! negation operator for pipes
43 * &> and >& redirection of stdout+stderr
44 * Brace Expansion
45 * Tilde Expansion
46 * fancy forms of Parameter Expansion
Eric Andersen78a7c992001-05-15 16:30:25 +000047 * aliases
Eric Andersen25f27032001-04-26 23:22:31 +000048 * Arithmetic Expansion
49 * <(list) and >(list) Process Substitution
Eric Andersen83a2ae22001-05-07 17:59:25 +000050 * reserved words: case, esac, select, function
Eric Andersen25f27032001-04-26 23:22:31 +000051 * Here Documents ( << word )
52 * Functions
53 * Major bugs:
Denis Vlasenkob81b3df2007-04-28 16:48:04 +000054 * job handling woefully incomplete and buggy (improved --vda)
Eric Andersen25f27032001-04-26 23:22:31 +000055 * reserved word execution woefully incomplete and buggy
Eric Andersen25f27032001-04-26 23:22:31 +000056 * to-do:
Eric Andersen83a2ae22001-05-07 17:59:25 +000057 * port selected bugfixes from post-0.49 busybox lash - done?
58 * finish implementing reserved words: for, while, until, do, done
59 * change { and } from special chars to reserved words
60 * builtins: break, continue, eval, return, set, trap, ulimit
61 * test magic exec
Eric Andersen25f27032001-04-26 23:22:31 +000062 * handle children going into background
63 * clean up recognition of null pipes
Eric Andersen25f27032001-04-26 23:22:31 +000064 * check setting of global_argc and global_argv
65 * control-C handling, probably with longjmp
Eric Andersen25f27032001-04-26 23:22:31 +000066 * follow IFS rules more precisely, including update semantics
Eric Andersen25f27032001-04-26 23:22:31 +000067 * figure out what to do with backslash-newline
68 * explain why we use signal instead of sigaction
69 * propagate syntax errors, die on resource errors?
70 * continuation lines, both explicit and implicit - done?
71 * memory leak finding and plugging - done?
72 * more testing, especially quoting rules and redirection
Eric Andersen78a7c992001-05-15 16:30:25 +000073 * document how quoting rules not precisely followed for variable assignments
Eric Andersen25f27032001-04-26 23:22:31 +000074 * maybe change map[] to use 2-bit entries
75 * (eventually) remove all the printf's
Eric Andersen25f27032001-04-26 23:22:31 +000076 *
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000077 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersen25f27032001-04-26 23:22:31 +000078 */
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +000079
80#include "busybox.h"
Eric Andersen25f27032001-04-26 23:22:31 +000081#include <glob.h> /* glob, of course */
Eric Andersen25f27032001-04-26 23:22:31 +000082#include <getopt.h> /* should be pretty obvious */
83
Eric Andersen25f27032001-04-26 23:22:31 +000084/* #include <dmalloc.h> */
Denis Vlasenko1359da62007-04-21 23:27:30 +000085//#define DEBUG_SHELL
86/* Finer-grained debug switch */
87//#define DEBUG_SHELL_JOBS
Eric Andersen25f27032001-04-26 23:22:31 +000088
Denis Vlasenkob81b3df2007-04-28 16:48:04 +000089//TODO: rename HUSH_INTERACTIVE -> HUSH_JOB,
90//create HUSH_INTERACTIVE which controls only prompt + line editing,
91//make HUSH_JOB dependent on it
92
93#if !ENABLE_HUSH_INTERACTIVE
94#undef ENABLE_FEATURE_EDITING
95#define ENABLE_FEATURE_EDITING 0
96#undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
97#define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
98#endif
"Robert P. J. Day"f3501602006-07-01 12:19:39 +000099
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000100#define SPECIAL_VAR_SYMBOL 03
101#define FLAG_EXIT_FROM_LOOP 1
102#define FLAG_PARSE_SEMICOLON (1 << 1) /* symbol ';' is special for parser */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000103#define FLAG_REPARSING (1 << 2) /* >=2nd pass */
Eric Andersen25f27032001-04-26 23:22:31 +0000104
105typedef enum {
106 REDIRECT_INPUT = 1,
107 REDIRECT_OVERWRITE = 2,
108 REDIRECT_APPEND = 3,
109 REDIRECT_HEREIS = 4,
110 REDIRECT_IO = 5
111} redir_type;
112
113/* The descrip member of this structure is only used to make debugging
114 * output pretty */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000115static const struct {
116 int mode;
117 int default_fd;
118 const char *descrip;
119} redir_table[] = {
Eric Andersen25f27032001-04-26 23:22:31 +0000120 { 0, 0, "()" },
121 { O_RDONLY, 0, "<" },
122 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
123 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
124 { O_RDONLY, -1, "<<" },
125 { O_RDWR, 1, "<>" }
126};
127
128typedef enum {
129 PIPE_SEQ = 1,
130 PIPE_AND = 2,
131 PIPE_OR = 3,
132 PIPE_BG = 4,
133} pipe_style;
134
135/* might eventually control execution */
136typedef enum {
137 RES_NONE = 0,
138 RES_IF = 1,
139 RES_THEN = 2,
140 RES_ELIF = 3,
141 RES_ELSE = 4,
142 RES_FI = 5,
143 RES_FOR = 6,
144 RES_WHILE = 7,
145 RES_UNTIL = 8,
146 RES_DO = 9,
147 RES_DONE = 10,
Eric Andersenaf44a0e2001-04-27 07:26:12 +0000148 RES_XXXX = 11,
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000149 RES_IN = 12,
150 RES_SNTX = 13
Eric Andersen25f27032001-04-26 23:22:31 +0000151} reserved_style;
Denis Vlasenko5f786c22007-04-20 08:35:45 +0000152enum {
153 FLAG_END = (1 << RES_NONE ),
154 FLAG_IF = (1 << RES_IF ),
155 FLAG_THEN = (1 << RES_THEN ),
156 FLAG_ELIF = (1 << RES_ELIF ),
157 FLAG_ELSE = (1 << RES_ELSE ),
158 FLAG_FI = (1 << RES_FI ),
159 FLAG_FOR = (1 << RES_FOR ),
160 FLAG_WHILE = (1 << RES_WHILE),
161 FLAG_UNTIL = (1 << RES_UNTIL),
162 FLAG_DO = (1 << RES_DO ),
163 FLAG_DONE = (1 << RES_DONE ),
164 FLAG_IN = (1 << RES_IN ),
165 FLAG_START = (1 << RES_XXXX ),
166};
Eric Andersen25f27032001-04-26 23:22:31 +0000167
168/* This holds pointers to the various results of parsing */
169struct p_context {
170 struct child_prog *child;
171 struct pipe *list_head;
172 struct pipe *pipe;
173 struct redir_struct *pending_redirect;
174 reserved_style w;
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000175 int old_flag; /* for figuring out valid reserved words */
Eric Andersen25f27032001-04-26 23:22:31 +0000176 struct p_context *stack;
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000177 int type; /* define type of parser : ";$" common or special symbol */
Eric Andersen25f27032001-04-26 23:22:31 +0000178 /* How about quoting status? */
179};
180
181struct redir_struct {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000182 struct redir_struct *next; /* pointer to the next redirect in the list */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000183 redir_type type; /* type of redirection */
184 int fd; /* file descriptor being redirected */
185 int dup; /* -1, or file descriptor being duplicated */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000186 glob_t word; /* *word.gl_pathv is the filename */
Eric Andersen25f27032001-04-26 23:22:31 +0000187};
188
189struct child_prog {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000190 pid_t pid; /* 0 if exited */
191 char **argv; /* program name and arguments */
192 struct pipe *group; /* if non-NULL, first in group or subshell */
193 int subshell; /* flag, non-zero if group must be forked */
194 struct redir_struct *redirects; /* I/O redirections */
195 glob_t glob_result; /* result of parameter globbing */
196 int is_stopped; /* is the program currently running? */
197 struct pipe *family; /* pointer back to the child's parent pipe */
198 int sp; /* number of SPECIAL_VAR_SYMBOL */
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000199 int type;
Eric Andersen25f27032001-04-26 23:22:31 +0000200};
201
202struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000203 struct pipe *next;
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000204 int num_progs; /* total number of programs in job */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000205 int running_progs; /* number of programs running (not exited) */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000206 char *cmdbuf; /* buffer various argv's point into */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000207#if ENABLE_HUSH_INTERACTIVE
208 int jobid; /* job number */
209 char *cmdtext; /* name of job */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000210 pid_t pgrp; /* process group ID for the job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000211#endif
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000212 struct child_prog *progs; /* array of commands in pipe */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000213 int stopped_progs; /* number of programs alive, but stopped */
214 int job_context; /* bitmask defining current context */
215 pipe_style followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
216 reserved_style r_mode; /* supports if, for, while, until */
Eric Andersen25f27032001-04-26 23:22:31 +0000217};
218
Eric Andersen25f27032001-04-26 23:22:31 +0000219struct close_me {
Eric Andersen25f27032001-04-26 23:22:31 +0000220 struct close_me *next;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000221 int fd;
Eric Andersen25f27032001-04-26 23:22:31 +0000222};
223
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000224struct variables {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000225 struct variables *next;
Denis Vlasenko15d78fb2007-01-30 22:28:21 +0000226 const char *name;
227 const char *value;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000228 int flg_export;
229 int flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000230};
231
Eric Andersen25f27032001-04-26 23:22:31 +0000232/* globals, connect us to the outside world
233 * the first three support $?, $#, and $1 */
"Vladimir N. Oleynik"19c37012005-09-22 14:33:15 +0000234static char **global_argv;
"Vladimir N. Oleynik"4ccd2b42006-01-31 09:27:48 +0000235static int global_argc;
236static int last_return_code;
Eric Andersen25f27032001-04-26 23:22:31 +0000237extern char **environ; /* This is in <unistd.h>, but protected with __USE_GNU */
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000238
Eric Andersen25f27032001-04-26 23:22:31 +0000239/* "globals" within this file */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +0000240static const char *ifs;
"Vladimir N. Oleynik"4ccd2b42006-01-31 09:27:48 +0000241static unsigned char map[256];
Eric Andersenbc604a22001-05-16 05:24:03 +0000242static int fake_mode;
Eric Andersenbc604a22001-05-16 05:24:03 +0000243static struct close_me *close_me_head;
Eric Andersencfa88ec2001-05-11 18:08:16 +0000244static const char *cwd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000245static unsigned last_bg_pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000246#if ENABLE_HUSH_INTERACTIVE
"Vladimir N. Oleynik"4ccd2b42006-01-31 09:27:48 +0000247static int last_jobid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000248static struct pipe *job_list;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000249/* 'interactive_fd' is a fd# open to ctty, if we have one
250 * _AND_ if we decided to mess with job control */
251static int interactive_fd;
252static pid_t saved_task_pgrp;
253static pid_t saved_tty_pgrp;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000254#else
255enum { interactive_fd = 0 };
256#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000257
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +0000258static const char *PS1;
259static const char *PS2;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000260static struct variables shell_ver = { NULL, "HUSH_VERSION", "0.01", 1, 1 };
"Vladimir N. Oleynik"19c37012005-09-22 14:33:15 +0000261static struct variables *top_vars = &shell_ver;
Eric Andersen25f27032001-04-26 23:22:31 +0000262
Eric Andersen52a97ca2001-06-22 06:49:26 +0000263
Eric Andersen25f27032001-04-26 23:22:31 +0000264#define B_CHUNK (100)
265#define B_NOSPAC 1
Eric Andersen25f27032001-04-26 23:22:31 +0000266
267typedef struct {
268 char *data;
269 int length;
270 int maxlen;
271 int quote;
272 int nonnull;
273} o_string;
274#define NULL_O_STRING {NULL,0,0,0,0}
275/* used for initialization:
276 o_string foo = NULL_O_STRING; */
277
278/* I can almost use ordinary FILE *. Is open_memstream() universally
279 * available? Where is it documented? */
280struct in_str {
281 const char *p;
Matt Kraaibdd4ece2001-05-23 17:43:00 +0000282 char peek_buf[2];
Eric Andersen25f27032001-04-26 23:22:31 +0000283 int __promptme;
284 int promptmode;
285 FILE *file;
286 int (*get) (struct in_str *);
287 int (*peek) (struct in_str *);
288};
289#define b_getch(input) ((input)->get(input))
290#define b_peek(input) ((input)->peek(input))
291
292#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
293
294struct built_in_command {
Denis Vlasenko1359da62007-04-21 23:27:30 +0000295 const char *cmd; /* name */
296 const char *descr; /* description */
297 int (*function) (char **argv); /* function ptr */
Eric Andersen25f27032001-04-26 23:22:31 +0000298};
299
300/* belongs in busybox.h */
Denis Vlasenko15d78fb2007-01-30 22:28:21 +0000301static int max(int a, int b)
302{
Denis Vlasenko7d4c44e2007-04-16 22:34:39 +0000303 return (a > b) ? a : b;
Eric Andersen25f27032001-04-26 23:22:31 +0000304}
305
Eric Andersen25f27032001-04-26 23:22:31 +0000306#ifdef DEBUG_SHELL
Denis Vlasenko1359da62007-04-21 23:27:30 +0000307#define debug_printf(...) fprintf(stderr, __VA_ARGS__)
Rob Landley88621d72006-08-29 19:41:06 +0000308/* broken, of course, but OK for testing */
309static char *indenter(int i)
310{
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000311 static char blanks[] = " ";
Denis Vlasenko1359da62007-04-21 23:27:30 +0000312 return &blanks[sizeof(blanks) - i - 1];
Rob Landley88621d72006-08-29 19:41:06 +0000313}
Eric Andersen25f27032001-04-26 23:22:31 +0000314#else
Denis Vlasenko55b2de72007-04-18 17:21:28 +0000315#define debug_printf(...) do {} while (0)
Eric Andersen25f27032001-04-26 23:22:31 +0000316#endif
Denis Vlasenko1359da62007-04-21 23:27:30 +0000317
318#ifdef DEBUG_SHELL_JOBS
319#define debug_jobs_printf(...) fprintf(stderr, __VA_ARGS__)
320#else
321#define debug_jobs_printf(...) do {} while (0)
322#endif
323
Eric Andersen25f27032001-04-26 23:22:31 +0000324#define final_printf debug_printf
325
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000326static void __syntax(const char *file, int line)
327{
Manuel Novoa III cad53642003-03-19 09:13:01 +0000328 bb_error_msg("syntax error %s:%d", file, line);
Eric Andersen25f27032001-04-26 23:22:31 +0000329}
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000330/* NB: was __FILE__, but that produces full path sometimes, so... */
Denis Vlasenko8de82bf2006-10-11 21:38:33 +0000331#define syntax() __syntax("hush.c", __LINE__)
Eric Andersen25f27032001-04-26 23:22:31 +0000332
333/* Index of subroutines: */
334/* function prototypes for builtins */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000335static int builtin_cd(char **argv);
336static int builtin_env(char **argv);
337static int builtin_eval(char **argv);
338static int builtin_exec(char **argv);
339static int builtin_exit(char **argv);
340static int builtin_export(char **argv);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000341#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko1359da62007-04-21 23:27:30 +0000342static int builtin_fg_bg(char **argv);
Denis Vlasenko1359da62007-04-21 23:27:30 +0000343static int builtin_jobs(char **argv);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000344#endif
345static int builtin_help(char **argv);
Denis Vlasenko1359da62007-04-21 23:27:30 +0000346static int builtin_pwd(char **argv);
347static int builtin_read(char **argv);
348static int builtin_set(char **argv);
349static int builtin_shift(char **argv);
350static int builtin_source(char **argv);
351static int builtin_umask(char **argv);
352static int builtin_unset(char **argv);
353static int builtin_not_written(char **argv);
Eric Andersen25f27032001-04-26 23:22:31 +0000354/* o_string manipulation: */
355static int b_check_space(o_string *o, int len);
356static int b_addchr(o_string *o, int ch);
357static void b_reset(o_string *o);
358static int b_addqchr(o_string *o, int ch, int quote);
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000359static int b_adduint(o_string *o, unsigned i);
Eric Andersen25f27032001-04-26 23:22:31 +0000360/* in_str manipulations: */
361static int static_get(struct in_str *i);
362static int static_peek(struct in_str *i);
363static int file_get(struct in_str *i);
364static int file_peek(struct in_str *i);
365static void setup_file_in_str(struct in_str *i, FILE *f);
366static void setup_string_in_str(struct in_str *i, const char *s);
367/* close_me manipulations: */
368static void mark_open(int fd);
369static void mark_closed(int fd);
Eric Anderseneaecbf32001-10-31 10:41:31 +0000370static void close_all(void);
Eric Andersen25f27032001-04-26 23:22:31 +0000371/* "run" the final data structures: */
Eric Andersenbf7df042001-05-23 22:18:35 +0000372static int free_pipe_list(struct pipe *head, int indent);
373static int free_pipe(struct pipe *pi, int indent);
Eric Andersen25f27032001-04-26 23:22:31 +0000374/* really run the final data structures: */
375static int setup_redirects(struct child_prog *prog, int squirrel[]);
Eric Andersen25f27032001-04-26 23:22:31 +0000376static int run_list_real(struct pipe *pi);
Denis Vlasenko1359da62007-04-21 23:27:30 +0000377static void pseudo_exec_argv(char **argv) ATTRIBUTE_NORETURN;
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +0000378static void pseudo_exec(struct child_prog *child) ATTRIBUTE_NORETURN;
Eric Andersen25f27032001-04-26 23:22:31 +0000379static int run_pipe_real(struct pipe *pi);
380/* extended glob support: */
381static int globhack(const char *src, int flags, glob_t *pglob);
382static int glob_needed(const char *s);
383static int xglob(o_string *dest, int flags, glob_t *pglob);
Eric Andersen78a7c992001-05-15 16:30:25 +0000384/* variable assignment: */
Eric Andersen78a7c992001-05-15 16:30:25 +0000385static int is_assignment(const char *s);
Eric Andersen25f27032001-04-26 23:22:31 +0000386/* data structure manipulation: */
387static int setup_redirect(struct p_context *ctx, int fd, redir_type style, struct in_str *input);
388static void initialize_context(struct p_context *ctx);
389static int done_word(o_string *dest, struct p_context *ctx);
390static int done_command(struct p_context *ctx);
391static int done_pipe(struct p_context *ctx, pipe_style type);
392/* primary string parsing: */
393static int redirect_dup_num(struct in_str *input);
394static int redirect_opt_num(o_string *o);
395static int process_command_subs(o_string *dest, struct p_context *ctx, struct in_str *input, int subst_end);
396static int parse_group(o_string *dest, struct p_context *ctx, struct in_str *input, int ch);
Denis Vlasenko15d78fb2007-01-30 22:28:21 +0000397static const char *lookup_param(const char *src);
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000398static char *make_string(char **inp);
Eric Andersen25f27032001-04-26 23:22:31 +0000399static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input);
400static int parse_string(o_string *dest, struct p_context *ctx, const char *src);
401static int parse_stream(o_string *dest, struct p_context *ctx, struct in_str *input0, int end_trigger);
402/* setup: */
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000403static int parse_stream_outer(struct in_str *inp, int flag);
404static int parse_string_outer(const char *s, int flag);
Eric Andersen25f27032001-04-26 23:22:31 +0000405static int parse_file_outer(FILE *f);
Eric Andersenbafd94f2001-05-02 16:11:59 +0000406/* job management: */
Eric Andersenc798b072001-06-22 06:23:03 +0000407static int checkjobs(struct pipe* fg_pipe);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000408#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko52881e92007-04-21 13:42:52 +0000409static int checkjobs_and_fg_shell(struct pipe* fg_pipe);
Eric Andersenbafd94f2001-05-02 16:11:59 +0000410static void insert_bg_job(struct pipe *pi);
411static void remove_bg_job(struct pipe *pi);
Denis Vlasenko1359da62007-04-21 23:27:30 +0000412static void delete_finished_bg_job(struct pipe *pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000413#else
414int checkjobs_and_fg_shell(struct pipe* fg_pipe); /* never called */
415#endif
Eric Andersenf72f5622001-05-15 23:21:41 +0000416/* local variable support */
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000417static char **make_list_in(char **inp, char *name);
418static char *insert_var_value(char *inp);
Denis Vlasenko15d78fb2007-01-30 22:28:21 +0000419static const char *get_local_var(const char *var);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000420static int set_local_var(const char *s, int flg_export);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +0000421static void unset_local_var(const char *name);
Eric Andersen25f27032001-04-26 23:22:31 +0000422
423/* Table of built-in functions. They can be forked or not, depending on
424 * context: within pipes, they fork. As simple commands, they do not.
425 * When used in non-forking context, they can change global variables
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000426 * in the parent shell process. If forked, of course they cannot.
Eric Andersen25f27032001-04-26 23:22:31 +0000427 * For example, 'unset foo | whatever' will parse and run, but foo will
428 * still be set at the end. */
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +0000429static const struct built_in_command bltins[] = {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000430#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000431 { "bg", "Resume a job in the background", builtin_fg_bg },
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000432#endif
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000433 { "break", "Exit for, while or until loop", builtin_not_written },
434 { "cd", "Change working directory", builtin_cd },
435 { "continue", "Continue for, while or until loop", builtin_not_written },
436 { "env", "Print all environment variables", builtin_env },
437 { "eval", "Construct and run shell command", builtin_eval },
438 { "exec", "Exec command, replacing this shell with the exec'd process",
439 builtin_exec },
440 { "exit", "Exit from shell()", builtin_exit },
441 { "export", "Set environment variable", builtin_export },
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000442#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000443 { "fg", "Bring job into the foreground", builtin_fg_bg },
444 { "jobs", "Lists the active jobs", builtin_jobs },
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000445#endif
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000446 { "pwd", "Print current directory", builtin_pwd },
447 { "read", "Input environment variable", builtin_read },
448 { "return", "Return from a function", builtin_not_written },
449 { "set", "Set/unset shell local variables", builtin_set },
450 { "shift", "Shift positional parameters", builtin_shift },
451 { "trap", "Trap signals", builtin_not_written },
452 { "ulimit","Controls resource limits", builtin_not_written },
453 { "umask","Sets file creation mask", builtin_umask },
454 { "unset", "Unset environment variable", builtin_unset },
455 { ".", "Source-in and run commands in a file", builtin_source },
456 { "help", "List shell built-in commands", builtin_help },
457 { NULL, NULL, NULL }
Eric Andersen25f27032001-04-26 23:22:31 +0000458};
459
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000460#if ENABLE_HUSH_INTERACTIVE
461
462#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000463/* move to libbb? */
464static void signal_SA_RESTART(int sig, void (*handler)(int))
465{
466 struct sigaction sa;
467 sa.sa_handler = handler;
468 sa.sa_flags = SA_RESTART;
469 sigemptyset(&sa.sa_mask);
470 sigaction(sig, &sa, NULL);
471}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000472#endif
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000473
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000474/* Signals are grouped, we handle them in batches */
475static void set_fatal_sighandler(void (*handler)(int))
476{
477 signal(SIGILL , handler);
478 signal(SIGTRAP, handler);
479 signal(SIGABRT, handler);
480 signal(SIGFPE , handler);
481 signal(SIGBUS , handler);
482 signal(SIGSEGV, handler);
483 /* bash 3.2 seems to handle these just like 'fatal' ones */
484 signal(SIGHUP , handler);
485 signal(SIGPIPE, handler);
486 signal(SIGALRM, handler);
487}
488static void set_jobctrl_sighandler(void (*handler)(int))
489{
490 signal(SIGTSTP, handler);
491 signal(SIGTTIN, handler);
492 signal(SIGTTOU, handler);
493}
494static void set_misc_sighandler(void (*handler)(int))
495{
496 signal(SIGINT , handler);
497 signal(SIGQUIT, handler);
498 signal(SIGTERM, handler);
499}
500/* SIGCHLD is special and handled separately */
501
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000502#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000503static void set_every_sighandler(void (*handler)(int))
504{
505 set_fatal_sighandler(handler);
506 set_jobctrl_sighandler(handler);
507 set_misc_sighandler(handler);
508 signal(SIGCHLD, handler);
509}
510
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000511static struct pipe *nofork_pipe;
Denis Vlasenko18e19f22007-04-28 16:43:18 +0000512struct nofork_save_area nofork_save;
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000513static sigjmp_buf nofork_jb;
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000514
Denis Vlasenkob5eaabb2007-04-28 16:45:59 +0000515static void handler_ctrl_c(int sig)
516{
517 debug_jobs_printf("got sig %d\n", sig);
518// as usual we can have all kinds of nasty problems with leaked malloc data here
519 siglongjmp(nofork_jb, 1);
520}
521
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000522static void handler_ctrl_z(int sig)
523{
524 pid_t pid;
525
Denis Vlasenko18e19f22007-04-28 16:43:18 +0000526 debug_jobs_printf("got tty sig %d\n", sig);
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000527 pid = fork();
528 if (pid < 0) /* can't fork. Pretend there were no Ctrl-Z */
529 return;
Denis Vlasenko18e19f22007-04-28 16:43:18 +0000530 debug_jobs_printf("bg'ing nofork\n");
531 nofork_save.saved = 0; /* flag the fact that Ctrl-Z was handled */
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000532 nofork_pipe->running_progs = 1;
533 nofork_pipe->stopped_progs = 0;
534 if (!pid) { /* child */
Denis Vlasenko18e19f22007-04-28 16:43:18 +0000535 debug_jobs_printf("setting pgrp for child\n");
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000536 setpgrp();
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000537 set_every_sighandler(SIG_DFL);
Denis Vlasenko18e19f22007-04-28 16:43:18 +0000538 raise(SIGTSTP); /* resend TSTP so that child will be stopped */
539 debug_jobs_printf("returning to child\n");
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000540 /* return to nofork, it will eventually exit now,
541 * not return back to shell */
542 return;
543 }
544 /* parent */
545 /* finish filling up pipe info */
546 nofork_pipe->pgrp = pid; /* child is in its own pgrp */
547 nofork_pipe->progs[0].pid = pid;
548 nofork_pipe->running_progs = 1;
549 nofork_pipe->stopped_progs = 0;
550 /* parent needs to longjmp out of running nofork.
551 * we will "return" exitcode 0, with child put in background */
552// as usual we can have all kinds of nasty problems with leaked malloc data here
553 siglongjmp(nofork_jb, 1);
554}
555
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000556#endif
557
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000558/* Restores tty foreground process group, and exits.
559 * May be called as signal handler for fatal signal
560 * (will faithfully resend signal to itself, producing correct exit state)
561 * or called directly with -EXITCODE.
562 * We also call it if xfunc is exiting. */
563static void sigexit(int sig) ATTRIBUTE_NORETURN;
564static void sigexit(int sig)
565{
566 sigset_t block_all;
567
568 /* Disable all signals: job control, SIGPIPE, etc. */
569 sigfillset(&block_all);
570 sigprocmask(SIG_SETMASK, &block_all, NULL);
571
Denis Vlasenko87cb2db2007-04-21 10:00:01 +0000572 if (interactive_fd)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000573 tcsetpgrp(interactive_fd, saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000574
575 /* Not a signal, just exit */
576 if (sig <= 0)
577 _exit(- sig);
578
579 /* Enable only this sig and kill ourself with it */
580 signal(sig, SIG_DFL);
581 sigdelset(&block_all, sig);
582 sigprocmask(SIG_SETMASK, &block_all, NULL);
583 raise(sig);
584 _exit(1); /* Should not reach it */
585}
586
587/* Restores tty foreground process group, and exits. */
588static void hush_exit(int exitcode) ATTRIBUTE_NORETURN;
589static void hush_exit(int exitcode)
590{
591 fflush(NULL); /* flush all streams */
592 sigexit(- (exitcode & 0xff));
593}
594
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000595#else /* !INTERACTIVE */
596
597#define set_fatal_sighandler(handler) ((void)0)
598#define set_jobctrl_sighandler(handler) ((void)0)
599#define set_misc_sighandler(handler) ((void)0)
600#define hush_exit(e) exit(-(e))
601
602#endif /* INTERACTIVE */
603
604
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000605static const char *set_cwd(void)
606{
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000607 if (cwd == bb_msg_unknown)
Denis Vlasenko7cced6e2007-04-12 17:08:53 +0000608 cwd = NULL; /* xrealloc_getcwd_or_warn(arg) calls free(arg)! */
Denis Vlasenko6ca04442007-02-11 16:19:28 +0000609 cwd = xrealloc_getcwd_or_warn((char *)cwd);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000610 if (!cwd)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000611 cwd = bb_msg_unknown;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000612 return cwd;
613}
614
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000615/* built-in 'eval' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000616static int builtin_eval(char **argv)
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000617{
618 char *str = NULL;
619 int rcode = EXIT_SUCCESS;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000620
Denis Vlasenko1359da62007-04-21 23:27:30 +0000621 if (argv[1]) {
622 str = make_string(argv + 1);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000623 parse_string_outer(str, FLAG_EXIT_FROM_LOOP |
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000624 FLAG_PARSE_SEMICOLON);
625 free(str);
626 rcode = last_return_code;
627 }
628 return rcode;
629}
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000630
Eric Andersen25f27032001-04-26 23:22:31 +0000631/* built-in 'cd <path>' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000632static int builtin_cd(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000633{
634 char *newdir;
Denis Vlasenko1359da62007-04-21 23:27:30 +0000635 if (argv[1] == NULL)
Eric Andersen25f27032001-04-26 23:22:31 +0000636 newdir = getenv("HOME");
637 else
Denis Vlasenko1359da62007-04-21 23:27:30 +0000638 newdir = argv[1];
Eric Andersen25f27032001-04-26 23:22:31 +0000639 if (chdir(newdir)) {
640 printf("cd: %s: %s\n", newdir, strerror(errno));
641 return EXIT_FAILURE;
642 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000643 set_cwd();
Eric Andersen25f27032001-04-26 23:22:31 +0000644 return EXIT_SUCCESS;
645}
646
647/* built-in 'env' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000648static int builtin_env(char **argv ATTRIBUTE_UNUSED)
Eric Andersen25f27032001-04-26 23:22:31 +0000649{
Denis Vlasenko5f786c22007-04-20 08:35:45 +0000650/* TODO: call env applet's code instead */
Eric Andersen25f27032001-04-26 23:22:31 +0000651 char **e = environ;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +0000652 if (e == NULL)
653 return EXIT_FAILURE;
654 while (*e) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000655 puts(*e++);
Eric Andersen25f27032001-04-26 23:22:31 +0000656 }
657 return EXIT_SUCCESS;
658}
659
660/* built-in 'exec' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000661static int builtin_exec(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000662{
Denis Vlasenko1359da62007-04-21 23:27:30 +0000663 if (argv[1] == NULL)
Eric Andersen25f27032001-04-26 23:22:31 +0000664 return EXIT_SUCCESS; /* Really? */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000665 pseudo_exec_argv(argv + 1);
Eric Andersen25f27032001-04-26 23:22:31 +0000666 /* never returns */
667}
668
669/* built-in 'exit' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000670static int builtin_exit(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000671{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000672// TODO: bash does it ONLY on top-level sh exit (+interacive only?)
673 //puts("exit"); /* bash does it */
674
Denis Vlasenko1359da62007-04-21 23:27:30 +0000675 if (argv[1] == NULL)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000676 hush_exit(last_return_code);
Denis Vlasenko5f786c22007-04-20 08:35:45 +0000677 /* mimic bash: exit 123abc == exit 255 + error msg */
678 xfunc_error_retval = 255;
679 /* bash: exit -2 == exit 254, no error msg */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000680 hush_exit(xatoi(argv[1]));
Eric Andersen25f27032001-04-26 23:22:31 +0000681}
682
683/* built-in 'export VAR=value' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000684static int builtin_export(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000685{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000686 int res = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +0000687 char *name = argv[1];
Eric Andersen25f27032001-04-26 23:22:31 +0000688
Eric Andersenf72f5622001-05-15 23:21:41 +0000689 if (name == NULL) {
Denis Vlasenko1359da62007-04-21 23:27:30 +0000690 return builtin_env(argv);
Eric Andersen25f27032001-04-26 23:22:31 +0000691 }
Eric Andersenf72f5622001-05-15 23:21:41 +0000692
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000693 name = strdup(name);
Eric Andersenf72f5622001-05-15 23:21:41 +0000694
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000695 if (name) {
Denis Vlasenko15d78fb2007-01-30 22:28:21 +0000696 const char *value = strchr(name, '=');
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000697
Eric Andersen94ac2442001-05-22 19:05:18 +0000698 if (!value) {
699 char *tmp;
700 /* They are exporting something without an =VALUE */
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000701
Eric Andersen94ac2442001-05-22 19:05:18 +0000702 value = get_local_var(name);
703 if (value) {
704 size_t ln = strlen(name);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000705
Eric Andersen94ac2442001-05-22 19:05:18 +0000706 tmp = realloc(name, ln+strlen(value)+2);
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000707 if (tmp == NULL)
Eric Andersen94ac2442001-05-22 19:05:18 +0000708 res = -1;
709 else {
710 sprintf(tmp+ln, "=%s", value);
711 name = tmp;
712 }
713 } else {
714 /* bash does not return an error when trying to export
715 * an undefined variable. Do likewise. */
716 res = 1;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000717 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000718 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000719 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000720 if (res < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000721 bb_perror_msg("export");
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000722 else if (res == 0)
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000723 res = set_local_var(name, 1);
724 else
725 res = 0;
726 free(name);
727 return res;
Eric Andersen25f27032001-04-26 23:22:31 +0000728}
729
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000730#if ENABLE_HUSH_INTERACTIVE
Eric Andersen25f27032001-04-26 23:22:31 +0000731/* built-in 'fg' and 'bg' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000732static int builtin_fg_bg(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000733{
Eric Andersen0fcd4472001-05-02 20:12:03 +0000734 int i, jobnum;
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000735 struct pipe *pi;
Eric Andersen25f27032001-04-26 23:22:31 +0000736
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000737 if (!interactive_fd)
Eric Andersenc798b072001-06-22 06:23:03 +0000738 return EXIT_FAILURE;
Eric Andersen0fcd4472001-05-02 20:12:03 +0000739 /* If they gave us no args, assume they want the last backgrounded task */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000740 if (!argv[1]) {
Eric Andersenc798b072001-06-22 06:23:03 +0000741 for (pi = job_list; pi; pi = pi->next) {
742 if (pi->jobid == last_jobid) {
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000743 goto found;
Eric Andersen0fcd4472001-05-02 20:12:03 +0000744 }
745 }
Denis Vlasenko1359da62007-04-21 23:27:30 +0000746 bb_error_msg("%s: no current job", argv[0]);
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000747 return EXIT_FAILURE;
748 }
Denis Vlasenko1359da62007-04-21 23:27:30 +0000749 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
750 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000751 return EXIT_FAILURE;
752 }
753 for (pi = job_list; pi; pi = pi->next) {
754 if (pi->jobid == jobnum) {
755 goto found;
Eric Andersen25f27032001-04-26 23:22:31 +0000756 }
757 }
Denis Vlasenko1359da62007-04-21 23:27:30 +0000758 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000759 return EXIT_FAILURE;
760 found:
Denis Vlasenko52881e92007-04-21 13:42:52 +0000761 // TODO: bash prints a string representation
762 // of job being foregrounded (like "sleep 1 | cat")
Denis Vlasenko1359da62007-04-21 23:27:30 +0000763 if (*argv[0] == 'f') {
Eric Andersen028b65b2001-06-28 01:10:11 +0000764 /* Put the job into the foreground. */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000765 tcsetpgrp(interactive_fd, pi->pgrp);
Eric Andersen25f27032001-04-26 23:22:31 +0000766 }
767
768 /* Restart the processes in the job */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000769 debug_jobs_printf("reviving %d procs, pgrp %d\n", pi->num_progs, pi->pgrp);
770 for (i = 0; i < pi->num_progs; i++) {
771 debug_jobs_printf("reviving pid %d\n", pi->progs[i].pid);
Eric Andersen0fcd4472001-05-02 20:12:03 +0000772 pi->progs[i].is_stopped = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +0000773 }
774 pi->stopped_progs = 0;
Eric Andersen25f27032001-04-26 23:22:31 +0000775
Denis Vlasenkobb81c582007-01-30 22:32:09 +0000776 i = kill(- pi->pgrp, SIGCONT);
777 if (i < 0) {
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000778 if (errno == ESRCH) {
Denis Vlasenko1359da62007-04-21 23:27:30 +0000779 delete_finished_bg_job(pi);
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000780 return EXIT_SUCCESS;
Eric Andersen028b65b2001-06-28 01:10:11 +0000781 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000782 bb_perror_msg("kill (SIGCONT)");
Eric Andersen028b65b2001-06-28 01:10:11 +0000783 }
784 }
Eric Andersen25f27032001-04-26 23:22:31 +0000785
Denis Vlasenko1359da62007-04-21 23:27:30 +0000786 if (*argv[0] == 'f') {
787 remove_bg_job(pi);
Denis Vlasenko52881e92007-04-21 13:42:52 +0000788 return checkjobs_and_fg_shell(pi);
Denis Vlasenko1359da62007-04-21 23:27:30 +0000789 }
Eric Andersen25f27032001-04-26 23:22:31 +0000790 return EXIT_SUCCESS;
791}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000792#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000793
794/* built-in 'help' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000795static int builtin_help(char **argv ATTRIBUTE_UNUSED)
Eric Andersen25f27032001-04-26 23:22:31 +0000796{
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +0000797 const struct built_in_command *x;
Eric Andersen25f27032001-04-26 23:22:31 +0000798
799 printf("\nBuilt-in commands:\n");
800 printf("-------------------\n");
801 for (x = bltins; x->cmd; x++) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000802 if (x->descr == NULL)
Eric Andersen25f27032001-04-26 23:22:31 +0000803 continue;
804 printf("%s\t%s\n", x->cmd, x->descr);
805 }
806 printf("\n\n");
807 return EXIT_SUCCESS;
808}
809
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000810#if ENABLE_HUSH_INTERACTIVE
Eric Andersen25f27032001-04-26 23:22:31 +0000811/* built-in 'jobs' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000812static int builtin_jobs(char **argv ATTRIBUTE_UNUSED)
Eric Andersen25f27032001-04-26 23:22:31 +0000813{
814 struct pipe *job;
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000815 const char *status_string;
Eric Andersen25f27032001-04-26 23:22:31 +0000816
Eric Andersenc798b072001-06-22 06:23:03 +0000817 for (job = job_list; job; job = job->next) {
Eric Andersen25f27032001-04-26 23:22:31 +0000818 if (job->running_progs == job->stopped_progs)
819 status_string = "Stopped";
820 else
821 status_string = "Running";
Eric Andersen52a97ca2001-06-22 06:49:26 +0000822
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000823 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
Eric Andersen25f27032001-04-26 23:22:31 +0000824 }
825 return EXIT_SUCCESS;
826}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000827#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000828
Eric Andersen25f27032001-04-26 23:22:31 +0000829/* built-in 'pwd' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000830static int builtin_pwd(char **argv ATTRIBUTE_UNUSED)
Eric Andersen25f27032001-04-26 23:22:31 +0000831{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000832 puts(set_cwd());
Eric Andersen25f27032001-04-26 23:22:31 +0000833 return EXIT_SUCCESS;
834}
835
836/* built-in 'read VAR' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000837static int builtin_read(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000838{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000839 int res;
Eric Andersen25f27032001-04-26 23:22:31 +0000840
Denis Vlasenko1359da62007-04-21 23:27:30 +0000841 if (argv[1]) {
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000842 char string[BUFSIZ];
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000843 char *var = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +0000844
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000845 string[0] = '\0'; /* In case stdin has only EOF */
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000846 /* read string */
847 fgets(string, sizeof(string), stdin);
848 chomp(string);
Denis Vlasenko1359da62007-04-21 23:27:30 +0000849 var = malloc(strlen(argv[1]) + strlen(string) + 2);
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000850 if (var) {
Denis Vlasenko1359da62007-04-21 23:27:30 +0000851 sprintf(var, "%s=%s", argv[1], string);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000852 res = set_local_var(var, 0);
853 } else
Eric Andersen94ac2442001-05-22 19:05:18 +0000854 res = -1;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000855 if (res)
Rob Landley5483de12006-06-20 21:35:26 +0000856 bb_perror_msg("read");
Eric Andersen94ac2442001-05-22 19:05:18 +0000857 free(var); /* So not move up to avoid breaking errno */
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000858 return res;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000859 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000860 do res = getchar(); while (res != '\n' && res != EOF);
861 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +0000862}
863
Eric Andersenf72f5622001-05-15 23:21:41 +0000864/* built-in 'set VAR=value' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000865static int builtin_set(char **argv)
Eric Andersenf72f5622001-05-15 23:21:41 +0000866{
Denis Vlasenko1359da62007-04-21 23:27:30 +0000867 char *temp = argv[1];
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000868 struct variables *e;
Eric Andersenf72f5622001-05-15 23:21:41 +0000869
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000870 if (temp == NULL)
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000871 for (e = top_vars; e; e = e->next)
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000872 printf("%s=%s\n", e->name, e->value);
873 else
874 set_local_var(temp, 0);
875
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000876 return EXIT_SUCCESS;
Eric Andersenf72f5622001-05-15 23:21:41 +0000877}
878
879
Eric Andersen25f27032001-04-26 23:22:31 +0000880/* Built-in 'shift' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000881static int builtin_shift(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000882{
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000883 int n = 1;
Denis Vlasenko1359da62007-04-21 23:27:30 +0000884 if (argv[1]) {
885 n = atoi(argv[1]);
Eric Andersen25f27032001-04-26 23:22:31 +0000886 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000887 if (n >= 0 && n < global_argc) {
Eric Andersen25f27032001-04-26 23:22:31 +0000888 /* XXX This probably breaks $0 */
889 global_argc -= n;
890 global_argv += n;
891 return EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +0000892 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +0000893 return EXIT_FAILURE;
Eric Andersen25f27032001-04-26 23:22:31 +0000894}
895
896/* Built-in '.' handler (read-in and execute commands from file) */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000897static int builtin_source(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000898{
899 FILE *input;
900 int status;
901
Denis Vlasenko1359da62007-04-21 23:27:30 +0000902 if (argv[1] == NULL)
Eric Andersen25f27032001-04-26 23:22:31 +0000903 return EXIT_FAILURE;
904
905 /* XXX search through $PATH is missing */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000906 input = fopen(argv[1], "r");
Eric Andersen25f27032001-04-26 23:22:31 +0000907 if (!input) {
Denis Vlasenko1359da62007-04-21 23:27:30 +0000908 bb_error_msg("cannot open '%s'", argv[1]);
Eric Andersen25f27032001-04-26 23:22:31 +0000909 return EXIT_FAILURE;
910 }
911
912 /* Now run the file */
913 /* XXX argv and argc are broken; need to save old global_argv
914 * (pointer only is OK!) on this stack frame,
Denis Vlasenko1359da62007-04-21 23:27:30 +0000915 * set global_argv=argv+1, recurse, and restore. */
Eric Andersen25f27032001-04-26 23:22:31 +0000916 mark_open(fileno(input));
917 status = parse_file_outer(input);
918 mark_closed(fileno(input));
919 fclose(input);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +0000920 return status;
Eric Andersen25f27032001-04-26 23:22:31 +0000921}
922
Denis Vlasenko1359da62007-04-21 23:27:30 +0000923static int builtin_umask(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000924{
Eric Andersen83a2ae22001-05-07 17:59:25 +0000925 mode_t new_umask;
Denis Vlasenko1359da62007-04-21 23:27:30 +0000926 const char *arg = argv[1];
Eric Andersen83a2ae22001-05-07 17:59:25 +0000927 char *end;
928 if (arg) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000929 new_umask = strtoul(arg, &end, 8);
930 if (*end != '\0' || end == arg) {
Eric Andersen83a2ae22001-05-07 17:59:25 +0000931 return EXIT_FAILURE;
932 }
933 } else {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000934 new_umask = umask(0);
935 printf("%.3o\n", (unsigned) new_umask);
Eric Andersen83a2ae22001-05-07 17:59:25 +0000936 }
937 umask(new_umask);
938 return EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +0000939}
940
941/* built-in 'unset VAR' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000942static int builtin_unset(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000943{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000944 /* bash returned already true */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000945 unset_local_var(argv[1]);
Eric Andersen25f27032001-04-26 23:22:31 +0000946 return EXIT_SUCCESS;
947}
948
Denis Vlasenko1359da62007-04-21 23:27:30 +0000949static int builtin_not_written(char **argv)
Eric Andersen83a2ae22001-05-07 17:59:25 +0000950{
Denis Vlasenko1359da62007-04-21 23:27:30 +0000951 printf("builtin_%s not written\n", argv[0]);
Eric Andersen83a2ae22001-05-07 17:59:25 +0000952 return EXIT_FAILURE;
953}
954
Eric Andersen25f27032001-04-26 23:22:31 +0000955static int b_check_space(o_string *o, int len)
956{
957 /* It would be easy to drop a more restrictive policy
958 * in here, such as setting a maximum string length */
959 if (o->length + len > o->maxlen) {
960 char *old_data = o->data;
Denis Vlasenkof5294e12007-04-14 10:09:57 +0000961 /* assert(data == NULL || o->maxlen != 0); */
Eric Andersen25f27032001-04-26 23:22:31 +0000962 o->maxlen += max(2*len, B_CHUNK);
963 o->data = realloc(o->data, 1 + o->maxlen);
964 if (o->data == NULL) {
965 free(old_data);
966 }
967 }
968 return o->data == NULL;
969}
970
971static int b_addchr(o_string *o, int ch)
972{
973 debug_printf("b_addchr: %c %d %p\n", ch, o->length, o);
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000974 if (b_check_space(o, 1))
975 return B_NOSPAC;
Eric Andersen25f27032001-04-26 23:22:31 +0000976 o->data[o->length] = ch;
977 o->length++;
978 o->data[o->length] = '\0';
979 return 0;
980}
981
982static void b_reset(o_string *o)
983{
984 o->length = 0;
985 o->nonnull = 0;
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000986 if (o->data != NULL)
987 *o->data = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +0000988}
989
990static void b_free(o_string *o)
991{
992 b_reset(o);
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000993 free(o->data);
Eric Andersen25f27032001-04-26 23:22:31 +0000994 o->data = NULL;
995 o->maxlen = 0;
996}
997
998/* My analysis of quoting semantics tells me that state information
999 * is associated with a destination, not a source.
1000 */
1001static int b_addqchr(o_string *o, int ch, int quote)
1002{
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00001003 if (quote && strchr("*?[\\", ch)) {
Eric Andersen25f27032001-04-26 23:22:31 +00001004 int rc;
1005 rc = b_addchr(o, '\\');
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001006 if (rc)
1007 return rc;
Eric Andersen25f27032001-04-26 23:22:31 +00001008 }
1009 return b_addchr(o, ch);
1010}
1011
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001012static int b_adduint(o_string *o, unsigned i)
Eric Andersen25f27032001-04-26 23:22:31 +00001013{
1014 int r;
Denis Vlasenko7d4c44e2007-04-16 22:34:39 +00001015 char buf[sizeof(unsigned)*3 + 1];
1016 char *p = buf;
1017 *(utoa_to_buf(i, buf, sizeof(buf))) = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001018 /* no escape checking necessary */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00001019 do r = b_addchr(o, *p++); while (r == 0 && *p);
Eric Andersen25f27032001-04-26 23:22:31 +00001020 return r;
1021}
1022
1023static int static_get(struct in_str *i)
1024{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001025 int ch = *i->p++;
1026 if (ch == '\0') return EOF;
Eric Andersen25f27032001-04-26 23:22:31 +00001027 return ch;
1028}
1029
1030static int static_peek(struct in_str *i)
1031{
1032 return *i->p;
1033}
1034
Rob Landley88621d72006-08-29 19:41:06 +00001035static void cmdedit_set_initial_prompt(void)
Eric Andersen25f27032001-04-26 23:22:31 +00001036{
Denis Vlasenko38f63192007-01-22 09:03:07 +00001037#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Eric Andersen25f27032001-04-26 23:22:31 +00001038 PS1 = NULL;
1039#else
1040 PS1 = getenv("PS1");
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001041 if (PS1 == NULL)
Eric Andersen25f27032001-04-26 23:22:31 +00001042 PS1 = "\\w \\$ ";
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001043#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001044}
1045
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001046static const char* setup_prompt_string(int promptmode)
Eric Andersen25f27032001-04-26 23:22:31 +00001047{
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001048 const char *prompt_str;
1049 debug_printf("setup_prompt_string %d ", promptmode);
Denis Vlasenko38f63192007-01-22 09:03:07 +00001050#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Eric Andersen25f27032001-04-26 23:22:31 +00001051 /* Set up the prompt */
1052 if (promptmode == 1) {
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001053 char *ns;
1054 free((char*)PS1);
1055 ns = xmalloc(strlen(cwd)+4);
1056 sprintf(ns, "%s %s", cwd, (geteuid() != 0) ? "$ " : "# ");
1057 prompt_str = ns;
1058 PS1 = ns;
Eric Andersen25f27032001-04-26 23:22:31 +00001059 } else {
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001060 prompt_str = PS2;
Eric Andersen25f27032001-04-26 23:22:31 +00001061 }
1062#else
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001063 prompt_str = (promptmode == 1) ? PS1 : PS2;
Eric Andersenaf44a0e2001-04-27 07:26:12 +00001064#endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001065 debug_printf("result %s\n", prompt_str);
1066 return prompt_str;
Eric Andersen25f27032001-04-26 23:22:31 +00001067}
1068
Denis Vlasenko38f63192007-01-22 09:03:07 +00001069#if ENABLE_FEATURE_EDITING
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001070static line_input_t *line_input_state;
1071#endif
1072
Denis Vlasenko0937be52007-04-28 16:47:08 +00001073static int get_user_input(struct in_str *i)
Eric Andersen25f27032001-04-26 23:22:31 +00001074{
Denis Vlasenko0937be52007-04-28 16:47:08 +00001075 int r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001076 const char *prompt_str;
Eric Andersen088875f2001-04-27 07:49:41 +00001077 static char the_command[BUFSIZ];
Eric Andersen25f27032001-04-26 23:22:31 +00001078
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001079 prompt_str = setup_prompt_string(i->promptmode);
Denis Vlasenko38f63192007-01-22 09:03:07 +00001080#if ENABLE_FEATURE_EDITING
Eric Andersen25f27032001-04-26 23:22:31 +00001081 /*
1082 ** enable command line editing only while a command line
1083 ** is actually being read; otherwise, we'll end up bequeathing
1084 ** atexit() handlers and other unwanted stuff to our
1085 ** child processes (rob@sysgo.de)
1086 */
Denis Vlasenko0937be52007-04-28 16:47:08 +00001087 r = read_line_input(prompt_str, the_command, BUFSIZ, line_input_state);
Eric Andersen25f27032001-04-26 23:22:31 +00001088#else
1089 fputs(prompt_str, stdout);
1090 fflush(stdout);
Denis Vlasenko0937be52007-04-28 16:47:08 +00001091 the_command[0] = r = fgetc(i->file);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001092 the_command[1] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001093#endif
Eric Andersen4f6753e2001-05-31 17:17:12 +00001094 fflush(stdout);
Eric Andersen25f27032001-04-26 23:22:31 +00001095 i->p = the_command;
Denis Vlasenko0937be52007-04-28 16:47:08 +00001096 return r; /* < 0 == EOF. Not meaningful otherwise */
Eric Andersen25f27032001-04-26 23:22:31 +00001097}
1098
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001099/* This is the magic location that prints prompts
Eric Andersen25f27032001-04-26 23:22:31 +00001100 * and gets data back from the user */
1101static int file_get(struct in_str *i)
1102{
1103 int ch;
1104
1105 ch = 0;
1106 /* If there is data waiting, eat it up */
1107 if (i->p && *i->p) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001108 ch = *i->p++;
Eric Andersen25f27032001-04-26 23:22:31 +00001109 } else {
1110 /* need to double check i->file because we might be doing something
1111 * more complicated by now, like sourcing or substituting. */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001112 if (i->__promptme && interactive_fd && i->file == stdin) {
Denis Vlasenko0937be52007-04-28 16:47:08 +00001113 while (!i->p || !(interactive_fd && i->p[0])) {
1114 if (get_user_input(i) < 0)
1115 return EOF;
Eric Andersen4f6753e2001-05-31 17:17:12 +00001116 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001117 i->promptmode = 2;
Eric Andersene67c3ce2001-05-02 02:09:36 +00001118 i->__promptme = 0;
1119 if (i->p && *i->p) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001120 ch = *i->p++;
Eric Andersene67c3ce2001-05-02 02:09:36 +00001121 }
Eric Andersen4ed5e372001-05-01 01:49:50 +00001122 } else {
Eric Andersene67c3ce2001-05-02 02:09:36 +00001123 ch = fgetc(i->file);
Eric Andersen25f27032001-04-26 23:22:31 +00001124 }
Eric Andersen4ed5e372001-05-01 01:49:50 +00001125
Eric Andersen25f27032001-04-26 23:22:31 +00001126 debug_printf("b_getch: got a %d\n", ch);
1127 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001128 if (ch == '\n')
1129 i->__promptme = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00001130 return ch;
1131}
1132
1133/* All the callers guarantee this routine will never be
1134 * used right after a newline, so prompting is not needed.
1135 */
1136static int file_peek(struct in_str *i)
1137{
1138 if (i->p && *i->p) {
1139 return *i->p;
Eric Andersen25f27032001-04-26 23:22:31 +00001140 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001141 i->peek_buf[0] = fgetc(i->file);
1142 i->peek_buf[1] = '\0';
1143 i->p = i->peek_buf;
1144 debug_printf("b_peek: got a %d\n", *i->p);
1145 return *i->p;
Eric Andersen25f27032001-04-26 23:22:31 +00001146}
1147
1148static void setup_file_in_str(struct in_str *i, FILE *f)
1149{
1150 i->peek = file_peek;
1151 i->get = file_get;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001152 i->__promptme = 1;
1153 i->promptmode = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00001154 i->file = f;
1155 i->p = NULL;
1156}
1157
1158static void setup_string_in_str(struct in_str *i, const char *s)
1159{
1160 i->peek = static_peek;
1161 i->get = static_get;
Denis Vlasenkobb81c582007-01-30 22:32:09 +00001162 i->__promptme = 1;
1163 i->promptmode = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00001164 i->p = s;
1165}
1166
1167static void mark_open(int fd)
1168{
1169 struct close_me *new = xmalloc(sizeof(struct close_me));
1170 new->fd = fd;
1171 new->next = close_me_head;
1172 close_me_head = new;
1173}
1174
1175static void mark_closed(int fd)
1176{
1177 struct close_me *tmp;
1178 if (close_me_head == NULL || close_me_head->fd != fd)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001179 bb_error_msg_and_die("corrupt close_me");
Eric Andersen25f27032001-04-26 23:22:31 +00001180 tmp = close_me_head;
1181 close_me_head = close_me_head->next;
1182 free(tmp);
1183}
1184
Eric Anderseneaecbf32001-10-31 10:41:31 +00001185static void close_all(void)
Eric Andersen25f27032001-04-26 23:22:31 +00001186{
1187 struct close_me *c;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001188 for (c = close_me_head; c; c = c->next) {
Eric Andersen25f27032001-04-26 23:22:31 +00001189 close(c->fd);
1190 }
1191 close_me_head = NULL;
1192}
1193
1194/* squirrel != NULL means we squirrel away copies of stdin, stdout,
1195 * and stderr if they are redirected. */
1196static int setup_redirects(struct child_prog *prog, int squirrel[])
1197{
1198 int openfd, mode;
1199 struct redir_struct *redir;
1200
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001201 for (redir = prog->redirects; redir; redir = redir->next) {
Eric Andersen817e73c2001-06-06 17:56:09 +00001202 if (redir->dup == -1 && redir->word.gl_pathv == NULL) {
1203 /* something went wrong in the parse. Pretend it didn't happen */
1204 continue;
1205 }
Eric Andersen25f27032001-04-26 23:22:31 +00001206 if (redir->dup == -1) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001207 mode = redir_table[redir->type].mode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001208 openfd = open_or_warn(redir->word.gl_pathv[0], mode);
Eric Andersen25f27032001-04-26 23:22:31 +00001209 if (openfd < 0) {
1210 /* this could get lost if stderr has been redirected, but
1211 bash and ash both lose it as well (though zsh doesn't!) */
Eric Andersen25f27032001-04-26 23:22:31 +00001212 return 1;
1213 }
1214 } else {
1215 openfd = redir->dup;
1216 }
1217
1218 if (openfd != redir->fd) {
1219 if (squirrel && redir->fd < 3) {
1220 squirrel[redir->fd] = dup(redir->fd);
1221 }
Eric Andersen83a2ae22001-05-07 17:59:25 +00001222 if (openfd == -3) {
1223 close(openfd);
1224 } else {
1225 dup2(openfd, redir->fd);
Matt Kraaic616e532001-06-05 16:50:08 +00001226 if (redir->dup == -1)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001227 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00001228 }
Eric Andersen25f27032001-04-26 23:22:31 +00001229 }
1230 }
1231 return 0;
1232}
1233
1234static void restore_redirects(int squirrel[])
1235{
1236 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001237 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00001238 fd = squirrel[i];
1239 if (fd != -1) {
1240 /* No error checking. I sure wouldn't know what
1241 * to do with an error if I found one! */
1242 dup2(fd, i);
1243 close(fd);
1244 }
1245 }
1246}
1247
Eric Andersenada18ff2001-05-21 16:18:22 +00001248/* never returns */
Eric Andersen94ac2442001-05-22 19:05:18 +00001249/* XXX no exit() here. If you don't exec, use _exit instead.
1250 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00001251 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001252static void pseudo_exec_argv(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00001253{
Eric Andersen78a7c992001-05-15 16:30:25 +00001254 int i, rcode;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001255 char *p;
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +00001256 const struct built_in_command *x;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00001257
Denis Vlasenko1359da62007-04-21 23:27:30 +00001258 for (i = 0; is_assignment(argv[i]); i++) {
1259 debug_printf("pid %d environment modification: %s\n",
1260 getpid(), argv[i]);
1261 // FIXME: vfork case??
1262 p = insert_var_value(argv[i]);
1263 putenv(strdup(p));
1264 if (p != argv[i])
1265 free(p);
1266 }
1267 argv += i;
1268 /* If a variable is assigned in a forest, and nobody listens,
1269 * was it ever really set?
1270 */
1271 if (argv[0] == NULL) {
1272 _exit(EXIT_SUCCESS);
1273 }
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00001274
Denis Vlasenko1359da62007-04-21 23:27:30 +00001275 /*
1276 * Check if the command matches any of the builtins.
1277 * Depending on context, this might be redundant. But it's
1278 * easier to waste a few CPU cycles than it is to figure out
1279 * if this is one of those cases.
1280 */
1281 for (x = bltins; x->cmd; x++) {
1282 if (strcmp(argv[0], x->cmd) == 0) {
1283 debug_printf("builtin exec %s\n", argv[0]);
1284 rcode = x->function(argv);
1285 fflush(stdout);
1286 _exit(rcode);
Eric Andersen94ac2442001-05-22 19:05:18 +00001287 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001288 }
Eric Andersen78a7c992001-05-15 16:30:25 +00001289
Denis Vlasenko1359da62007-04-21 23:27:30 +00001290 /* Check if the command matches any busybox internal commands
1291 * ("applets") here.
1292 * FIXME: This feature is not 100% safe, since
1293 * BusyBox is not fully reentrant, so we have no guarantee the things
1294 * from the .bss are still zeroed, or that things from .data are still
1295 * at their defaults. We could exec ourself from /proc/self/exe, but I
1296 * really dislike relying on /proc for things. We could exec ourself
1297 * from global_argv[0], but if we are in a chroot, we may not be able
1298 * to find ourself... */
Denis Vlasenko80d14be2007-04-10 23:03:30 +00001299#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko1359da62007-04-21 23:27:30 +00001300 debug_printf("running applet %s\n", argv[0]);
1301 run_applet_and_exit(argv[0], argv);
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001302// is it ok that run_applet_and_exit() does exit(), not _exit()?
1303// NB: IIRC on NOMMU we are after _vfork_, not fork!
Eric Andersenaac75e52001-04-30 18:18:45 +00001304#endif
Denis Vlasenko1359da62007-04-21 23:27:30 +00001305 debug_printf("exec of %s\n", argv[0]);
1306 execvp(argv[0], argv);
1307 bb_perror_msg("cannot exec '%s'", argv[0]);
1308 _exit(1);
1309}
1310
1311static void pseudo_exec(struct child_prog *child)
1312{
1313 int rcode;
1314
1315 if (child->argv) {
1316 pseudo_exec_argv(child->argv);
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001317 }
1318
1319 if (child->group) {
Eric Andersen25f27032001-04-26 23:22:31 +00001320 debug_printf("runtime nesting to group\n");
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00001321 // FIXME: do not modify globals! Think vfork!
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001322#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001323 interactive_fd = 0; /* crucial!!!! */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001324#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001325 rcode = run_list_real(child->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00001326 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00001327 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00001328 _exit(rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00001329 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001330
1331 /* Can happen. See what bash does with ">foo" by itself. */
1332 debug_printf("trying to pseudo_exec null command\n");
1333 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00001334}
1335
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001336#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001337static const char *get_cmdtext(struct pipe *pi)
1338{
1339 char **argv;
1340 char *p;
1341 int len;
1342
1343 /* This is subtle. ->cmdtext is created only on first backgrounding.
1344 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
1345 * On subsequent bg argv can be trashed, but we won't use it */
1346 if (pi->cmdtext)
1347 return pi->cmdtext;
1348 argv = pi->progs[0].argv;
1349 if (!argv || !argv[0])
1350 return (pi->cmdtext = xzalloc(1));
1351
1352 len = 0;
1353 do len += strlen(*argv) + 1; while (*++argv);
1354 pi->cmdtext = p = xmalloc(len);
1355 argv = pi->progs[0].argv;
1356 do {
1357 len = strlen(*argv);
1358 memcpy(p, *argv, len);
1359 p += len;
1360 *p++ = ' ';
1361 } while (*++argv);
1362 p[-1] = '\0';
1363 return pi->cmdtext;
1364}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001365#endif
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001366
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001367#if ENABLE_HUSH_INTERACTIVE
Eric Andersenbafd94f2001-05-02 16:11:59 +00001368static void insert_bg_job(struct pipe *pi)
1369{
1370 struct pipe *thejob;
1371
1372 /* Linear search for the ID of the job to use */
1373 pi->jobid = 1;
Eric Andersenc798b072001-06-22 06:23:03 +00001374 for (thejob = job_list; thejob; thejob = thejob->next)
Eric Andersenbafd94f2001-05-02 16:11:59 +00001375 if (thejob->jobid >= pi->jobid)
1376 pi->jobid = thejob->jobid + 1;
1377
1378 /* add thejob to the list of running jobs */
Eric Andersenc798b072001-06-22 06:23:03 +00001379 if (!job_list) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001380 thejob = job_list = xmalloc(sizeof(*thejob));
Eric Andersenbafd94f2001-05-02 16:11:59 +00001381 } else {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001382 for (thejob = job_list; thejob->next; thejob = thejob->next)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001383 continue;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001384 thejob->next = xmalloc(sizeof(*thejob));
1385 thejob = thejob->next;
1386 }
1387
1388 /* physically copy the struct job */
Eric Andersen0fcd4472001-05-02 20:12:03 +00001389 memcpy(thejob, pi, sizeof(struct pipe));
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001390 thejob->progs = xmalloc(sizeof(pi->progs[0]) * pi->num_progs);
1391 memcpy(thejob->progs, pi->progs, sizeof(pi->progs[0]) * pi->num_progs);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001392 thejob->next = NULL;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001393 /*seems to be wrong:*/
1394 /*thejob->running_progs = thejob->num_progs;*/
1395 /*thejob->stopped_progs = 0;*/
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001396 thejob->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00001397
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001398 /* we don't wait for background thejobs to return -- append it
Eric Andersenbafd94f2001-05-02 16:11:59 +00001399 to the list of backgrounded thejobs and leave it alone */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001400 printf("[%d] %d %s\n", thejob->jobid, thejob->progs[0].pid, thejob->cmdtext);
Eric Andersen1a6d39b2001-05-08 05:11:54 +00001401 last_bg_pid = thejob->progs[0].pid;
Eric Andersenc798b072001-06-22 06:23:03 +00001402 last_jobid = thejob->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001403}
1404
Eric Andersenbafd94f2001-05-02 16:11:59 +00001405static void remove_bg_job(struct pipe *pi)
1406{
1407 struct pipe *prev_pipe;
1408
Eric Andersenc798b072001-06-22 06:23:03 +00001409 if (pi == job_list) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001410 job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001411 } else {
Eric Andersenc798b072001-06-22 06:23:03 +00001412 prev_pipe = job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001413 while (prev_pipe->next != pi)
1414 prev_pipe = prev_pipe->next;
1415 prev_pipe->next = pi->next;
1416 }
Eric Andersen028b65b2001-06-28 01:10:11 +00001417 if (job_list)
1418 last_jobid = job_list->jobid;
1419 else
1420 last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001421}
Eric Andersen028b65b2001-06-28 01:10:11 +00001422
Denis Vlasenko1359da62007-04-21 23:27:30 +00001423/* remove a backgrounded job */
1424static void delete_finished_bg_job(struct pipe *pi)
1425{
1426 remove_bg_job(pi);
Eric Andersen52a97ca2001-06-22 06:49:26 +00001427 pi->stopped_progs = 0;
Eric Andersenbf7df042001-05-23 22:18:35 +00001428 free_pipe(pi, 0);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001429 free(pi);
1430}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001431#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00001432
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001433/* Checks to see if any processes have exited -- if they
Eric Andersenbafd94f2001-05-02 16:11:59 +00001434 have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00001435static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00001436{
Eric Andersenc798b072001-06-22 06:23:03 +00001437 int attributes;
1438 int status;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001439#if ENABLE_HUSH_INTERACTIVE
Eric Andersenbafd94f2001-05-02 16:11:59 +00001440 int prognum = 0;
1441 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001442#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00001443 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001444 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001445
Eric Andersenc798b072001-06-22 06:23:03 +00001446 attributes = WUNTRACED;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001447 if (fg_pipe == NULL) {
Eric Andersenc798b072001-06-22 06:23:03 +00001448 attributes |= WNOHANG;
1449 }
1450
Denis Vlasenko1359da62007-04-21 23:27:30 +00001451/* Do we do this right?
1452 * bash-3.00# sleep 20 | false
1453 * <Ctrl-Z pressed>
1454 * [3]+ Stopped sleep 20 | false
1455 * bash-3.00# echo $?
1456 * 1 <========== bg pipe is not fully done, but exitcode is already known!
1457 */
1458
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001459//FIXME: non-interactive bash does not continue even if all processes in fg pipe
1460//are stopped. Testcase: "cat | cat" in a script (not on command line)
1461// + killall -STOP cat
1462
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001463 wait_more:
Eric Andersenc798b072001-06-22 06:23:03 +00001464 while ((childpid = waitpid(-1, &status, attributes)) > 0) {
Denis Vlasenko1359da62007-04-21 23:27:30 +00001465 const int dead = WIFEXITED(status) || WIFSIGNALED(status);
1466
1467#ifdef DEBUG_SHELL_JOBS
1468 if (WIFSTOPPED(status))
1469 debug_jobs_printf("pid %d stopped by sig %d (exitcode %d)\n",
1470 childpid, WSTOPSIG(status), WEXITSTATUS(status));
1471 if (WIFSIGNALED(status))
1472 debug_jobs_printf("pid %d killed by sig %d (exitcode %d)\n",
1473 childpid, WTERMSIG(status), WEXITSTATUS(status));
1474 if (WIFEXITED(status))
1475 debug_jobs_printf("pid %d exited, exitcode %d\n",
1476 childpid, WEXITSTATUS(status));
1477#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001478 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00001479 if (fg_pipe) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001480 int i;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001481 for (i = 0; i < fg_pipe->num_progs; i++) {
Denis Vlasenko1359da62007-04-21 23:27:30 +00001482 debug_jobs_printf("check pid %d\n", fg_pipe->progs[i].pid);
Eric Andersenc798b072001-06-22 06:23:03 +00001483 if (fg_pipe->progs[i].pid == childpid) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001484 /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001485 if (dead) {
1486 fg_pipe->progs[i].pid = 0;
1487 fg_pipe->running_progs--;
1488 if (i == fg_pipe->num_progs-1)
1489 /* last process gives overall exitstatus */
1490 rcode = WEXITSTATUS(status);
1491 } else {
1492 fg_pipe->progs[i].is_stopped = 1;
1493 fg_pipe->stopped_progs++;
1494 }
1495 debug_jobs_printf("fg_pipe: running_progs %d stopped_progs %d\n",
1496 fg_pipe->running_progs, fg_pipe->stopped_progs);
1497 if (fg_pipe->running_progs - fg_pipe->stopped_progs <= 0) {
1498 /* All processes in fg pipe have exited/stopped */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001499#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko1359da62007-04-21 23:27:30 +00001500 if (fg_pipe->running_progs)
1501 insert_bg_job(fg_pipe);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001502#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001503 return rcode;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001504 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001505 /* There are still running processes in the fg pipe */
1506 goto wait_more;
Eric Andersenc798b072001-06-22 06:23:03 +00001507 }
1508 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001509 /* fall through to searching process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00001510 }
1511
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001512#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001513 /* We asked to wait for bg or orphaned children */
1514 /* No need to remember exitcode in this case */
Eric Andersenc798b072001-06-22 06:23:03 +00001515 for (pi = job_list; pi; pi = pi->next) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00001516 prognum = 0;
Denis Vlasenko5f786c22007-04-20 08:35:45 +00001517 while (prognum < pi->num_progs) {
1518 if (pi->progs[prognum].pid == childpid)
1519 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00001520 prognum++;
1521 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00001522 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001523#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00001524
Denis Vlasenko5f786c22007-04-20 08:35:45 +00001525 /* Happens when shell is used as init process (init=/bin/sh) */
1526 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001527 goto wait_more;
Eric Andersenaeb44c42001-05-22 20:29:00 +00001528
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001529#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5f786c22007-04-20 08:35:45 +00001530 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00001531 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00001532 /* child exited */
Eric Andersenbafd94f2001-05-02 16:11:59 +00001533 pi->progs[prognum].pid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001534 pi->running_progs--;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001535 if (!pi->running_progs) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001536 printf(JOB_STATUS_FORMAT, pi->jobid,
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001537 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001538 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001539 }
1540 } else {
1541 /* child stopped */
1542 pi->stopped_progs++;
1543 pi->progs[prognum].is_stopped = 1;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001544 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001545#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00001546 }
1547
Denis Vlasenko1359da62007-04-21 23:27:30 +00001548 /* wait found no children or failed */
1549
1550 if (childpid && errno != ECHILD)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001551 bb_perror_msg("waitpid");
Matt Kraai80abc452001-05-02 21:48:17 +00001552
Eric Andersenbafd94f2001-05-02 16:11:59 +00001553 /* move the shell to the foreground */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001554 //if (interactive_fd && tcsetpgrp(interactive_fd, getpgid(0)))
Manuel Novoa III cad53642003-03-19 09:13:01 +00001555 // bb_perror_msg("tcsetpgrp-2");
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001556 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00001557}
1558
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001559#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko52881e92007-04-21 13:42:52 +00001560static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
1561{
1562 pid_t p;
1563 int rcode = checkjobs(fg_pipe);
1564 /* Job finished, move the shell to the foreground */
1565 p = getpgid(0);
1566 debug_printf("fg'ing ourself: getpgid(0)=%d\n", (int)p);
1567 if (tcsetpgrp(interactive_fd, p) && errno != ENOTTY)
1568 bb_perror_msg("tcsetpgrp-4a");
1569 return rcode;
1570}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001571#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00001572
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001573#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001574/* run_pipe_real's helper */
1575static int run_single_fg_nofork(struct pipe *pi, const struct bb_applet *a,
1576 char **argv)
1577{
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001578#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001579 int rcode;
1580 /* TSTP handler will store pid etc in pi */
1581 nofork_pipe = pi;
1582 save_nofork_data(&nofork_save);
1583 if (sigsetjmp(nofork_jb, 1) == 0) {
1584 signal_SA_RESTART(SIGTSTP, handler_ctrl_z);
Denis Vlasenkob5eaabb2007-04-28 16:45:59 +00001585 signal(SIGINT, handler_ctrl_c);
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001586 rcode = run_nofork_applet_prime(&nofork_save, a, argv);
1587 if (--nofork_save.saved != 0) {
1588 /* Ctrl-Z forked, we are child */
1589 exit(rcode);
1590 }
1591 return rcode;
1592 }
Denis Vlasenkob5eaabb2007-04-28 16:45:59 +00001593 /* Ctrl-Z forked, we are parent; or Ctrl-C.
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001594 * Sighandler has longjmped us here */
Denis Vlasenkob5eaabb2007-04-28 16:45:59 +00001595 signal(SIGINT, SIG_IGN);
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001596 signal(SIGTSTP, SIG_IGN);
1597 debug_jobs_printf("Exiting nofork early\n");
1598 restore_nofork_data(&nofork_save);
Denis Vlasenkob5eaabb2007-04-28 16:45:59 +00001599 if (nofork_save.saved == 0) /* Ctrl-Z, not Ctrl-C */
1600 insert_bg_job(pi);
1601 else
1602 putchar('\n'); /* bash does this on Ctrl-C */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001603 return 0;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001604#else
1605 return run_nofork_applet(a, argv);
1606#endif
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001607}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001608#endif
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001609
Eric Andersen25f27032001-04-26 23:22:31 +00001610/* run_pipe_real() starts all the jobs, but doesn't wait for anything
Eric Andersenc798b072001-06-22 06:23:03 +00001611 * to finish. See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00001612 *
1613 * return code is normally -1, when the caller has to wait for children
1614 * to finish to determine the exit status of the pipe. If the pipe
1615 * is a simple builtin command, however, the action is done by the
1616 * time run_pipe_real returns, and the exit code is provided as the
1617 * return value.
1618 *
1619 * The input of the pipe is always stdin, the output is always
1620 * stdout. The outpipe[] mechanism in BusyBox-0.48 lash is bogus,
1621 * because it tries to avoid running the command substitution in
1622 * subshell, when that is in fact necessary. The subshell process
1623 * now has its stdout directed to the input of the appropriate pipe,
1624 * so this routine is noticeably simpler.
1625 */
1626static int run_pipe_real(struct pipe *pi)
1627{
1628 int i;
1629 int nextin, nextout;
1630 int pipefds[2]; /* pipefds[0] is for reading */
Rob Landley53702e52006-07-19 21:43:53 +00001631 struct child_prog *child;
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +00001632 const struct built_in_command *x;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001633 char *p;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001634 /* it is not always needed, but we aim to smaller code */
1635 int squirrel[] = { -1, -1, -1 };
1636 int rcode;
Denis Vlasenko52881e92007-04-21 13:42:52 +00001637 const int single_fg = (pi->num_progs == 1 && pi->followup != PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00001638
1639 nextin = 0;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001640#if ENABLE_HUSH_INTERACTIVE
Eric Andersenada18ff2001-05-21 16:18:22 +00001641 pi->pgrp = -1;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001642#endif
Denis Vlasenko1359da62007-04-21 23:27:30 +00001643 pi->running_progs = 0;
1644 pi->stopped_progs = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00001645
1646 /* Check if this is a simple builtin (not part of a pipe).
1647 * Builtins within pipes have to fork anyway, and are handled in
1648 * pseudo_exec. "echo foo | read bar" doesn't work on bash, either.
1649 */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001650 child = &(pi->progs[0]);
Denis Vlasenko52881e92007-04-21 13:42:52 +00001651 if (single_fg && child->group && child->subshell == 0) {
Eric Andersen04407e52001-06-07 16:42:05 +00001652 debug_printf("non-subshell grouping\n");
1653 setup_redirects(child, squirrel);
1654 /* XXX could we merge code with following builtin case,
1655 * by creating a pseudo builtin that calls run_list_real? */
1656 rcode = run_list_real(child->group);
1657 restore_redirects(squirrel);
1658 return rcode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001659 }
1660
Denis Vlasenko1359da62007-04-21 23:27:30 +00001661 if (single_fg && child->argv != NULL) {
1662 char **argv = child->argv;
1663
1664 for (i = 0; is_assignment(argv[i]); i++)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001665 continue;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001666 if (i != 0 && argv[i] == NULL) {
Eric Andersen78a7c992001-05-15 16:30:25 +00001667 /* assignments, but no command: set the local environment */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001668 for (i = 0; argv[i] != NULL; i++) {
Eric Andersen99785762001-05-22 21:37:48 +00001669 /* Ok, this case is tricky. We have to decide if this is a
1670 * local variable, or an already exported variable. If it is
1671 * already exported, we have to export the new value. If it is
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001672 * not exported, we need only set this as a local variable.
Eric Andersen99785762001-05-22 21:37:48 +00001673 * This junk is all to decide whether or not to export this
1674 * variable. */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001675 int export_me = 0;
Eric Andersen99785762001-05-22 21:37:48 +00001676 char *name, *value;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001677 name = xstrdup(argv[i]);
Eric Andersen04407e52001-06-07 16:42:05 +00001678 debug_printf("Local environment set: %s\n", name);
Eric Andersen99785762001-05-22 21:37:48 +00001679 value = strchr(name, '=');
1680 if (value)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001681 *value = 0;
1682 if (get_local_var(name)) {
1683 export_me = 1;
Eric Andersen99785762001-05-22 21:37:48 +00001684 }
1685 free(name);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001686 p = insert_var_value(argv[i]);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001687 set_local_var(p, export_me);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001688 if (p != argv[i])
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001689 free(p);
Eric Andersen78a7c992001-05-15 16:30:25 +00001690 }
1691 return EXIT_SUCCESS; /* don't worry about errors in set_local_var() yet */
1692 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001693 for (i = 0; is_assignment(argv[i]); i++) {
1694 p = insert_var_value(argv[i]);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001695 putenv(strdup(p));
Denis Vlasenko1359da62007-04-21 23:27:30 +00001696 if (p != argv[i]) {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001697 child->sp--;
1698 free(p);
1699 }
1700 }
1701 if (child->sp) {
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001702 char *str;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001703
Denis Vlasenko1359da62007-04-21 23:27:30 +00001704 str = make_string(argv + i);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001705 parse_string_outer(str, FLAG_EXIT_FROM_LOOP | FLAG_REPARSING);
1706 free(str);
1707 return last_return_code;
1708 }
Eric Andersen25f27032001-04-26 23:22:31 +00001709 for (x = bltins; x->cmd; x++) {
Denis Vlasenko1359da62007-04-21 23:27:30 +00001710 if (strcmp(argv[i], x->cmd) == 0) {
1711 if (x->function == builtin_exec && argv[i+1] == NULL) {
Eric Andersen83a2ae22001-05-07 17:59:25 +00001712 debug_printf("magic exec\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001713 setup_redirects(child, NULL);
Eric Andersen83a2ae22001-05-07 17:59:25 +00001714 return EXIT_SUCCESS;
1715 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001716 debug_printf("builtin inline %s\n", argv[0]);
Eric Andersen25f27032001-04-26 23:22:31 +00001717 /* XXX setup_redirects acts on file descriptors, not FILEs.
1718 * This is perfect for work that comes after exec().
1719 * Is it really safe for inline use? Experimentally,
1720 * things seem to work with glibc. */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001721// TODO: fflush(NULL)?
Eric Andersen25f27032001-04-26 23:22:31 +00001722 setup_redirects(child, squirrel);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001723 rcode = x->function(argv + i);
Eric Andersen25f27032001-04-26 23:22:31 +00001724 restore_redirects(squirrel);
1725 return rcode;
1726 }
1727 }
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001728#if ENABLE_FEATURE_SH_STANDALONE
1729 {
Denis Vlasenko1359da62007-04-21 23:27:30 +00001730 const struct bb_applet *a = find_applet_by_name(argv[i]);
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001731 if (a && a->nofork) {
1732 setup_redirects(child, squirrel);
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001733 rcode = run_single_fg_nofork(pi, a, argv + i);
1734 restore_redirects(squirrel);
1735 return rcode;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001736 }
1737 }
1738#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001739 }
1740
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001741 /* Going to fork a child per each pipe member */
1742
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001743 /* Disable job control signals for shell (parent) and
1744 * for initial child code after fork */
1745 set_jobctrl_sighandler(SIG_IGN);
1746
Eric Andersen25f27032001-04-26 23:22:31 +00001747 for (i = 0; i < pi->num_progs; i++) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001748 child = &(pi->progs[i]);
Eric Andersen25f27032001-04-26 23:22:31 +00001749
1750 /* pipes are inserted between pairs of commands */
1751 if ((i + 1) < pi->num_progs) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001752 if (pipe(pipefds) < 0)
1753 bb_perror_msg_and_die("pipe");
Eric Andersen25f27032001-04-26 23:22:31 +00001754 nextout = pipefds[1];
1755 } else {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001756 nextout = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00001757 pipefds[0] = -1;
1758 }
1759
1760 /* XXX test for failed fork()? */
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001761#if BB_MMU
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001762 child->pid = fork();
Eric Andersen72f9a422001-10-28 05:12:20 +00001763#else
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001764 child->pid = vfork();
Eric Andersen72f9a422001-10-28 05:12:20 +00001765#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001766 if (!child->pid) { /* child */
1767 /* Every child adds itself to new process group
1768 * with pgid == pid of first child in pipe */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001769#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001770 if (interactive_fd) {
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001771 /* Don't do pgrp restore anymore on fatal signals */
1772 set_fatal_sighandler(SIG_DFL);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001773 if (pi->pgrp < 0) /* true for 1st process only */
1774 pi->pgrp = getpid();
1775 if (setpgid(0, pi->pgrp) == 0 && pi->followup != PIPE_BG) {
1776 /* We do it in *every* child, not just first,
1777 * to avoid races */
1778 tcsetpgrp(interactive_fd, pi->pgrp);
1779 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001780 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001781#endif
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00001782 // in non-interactive case fatal sigs are already SIG_DFL
Eric Andersen25f27032001-04-26 23:22:31 +00001783 close_all();
Eric Andersen25f27032001-04-26 23:22:31 +00001784 if (nextin != 0) {
1785 dup2(nextin, 0);
1786 close(nextin);
1787 }
1788 if (nextout != 1) {
1789 dup2(nextout, 1);
1790 close(nextout);
1791 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00001792 if (pipefds[0] != -1) {
Eric Andersen25f27032001-04-26 23:22:31 +00001793 close(pipefds[0]); /* opposite end of our output pipe */
1794 }
Eric Andersen25f27032001-04-26 23:22:31 +00001795 /* Like bash, explicit redirects override pipes,
1796 * and the pipe fd is available for dup'ing. */
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001797 setup_redirects(child, NULL);
Eric Andersen52a97ca2001-06-22 06:49:26 +00001798
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001799 /* Restore default handlers just prior to exec */
1800 set_jobctrl_sighandler(SIG_DFL);
1801 set_misc_sighandler(SIG_DFL);
1802 signal(SIGCHLD, SIG_DFL);
Eric Andersen25f27032001-04-26 23:22:31 +00001803 pseudo_exec(child);
1804 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001805
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001806 pi->running_progs++;
1807
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001808#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00001809 /* Second and next children need to know pid of first one */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001810 if (pi->pgrp < 0)
Eric Andersen0fcd4472001-05-02 20:12:03 +00001811 pi->pgrp = child->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001812#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001813
Eric Andersen0fcd4472001-05-02 20:12:03 +00001814 /* Don't check for errors. The child may be dead already,
1815 * in which case setpgid returns error code EACCES. */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001816 //why we do it at all?? child does it itself
1817 //if (interactive_fd)
1818 // setpgid(child->pid, pi->pgrp);
Eric Andersen0fcd4472001-05-02 20:12:03 +00001819
Eric Andersen25f27032001-04-26 23:22:31 +00001820 if (nextin != 0)
1821 close(nextin);
1822 if (nextout != 1)
1823 close(nextout);
1824
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001825 /* If there isn't another process, nextin is garbage
Eric Andersen25f27032001-04-26 23:22:31 +00001826 but it doesn't matter */
1827 nextin = pipefds[0];
1828 }
1829 return -1;
1830}
1831
1832static int run_list_real(struct pipe *pi)
1833{
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001834 char *save_name = NULL;
1835 char **list = NULL;
1836 char **save_list = NULL;
1837 struct pipe *rpipe;
1838 int flag_rep = 0;
1839 int save_num_progs;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001840 int rcode = 0, flag_skip = 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001841 int flag_restore = 0;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001842 int if_code = 0, next_if_code = 0; /* need double-buffer to handle elif */
1843 reserved_style rmode, skip_more_in_this_rmode = RES_XXXX;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001844 /* check syntax for "for" */
1845 for (rpipe = pi; rpipe; rpipe = rpipe->next) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001846 if ((rpipe->r_mode == RES_IN || rpipe->r_mode == RES_FOR)
1847 && (rpipe->next == NULL)
1848 ) {
1849 syntax();
1850 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001851 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001852 if ((rpipe->r_mode == RES_IN && rpipe->next->r_mode == RES_IN && rpipe->next->progs->argv != NULL)
1853 || (rpipe->r_mode == RES_FOR && rpipe->next->r_mode != RES_IN)
1854 ) {
1855 syntax();
1856 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001857 }
1858 }
1859 for (; pi; pi = (flag_restore != 0) ? rpipe : pi->next) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001860 if (pi->r_mode == RES_WHILE || pi->r_mode == RES_UNTIL
1861 || pi->r_mode == RES_FOR
1862 ) {
1863 flag_restore = 0;
1864 if (!rpipe) {
1865 flag_rep = 0;
1866 rpipe = pi;
1867 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001868 }
Eric Andersen25f27032001-04-26 23:22:31 +00001869 rmode = pi->r_mode;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001870 debug_printf("rmode=%d if_code=%d next_if_code=%d skip_more=%d\n",
1871 rmode, if_code, next_if_code, skip_more_in_this_rmode);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001872 if (rmode == skip_more_in_this_rmode && flag_skip) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001873 if (pi->followup == PIPE_SEQ)
1874 flag_skip = 0;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001875 continue;
1876 }
1877 flag_skip = 1;
Eric Andersen4ed5e372001-05-01 01:49:50 +00001878 skip_more_in_this_rmode = RES_XXXX;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001879 if (rmode == RES_THEN || rmode == RES_ELSE)
1880 if_code = next_if_code;
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00001881 if (rmode == RES_THEN && if_code)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001882 continue;
1883 if (rmode == RES_ELSE && !if_code)
1884 continue;
1885 if (rmode == RES_ELIF && !if_code)
1886 break;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001887 if (rmode == RES_FOR && pi->num_progs) {
1888 if (!list) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001889 /* if no variable values after "in" we skip "for" */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001890 if (!pi->next->progs->argv)
1891 continue;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001892 /* create list of variable values */
1893 list = make_list_in(pi->next->progs->argv,
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001894 pi->progs->argv[0]);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001895 save_list = list;
1896 save_name = pi->progs->argv[0];
1897 pi->progs->argv[0] = NULL;
1898 flag_rep = 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001899 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001900 if (!*list) {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001901 free(pi->progs->argv[0]);
1902 free(save_list);
1903 list = NULL;
1904 flag_rep = 0;
1905 pi->progs->argv[0] = save_name;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001906 pi->progs->glob_result.gl_pathv[0] = pi->progs->argv[0];
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001907 continue;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001908 }
Denis Vlasenko5f786c22007-04-20 08:35:45 +00001909 /* insert new value from list for variable */
1910 if (pi->progs->argv[0])
1911 free(pi->progs->argv[0]);
1912 pi->progs->argv[0] = *list++;
1913 pi->progs->glob_result.gl_pathv[0] = pi->progs->argv[0];
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001914 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001915 if (rmode == RES_IN)
1916 continue;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001917 if (rmode == RES_DO) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001918 if (!flag_rep)
1919 continue;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001920 }
Denis Vlasenko5f786c22007-04-20 08:35:45 +00001921 if (rmode == RES_DONE) {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001922 if (flag_rep) {
1923 flag_restore = 1;
1924 } else {
1925 rpipe = NULL;
1926 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001927 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001928 if (pi->num_progs == 0)
1929 continue;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001930 save_num_progs = pi->num_progs; /* save number of programs */
Eric Andersen25f27032001-04-26 23:22:31 +00001931 rcode = run_pipe_real(pi);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00001932 debug_printf("run_pipe_real returned %d\n", rcode);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001933 if (rcode != -1) {
Eric Andersen25f27032001-04-26 23:22:31 +00001934 /* We only ran a builtin: rcode was set by the return value
1935 * of run_pipe_real(), and we don't need to wait for anything. */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001936 } else if (pi->followup == PIPE_BG) {
Eric Andersen25f27032001-04-26 23:22:31 +00001937 /* XXX check bash's behavior with nontrivial pipes */
1938 /* XXX compute jobid */
1939 /* XXX what does bash do with attempts to background builtins? */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001940#if ENABLE_HUSH_INTERACTIVE
Eric Andersenbafd94f2001-05-02 16:11:59 +00001941 insert_bg_job(pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001942#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001943 rcode = EXIT_SUCCESS;
1944 } else {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001945 if (interactive_fd) {
Denis Vlasenko52881e92007-04-21 13:42:52 +00001946 rcode = checkjobs_and_fg_shell(pi);
Eric Andersen25f27032001-04-26 23:22:31 +00001947 } else {
Eric Andersenc798b072001-06-22 06:23:03 +00001948 rcode = checkjobs(pi);
Eric Andersen25f27032001-04-26 23:22:31 +00001949 }
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00001950 debug_printf("checkjobs returned %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00001951 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001952 last_return_code = rcode;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001953 pi->num_progs = save_num_progs; /* restore number of programs */
Denis Vlasenko5f786c22007-04-20 08:35:45 +00001954 if (rmode == RES_IF || rmode == RES_ELIF)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001955 next_if_code = rcode; /* can be overwritten a number of times */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001956 if (rmode == RES_WHILE)
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001957 flag_rep = !last_return_code;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001958 if (rmode == RES_UNTIL)
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001959 flag_rep = last_return_code;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001960 if ((rcode == EXIT_SUCCESS && pi->followup == PIPE_OR)
1961 || (rcode != EXIT_SUCCESS && pi->followup == PIPE_AND)
1962 ) {
1963 skip_more_in_this_rmode = rmode;
1964 }
Eric Andersen028b65b2001-06-28 01:10:11 +00001965 checkjobs(NULL);
Eric Andersen25f27032001-04-26 23:22:31 +00001966 }
1967 return rcode;
1968}
1969
Eric Andersen25f27032001-04-26 23:22:31 +00001970/* return code is the exit status of the pipe */
Eric Andersenbf7df042001-05-23 22:18:35 +00001971static int free_pipe(struct pipe *pi, int indent)
Eric Andersen25f27032001-04-26 23:22:31 +00001972{
1973 char **p;
1974 struct child_prog *child;
1975 struct redir_struct *r, *rnext;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001976 int a, i, ret_code = 0;
Eric Andersen52a97ca2001-06-22 06:49:26 +00001977
1978 if (pi->stopped_progs > 0)
1979 return ret_code;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001980 final_printf("%s run pipe: (pid %d)\n", indenter(indent), getpid());
1981 for (i = 0; i < pi->num_progs; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00001982 child = &pi->progs[i];
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001983 final_printf("%s command %d:\n", indenter(indent), i);
Eric Andersen25f27032001-04-26 23:22:31 +00001984 if (child->argv) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001985 for (a = 0, p = child->argv; *p; a++, p++) {
1986 final_printf("%s argv[%d] = %s\n", indenter(indent), a, *p);
Eric Andersen25f27032001-04-26 23:22:31 +00001987 }
1988 globfree(&child->glob_result);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001989 child->argv = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00001990 } else if (child->group) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001991 final_printf("%s begin group (subshell:%d)\n", indenter(indent), child->subshell);
1992 ret_code = free_pipe_list(child->group, indent+3);
1993 final_printf("%s end group\n", indenter(indent));
Eric Andersen25f27032001-04-26 23:22:31 +00001994 } else {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001995 final_printf("%s (nil)\n", indenter(indent));
Eric Andersen25f27032001-04-26 23:22:31 +00001996 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001997 for (r = child->redirects; r; r = rnext) {
Rob Landley88621d72006-08-29 19:41:06 +00001998 final_printf("%s redirect %d%s", indenter(indent), r->fd, redir_table[r->type].descrip);
Eric Andersen25f27032001-04-26 23:22:31 +00001999 if (r->dup == -1) {
Eric Andersen817e73c2001-06-06 17:56:09 +00002000 /* guard against the case >$FOO, where foo is unset or blank */
2001 if (r->word.gl_pathv) {
2002 final_printf(" %s\n", *r->word.gl_pathv);
2003 globfree(&r->word);
2004 }
Eric Andersen25f27032001-04-26 23:22:31 +00002005 } else {
2006 final_printf("&%d\n", r->dup);
2007 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002008 rnext = r->next;
Eric Andersen25f27032001-04-26 23:22:31 +00002009 free(r);
2010 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002011 child->redirects = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002012 }
2013 free(pi->progs); /* children are an array, they get freed all at once */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002014 pi->progs = NULL;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002015#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002016 free(pi->cmdtext);
2017 pi->cmdtext = NULL;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002018#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002019 return ret_code;
2020}
2021
Eric Andersenbf7df042001-05-23 22:18:35 +00002022static int free_pipe_list(struct pipe *head, int indent)
Eric Andersen25f27032001-04-26 23:22:31 +00002023{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002024 int rcode = 0; /* if list has no members */
Eric Andersen25f27032001-04-26 23:22:31 +00002025 struct pipe *pi, *next;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002026 for (pi = head; pi; pi = next) {
Rob Landley88621d72006-08-29 19:41:06 +00002027 final_printf("%s pipe reserved mode %d\n", indenter(indent), pi->r_mode);
Eric Andersenbf7df042001-05-23 22:18:35 +00002028 rcode = free_pipe(pi, indent);
Rob Landley88621d72006-08-29 19:41:06 +00002029 final_printf("%s pipe followup code %d\n", indenter(indent), pi->followup);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002030 next = pi->next;
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002031 /*pi->next = NULL;*/
Eric Andersen25f27032001-04-26 23:22:31 +00002032 free(pi);
2033 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002034 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00002035}
2036
2037/* Select which version we will use */
2038static int run_list(struct pipe *pi)
2039{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002040 int rcode = 0;
2041 if (fake_mode == 0) {
Eric Andersen25f27032001-04-26 23:22:31 +00002042 rcode = run_list_real(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002043 }
Eric Andersenbf7df042001-05-23 22:18:35 +00002044 /* free_pipe_list has the side effect of clearing memory
Eric Andersen25f27032001-04-26 23:22:31 +00002045 * In the long run that function can be merged with run_list_real,
2046 * but doing that now would hobble the debugging effort. */
Eric Andersenbf7df042001-05-23 22:18:35 +00002047 free_pipe_list(pi,0);
Eric Andersen25f27032001-04-26 23:22:31 +00002048 return rcode;
2049}
2050
2051/* The API for glob is arguably broken. This routine pushes a non-matching
2052 * string into the output structure, removing non-backslashed backslashes.
2053 * If someone can prove me wrong, by performing this function within the
2054 * original glob(3) api, feel free to rewrite this routine into oblivion.
2055 * Return code (0 vs. GLOB_NOSPACE) matches glob(3).
2056 * XXX broken if the last character is '\\', check that before calling.
2057 */
2058static int globhack(const char *src, int flags, glob_t *pglob)
2059{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002060 int cnt = 0, pathc;
Eric Andersen25f27032001-04-26 23:22:31 +00002061 const char *s;
2062 char *dest;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002063 for (cnt = 1, s = src; s && *s; s++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002064 if (*s == '\\') s++;
2065 cnt++;
2066 }
2067 dest = malloc(cnt);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002068 if (!dest)
2069 return GLOB_NOSPACE;
Eric Andersen25f27032001-04-26 23:22:31 +00002070 if (!(flags & GLOB_APPEND)) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002071 pglob->gl_pathv = NULL;
2072 pglob->gl_pathc = 0;
2073 pglob->gl_offs = 0;
2074 pglob->gl_offs = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00002075 }
2076 pathc = ++pglob->gl_pathc;
2077 pglob->gl_pathv = realloc(pglob->gl_pathv, (pathc+1)*sizeof(*pglob->gl_pathv));
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002078 if (pglob->gl_pathv == NULL)
2079 return GLOB_NOSPACE;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002080 pglob->gl_pathv[pathc-1] = dest;
2081 pglob->gl_pathv[pathc] = NULL;
2082 for (s = src; s && *s; s++, dest++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002083 if (*s == '\\') s++;
2084 *dest = *s;
2085 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002086 *dest = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002087 return 0;
2088}
2089
2090/* XXX broken if the last character is '\\', check that before calling */
2091static int glob_needed(const char *s)
2092{
2093 for (; *s; s++) {
2094 if (*s == '\\') s++;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002095 if (strchr("*[?", *s)) return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002096 }
2097 return 0;
2098}
2099
Eric Andersen25f27032001-04-26 23:22:31 +00002100static int xglob(o_string *dest, int flags, glob_t *pglob)
2101{
2102 int gr;
2103
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002104 /* short-circuit for null word */
Eric Andersen25f27032001-04-26 23:22:31 +00002105 /* we can code this better when the debug_printf's are gone */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002106 if (dest->length == 0) {
2107 if (dest->nonnull) {
2108 /* bash man page calls this an "explicit" null */
2109 gr = globhack(dest->data, flags, pglob);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002110 debug_printf("globhack returned %d\n", gr);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002111 } else {
Eric Andersen25f27032001-04-26 23:22:31 +00002112 return 0;
2113 }
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002114 } else if (glob_needed(dest->data)) {
Eric Andersen25f27032001-04-26 23:22:31 +00002115 gr = glob(dest->data, flags, NULL, pglob);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002116 debug_printf("glob returned %d\n", gr);
Eric Andersen25f27032001-04-26 23:22:31 +00002117 if (gr == GLOB_NOMATCH) {
2118 /* quote removal, or more accurately, backslash removal */
2119 gr = globhack(dest->data, flags, pglob);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002120 debug_printf("globhack returned %d\n", gr);
Eric Andersen25f27032001-04-26 23:22:31 +00002121 }
2122 } else {
2123 gr = globhack(dest->data, flags, pglob);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002124 debug_printf("globhack returned %d\n", gr);
Eric Andersen25f27032001-04-26 23:22:31 +00002125 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002126 if (gr == GLOB_NOSPACE)
Manuel Novoa III cad53642003-03-19 09:13:01 +00002127 bb_error_msg_and_die("out of memory during glob");
Eric Andersen25f27032001-04-26 23:22:31 +00002128 if (gr != 0) { /* GLOB_ABORTED ? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002129 bb_error_msg("glob(3) error %d", gr);
Eric Andersen25f27032001-04-26 23:22:31 +00002130 }
2131 /* globprint(glob_target); */
2132 return gr;
2133}
2134
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002135static char **make_list_in(char **inp, char *name)
2136{
2137 int len, i;
2138 int name_len = strlen(name);
2139 int n = 0;
2140 char **list;
2141 char *p1, *p2, *p3;
2142
2143 /* create list of variable values */
2144 list = xmalloc(sizeof(*list));
2145 for (i = 0; inp[i]; i++) {
2146 p3 = insert_var_value(inp[i]);
2147 p1 = p3;
2148 while (*p1) {
2149 if ((*p1 == ' ')) {
2150 p1++;
2151 continue;
2152 }
2153 p2 = strchr(p1, ' ');
2154 if (p2) {
2155 len = p2 - p1;
2156 } else {
2157 len = strlen(p1);
2158 p2 = p1 + len;
2159 }
2160 /* we use n + 2 in realloc for list, because we add
2161 * new element and then we will add NULL element */
2162 list = xrealloc(list, sizeof(*list) * (n + 2));
2163 list[n] = xmalloc(2 + name_len + len);
2164 strcpy(list[n], name);
2165 strcat(list[n], "=");
2166 strncat(list[n], p1, len);
2167 list[n++][name_len + len + 1] = '\0';
2168 p1 = p2;
2169 }
2170 if (p3 != inp[i]) free(p3);
2171 }
2172 list[n] = NULL;
2173 return list;
2174}
2175
2176static char *insert_var_value(char *inp)
2177{
2178 int res_str_len = 0;
2179 int len;
2180 int done = 0;
2181 char *p, *res_str = NULL;
2182 const char *p1;
2183
2184 while ((p = strchr(inp, SPECIAL_VAR_SYMBOL))) {
2185 if (p != inp) {
2186 len = p - inp;
2187 res_str = xrealloc(res_str, (res_str_len + len));
2188 strncpy((res_str + res_str_len), inp, len);
2189 res_str_len += len;
2190 }
2191 inp = ++p;
2192 p = strchr(inp, SPECIAL_VAR_SYMBOL);
2193 *p = '\0';
2194 p1 = lookup_param(inp);
2195 if (p1) {
2196 len = res_str_len + strlen(p1);
2197 res_str = xrealloc(res_str, (1 + len));
2198 strcpy((res_str + res_str_len), p1);
2199 res_str_len = len;
2200 }
2201 *p = SPECIAL_VAR_SYMBOL;
2202 inp = ++p;
2203 done = 1;
2204 }
2205 if (done) {
2206 res_str = xrealloc(res_str, (1 + res_str_len + strlen(inp)));
2207 strcpy((res_str + res_str_len), inp);
2208 while ((p = strchr(res_str, '\n'))) {
2209 *p = ' ';
2210 }
2211 }
2212 return (res_str == NULL) ? inp : res_str;
2213}
2214
Eric Andersenf72f5622001-05-15 23:21:41 +00002215/* This is used to get/check local shell variables */
Denis Vlasenko15d78fb2007-01-30 22:28:21 +00002216static const char *get_local_var(const char *s)
Eric Andersenf72f5622001-05-15 23:21:41 +00002217{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002218 struct variables *cur;
Eric Andersenf72f5622001-05-15 23:21:41 +00002219
2220 if (!s)
2221 return NULL;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002222 for (cur = top_vars; cur; cur = cur->next)
2223 if (strcmp(cur->name, s) == 0)
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002224 return cur->value;
Eric Andersenf72f5622001-05-15 23:21:41 +00002225 return NULL;
2226}
2227
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002228/* This is used to set local shell variables
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002229 flg_export == 0 if only local (not exporting) variable
2230 flg_export == 1 if "new" exporting environ
2231 flg_export > 1 if current startup environ (not call putenv()) */
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002232static int set_local_var(const char *s, int flg_export)
Eric Andersen78a7c992001-05-15 16:30:25 +00002233{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002234 char *name, *value;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002235 int result = 0;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002236 struct variables *cur;
Eric Andersen20a69a72001-05-15 17:24:44 +00002237
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002238 name = strdup(s);
Eric Andersen20a69a72001-05-15 17:24:44 +00002239
2240 /* Assume when we enter this function that we are already in
2241 * NAME=VALUE format. So the first order of business is to
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002242 * split 's' on the '=' into 'name' and 'value' */
Eric Andersen20a69a72001-05-15 17:24:44 +00002243 value = strchr(name, '=');
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002244 /*if (value == 0 && ++value == 0) ??? -vda */
2245 if (value == NULL || value[1] == '\0') {
Eric Andersen99785762001-05-22 21:37:48 +00002246 free(name);
2247 return -1;
2248 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002249 *value++ = '\0';
Eric Andersen20a69a72001-05-15 17:24:44 +00002250
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002251 for (cur = top_vars; cur; cur = cur->next) {
2252 if (strcmp(cur->name, name) == 0)
Eric Andersen99785762001-05-22 21:37:48 +00002253 break;
2254 }
Eric Andersen20a69a72001-05-15 17:24:44 +00002255
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002256 if (cur) {
2257 if (strcmp(cur->value, value) == 0) {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002258 if (flg_export > 0 && cur->flg_export == 0)
Denis Vlasenko15d78fb2007-01-30 22:28:21 +00002259 cur->flg_export = flg_export;
Eric Andersen99785762001-05-22 21:37:48 +00002260 else
2261 result++;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002262 } else if (cur->flg_read_only) {
2263 bb_error_msg("%s: readonly variable", name);
2264 result = -1;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002265 } else {
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002266 if (flg_export > 0 || cur->flg_export > 1)
2267 cur->flg_export = 1;
2268 free((char*)cur->value);
Eric Andersen99785762001-05-22 21:37:48 +00002269
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002270 cur->value = strdup(value);
Eric Andersen99785762001-05-22 21:37:48 +00002271 }
2272 } else {
2273 cur = malloc(sizeof(struct variables));
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002274 if (!cur) {
Eric Andersen99785762001-05-22 21:37:48 +00002275 result = -1;
2276 } else {
2277 cur->name = strdup(name);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002278 if (cur->name) {
Eric Andersen99785762001-05-22 21:37:48 +00002279 free(cur);
2280 result = -1;
2281 } else {
2282 struct variables *bottom = top_vars;
2283 cur->value = strdup(value);
2284 cur->next = 0;
2285 cur->flg_export = flg_export;
2286 cur->flg_read_only = 0;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002287 while (bottom->next)
2288 bottom = bottom->next;
Eric Andersen99785762001-05-22 21:37:48 +00002289 bottom->next = cur;
Eric Andersen20a69a72001-05-15 17:24:44 +00002290 }
Eric Andersen20a69a72001-05-15 17:24:44 +00002291 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002292 }
Eric Andersen20a69a72001-05-15 17:24:44 +00002293
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002294 if (result == 0 && cur->flg_export == 1) {
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002295 *(value-1) = '=';
2296 result = putenv(name);
2297 } else {
Eric Andersen94ac2442001-05-22 19:05:18 +00002298 free(name);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002299 if (result > 0) /* equivalent to previous set */
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002300 result = 0;
2301 }
Eric Andersen20a69a72001-05-15 17:24:44 +00002302 return result;
2303}
2304
Eric Andersenf72f5622001-05-15 23:21:41 +00002305static void unset_local_var(const char *name)
Eric Andersen20a69a72001-05-15 17:24:44 +00002306{
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002307 struct variables *cur, *next;
Eric Andersen20a69a72001-05-15 17:24:44 +00002308
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002309 if (!name)
2310 return;
2311 for (cur = top_vars; cur; cur = cur->next) {
2312 if (strcmp(cur->name, name) == 0) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002313 if (cur->flg_read_only) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00002314 bb_error_msg("%s: readonly variable", name);
Eric Andersen94ac2442001-05-22 19:05:18 +00002315 return;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002316 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002317 if (cur->flg_export)
2318 unsetenv(cur->name);
2319 free((char*)cur->name);
2320 free((char*)cur->value);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002321 next = top_vars;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002322 while (next->next != cur)
2323 next = next->next;
2324 next->next = cur->next;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002325 free(cur);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002326 return;
Eric Andersenf72f5622001-05-15 23:21:41 +00002327 }
Eric Andersen20a69a72001-05-15 17:24:44 +00002328 }
Eric Andersen78a7c992001-05-15 16:30:25 +00002329}
2330
2331static int is_assignment(const char *s)
2332{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002333 if (!s || !isalpha(*s))
2334 return 0;
2335 s++;
2336 while (isalnum(*s) || *s == '_')
2337 s++;
2338 return *s == '=';
Eric Andersen78a7c992001-05-15 16:30:25 +00002339}
2340
Eric Andersen25f27032001-04-26 23:22:31 +00002341/* the src parameter allows us to peek forward to a possible &n syntax
2342 * for file descriptor duplication, e.g., "2>&1".
2343 * Return code is 0 normally, 1 if a syntax error is detected in src.
2344 * Resource errors (in xmalloc) cause the process to exit */
2345static int setup_redirect(struct p_context *ctx, int fd, redir_type style,
2346 struct in_str *input)
2347{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002348 struct child_prog *child = ctx->child;
Eric Andersen25f27032001-04-26 23:22:31 +00002349 struct redir_struct *redir = child->redirects;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002350 struct redir_struct *last_redir = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002351
2352 /* Create a new redir_struct and drop it onto the end of the linked list */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002353 while (redir) {
2354 last_redir = redir;
2355 redir = redir->next;
Eric Andersen25f27032001-04-26 23:22:31 +00002356 }
2357 redir = xmalloc(sizeof(struct redir_struct));
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002358 redir->next = NULL;
2359 redir->word.gl_pathv = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002360 if (last_redir) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002361 last_redir->next = redir;
Eric Andersen25f27032001-04-26 23:22:31 +00002362 } else {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002363 child->redirects = redir;
Eric Andersen25f27032001-04-26 23:22:31 +00002364 }
2365
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002366 redir->type = style;
2367 redir->fd = (fd == -1) ? redir_table[style].default_fd : fd;
Eric Andersen25f27032001-04-26 23:22:31 +00002368
2369 debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip);
2370
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002371 /* Check for a '2>&1' type redirect */
Eric Andersen25f27032001-04-26 23:22:31 +00002372 redir->dup = redirect_dup_num(input);
2373 if (redir->dup == -2) return 1; /* syntax error */
2374 if (redir->dup != -1) {
2375 /* Erik had a check here that the file descriptor in question
Eric Andersen83a2ae22001-05-07 17:59:25 +00002376 * is legit; I postpone that to "run time"
2377 * A "-" representation of "close me" shows up as a -3 here */
Eric Andersen25f27032001-04-26 23:22:31 +00002378 debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup);
2379 } else {
2380 /* We do _not_ try to open the file that src points to,
2381 * since we need to return and let src be expanded first.
2382 * Set ctx->pending_redirect, so we know what to do at the
2383 * end of the next parsed word.
2384 */
2385 ctx->pending_redirect = redir;
2386 }
2387 return 0;
2388}
2389
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00002390static struct pipe *new_pipe(void)
2391{
Eric Andersen25f27032001-04-26 23:22:31 +00002392 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002393 pi = xzalloc(sizeof(struct pipe));
2394 /*pi->num_progs = 0;*/
2395 /*pi->progs = NULL;*/
2396 /*pi->next = NULL;*/
2397 /*pi->followup = 0; invalid */
2398 if (RES_NONE)
2399 pi->r_mode = RES_NONE;
Eric Andersen25f27032001-04-26 23:22:31 +00002400 return pi;
2401}
2402
2403static void initialize_context(struct p_context *ctx)
2404{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002405 ctx->pipe = NULL;
2406 ctx->pending_redirect = NULL;
2407 ctx->child = NULL;
2408 ctx->list_head = new_pipe();
2409 ctx->pipe = ctx->list_head;
2410 ctx->w = RES_NONE;
2411 ctx->stack = NULL;
2412 ctx->old_flag = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00002413 done_command(ctx); /* creates the memory for working child */
2414}
2415
2416/* normal return is 0
2417 * if a reserved word is found, and processed, return 1
2418 * should handle if, then, elif, else, fi, for, while, until, do, done.
2419 * case, function, and select are obnoxious, save those for later.
2420 */
"Vladimir N. Oleynik"19c37012005-09-22 14:33:15 +00002421static int reserved_word(o_string *dest, struct p_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00002422{
2423 struct reserved_combo {
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002424 char literal[7];
2425 unsigned char code;
2426 int flag;
Eric Andersen25f27032001-04-26 23:22:31 +00002427 };
2428 /* Mostly a list of accepted follow-up reserved words.
2429 * FLAG_END means we are done with the sequence, and are ready
2430 * to turn the compound list into a command.
2431 * FLAG_START means the word must start a new compound list.
2432 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002433 static const struct reserved_combo reserved_list[] = {
Eric Andersen25f27032001-04-26 23:22:31 +00002434 { "if", RES_IF, FLAG_THEN | FLAG_START },
2435 { "then", RES_THEN, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
2436 { "elif", RES_ELIF, FLAG_THEN },
2437 { "else", RES_ELSE, FLAG_FI },
2438 { "fi", RES_FI, FLAG_END },
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002439 { "for", RES_FOR, FLAG_IN | FLAG_START },
Eric Andersen25f27032001-04-26 23:22:31 +00002440 { "while", RES_WHILE, FLAG_DO | FLAG_START },
2441 { "until", RES_UNTIL, FLAG_DO | FLAG_START },
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002442 { "in", RES_IN, FLAG_DO },
Eric Andersen25f27032001-04-26 23:22:31 +00002443 { "do", RES_DO, FLAG_DONE },
2444 { "done", RES_DONE, FLAG_END }
2445 };
Denis Vlasenko7d4c44e2007-04-16 22:34:39 +00002446 enum { NRES = sizeof(reserved_list)/sizeof(reserved_list[0]) };
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002447 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002448
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002449 for (r = reserved_list; r < reserved_list+NRES; r++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002450 if (strcmp(dest->data, r->literal) == 0) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00002451 debug_printf("found reserved word %s, code %d\n", r->literal, r->code);
Eric Andersen25f27032001-04-26 23:22:31 +00002452 if (r->flag & FLAG_START) {
2453 struct p_context *new = xmalloc(sizeof(struct p_context));
2454 debug_printf("push stack\n");
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002455 if (ctx->w == RES_IN || ctx->w == RES_FOR) {
2456 syntax();
2457 free(new);
2458 ctx->w = RES_SNTX;
2459 b_reset(dest);
2460 return 1;
2461 }
Eric Andersen25f27032001-04-26 23:22:31 +00002462 *new = *ctx; /* physical copy */
2463 initialize_context(ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002464 ctx->stack = new;
2465 } else if (ctx->w == RES_NONE || !(ctx->old_flag & (1 << r->code))) {
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002466 syntax();
2467 ctx->w = RES_SNTX;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002468 b_reset(dest);
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002469 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002470 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002471 ctx->w = r->code;
Eric Andersen25f27032001-04-26 23:22:31 +00002472 ctx->old_flag = r->flag;
2473 if (ctx->old_flag & FLAG_END) {
2474 struct p_context *old;
2475 debug_printf("pop stack\n");
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00002476 done_pipe(ctx, PIPE_SEQ);
Eric Andersen25f27032001-04-26 23:22:31 +00002477 old = ctx->stack;
2478 old->child->group = ctx->list_head;
Eric Andersen04407e52001-06-07 16:42:05 +00002479 old->child->subshell = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00002480 *ctx = *old; /* physical copy */
2481 free(old);
Eric Andersen25f27032001-04-26 23:22:31 +00002482 }
Denis Vlasenkoff131b92007-04-10 15:42:06 +00002483 b_reset(dest);
Eric Andersen25f27032001-04-26 23:22:31 +00002484 return 1;
2485 }
2486 }
2487 return 0;
2488}
2489
2490/* normal return is 0.
2491 * Syntax or xglob errors return 1. */
2492static int done_word(o_string *dest, struct p_context *ctx)
2493{
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002494 struct child_prog *child = ctx->child;
Eric Andersen25f27032001-04-26 23:22:31 +00002495 glob_t *glob_target;
2496 int gr, flags = 0;
2497
2498 debug_printf("done_word: %s %p\n", dest->data, child);
2499 if (dest->length == 0 && !dest->nonnull) {
2500 debug_printf(" true null, ignored\n");
2501 return 0;
2502 }
2503 if (ctx->pending_redirect) {
2504 glob_target = &ctx->pending_redirect->word;
2505 } else {
2506 if (child->group) {
2507 syntax();
2508 return 1; /* syntax error, groups and arglists don't mix */
2509 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002510 if (!child->argv && (ctx->type & FLAG_PARSE_SEMICOLON)) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00002511 debug_printf("checking %s for reserved-ness\n", dest->data);
2512 if (reserved_word(dest, ctx))
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002513 return (ctx->w == RES_SNTX);
Eric Andersen25f27032001-04-26 23:22:31 +00002514 }
2515 glob_target = &child->glob_result;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002516 if (child->argv) flags |= GLOB_APPEND;
Eric Andersen25f27032001-04-26 23:22:31 +00002517 }
2518 gr = xglob(dest, flags, glob_target);
2519 if (gr != 0) return 1;
2520
2521 b_reset(dest);
2522 if (ctx->pending_redirect) {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002523 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002524 if (glob_target->gl_pathc != 1) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00002525 bb_error_msg("ambiguous redirect");
Eric Andersen25f27032001-04-26 23:22:31 +00002526 return 1;
2527 }
2528 } else {
2529 child->argv = glob_target->gl_pathv;
2530 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002531 if (ctx->w == RES_FOR) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00002532 done_word(dest, ctx);
2533 done_pipe(ctx, PIPE_SEQ);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002534 }
Eric Andersen25f27032001-04-26 23:22:31 +00002535 return 0;
2536}
2537
2538/* The only possible error here is out of memory, in which case
2539 * xmalloc exits. */
2540static int done_command(struct p_context *ctx)
2541{
2542 /* The child is really already in the pipe structure, so
2543 * advance the pipe counter and make a new, null child.
2544 * Only real trickiness here is that the uncommitted
2545 * child structure, to which ctx->child points, is not
2546 * counted in pi->num_progs. */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002547 struct pipe *pi = ctx->pipe;
2548 struct child_prog *prog = ctx->child;
Eric Andersen25f27032001-04-26 23:22:31 +00002549
2550 if (prog && prog->group == NULL
Denis Vlasenko7d4c44e2007-04-16 22:34:39 +00002551 && prog->argv == NULL
2552 && prog->redirects == NULL
2553 ) {
Eric Andersen25f27032001-04-26 23:22:31 +00002554 debug_printf("done_command: skipping null command\n");
2555 return 0;
Denis Vlasenko7d4c44e2007-04-16 22:34:39 +00002556 }
2557 if (prog) {
Eric Andersen25f27032001-04-26 23:22:31 +00002558 pi->num_progs++;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00002559 debug_printf("done_command: num_progs incremented to %d\n", pi->num_progs);
Eric Andersen25f27032001-04-26 23:22:31 +00002560 } else {
2561 debug_printf("done_command: initializing\n");
2562 }
2563 pi->progs = xrealloc(pi->progs, sizeof(*pi->progs) * (pi->num_progs+1));
2564
2565 prog = pi->progs + pi->num_progs;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002566 memset(prog, 0, sizeof(*prog));
2567 /*prog->redirects = NULL;*/
Denis Vlasenkob5eaabb2007-04-28 16:45:59 +00002568 /*prog->argv = NULL; */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002569 /*prog->is_stopped = 0;*/
2570 /*prog->group = NULL;*/
2571 /*prog->glob_result.gl_pathv = NULL;*/
Eric Andersen25f27032001-04-26 23:22:31 +00002572 prog->family = pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002573 /*prog->sp = 0;*/
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002574 ctx->child = prog;
2575 prog->type = ctx->type;
Eric Andersen25f27032001-04-26 23:22:31 +00002576
Eric Andersen25f27032001-04-26 23:22:31 +00002577 /* but ctx->pipe and ctx->list_head remain unchanged */
2578 return 0;
2579}
2580
2581static int done_pipe(struct p_context *ctx, pipe_style type)
2582{
2583 struct pipe *new_p;
2584 done_command(ctx); /* implicit closure of previous command */
2585 debug_printf("done_pipe, type %d\n", type);
2586 ctx->pipe->followup = type;
2587 ctx->pipe->r_mode = ctx->w;
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002588 new_p = new_pipe();
Eric Andersen25f27032001-04-26 23:22:31 +00002589 ctx->pipe->next = new_p;
2590 ctx->pipe = new_p;
2591 ctx->child = NULL;
2592 done_command(ctx); /* set up new pipe to accept commands */
2593 return 0;
2594}
2595
2596/* peek ahead in the in_str to find out if we have a "&n" construct,
2597 * as in "2>&1", that represents duplicating a file descriptor.
2598 * returns either -2 (syntax error), -1 (no &), or the number found.
2599 */
2600static int redirect_dup_num(struct in_str *input)
2601{
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002602 int ch, d = 0, ok = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00002603 ch = b_peek(input);
2604 if (ch != '&') return -1;
2605
2606 b_getch(input); /* get the & */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002607 ch = b_peek(input);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002608 if (ch == '-') {
2609 b_getch(input);
2610 return -3; /* "-" represents "close me" */
2611 }
2612 while (isdigit(ch)) {
Denis Vlasenko7d4c44e2007-04-16 22:34:39 +00002613 d = d*10 + (ch-'0');
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002614 ok = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002615 b_getch(input);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002616 ch = b_peek(input);
Eric Andersen25f27032001-04-26 23:22:31 +00002617 }
2618 if (ok) return d;
2619
Manuel Novoa III cad53642003-03-19 09:13:01 +00002620 bb_error_msg("ambiguous redirect");
Eric Andersen25f27032001-04-26 23:22:31 +00002621 return -2;
2622}
2623
2624/* If a redirect is immediately preceded by a number, that number is
2625 * supposed to tell which file descriptor to redirect. This routine
2626 * looks for such preceding numbers. In an ideal world this routine
2627 * needs to handle all the following classes of redirects...
2628 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
2629 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
2630 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
2631 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
2632 * A -1 output from this program means no valid number was found, so the
2633 * caller should use the appropriate default for this redirection.
2634 */
2635static int redirect_opt_num(o_string *o)
2636{
2637 int num;
2638
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002639 if (o->length == 0)
2640 return -1;
2641 for (num = 0; num < o->length; num++) {
2642 if (!isdigit(*(o->data + num))) {
Eric Andersen25f27032001-04-26 23:22:31 +00002643 return -1;
2644 }
2645 }
2646 /* reuse num (and save an int) */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002647 num = atoi(o->data);
Eric Andersen25f27032001-04-26 23:22:31 +00002648 b_reset(o);
2649 return num;
2650}
2651
"Vladimir N. Oleynik"19c37012005-09-22 14:33:15 +00002652static FILE *generate_stream_from_list(struct pipe *head)
Eric Andersen25f27032001-04-26 23:22:31 +00002653{
2654 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00002655 int pid, channel[2];
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002656 if (pipe(channel) < 0) bb_perror_msg_and_die("pipe");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002657#if BB_MMU
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002658 pid = fork();
Eric Andersen72f9a422001-10-28 05:12:20 +00002659#else
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002660 pid = vfork();
Eric Andersen72f9a422001-10-28 05:12:20 +00002661#endif
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002662 if (pid < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00002663 bb_perror_msg_and_die("fork");
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002664 } else if (pid == 0) {
Eric Andersen25f27032001-04-26 23:22:31 +00002665 close(channel[0]);
2666 if (channel[1] != 1) {
Denis Vlasenko7d4c44e2007-04-16 22:34:39 +00002667 dup2(channel[1], 1);
Eric Andersen25f27032001-04-26 23:22:31 +00002668 close(channel[1]);
2669 }
Eric Andersen94ac2442001-05-22 19:05:18 +00002670 _exit(run_list_real(head)); /* leaks memory */
Eric Andersen25f27032001-04-26 23:22:31 +00002671 }
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00002672 debug_printf("forked child %d\n", pid);
Eric Andersen25f27032001-04-26 23:22:31 +00002673 close(channel[1]);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002674 pf = fdopen(channel[0], "r");
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00002675 debug_printf("pipe on FILE *%p\n", pf);
Eric Andersen25f27032001-04-26 23:22:31 +00002676 return pf;
2677}
2678
2679/* this version hacked for testing purposes */
2680/* return code is exit status of the process that is run. */
2681static int process_command_subs(o_string *dest, struct p_context *ctx, struct in_str *input, int subst_end)
2682{
2683 int retcode;
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002684 o_string result = NULL_O_STRING;
Eric Andersen25f27032001-04-26 23:22:31 +00002685 struct p_context inner;
2686 FILE *p;
2687 struct in_str pipe_str;
2688 initialize_context(&inner);
2689
2690 /* recursion to generate command */
2691 retcode = parse_stream(&result, &inner, input, subst_end);
2692 if (retcode != 0) return retcode; /* syntax error or EOF */
2693 done_word(&result, &inner);
2694 done_pipe(&inner, PIPE_SEQ);
2695 b_free(&result);
2696
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002697 p = generate_stream_from_list(inner.list_head);
2698 if (p == NULL) return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002699 mark_open(fileno(p));
2700 setup_file_in_str(&pipe_str, p);
2701
2702 /* now send results of command back into original context */
2703 retcode = parse_stream(dest, ctx, &pipe_str, '\0');
2704 /* XXX In case of a syntax error, should we try to kill the child?
2705 * That would be tough to do right, so just read until EOF. */
2706 if (retcode == 1) {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002707 while (b_getch(&pipe_str) != EOF)
2708 /* discard */;
Eric Andersen25f27032001-04-26 23:22:31 +00002709 }
2710
2711 debug_printf("done reading from pipe, pclose()ing\n");
2712 /* This is the step that wait()s for the child. Should be pretty
2713 * safe, since we just read an EOF from its stdout. We could try
2714 * to better, by using wait(), and keeping track of background jobs
2715 * at the same time. That would be a lot of work, and contrary
2716 * to the KISS philosophy of this program. */
2717 mark_closed(fileno(p));
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002718 retcode = pclose(p);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00002719 free_pipe_list(inner.list_head, 0);
2720 debug_printf("pclosed, retcode=%d\n", retcode);
Eric Andersen25f27032001-04-26 23:22:31 +00002721 /* XXX this process fails to trim a single trailing newline */
2722 return retcode;
2723}
2724
2725static int parse_group(o_string *dest, struct p_context *ctx,
2726 struct in_str *input, int ch)
2727{
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002728 int rcode, endch = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00002729 struct p_context sub;
2730 struct child_prog *child = ctx->child;
2731 if (child->argv) {
2732 syntax();
2733 return 1; /* syntax error, groups and arglists don't mix */
2734 }
2735 initialize_context(&sub);
Denis Vlasenkobf0a2012006-12-26 10:42:51 +00002736 switch (ch) {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002737 case '(':
2738 endch = ')';
2739 child->subshell = 1;
2740 break;
2741 case '{':
2742 endch = '}';
2743 break;
2744 default:
2745 syntax(); /* really logic error */
Eric Andersen25f27032001-04-26 23:22:31 +00002746 }
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00002747 rcode = parse_stream(dest, &sub, input, endch);
2748 done_word(dest, &sub); /* finish off the final word in the subcontext */
Eric Andersen25f27032001-04-26 23:22:31 +00002749 done_pipe(&sub, PIPE_SEQ); /* and the final command there, too */
2750 child->group = sub.list_head;
2751 return rcode;
2752 /* child remains "open", available for possible redirects */
2753}
2754
2755/* basically useful version until someone wants to get fancier,
2756 * see the bash man page under "Parameter Expansion" */
Denis Vlasenko15d78fb2007-01-30 22:28:21 +00002757static const char *lookup_param(const char *src)
Eric Andersen25f27032001-04-26 23:22:31 +00002758{
Denis Vlasenko15d78fb2007-01-30 22:28:21 +00002759 const char *p = NULL;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002760 if (src) {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002761 p = getenv(src);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002762 if (!p)
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002763 p = get_local_var(src);
Eric Andersen20a69a72001-05-15 17:24:44 +00002764 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002765 return p;
Eric Andersen25f27032001-04-26 23:22:31 +00002766}
2767
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002768/* Make new string for parser */
2769static char* make_string(char ** inp)
2770{
2771 char *p;
2772 char *str = NULL;
2773 int n;
2774 int len = 2;
2775
2776 for (n = 0; inp[n]; n++) {
2777 p = insert_var_value(inp[n]);
2778 str = xrealloc(str, (len + strlen(p)));
2779 if (n) {
2780 strcat(str, " ");
2781 } else {
2782 *str = '\0';
2783 }
2784 strcat(str, p);
2785 len = strlen(str) + 3;
2786 if (p != inp[n]) free(p);
2787 }
2788 len = strlen(str);
2789 str[len] = '\n';
2790 str[len+1] = '\0';
2791 return str;
2792}
2793
Eric Andersen25f27032001-04-26 23:22:31 +00002794/* return code: 0 for OK, 1 for syntax error */
2795static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input)
2796{
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002797 int i, advance = 0;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002798 char sep[] = " ";
Eric Andersen25f27032001-04-26 23:22:31 +00002799 int ch = input->peek(input); /* first character after the $ */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00002800 debug_printf("handle_dollar: ch=%c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00002801 if (isalpha(ch)) {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002802 b_addchr(dest, SPECIAL_VAR_SYMBOL);
2803 ctx->child->sp++;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00002804 while (ch = b_peek(input), isalnum(ch) || ch == '_') {
Eric Andersen25f27032001-04-26 23:22:31 +00002805 b_getch(input);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00002806 b_addchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00002807 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002808 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00002809 } else if (isdigit(ch)) {
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002810 i = ch - '0'; /* XXX is $0 special? */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002811 if (i < global_argc) {
Eric Andersen25f27032001-04-26 23:22:31 +00002812 parse_string(dest, ctx, global_argv[i]); /* recursion */
2813 }
2814 advance = 1;
2815 } else switch (ch) {
2816 case '$':
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00002817 b_adduint(dest, getpid());
Eric Andersen25f27032001-04-26 23:22:31 +00002818 advance = 1;
2819 break;
2820 case '!':
2821 if (last_bg_pid > 0) b_adduint(dest, last_bg_pid);
2822 advance = 1;
2823 break;
2824 case '?':
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00002825 b_adduint(dest, last_return_code);
Eric Andersen25f27032001-04-26 23:22:31 +00002826 advance = 1;
2827 break;
2828 case '#':
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00002829 b_adduint(dest, global_argc ? global_argc-1 : 0);
Eric Andersen25f27032001-04-26 23:22:31 +00002830 advance = 1;
2831 break;
2832 case '{':
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002833 b_addchr(dest, SPECIAL_VAR_SYMBOL);
2834 ctx->child->sp++;
Eric Andersen25f27032001-04-26 23:22:31 +00002835 b_getch(input);
2836 /* XXX maybe someone will try to escape the '}' */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002837 while (1) {
2838 ch = b_getch(input);
2839 if (ch == EOF || ch == '}')
2840 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00002841 b_addchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00002842 }
2843 if (ch != '}') {
2844 syntax();
2845 return 1;
2846 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002847 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00002848 break;
2849 case '(':
Matt Kraai9f8caf12001-05-02 16:26:12 +00002850 b_getch(input);
Eric Andersen25f27032001-04-26 23:22:31 +00002851 process_command_subs(dest, ctx, input, ')');
2852 break;
2853 case '*':
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002854 sep[0] = ifs[0];
2855 for (i = 1; i < global_argc; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002856 parse_string(dest, ctx, global_argv[i]);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002857 if (i+1 < global_argc)
2858 parse_string(dest, ctx, sep);
Eric Andersen25f27032001-04-26 23:22:31 +00002859 }
2860 break;
2861 case '@':
2862 case '-':
2863 case '_':
2864 /* still unhandled, but should be eventually */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00002865 bb_error_msg("unhandled syntax: $%c", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00002866 return 1;
2867 break;
2868 default:
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00002869 b_addqchr(dest,'$', dest->quote);
Eric Andersen25f27032001-04-26 23:22:31 +00002870 }
2871 /* Eat the character if the flag was set. If the compiler
2872 * is smart enough, we could substitute "b_getch(input);"
2873 * for all the "advance = 1;" above, and also end up with
2874 * a nice size-optimized program. Hah! That'll be the day.
2875 */
2876 if (advance) b_getch(input);
2877 return 0;
2878}
2879
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002880static int parse_string(o_string *dest, struct p_context *ctx, const char *src)
Eric Andersen25f27032001-04-26 23:22:31 +00002881{
2882 struct in_str foo;
2883 setup_string_in_str(&foo, src);
2884 return parse_stream(dest, ctx, &foo, '\0');
2885}
2886
2887/* return code is 0 for normal exit, 1 for syntax error */
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002888static int parse_stream(o_string *dest, struct p_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00002889 struct in_str *input, int end_trigger)
2890{
"Vladimir N. Oleynik"4ccd2b42006-01-31 09:27:48 +00002891 int ch, m;
Eric Andersen25f27032001-04-26 23:22:31 +00002892 int redir_fd;
2893 redir_type redir_style;
2894 int next;
2895
2896 /* Only double-quote state is handled in the state variable dest->quote.
2897 * A single-quote triggers a bypass of the main loop until its mate is
2898 * found. When recursing, quote state is passed in via dest->quote. */
2899
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00002900 debug_printf("parse_stream, end_trigger=%d\n", end_trigger);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002901 while ((ch = b_getch(input)) != EOF) {
Eric Andersen25f27032001-04-26 23:22:31 +00002902 m = map[ch];
2903 next = (ch == '\n') ? 0 : b_peek(input);
2904 debug_printf("parse_stream: ch=%c (%d) m=%d quote=%d\n",
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002905 ch, ch, m, dest->quote);
2906 if (m == 0 || ((m == 1 || m == 2) && dest->quote)) {
Eric Andersen25f27032001-04-26 23:22:31 +00002907 b_addqchr(dest, ch, dest->quote);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002908 continue;
2909 }
2910 if (m == 2) { /* unquoted IFS */
2911 if (done_word(dest, ctx)) {
2912 return 1;
Eric Andersenaac75e52001-04-30 18:18:45 +00002913 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002914 /* If we aren't performing a substitution, treat a newline as a
2915 * command separator. */
2916 if (end_trigger != '\0' && ch == '\n')
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00002917 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002918 }
2919 if (ch == end_trigger && !dest->quote && ctx->w == RES_NONE) {
2920 debug_printf("leaving parse_stream (triggered)\n");
2921 return 0;
2922 }
2923 if (m == 2)
2924 continue;
2925 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00002926 case '#':
2927 if (dest->length == 0 && !dest->quote) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002928 while (1) {
2929 ch = b_peek(input);
2930 if (ch == EOF || ch == '\n')
2931 break;
2932 b_getch(input);
2933 }
Eric Andersen25f27032001-04-26 23:22:31 +00002934 } else {
2935 b_addqchr(dest, ch, dest->quote);
2936 }
2937 break;
2938 case '\\':
2939 if (next == EOF) {
2940 syntax();
2941 return 1;
2942 }
2943 b_addqchr(dest, '\\', dest->quote);
2944 b_addqchr(dest, b_getch(input), dest->quote);
2945 break;
2946 case '$':
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002947 if (handle_dollar(dest, ctx, input) != 0) return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002948 break;
2949 case '\'':
2950 dest->nonnull = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002951 while (1) {
2952 ch = b_getch(input);
2953 if (ch == EOF || ch == '\'')
2954 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00002955 b_addchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00002956 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002957 if (ch == EOF) {
Eric Andersen25f27032001-04-26 23:22:31 +00002958 syntax();
2959 return 1;
2960 }
2961 break;
2962 case '"':
2963 dest->nonnull = 1;
2964 dest->quote = !dest->quote;
2965 break;
2966 case '`':
2967 process_command_subs(dest, ctx, input, '`');
2968 break;
2969 case '>':
2970 redir_fd = redirect_opt_num(dest);
2971 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002972 redir_style = REDIRECT_OVERWRITE;
Eric Andersen25f27032001-04-26 23:22:31 +00002973 if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002974 redir_style = REDIRECT_APPEND;
Eric Andersen25f27032001-04-26 23:22:31 +00002975 b_getch(input);
2976 } else if (next == '(') {
2977 syntax(); /* until we support >(list) Process Substitution */
2978 return 1;
2979 }
2980 setup_redirect(ctx, redir_fd, redir_style, input);
2981 break;
2982 case '<':
2983 redir_fd = redirect_opt_num(dest);
2984 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002985 redir_style = REDIRECT_INPUT;
Eric Andersen25f27032001-04-26 23:22:31 +00002986 if (next == '<') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002987 redir_style = REDIRECT_HEREIS;
Eric Andersen25f27032001-04-26 23:22:31 +00002988 b_getch(input);
2989 } else if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002990 redir_style = REDIRECT_IO;
Eric Andersen25f27032001-04-26 23:22:31 +00002991 b_getch(input);
2992 } else if (next == '(') {
2993 syntax(); /* until we support <(list) Process Substitution */
2994 return 1;
2995 }
2996 setup_redirect(ctx, redir_fd, redir_style, input);
2997 break;
2998 case ';':
2999 done_word(dest, ctx);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003000 done_pipe(ctx, PIPE_SEQ);
Eric Andersen25f27032001-04-26 23:22:31 +00003001 break;
3002 case '&':
3003 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003004 if (next == '&') {
Eric Andersen25f27032001-04-26 23:22:31 +00003005 b_getch(input);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003006 done_pipe(ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00003007 } else {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003008 done_pipe(ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00003009 }
3010 break;
3011 case '|':
3012 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003013 if (next == '|') {
Eric Andersen25f27032001-04-26 23:22:31 +00003014 b_getch(input);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003015 done_pipe(ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00003016 } else {
3017 /* we could pick up a file descriptor choice here
3018 * with redirect_opt_num(), but bash doesn't do it.
3019 * "echo foo 2| cat" yields "foo 2". */
3020 done_command(ctx);
3021 }
3022 break;
3023 case '(':
3024 case '{':
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003025 if (parse_group(dest, ctx, input, ch) != 0)
3026 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003027 break;
3028 case ')':
3029 case '}':
3030 syntax(); /* Proper use of this character caught by end_trigger */
3031 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003032 default:
3033 syntax(); /* this is really an internal logic error */
3034 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003035 }
3036 }
3037 /* complain if quote? No, maybe we just finished a command substitution
3038 * that was quoted. Example:
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003039 * $ echo "`cat foo` plus more"
Eric Andersen25f27032001-04-26 23:22:31 +00003040 * and we just got the EOF generated by the subshell that ran "cat foo"
3041 * The only real complaint is if we got an EOF when end_trigger != '\0',
3042 * that is, we were really supposed to get end_trigger, and never got
3043 * one before the EOF. Can't use the standard "syntax error" return code,
3044 * so that parse_stream_outer can distinguish the EOF and exit smoothly. */
Matt Kraaibdd4ece2001-05-23 17:43:00 +00003045 debug_printf("leaving parse_stream (EOF)\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003046 if (end_trigger != '\0')
3047 return -1;
Eric Andersen25f27032001-04-26 23:22:31 +00003048 return 0;
3049}
3050
Eric Andersena68ea1c2006-01-30 22:48:39 +00003051static void mapset(const char *set, int code)
Eric Andersen25f27032001-04-26 23:22:31 +00003052{
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003053 while (*set)
3054 map[(unsigned char)*set++] = code;
Eric Andersen25f27032001-04-26 23:22:31 +00003055}
3056
"Vladimir N. Oleynik"19c37012005-09-22 14:33:15 +00003057static void update_ifs_map(void)
Eric Andersen25f27032001-04-26 23:22:31 +00003058{
3059 /* char *ifs and char map[256] are both globals. */
3060 ifs = getenv("IFS");
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003061 if (ifs == NULL) ifs = " \t\n";
Eric Andersen25f27032001-04-26 23:22:31 +00003062 /* Precompute a list of 'flow through' behavior so it can be treated
3063 * quickly up front. Computation is necessary because of IFS.
3064 * Special case handling of IFS == " \t\n" is not implemented.
3065 * The map[] array only really needs two bits each, and on most machines
3066 * that would be faster because of the reduced L1 cache footprint.
3067 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003068 memset(map, 0, sizeof(map)); /* most characters flow through always */
3069 mapset("\\$'\"`", 3); /* never flow through */
3070 mapset("<>;&|(){}#", 1); /* flow through if quoted */
3071 mapset(ifs, 2); /* also flow through if quoted */
Eric Andersen25f27032001-04-26 23:22:31 +00003072}
3073
Eric Andersenaff114c2004-04-14 17:51:38 +00003074/* most recursion does not come through here, the exception is
Eric Andersen25f27032001-04-26 23:22:31 +00003075 * from builtin_source() */
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003076static int parse_stream_outer(struct in_str *inp, int flag)
Eric Andersen25f27032001-04-26 23:22:31 +00003077{
Eric Andersen25f27032001-04-26 23:22:31 +00003078 struct p_context ctx;
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003079 o_string temp = NULL_O_STRING;
Eric Andersen25f27032001-04-26 23:22:31 +00003080 int rcode;
3081 do {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003082 ctx.type = flag;
Eric Andersen25f27032001-04-26 23:22:31 +00003083 initialize_context(&ctx);
3084 update_ifs_map();
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00003085 if (!(flag & FLAG_PARSE_SEMICOLON) || (flag & FLAG_REPARSING))
3086 mapset(";$&|", 0);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003087 inp->promptmode = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003088 rcode = parse_stream(&temp, &ctx, inp, '\n');
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003089 if (rcode != 1 && ctx.old_flag != 0) {
3090 syntax();
3091 }
3092 if (rcode != 1 && ctx.old_flag == 0) {
3093 done_word(&temp, &ctx);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003094 done_pipe(&ctx, PIPE_SEQ);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003095 run_list(ctx.list_head);
3096 } else {
3097 if (ctx.old_flag != 0) {
3098 free(ctx.stack);
3099 b_reset(&temp);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003100 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003101 temp.nonnull = 0;
3102 temp.quote = 0;
3103 inp->p = NULL;
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00003104 free_pipe_list(ctx.list_head, 0);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003105 }
Eric Andersena813afc2001-05-24 16:19:36 +00003106 b_free(&temp);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003107 } while (rcode != -1 && !(flag & FLAG_EXIT_FROM_LOOP)); /* loop on syntax errors, return on EOF */
Eric Andersen25f27032001-04-26 23:22:31 +00003108 return 0;
3109}
3110
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003111static int parse_string_outer(const char *s, int flag)
Eric Andersen25f27032001-04-26 23:22:31 +00003112{
3113 struct in_str input;
3114 setup_string_in_str(&input, s);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003115 return parse_stream_outer(&input, flag);
Eric Andersen25f27032001-04-26 23:22:31 +00003116}
3117
3118static int parse_file_outer(FILE *f)
3119{
3120 int rcode;
3121 struct in_str input;
3122 setup_file_in_str(&input, f);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003123 rcode = parse_stream_outer(&input, FLAG_PARSE_SEMICOLON);
Eric Andersen25f27032001-04-26 23:22:31 +00003124 return rcode;
3125}
3126
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003127#if ENABLE_HUSH_INTERACTIVE
Eric Andersen6c947d22001-06-25 22:24:38 +00003128/* Make sure we have a controlling tty. If we get started under a job
3129 * aware app (like bash for example), make sure we are now in charge so
3130 * we don't fight over who gets the foreground */
Eric Anderseneaecbf32001-10-31 10:41:31 +00003131static void setup_job_control(void)
Eric Andersen52a97ca2001-06-22 06:49:26 +00003132{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003133 pid_t shell_pgrp;
3134
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00003135 saved_task_pgrp = shell_pgrp = getpgrp();
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00003136 debug_printf("saved_task_pgrp=%d\n", saved_task_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003137 fcntl(interactive_fd, F_SETFD, FD_CLOEXEC);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003138
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00003139 /* If we were ran as 'hush &',
3140 * sleep until we are in the foreground. */
3141 while (tcgetpgrp(interactive_fd) != shell_pgrp) {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003142 /* Send TTIN to ourself (should stop us) */
Denis Vlasenkoff131b92007-04-10 15:42:06 +00003143 kill(- shell_pgrp, SIGTTIN);
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00003144 shell_pgrp = getpgrp();
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003145 }
Eric Andersen52a97ca2001-06-22 06:49:26 +00003146
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003147 /* Ignore job-control and misc signals. */
3148 set_jobctrl_sighandler(SIG_IGN);
3149 set_misc_sighandler(SIG_IGN);
3150//huh? signal(SIGCHLD, SIG_IGN);
3151
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003152 /* We _must_ restore tty pgrp fatal signals */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003153 set_fatal_sighandler(sigexit);
Eric Andersen6c947d22001-06-25 22:24:38 +00003154
3155 /* Put ourselves in our own process group. */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003156 setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
Eric Andersen6c947d22001-06-25 22:24:38 +00003157 /* Grab control of the terminal. */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003158 tcsetpgrp(interactive_fd, getpid());
Eric Andersen6c947d22001-06-25 22:24:38 +00003159}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003160#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00003161
Denis Vlasenko06af2162007-02-03 17:28:39 +00003162int hush_main(int argc, char **argv);
Matt Kraai2d91deb2001-08-01 17:21:35 +00003163int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00003164{
3165 int opt;
3166 FILE *input;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003167 char **e;
Eric Andersenbc604a22001-05-16 05:24:03 +00003168
Denis Vlasenko38f63192007-01-22 09:03:07 +00003169#if ENABLE_FEATURE_EDITING
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00003170 line_input_state = new_line_input_t(FOR_SHELL);
3171#endif
3172
Eric Andersen25f27032001-04-26 23:22:31 +00003173 /* XXX what should these be while sourcing /etc/profile? */
3174 global_argc = argc;
3175 global_argv = argv;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003176
Matt Kraai2d91deb2001-08-01 17:21:35 +00003177 /* (re?) initialize globals. Sometimes hush_main() ends up calling
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003178 * hush_main(), therefore we cannot rely on the BSS to zero out this
Eric Andersen94ac2442001-05-22 19:05:18 +00003179 * stuff. Reset these to 0 every time. */
3180 ifs = NULL;
Eric Andersenaeb44c42001-05-22 20:29:00 +00003181 /* map[] is taken care of with call to update_ifs_map() */
Eric Andersen94ac2442001-05-22 19:05:18 +00003182 fake_mode = 0;
Eric Andersen94ac2442001-05-22 19:05:18 +00003183 close_me_head = NULL;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003184#if ENABLE_HUSH_INTERACTIVE
3185 interactive_fd = 0;
Eric Andersen94ac2442001-05-22 19:05:18 +00003186 last_bg_pid = 0;
Eric Andersen52a97ca2001-06-22 06:49:26 +00003187 job_list = NULL;
Eric Andersenc798b072001-06-22 06:23:03 +00003188 last_jobid = 0;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003189#endif
Eric Andersen94ac2442001-05-22 19:05:18 +00003190
3191 /* Initialize some more globals to non-zero values */
3192 set_cwd();
Denis Vlasenko38f63192007-01-22 09:03:07 +00003193 if (ENABLE_FEATURE_EDITING)
3194 cmdedit_set_initial_prompt();
Rob Landley215c61d2006-09-15 04:10:05 +00003195 else PS1 = NULL;
Eric Andersen94ac2442001-05-22 19:05:18 +00003196 PS2 = "> ";
3197
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003198 /* initialize our shell local variables with the values
Eric Andersen94ac2442001-05-22 19:05:18 +00003199 * currently living in the environment */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003200 e = environ;
3201 if (e)
3202 while (*e)
3203 set_local_var(*e++, 2); /* without call putenv() */
Eric Andersen94ac2442001-05-22 19:05:18 +00003204
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003205 last_return_code = EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +00003206
3207 if (argv[0] && argv[0][0] == '-') {
3208 debug_printf("\nsourcing /etc/profile\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003209 input = fopen("/etc/profile", "r");
3210 if (input != NULL) {
Eric Andersena90f20b2001-06-26 23:00:21 +00003211 mark_open(fileno(input));
3212 parse_file_outer(input);
3213 mark_closed(fileno(input));
3214 fclose(input);
3215 }
Eric Andersen25f27032001-04-26 23:22:31 +00003216 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003217 input = stdin;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003218
Eric Andersen25f27032001-04-26 23:22:31 +00003219 while ((opt = getopt(argc, argv, "c:xif")) > 0) {
3220 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003221 case 'c':
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003222 global_argv = argv + optind;
3223 global_argc = argc - optind;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003224 opt = parse_string_outer(optarg, FLAG_PARSE_SEMICOLON);
3225 goto final_return;
3226 case 'i':
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00003227 // Well, we cannot just declare interactiveness,
3228 // we have to have some stuff (ctty, etc)
3229 /*interactive_fd++;*/
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003230 break;
3231 case 'f':
3232 fake_mode++;
3233 break;
3234 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00003235#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003236 fprintf(stderr, "Usage: sh [FILE]...\n"
3237 " or: sh -c command [args]...\n\n");
3238 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00003239#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003240 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00003241#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003242 }
3243 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003244#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003245 /* A shell is interactive if the '-i' flag was given, or if all of
Eric Andersen25f27032001-04-26 23:22:31 +00003246 * the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00003247 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00003248 * no arguments remaining or the -s flag given
3249 * standard input is a terminal
3250 * standard output is a terminal
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003251 * Refer to Posix.2, the description of the 'sh' utility. */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003252 if (argv[optind] == NULL && input == stdin
3253 && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)
3254 ) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003255 saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
3256 debug_printf("saved_tty_pgrp=%d\n", saved_tty_pgrp);
3257 if (saved_tty_pgrp >= 0) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003258 /* try to dup to high fd#, >= 255 */
3259 interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
3260 if (interactive_fd < 0) {
3261 /* try to dup to any fd */
3262 interactive_fd = dup(STDIN_FILENO);
3263 if (interactive_fd < 0)
3264 /* give up */
3265 interactive_fd = 0;
3266 }
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00003267 // TODO: track & disallow any attempts of user
3268 // to (inadvertently) close/redirect it
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003269 }
Eric Andersen25f27032001-04-26 23:22:31 +00003270 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003271 debug_printf("\ninteractive_fd=%d\n", interactive_fd);
3272 if (interactive_fd) {
Eric Andersen25f27032001-04-26 23:22:31 +00003273 /* Looks like they want an interactive shell */
Eric Andersen52a97ca2001-06-22 06:49:26 +00003274 setup_job_control();
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003275 /* Make xfuncs do cleanup on exit */
3276 die_sleep = -1; /* flag */
3277 if (setjmp(die_jmp)) {
3278 /* xfunc has failed! die die die */
3279 hush_exit(xfunc_error_retval);
3280 }
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00003281#if !ENABLE_FEATURE_SH_EXTRA_QUIET
3282 printf("\n\n%s hush - the humble shell v0.02\n", BB_BANNER);
3283 printf("Enter 'help' for a list of built-in commands.\n\n");
3284#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00003285 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003286#endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003287
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003288 if (argv[optind] == NULL) {
3289 opt = parse_file_outer(stdin);
Eric Andersene67c3ce2001-05-02 02:09:36 +00003290 goto final_return;
Eric Andersen25f27032001-04-26 23:22:31 +00003291 }
Eric Andersen25f27032001-04-26 23:22:31 +00003292
3293 debug_printf("\nrunning script '%s'\n", argv[optind]);
Denis Vlasenko4c978632007-02-03 03:31:13 +00003294 global_argv = argv + optind;
3295 global_argc = argc - optind;
Rob Landleyd921b2e2006-08-03 15:41:12 +00003296 input = xfopen(argv[optind], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00003297 opt = parse_file_outer(input);
3298
Denis Vlasenko38f63192007-01-22 09:03:07 +00003299#if ENABLE_FEATURE_CLEAN_UP
Eric Andersenaeb44c42001-05-22 20:29:00 +00003300 fclose(input);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003301 if (cwd != bb_msg_unknown)
Eric Andersenaeb44c42001-05-22 20:29:00 +00003302 free((char*)cwd);
3303 {
3304 struct variables *cur, *tmp;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003305 for (cur = top_vars; cur; cur = tmp) {
Eric Andersenaeb44c42001-05-22 20:29:00 +00003306 tmp = cur->next;
3307 if (!cur->flg_read_only) {
Denis Vlasenko4c978632007-02-03 03:31:13 +00003308 free((char*)cur->name);
3309 free((char*)cur->value);
Eric Andersenaeb44c42001-05-22 20:29:00 +00003310 free(cur);
3311 }
3312 }
3313 }
Eric Andersen25f27032001-04-26 23:22:31 +00003314#endif
3315
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003316 final_return:
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003317 hush_exit(opt ? opt : last_return_code);
Eric Andersen25f27032001-04-26 23:22:31 +00003318}