blob: f4c170117617757874638e8ec8bb275f7bf40105 [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:
Denis Vlasenkoa8442002008-06-14 11:00:17 +000023 * o_addchr() derived from similar w_addchar function in glibc-2.2.
Eric Andersen25f27032001-04-26 23:22:31 +000024 * 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
Denis Vlasenkoa8442002008-06-14 11:00:17 +000026 * miscellaneous bugfixes from Matt Kraai.
Eric Andersen25f27032001-04-26 23:22:31 +000027 *
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?)
Eric Andersen25f27032001-04-26 23:22:31 +000040 * $_
Eric Andersen25f27032001-04-26 23:22:31 +000041 * &> and >& redirection of stdout+stderr
42 * Brace Expansion
43 * Tilde Expansion
44 * fancy forms of Parameter Expansion
Eric Andersen78a7c992001-05-15 16:30:25 +000045 * aliases
Eric Andersen25f27032001-04-26 23:22:31 +000046 * Arithmetic Expansion
47 * <(list) and >(list) Process Substitution
Eric Andersen83a2ae22001-05-07 17:59:25 +000048 * reserved words: case, esac, select, function
Eric Andersen25f27032001-04-26 23:22:31 +000049 * Here Documents ( << word )
50 * Functions
51 * Major bugs:
Denis Vlasenkob81b3df2007-04-28 16:48:04 +000052 * job handling woefully incomplete and buggy (improved --vda)
Eric Andersen25f27032001-04-26 23:22:31 +000053 * reserved word execution woefully incomplete and buggy
Eric Andersen25f27032001-04-26 23:22:31 +000054 * to-do:
Eric Andersen83a2ae22001-05-07 17:59:25 +000055 * port selected bugfixes from post-0.49 busybox lash - done?
Eric Andersen83a2ae22001-05-07 17:59:25 +000056 * change { and } from special chars to reserved words
57 * builtins: break, continue, eval, return, set, trap, ulimit
58 * test magic exec
Eric Andersen25f27032001-04-26 23:22:31 +000059 * check setting of global_argc and global_argv
Eric Andersen25f27032001-04-26 23:22:31 +000060 * follow IFS rules more precisely, including update semantics
Eric Andersen25f27032001-04-26 23:22:31 +000061 * figure out what to do with backslash-newline
Eric Andersen25f27032001-04-26 23:22:31 +000062 * propagate syntax errors, die on resource errors?
63 * continuation lines, both explicit and implicit - done?
64 * memory leak finding and plugging - done?
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +000065 * maybe change charmap[] to use 2-bit entries
Eric Andersen25f27032001-04-26 23:22:31 +000066 *
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000067 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersen25f27032001-04-26 23:22:31 +000068 */
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +000069
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000070
Eric Andersen25f27032001-04-26 23:22:31 +000071#include <glob.h> /* glob, of course */
Eric Andersen25f27032001-04-26 23:22:31 +000072/* #include <dmalloc.h> */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000073
Denis Vlasenko1aa7e472007-11-28 06:49:03 +000074#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000075
Denis Vlasenkod01ff132007-05-02 21:40:23 +000076
Denis Vlasenko05743d72008-02-10 12:10:08 +000077#if !BB_MMU && ENABLE_HUSH_TICK
78//#undef ENABLE_HUSH_TICK
79//#define ENABLE_HUSH_TICK 0
80#warning On NOMMU, hush command substitution is dangerous.
81#warning Dont use it for commands which produce lots of output.
82#warning For more info see shell/hush.c, generate_stream_from_list().
83#endif
84
85#if !BB_MMU && ENABLE_HUSH_JOB
86#undef ENABLE_HUSH_JOB
87#define ENABLE_HUSH_JOB 0
88#endif
89
90#if !ENABLE_HUSH_INTERACTIVE
91#undef ENABLE_FEATURE_EDITING
92#define ENABLE_FEATURE_EDITING 0
93#undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
94#define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +000095#endif
96
97
Denis Vlasenkod01ff132007-05-02 21:40:23 +000098/* If you comment out one of these below, it will be #defined later
99 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000100#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000101/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000102#define debug_printf_parse(...) do {} while (0)
103#define debug_print_tree(a, b) do {} while (0)
104#define debug_printf_exec(...) do {} while (0)
105#define debug_printf_jobs(...) do {} while (0)
106#define debug_printf_expand(...) do {} while (0)
107#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000108
109#ifndef debug_printf
110#define debug_printf(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000111#endif
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000112
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000113#ifndef debug_printf_parse
114#define debug_printf_parse(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000115#endif
116
117#ifndef debug_printf_exec
118#define debug_printf_exec(...) fprintf(stderr, __VA_ARGS__)
119#endif
120
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000121#ifndef debug_printf_jobs
122#define debug_printf_jobs(...) fprintf(stderr, __VA_ARGS__)
123#define DEBUG_SHELL_JOBS 1
124#endif
125
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000126#ifndef debug_printf_expand
127#define debug_printf_expand(...) fprintf(stderr, __VA_ARGS__)
128#define DEBUG_EXPAND 1
129#endif
130
Denis Vlasenko170435c2007-05-23 13:01:10 +0000131/* Keep unconditionally on for now */
132#define ENABLE_HUSH_DEBUG 1
133
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000134#ifndef debug_printf_clean
135/* broken, of course, but OK for testing */
136static const char *indenter(int i)
137{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000138 static const char blanks[] ALIGN1 =
139 " ";
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000140 return &blanks[sizeof(blanks) - i - 1];
141}
142#define debug_printf_clean(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkoc666f712007-05-16 22:18:54 +0000143#define DEBUG_CLEAN 1
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +0000144#endif
145
Eric Andersen25f27032001-04-26 23:22:31 +0000146
Denis Vlasenkof962a032007-11-23 12:50:54 +0000147/*
148 * Leak hunting. Use hush_leaktool.sh for post-processing.
149 */
150#ifdef FOR_HUSH_LEAKTOOL
151void *xxmalloc(int lineno, size_t size)
152{
153 void *ptr = xmalloc((size + 0xff) & ~0xff);
154 fprintf(stderr, "line %d: malloc %p\n", lineno, ptr);
155 return ptr;
156}
157void *xxrealloc(int lineno, void *ptr, size_t size)
158{
159 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
160 fprintf(stderr, "line %d: realloc %p\n", lineno, ptr);
161 return ptr;
162}
163char *xxstrdup(int lineno, const char *str)
164{
165 char *ptr = xstrdup(str);
166 fprintf(stderr, "line %d: strdup %p\n", lineno, ptr);
167 return ptr;
168}
169void xxfree(void *ptr)
170{
171 fprintf(stderr, "free %p\n", ptr);
172 free(ptr);
173}
174#define xmalloc(s) xxmalloc(__LINE__, s)
175#define xrealloc(p, s) xxrealloc(__LINE__, p, s)
176#define xstrdup(s) xxstrdup(__LINE__, s)
177#define free(p) xxfree(p)
178#endif
179
180
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +0000181#define SPECIAL_VAR_SYMBOL 3
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000182
183#define PARSEFLAG_EXIT_FROM_LOOP 1
184#define PARSEFLAG_SEMICOLON (1 << 1) /* symbol ';' is special for parser */
185#define PARSEFLAG_REPARSING (1 << 2) /* >= 2nd pass */
Eric Andersen25f27032001-04-26 23:22:31 +0000186
187typedef enum {
188 REDIRECT_INPUT = 1,
189 REDIRECT_OVERWRITE = 2,
190 REDIRECT_APPEND = 3,
191 REDIRECT_HEREIS = 4,
192 REDIRECT_IO = 5
193} redir_type;
194
195/* The descrip member of this structure is only used to make debugging
196 * output pretty */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000197static const struct {
198 int mode;
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000199 signed char default_fd;
200 char descrip[3];
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000201} redir_table[] = {
Eric Andersen25f27032001-04-26 23:22:31 +0000202 { 0, 0, "()" },
203 { O_RDONLY, 0, "<" },
204 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
205 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
206 { O_RDONLY, -1, "<<" },
207 { O_RDWR, 1, "<>" }
208};
209
210typedef enum {
211 PIPE_SEQ = 1,
212 PIPE_AND = 2,
213 PIPE_OR = 3,
214 PIPE_BG = 4,
215} pipe_style;
216
217/* might eventually control execution */
218typedef enum {
219 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000220#if ENABLE_HUSH_IF
Eric Andersen25f27032001-04-26 23:22:31 +0000221 RES_IF = 1,
222 RES_THEN = 2,
223 RES_ELIF = 3,
224 RES_ELSE = 4,
225 RES_FI = 5,
Denis Vlasenko06810332007-05-21 23:30:54 +0000226#endif
227#if ENABLE_HUSH_LOOPS
Eric Andersen25f27032001-04-26 23:22:31 +0000228 RES_FOR = 6,
229 RES_WHILE = 7,
230 RES_UNTIL = 8,
231 RES_DO = 9,
232 RES_DONE = 10,
Denis Vlasenko06810332007-05-21 23:30:54 +0000233 RES_IN = 11,
234#endif
235 RES_XXXX = 12,
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000236 RES_SNTX = 13
Eric Andersen25f27032001-04-26 23:22:31 +0000237} reserved_style;
Eric Andersen25f27032001-04-26 23:22:31 +0000238/* This holds pointers to the various results of parsing */
239struct p_context {
240 struct child_prog *child;
241 struct pipe *list_head;
242 struct pipe *pipe;
243 struct redir_struct *pending_redirect;
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000244 smallint res_w;
Denis Vlasenkoa8442002008-06-14 11:00:17 +0000245 smallint parse_type; /* bitmask of PARSEFLAG_xxx, defines type of parser: ";$" common or special symbol */
246 smallint ctx_inverted; /* "! cmd | cmd" */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000247 int old_flag; /* bitmask of FLAG_xxx, for figuring out valid reserved words */
Eric Andersen25f27032001-04-26 23:22:31 +0000248 struct p_context *stack;
249 /* How about quoting status? */
250};
251
252struct redir_struct {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000253 struct redir_struct *next; /* pointer to the next redirect in the list */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000254 redir_type type; /* type of redirection */
255 int fd; /* file descriptor being redirected */
256 int dup; /* -1, or file descriptor being duplicated */
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000257 char **glob_word; /* *word.gl_pathv is the filename */
Eric Andersen25f27032001-04-26 23:22:31 +0000258};
259
260struct child_prog {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000261 pid_t pid; /* 0 if exited */
262 char **argv; /* program name and arguments */
263 struct pipe *group; /* if non-NULL, first in group or subshell */
Denis Vlasenko262d7652007-05-20 21:52:49 +0000264 smallint subshell; /* flag, non-zero if group must be forked */
265 smallint is_stopped; /* is the program currently running? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000266 struct redir_struct *redirects; /* I/O redirections */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000267 struct pipe *family; /* pointer back to the child's parent pipe */
Eric Andersen25f27032001-04-26 23:22:31 +0000268};
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000269/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
270 * and on execution these are substituted with their values.
271 * Substitution can make _several_ words out of one argv[n]!
272 * Example: argv[0]=='.^C*^C.' here: echo .$*.
273 */
Eric Andersen25f27032001-04-26 23:22:31 +0000274
275struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000276 struct pipe *next;
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000277 int num_progs; /* total number of programs in job */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000278 int running_progs; /* number of programs running (not exited) */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000279 int stopped_progs; /* number of programs alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000280#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000281 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000282 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000283 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000284#endif
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000285 char *cmdbuf; /* buffer various argv's point into */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000286 struct child_prog *progs; /* array of commands in pipe */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000287 int job_context; /* bitmask defining current context */
Denis Vlasenkoa8442002008-06-14 11:00:17 +0000288 smallint pi_inverted; /* "! cmd | cmd" */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000289 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
290 smallint res_word; /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000291};
292
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000293/* On program start, environ points to initial environment.
294 * putenv adds new pointers into it, unsetenv removes them.
295 * Neither of these (de)allocates the strings.
296 * setenv allocates new strings in malloc space and does putenv,
297 * and thus setenv is unusable (leaky) for shell's purposes */
298#define setenv(...) setenv_is_leaky_dont_use()
299struct variable {
300 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000301 char *varstr; /* points to "name=" portion */
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000302 int max_len; /* if > 0, name is part of initial env; else name is malloced */
303 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000304 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000305};
306
Eric Andersen25f27032001-04-26 23:22:31 +0000307typedef struct {
308 char *data;
309 int length;
310 int maxlen;
Denis Vlasenkoff097622007-10-01 10:00:45 +0000311 smallint o_quote;
312 smallint nonnull;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +0000313 smallint has_empty_slot;
Eric Andersen25f27032001-04-26 23:22:31 +0000314} o_string;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +0000315#define NULL_O_STRING { NULL }
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000316/* used for initialization: o_string foo = NULL_O_STRING; */
Eric Andersen25f27032001-04-26 23:22:31 +0000317
318/* I can almost use ordinary FILE *. Is open_memstream() universally
319 * available? Where is it documented? */
320struct in_str {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +0000321 const char *p;
322 /* eof_flag=1: last char in ->p is really an EOF */
323 char eof_flag; /* meaningless if ->p == NULL */
324 char peek_buf[2];
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000325#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000326 smallint promptme;
327 smallint promptmode; /* 0: PS1, 1: PS2 */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000328#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000329 FILE *file;
330 int (*get) (struct in_str *);
331 int (*peek) (struct in_str *);
332};
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +0000333#define i_getch(input) ((input)->get(input))
334#define i_peek(input) ((input)->peek(input))
Eric Andersen25f27032001-04-26 23:22:31 +0000335
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000336enum {
337 CHAR_ORDINARY = 0,
338 CHAR_ORDINARY_IF_QUOTED = 1, /* example: *, # */
339 CHAR_IFS = 2, /* treated as ordinary if quoted */
340 CHAR_SPECIAL = 3, /* example: $ */
Eric Andersen25f27032001-04-26 23:22:31 +0000341};
342
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000343#define HUSH_VER_STR "0.02"
344
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000345/* "Globals" within this file */
346
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000347/* Sorted roughly by size (smaller offsets == smaller code) */
348struct globals {
349#if ENABLE_HUSH_INTERACTIVE
350 /* 'interactive_fd' is a fd# open to ctty, if we have one
351 * _AND_ if we decided to act interactively */
352 int interactive_fd;
353 const char *PS1;
354 const char *PS2;
355#endif
356#if ENABLE_FEATURE_EDITING
357 line_input_t *line_input_state;
358#endif
359#if ENABLE_HUSH_JOB
360 int run_list_level;
361 pid_t saved_task_pgrp;
362 pid_t saved_tty_pgrp;
363 int last_jobid;
364 struct pipe *job_list;
365 struct pipe *toplevel_list;
366 smallint ctrl_z_flag;
367#endif
368 smallint fake_mode;
369 /* these three support $?, $#, and $1 */
370 char **global_argv;
371 int global_argc;
372 int last_return_code;
373 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000374 const char *cwd;
375 unsigned last_bg_pid;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +0000376 struct variable *top_var; /* = &shell_ver (set in main()) */
377 struct variable shell_ver;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000378#if ENABLE_FEATURE_SH_STANDALONE
379 struct nofork_save_area nofork_save;
380#endif
381#if ENABLE_HUSH_JOB
382 sigjmp_buf toplevel_jb;
383#endif
384 unsigned char charmap[256];
385 char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2];
386};
387
388#define G (*ptr_to_globals)
389
390#if !ENABLE_HUSH_INTERACTIVE
391enum { interactive_fd = 0 };
392#endif
393#if !ENABLE_HUSH_JOB
394enum { run_list_level = 0 };
395#endif
396
397#if ENABLE_HUSH_INTERACTIVE
398#define interactive_fd (G.interactive_fd )
399#define PS1 (G.PS1 )
400#define PS2 (G.PS2 )
401#endif
402#if ENABLE_FEATURE_EDITING
403#define line_input_state (G.line_input_state)
404#endif
405#if ENABLE_HUSH_JOB
406#define run_list_level (G.run_list_level )
407#define saved_task_pgrp (G.saved_task_pgrp )
408#define saved_tty_pgrp (G.saved_tty_pgrp )
409#define last_jobid (G.last_jobid )
410#define job_list (G.job_list )
411#define toplevel_list (G.toplevel_list )
412#define toplevel_jb (G.toplevel_jb )
413#define ctrl_z_flag (G.ctrl_z_flag )
414#endif /* JOB */
415#define global_argv (G.global_argv )
416#define global_argc (G.global_argc )
417#define last_return_code (G.last_return_code)
418#define ifs (G.ifs )
419#define fake_mode (G.fake_mode )
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000420#define cwd (G.cwd )
421#define last_bg_pid (G.last_bg_pid )
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000422#define top_var (G.top_var )
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000423#define shell_ver (G.shell_ver )
424#if ENABLE_FEATURE_SH_STANDALONE
425#define nofork_save (G.nofork_save )
Denis Vlasenko4b924f32007-05-30 00:29:55 +0000426#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000427#if ENABLE_HUSH_JOB
428#define toplevel_jb (G.toplevel_jb )
429#endif
430#define charmap (G.charmap )
431#define user_input_buf (G.user_input_buf )
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000432#define INIT_G() do { \
433 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
434} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000435
436
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000437#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
438
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000439#if 1
440/* Normal */
441static void syntax(const char *msg)
442{
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000443 /* Was using fancy stuff:
444 * (interactive_fd ? bb_error_msg : bb_error_msg_and_die)(...params...)
445 * but it SEGVs. ?! Oh well... explicit temp ptr works around that */
446 void (*fp)(const char *s, ...);
447
448 fp = (interactive_fd ? bb_error_msg : bb_error_msg_and_die);
449 fp(msg ? "%s: %s" : "syntax error", "syntax error", msg);
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000450}
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000451
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000452#else
453/* Debug */
454static void syntax_lineno(int line)
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000455{
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000456 void (*fp)(const char *s, ...);
457
458 fp = (interactive_fd ? bb_error_msg : bb_error_msg_and_die);
459 fp("syntax error hush.c:%d", line);
Eric Andersen25f27032001-04-26 23:22:31 +0000460}
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000461#define syntax(str) syntax_lineno(__LINE__)
462#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000463
464/* Index of subroutines: */
Eric Andersen25f27032001-04-26 23:22:31 +0000465/* in_str manipulations: */
466static int static_get(struct in_str *i);
467static int static_peek(struct in_str *i);
468static int file_get(struct in_str *i);
469static int file_peek(struct in_str *i);
470static void setup_file_in_str(struct in_str *i, FILE *f);
471static void setup_string_in_str(struct in_str *i, const char *s);
Eric Andersen25f27032001-04-26 23:22:31 +0000472/* "run" the final data structures: */
Denis Vlasenkoc666f712007-05-16 22:18:54 +0000473#if !defined(DEBUG_CLEAN)
474#define free_pipe_list(head, indent) free_pipe_list(head)
475#define free_pipe(pi, indent) free_pipe(pi)
476#endif
Eric Andersenbf7df042001-05-23 22:18:35 +0000477static int free_pipe_list(struct pipe *head, int indent);
478static int free_pipe(struct pipe *pi, int indent);
Eric Andersen25f27032001-04-26 23:22:31 +0000479/* really run the final data structures: */
480static int setup_redirects(struct child_prog *prog, int squirrel[]);
Denis Vlasenko05743d72008-02-10 12:10:08 +0000481static int run_list(struct pipe *pi);
Denis Vlasenko76d50412008-06-10 16:19:39 +0000482#if BB_MMU
483#define pseudo_exec_argv(ptrs2free, argv) pseudo_exec_argv(argv)
484#define pseudo_exec(ptrs2free, child) pseudo_exec(child)
485#endif
486static void pseudo_exec_argv(char **ptrs2free, char **argv) ATTRIBUTE_NORETURN;
487static void pseudo_exec(char **ptrs2free, struct child_prog *child) ATTRIBUTE_NORETURN;
Denis Vlasenko05743d72008-02-10 12:10:08 +0000488static int run_pipe(struct pipe *pi);
Eric Andersen25f27032001-04-26 23:22:31 +0000489/* extended glob support: */
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000490static char **globhack(const char *src, char **strings);
Eric Andersen25f27032001-04-26 23:22:31 +0000491static int glob_needed(const char *s);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000492static int xglob(o_string *dest, char ***pglob);
Eric Andersen78a7c992001-05-15 16:30:25 +0000493/* variable assignment: */
Eric Andersen78a7c992001-05-15 16:30:25 +0000494static int is_assignment(const char *s);
Eric Andersen25f27032001-04-26 23:22:31 +0000495/* data structure manipulation: */
496static int setup_redirect(struct p_context *ctx, int fd, redir_type style, struct in_str *input);
497static void initialize_context(struct p_context *ctx);
498static int done_word(o_string *dest, struct p_context *ctx);
499static int done_command(struct p_context *ctx);
Denis Vlasenkoa8442002008-06-14 11:00:17 +0000500static void done_pipe(struct p_context *ctx, pipe_style type);
Eric Andersen25f27032001-04-26 23:22:31 +0000501/* primary string parsing: */
502static int redirect_dup_num(struct in_str *input);
503static int redirect_opt_num(o_string *o);
Denis Vlasenko14b5dd92007-05-20 21:51:38 +0000504#if ENABLE_HUSH_TICK
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +0000505static int process_command_subs(o_string *dest,
Denis Vlasenko68404f12008-03-17 09:00:54 +0000506 struct in_str *input, const char *subst_end);
Denis Vlasenko14b5dd92007-05-20 21:51:38 +0000507#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000508static int parse_group(o_string *dest, struct p_context *ctx, struct in_str *input, int ch);
Denis Vlasenko15d78fb2007-01-30 22:28:21 +0000509static const char *lookup_param(const char *src);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +0000510static int handle_dollar(o_string *dest,
Denis Vlasenko68404f12008-03-17 09:00:54 +0000511 struct in_str *input);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +0000512static int parse_stream(o_string *dest, struct p_context *ctx, struct in_str *input0, const char *end_trigger);
Eric Andersen25f27032001-04-26 23:22:31 +0000513/* setup: */
Denis Vlasenko170435c2007-05-23 13:01:10 +0000514static int parse_and_run_stream(struct in_str *inp, int parse_flag);
515static int parse_and_run_string(const char *s, int parse_flag);
516static int parse_and_run_file(FILE *f);
Eric Andersenbafd94f2001-05-02 16:11:59 +0000517/* job management: */
Eric Andersenc798b072001-06-22 06:23:03 +0000518static int checkjobs(struct pipe* fg_pipe);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000519#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +0000520static int checkjobs_and_fg_shell(struct pipe* fg_pipe);
Eric Andersenbafd94f2001-05-02 16:11:59 +0000521static void insert_bg_job(struct pipe *pi);
522static void remove_bg_job(struct pipe *pi);
Denis Vlasenko1359da62007-04-21 23:27:30 +0000523static void delete_finished_bg_job(struct pipe *pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000524#else
525int checkjobs_and_fg_shell(struct pipe* fg_pipe); /* never called */
526#endif
Eric Andersenf72f5622001-05-15 23:21:41 +0000527/* local variable support */
Denis Vlasenko170435c2007-05-23 13:01:10 +0000528static char **expand_strvec_to_strvec(char **argv);
529/* used for eval */
530static char *expand_strvec_to_string(char **argv);
Denis Vlasenkob6a741f2007-05-17 14:38:17 +0000531/* used for expansion of right hand of assignments */
Denis Vlasenko170435c2007-05-23 13:01:10 +0000532static char *expand_string_to_string(const char *str);
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000533static struct variable *get_local_var(const char *name);
534static int set_local_var(char *str, int flg_export);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +0000535static void unset_local_var(const char *name);
Eric Andersen25f27032001-04-26 23:22:31 +0000536
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000537
538static char **add_strings_to_strings(int need_xstrdup, char **strings, char **add)
539{
540 int i;
541 unsigned count1;
542 unsigned count2;
543 char **v;
544
545 v = strings;
546 count1 = 0;
547 if (v) {
548 while (*v) {
549 count1++;
550 v++;
551 }
552 }
553 count2 = 0;
554 v = add;
555 while (*v) {
556 count2++;
557 v++;
558 }
559 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
560 v[count1 + count2] = NULL;
561 i = count2;
562 while (--i >= 0)
563 v[count1 + i] = need_xstrdup ? xstrdup(add[i]) : add[i];
564 return v;
565}
566
567/* 'add' should be a malloced pointer */
568static char **add_string_to_strings(char **strings, char *add)
569{
570 char *v[2];
571
572 v[0] = add;
573 v[1] = NULL;
574
575 return add_strings_to_strings(0, strings, v);
576}
577
578static void free_strings(char **strings)
579{
580 if (strings) {
581 char **v = strings;
582 while (*v)
583 free(*v++);
584 free(strings);
585 }
586}
587
588
Denis Vlasenko76d50412008-06-10 16:19:39 +0000589#if !BB_MMU
590#define EXTRA_PTRS 5 /* 1 for NULL, 1 for args, 3 for paranoid reasons */
591static char **alloc_ptrs(char **argv)
592{
593 char **v = argv;
594 while (*v)
595 v++;
596 return xzalloc((v - argv + EXTRA_PTRS) * sizeof(v[0]));
597}
598#endif
599
600
Denis Vlasenko83506862007-11-23 13:11:42 +0000601/* Function prototypes for builtins */
602static int builtin_cd(char **argv);
Denis Vlasenko5bc593c2007-11-23 21:20:21 +0000603static int builtin_echo(char **argv);
Denis Vlasenko83506862007-11-23 13:11:42 +0000604static int builtin_eval(char **argv);
605static int builtin_exec(char **argv);
606static int builtin_exit(char **argv);
607static int builtin_export(char **argv);
608#if ENABLE_HUSH_JOB
609static int builtin_fg_bg(char **argv);
610static int builtin_jobs(char **argv);
611#endif
612#if ENABLE_HUSH_HELP
613static int builtin_help(char **argv);
614#endif
615static int builtin_pwd(char **argv);
616static int builtin_read(char **argv);
617static int builtin_test(char **argv);
Denis Vlasenkodd316dd2008-06-14 15:50:55 +0000618static int builtin_true(char **argv);
Denis Vlasenko83506862007-11-23 13:11:42 +0000619static int builtin_set(char **argv);
620static int builtin_shift(char **argv);
621static int builtin_source(char **argv);
622static int builtin_umask(char **argv);
623static int builtin_unset(char **argv);
624//static int builtin_not_written(char **argv);
625
Eric Andersen25f27032001-04-26 23:22:31 +0000626/* Table of built-in functions. They can be forked or not, depending on
627 * context: within pipes, they fork. As simple commands, they do not.
628 * When used in non-forking context, they can change global variables
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000629 * in the parent shell process. If forked, of course they cannot.
Eric Andersen25f27032001-04-26 23:22:31 +0000630 * For example, 'unset foo | whatever' will parse and run, but foo will
631 * still be set at the end. */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000632struct built_in_command {
Denis Vlasenkodd316dd2008-06-14 15:50:55 +0000633 const char *cmd;
634 int (*function)(char **argv);
Denis Vlasenko06810332007-05-21 23:30:54 +0000635#if ENABLE_HUSH_HELP
Denis Vlasenkodd316dd2008-06-14 15:50:55 +0000636 const char *descr;
Denis Vlasenko06810332007-05-21 23:30:54 +0000637#define BLTIN(cmd, func, help) { cmd, func, help }
638#else
639#define BLTIN(cmd, func, help) { cmd, func }
640#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000641};
642
Denis Vlasenko5bc593c2007-11-23 21:20:21 +0000643/* For now, echo and test are unconditionally enabled.
644 * Maybe make it configurable? */
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +0000645static const struct built_in_command bltins[] = {
Denis Vlasenkodd316dd2008-06-14 15:50:55 +0000646 BLTIN("." , builtin_source, "Run commands in a file"),
647 BLTIN(":" , builtin_true, "No-op"),
Denis Vlasenko83506862007-11-23 13:11:42 +0000648 BLTIN("[" , builtin_test, "Test condition"),
649 BLTIN("[[" , builtin_test, "Test condition"),
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000650#if ENABLE_HUSH_JOB
Denis Vlasenko06810332007-05-21 23:30:54 +0000651 BLTIN("bg" , builtin_fg_bg, "Resume a job in the background"),
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000652#endif
Denis Vlasenko06810332007-05-21 23:30:54 +0000653// BLTIN("break" , builtin_not_written, "Exit for, while or until loop"),
Denis Vlasenkodd316dd2008-06-14 15:50:55 +0000654 BLTIN("cd" , builtin_cd, "Change directory"),
Denis Vlasenko06810332007-05-21 23:30:54 +0000655// BLTIN("continue", builtin_not_written, "Continue for, while or until loop"),
Denis Vlasenko5bc593c2007-11-23 21:20:21 +0000656 BLTIN("echo" , builtin_echo, "Write strings to stdout"),
Denis Vlasenko06810332007-05-21 23:30:54 +0000657 BLTIN("eval" , builtin_eval, "Construct and run shell command"),
Denis Vlasenkodd316dd2008-06-14 15:50:55 +0000658 BLTIN("exec" , builtin_exec, "Execute command, don't return to shell"),
659 BLTIN("exit" , builtin_exit, "Exit"),
Denis Vlasenko06810332007-05-21 23:30:54 +0000660 BLTIN("export", builtin_export, "Set environment variable"),
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000661#if ENABLE_HUSH_JOB
Denis Vlasenko06810332007-05-21 23:30:54 +0000662 BLTIN("fg" , builtin_fg_bg, "Bring job into the foreground"),
Denis Vlasenkodd316dd2008-06-14 15:50:55 +0000663 BLTIN("jobs" , builtin_jobs, "List active jobs"),
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000664#endif
Denis Vlasenko06810332007-05-21 23:30:54 +0000665 BLTIN("pwd" , builtin_pwd, "Print current directory"),
666 BLTIN("read" , builtin_read, "Input environment variable"),
667// BLTIN("return", builtin_not_written, "Return from a function"),
668 BLTIN("set" , builtin_set, "Set/unset shell local variables"),
669 BLTIN("shift" , builtin_shift, "Shift positional parameters"),
670// BLTIN("trap" , builtin_not_written, "Trap signals"),
Denis Vlasenko83506862007-11-23 13:11:42 +0000671 BLTIN("test" , builtin_test, "Test condition"),
Denis Vlasenkodd316dd2008-06-14 15:50:55 +0000672// BLTIN("ulimit", builtin_not_written, "Control resource limits"),
673 BLTIN("umask" , builtin_umask, "Set file creation mask"),
Denis Vlasenko06810332007-05-21 23:30:54 +0000674 BLTIN("unset" , builtin_unset, "Unset environment variable"),
Denis Vlasenko06810332007-05-21 23:30:54 +0000675#if ENABLE_HUSH_HELP
676 BLTIN("help" , builtin_help, "List shell built-in commands"),
677#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000678};
679
Denis Vlasenko4830fc52008-05-25 21:50:55 +0000680/* Signals are grouped, we handle them in batches */
681static void set_misc_sighandler(void (*handler)(int))
682{
683 bb_signals(0
684 + (1 << SIGINT)
685 + (1 << SIGQUIT)
686 + (1 << SIGTERM)
687 , handler);
688}
689
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000690#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000691
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000692static void set_fatal_sighandler(void (*handler)(int))
693{
Denis Vlasenko25591c32008-02-16 22:58:56 +0000694 bb_signals(0
695 + (1 << SIGILL)
696 + (1 << SIGTRAP)
697 + (1 << SIGABRT)
698 + (1 << SIGFPE)
699 + (1 << SIGBUS)
700 + (1 << SIGSEGV)
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000701 /* bash 3.2 seems to handle these just like 'fatal' ones */
Denis Vlasenko25591c32008-02-16 22:58:56 +0000702 + (1 << SIGHUP)
703 + (1 << SIGPIPE)
704 + (1 << SIGALRM)
705 , handler);
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000706}
707static void set_jobctrl_sighandler(void (*handler)(int))
708{
Denis Vlasenko25591c32008-02-16 22:58:56 +0000709 bb_signals(0
710 + (1 << SIGTSTP)
711 + (1 << SIGTTIN)
712 + (1 << SIGTTOU)
713 , handler);
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000714}
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000715/* SIGCHLD is special and handled separately */
716
717static void set_every_sighandler(void (*handler)(int))
718{
719 set_fatal_sighandler(handler);
720 set_jobctrl_sighandler(handler);
721 set_misc_sighandler(handler);
722 signal(SIGCHLD, handler);
723}
724
Denis Vlasenko68404f12008-03-17 09:00:54 +0000725static void handler_ctrl_c(int sig ATTRIBUTE_UNUSED)
Denis Vlasenkob5eaabb2007-04-28 16:45:59 +0000726{
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000727 debug_printf_jobs("got sig %d\n", sig);
Denis Vlasenkob5eaabb2007-04-28 16:45:59 +0000728// as usual we can have all kinds of nasty problems with leaked malloc data here
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000729 siglongjmp(toplevel_jb, 1);
Denis Vlasenkob5eaabb2007-04-28 16:45:59 +0000730}
731
Denis Vlasenko68404f12008-03-17 09:00:54 +0000732static void handler_ctrl_z(int sig ATTRIBUTE_UNUSED)
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000733{
734 pid_t pid;
735
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000736 debug_printf_jobs("got tty sig %d in pid %d\n", sig, getpid());
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000737 pid = fork();
Denis Vlasenkoc2990322007-05-16 12:57:12 +0000738 if (pid < 0) /* can't fork. Pretend there was no ctrl-Z */
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000739 return;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000740 ctrl_z_flag = 1;
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000741 if (!pid) { /* child */
Denis Vlasenko83177992008-02-11 08:44:36 +0000742 if (ENABLE_HUSH_JOB)
743 die_sleep = 0; /* let nofork's xfuncs die */
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000744 setpgrp();
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000745 debug_printf_jobs("set pgrp for child %d ok\n", getpid());
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000746 set_every_sighandler(SIG_DFL);
Denis Vlasenko18e19f22007-04-28 16:43:18 +0000747 raise(SIGTSTP); /* resend TSTP so that child will be stopped */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000748 debug_printf_jobs("returning in child\n");
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000749 /* return to nofork, it will eventually exit now,
750 * not return back to shell */
751 return;
752 }
753 /* parent */
754 /* finish filling up pipe info */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000755 toplevel_list->pgrp = pid; /* child is in its own pgrp */
756 toplevel_list->progs[0].pid = pid;
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000757 /* parent needs to longjmp out of running nofork.
758 * we will "return" exitcode 0, with child put in background */
759// as usual we can have all kinds of nasty problems with leaked malloc data here
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000760 debug_printf_jobs("siglongjmp in parent\n");
761 siglongjmp(toplevel_jb, 1);
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000762}
763
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000764/* Restores tty foreground process group, and exits.
765 * May be called as signal handler for fatal signal
766 * (will faithfully resend signal to itself, producing correct exit state)
767 * or called directly with -EXITCODE.
768 * We also call it if xfunc is exiting. */
769static void sigexit(int sig) ATTRIBUTE_NORETURN;
770static void sigexit(int sig)
771{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000772 /* Disable all signals: job control, SIGPIPE, etc. */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000773 sigprocmask_allsigs(SIG_BLOCK);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000774
Denis Vlasenko87cb2db2007-04-21 10:00:01 +0000775 if (interactive_fd)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000776 tcsetpgrp(interactive_fd, saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000777
778 /* Not a signal, just exit */
779 if (sig <= 0)
780 _exit(- sig);
781
Denis Vlasenko400d8bb2008-02-24 13:36:01 +0000782 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000783}
784
785/* Restores tty foreground process group, and exits. */
786static void hush_exit(int exitcode) ATTRIBUTE_NORETURN;
787static void hush_exit(int exitcode)
788{
789 fflush(NULL); /* flush all streams */
790 sigexit(- (exitcode & 0xff));
791}
792
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000793#else /* !JOB */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000794
795#define set_fatal_sighandler(handler) ((void)0)
796#define set_jobctrl_sighandler(handler) ((void)0)
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000797#define hush_exit(e) exit(e)
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000798
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000799#endif /* JOB */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000800
801
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000802static const char *set_cwd(void)
803{
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000804 if (cwd == bb_msg_unknown)
Denis Vlasenko7cced6e2007-04-12 17:08:53 +0000805 cwd = NULL; /* xrealloc_getcwd_or_warn(arg) calls free(arg)! */
Denis Vlasenko6ca04442007-02-11 16:19:28 +0000806 cwd = xrealloc_getcwd_or_warn((char *)cwd);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000807 if (!cwd)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000808 cwd = bb_msg_unknown;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000809 return cwd;
810}
811
Denis Vlasenko83506862007-11-23 13:11:42 +0000812
Denis Vlasenkodd316dd2008-06-14 15:50:55 +0000813/* built-in 'true' handler */
814static int builtin_true(char **argv ATTRIBUTE_UNUSED)
815{
816 return 0;
817}
818
Denis Vlasenko83506862007-11-23 13:11:42 +0000819/* built-in 'test' handler */
820static int builtin_test(char **argv)
821{
822 int argc = 0;
823 while (*argv) {
824 argc++;
825 argv++;
826 }
827 return test_main(argc, argv - argc);
828}
829
Denis Vlasenko5bc593c2007-11-23 21:20:21 +0000830/* built-in 'test' handler */
831static int builtin_echo(char **argv)
832{
833 int argc = 0;
834 while (*argv) {
835 argc++;
836 argv++;
837 }
Denis Vlasenkofe5e23b2007-11-24 02:23:51 +0000838 return echo_main(argc, argv - argc);
Denis Vlasenko5bc593c2007-11-23 21:20:21 +0000839}
840
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000841/* built-in 'eval' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000842static int builtin_eval(char **argv)
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000843{
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000844 int rcode = EXIT_SUCCESS;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000845
Denis Vlasenko1359da62007-04-21 23:27:30 +0000846 if (argv[1]) {
Denis Vlasenko170435c2007-05-23 13:01:10 +0000847 char *str = expand_strvec_to_string(argv + 1);
848 parse_and_run_string(str, PARSEFLAG_EXIT_FROM_LOOP |
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000849 PARSEFLAG_SEMICOLON);
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000850 free(str);
851 rcode = last_return_code;
852 }
853 return rcode;
854}
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000855
Eric Andersen25f27032001-04-26 23:22:31 +0000856/* built-in 'cd <path>' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000857static int builtin_cd(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000858{
Denis Vlasenko170435c2007-05-23 13:01:10 +0000859 const char *newdir;
Denis Vlasenko96e1b382007-09-30 23:50:48 +0000860 if (argv[1] == NULL) {
861 // bash does nothing (exitcode 0) if HOME is ""; if it's unset,
862 // bash says "bash: cd: HOME not set" and does nothing (exitcode 1)
Denis Vlasenko170435c2007-05-23 13:01:10 +0000863 newdir = getenv("HOME") ? : "/";
Denis Vlasenko96e1b382007-09-30 23:50:48 +0000864 } else
Denis Vlasenko1359da62007-04-21 23:27:30 +0000865 newdir = argv[1];
Eric Andersen25f27032001-04-26 23:22:31 +0000866 if (chdir(newdir)) {
867 printf("cd: %s: %s\n", newdir, strerror(errno));
868 return EXIT_FAILURE;
869 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000870 set_cwd();
Eric Andersen25f27032001-04-26 23:22:31 +0000871 return EXIT_SUCCESS;
872}
873
Eric Andersen25f27032001-04-26 23:22:31 +0000874/* built-in 'exec' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000875static int builtin_exec(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000876{
Denis Vlasenko1359da62007-04-21 23:27:30 +0000877 if (argv[1] == NULL)
Denis Vlasenkof90ab182008-03-20 21:19:35 +0000878 return EXIT_SUCCESS; /* bash does this */
Denis Vlasenko76d50412008-06-10 16:19:39 +0000879 {
880#if !BB_MMU
881 char **ptrs2free = alloc_ptrs(argv);
882#endif
Denis Vlasenkof90ab182008-03-20 21:19:35 +0000883// FIXME: if exec fails, bash does NOT exit! We do...
Denis Vlasenko76d50412008-06-10 16:19:39 +0000884 pseudo_exec_argv(ptrs2free, argv + 1);
885 /* never returns */
886 }
Eric Andersen25f27032001-04-26 23:22:31 +0000887}
888
889/* built-in 'exit' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000890static int builtin_exit(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000891{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000892// TODO: bash does it ONLY on top-level sh exit (+interacive only?)
893 //puts("exit"); /* bash does it */
Denis Vlasenkof2fffd02007-05-02 23:39:04 +0000894// TODO: warn if we have background jobs: "There are stopped jobs"
895// On second consecutive 'exit', exit anyway.
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000896
Denis Vlasenko1359da62007-04-21 23:27:30 +0000897 if (argv[1] == NULL)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000898 hush_exit(last_return_code);
Denis Vlasenko5f786c22007-04-20 08:35:45 +0000899 /* mimic bash: exit 123abc == exit 255 + error msg */
900 xfunc_error_retval = 255;
901 /* bash: exit -2 == exit 254, no error msg */
Denis Vlasenkof2fffd02007-05-02 23:39:04 +0000902 hush_exit(xatoi(argv[1]) & 0xff);
Eric Andersen25f27032001-04-26 23:22:31 +0000903}
904
905/* built-in 'export VAR=value' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000906static int builtin_export(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000907{
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000908 const char *value;
Denis Vlasenko1359da62007-04-21 23:27:30 +0000909 char *name = argv[1];
Eric Andersen25f27032001-04-26 23:22:31 +0000910
Eric Andersenf72f5622001-05-15 23:21:41 +0000911 if (name == NULL) {
Denis Vlasenkof2fffd02007-05-02 23:39:04 +0000912 // TODO:
913 // ash emits: export VAR='VAL'
914 // bash: declare -x VAR="VAL"
915 // (both also escape as needed (quotes, $, etc))
916 char **e = environ;
917 if (e)
918 while (*e)
919 puts(*e++);
920 return EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +0000921 }
Eric Andersenf72f5622001-05-15 23:21:41 +0000922
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000923 value = strchr(name, '=');
924 if (!value) {
925 /* They are exporting something without a =VALUE */
926 struct variable *var;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000927
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000928 var = get_local_var(name);
929 if (var) {
930 var->flg_export = 1;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000931 putenv(var->varstr);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000932 }
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000933 /* bash does not return an error when trying to export
934 * an undefined variable. Do likewise. */
935 return EXIT_SUCCESS;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000936 }
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000937
938 set_local_var(xstrdup(name), 1);
939 return EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +0000940}
941
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000942#if ENABLE_HUSH_JOB
Eric Andersen25f27032001-04-26 23:22:31 +0000943/* built-in 'fg' and 'bg' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000944static int builtin_fg_bg(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000945{
Eric Andersen0fcd4472001-05-02 20:12:03 +0000946 int i, jobnum;
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000947 struct pipe *pi;
Eric Andersen25f27032001-04-26 23:22:31 +0000948
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000949 if (!interactive_fd)
Eric Andersenc798b072001-06-22 06:23:03 +0000950 return EXIT_FAILURE;
Eric Andersen0fcd4472001-05-02 20:12:03 +0000951 /* If they gave us no args, assume they want the last backgrounded task */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000952 if (!argv[1]) {
Eric Andersenc798b072001-06-22 06:23:03 +0000953 for (pi = job_list; pi; pi = pi->next) {
954 if (pi->jobid == last_jobid) {
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000955 goto found;
Eric Andersen0fcd4472001-05-02 20:12:03 +0000956 }
957 }
Denis Vlasenko1359da62007-04-21 23:27:30 +0000958 bb_error_msg("%s: no current job", argv[0]);
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000959 return EXIT_FAILURE;
960 }
Denis Vlasenko1359da62007-04-21 23:27:30 +0000961 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
962 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000963 return EXIT_FAILURE;
964 }
965 for (pi = job_list; pi; pi = pi->next) {
966 if (pi->jobid == jobnum) {
967 goto found;
Eric Andersen25f27032001-04-26 23:22:31 +0000968 }
969 }
Denis Vlasenko1359da62007-04-21 23:27:30 +0000970 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000971 return EXIT_FAILURE;
972 found:
Denis Vlasenko52881e92007-04-21 13:42:52 +0000973 // TODO: bash prints a string representation
974 // of job being foregrounded (like "sleep 1 | cat")
Denis Vlasenko1359da62007-04-21 23:27:30 +0000975 if (*argv[0] == 'f') {
Eric Andersen028b65b2001-06-28 01:10:11 +0000976 /* Put the job into the foreground. */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000977 tcsetpgrp(interactive_fd, pi->pgrp);
Eric Andersen25f27032001-04-26 23:22:31 +0000978 }
979
980 /* Restart the processes in the job */
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000981 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_progs, pi->pgrp);
Denis Vlasenko1359da62007-04-21 23:27:30 +0000982 for (i = 0; i < pi->num_progs; i++) {
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000983 debug_printf_jobs("reviving pid %d\n", pi->progs[i].pid);
Eric Andersen0fcd4472001-05-02 20:12:03 +0000984 pi->progs[i].is_stopped = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +0000985 }
986 pi->stopped_progs = 0;
Eric Andersen25f27032001-04-26 23:22:31 +0000987
Denis Vlasenkobb81c582007-01-30 22:32:09 +0000988 i = kill(- pi->pgrp, SIGCONT);
989 if (i < 0) {
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000990 if (errno == ESRCH) {
Denis Vlasenko1359da62007-04-21 23:27:30 +0000991 delete_finished_bg_job(pi);
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000992 return EXIT_SUCCESS;
Eric Andersen028b65b2001-06-28 01:10:11 +0000993 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000994 bb_perror_msg("kill (SIGCONT)");
Eric Andersen028b65b2001-06-28 01:10:11 +0000995 }
996 }
Eric Andersen25f27032001-04-26 23:22:31 +0000997
Denis Vlasenko1359da62007-04-21 23:27:30 +0000998 if (*argv[0] == 'f') {
999 remove_bg_job(pi);
Denis Vlasenko52881e92007-04-21 13:42:52 +00001000 return checkjobs_and_fg_shell(pi);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001001 }
Eric Andersen25f27032001-04-26 23:22:31 +00001002 return EXIT_SUCCESS;
1003}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001004#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001005
1006/* built-in 'help' handler */
Denis Vlasenko06810332007-05-21 23:30:54 +00001007#if ENABLE_HUSH_HELP
Denis Vlasenko1359da62007-04-21 23:27:30 +00001008static int builtin_help(char **argv ATTRIBUTE_UNUSED)
Eric Andersen25f27032001-04-26 23:22:31 +00001009{
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +00001010 const struct built_in_command *x;
Eric Andersen25f27032001-04-26 23:22:31 +00001011
1012 printf("\nBuilt-in commands:\n");
1013 printf("-------------------\n");
Denis Vlasenkodd316dd2008-06-14 15:50:55 +00001014 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
Eric Andersen25f27032001-04-26 23:22:31 +00001015 printf("%s\t%s\n", x->cmd, x->descr);
1016 }
1017 printf("\n\n");
1018 return EXIT_SUCCESS;
1019}
Denis Vlasenko06810332007-05-21 23:30:54 +00001020#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001021
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001022#if ENABLE_HUSH_JOB
Eric Andersen25f27032001-04-26 23:22:31 +00001023/* built-in 'jobs' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001024static int builtin_jobs(char **argv ATTRIBUTE_UNUSED)
Eric Andersen25f27032001-04-26 23:22:31 +00001025{
1026 struct pipe *job;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001027 const char *status_string;
Eric Andersen25f27032001-04-26 23:22:31 +00001028
Eric Andersenc798b072001-06-22 06:23:03 +00001029 for (job = job_list; job; job = job->next) {
Eric Andersen25f27032001-04-26 23:22:31 +00001030 if (job->running_progs == job->stopped_progs)
1031 status_string = "Stopped";
1032 else
1033 status_string = "Running";
Eric Andersen52a97ca2001-06-22 06:49:26 +00001034
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001035 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
Eric Andersen25f27032001-04-26 23:22:31 +00001036 }
1037 return EXIT_SUCCESS;
1038}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001039#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001040
Eric Andersen25f27032001-04-26 23:22:31 +00001041/* built-in 'pwd' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001042static int builtin_pwd(char **argv ATTRIBUTE_UNUSED)
Eric Andersen25f27032001-04-26 23:22:31 +00001043{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001044 puts(set_cwd());
Eric Andersen25f27032001-04-26 23:22:31 +00001045 return EXIT_SUCCESS;
1046}
1047
1048/* built-in 'read VAR' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001049static int builtin_read(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00001050{
Denis Vlasenkod67cef22007-06-13 06:47:47 +00001051 char *string;
Denis Vlasenko3e7b0e62007-05-16 12:52:15 +00001052 const char *name = argv[1] ? argv[1] : "REPLY";
Eric Andersen25f27032001-04-26 23:22:31 +00001053
Denis Vlasenko0b6c6a92008-03-24 00:04:42 +00001054 string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
Denis Vlasenkod67cef22007-06-13 06:47:47 +00001055 return set_local_var(string, 0);
Eric Andersen25f27032001-04-26 23:22:31 +00001056}
1057
Denis Vlasenko3e7b0e62007-05-16 12:52:15 +00001058/* built-in 'set [VAR=value]' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001059static int builtin_set(char **argv)
Eric Andersenf72f5622001-05-15 23:21:41 +00001060{
Denis Vlasenko1359da62007-04-21 23:27:30 +00001061 char *temp = argv[1];
Denis Vlasenkod76c0492007-05-25 02:16:25 +00001062 struct variable *e;
Eric Andersenf72f5622001-05-15 23:21:41 +00001063
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001064 if (temp == NULL)
Denis Vlasenkod76c0492007-05-25 02:16:25 +00001065 for (e = top_var; e; e = e->next)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00001066 puts(e->varstr);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001067 else
Denis Vlasenkod76c0492007-05-25 02:16:25 +00001068 set_local_var(xstrdup(temp), 0);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001069
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001070 return EXIT_SUCCESS;
Eric Andersenf72f5622001-05-15 23:21:41 +00001071}
1072
1073
Eric Andersen25f27032001-04-26 23:22:31 +00001074/* Built-in 'shift' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001075static int builtin_shift(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00001076{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001077 int n = 1;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001078 if (argv[1]) {
1079 n = atoi(argv[1]);
Eric Andersen25f27032001-04-26 23:22:31 +00001080 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001081 if (n >= 0 && n < global_argc) {
Denis Vlasenko004baba2007-05-20 22:22:18 +00001082 global_argv[n] = global_argv[0];
Eric Andersen25f27032001-04-26 23:22:31 +00001083 global_argc -= n;
1084 global_argv += n;
1085 return EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +00001086 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001087 return EXIT_FAILURE;
Eric Andersen25f27032001-04-26 23:22:31 +00001088}
1089
1090/* Built-in '.' handler (read-in and execute commands from file) */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001091static int builtin_source(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00001092{
1093 FILE *input;
1094 int status;
1095
Denis Vlasenko1359da62007-04-21 23:27:30 +00001096 if (argv[1] == NULL)
Eric Andersen25f27032001-04-26 23:22:31 +00001097 return EXIT_FAILURE;
1098
1099 /* XXX search through $PATH is missing */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001100 input = fopen(argv[1], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00001101 if (!input) {
Denis Vlasenko1359da62007-04-21 23:27:30 +00001102 bb_error_msg("cannot open '%s'", argv[1]);
Eric Andersen25f27032001-04-26 23:22:31 +00001103 return EXIT_FAILURE;
1104 }
Denis Vlasenkoa0898172007-10-01 09:59:01 +00001105 close_on_exec_on(fileno(input));
Eric Andersen25f27032001-04-26 23:22:31 +00001106
1107 /* Now run the file */
1108 /* XXX argv and argc are broken; need to save old global_argv
1109 * (pointer only is OK!) on this stack frame,
Denis Vlasenko1359da62007-04-21 23:27:30 +00001110 * set global_argv=argv+1, recurse, and restore. */
Denis Vlasenko170435c2007-05-23 13:01:10 +00001111 status = parse_and_run_file(input);
Eric Andersen25f27032001-04-26 23:22:31 +00001112 fclose(input);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001113 return status;
Eric Andersen25f27032001-04-26 23:22:31 +00001114}
1115
Denis Vlasenko1359da62007-04-21 23:27:30 +00001116static int builtin_umask(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00001117{
Eric Andersen83a2ae22001-05-07 17:59:25 +00001118 mode_t new_umask;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001119 const char *arg = argv[1];
Eric Andersen83a2ae22001-05-07 17:59:25 +00001120 char *end;
1121 if (arg) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001122 new_umask = strtoul(arg, &end, 8);
1123 if (*end != '\0' || end == arg) {
Eric Andersen83a2ae22001-05-07 17:59:25 +00001124 return EXIT_FAILURE;
1125 }
1126 } else {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001127 new_umask = umask(0);
1128 printf("%.3o\n", (unsigned) new_umask);
Eric Andersen83a2ae22001-05-07 17:59:25 +00001129 }
1130 umask(new_umask);
1131 return EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +00001132}
1133
1134/* built-in 'unset VAR' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001135static int builtin_unset(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00001136{
Denis Vlasenko3e7b0e62007-05-16 12:52:15 +00001137 /* bash always returns true */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001138 unset_local_var(argv[1]);
Eric Andersen25f27032001-04-26 23:22:31 +00001139 return EXIT_SUCCESS;
1140}
1141
Denis Vlasenko06810332007-05-21 23:30:54 +00001142//static int builtin_not_written(char **argv)
1143//{
1144// printf("builtin_%s not written\n", argv[0]);
1145// return EXIT_FAILURE;
1146//}
Eric Andersen83a2ae22001-05-07 17:59:25 +00001147
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001148/*
1149 * o_string support
1150 */
1151#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00001152
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001153static void o_reset(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001154{
1155 o->length = 0;
1156 o->nonnull = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001157 if (o->data)
1158 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001159}
1160
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001161static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001162{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001163 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001164 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00001165}
1166
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001167static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001168{
1169 if (o->length + len > o->maxlen) {
1170 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1171 o->data = xrealloc(o->data, 1 + o->maxlen);
1172 }
1173}
1174
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001175static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001176{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001177 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1178 o_grow_by(o, 1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001179 o->data[o->length] = ch;
1180 o->length++;
1181 o->data[o->length] = '\0';
1182}
1183
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001184static void o_addstr(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001185{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001186 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001187 memcpy(&o->data[o->length], str, len);
1188 o->length += len;
1189 o->data[o->length] = '\0';
1190}
1191
Eric Andersen25f27032001-04-26 23:22:31 +00001192/* My analysis of quoting semantics tells me that state information
1193 * is associated with a destination, not a source.
1194 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001195static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00001196{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001197 int sz = 1;
1198 if (strchr("*?[\\", ch)) {
1199 sz++;
1200 o->data[o->length] = '\\';
1201 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00001202 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001203 o_grow_by(o, sz);
1204 o->data[o->length] = ch;
1205 o->length++;
1206 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001207}
1208
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001209static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001210{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001211 int sz = 1;
1212 if (o->o_quote && strchr("*?[\\", ch)) {
1213 sz++;
1214 o->data[o->length] = '\\';
1215 o->length++;
1216 }
1217 o_grow_by(o, sz);
1218 o->data[o->length] = ch;
1219 o->length++;
1220 o->data[o->length] = '\0';
1221}
1222
1223static void o_addQstr(o_string *o, const char *str, int len)
1224{
1225 if (!o->o_quote) {
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001226 o_addstr(o, str, len);
1227 return;
1228 }
1229 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001230 char ch;
1231 int sz;
1232 int ordinary_cnt = strcspn(str, "*?[\\");
1233 if (ordinary_cnt > len) /* paranoia */
1234 ordinary_cnt = len;
1235 o_addstr(o, str, ordinary_cnt);
1236 if (ordinary_cnt == len)
1237 return;
1238 str += ordinary_cnt;
1239 len -= ordinary_cnt - 1; /* we are processing + 1 char below */
1240
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001241 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001242 sz = 1;
1243 if (ch) { /* it is necessarily one of "*?[\\" */
1244 sz++;
1245 o->data[o->length] = '\\';
1246 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001247 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001248 o_grow_by(o, sz);
1249 o->data[o->length] = ch;
1250 o->length++;
1251 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001252 }
1253}
1254
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001255/* A special kind of o_string for $VAR and `cmd` expansion.
1256 * It contains char* list[] at the beginning, which is grown in 16 element
1257 * increments. Actual string data starts at the next multiple of 16.
1258 * list[i] contains an INDEX (int!) into this string data.
1259 * It means that if list[] needs to grow, data needs to be moved higher up
1260 * but list[i]'s need not be modified.
1261 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001262 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001263 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
1264 */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001265static int o_save_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001266{
1267 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00001268 int string_start;
1269 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001270
1271 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00001272 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1273 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001274 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko895bea22008-06-10 18:06:24 +00001275 //bb_error_msg("list[%d]=%d string_start=%d (growing)", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001276 /* list[n] points to string_start, make space for 16 more pointers */
1277 o->maxlen += 0x10 * sizeof(list[0]);
1278 o->data = xrealloc(o->data, o->maxlen + 1);
1279 list = (char**)o->data;
1280 memmove(list + n + 0x10, list + n, string_len);
1281 o->length += 0x10 * sizeof(list[0]);
1282 }
Denis Vlasenko895bea22008-06-10 18:06:24 +00001283 //else bb_error_msg("list[%d]=%d string_start=%d", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001284 } else {
1285 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00001286 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
1287 string_len = o->length - string_start;
1288 //bb_error_msg("list[%d]=%d string_start=%d (empty slot)", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001289 o->has_empty_slot = 0;
1290 }
1291 list[n] = (char*)string_len;
1292 return n + 1;
1293}
1294
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001295static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001296{
1297 char **list = (char**)o->data;
1298 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1299
1300 return ((int)list[n-1]) + string_start;
1301}
1302
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001303static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001304{
1305 char **list = (char**)o->data;
1306 int string_start;
1307
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001308 o_save_ptr(o, n); /* force growth for list[n] if necessary */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001309 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]);
1310 list[n] = NULL;
1311 while (n) {
1312 n--;
1313 list[n] = o->data + (int)list[n] + string_start;
1314 }
1315 return list;
1316}
1317
1318#ifdef DEBUG_EXPAND
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001319static void o_debug_list(const char *prefix, o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001320{
1321 char **list = (char**)o->data;
1322 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1323 int i = 0;
1324 fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n",
1325 prefix, list, n, string_start, o->length, o->maxlen);
1326 while (i < n) {
1327 fprintf(stderr, " list[%d]=%d '%s'\n", i, (int)list[i],
1328 o->data + (int)list[i] + string_start);
1329 i++;
1330 }
1331 if (n) {
1332 const char *p = o->data + (int)list[n] + string_start;
1333 fprintf(stderr, " total_sz:%d\n", (p + strlen(p) + 1) - o->data);
1334 }
1335}
1336#else
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001337#define o_debug_list(prefix, o, n) ((void)0)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001338#endif
1339
1340
1341/*
1342 * in_str support
1343 */
Eric Andersen25f27032001-04-26 23:22:31 +00001344static int static_get(struct in_str *i)
1345{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001346 int ch = *i->p++;
1347 if (ch == '\0') return EOF;
Eric Andersen25f27032001-04-26 23:22:31 +00001348 return ch;
1349}
1350
1351static int static_peek(struct in_str *i)
1352{
1353 return *i->p;
1354}
1355
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001356#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001357#if ENABLE_FEATURE_EDITING
Rob Landley88621d72006-08-29 19:41:06 +00001358static void cmdedit_set_initial_prompt(void)
Eric Andersen25f27032001-04-26 23:22:31 +00001359{
Denis Vlasenko38f63192007-01-22 09:03:07 +00001360#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Eric Andersen25f27032001-04-26 23:22:31 +00001361 PS1 = NULL;
1362#else
1363 PS1 = getenv("PS1");
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001364 if (PS1 == NULL)
Eric Andersen25f27032001-04-26 23:22:31 +00001365 PS1 = "\\w \\$ ";
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001366#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001367}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001368#endif /* EDITING */
Eric Andersen25f27032001-04-26 23:22:31 +00001369
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001370static const char* setup_prompt_string(int promptmode)
Eric Andersen25f27032001-04-26 23:22:31 +00001371{
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001372 const char *prompt_str;
1373 debug_printf("setup_prompt_string %d ", promptmode);
Denis Vlasenko38f63192007-01-22 09:03:07 +00001374#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Eric Andersen25f27032001-04-26 23:22:31 +00001375 /* Set up the prompt */
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001376 if (promptmode == 0) { /* PS1 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001377 free((char*)PS1);
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001378 PS1 = xasprintf("%s %c ", cwd, (geteuid() != 0) ? '$' : '#');
1379 prompt_str = PS1;
Eric Andersen25f27032001-04-26 23:22:31 +00001380 } else {
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001381 prompt_str = PS2;
Eric Andersen25f27032001-04-26 23:22:31 +00001382 }
1383#else
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001384 prompt_str = (promptmode == 0) ? PS1 : PS2;
Eric Andersenaf44a0e2001-04-27 07:26:12 +00001385#endif
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001386 debug_printf("result '%s'\n", prompt_str);
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001387 return prompt_str;
Eric Andersen25f27032001-04-26 23:22:31 +00001388}
1389
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001390static void get_user_input(struct in_str *i)
Eric Andersen25f27032001-04-26 23:22:31 +00001391{
Denis Vlasenko0937be52007-04-28 16:47:08 +00001392 int r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001393 const char *prompt_str;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001394
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001395 prompt_str = setup_prompt_string(i->promptmode);
Denis Vlasenko38f63192007-01-22 09:03:07 +00001396#if ENABLE_FEATURE_EDITING
Denis Vlasenko170435c2007-05-23 13:01:10 +00001397 /* Enable command line editing only while a command line
Denis Vlasenkoe376d452008-02-20 22:23:24 +00001398 * is actually being read */
1399 do {
1400 r = read_line_input(prompt_str, user_input_buf, BUFSIZ-1, line_input_state);
1401 } while (r == 0); /* repeat if Ctrl-C */
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001402 i->eof_flag = (r < 0);
1403 if (i->eof_flag) { /* EOF/error detected */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001404 user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1405 user_input_buf[1] = '\0';
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001406 }
Eric Andersen25f27032001-04-26 23:22:31 +00001407#else
1408 fputs(prompt_str, stdout);
1409 fflush(stdout);
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001410 user_input_buf[0] = r = fgetc(i->file);
1411 /*user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001412 i->eof_flag = (r == EOF);
Eric Andersen25f27032001-04-26 23:22:31 +00001413#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001414 i->p = user_input_buf;
Eric Andersen25f27032001-04-26 23:22:31 +00001415}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001416#endif /* INTERACTIVE */
Eric Andersen25f27032001-04-26 23:22:31 +00001417
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001418/* This is the magic location that prints prompts
Eric Andersen25f27032001-04-26 23:22:31 +00001419 * and gets data back from the user */
1420static int file_get(struct in_str *i)
1421{
1422 int ch;
1423
Eric Andersen25f27032001-04-26 23:22:31 +00001424 /* If there is data waiting, eat it up */
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001425 if (i->p && *i->p) {
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001426#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001427 take_cached:
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001428#endif
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001429 ch = *i->p++;
1430 if (i->eof_flag && !*i->p)
1431 ch = EOF;
Eric Andersen25f27032001-04-26 23:22:31 +00001432 } else {
1433 /* need to double check i->file because we might be doing something
1434 * more complicated by now, like sourcing or substituting. */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001435#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001436 if (interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001437 do {
1438 get_user_input(i);
1439 } while (!*i->p); /* need non-empty line */
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001440 i->promptmode = 1; /* PS2 */
1441 i->promptme = 0;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001442 goto take_cached;
Eric Andersen25f27032001-04-26 23:22:31 +00001443 }
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001444#endif
1445 ch = fgetc(i->file);
Eric Andersen25f27032001-04-26 23:22:31 +00001446 }
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001447 debug_printf("file_get: got a '%c' %d\n", ch, ch);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001448#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001449 if (ch == '\n')
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001450 i->promptme = 1;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001451#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001452 return ch;
1453}
1454
1455/* All the callers guarantee this routine will never be
1456 * used right after a newline, so prompting is not needed.
1457 */
1458static int file_peek(struct in_str *i)
1459{
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00001460 int ch;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001461 if (i->p && *i->p) {
1462 if (i->eof_flag && !i->p[1])
1463 return EOF;
1464 return *i->p;
Eric Andersen25f27032001-04-26 23:22:31 +00001465 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00001466 ch = fgetc(i->file);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001467 i->eof_flag = (ch == EOF);
1468 i->peek_buf[0] = ch;
1469 i->peek_buf[1] = '\0';
1470 i->p = i->peek_buf;
1471 debug_printf("file_peek: got a '%c' %d\n", *i->p, *i->p);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00001472 return ch;
Eric Andersen25f27032001-04-26 23:22:31 +00001473}
1474
1475static void setup_file_in_str(struct in_str *i, FILE *f)
1476{
1477 i->peek = file_peek;
1478 i->get = file_get;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001479#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001480 i->promptme = 1;
1481 i->promptmode = 0; /* PS1 */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001482#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001483 i->file = f;
1484 i->p = NULL;
1485}
1486
1487static void setup_string_in_str(struct in_str *i, const char *s)
1488{
1489 i->peek = static_peek;
1490 i->get = static_get;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001491#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001492 i->promptme = 1;
1493 i->promptmode = 0; /* PS1 */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001494#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001495 i->p = s;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001496 i->eof_flag = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00001497}
1498
Eric Andersen25f27032001-04-26 23:22:31 +00001499/* squirrel != NULL means we squirrel away copies of stdin, stdout,
1500 * and stderr if they are redirected. */
1501static int setup_redirects(struct child_prog *prog, int squirrel[])
1502{
1503 int openfd, mode;
1504 struct redir_struct *redir;
1505
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001506 for (redir = prog->redirects; redir; redir = redir->next) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001507 if (redir->dup == -1 && redir->glob_word == NULL) {
Eric Andersen817e73c2001-06-06 17:56:09 +00001508 /* something went wrong in the parse. Pretend it didn't happen */
1509 continue;
1510 }
Eric Andersen25f27032001-04-26 23:22:31 +00001511 if (redir->dup == -1) {
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00001512 char *p;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001513 mode = redir_table[redir->type].mode;
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00001514 p = expand_string_to_string(redir->glob_word[0]);
1515 openfd = open_or_warn(p, mode);
1516 free(p);
Eric Andersen25f27032001-04-26 23:22:31 +00001517 if (openfd < 0) {
1518 /* this could get lost if stderr has been redirected, but
1519 bash and ash both lose it as well (though zsh doesn't!) */
Eric Andersen25f27032001-04-26 23:22:31 +00001520 return 1;
1521 }
1522 } else {
1523 openfd = redir->dup;
1524 }
1525
1526 if (openfd != redir->fd) {
1527 if (squirrel && redir->fd < 3) {
1528 squirrel[redir->fd] = dup(redir->fd);
1529 }
Eric Andersen83a2ae22001-05-07 17:59:25 +00001530 if (openfd == -3) {
Denis Vlasenko8412d792007-10-01 09:59:47 +00001531 //close(openfd); // close(-3) ??!
Eric Andersen83a2ae22001-05-07 17:59:25 +00001532 } else {
1533 dup2(openfd, redir->fd);
Matt Kraaic616e532001-06-05 16:50:08 +00001534 if (redir->dup == -1)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001535 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00001536 }
Eric Andersen25f27032001-04-26 23:22:31 +00001537 }
1538 }
1539 return 0;
1540}
1541
1542static void restore_redirects(int squirrel[])
1543{
1544 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001545 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00001546 fd = squirrel[i];
1547 if (fd != -1) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00001548 /* We simply die on error */
1549 xmove_fd(fd, i);
Eric Andersen25f27032001-04-26 23:22:31 +00001550 }
1551 }
1552}
1553
Denis Vlasenko05743d72008-02-10 12:10:08 +00001554/* Called after [v]fork() in run_pipe(), or from builtin_exec().
Denis Vlasenko8412d792007-10-01 09:59:47 +00001555 * Never returns.
1556 * XXX no exit() here. If you don't exec, use _exit instead.
Eric Andersen94ac2442001-05-22 19:05:18 +00001557 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00001558 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenko76d50412008-06-10 16:19:39 +00001559static void pseudo_exec_argv(char **ptrs2free, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00001560{
Eric Andersen78a7c992001-05-15 16:30:25 +00001561 int i, rcode;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001562 char *p;
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +00001563 const struct built_in_command *x;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00001564
Denis Vlasenko1359da62007-04-21 23:27:30 +00001565 for (i = 0; is_assignment(argv[i]); i++) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001566 debug_printf_exec("pid %d environment modification: %s\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001567 getpid(), argv[i]);
Denis Vlasenko170435c2007-05-23 13:01:10 +00001568 p = expand_string_to_string(argv[i]);
Denis Vlasenko76d50412008-06-10 16:19:39 +00001569#if !BB_MMU
1570 *ptrs2free++ = p;
1571#endif
Denis Vlasenko170435c2007-05-23 13:01:10 +00001572 putenv(p);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001573 }
1574 argv += i;
1575 /* If a variable is assigned in a forest, and nobody listens,
1576 * was it ever really set?
1577 */
Denis Vlasenko05743d72008-02-10 12:10:08 +00001578 if (!argv[0])
Denis Vlasenko1359da62007-04-21 23:27:30 +00001579 _exit(EXIT_SUCCESS);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00001580
Denis Vlasenko170435c2007-05-23 13:01:10 +00001581 argv = expand_strvec_to_strvec(argv);
Denis Vlasenko76d50412008-06-10 16:19:39 +00001582#if !BB_MMU
1583 *ptrs2free++ = (char*) argv;
1584#endif
Denis Vlasenko764d59d2007-05-14 16:23:23 +00001585
Denis Vlasenko1359da62007-04-21 23:27:30 +00001586 /*
1587 * Check if the command matches any of the builtins.
1588 * Depending on context, this might be redundant. But it's
1589 * easier to waste a few CPU cycles than it is to figure out
1590 * if this is one of those cases.
1591 */
Denis Vlasenkodd316dd2008-06-14 15:50:55 +00001592 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
Denis Vlasenko1359da62007-04-21 23:27:30 +00001593 if (strcmp(argv[0], x->cmd) == 0) {
Denis Vlasenko764d59d2007-05-14 16:23:23 +00001594 debug_printf_exec("running builtin '%s'\n", argv[0]);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001595 rcode = x->function(argv);
1596 fflush(stdout);
1597 _exit(rcode);
Eric Andersen94ac2442001-05-22 19:05:18 +00001598 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001599 }
Eric Andersen78a7c992001-05-15 16:30:25 +00001600
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001601 /* Check if the command matches any busybox applets */
Denis Vlasenko80d14be2007-04-10 23:03:30 +00001602#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001603 if (strchr(argv[0], '/') == NULL) {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00001604 int a = find_applet_by_name(argv[0]);
1605 if (a >= 0) {
1606 if (APPLET_IS_NOEXEC(a)) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001607 debug_printf_exec("running applet '%s'\n", argv[0]);
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00001608// is it ok that run_applet_no_and_exit() does exit(), not _exit()?
1609 run_applet_no_and_exit(a, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001610 }
1611 /* re-exec ourselves with the new arguments */
1612 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denis Vlasenkobdbbb7e2007-06-08 15:02:55 +00001613 execvp(bb_busybox_exec_path, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001614 /* If they called chroot or otherwise made the binary no longer
1615 * executable, fall through */
1616 }
1617 }
Eric Andersenaac75e52001-04-30 18:18:45 +00001618#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001619
1620 debug_printf_exec("execing '%s'\n", argv[0]);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001621 execvp(argv[0], argv);
1622 bb_perror_msg("cannot exec '%s'", argv[0]);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001623 _exit(EXIT_FAILURE);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001624}
1625
Denis Vlasenko05743d72008-02-10 12:10:08 +00001626/* Called after [v]fork() in run_pipe()
Denis Vlasenko8412d792007-10-01 09:59:47 +00001627 */
Denis Vlasenko76d50412008-06-10 16:19:39 +00001628static void pseudo_exec(char **ptrs2free, struct child_prog *child)
Denis Vlasenko1359da62007-04-21 23:27:30 +00001629{
Denis Vlasenko05743d72008-02-10 12:10:08 +00001630 if (child->argv)
Denis Vlasenko76d50412008-06-10 16:19:39 +00001631 pseudo_exec_argv(ptrs2free, child->argv);
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001632
1633 if (child->group) {
Denis Vlasenko8412d792007-10-01 09:59:47 +00001634#if !BB_MMU
Denis Vlasenko3b492162007-12-24 14:26:57 +00001635 bb_error_msg_and_die("nested lists are not supported on NOMMU");
Denis Vlasenko8412d792007-10-01 09:59:47 +00001636#else
Denis Vlasenko3b492162007-12-24 14:26:57 +00001637 int rcode;
1638
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001639#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko05743d72008-02-10 12:10:08 +00001640// run_list_level now takes care of it?
1641// debug_printf_exec("pseudo_exec: setting interactive_fd=0\n");
1642// interactive_fd = 0; /* crucial!!!! */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001643#endif
Denis Vlasenko05743d72008-02-10 12:10:08 +00001644 debug_printf_exec("pseudo_exec: run_list\n");
1645 rcode = run_list(child->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00001646 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00001647 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00001648 _exit(rcode);
Denis Vlasenko8412d792007-10-01 09:59:47 +00001649#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001650 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001651
1652 /* Can happen. See what bash does with ">foo" by itself. */
1653 debug_printf("trying to pseudo_exec null command\n");
1654 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00001655}
1656
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001657#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001658static const char *get_cmdtext(struct pipe *pi)
1659{
1660 char **argv;
1661 char *p;
1662 int len;
1663
1664 /* This is subtle. ->cmdtext is created only on first backgrounding.
1665 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001666 * On subsequent bg argv is trashed, but we won't use it */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001667 if (pi->cmdtext)
1668 return pi->cmdtext;
1669 argv = pi->progs[0].argv;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00001670 if (!argv || !argv[0]) {
1671 pi->cmdtext = xzalloc(1);
1672 return pi->cmdtext;
1673 }
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001674
1675 len = 0;
1676 do len += strlen(*argv) + 1; while (*++argv);
1677 pi->cmdtext = p = xmalloc(len);
1678 argv = pi->progs[0].argv;
1679 do {
1680 len = strlen(*argv);
1681 memcpy(p, *argv, len);
1682 p += len;
1683 *p++ = ' ';
1684 } while (*++argv);
1685 p[-1] = '\0';
1686 return pi->cmdtext;
1687}
1688
Eric Andersenbafd94f2001-05-02 16:11:59 +00001689static void insert_bg_job(struct pipe *pi)
1690{
1691 struct pipe *thejob;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001692 int i;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001693
1694 /* Linear search for the ID of the job to use */
1695 pi->jobid = 1;
Eric Andersenc798b072001-06-22 06:23:03 +00001696 for (thejob = job_list; thejob; thejob = thejob->next)
Eric Andersenbafd94f2001-05-02 16:11:59 +00001697 if (thejob->jobid >= pi->jobid)
1698 pi->jobid = thejob->jobid + 1;
1699
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001700 /* Add thejob to the list of running jobs */
Eric Andersenc798b072001-06-22 06:23:03 +00001701 if (!job_list) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001702 thejob = job_list = xmalloc(sizeof(*thejob));
Eric Andersenbafd94f2001-05-02 16:11:59 +00001703 } else {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001704 for (thejob = job_list; thejob->next; thejob = thejob->next)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001705 continue;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001706 thejob->next = xmalloc(sizeof(*thejob));
1707 thejob = thejob->next;
1708 }
1709
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001710 /* Physically copy the struct job */
Eric Andersen0fcd4472001-05-02 20:12:03 +00001711 memcpy(thejob, pi, sizeof(struct pipe));
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001712 thejob->progs = xzalloc(sizeof(pi->progs[0]) * pi->num_progs);
1713 /* We cannot copy entire pi->progs[] vector! Double free()s will happen */
1714 for (i = 0; i < pi->num_progs; i++) {
1715// TODO: do we really need to have so many fields which are just dead weight
1716// at execution stage?
1717 thejob->progs[i].pid = pi->progs[i].pid;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001718 /* all other fields are not used and stay zero */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001719 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00001720 thejob->next = NULL;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001721 thejob->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00001722
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001723 /* We don't wait for background thejobs to return -- append it
Eric Andersenbafd94f2001-05-02 16:11:59 +00001724 to the list of backgrounded thejobs and leave it alone */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001725 printf("[%d] %d %s\n", thejob->jobid, thejob->progs[0].pid, thejob->cmdtext);
Eric Andersen1a6d39b2001-05-08 05:11:54 +00001726 last_bg_pid = thejob->progs[0].pid;
Eric Andersenc798b072001-06-22 06:23:03 +00001727 last_jobid = thejob->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001728}
1729
Eric Andersenbafd94f2001-05-02 16:11:59 +00001730static void remove_bg_job(struct pipe *pi)
1731{
1732 struct pipe *prev_pipe;
1733
Eric Andersenc798b072001-06-22 06:23:03 +00001734 if (pi == job_list) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001735 job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001736 } else {
Eric Andersenc798b072001-06-22 06:23:03 +00001737 prev_pipe = job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001738 while (prev_pipe->next != pi)
1739 prev_pipe = prev_pipe->next;
1740 prev_pipe->next = pi->next;
1741 }
Eric Andersen028b65b2001-06-28 01:10:11 +00001742 if (job_list)
1743 last_jobid = job_list->jobid;
1744 else
1745 last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001746}
Eric Andersen028b65b2001-06-28 01:10:11 +00001747
Denis Vlasenko1359da62007-04-21 23:27:30 +00001748/* remove a backgrounded job */
1749static void delete_finished_bg_job(struct pipe *pi)
1750{
1751 remove_bg_job(pi);
Eric Andersen52a97ca2001-06-22 06:49:26 +00001752 pi->stopped_progs = 0;
Eric Andersenbf7df042001-05-23 22:18:35 +00001753 free_pipe(pi, 0);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001754 free(pi);
1755}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001756#endif /* JOB */
Eric Andersenbafd94f2001-05-02 16:11:59 +00001757
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001758/* Checks to see if any processes have exited -- if they
Eric Andersenbafd94f2001-05-02 16:11:59 +00001759 have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00001760static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00001761{
Eric Andersenc798b072001-06-22 06:23:03 +00001762 int attributes;
1763 int status;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001764#if ENABLE_HUSH_JOB
Eric Andersenbafd94f2001-05-02 16:11:59 +00001765 int prognum = 0;
1766 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001767#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00001768 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001769 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001770
Eric Andersenc798b072001-06-22 06:23:03 +00001771 attributes = WUNTRACED;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001772 if (fg_pipe == NULL) {
Eric Andersenc798b072001-06-22 06:23:03 +00001773 attributes |= WNOHANG;
1774 }
1775
Denis Vlasenko1359da62007-04-21 23:27:30 +00001776/* Do we do this right?
1777 * bash-3.00# sleep 20 | false
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001778 * <ctrl-Z pressed>
Denis Vlasenko1359da62007-04-21 23:27:30 +00001779 * [3]+ Stopped sleep 20 | false
1780 * bash-3.00# echo $?
1781 * 1 <========== bg pipe is not fully done, but exitcode is already known!
1782 */
1783
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001784//FIXME: non-interactive bash does not continue even if all processes in fg pipe
1785//are stopped. Testcase: "cat | cat" in a script (not on command line)
1786// + killall -STOP cat
1787
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001788 wait_more:
Denis Vlasenkofb0eba72008-01-02 19:55:04 +00001789// TODO: safe_waitpid?
Eric Andersenc798b072001-06-22 06:23:03 +00001790 while ((childpid = waitpid(-1, &status, attributes)) > 0) {
Denis Vlasenko1359da62007-04-21 23:27:30 +00001791 const int dead = WIFEXITED(status) || WIFSIGNALED(status);
1792
1793#ifdef DEBUG_SHELL_JOBS
1794 if (WIFSTOPPED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001795 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001796 childpid, WSTOPSIG(status), WEXITSTATUS(status));
1797 if (WIFSIGNALED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001798 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001799 childpid, WTERMSIG(status), WEXITSTATUS(status));
1800 if (WIFEXITED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001801 debug_printf_jobs("pid %d exited, exitcode %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001802 childpid, WEXITSTATUS(status));
1803#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001804 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00001805 if (fg_pipe) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001806 int i;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001807 for (i = 0; i < fg_pipe->num_progs; i++) {
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001808 debug_printf_jobs("check pid %d\n", fg_pipe->progs[i].pid);
Eric Andersenc798b072001-06-22 06:23:03 +00001809 if (fg_pipe->progs[i].pid == childpid) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001810 /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001811 if (dead) {
1812 fg_pipe->progs[i].pid = 0;
1813 fg_pipe->running_progs--;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00001814 if (i == fg_pipe->num_progs - 1) {
Denis Vlasenko1359da62007-04-21 23:27:30 +00001815 /* last process gives overall exitstatus */
1816 rcode = WEXITSTATUS(status);
Denis Vlasenkoa8442002008-06-14 11:00:17 +00001817 if (fg_pipe->pi_inverted)
1818 rcode = !rcode;
1819 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001820 } else {
1821 fg_pipe->progs[i].is_stopped = 1;
1822 fg_pipe->stopped_progs++;
1823 }
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001824 debug_printf_jobs("fg_pipe: running_progs %d stopped_progs %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001825 fg_pipe->running_progs, fg_pipe->stopped_progs);
1826 if (fg_pipe->running_progs - fg_pipe->stopped_progs <= 0) {
1827 /* All processes in fg pipe have exited/stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001828#if ENABLE_HUSH_JOB
Denis Vlasenko1359da62007-04-21 23:27:30 +00001829 if (fg_pipe->running_progs)
1830 insert_bg_job(fg_pipe);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001831#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001832 return rcode;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001833 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001834 /* There are still running processes in the fg pipe */
1835 goto wait_more;
Eric Andersenc798b072001-06-22 06:23:03 +00001836 }
1837 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001838 /* fall through to searching process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00001839 }
1840
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001841#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001842 /* We asked to wait for bg or orphaned children */
1843 /* No need to remember exitcode in this case */
Eric Andersenc798b072001-06-22 06:23:03 +00001844 for (pi = job_list; pi; pi = pi->next) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00001845 prognum = 0;
Denis Vlasenko5f786c22007-04-20 08:35:45 +00001846 while (prognum < pi->num_progs) {
1847 if (pi->progs[prognum].pid == childpid)
1848 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00001849 prognum++;
1850 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00001851 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001852#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00001853
Denis Vlasenko5f786c22007-04-20 08:35:45 +00001854 /* Happens when shell is used as init process (init=/bin/sh) */
1855 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001856 goto wait_more;
Eric Andersenaeb44c42001-05-22 20:29:00 +00001857
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001858#if ENABLE_HUSH_JOB
Denis Vlasenko5f786c22007-04-20 08:35:45 +00001859 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00001860 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00001861 /* child exited */
Eric Andersenbafd94f2001-05-02 16:11:59 +00001862 pi->progs[prognum].pid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001863 pi->running_progs--;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001864 if (!pi->running_progs) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001865 printf(JOB_STATUS_FORMAT, pi->jobid,
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001866 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001867 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001868 }
1869 } else {
1870 /* child stopped */
1871 pi->stopped_progs++;
1872 pi->progs[prognum].is_stopped = 1;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001873 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001874#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00001875 }
1876
Denis Vlasenko1359da62007-04-21 23:27:30 +00001877 /* wait found no children or failed */
1878
1879 if (childpid && errno != ECHILD)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001880 bb_perror_msg("waitpid");
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001881 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00001882}
1883
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001884#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +00001885static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
1886{
1887 pid_t p;
1888 int rcode = checkjobs(fg_pipe);
1889 /* Job finished, move the shell to the foreground */
Denis Vlasenko170435c2007-05-23 13:01:10 +00001890 p = getpgid(0); /* pgid of our process */
1891 debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p);
Denis Vlasenko52881e92007-04-21 13:42:52 +00001892 if (tcsetpgrp(interactive_fd, p) && errno != ENOTTY)
1893 bb_perror_msg("tcsetpgrp-4a");
1894 return rcode;
1895}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001896#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00001897
Denis Vlasenko05743d72008-02-10 12:10:08 +00001898/* run_pipe() starts all the jobs, but doesn't wait for anything
Eric Andersenc798b072001-06-22 06:23:03 +00001899 * to finish. See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00001900 *
1901 * return code is normally -1, when the caller has to wait for children
1902 * to finish to determine the exit status of the pipe. If the pipe
1903 * is a simple builtin command, however, the action is done by the
Denis Vlasenko05743d72008-02-10 12:10:08 +00001904 * time run_pipe returns, and the exit code is provided as the
Eric Andersen25f27032001-04-26 23:22:31 +00001905 * return value.
1906 *
1907 * The input of the pipe is always stdin, the output is always
1908 * stdout. The outpipe[] mechanism in BusyBox-0.48 lash is bogus,
1909 * because it tries to avoid running the command substitution in
1910 * subshell, when that is in fact necessary. The subshell process
1911 * now has its stdout directed to the input of the appropriate pipe,
1912 * so this routine is noticeably simpler.
Denis Vlasenko170435c2007-05-23 13:01:10 +00001913 *
1914 * Returns -1 only if started some children. IOW: we have to
1915 * mask out retvals of builtins etc with 0xff!
Eric Andersen25f27032001-04-26 23:22:31 +00001916 */
Denis Vlasenko05743d72008-02-10 12:10:08 +00001917static int run_pipe(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00001918{
1919 int i;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00001920 int nextin;
1921 int pipefds[2]; /* pipefds[0] is for reading */
Rob Landley53702e52006-07-19 21:43:53 +00001922 struct child_prog *child;
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +00001923 const struct built_in_command *x;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001924 char *p;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001925 /* it is not always needed, but we aim to smaller code */
1926 int squirrel[] = { -1, -1, -1 };
1927 int rcode;
Denis Vlasenko52881e92007-04-21 13:42:52 +00001928 const int single_fg = (pi->num_progs == 1 && pi->followup != PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00001929
Denis Vlasenko05743d72008-02-10 12:10:08 +00001930 debug_printf_exec("run_pipe start: single_fg=%d\n", single_fg);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00001931
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001932#if ENABLE_HUSH_JOB
Eric Andersenada18ff2001-05-21 16:18:22 +00001933 pi->pgrp = -1;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001934#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001935 pi->running_progs = 1;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001936 pi->stopped_progs = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00001937
1938 /* Check if this is a simple builtin (not part of a pipe).
1939 * Builtins within pipes have to fork anyway, and are handled in
1940 * pseudo_exec. "echo foo | read bar" doesn't work on bash, either.
1941 */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001942 child = &(pi->progs[0]);
Denis Vlasenko52881e92007-04-21 13:42:52 +00001943 if (single_fg && child->group && child->subshell == 0) {
Eric Andersen04407e52001-06-07 16:42:05 +00001944 debug_printf("non-subshell grouping\n");
1945 setup_redirects(child, squirrel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00001946 debug_printf_exec(": run_list\n");
1947 rcode = run_list(child->group) & 0xff;
Eric Andersen04407e52001-06-07 16:42:05 +00001948 restore_redirects(squirrel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00001949 debug_printf_exec("run_pipe return %d\n", rcode);
Denis Vlasenkoa8442002008-06-14 11:00:17 +00001950 if (pi->pi_inverted)
1951 rcode = !rcode;
Denis Vlasenko05743d72008-02-10 12:10:08 +00001952 return rcode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001953 }
1954
Denis Vlasenko1359da62007-04-21 23:27:30 +00001955 if (single_fg && child->argv != NULL) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001956 char **argv_expanded;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001957 char **argv = child->argv;
1958
1959 for (i = 0; is_assignment(argv[i]); i++)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001960 continue;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001961 if (i != 0 && argv[i] == NULL) {
Eric Andersen78a7c992001-05-15 16:30:25 +00001962 /* assignments, but no command: set the local environment */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001963 for (i = 0; argv[i] != NULL; i++) {
Denis Vlasenkod76c0492007-05-25 02:16:25 +00001964 debug_printf("local environment set: %s\n", argv[i]);
Denis Vlasenko170435c2007-05-23 13:01:10 +00001965 p = expand_string_to_string(argv[i]);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00001966 set_local_var(p, 0);
Eric Andersen78a7c992001-05-15 16:30:25 +00001967 }
1968 return EXIT_SUCCESS; /* don't worry about errors in set_local_var() yet */
1969 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001970 for (i = 0; is_assignment(argv[i]); i++) {
Denis Vlasenko170435c2007-05-23 13:01:10 +00001971 p = expand_string_to_string(argv[i]);
Denis Vlasenko170435c2007-05-23 13:01:10 +00001972 putenv(p);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001973 }
Denis Vlasenkodd316dd2008-06-14 15:50:55 +00001974 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
Denis Vlasenko1359da62007-04-21 23:27:30 +00001975 if (strcmp(argv[i], x->cmd) == 0) {
1976 if (x->function == builtin_exec && argv[i+1] == NULL) {
Eric Andersen83a2ae22001-05-07 17:59:25 +00001977 debug_printf("magic exec\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001978 setup_redirects(child, NULL);
Eric Andersen83a2ae22001-05-07 17:59:25 +00001979 return EXIT_SUCCESS;
1980 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001981 debug_printf("builtin inline %s\n", argv[0]);
Eric Andersen25f27032001-04-26 23:22:31 +00001982 /* XXX setup_redirects acts on file descriptors, not FILEs.
1983 * This is perfect for work that comes after exec().
1984 * Is it really safe for inline use? Experimentally,
1985 * things seem to work with glibc. */
1986 setup_redirects(child, squirrel);
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001987 debug_printf_exec(": builtin '%s' '%s'...\n", x->cmd, argv[i+1]);
Denis Vlasenko170435c2007-05-23 13:01:10 +00001988 argv_expanded = expand_strvec_to_strvec(argv + i);
1989 rcode = x->function(argv_expanded) & 0xff;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001990 free(argv_expanded);
Eric Andersen25f27032001-04-26 23:22:31 +00001991 restore_redirects(squirrel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00001992 debug_printf_exec("run_pipe return %d\n", rcode);
Denis Vlasenkoa8442002008-06-14 11:00:17 +00001993 if (pi->pi_inverted)
1994 rcode = !rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00001995 return rcode;
1996 }
1997 }
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001998#if ENABLE_FEATURE_SH_STANDALONE
1999 {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002000 int a = find_applet_by_name(argv[i]);
2001 if (a >= 0 && APPLET_IS_NOFORK(a)) {
Denis Vlasenkof5294e12007-04-14 10:09:57 +00002002 setup_redirects(child, squirrel);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002003 save_nofork_data(&nofork_save);
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002004 argv_expanded = argv + i;
Denis Vlasenko170435c2007-05-23 13:01:10 +00002005 argv_expanded = expand_strvec_to_strvec(argv + i);
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002006 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n", argv_expanded[0], argv_expanded[1]);
Denis Vlasenko7465dbc2008-04-13 02:25:53 +00002007 rcode = run_nofork_applet_prime(&nofork_save, a, argv_expanded);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002008 free(argv_expanded);
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002009 restore_redirects(squirrel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00002010 debug_printf_exec("run_pipe return %d\n", rcode);
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002011 if (pi->pi_inverted)
2012 rcode = !rcode;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002013 return rcode;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00002014 }
2015 }
2016#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002017 }
2018
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002019 /* Disable job control signals for shell (parent) and
2020 * for initial child code after fork */
2021 set_jobctrl_sighandler(SIG_IGN);
2022
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002023 /* Going to fork a child per each pipe member */
2024 pi->running_progs = 0;
2025 nextin = 0;
2026
Eric Andersen25f27032001-04-26 23:22:31 +00002027 for (i = 0; i < pi->num_progs; i++) {
Denis Vlasenko76d50412008-06-10 16:19:39 +00002028#if !BB_MMU
2029 char **ptrs2free = NULL;
2030#endif
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002031 child = &(pi->progs[i]);
Denis Vlasenko76d50412008-06-10 16:19:39 +00002032 if (child->argv) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002033 debug_printf_exec(": pipe member '%s' '%s'...\n", child->argv[0], child->argv[1]);
Denis Vlasenko76d50412008-06-10 16:19:39 +00002034#if !BB_MMU
2035 ptrs2free = alloc_ptrs(child->argv);
2036#endif
2037 } else
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002038 debug_printf_exec(": pipe member with no argv\n");
Eric Andersen25f27032001-04-26 23:22:31 +00002039
2040 /* pipes are inserted between pairs of commands */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002041 pipefds[0] = 0;
2042 pipefds[1] = 1;
2043 if ((i + 1) < pi->num_progs)
2044 xpipe(pipefds);
Eric Andersen25f27032001-04-26 23:22:31 +00002045
Denis Vlasenko05743d72008-02-10 12:10:08 +00002046 child->pid = BB_MMU ? fork() : vfork();
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002047 if (!child->pid) { /* child */
Denis Vlasenko83177992008-02-11 08:44:36 +00002048 if (ENABLE_HUSH_JOB)
2049 die_sleep = 0; /* let nofork's xfuncs die */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002050#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002051 /* Every child adds itself to new process group
Denis Vlasenko05743d72008-02-10 12:10:08 +00002052 * with pgid == pid_of_first_child_in_pipe */
Denis Vlasenko170435c2007-05-23 13:01:10 +00002053 if (run_list_level == 1 && interactive_fd) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00002054 pid_t pgrp;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002055 /* Don't do pgrp restore anymore on fatal signals */
2056 set_fatal_sighandler(SIG_DFL);
Denis Vlasenko05743d72008-02-10 12:10:08 +00002057 pgrp = pi->pgrp;
2058 if (pgrp < 0) /* true for 1st process only */
2059 pgrp = getpid();
2060 if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002061 /* We do it in *every* child, not just first,
2062 * to avoid races */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002063 tcsetpgrp(interactive_fd, pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002064 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002065 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002066#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +00002067 xmove_fd(nextin, 0);
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002068 xmove_fd(pipefds[1], 1); /* write end */
2069 if (pipefds[0] > 1)
2070 close(pipefds[0]); /* read end */
Eric Andersen25f27032001-04-26 23:22:31 +00002071 /* Like bash, explicit redirects override pipes,
2072 * and the pipe fd is available for dup'ing. */
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002073 setup_redirects(child, NULL);
Eric Andersen52a97ca2001-06-22 06:49:26 +00002074
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002075 /* Restore default handlers just prior to exec */
2076 set_jobctrl_sighandler(SIG_DFL);
2077 set_misc_sighandler(SIG_DFL);
2078 signal(SIGCHLD, SIG_DFL);
Denis Vlasenko76d50412008-06-10 16:19:39 +00002079 pseudo_exec(ptrs2free, child); /* does not return */
Eric Andersen25f27032001-04-26 23:22:31 +00002080 }
Denis Vlasenko76d50412008-06-10 16:19:39 +00002081#if !BB_MMU
2082 free_strings(ptrs2free);
2083#endif
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002084 if (child->pid < 0) { /* [v]fork failed */
2085 /* Clearly indicate, was it fork or vfork */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002086 bb_perror_msg(BB_MMU ? "fork" : "vfork");
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002087 } else {
2088 pi->running_progs++;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002089#if ENABLE_HUSH_JOB
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002090 /* Second and next children need to know pid of first one */
2091 if (pi->pgrp < 0)
2092 pi->pgrp = child->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002093#endif
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002094 }
Eric Andersen25f27032001-04-26 23:22:31 +00002095
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002096 if (i)
2097 close(nextin);
2098 if ((i + 1) < pi->num_progs)
2099 close(pipefds[1]); /* write end */
2100 /* Pass read (output) pipe end to next iteration */
Eric Andersen25f27032001-04-26 23:22:31 +00002101 nextin = pipefds[0];
2102 }
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002103
Denis Vlasenko05743d72008-02-10 12:10:08 +00002104 if (!pi->running_progs) {
2105 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
2106 return 1;
2107 }
2108
2109 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->running_progs);
Eric Andersen25f27032001-04-26 23:22:31 +00002110 return -1;
2111}
2112
Denis Vlasenko4b924f32007-05-30 00:29:55 +00002113#ifndef debug_print_tree
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002114static void debug_print_tree(struct pipe *pi, int lvl)
2115{
2116 static const char *PIPE[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002117 [PIPE_SEQ] = "SEQ",
2118 [PIPE_AND] = "AND",
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002119 [PIPE_OR ] = "OR" ,
2120 [PIPE_BG ] = "BG" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002121 };
2122 static const char *RES[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002123 [RES_NONE ] = "NONE" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00002124#if ENABLE_HUSH_IF
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002125 [RES_IF ] = "IF" ,
2126 [RES_THEN ] = "THEN" ,
2127 [RES_ELIF ] = "ELIF" ,
2128 [RES_ELSE ] = "ELSE" ,
2129 [RES_FI ] = "FI" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00002130#endif
2131#if ENABLE_HUSH_LOOPS
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002132 [RES_FOR ] = "FOR" ,
2133 [RES_WHILE] = "WHILE",
2134 [RES_UNTIL] = "UNTIL",
2135 [RES_DO ] = "DO" ,
2136 [RES_DONE ] = "DONE" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002137 [RES_IN ] = "IN" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00002138#endif
2139 [RES_XXXX ] = "XXXX" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002140 [RES_SNTX ] = "SNTX" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002141 };
2142
2143 int pin, prn;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002144
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002145 pin = 0;
2146 while (pi) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002147 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
2148 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002149 prn = 0;
2150 while (prn < pi->num_progs) {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002151 struct child_prog *child = &pi->progs[prn];
2152 char **argv = child->argv;
2153
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002154 fprintf(stderr, "%*s prog %d", lvl*2, "", prn);
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002155 if (child->group) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002156 fprintf(stderr, " group %s: (argv=%p)\n",
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002157 (child->subshell ? "()" : "{}"),
2158 argv);
2159 debug_print_tree(child->group, lvl+1);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002160 prn++;
2161 continue;
2162 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002163 if (argv) while (*argv) {
2164 fprintf(stderr, " '%s'", *argv);
2165 argv++;
Denis Vlasenko4b924f32007-05-30 00:29:55 +00002166 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002167 fprintf(stderr, "\n");
2168 prn++;
2169 }
2170 pi = pi->next;
2171 pin++;
2172 }
2173}
2174#endif
2175
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002176/* NB: called by pseudo_exec, and therefore must not modify any
2177 * global data until exec/_exit (we can be a child after vfork!) */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002178static int run_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00002179{
Denis Vlasenko06810332007-05-21 23:30:54 +00002180 struct pipe *rpipe;
2181#if ENABLE_HUSH_LOOPS
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002182 char *for_varname = NULL;
2183 char **for_lcur = NULL;
2184 char **for_list = NULL;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002185 int flag_rep = 0;
Denis Vlasenko06810332007-05-21 23:30:54 +00002186#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002187 int flag_skip = 1;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002188 int rcode = 0; /* probably for gcc only */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002189 int flag_restore = 0;
Denis Vlasenko06810332007-05-21 23:30:54 +00002190#if ENABLE_HUSH_IF
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002191 int if_code = 0, next_if_code = 0; /* need double-buffer to handle elif */
Denis Vlasenko06810332007-05-21 23:30:54 +00002192#else
2193 enum { if_code = 0, next_if_code = 0 };
2194#endif
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002195 reserved_style rword;
2196 reserved_style skip_more_for_this_rword = RES_XXXX;
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00002197
Denis Vlasenko05743d72008-02-10 12:10:08 +00002198 debug_printf_exec("run_list start lvl %d\n", run_list_level + 1);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00002199
Denis Vlasenko06810332007-05-21 23:30:54 +00002200#if ENABLE_HUSH_LOOPS
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002201 /* check syntax for "for" */
2202 for (rpipe = pi; rpipe; rpipe = rpipe->next) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002203 if ((rpipe->res_word == RES_IN || rpipe->res_word == RES_FOR)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002204 && (rpipe->next == NULL)
2205 ) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00002206 syntax("malformed for"); /* no IN or no commands after IN */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002207 debug_printf_exec("run_list lvl %d return 1\n", run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002208 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002209 }
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002210 if ((rpipe->res_word == RES_IN && rpipe->next->res_word == RES_IN && rpipe->next->progs[0].argv != NULL)
2211 || (rpipe->res_word == RES_FOR && rpipe->next->res_word != RES_IN)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002212 ) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002213 /* TODO: what is tested in the first condition? */
Denis Vlasenko90e485c2007-05-23 15:22:50 +00002214 syntax("malformed for"); /* 2nd condition: not followed by IN */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002215 debug_printf_exec("run_list lvl %d return 1\n", run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002216 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002217 }
2218 }
Denis Vlasenko06810332007-05-21 23:30:54 +00002219#else
2220 rpipe = NULL;
2221#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002222
2223#if ENABLE_HUSH_JOB
2224 /* Example of nested list: "while true; do { sleep 1 | exit 2; } done".
2225 * We are saving state before entering outermost list ("while...done")
2226 * so that ctrl-Z will correctly background _entire_ outermost list,
2227 * not just a part of it (like "sleep 1 | exit 2") */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00002228 if (++run_list_level == 1 && interactive_fd) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002229 if (sigsetjmp(toplevel_jb, 1)) {
2230 /* ctrl-Z forked and we are parent; or ctrl-C.
2231 * Sighandler has longjmped us here */
2232 signal(SIGINT, SIG_IGN);
2233 signal(SIGTSTP, SIG_IGN);
2234 /* Restore level (we can be coming from deep inside
2235 * nested levels) */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00002236 run_list_level = 1;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002237#if ENABLE_FEATURE_SH_STANDALONE
2238 if (nofork_save.saved) { /* if save area is valid */
2239 debug_printf_jobs("exiting nofork early\n");
2240 restore_nofork_data(&nofork_save);
2241 }
2242#endif
2243 if (ctrl_z_flag) {
2244 /* ctrl-Z has forked and stored pid of the child in pi->pid.
2245 * Remember this child as background job */
2246 insert_bg_job(pi);
2247 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002248 /* ctrl-C. We just stop doing whatever we were doing */
Denis Vlasenko4daad902007-09-27 10:20:47 +00002249 bb_putchar('\n');
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002250 }
2251 rcode = 0;
2252 goto ret;
2253 }
2254 /* ctrl-Z handler will store pid etc in pi */
2255 toplevel_list = pi;
2256 ctrl_z_flag = 0;
2257#if ENABLE_FEATURE_SH_STANDALONE
2258 nofork_save.saved = 0; /* in case we will run a nofork later */
2259#endif
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00002260 signal_SA_RESTART_empty_mask(SIGTSTP, handler_ctrl_z);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002261 signal(SIGINT, handler_ctrl_c);
2262 }
Denis Vlasenko05743d72008-02-10 12:10:08 +00002263#endif /* JOB */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002264
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002265 for (; pi; pi = flag_restore ? rpipe : pi->next) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00002266//why? int save_num_progs;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002267 rword = pi->res_word;
Denis Vlasenko06810332007-05-21 23:30:54 +00002268#if ENABLE_HUSH_LOOPS
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002269 if (rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002270 flag_restore = 0;
2271 if (!rpipe) {
2272 flag_rep = 0;
2273 rpipe = pi;
2274 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002275 }
Denis Vlasenko06810332007-05-21 23:30:54 +00002276#endif
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002277 debug_printf_exec(": rword=%d if_code=%d next_if_code=%d skip_more=%d\n",
2278 rword, if_code, next_if_code, skip_more_for_this_rword);
2279 if (rword == skip_more_for_this_rword && flag_skip) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002280 if (pi->followup == PIPE_SEQ)
2281 flag_skip = 0;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002282 continue;
2283 }
2284 flag_skip = 1;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002285 skip_more_for_this_rword = RES_XXXX;
Denis Vlasenko06810332007-05-21 23:30:54 +00002286#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002287 if (rword == RES_THEN || rword == RES_ELSE)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002288 if_code = next_if_code;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002289 if (rword == RES_THEN && if_code)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002290 continue;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002291 if (rword == RES_ELSE && !if_code)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002292 continue;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002293 if (rword == RES_ELIF && !if_code)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002294 break;
Denis Vlasenko06810332007-05-21 23:30:54 +00002295#endif
2296#if ENABLE_HUSH_LOOPS
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002297 if (rword == RES_FOR && pi->num_progs) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002298 if (!for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002299 /* first loop through for */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002300 /* if no variable values after "in" we skip "for" */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002301 if (!pi->next->progs->argv)
2302 continue;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002303 /* create list of variable values */
Denis Vlasenko170435c2007-05-23 13:01:10 +00002304 for_list = expand_strvec_to_strvec(pi->next->progs->argv);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002305 for_lcur = for_list;
2306 for_varname = pi->progs->argv[0];
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002307 pi->progs->argv[0] = NULL;
2308 flag_rep = 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002309 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002310 free(pi->progs->argv[0]);
2311 if (!*for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002312 /* for loop is over, clean up */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002313 free(for_list);
2314 for_lcur = NULL;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002315 flag_rep = 0;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002316 pi->progs->argv[0] = for_varname;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002317 continue;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002318 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002319 /* insert next value from for_lcur */
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002320 /* vda: does it need escaping? */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002321 pi->progs->argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002322 }
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002323 if (rword == RES_IN)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002324 continue;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002325 if (rword == RES_DO) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002326 if (!flag_rep)
2327 continue;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002328 }
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002329 if (rword == RES_DONE) {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002330 if (flag_rep) {
2331 flag_restore = 1;
2332 } else {
2333 rpipe = NULL;
2334 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002335 }
Denis Vlasenko06810332007-05-21 23:30:54 +00002336#endif
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002337 if (pi->num_progs == 0)
2338 continue;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002339//why? save_num_progs = pi->num_progs;
2340 debug_printf_exec(": run_pipe with %d members\n", pi->num_progs);
2341 rcode = run_pipe(pi);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002342 if (rcode != -1) {
Eric Andersen25f27032001-04-26 23:22:31 +00002343 /* We only ran a builtin: rcode was set by the return value
Denis Vlasenko05743d72008-02-10 12:10:08 +00002344 * of run_pipe(), and we don't need to wait for anything. */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002345 } else if (pi->followup == PIPE_BG) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002346 /* What does bash do with attempts to background builtins? */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002347 /* Even bash 3.2 doesn't do that well with nested bg:
2348 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
Denis Vlasenko170435c2007-05-23 13:01:10 +00002349 * I'm NOT treating inner &'s as jobs */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002350#if ENABLE_HUSH_JOB
Denis Vlasenko4b924f32007-05-30 00:29:55 +00002351 if (run_list_level == 1)
Denis Vlasenko170435c2007-05-23 13:01:10 +00002352 insert_bg_job(pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002353#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002354 rcode = EXIT_SUCCESS;
2355 } else {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002356#if ENABLE_HUSH_JOB
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00002357 if (run_list_level == 1 && interactive_fd) {
Denis Vlasenko170435c2007-05-23 13:01:10 +00002358 /* waits for completion, then fg's main shell */
Denis Vlasenko52881e92007-04-21 13:42:52 +00002359 rcode = checkjobs_and_fg_shell(pi);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002360 } else
2361#endif
2362 {
Denis Vlasenko170435c2007-05-23 13:01:10 +00002363 /* this one just waits for completion */
Eric Andersenc798b072001-06-22 06:23:03 +00002364 rcode = checkjobs(pi);
Eric Andersen25f27032001-04-26 23:22:31 +00002365 }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002366 debug_printf_exec(": checkjobs returned %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00002367 }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002368 debug_printf_exec(": setting last_return_code=%d\n", rcode);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002369 last_return_code = rcode;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002370//why? pi->num_progs = save_num_progs;
Denis Vlasenko06810332007-05-21 23:30:54 +00002371#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002372 if (rword == RES_IF || rword == RES_ELIF)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002373 next_if_code = rcode; /* can be overwritten a number of times */
Denis Vlasenko06810332007-05-21 23:30:54 +00002374#endif
2375#if ENABLE_HUSH_LOOPS
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002376 if (rword == RES_WHILE)
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002377 flag_rep = !last_return_code;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002378 if (rword == RES_UNTIL)
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002379 flag_rep = last_return_code;
Denis Vlasenko06810332007-05-21 23:30:54 +00002380#endif
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002381 if ((rcode == EXIT_SUCCESS && pi->followup == PIPE_OR)
2382 || (rcode != EXIT_SUCCESS && pi->followup == PIPE_AND)
2383 ) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002384 skip_more_for_this_rword = rword;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002385 }
Eric Andersen028b65b2001-06-28 01:10:11 +00002386 checkjobs(NULL);
Eric Andersen25f27032001-04-26 23:22:31 +00002387 }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002388
2389#if ENABLE_HUSH_JOB
2390 if (ctrl_z_flag) {
2391 /* ctrl-Z forked somewhere in the past, we are the child,
2392 * and now we completed running the list. Exit. */
2393 exit(rcode);
2394 }
2395 ret:
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00002396 if (!--run_list_level && interactive_fd) {
2397 signal(SIGTSTP, SIG_IGN);
2398 signal(SIGINT, SIG_IGN);
2399 }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002400#endif
Denis Vlasenko05743d72008-02-10 12:10:08 +00002401 debug_printf_exec("run_list lvl %d return %d\n", run_list_level + 1, rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00002402 return rcode;
2403}
2404
Eric Andersen25f27032001-04-26 23:22:31 +00002405/* return code is the exit status of the pipe */
Eric Andersenbf7df042001-05-23 22:18:35 +00002406static int free_pipe(struct pipe *pi, int indent)
Eric Andersen25f27032001-04-26 23:22:31 +00002407{
2408 char **p;
2409 struct child_prog *child;
2410 struct redir_struct *r, *rnext;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002411 int a, i, ret_code = 0;
Eric Andersen52a97ca2001-06-22 06:49:26 +00002412
2413 if (pi->stopped_progs > 0)
2414 return ret_code;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002415 debug_printf_clean("%s run pipe: (pid %d)\n", indenter(indent), getpid());
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002416 for (i = 0; i < pi->num_progs; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002417 child = &pi->progs[i];
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002418 debug_printf_clean("%s command %d:\n", indenter(indent), i);
Eric Andersen25f27032001-04-26 23:22:31 +00002419 if (child->argv) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002420 for (a = 0, p = child->argv; *p; a++, p++) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002421 debug_printf_clean("%s argv[%d] = %s\n", indenter(indent), a, *p);
Eric Andersen25f27032001-04-26 23:22:31 +00002422 }
Denis Vlasenkof962a032007-11-23 12:50:54 +00002423 free_strings(child->argv);
2424 child->argv = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002425 } else if (child->group) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002426 debug_printf_clean("%s begin group (subshell:%d)\n", indenter(indent), child->subshell);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002427 ret_code = free_pipe_list(child->group, indent+3);
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002428 debug_printf_clean("%s end group\n", indenter(indent));
Eric Andersen25f27032001-04-26 23:22:31 +00002429 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002430 debug_printf_clean("%s (nil)\n", indenter(indent));
Eric Andersen25f27032001-04-26 23:22:31 +00002431 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002432 for (r = child->redirects; r; r = rnext) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002433 debug_printf_clean("%s redirect %d%s", indenter(indent), r->fd, redir_table[r->type].descrip);
Eric Andersen25f27032001-04-26 23:22:31 +00002434 if (r->dup == -1) {
Eric Andersen817e73c2001-06-06 17:56:09 +00002435 /* guard against the case >$FOO, where foo is unset or blank */
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002436 if (r->glob_word) {
2437 debug_printf_clean(" %s\n", r->glob_word[0]);
2438 free_strings(r->glob_word);
2439 r->glob_word = NULL;
Eric Andersen817e73c2001-06-06 17:56:09 +00002440 }
Eric Andersen25f27032001-04-26 23:22:31 +00002441 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002442 debug_printf_clean("&%d\n", r->dup);
Eric Andersen25f27032001-04-26 23:22:31 +00002443 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002444 rnext = r->next;
Eric Andersen25f27032001-04-26 23:22:31 +00002445 free(r);
2446 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002447 child->redirects = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002448 }
2449 free(pi->progs); /* children are an array, they get freed all at once */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002450 pi->progs = NULL;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002451#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002452 free(pi->cmdtext);
2453 pi->cmdtext = NULL;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002454#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002455 return ret_code;
2456}
2457
Eric Andersenbf7df042001-05-23 22:18:35 +00002458static int free_pipe_list(struct pipe *head, int indent)
Eric Andersen25f27032001-04-26 23:22:31 +00002459{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002460 int rcode = 0; /* if list has no members */
Eric Andersen25f27032001-04-26 23:22:31 +00002461 struct pipe *pi, *next;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002462
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002463 for (pi = head; pi; pi = next) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002464 debug_printf_clean("%s pipe reserved mode %d\n", indenter(indent), pi->res_word);
Eric Andersenbf7df042001-05-23 22:18:35 +00002465 rcode = free_pipe(pi, indent);
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002466 debug_printf_clean("%s pipe followup code %d\n", indenter(indent), pi->followup);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002467 next = pi->next;
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002468 /*pi->next = NULL;*/
Eric Andersen25f27032001-04-26 23:22:31 +00002469 free(pi);
2470 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002471 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00002472}
2473
2474/* Select which version we will use */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002475static int run_and_free_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00002476{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002477 int rcode = 0;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002478 debug_printf_exec("run_and_free_list entered\n");
2479 if (!fake_mode) {
2480 debug_printf_exec(": run_list with %d members\n", pi->num_progs);
2481 rcode = run_list(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002482 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002483 /* free_pipe_list has the side effect of clearing memory.
Denis Vlasenko05743d72008-02-10 12:10:08 +00002484 * In the long run that function can be merged with run_list,
Eric Andersen25f27032001-04-26 23:22:31 +00002485 * but doing that now would hobble the debugging effort. */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002486 free_pipe_list(pi, /* indent: */ 0);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002487 debug_printf_exec("run_and_free_list return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00002488 return rcode;
2489}
2490
Denis Vlasenkoff097622007-10-01 10:00:45 +00002491/* Whoever decided to muck with glob internal data is AN IDIOT! */
2492/* uclibc happily changed the way it works (and it has rights to do so!),
2493 all hell broke loose (SEGVs) */
2494
Eric Andersen25f27032001-04-26 23:22:31 +00002495/* The API for glob is arguably broken. This routine pushes a non-matching
2496 * string into the output structure, removing non-backslashed backslashes.
2497 * If someone can prove me wrong, by performing this function within the
2498 * original glob(3) api, feel free to rewrite this routine into oblivion.
Eric Andersen25f27032001-04-26 23:22:31 +00002499 * XXX broken if the last character is '\\', check that before calling.
2500 */
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002501static char **globhack(const char *src, char **strings)
Eric Andersen25f27032001-04-26 23:22:31 +00002502{
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002503 int cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00002504 const char *s;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002505 char *v, *dest;
2506
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002507 for (cnt = 1, s = src; s && *s; s++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002508 if (*s == '\\') s++;
2509 cnt++;
2510 }
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002511 v = dest = xmalloc(cnt);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002512 for (s = src; s && *s; s++, dest++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002513 if (*s == '\\') s++;
2514 *dest = *s;
2515 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002516 *dest = '\0';
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002517
2518 return add_string_to_strings(strings, v);
Eric Andersen25f27032001-04-26 23:22:31 +00002519}
2520
2521/* XXX broken if the last character is '\\', check that before calling */
2522static int glob_needed(const char *s)
2523{
2524 for (; *s; s++) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002525 if (*s == '\\')
2526 s++;
2527 if (strchr("*[?", *s))
2528 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002529 }
2530 return 0;
2531}
2532
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002533static int xglob(o_string *dest, char ***pglob)
Eric Andersen25f27032001-04-26 23:22:31 +00002534{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002535 /* short-circuit for null word */
Eric Andersen25f27032001-04-26 23:22:31 +00002536 /* we can code this better when the debug_printf's are gone */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002537 if (dest->length == 0) {
2538 if (dest->nonnull) {
2539 /* bash man page calls this an "explicit" null */
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002540 *pglob = globhack(dest->data, *pglob);
2541 }
2542 return 0;
2543 }
2544
2545 if (glob_needed(dest->data)) {
2546 glob_t globdata;
2547 int gr;
2548
2549 memset(&globdata, 0, sizeof(globdata));
2550 gr = glob(dest->data, 0, NULL, &globdata);
2551 debug_printf("glob returned %d\n", gr);
2552 if (gr == GLOB_NOSPACE)
2553 bb_error_msg_and_die("out of memory during glob");
2554 if (gr == GLOB_NOMATCH) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002555 debug_printf("globhack returned %d\n", gr);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002556 /* quote removal, or more accurately, backslash removal */
2557 *pglob = globhack(dest->data, *pglob);
Denis Vlasenkof962a032007-11-23 12:50:54 +00002558 globfree(&globdata);
Eric Andersen25f27032001-04-26 23:22:31 +00002559 return 0;
2560 }
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002561 if (gr != 0) { /* GLOB_ABORTED ? */
2562 bb_error_msg("glob(3) error %d", gr);
Eric Andersen25f27032001-04-26 23:22:31 +00002563 }
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002564 if (globdata.gl_pathv && globdata.gl_pathv[0])
2565 *pglob = add_strings_to_strings(1, *pglob, globdata.gl_pathv);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002566 globfree(&globdata);
2567 return gr;
Eric Andersen25f27032001-04-26 23:22:31 +00002568 }
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002569
2570 *pglob = globhack(dest->data, *pglob);
2571 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00002572}
2573
Denis Vlasenko170435c2007-05-23 13:01:10 +00002574/* expand_strvec_to_strvec() takes a list of strings, expands
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002575 * all variable references within and returns a pointer to
2576 * a list of expanded strings, possibly with larger number
2577 * of strings. (Think VAR="a b"; echo $VAR).
2578 * This new list is allocated as a single malloc block.
2579 * NULL-terminated list of char* pointers is at the beginning of it,
2580 * followed by strings themself.
2581 * Caller can deallocate entire list by single free(list). */
2582
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002583/* Store given string, finalizing the word and starting new one whenever
2584 * we encounter ifs char(s). This is used for expanding variable values.
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002585 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002586static int expand_on_ifs(o_string *output, int n, const char *str)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002587{
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002588 while (1) {
2589 int word_len = strcspn(str, ifs);
2590 if (word_len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002591 o_addQstr(output, str, word_len);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002592 str += word_len;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002593 }
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002594 if (!*str) /* EOL - do not finalize word */
2595 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002596 o_addchr(output, '\0');
2597 o_debug_list("expand_on_ifs", output, n);
2598 n = o_save_ptr(output, n);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002599 str += strspn(str, ifs); /* skip ifs chars */
2600 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002601 o_debug_list("expand_on_ifs[1]", output, n);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002602 return n;
2603}
2604
2605/* Expand all variable references in given string, adding words to list[]
2606 * at n, n+1,... positions. Return updated n (so that list[n] is next one
2607 * to be filled). This routine is extremely tricky: has to deal with
2608 * variables/parameters with whitespace, $* and $@, and constructs like
2609 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002610/* NB: another bug is that we cannot detect empty strings yet:
2611 * "" or $empty"" expands to zero words, has to expand to empty word */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002612static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002613{
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002614 /* or_mask is either 0 (normal case) or 0x80
2615 * (expansion of right-hand side of assignment == 1-element expand) */
2616
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002617 char first_ch, ored_ch;
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002618 int i;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002619 const char *val;
2620 char *p;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002621
2622 ored_ch = 0;
2623
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002624 debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002625 o_debug_list("expand_vars_to_list", output, n);
2626 n = o_save_ptr(output, n);
2627 o_debug_list("expand_vars_to_list[0]", output, n);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002628
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002629 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
2630 o_string subst_result = NULL_O_STRING;
2631
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002632 o_addQstr(output, arg, p - arg);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002633 o_debug_list("expand_vars_to_list[1]", output, n);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002634 arg = ++p;
2635 p = strchr(p, SPECIAL_VAR_SYMBOL);
2636
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002637 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002638 ored_ch |= first_ch;
2639 val = NULL;
2640 switch (first_ch & 0x7f) {
2641 /* Highest bit in first_ch indicates that var is double-quoted */
2642 case '$': /* pid */
2643 /* FIXME: (echo $$) should still print pid of main shell */
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00002644 val = utoa(getpid()); /* rootpid? */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002645 break;
2646 case '!': /* bg pid */
2647 val = last_bg_pid ? utoa(last_bg_pid) : (char*)"";
2648 break;
2649 case '?': /* exitcode */
2650 val = utoa(last_return_code);
2651 break;
2652 case '#': /* argc */
2653 val = utoa(global_argc ? global_argc-1 : 0);
2654 break;
2655 case '*':
2656 case '@':
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002657 i = 1;
Denis Vlasenkoc3c66592007-11-24 00:22:42 +00002658 if (!global_argv[i])
2659 break;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002660 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denis Vlasenkoc3c66592007-11-24 00:22:42 +00002661 while (global_argv[i]) {
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002662 n = expand_on_ifs(output, n, global_argv[i]);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002663 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, global_argc-1);
Denis Vlasenkoc3c66592007-11-24 00:22:42 +00002664 if (global_argv[i++][0] && global_argv[i]) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002665 /* this argv[] is not empty and not last:
2666 * put terminating NUL, start new word */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002667 o_addchr(output, '\0');
2668 o_debug_list("expand_vars_to_list[2]", output, n);
2669 n = o_save_ptr(output, n);
2670 o_debug_list("expand_vars_to_list[3]", output, n);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002671 }
2672 }
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002673 } else
2674 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002675 * and in this case should treat it like '$*' - see 'else...' below */
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002676 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002677 while (1) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002678 o_addQstr(output, global_argv[i], strlen(global_argv[i]));
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002679 if (++i >= global_argc)
2680 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002681 o_addchr(output, '\0');
2682 o_debug_list("expand_vars_to_list[4]", output, n);
2683 n = o_save_ptr(output, n);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002684 }
2685 } else { /* quoted $*: add as one word */
Denis Vlasenkoc3c66592007-11-24 00:22:42 +00002686 while (1) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002687 o_addQstr(output, global_argv[i], strlen(global_argv[i]));
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002688 if (!global_argv[++i])
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002689 break;
2690 if (ifs[0])
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002691 o_addchr(output, ifs[0]);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002692 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002693 }
2694 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002695 case '`': {
2696 struct in_str input;
2697 *p = '\0';
2698 arg++;
2699 //bb_error_msg("SUBST '%s' first_ch %x", arg, first_ch);
2700 setup_string_in_str(&input, arg);
2701 process_command_subs(&subst_result, &input, NULL);
2702 //bb_error_msg("RES '%s'", subst_result.data);
2703 val = subst_result.data;
2704 goto store_val;
2705 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002706 default:
2707 *p = '\0';
2708 arg[0] = first_ch & 0x7f;
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002709 if (isdigit(arg[0])) {
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002710 i = xatoi_u(arg);
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002711 val = NULL;
2712 if (i < global_argc)
2713 val = global_argv[i];
2714 } else
2715 val = lookup_param(arg);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002716 arg[0] = first_ch;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002717 store_val:
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002718 *p = SPECIAL_VAR_SYMBOL;
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002719 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002720 if (val) {
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002721 n = expand_on_ifs(output, n, val);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002722 val = NULL;
2723 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002724 } /* else: quoted $VAR, val will be appended below */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002725 }
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002726 if (val) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002727 o_addQstr(output, val, strlen(val));
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002728 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002729
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002730 o_free(&subst_result);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002731 arg = ++p;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002732 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
2733
Denis Vlasenko2e76c3f2008-06-10 18:27:50 +00002734 if (arg[0]) {
2735 o_debug_list("expand_vars_to_list[a]", output, n);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002736 o_addQstr(output, arg, strlen(arg) + 1);
Denis Vlasenko2e76c3f2008-06-10 18:27:50 +00002737 o_debug_list("expand_vars_to_list[b]", output, n);
2738 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
2739 && !(ored_ch & 0x80) /* and all vars were not quoted. */
2740 ) {
2741 n--;
2742 /* allow to reuse list[n] later without re-growth */
2743 output->has_empty_slot = 1;
2744 } else {
2745 o_addchr(output, '\0');
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002746 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002747 return n;
2748}
2749
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002750static char **expand_variables(char **argv, char or_mask)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002751{
2752 int n;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002753 char **list;
2754 char **v;
2755 o_string output = NULL_O_STRING;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002756
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002757 n = 0;
2758 v = argv;
2759 while (*v)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002760 n = expand_vars_to_list(&output, n, *v++, or_mask);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002761 o_debug_list("expand_variables", &output, n);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002762
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002763 /* output.data (malloced) gets returned in "list" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002764 list = o_finalize_list(&output, n);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002765
2766#ifdef DEBUG_EXPAND
2767 {
2768 int m = 0;
2769 while (m <= n) {
2770 debug_printf_expand("list[%d]=%p '%s'\n", m, list[m], list[m]);
2771 m++;
2772 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002773 }
2774#endif
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002775 return list;
2776}
2777
Denis Vlasenko170435c2007-05-23 13:01:10 +00002778static char **expand_strvec_to_strvec(char **argv)
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002779{
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002780 return expand_variables(argv, 0);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002781}
2782
Denis Vlasenko170435c2007-05-23 13:01:10 +00002783static char *expand_string_to_string(const char *str)
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002784{
2785 char *argv[2], **list;
2786
2787 argv[0] = (char*)str;
2788 argv[1] = NULL;
2789 list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */
Denis Vlasenko170435c2007-05-23 13:01:10 +00002790 if (ENABLE_HUSH_DEBUG)
2791 if (!list[0] || list[1])
2792 bb_error_msg_and_die("BUG in varexp2");
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002793 /* actually, just move string 2*sizeof(char*) bytes back */
2794 strcpy((char*)list, list[0]);
Denis Vlasenko170435c2007-05-23 13:01:10 +00002795 debug_printf_expand("string_to_string='%s'\n", (char*)list);
2796 return (char*)list;
2797}
2798
2799static char* expand_strvec_to_string(char **argv)
2800{
2801 char **list;
2802
2803 list = expand_variables(argv, 0x80);
2804 /* Convert all NULs to spaces */
2805 if (list[0]) {
2806 int n = 1;
2807 while (list[n]) {
2808 if (ENABLE_HUSH_DEBUG)
2809 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2810 bb_error_msg_and_die("BUG in varexp3");
2811 list[n][-1] = ' '; /* TODO: or to ifs[0]? */
2812 n++;
2813 }
2814 }
2815 strcpy((char*)list, list[0]);
2816 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002817 return (char*)list;
2818}
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002819
Eric Andersenf72f5622001-05-15 23:21:41 +00002820/* This is used to get/check local shell variables */
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002821static struct variable *get_local_var(const char *name)
Eric Andersenf72f5622001-05-15 23:21:41 +00002822{
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002823 struct variable *cur;
2824 int len;
Eric Andersenf72f5622001-05-15 23:21:41 +00002825
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002826 if (!name)
Eric Andersenf72f5622001-05-15 23:21:41 +00002827 return NULL;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002828 len = strlen(name);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002829 for (cur = top_var; cur; cur = cur->next) {
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002830 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002831 return cur;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00002832 }
Eric Andersenf72f5622001-05-15 23:21:41 +00002833 return NULL;
2834}
2835
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002836/* str holds "NAME=VAL" and is expected to be malloced.
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002837 * We take ownership of it. */
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002838static int set_local_var(char *str, int flg_export)
Eric Andersen78a7c992001-05-15 16:30:25 +00002839{
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002840 struct variable *cur;
2841 char *value;
2842 int name_len;
Eric Andersen20a69a72001-05-15 17:24:44 +00002843
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002844 value = strchr(str, '=');
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002845 if (!value) { /* not expected to ever happen? */
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002846 free(str);
Eric Andersen99785762001-05-22 21:37:48 +00002847 return -1;
2848 }
Eric Andersen20a69a72001-05-15 17:24:44 +00002849
Denis Vlasenko201c72a2007-05-25 10:00:36 +00002850 name_len = value - str + 1; /* including '=' */
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002851 cur = top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */
2852 while (1) {
Denis Vlasenko201c72a2007-05-25 10:00:36 +00002853 if (strncmp(cur->varstr, str, name_len) != 0) {
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002854 if (!cur->next) {
Denis Vlasenko201c72a2007-05-25 10:00:36 +00002855 /* Bail out. Note that now cur points
2856 * to last var in linked list */
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002857 break;
Eric Andersen20a69a72001-05-15 17:24:44 +00002858 }
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002859 cur = cur->next;
2860 continue;
Eric Andersen20a69a72001-05-15 17:24:44 +00002861 }
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002862 /* We found an existing var with this name */
2863 *value = '\0';
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002864 if (cur->flg_read_only) {
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002865 bb_error_msg("%s: readonly variable", str);
2866 free(str);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002867 return -1;
2868 }
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002869 unsetenv(str); /* just in case */
2870 *value = '=';
2871 if (strcmp(cur->varstr, str) == 0) {
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002872 free_and_exp:
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002873 free(str);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002874 goto exp;
2875 }
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002876 if (cur->max_len >= strlen(str)) {
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002877 /* This one is from startup env, reuse space */
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002878 strcpy(cur->varstr, str);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002879 goto free_and_exp;
2880 }
2881 /* max_len == 0 signifies "malloced" var, which we can
2882 * (and has to) free */
2883 if (!cur->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002884 free(cur->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002885 cur->max_len = 0;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002886 goto set_str_and_exp;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002887 }
Eric Andersen20a69a72001-05-15 17:24:44 +00002888
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002889 /* Not found - create next variable struct */
2890 cur->next = xzalloc(sizeof(*cur));
2891 cur = cur->next;
2892
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002893 set_str_and_exp:
2894 cur->varstr = str;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002895 exp:
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002896 if (flg_export)
2897 cur->flg_export = 1;
2898 if (cur->flg_export)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002899 return putenv(cur->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002900 return 0;
Eric Andersen20a69a72001-05-15 17:24:44 +00002901}
2902
Eric Andersenf72f5622001-05-15 23:21:41 +00002903static void unset_local_var(const char *name)
Eric Andersen20a69a72001-05-15 17:24:44 +00002904{
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002905 struct variable *cur;
2906 struct variable *prev = prev; /* for gcc */
2907 int name_len;
Eric Andersen20a69a72001-05-15 17:24:44 +00002908
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002909 if (!name)
2910 return;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002911 name_len = strlen(name);
2912 cur = top_var;
2913 while (cur) {
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002914 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002915 if (cur->flg_read_only) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00002916 bb_error_msg("%s: readonly variable", name);
Eric Andersen94ac2442001-05-22 19:05:18 +00002917 return;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002918 }
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002919 /* prev is ok to use here because 1st variable, HUSH_VERSION,
2920 * is ro, and we cannot reach this code on the 1st pass */
2921 prev->next = cur->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002922 unsetenv(cur->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002923 if (!cur->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002924 free(cur->varstr);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002925 free(cur);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002926 return;
Eric Andersenf72f5622001-05-15 23:21:41 +00002927 }
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002928 prev = cur;
2929 cur = cur->next;
Eric Andersen20a69a72001-05-15 17:24:44 +00002930 }
Eric Andersen78a7c992001-05-15 16:30:25 +00002931}
2932
2933static int is_assignment(const char *s)
2934{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002935 if (!s || !isalpha(*s))
2936 return 0;
2937 s++;
2938 while (isalnum(*s) || *s == '_')
2939 s++;
2940 return *s == '=';
Eric Andersen78a7c992001-05-15 16:30:25 +00002941}
2942
Eric Andersen25f27032001-04-26 23:22:31 +00002943/* the src parameter allows us to peek forward to a possible &n syntax
2944 * for file descriptor duplication, e.g., "2>&1".
2945 * Return code is 0 normally, 1 if a syntax error is detected in src.
2946 * Resource errors (in xmalloc) cause the process to exit */
2947static int setup_redirect(struct p_context *ctx, int fd, redir_type style,
2948 struct in_str *input)
2949{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002950 struct child_prog *child = ctx->child;
Eric Andersen25f27032001-04-26 23:22:31 +00002951 struct redir_struct *redir = child->redirects;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002952 struct redir_struct *last_redir = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002953
2954 /* Create a new redir_struct and drop it onto the end of the linked list */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002955 while (redir) {
2956 last_redir = redir;
2957 redir = redir->next;
Eric Andersen25f27032001-04-26 23:22:31 +00002958 }
Denis Vlasenkoff097622007-10-01 10:00:45 +00002959 redir = xzalloc(sizeof(struct redir_struct));
2960 /* redir->next = NULL; */
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002961 /* redir->glob_word = NULL; */
Eric Andersen25f27032001-04-26 23:22:31 +00002962 if (last_redir) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002963 last_redir->next = redir;
Eric Andersen25f27032001-04-26 23:22:31 +00002964 } else {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002965 child->redirects = redir;
Eric Andersen25f27032001-04-26 23:22:31 +00002966 }
2967
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002968 redir->type = style;
2969 redir->fd = (fd == -1) ? redir_table[style].default_fd : fd;
Eric Andersen25f27032001-04-26 23:22:31 +00002970
2971 debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip);
2972
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002973 /* Check for a '2>&1' type redirect */
Eric Andersen25f27032001-04-26 23:22:31 +00002974 redir->dup = redirect_dup_num(input);
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002975 if (redir->dup == -2)
2976 return 1; /* syntax error */
Eric Andersen25f27032001-04-26 23:22:31 +00002977 if (redir->dup != -1) {
2978 /* Erik had a check here that the file descriptor in question
Eric Andersen83a2ae22001-05-07 17:59:25 +00002979 * is legit; I postpone that to "run time"
2980 * A "-" representation of "close me" shows up as a -3 here */
Eric Andersen25f27032001-04-26 23:22:31 +00002981 debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup);
2982 } else {
2983 /* We do _not_ try to open the file that src points to,
2984 * since we need to return and let src be expanded first.
2985 * Set ctx->pending_redirect, so we know what to do at the
Denis Vlasenko201c72a2007-05-25 10:00:36 +00002986 * end of the next parsed word. */
Eric Andersen25f27032001-04-26 23:22:31 +00002987 ctx->pending_redirect = redir;
2988 }
2989 return 0;
2990}
2991
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00002992static struct pipe *new_pipe(void)
2993{
Eric Andersen25f27032001-04-26 23:22:31 +00002994 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002995 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002996 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002997 if (RES_NONE)
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002998 pi->res_word = RES_NONE;
Eric Andersen25f27032001-04-26 23:22:31 +00002999 return pi;
3000}
3001
3002static void initialize_context(struct p_context *ctx)
3003{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003004 smallint sv = ctx->parse_type;
3005 memset(ctx, 0, sizeof(*ctx));
3006 ctx->parse_type = sv;
Denis Vlasenko1a735862007-05-23 00:32:25 +00003007 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003008 /* Create the memory for child, roughly:
3009 * ctx->pipe->progs = new struct child_prog;
3010 * ctx->pipe->progs[0].family = ctx->pipe;
3011 * ctx->child = &ctx->pipe->progs[0];
3012 */
3013 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00003014}
3015
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003016/* If a reserved word is found and processed, parse context is modified
3017 * and 1 is returned.
3018 * Handles if, then, elif, else, fi, for, while, until, do, done.
Eric Andersen25f27032001-04-26 23:22:31 +00003019 * case, function, and select are obnoxious, save those for later.
3020 */
Denis Vlasenko06810332007-05-21 23:30:54 +00003021#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003022static int reserved_word(const o_string *word, struct p_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003023{
3024 struct reserved_combo {
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003025 char literal[7];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003026 unsigned char res;
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003027 int flag;
Eric Andersen25f27032001-04-26 23:22:31 +00003028 };
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003029 enum {
3030 FLAG_END = (1 << RES_NONE ),
3031#if ENABLE_HUSH_IF
3032 FLAG_IF = (1 << RES_IF ),
3033 FLAG_THEN = (1 << RES_THEN ),
3034 FLAG_ELIF = (1 << RES_ELIF ),
3035 FLAG_ELSE = (1 << RES_ELSE ),
3036 FLAG_FI = (1 << RES_FI ),
3037#endif
3038#if ENABLE_HUSH_LOOPS
3039 FLAG_FOR = (1 << RES_FOR ),
3040 FLAG_WHILE = (1 << RES_WHILE),
3041 FLAG_UNTIL = (1 << RES_UNTIL),
3042 FLAG_DO = (1 << RES_DO ),
3043 FLAG_DONE = (1 << RES_DONE ),
3044 FLAG_IN = (1 << RES_IN ),
3045#endif
3046 FLAG_START = (1 << RES_XXXX ),
3047 };
Eric Andersen25f27032001-04-26 23:22:31 +00003048 /* Mostly a list of accepted follow-up reserved words.
3049 * FLAG_END means we are done with the sequence, and are ready
3050 * to turn the compound list into a command.
3051 * FLAG_START means the word must start a new compound list.
3052 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003053 static const struct reserved_combo reserved_list[] = {
Denis Vlasenko06810332007-05-21 23:30:54 +00003054#if ENABLE_HUSH_IF
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003055 { "!", RES_NONE, 0 },
Eric Andersen25f27032001-04-26 23:22:31 +00003056 { "if", RES_IF, FLAG_THEN | FLAG_START },
3057 { "then", RES_THEN, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
3058 { "elif", RES_ELIF, FLAG_THEN },
3059 { "else", RES_ELSE, FLAG_FI },
3060 { "fi", RES_FI, FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00003061#endif
3062#if ENABLE_HUSH_LOOPS
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003063 { "for", RES_FOR, FLAG_IN | FLAG_START },
3064 { "while", RES_WHILE, FLAG_DO | FLAG_START },
3065 { "until", RES_UNTIL, FLAG_DO | FLAG_START },
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003066 { "in", RES_IN, FLAG_DO },
Eric Andersen25f27032001-04-26 23:22:31 +00003067 { "do", RES_DO, FLAG_DONE },
3068 { "done", RES_DONE, FLAG_END }
Denis Vlasenko06810332007-05-21 23:30:54 +00003069#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003070 };
Denis Vlasenko80b8b392007-06-25 10:55:35 +00003071
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003072 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003073
Denis Vlasenko80b8b392007-06-25 10:55:35 +00003074 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003075 if (strcmp(word->data, r->literal) != 0)
Denis Vlasenko1a735862007-05-23 00:32:25 +00003076 continue;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003077 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
3078 if (r->flag == 0) { /* '!' */
3079 if (ctx->res_w == RES_IN) {
3080 /* 'for a in ! a b c; ...' - ! isn't a keyword here */
3081 break;
3082 }
3083 if (ctx->res_w == RES_FOR /* example: 'for ! a' */
3084 || ctx->ctx_inverted /* bash doesn't accept '! ! true' */
3085 ) {
3086 syntax(NULL);
3087 ctx->res_w = RES_SNTX;
3088 }
3089 ctx->ctx_inverted = 1;
3090 return 1;
3091 }
Denis Vlasenko1a735862007-05-23 00:32:25 +00003092 if (r->flag & FLAG_START) {
3093 struct p_context *new;
3094 debug_printf("push stack\n");
Denis Vlasenko06810332007-05-21 23:30:54 +00003095#if ENABLE_HUSH_LOOPS
Denis Vlasenko1a735862007-05-23 00:32:25 +00003096 if (ctx->res_w == RES_IN || ctx->res_w == RES_FOR) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003097 syntax("malformed for"); /* example: 'for if' */
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003098 ctx->res_w = RES_SNTX;
Eric Andersenaf44a0e2001-04-27 07:26:12 +00003099 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003100 }
Denis Vlasenko1a735862007-05-23 00:32:25 +00003101#endif
3102 new = xmalloc(sizeof(*new));
3103 *new = *ctx; /* physical copy */
3104 initialize_context(ctx);
3105 ctx->stack = new;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003106 } else if (ctx->res_w == RES_NONE || !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003107 syntax(NULL);
Denis Vlasenko1a735862007-05-23 00:32:25 +00003108 ctx->res_w = RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00003109 return 1;
3110 }
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003111 ctx->res_w = r->res;
Denis Vlasenko1a735862007-05-23 00:32:25 +00003112 ctx->old_flag = r->flag;
3113 if (ctx->old_flag & FLAG_END) {
3114 struct p_context *old;
3115 debug_printf("pop stack\n");
3116 done_pipe(ctx, PIPE_SEQ);
3117 old = ctx->stack;
3118 old->child->group = ctx->list_head;
3119 old->child->subshell = 0;
3120 *ctx = *old; /* physical copy */
3121 free(old);
3122 }
Denis Vlasenko1a735862007-05-23 00:32:25 +00003123 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003124 }
3125 return 0;
3126}
Denis Vlasenko06810332007-05-21 23:30:54 +00003127#else
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003128#define reserved_word(word, ctx) ((int)0)
Denis Vlasenko06810332007-05-21 23:30:54 +00003129#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003130
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003131/* Word is complete, look at it and update parsing context.
3132 * Normal return is 0.
Eric Andersen25f27032001-04-26 23:22:31 +00003133 * Syntax or xglob errors return 1. */
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003134static int done_word(o_string *word, struct p_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003135{
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003136 struct child_prog *child = ctx->child;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003137 char ***glob_target;
3138 int gr;
Eric Andersen25f27032001-04-26 23:22:31 +00003139
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003140 debug_printf_parse("done_word entered: '%s' %p\n", word->data, child);
3141 if (word->length == 0 && !word->nonnull) {
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003142 debug_printf_parse("done_word return 0: true null, ignored\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003143 return 0;
3144 }
3145 if (ctx->pending_redirect) {
Denis Vlasenkoff097622007-10-01 10:00:45 +00003146 glob_target = &ctx->pending_redirect->glob_word;
Eric Andersen25f27032001-04-26 23:22:31 +00003147 } else {
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003148 if (child->group) { /* TODO: example how to trigger? */
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003149 syntax(NULL);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003150 debug_printf_parse("done_word return 1: syntax error, groups and arglists don't mix\n");
3151 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003152 }
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003153 if (!child->argv && (ctx->parse_type & PARSEFLAG_SEMICOLON)) {
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003154 debug_printf_parse(": checking '%s' for reserved-ness\n", word->data);
3155 if (reserved_word(word, ctx)) {
3156 o_reset(word);
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003157 debug_printf_parse("done_word return %d\n", (ctx->res_w == RES_SNTX));
3158 return (ctx->res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003159 }
Eric Andersen25f27032001-04-26 23:22:31 +00003160 }
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003161 glob_target = &child->argv;
Eric Andersen25f27032001-04-26 23:22:31 +00003162 }
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003163//BUG! globbing should be done after variable expansion!
3164//See glob_and_vars testcase
3165 gr = xglob(word, glob_target);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003166 if (gr != 0) {
3167 debug_printf_parse("done_word return 1: xglob returned %d\n", gr);
3168 return 1;
3169 }
Eric Andersen25f27032001-04-26 23:22:31 +00003170
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003171 o_reset(word);
Eric Andersen25f27032001-04-26 23:22:31 +00003172 if (ctx->pending_redirect) {
Denis Vlasenkof962a032007-11-23 12:50:54 +00003173 /* NB: don't free_strings(ctx->pending_redirect->glob_word) here */
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003174 if (ctx->pending_redirect->glob_word
3175 && ctx->pending_redirect->glob_word[0]
3176 && ctx->pending_redirect->glob_word[1]
3177 ) {
3178 /* more than one word resulted from globbing redir */
3179 ctx->pending_redirect = NULL;
Manuel Novoa III cad53642003-03-19 09:13:01 +00003180 bb_error_msg("ambiguous redirect");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003181 debug_printf_parse("done_word return 1: ambiguous redirect\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003182 return 1;
3183 }
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003184 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003185 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003186#if ENABLE_HUSH_LOOPS
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003187 if (ctx->res_w == RES_FOR) { /* comment? */
3188//TESTING
3189//looks like (word->length == 0 && !word->nonnull) is true here, always
3190//(due to o_reset). done_word would return at once. Why then?
3191// done_word(word, ctx);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003192 done_pipe(ctx, PIPE_SEQ);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003193 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003194#endif
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003195 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003196 return 0;
3197}
3198
3199/* The only possible error here is out of memory, in which case
3200 * xmalloc exits. */
3201static int done_command(struct p_context *ctx)
3202{
3203 /* The child is really already in the pipe structure, so
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003204 * advance the pipe counter and make a new, null child. */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003205 struct pipe *pi = ctx->pipe;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003206 struct child_prog *child = ctx->child;
Eric Andersen25f27032001-04-26 23:22:31 +00003207
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003208 if (child) {
3209 if (child->group == NULL
3210 && child->argv == NULL
3211 && child->redirects == NULL
3212 ) {
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003213 debug_printf_parse("done_command: skipping null cmd, num_progs=%d\n", pi->num_progs);
3214 return pi->num_progs;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003215 }
Eric Andersen25f27032001-04-26 23:22:31 +00003216 pi->num_progs++;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003217 debug_printf_parse("done_command: ++num_progs=%d\n", pi->num_progs);
Eric Andersen25f27032001-04-26 23:22:31 +00003218 } else {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003219 debug_printf_parse("done_command: initializing, num_progs=%d\n", pi->num_progs);
Eric Andersen25f27032001-04-26 23:22:31 +00003220 }
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003221
3222 /* Only real trickiness here is that the uncommitted
3223 * child structure is not counted in pi->num_progs. */
Eric Andersen25f27032001-04-26 23:22:31 +00003224 pi->progs = xrealloc(pi->progs, sizeof(*pi->progs) * (pi->num_progs+1));
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003225 child = &pi->progs[pi->num_progs];
Eric Andersen25f27032001-04-26 23:22:31 +00003226
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003227 memset(child, 0, sizeof(*child));
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003228 child->family = pi;
Eric Andersen25f27032001-04-26 23:22:31 +00003229
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003230 ctx->child = child;
Eric Andersen25f27032001-04-26 23:22:31 +00003231 /* but ctx->pipe and ctx->list_head remain unchanged */
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003232
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003233 return pi->num_progs; /* used only for 0/nonzero check */
Eric Andersen25f27032001-04-26 23:22:31 +00003234}
3235
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003236static void done_pipe(struct p_context *ctx, pipe_style type)
Eric Andersen25f27032001-04-26 23:22:31 +00003237{
3238 struct pipe *new_p;
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003239 int not_null;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003240
3241 debug_printf_parse("done_pipe entered, followup %d\n", type);
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003242 not_null = done_command(ctx); /* implicit closure of previous command */
Eric Andersen25f27032001-04-26 23:22:31 +00003243 ctx->pipe->followup = type;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003244 ctx->pipe->res_word = ctx->res_w;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003245 ctx->pipe->pi_inverted = ctx->ctx_inverted;
3246 ctx->ctx_inverted = 0;
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003247 /* Without this check, even just <enter> on command line generates
3248 * tree of three NOPs (!). Which is harmless but annoying.
3249 * IOW: it is safe to do it unconditionally. */
3250 if (not_null) {
3251 new_p = new_pipe();
3252 ctx->pipe->next = new_p;
3253 ctx->pipe = new_p;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003254 ctx->child = NULL; /* needed! */
3255 /* Create the memory for child, roughly:
3256 * ctx->pipe->progs = new struct child_prog;
3257 * ctx->pipe->progs[0].family = ctx->pipe;
3258 * ctx->child = &ctx->pipe->progs[0];
3259 */
3260 done_command(ctx);
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003261 }
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003262 debug_printf_parse("done_pipe return\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003263}
3264
3265/* peek ahead in the in_str to find out if we have a "&n" construct,
3266 * as in "2>&1", that represents duplicating a file descriptor.
3267 * returns either -2 (syntax error), -1 (no &), or the number found.
3268 */
3269static int redirect_dup_num(struct in_str *input)
3270{
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003271 int ch, d = 0, ok = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003272 ch = i_peek(input);
Eric Andersen25f27032001-04-26 23:22:31 +00003273 if (ch != '&') return -1;
3274
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003275 i_getch(input); /* get the & */
3276 ch = i_peek(input);
Eric Andersen83a2ae22001-05-07 17:59:25 +00003277 if (ch == '-') {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003278 i_getch(input);
Eric Andersen83a2ae22001-05-07 17:59:25 +00003279 return -3; /* "-" represents "close me" */
3280 }
3281 while (isdigit(ch)) {
Denis Vlasenko7d4c44e2007-04-16 22:34:39 +00003282 d = d*10 + (ch-'0');
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003283 ok = 1;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003284 i_getch(input);
3285 ch = i_peek(input);
Eric Andersen25f27032001-04-26 23:22:31 +00003286 }
3287 if (ok) return d;
3288
Manuel Novoa III cad53642003-03-19 09:13:01 +00003289 bb_error_msg("ambiguous redirect");
Eric Andersen25f27032001-04-26 23:22:31 +00003290 return -2;
3291}
3292
3293/* If a redirect is immediately preceded by a number, that number is
3294 * supposed to tell which file descriptor to redirect. This routine
3295 * looks for such preceding numbers. In an ideal world this routine
3296 * needs to handle all the following classes of redirects...
3297 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
3298 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
3299 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
3300 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
3301 * A -1 output from this program means no valid number was found, so the
3302 * caller should use the appropriate default for this redirection.
3303 */
3304static int redirect_opt_num(o_string *o)
3305{
3306 int num;
3307
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003308 if (o->length == 0)
3309 return -1;
3310 for (num = 0; num < o->length; num++) {
3311 if (!isdigit(*(o->data + num))) {
Eric Andersen25f27032001-04-26 23:22:31 +00003312 return -1;
3313 }
3314 }
3315 /* reuse num (and save an int) */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003316 num = atoi(o->data);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003317 o_reset(o);
Eric Andersen25f27032001-04-26 23:22:31 +00003318 return num;
3319}
3320
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003321#if ENABLE_HUSH_TICK
"Vladimir N. Oleynik"19c37012005-09-22 14:33:15 +00003322static FILE *generate_stream_from_list(struct pipe *head)
Eric Andersen25f27032001-04-26 23:22:31 +00003323{
3324 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00003325 int pid, channel[2];
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003326
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +00003327 xpipe(channel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003328/* *** NOMMU WARNING *** */
3329/* By using vfork here, we suspend parent till child exits or execs.
3330 * If child will not do it before it fills the pipe, it can block forever
3331 * in write(STDOUT_FILENO), and parent (shell) will be also stuck.
Denis Vlasenko3fe4f982008-06-09 16:02:39 +00003332 * Try this script:
3333 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >TESTFILE
3334 * huge=`cat TESTFILE` # will block here forever
3335 * echo OK
Denis Vlasenko05743d72008-02-10 12:10:08 +00003336 */
3337 pid = BB_MMU ? fork() : vfork();
3338 if (pid < 0)
3339 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
3340 if (pid == 0) { /* child */
Denis Vlasenko83177992008-02-11 08:44:36 +00003341 if (ENABLE_HUSH_JOB)
3342 die_sleep = 0; /* let nofork's xfuncs die */
Denis Vlasenko284d0fa2008-02-16 13:18:17 +00003343 close(channel[0]); /* NB: close _first_, then move fd! */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003344 xmove_fd(channel[1], 1);
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003345 /* Prevent it from trying to handle ctrl-z etc */
Denis Vlasenko27f79ff2007-05-30 00:55:52 +00003346#if ENABLE_HUSH_JOB
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003347 run_list_level = 1;
Denis Vlasenko27f79ff2007-05-30 00:55:52 +00003348#endif
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003349 /* Process substitution is not considered to be usual
3350 * 'command execution'.
3351 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not. */
3352 /* Not needed, we are relying on it being disabled
3353 * everywhere outside actual command execution. */
3354 /*set_jobctrl_sighandler(SIG_IGN);*/
3355 set_misc_sighandler(SIG_DFL);
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00003356 /* Freeing 'head' here would break NOMMU. */
3357 _exit(run_list(head));
Eric Andersen25f27032001-04-26 23:22:31 +00003358 }
Eric Andersen25f27032001-04-26 23:22:31 +00003359 close(channel[1]);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003360 pf = fdopen(channel[0], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00003361 return pf;
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00003362 /* 'head' is freed by the caller */
Eric Andersen25f27032001-04-26 23:22:31 +00003363}
3364
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003365/* Return code is exit status of the process that is run. */
Denis Vlasenko68404f12008-03-17 09:00:54 +00003366static int process_command_subs(o_string *dest,
Denis Vlasenko68404f12008-03-17 09:00:54 +00003367 struct in_str *input,
3368 const char *subst_end)
Eric Andersen25f27032001-04-26 23:22:31 +00003369{
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003370 int retcode, ch, eol_cnt;
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003371 o_string result = NULL_O_STRING;
Eric Andersen25f27032001-04-26 23:22:31 +00003372 struct p_context inner;
3373 FILE *p;
3374 struct in_str pipe_str;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003375
Eric Andersen25f27032001-04-26 23:22:31 +00003376 initialize_context(&inner);
3377
3378 /* recursion to generate command */
3379 retcode = parse_stream(&result, &inner, input, subst_end);
Denis Vlasenko1a735862007-05-23 00:32:25 +00003380 if (retcode != 0)
3381 return retcode; /* syntax error or EOF */
Eric Andersen25f27032001-04-26 23:22:31 +00003382 done_word(&result, &inner);
3383 done_pipe(&inner, PIPE_SEQ);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003384 o_free(&result);
Eric Andersen25f27032001-04-26 23:22:31 +00003385
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003386 p = generate_stream_from_list(inner.list_head);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003387 if (p == NULL)
3388 return 1;
Denis Vlasenkoa0898172007-10-01 09:59:01 +00003389 close_on_exec_on(fileno(p));
Eric Andersen25f27032001-04-26 23:22:31 +00003390 setup_file_in_str(&pipe_str, p);
3391
3392 /* now send results of command back into original context */
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003393 eol_cnt = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003394 while ((ch = i_getch(&pipe_str)) != EOF) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003395 if (ch == '\n') {
3396 eol_cnt++;
3397 continue;
3398 }
3399 while (eol_cnt) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003400 o_addQchr(dest, '\n');
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003401 eol_cnt--;
3402 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003403 o_addQchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003404 }
3405
3406 debug_printf("done reading from pipe, pclose()ing\n");
3407 /* This is the step that wait()s for the child. Should be pretty
3408 * safe, since we just read an EOF from its stdout. We could try
Denis Vlasenko262d7652007-05-20 21:52:49 +00003409 * to do better, by using wait(), and keeping track of background jobs
Eric Andersen25f27032001-04-26 23:22:31 +00003410 * at the same time. That would be a lot of work, and contrary
3411 * to the KISS philosophy of this program. */
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003412 retcode = fclose(p);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003413 free_pipe_list(inner.list_head, /* indent: */ 0);
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003414 debug_printf("closed FILE from child, retcode=%d\n", retcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003415 return retcode;
3416}
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003417#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003418
3419static int parse_group(o_string *dest, struct p_context *ctx,
3420 struct in_str *input, int ch)
3421{
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003422 int rcode;
3423 const char *endch = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003424 struct p_context sub;
3425 struct child_prog *child = ctx->child;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003426
3427 debug_printf_parse("parse_group entered\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003428 if (child->argv) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003429 syntax(NULL);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003430 debug_printf_parse("parse_group return 1: syntax error, groups and arglists don't mix\n");
3431 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003432 }
3433 initialize_context(&sub);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003434 endch = "}";
3435 if (ch == '(') {
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003436 endch = ")";
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003437 child->subshell = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003438 }
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003439 rcode = parse_stream(dest, &sub, input, endch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003440 if (rcode == 0) {
3441 done_word(dest, &sub); /* finish off the final word in the subcontext */
3442 done_pipe(&sub, PIPE_SEQ); /* and the final command there, too */
3443 child->group = sub.list_head;
3444 }
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003445 debug_printf_parse("parse_group return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003446 return rcode;
3447 /* child remains "open", available for possible redirects */
3448}
3449
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003450/* Basically useful version until someone wants to get fancier,
Eric Andersen25f27032001-04-26 23:22:31 +00003451 * see the bash man page under "Parameter Expansion" */
Denis Vlasenko15d78fb2007-01-30 22:28:21 +00003452static const char *lookup_param(const char *src)
Eric Andersen25f27032001-04-26 23:22:31 +00003453{
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003454 struct variable *var = get_local_var(src);
3455 if (var)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00003456 return strchr(var->varstr, '=') + 1;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003457 return NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003458}
3459
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003460#if ENABLE_HUSH_TICK
3461/* Subroutines for copying $(...) and `...` things */
3462static void add_till_backquote(o_string *dest, struct in_str *input);
3463/* '...' */
3464static void add_till_single_quote(o_string *dest, struct in_str *input)
3465{
3466 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003467 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003468 if (ch == EOF)
3469 break;
3470 if (ch == '\'')
3471 break;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003472 o_addqchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003473 }
3474}
3475/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
3476static void add_till_double_quote(o_string *dest, struct in_str *input)
3477{
3478 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003479 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003480 if (ch == '"')
3481 break;
3482 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003483 o_addqchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003484 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003485 }
3486 if (ch == EOF)
3487 break;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003488 o_addqchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003489 if (ch == '`') {
3490 add_till_backquote(dest, input);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003491 o_addqchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003492 continue;
3493 }
3494// if (ch == '$') ...
3495 }
3496}
3497/* Process `cmd` - copy contents until "`" is seen. Complicated by
3498 * \` quoting.
3499 * "Within the backquoted style of command substitution, backslash
3500 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
3501 * The search for the matching backquote shall be satisfied by the first
3502 * backquote found without a preceding backslash; during this search,
3503 * if a non-escaped backquote is encountered within a shell comment,
3504 * a here-document, an embedded command substitution of the $(command)
3505 * form, or a quoted string, undefined results occur. A single-quoted
3506 * or double-quoted string that begins, but does not end, within the
3507 * "`...`" sequence produces undefined results."
3508 * Example Output
3509 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
3510 */
3511static void add_till_backquote(o_string *dest, struct in_str *input)
3512{
3513 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003514 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003515 if (ch == '`')
3516 break;
3517 if (ch == '\\') { /* \x. Copy both chars unless it is \` */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003518 int ch2 = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003519 if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003520 o_addqchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003521 ch = ch2;
3522 }
3523 if (ch == EOF)
3524 break;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003525 o_addqchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003526 }
3527}
3528/* Process $(cmd) - copy contents until ")" is seen. Complicated by
3529 * quoting and nested ()s.
3530 * "With the $(command) style of command substitution, all characters
3531 * following the open parenthesis to the matching closing parenthesis
3532 * constitute the command. Any valid shell script can be used for command,
3533 * except a script consisting solely of redirections which produces
3534 * unspecified results."
3535 * Example Output
3536 * echo $(echo '(TEST)' BEST) (TEST) BEST
3537 * echo $(echo 'TEST)' BEST) TEST) BEST
3538 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
3539 */
3540static void add_till_closing_curly_brace(o_string *dest, struct in_str *input)
3541{
3542 int count = 0;
3543 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003544 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003545 if (ch == EOF)
3546 break;
3547 if (ch == '(')
3548 count++;
3549 if (ch == ')')
3550 if (--count < 0)
3551 break;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003552 o_addqchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003553 if (ch == '\'') {
3554 add_till_single_quote(dest, input);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003555 o_addqchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003556 continue;
3557 }
3558 if (ch == '"') {
3559 add_till_double_quote(dest, input);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003560 o_addqchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003561 continue;
3562 }
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00003563 if (ch == '\\') { /* \x. Copy verbatim. Important for \(, \) */
3564 ch = i_getch(input);
3565 if (ch == EOF)
3566 break;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003567 o_addqchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00003568 continue;
3569 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003570 }
3571}
3572#endif /* ENABLE_HUSH_TICK */
3573
Eric Andersen25f27032001-04-26 23:22:31 +00003574/* return code: 0 for OK, 1 for syntax error */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003575static int handle_dollar(o_string *dest, struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00003576{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003577 int ch = i_peek(input); /* first character after the $ */
Denis Vlasenkoff097622007-10-01 10:00:45 +00003578 unsigned char quote_mask = dest->o_quote ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003579
3580 debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003581 if (isalpha(ch)) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003582 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003583 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003584 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003585 i_getch(input);
3586 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003587 quote_mask = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003588 ch = i_peek(input);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003589 if (!isalnum(ch) && ch != '_')
3590 break;
Eric Andersen25f27032001-04-26 23:22:31 +00003591 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003592 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003593 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003594 make_one_char_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003595 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003596 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003597 i_getch(input);
3598 o_addchr(dest, ch | quote_mask);
3599 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003600 } else switch (ch) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003601 case '$': /* pid */
3602 case '!': /* last bg pid */
3603 case '?': /* last exit code */
3604 case '#': /* number of args */
3605 case '*': /* args */
3606 case '@': /* args */
3607 goto make_one_char_var;
Eric Andersen25f27032001-04-26 23:22:31 +00003608 case '{':
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003609 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3610 i_getch(input);
Eric Andersen25f27032001-04-26 23:22:31 +00003611 /* XXX maybe someone will try to escape the '}' */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003612 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003613 ch = i_getch(input);
Denis Vlasenkob0550012007-05-24 12:18:16 +00003614 if (ch == '}')
3615 break;
3616 if (!isalnum(ch) && ch != '_') {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003617 syntax("unterminated ${name}");
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003618 debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
3619 return 1;
3620 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003621 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003622 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003623 quote_mask = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003624 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003625 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003626 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003627#if ENABLE_HUSH_TICK
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00003628 case '(': {
3629 //int pos = dest->length;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003630 i_getch(input);
3631 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3632 o_addchr(dest, quote_mask | '`');
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003633 add_till_closing_curly_brace(dest, input);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00003634 //bb_error_msg("RES '%s'", dest->data + pos);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003635 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003636 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00003637 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003638#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003639 case '-':
3640 case '_':
3641 /* still unhandled, but should be eventually */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003642 bb_error_msg("unhandled syntax: $%c", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003643 return 1;
3644 break;
3645 default:
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003646 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00003647 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003648 debug_printf_parse("handle_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003649 return 0;
3650}
3651
Eric Andersen25f27032001-04-26 23:22:31 +00003652/* return code is 0 for normal exit, 1 for syntax error */
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003653static int parse_stream(o_string *dest, struct p_context *ctx,
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003654 struct in_str *input, const char *end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00003655{
"Vladimir N. Oleynik"4ccd2b42006-01-31 09:27:48 +00003656 int ch, m;
Eric Andersen25f27032001-04-26 23:22:31 +00003657 int redir_fd;
3658 redir_type redir_style;
3659 int next;
3660
Denis Vlasenkoff097622007-10-01 10:00:45 +00003661 /* Only double-quote state is handled in the state variable dest->o_quote.
Eric Andersen25f27032001-04-26 23:22:31 +00003662 * A single-quote triggers a bypass of the main loop until its mate is
Denis Vlasenkoff097622007-10-01 10:00:45 +00003663 * found. When recursing, quote state is passed in via dest->o_quote. */
Eric Andersen25f27032001-04-26 23:22:31 +00003664
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003665 debug_printf_parse("parse_stream entered, end_trigger='%s'\n", end_trigger);
3666
Denis Vlasenko1a735862007-05-23 00:32:25 +00003667 while (1) {
Denis Vlasenko1a735862007-05-23 00:32:25 +00003668 m = CHAR_IFS;
3669 next = '\0';
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003670 ch = i_getch(input);
Denis Vlasenko1a735862007-05-23 00:32:25 +00003671 if (ch != EOF) {
3672 m = charmap[ch];
3673 if (ch != '\n')
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003674 next = i_peek(input);
Denis Vlasenko1a735862007-05-23 00:32:25 +00003675 }
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003676 debug_printf_parse(": ch=%c (%d) m=%d quote=%d\n",
Denis Vlasenkoff097622007-10-01 10:00:45 +00003677 ch, ch, m, dest->o_quote);
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003678 if (m == CHAR_ORDINARY
Denis Vlasenkoff097622007-10-01 10:00:45 +00003679 || (m != CHAR_SPECIAL && dest->o_quote)
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003680 ) {
Denis Vlasenko170435c2007-05-23 13:01:10 +00003681 if (ch == EOF) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003682 syntax("unterminated \"");
Denis Vlasenko170435c2007-05-23 13:01:10 +00003683 debug_printf_parse("parse_stream return 1: unterminated \"\n");
3684 return 1;
3685 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003686 o_addQchr(dest, ch);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003687 continue;
3688 }
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003689 if (m == CHAR_IFS) {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003690 if (done_word(dest, ctx)) {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003691 debug_printf_parse("parse_stream return 1: done_word!=0\n");
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003692 return 1;
Eric Andersenaac75e52001-04-30 18:18:45 +00003693 }
Denis Vlasenko1a735862007-05-23 00:32:25 +00003694 if (ch == EOF)
3695 break;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003696 /* If we aren't performing a substitution, treat
3697 * a newline as a command separator.
3698 * [why we don't handle it exactly like ';'? --vda] */
3699 if (end_trigger && ch == '\n') {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003700 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003701 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003702 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003703 if (end_trigger) {
3704 if (!dest->o_quote && strchr(end_trigger, ch)) {
3705 /* Special case: (...word) makes last word terminate,
3706 * as if ';' is seen */
3707 if (ch == ')') {
3708 done_word(dest, ctx);
3709 done_pipe(ctx, PIPE_SEQ);
3710 }
3711 if (ctx->res_w == RES_NONE) {
3712 debug_printf_parse("parse_stream return 0: end_trigger char found\n");
3713 return 0;
3714 }
3715 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003716 }
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003717 if (m == CHAR_IFS)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003718 continue;
3719 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00003720 case '#':
Denis Vlasenkoff097622007-10-01 10:00:45 +00003721 if (dest->length == 0 && !dest->o_quote) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003722 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003723 ch = i_peek(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003724 if (ch == EOF || ch == '\n')
3725 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003726 i_getch(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003727 }
Eric Andersen25f27032001-04-26 23:22:31 +00003728 } else {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003729 o_addQchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003730 }
3731 break;
3732 case '\\':
3733 if (next == EOF) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003734 syntax("\\<eof>");
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003735 debug_printf_parse("parse_stream return 1: \\<eof>\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003736 return 1;
3737 }
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00003738 /* bash:
3739 * "The backslash retains its special meaning [in "..."]
3740 * only when followed by one of the following characters:
3741 * $, `, ", \, or <newline>. A double quote may be quoted
3742 * within double quotes by preceding it with a backslash.
3743 * If enabled, history expansion will be performed unless
3744 * an ! appearing in double quotes is escaped using
3745 * a backslash. The backslash preceding the ! is not removed."
3746 */
3747 if (dest->o_quote) {
3748 if (strchr("$`\"\\", next) != NULL) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003749 o_addqchr(dest, i_getch(input));
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00003750 } else {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003751 o_addqchr(dest, '\\');
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00003752 }
3753 } else {
3754 o_addchr(dest, '\\');
3755 o_addchr(dest, i_getch(input));
3756 }
Eric Andersen25f27032001-04-26 23:22:31 +00003757 break;
3758 case '$':
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003759 if (handle_dollar(dest, input) != 0) {
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003760 debug_printf_parse("parse_stream return 1: handle_dollar returned non-0\n");
3761 return 1;
3762 }
Eric Andersen25f27032001-04-26 23:22:31 +00003763 break;
3764 case '\'':
3765 dest->nonnull = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003766 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003767 ch = i_getch(input);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003768 if (ch == EOF) {
3769 syntax("unterminated '");
3770 debug_printf_parse("parse_stream return 1: unterminated '\n");
3771 return 1;
3772 }
3773 if (ch == '\'')
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003774 break;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003775 o_addqchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003776 }
Eric Andersen25f27032001-04-26 23:22:31 +00003777 break;
3778 case '"':
3779 dest->nonnull = 1;
Denis Vlasenkoff097622007-10-01 10:00:45 +00003780 dest->o_quote ^= 1; /* invert */
Eric Andersen25f27032001-04-26 23:22:31 +00003781 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003782#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003783 case '`': {
3784 //int pos = dest->length;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003785 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3786 o_addchr(dest, dest->o_quote ? 0x80 | '`' : '`');
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003787 add_till_backquote(dest, input);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003788 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003789 //bb_error_msg("RES '%s'", dest->data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00003790 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003791 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003792#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003793 case '>':
3794 redir_fd = redirect_opt_num(dest);
3795 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003796 redir_style = REDIRECT_OVERWRITE;
Eric Andersen25f27032001-04-26 23:22:31 +00003797 if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003798 redir_style = REDIRECT_APPEND;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003799 i_getch(input);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003800 }
3801#if 0
3802 else if (next == '(') {
3803 syntax(">(process) not supported");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003804 debug_printf_parse("parse_stream return 1: >(process) not supported\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003805 return 1;
3806 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003807#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003808 setup_redirect(ctx, redir_fd, redir_style, input);
3809 break;
3810 case '<':
3811 redir_fd = redirect_opt_num(dest);
3812 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003813 redir_style = REDIRECT_INPUT;
Eric Andersen25f27032001-04-26 23:22:31 +00003814 if (next == '<') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003815 redir_style = REDIRECT_HEREIS;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003816 i_getch(input);
Eric Andersen25f27032001-04-26 23:22:31 +00003817 } else if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003818 redir_style = REDIRECT_IO;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003819 i_getch(input);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003820 }
3821#if 0
3822 else if (next == '(') {
3823 syntax("<(process) not supported");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003824 debug_printf_parse("parse_stream return 1: <(process) not supported\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003825 return 1;
3826 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003827#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003828 setup_redirect(ctx, redir_fd, redir_style, input);
3829 break;
3830 case ';':
3831 done_word(dest, ctx);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003832 done_pipe(ctx, PIPE_SEQ);
Eric Andersen25f27032001-04-26 23:22:31 +00003833 break;
3834 case '&':
3835 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003836 if (next == '&') {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003837 i_getch(input);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003838 done_pipe(ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00003839 } else {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003840 done_pipe(ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00003841 }
3842 break;
3843 case '|':
3844 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003845 if (next == '|') {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003846 i_getch(input);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003847 done_pipe(ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00003848 } else {
3849 /* we could pick up a file descriptor choice here
3850 * with redirect_opt_num(), but bash doesn't do it.
3851 * "echo foo 2| cat" yields "foo 2". */
3852 done_command(ctx);
3853 }
3854 break;
3855 case '(':
3856 case '{':
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003857 if (parse_group(dest, ctx, input, ch) != 0) {
3858 debug_printf_parse("parse_stream return 1: parse_group returned non-0\n");
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003859 return 1;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003860 }
Eric Andersen25f27032001-04-26 23:22:31 +00003861 break;
3862 case ')':
3863 case '}':
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003864 /* proper use of this character is caught by end_trigger */
3865 syntax("unexpected } or )");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003866 debug_printf_parse("parse_stream return 1: unexpected '}'\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003867 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003868 default:
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003869 if (ENABLE_HUSH_DEBUG)
3870 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003871 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003872 } /* while (1) */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003873 /* Complain if quote? No, maybe we just finished a command substitution
Eric Andersen25f27032001-04-26 23:22:31 +00003874 * that was quoted. Example:
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003875 * $ echo "`cat foo` plus more"
Eric Andersen25f27032001-04-26 23:22:31 +00003876 * and we just got the EOF generated by the subshell that ran "cat foo"
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003877 * The only real complaint is if we got an EOF when end_trigger != NULL,
Eric Andersen25f27032001-04-26 23:22:31 +00003878 * that is, we were really supposed to get end_trigger, and never got
3879 * one before the EOF. Can't use the standard "syntax error" return code,
3880 * so that parse_stream_outer can distinguish the EOF and exit smoothly. */
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003881 debug_printf_parse("parse_stream return %d\n", -(end_trigger != NULL));
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003882 if (end_trigger)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003883 return -1;
Eric Andersen25f27032001-04-26 23:22:31 +00003884 return 0;
3885}
3886
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003887static void set_in_charmap(const char *set, int code)
Eric Andersen25f27032001-04-26 23:22:31 +00003888{
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003889 while (*set)
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003890 charmap[(unsigned char)*set++] = code;
Eric Andersen25f27032001-04-26 23:22:31 +00003891}
3892
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003893static void update_charmap(void)
Eric Andersen25f27032001-04-26 23:22:31 +00003894{
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003895 /* char *ifs and char charmap[256] are both globals. */
Eric Andersen25f27032001-04-26 23:22:31 +00003896 ifs = getenv("IFS");
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003897 if (ifs == NULL)
3898 ifs = " \t\n";
Eric Andersen25f27032001-04-26 23:22:31 +00003899 /* Precompute a list of 'flow through' behavior so it can be treated
3900 * quickly up front. Computation is necessary because of IFS.
3901 * Special case handling of IFS == " \t\n" is not implemented.
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003902 * The charmap[] array only really needs two bits each,
3903 * and on most machines that would be faster (reduced L1 cache use).
Eric Andersen25f27032001-04-26 23:22:31 +00003904 */
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003905 memset(charmap, CHAR_ORDINARY, sizeof(charmap));
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003906#if ENABLE_HUSH_TICK
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003907 set_in_charmap("\\$\"`", CHAR_SPECIAL);
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003908#else
3909 set_in_charmap("\\$\"", CHAR_SPECIAL);
3910#endif
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003911 set_in_charmap("<>;&|(){}#'", CHAR_ORDINARY_IF_QUOTED);
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003912 set_in_charmap(ifs, CHAR_IFS); /* are ordinary if quoted */
Eric Andersen25f27032001-04-26 23:22:31 +00003913}
3914
Eric Andersenaff114c2004-04-14 17:51:38 +00003915/* most recursion does not come through here, the exception is
Denis Vlasenko170435c2007-05-23 13:01:10 +00003916 * from builtin_source() and builtin_eval() */
3917static int parse_and_run_stream(struct in_str *inp, int parse_flag)
Eric Andersen25f27032001-04-26 23:22:31 +00003918{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003919//TODO: PARSEFLAG_SEMICOLON bit is always set in parse_flag. fishy
3920//TODO: PARSEFLAG_REPARSING bit is never set (grep for it). wow
Eric Andersen25f27032001-04-26 23:22:31 +00003921 struct p_context ctx;
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003922 o_string temp = NULL_O_STRING;
Eric Andersen25f27032001-04-26 23:22:31 +00003923 int rcode;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003924
Eric Andersen25f27032001-04-26 23:22:31 +00003925 do {
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003926// parse_type always has PARSEFLAG_SEMICOLON, can we remove all checks for this bit?
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003927// After that, the whole parse_type fiels is not needed.
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003928 ctx.parse_type = parse_flag;
Eric Andersen25f27032001-04-26 23:22:31 +00003929 initialize_context(&ctx);
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003930 update_charmap();
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003931 if (!(parse_flag & PARSEFLAG_SEMICOLON) || (parse_flag & PARSEFLAG_REPARSING))
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003932 set_in_charmap(";$&|", CHAR_ORDINARY);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003933#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00003934 inp->promptmode = 0; /* PS1 */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003935#endif
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003936 /* We will stop & execute after each ';' or '\n'.
3937 * Example: "sleep 9999; echo TEST" + ctrl-C:
3938 * TEST should be printed */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003939 rcode = parse_stream(&temp, &ctx, inp, ";\n");
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003940 if (rcode != 1 && ctx.old_flag != 0) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003941 syntax(NULL);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003942 }
3943 if (rcode != 1 && ctx.old_flag == 0) {
3944 done_word(&temp, &ctx);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003945 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003946 debug_print_tree(ctx.list_head, 0);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003947 debug_printf_exec("parse_stream_outer: run_and_free_list\n");
3948 run_and_free_list(ctx.list_head);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003949 } else {
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003950 /* We arrive here also if rcode == 1 (error in parse_stream) */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003951 if (ctx.old_flag != 0) {
3952 free(ctx.stack);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003953 o_reset(&temp);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003954 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003955 temp.nonnull = 0;
Denis Vlasenkoff097622007-10-01 10:00:45 +00003956 temp.o_quote = 0;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003957 free_pipe_list(ctx.list_head, /* indent: */ 0);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003958 /* Discard all unprocessed line input, force prompt on */
3959 inp->p = NULL;
3960 inp->promptme = 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003961 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003962 o_free(&temp);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003963 /* loop on syntax errors, return on EOF: */
3964 } while (rcode != -1 && !(parse_flag & PARSEFLAG_EXIT_FROM_LOOP));
Eric Andersen25f27032001-04-26 23:22:31 +00003965 return 0;
3966}
3967
Denis Vlasenko170435c2007-05-23 13:01:10 +00003968static int parse_and_run_string(const char *s, int parse_flag)
Eric Andersen25f27032001-04-26 23:22:31 +00003969{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003970//TODO: PARSEFLAG_SEMICOLON bit is always set in parse_flag. fishy
Eric Andersen25f27032001-04-26 23:22:31 +00003971 struct in_str input;
3972 setup_string_in_str(&input, s);
Denis Vlasenko170435c2007-05-23 13:01:10 +00003973 return parse_and_run_stream(&input, parse_flag);
Eric Andersen25f27032001-04-26 23:22:31 +00003974}
3975
Denis Vlasenko170435c2007-05-23 13:01:10 +00003976static int parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00003977{
3978 int rcode;
3979 struct in_str input;
3980 setup_file_in_str(&input, f);
Denis Vlasenko170435c2007-05-23 13:01:10 +00003981 rcode = parse_and_run_stream(&input, PARSEFLAG_SEMICOLON);
Eric Andersen25f27032001-04-26 23:22:31 +00003982 return rcode;
3983}
3984
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003985#if ENABLE_HUSH_JOB
Eric Andersen6c947d22001-06-25 22:24:38 +00003986/* Make sure we have a controlling tty. If we get started under a job
3987 * aware app (like bash for example), make sure we are now in charge so
3988 * we don't fight over who gets the foreground */
Eric Anderseneaecbf32001-10-31 10:41:31 +00003989static void setup_job_control(void)
Eric Andersen52a97ca2001-06-22 06:49:26 +00003990{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003991 pid_t shell_pgrp;
3992
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00003993 saved_task_pgrp = shell_pgrp = getpgrp();
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003994 debug_printf_jobs("saved_task_pgrp=%d\n", saved_task_pgrp);
Denis Vlasenko96e1b382007-09-30 23:50:48 +00003995 close_on_exec_on(interactive_fd);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003996
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00003997 /* If we were ran as 'hush &',
3998 * sleep until we are in the foreground. */
3999 while (tcgetpgrp(interactive_fd) != shell_pgrp) {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00004000 /* Send TTIN to ourself (should stop us) */
Denis Vlasenkoff131b92007-04-10 15:42:06 +00004001 kill(- shell_pgrp, SIGTTIN);
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00004002 shell_pgrp = getpgrp();
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004003 }
Eric Andersen52a97ca2001-06-22 06:49:26 +00004004
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004005 /* Ignore job-control and misc signals. */
4006 set_jobctrl_sighandler(SIG_IGN);
4007 set_misc_sighandler(SIG_IGN);
4008//huh? signal(SIGCHLD, SIG_IGN);
4009
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00004010 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004011 set_fatal_sighandler(sigexit);
Eric Andersen6c947d22001-06-25 22:24:38 +00004012
4013 /* Put ourselves in our own process group. */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00004014 setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
Eric Andersen6c947d22001-06-25 22:24:38 +00004015 /* Grab control of the terminal. */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00004016 tcsetpgrp(interactive_fd, getpid());
Eric Andersen6c947d22001-06-25 22:24:38 +00004017}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00004018#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00004019
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00004020int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00004021int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00004022{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00004023 static const char version_str[] ALIGN1 = "HUSH_VERSION="HUSH_VER_STR;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00004024 static const struct variable const_shell_ver = {
4025 .next = NULL,
4026 .varstr = (char*)version_str,
4027 .max_len = 1, /* 0 can provoke free(name) */
4028 .flg_export = 1,
4029 .flg_read_only = 1,
4030 };
4031
Eric Andersen25f27032001-04-26 23:22:31 +00004032 int opt;
4033 FILE *input;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004034 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004035 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00004036
Denis Vlasenko574f2f42008-02-27 18:41:59 +00004037 INIT_G();
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004038
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00004039 /* Deal with HUSH_VERSION */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00004040 shell_ver = const_shell_ver; /* copying struct here */
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004041 top_var = &shell_ver;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00004042 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
4043 /* Initialize our shell local variables with the values
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004044 * currently living in the environment */
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004045 cur_var = top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00004046 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004047 if (e) while (*e) {
4048 char *value = strchr(*e, '=');
4049 if (value) { /* paranoia */
4050 cur_var->next = xzalloc(sizeof(*cur_var));
4051 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00004052 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004053 cur_var->max_len = strlen(*e);
4054 cur_var->flg_export = 1;
4055 }
4056 e++;
4057 }
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00004058 putenv((char *)version_str); /* reinstate HUSH_VERSION */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00004059
Denis Vlasenko38f63192007-01-22 09:03:07 +00004060#if ENABLE_FEATURE_EDITING
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00004061 line_input_state = new_line_input_t(FOR_SHELL);
4062#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004063 /* XXX what should these be while sourcing /etc/profile? */
4064 global_argc = argc;
4065 global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00004066 /* Initialize some more globals to non-zero values */
4067 set_cwd();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004068#if ENABLE_HUSH_INTERACTIVE
4069#if ENABLE_FEATURE_EDITING
4070 cmdedit_set_initial_prompt();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004071#endif
Eric Andersen94ac2442001-05-22 19:05:18 +00004072 PS2 = "> ";
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004073#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00004074
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004075 if (EXIT_SUCCESS) /* otherwise is already done */
4076 last_return_code = EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +00004077
4078 if (argv[0] && argv[0][0] == '-') {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004079 debug_printf("sourcing /etc/profile\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00004080 input = fopen("/etc/profile", "r");
4081 if (input != NULL) {
Denis Vlasenkoa0898172007-10-01 09:59:01 +00004082 close_on_exec_on(fileno(input));
Denis Vlasenko170435c2007-05-23 13:01:10 +00004083 parse_and_run_file(input);
Eric Andersena90f20b2001-06-26 23:00:21 +00004084 fclose(input);
4085 }
Eric Andersen25f27032001-04-26 23:22:31 +00004086 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004087 input = stdin;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004088
Eric Andersen25f27032001-04-26 23:22:31 +00004089 while ((opt = getopt(argc, argv, "c:xif")) > 0) {
4090 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004091 case 'c':
Denis Vlasenko5f786c22007-04-20 08:35:45 +00004092 global_argv = argv + optind;
4093 global_argc = argc - optind;
Denis Vlasenko170435c2007-05-23 13:01:10 +00004094 opt = parse_and_run_string(optarg, PARSEFLAG_SEMICOLON);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004095 goto final_return;
4096 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00004097 /* Well, we cannot just declare interactiveness,
4098 * we have to have some stuff (ctty, etc) */
4099 /* interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004100 break;
4101 case 'f':
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00004102 fake_mode = 1;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004103 break;
4104 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00004105#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004106 fprintf(stderr, "Usage: sh [FILE]...\n"
4107 " or: sh -c command [args]...\n\n");
4108 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00004109#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004110 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00004111#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004112 }
4113 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004114#if ENABLE_HUSH_JOB
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004115 /* A shell is interactive if the '-i' flag was given, or if all of
Eric Andersen25f27032001-04-26 23:22:31 +00004116 * the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00004117 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00004118 * no arguments remaining or the -s flag given
4119 * standard input is a terminal
4120 * standard output is a terminal
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004121 * Refer to Posix.2, the description of the 'sh' utility. */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004122 if (argv[optind] == NULL && input == stdin
4123 && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)
4124 ) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004125 saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
4126 debug_printf("saved_tty_pgrp=%d\n", saved_tty_pgrp);
4127 if (saved_tty_pgrp >= 0) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004128 /* try to dup to high fd#, >= 255 */
4129 interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
4130 if (interactive_fd < 0) {
4131 /* try to dup to any fd */
4132 interactive_fd = dup(STDIN_FILENO);
4133 if (interactive_fd < 0)
4134 /* give up */
4135 interactive_fd = 0;
4136 }
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00004137 // TODO: track & disallow any attempts of user
4138 // to (inadvertently) close/redirect it
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004139 }
Eric Andersen25f27032001-04-26 23:22:31 +00004140 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004141 debug_printf("interactive_fd=%d\n", interactive_fd);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004142 if (interactive_fd) {
Denis Vlasenko08126f62008-02-11 08:39:11 +00004143 fcntl(interactive_fd, F_SETFD, FD_CLOEXEC);
Eric Andersen25f27032001-04-26 23:22:31 +00004144 /* Looks like they want an interactive shell */
Eric Andersen52a97ca2001-06-22 06:49:26 +00004145 setup_job_control();
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00004146 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00004147 * (we reset die_sleep = 0 whereever we [v]fork) */
4148 die_sleep = -1;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004149 if (setjmp(die_jmp)) {
4150 /* xfunc has failed! die die die */
4151 hush_exit(xfunc_error_retval);
4152 }
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00004153#if !ENABLE_FEATURE_SH_EXTRA_QUIET
Denis Vlasenkoca525b42007-06-13 12:27:17 +00004154 printf("\n\n%s hush - the humble shell v"HUSH_VER_STR"\n", bb_banner);
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00004155 printf("Enter 'help' for a list of built-in commands.\n\n");
4156#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00004157 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004158#elif ENABLE_HUSH_INTERACTIVE
4159/* no job control compiled, only prompt/line editing */
4160 if (argv[optind] == NULL && input == stdin
4161 && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)
4162 ) {
4163 interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
4164 if (interactive_fd < 0) {
4165 /* try to dup to any fd */
4166 interactive_fd = dup(STDIN_FILENO);
4167 if (interactive_fd < 0)
4168 /* give up */
4169 interactive_fd = 0;
4170 }
Denis Vlasenko4830fc52008-05-25 21:50:55 +00004171 if (interactive_fd) {
Denis Vlasenko08126f62008-02-11 08:39:11 +00004172 fcntl(interactive_fd, F_SETFD, FD_CLOEXEC);
Denis Vlasenko4830fc52008-05-25 21:50:55 +00004173 set_misc_sighandler(SIG_IGN);
4174 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004175 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00004176#endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004177
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004178 if (argv[optind] == NULL) {
Denis Vlasenko170435c2007-05-23 13:01:10 +00004179 opt = parse_and_run_file(stdin);
Denis Vlasenko05743d72008-02-10 12:10:08 +00004180 } else {
4181 debug_printf("\nrunning script '%s'\n", argv[optind]);
4182 global_argv = argv + optind;
4183 global_argc = argc - optind;
4184 input = xfopen(argv[optind], "r");
Denis Vlasenko459a5ad2008-02-11 08:35:03 +00004185 fcntl(fileno(input), F_SETFD, FD_CLOEXEC);
Denis Vlasenko05743d72008-02-10 12:10:08 +00004186 opt = parse_and_run_file(input);
Eric Andersen25f27032001-04-26 23:22:31 +00004187 }
Eric Andersen25f27032001-04-26 23:22:31 +00004188
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004189 final_return:
4190
Denis Vlasenko38f63192007-01-22 09:03:07 +00004191#if ENABLE_FEATURE_CLEAN_UP
Eric Andersenaeb44c42001-05-22 20:29:00 +00004192 fclose(input);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004193 if (cwd != bb_msg_unknown)
Eric Andersenaeb44c42001-05-22 20:29:00 +00004194 free((char*)cwd);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004195 cur_var = top_var->next;
4196 while (cur_var) {
4197 struct variable *tmp = cur_var;
4198 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00004199 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004200 cur_var = cur_var->next;
4201 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00004202 }
Eric Andersen25f27032001-04-26 23:22:31 +00004203#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004204 hush_exit(opt ? opt : last_return_code);
Eric Andersen25f27032001-04-26 23:22:31 +00004205}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00004206
4207
4208#if ENABLE_LASH
4209int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
4210int lash_main(int argc, char **argv)
4211{
4212 //bb_error_msg("lash is deprecated, please use hush instead");
4213 return hush_main(argc, argv);
4214}
4215#endif