blob: e2259ce38add6d9700d640d375a15be8e84d6131 [file] [log] [blame]
Eric Andersen25f27032001-04-26 23:22:31 +00001/* vi: set sw=4 ts=4: */
2/*
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003 * 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.
Eric Andersen25f27032001-04-26 23:22:31 +00007 *
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 Vlasenko424f79b2009-03-22 14:23:34 +000025 * and many builtins derived from contributions by Erik Andersen.
26 * 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 *
Mike Frysinger25a6ca02009-03-28 13:59:26 +000039 * POSIX syntax not implemented:
Eric Andersen78a7c992001-05-15 16:30:25 +000040 * aliases
Eric Andersen25f27032001-04-26 23:22:31 +000041 * <(list) and >(list) Process Substitution
Eric Andersen25f27032001-04-26 23:22:31 +000042 * Here Documents ( << word )
43 * Functions
Mike Frysinger25a6ca02009-03-28 13:59:26 +000044 * Tilde Expansion
Mike Frysinger6379bb42009-03-28 18:55:03 +000045 * Parameter Expansion for substring processing ${var#word} ${var%word}
Mike Frysinger25a6ca02009-03-28 13:59:26 +000046 *
47 * Bash stuff maybe optional enable:
48 * &> and >& redirection of stdout+stderr
49 * Brace expansion
50 * reserved words: [[ ]] function select
Mike Frysinger6379bb42009-03-28 18:55:03 +000051 * substrings ${var:1:5}
Mike Frysinger25a6ca02009-03-28 13:59:26 +000052 *
Eric Andersen25f27032001-04-26 23:22:31 +000053 * Major bugs:
Denis Vlasenkob81b3df2007-04-28 16:48:04 +000054 * job handling woefully incomplete and buggy (improved --vda)
Eric Andersen25f27032001-04-26 23:22:31 +000055 * to-do:
Eric Andersen83a2ae22001-05-07 17:59:25 +000056 * port selected bugfixes from post-0.49 busybox lash - done?
Eric Andersen83a2ae22001-05-07 17:59:25 +000057 * change { and } from special chars to reserved words
Denis Vlasenkobcb25532008-07-28 23:04:34 +000058 * builtins: return, trap, ulimit
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +000059 * test magic exec with redirection only
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?
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +000064 * maybe change charmap[] to use 2-bit entries
Eric Andersen25f27032001-04-26 23:22:31 +000065 *
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000066 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersen25f27032001-04-26 23:22:31 +000067 */
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +000068
Denis Vlasenko1aa7e472007-11-28 06:49:03 +000069#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
Denis Vlasenko424f79b2009-03-22 14:23:34 +000070//TODO: pull in some .h and find out whether we have SINGLE_APPLET_MAIN?
Denis Vlasenko61befda2008-11-25 01:36:03 +000071//#include "applet_tables.h" doesn't work
Denis Vlasenkobe709c22008-07-28 00:01:16 +000072#include <glob.h>
73/* #include <dmalloc.h> */
74#if ENABLE_HUSH_CASE
75#include <fnmatch.h>
76#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +000077
Mike Frysinger98c52642009-04-02 10:02:37 +000078#include "math.h"
79
Denis Vlasenko424f79b2009-03-22 14:23:34 +000080#define HUSH_VER_STR "0.92"
Denis Vlasenkod01ff132007-05-02 21:40:23 +000081
Denis Vlasenko61befda2008-11-25 01:36:03 +000082#if defined SINGLE_APPLET_MAIN
83/* STANDALONE does not make sense, and won't compile */
84#undef CONFIG_FEATURE_SH_STANDALONE
85#undef ENABLE_FEATURE_SH_STANDALONE
86#undef USE_FEATURE_SH_STANDALONE
87#define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__
88#define ENABLE_FEATURE_SH_STANDALONE 0
89#define USE_FEATURE_SH_STANDALONE(...)
90#define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__
91#endif
92
Denis Vlasenko05743d72008-02-10 12:10:08 +000093#if !BB_MMU && ENABLE_HUSH_TICK
94//#undef ENABLE_HUSH_TICK
95//#define ENABLE_HUSH_TICK 0
96#warning On NOMMU, hush command substitution is dangerous.
97#warning Dont use it for commands which produce lots of output.
98#warning For more info see shell/hush.c, generate_stream_from_list().
99#endif
100
Denis Vlasenko05743d72008-02-10 12:10:08 +0000101#if !ENABLE_HUSH_INTERACTIVE
102#undef ENABLE_FEATURE_EDITING
103#define ENABLE_FEATURE_EDITING 0
104#undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
105#define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000106#endif
107
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000108/* Do we support ANY keywords? */
109#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
110#define HAS_KEYWORDS 1
111#define IF_HAS_KEYWORDS(...) __VA_ARGS__
112#define IF_HAS_NO_KEYWORDS(...)
113#else
114#define HAS_KEYWORDS 0
115#define IF_HAS_KEYWORDS(...)
116#define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
117#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000118
Denis Vlasenko371de4a2008-10-14 12:43:13 +0000119/* Keep unconditionally on for now */
120#define HUSH_DEBUG 1
121/* In progress... */
122#define ENABLE_HUSH_FUNCTIONS 0
123
124
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000125/* If you comment out one of these below, it will be #defined later
126 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000127#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000128/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000129#define debug_printf_parse(...) do {} while (0)
130#define debug_print_tree(a, b) do {} while (0)
131#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000132#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000133#define debug_printf_jobs(...) do {} while (0)
134#define debug_printf_expand(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000135#define debug_printf_glob(...) do {} while (0)
136#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000137#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000138#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000139
140#ifndef debug_printf
141#define debug_printf(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000142#endif
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000143
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000144#ifndef debug_printf_parse
145#define debug_printf_parse(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000146#endif
147
148#ifndef debug_printf_exec
149#define debug_printf_exec(...) fprintf(stderr, __VA_ARGS__)
150#endif
151
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000152#ifndef debug_printf_env
153#define debug_printf_env(...) fprintf(stderr, __VA_ARGS__)
154#endif
155
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000156#ifndef debug_printf_jobs
157#define debug_printf_jobs(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000158#define DEBUG_JOBS 1
159#else
160#define DEBUG_JOBS 0
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000161#endif
162
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000163#ifndef debug_printf_expand
164#define debug_printf_expand(...) fprintf(stderr, __VA_ARGS__)
165#define DEBUG_EXPAND 1
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000166#else
167#define DEBUG_EXPAND 0
168#endif
169
170#ifndef debug_printf_glob
171#define debug_printf_glob(...) fprintf(stderr, __VA_ARGS__)
172#define DEBUG_GLOB 1
173#else
174#define DEBUG_GLOB 0
175#endif
176
177#ifndef debug_printf_list
178#define debug_printf_list(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000179#endif
180
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000181#ifndef debug_printf_subst
182#define debug_printf_subst(...) fprintf(stderr, __VA_ARGS__)
183#endif
184
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000185#ifndef debug_printf_clean
186/* broken, of course, but OK for testing */
187static const char *indenter(int i)
188{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000189 static const char blanks[] ALIGN1 =
190 " ";
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000191 return &blanks[sizeof(blanks) - i - 1];
192}
193#define debug_printf_clean(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkoc666f712007-05-16 22:18:54 +0000194#define DEBUG_CLEAN 1
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +0000195#endif
196
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000197#if DEBUG_EXPAND
198static void debug_print_strings(const char *prefix, char **vv)
199{
200 fprintf(stderr, "%s:\n", prefix);
201 while (*vv)
202 fprintf(stderr, " '%s'\n", *vv++);
203}
204#else
205#define debug_print_strings(prefix, vv) ((void)0)
206#endif
207
Denis Vlasenkof962a032007-11-23 12:50:54 +0000208/*
209 * Leak hunting. Use hush_leaktool.sh for post-processing.
210 */
211#ifdef FOR_HUSH_LEAKTOOL
Denis Vlasenkoccce59d2008-06-16 14:35:57 +0000212/* suppress "warning: no previous prototype..." */
213void *xxmalloc(int lineno, size_t size);
214void *xxrealloc(int lineno, void *ptr, size_t size);
215char *xxstrdup(int lineno, const char *str);
216void xxfree(void *ptr);
Denis Vlasenkof962a032007-11-23 12:50:54 +0000217void *xxmalloc(int lineno, size_t size)
218{
219 void *ptr = xmalloc((size + 0xff) & ~0xff);
220 fprintf(stderr, "line %d: malloc %p\n", lineno, ptr);
221 return ptr;
222}
223void *xxrealloc(int lineno, void *ptr, size_t size)
224{
225 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
226 fprintf(stderr, "line %d: realloc %p\n", lineno, ptr);
227 return ptr;
228}
229char *xxstrdup(int lineno, const char *str)
230{
231 char *ptr = xstrdup(str);
232 fprintf(stderr, "line %d: strdup %p\n", lineno, ptr);
233 return ptr;
234}
235void xxfree(void *ptr)
236{
237 fprintf(stderr, "free %p\n", ptr);
238 free(ptr);
239}
240#define xmalloc(s) xxmalloc(__LINE__, s)
241#define xrealloc(p, s) xxrealloc(__LINE__, p, s)
242#define xstrdup(s) xxstrdup(__LINE__, s)
243#define free(p) xxfree(p)
244#endif
245
246
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000247static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="HUSH_VER_STR;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000248
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000249#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000250
Denis Vlasenko5703c222008-06-15 11:49:42 +0000251#define SPECIAL_VAR_SYMBOL 3
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000252#define PARSEFLAG_EXIT_FROM_LOOP 1
Eric Andersen25f27032001-04-26 23:22:31 +0000253
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000254typedef enum redir_type {
Eric Andersen25f27032001-04-26 23:22:31 +0000255 REDIRECT_INPUT = 1,
256 REDIRECT_OVERWRITE = 2,
257 REDIRECT_APPEND = 3,
258 REDIRECT_HEREIS = 4,
259 REDIRECT_IO = 5
260} redir_type;
261
Denis Vlasenko55789c62008-06-18 16:30:42 +0000262/* The descrip member of this structure is only used to make
263 * debugging output pretty */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000264static const struct {
265 int mode;
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000266 signed char default_fd;
267 char descrip[3];
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000268} redir_table[] = {
Eric Andersen25f27032001-04-26 23:22:31 +0000269 { 0, 0, "()" },
270 { O_RDONLY, 0, "<" },
271 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
272 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
273 { O_RDONLY, -1, "<<" },
274 { O_RDWR, 1, "<>" }
275};
276
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000277typedef enum pipe_style {
Eric Andersen25f27032001-04-26 23:22:31 +0000278 PIPE_SEQ = 1,
279 PIPE_AND = 2,
280 PIPE_OR = 3,
281 PIPE_BG = 4,
282} pipe_style;
283
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000284typedef enum reserved_style {
Eric Andersen25f27032001-04-26 23:22:31 +0000285 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000286#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000287 RES_IF ,
288 RES_THEN ,
289 RES_ELIF ,
290 RES_ELSE ,
291 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000292#endif
293#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000294 RES_FOR ,
295 RES_WHILE ,
296 RES_UNTIL ,
297 RES_DO ,
298 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000299#endif
300#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000301 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000302#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000303#if ENABLE_HUSH_CASE
304 RES_CASE ,
305 /* two pseudo-keywords support contrived "case" syntax: */
306 RES_MATCH , /* "word)" */
307 RES_CASEI , /* "this command is inside CASE" */
308 RES_ESAC ,
309#endif
310 RES_XXXX ,
311 RES_SNTX
Eric Andersen25f27032001-04-26 23:22:31 +0000312} reserved_style;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000313
Eric Andersen25f27032001-04-26 23:22:31 +0000314struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000315 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000316 char *rd_filename; /* filename */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000317 int fd; /* file descriptor being redirected */
318 int dup; /* -1, or file descriptor being duplicated */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000319 smallint /*enum redir_type*/ rd_type;
Eric Andersen25f27032001-04-26 23:22:31 +0000320};
321
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000322struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000323 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000324 int assignment_cnt; /* how many argv[i] are assignments? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000325 smallint is_stopped; /* is the command currently running? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000326 smallint grp_type; /* GRP_xxx */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000327 struct pipe *group; /* if non-NULL, this "prog" is {} group,
328 * subshell, or a compound statement */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000329 char **argv; /* command name and arguments */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000330 struct redir_struct *redirects; /* I/O redirections */
Eric Andersen25f27032001-04-26 23:22:31 +0000331};
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000332/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
333 * and on execution these are substituted with their values.
334 * Substitution can make _several_ words out of one argv[n]!
335 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000336 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000337 */
Denis Vlasenko371de4a2008-10-14 12:43:13 +0000338#define GRP_NORMAL 0
339#define GRP_SUBSHELL 1
340#if ENABLE_HUSH_FUNCTIONS
341#define GRP_FUNCTION 2
342#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000343
344struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000345 struct pipe *next;
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000346 int num_cmds; /* total number of commands in job */
347 int alive_cmds; /* number of commands running (not exited) */
348 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000349#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000350 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000351 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000352 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000353#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000354 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000355 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000356 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
357 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000358};
359
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000360/* This holds pointers to the various results of parsing */
361struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000362 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000363 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000364 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000365 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000366 /* last command in pipe (being constructed right now) */
367 struct command *command;
368 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000369 struct redir_struct *pending_redirect;
370#if HAS_KEYWORDS
371 smallint ctx_res_w;
372 smallint ctx_inverted; /* "! cmd | cmd" */
373#if ENABLE_HUSH_CASE
374 smallint ctx_dsemicolon; /* ";;" seen */
375#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000376 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
377 int old_flag;
378 /* group we are enclosed in:
379 * example 1: "{ { false; ..."
380 * example 2: "if true; then { false; ..."
381 * example 3: "if true; then if false; ..."
382 * when we find closing "}" / "fi" / whatever, we move list_head
383 * into stack->command->group and delete ourself.
384 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000385 struct parse_context *stack;
386#endif
387};
388
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000389/* On program start, environ points to initial environment.
390 * putenv adds new pointers into it, unsetenv removes them.
391 * Neither of these (de)allocates the strings.
392 * setenv allocates new strings in malloc space and does putenv,
393 * and thus setenv is unusable (leaky) for shell's purposes */
394#define setenv(...) setenv_is_leaky_dont_use()
395struct variable {
396 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000397 char *varstr; /* points to "name=" portion */
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000398 int max_len; /* if > 0, name is part of initial env; else name is malloced */
399 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000400 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000401};
402
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000403typedef struct o_string {
Eric Andersen25f27032001-04-26 23:22:31 +0000404 char *data;
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000405 int length; /* position where data is appended */
Eric Andersen25f27032001-04-26 23:22:31 +0000406 int maxlen;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +0000407 /* Protect newly added chars against globbing
408 * (by prepending \ to *, ?, [, \) */
409 smallint o_escape;
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000410 smallint o_glob;
Denis Vlasenkoff097622007-10-01 10:00:45 +0000411 smallint nonnull;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +0000412 smallint has_empty_slot;
Denis Vlasenko55789c62008-06-18 16:30:42 +0000413 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
Eric Andersen25f27032001-04-26 23:22:31 +0000414} o_string;
Denis Vlasenko55789c62008-06-18 16:30:42 +0000415enum {
416 MAYBE_ASSIGNMENT = 0,
417 DEFINITELY_ASSIGNMENT = 1,
418 NOT_ASSIGNMENT = 2,
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000419 WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */
Denis Vlasenko55789c62008-06-18 16:30:42 +0000420};
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000421/* Used for initialization: o_string foo = NULL_O_STRING; */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +0000422#define NULL_O_STRING { NULL }
Eric Andersen25f27032001-04-26 23:22:31 +0000423
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000424/* I can almost use ordinary FILE*. Is open_memstream() universally
Eric Andersen25f27032001-04-26 23:22:31 +0000425 * available? Where is it documented? */
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000426typedef struct in_str {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +0000427 const char *p;
428 /* eof_flag=1: last char in ->p is really an EOF */
429 char eof_flag; /* meaningless if ->p == NULL */
430 char peek_buf[2];
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000431#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000432 smallint promptme;
433 smallint promptmode; /* 0: PS1, 1: PS2 */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000434#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000435 FILE *file;
436 int (*get) (struct in_str *);
437 int (*peek) (struct in_str *);
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000438} in_str;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +0000439#define i_getch(input) ((input)->get(input))
440#define i_peek(input) ((input)->peek(input))
Eric Andersen25f27032001-04-26 23:22:31 +0000441
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000442enum {
443 CHAR_ORDINARY = 0,
444 CHAR_ORDINARY_IF_QUOTED = 1, /* example: *, # */
445 CHAR_IFS = 2, /* treated as ordinary if quoted */
Denis Vlasenkof328e002009-04-02 16:55:38 +0000446 CHAR_SPECIAL = 3, /* \, $, ", maybe ` */
Eric Andersen25f27032001-04-26 23:22:31 +0000447};
448
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000449enum {
450 BC_BREAK = 1,
451 BC_CONTINUE = 2,
452};
453
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000454
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000455/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000456/* Sorted roughly by size (smaller offsets == smaller code) */
457struct globals {
458#if ENABLE_HUSH_INTERACTIVE
459 /* 'interactive_fd' is a fd# open to ctty, if we have one
460 * _AND_ if we decided to act interactively */
461 int interactive_fd;
462 const char *PS1;
463 const char *PS2;
464#endif
465#if ENABLE_FEATURE_EDITING
466 line_input_t *line_input_state;
467#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000468 pid_t root_pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000469 pid_t last_bg_pid;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000470#if ENABLE_HUSH_JOB
471 int run_list_level;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000472 pid_t saved_tty_pgrp;
473 int last_jobid;
474 struct pipe *job_list;
475 struct pipe *toplevel_list;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000476//// smallint ctrl_z_flag;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000477#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000478 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000479#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000480 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000481#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000482 smallint fake_mode;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000483 /* These four support $?, $#, and $1 */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +0000484 smalluint last_return_code;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000485 /* is global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000486 smalluint global_args_malloced;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000487 /* how many non-NULL argv's we have. NB: $# + 1 */
488 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000489 char **global_argv;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000490#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000491 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000492 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000493#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000494 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000495 const char *cwd;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000496 struct variable *top_var; /* = &G.shell_ver (set in main()) */
Denis Vlasenko0a83fc32007-05-25 11:12:32 +0000497 struct variable shell_ver;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000498#if ENABLE_FEATURE_SH_STANDALONE
499 struct nofork_save_area nofork_save;
500#endif
501#if ENABLE_HUSH_JOB
502 sigjmp_buf toplevel_jb;
503#endif
504 unsigned char charmap[256];
505 char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2];
Denis Vlasenkod5762932009-03-31 11:22:57 +0000506 /* Signal and trap handling */
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000507// unsigned count_SIGCHLD;
508// unsigned handled_SIGCHLD;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000509 /* which signals have non-DFL handler (even with no traps set)? */
510 unsigned non_DFL_mask;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000511 char **traps; /* char *traps[NSIG] */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000512 sigset_t blocked_set;
513 sigset_t inherited_set;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000514};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000515#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000516/* Not #defining name to G.name - this quickly gets unwieldy
517 * (too many defines). Also, I actually prefer to see when a variable
518 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000519#define INIT_G() do { \
520 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
521} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000522
523
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000524/* Function prototypes for builtins */
525static int builtin_cd(char **argv);
526static int builtin_echo(char **argv);
527static int builtin_eval(char **argv);
528static int builtin_exec(char **argv);
529static int builtin_exit(char **argv);
530static int builtin_export(char **argv);
531#if ENABLE_HUSH_JOB
532static int builtin_fg_bg(char **argv);
533static int builtin_jobs(char **argv);
534#endif
535#if ENABLE_HUSH_HELP
536static int builtin_help(char **argv);
537#endif
538static int builtin_pwd(char **argv);
539static int builtin_read(char **argv);
540static int builtin_test(char **argv);
Mike Frysinger9f8128f2009-03-29 23:49:37 +0000541static int builtin_trap(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000542static int builtin_true(char **argv);
543static int builtin_set(char **argv);
544static int builtin_shift(char **argv);
545static int builtin_source(char **argv);
546static int builtin_umask(char **argv);
547static int builtin_unset(char **argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +0000548static int builtin_wait(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000549#if ENABLE_HUSH_LOOPS
550static int builtin_break(char **argv);
551static int builtin_continue(char **argv);
552#endif
553//static int builtin_not_written(char **argv);
554
555/* Table of built-in functions. They can be forked or not, depending on
556 * context: within pipes, they fork. As simple commands, they do not.
557 * When used in non-forking context, they can change global variables
558 * in the parent shell process. If forked, of course they cannot.
559 * For example, 'unset foo | whatever' will parse and run, but foo will
560 * still be set at the end. */
561struct built_in_command {
562 const char *cmd;
563 int (*function)(char **argv);
564#if ENABLE_HUSH_HELP
565 const char *descr;
566#define BLTIN(cmd, func, help) { cmd, func, help }
567#else
568#define BLTIN(cmd, func, help) { cmd, func }
569#endif
570};
571
572/* For now, echo and test are unconditionally enabled.
573 * Maybe make it configurable? */
574static const struct built_in_command bltins[] = {
575 BLTIN("." , builtin_source, "Run commands in a file"),
576 BLTIN(":" , builtin_true, "No-op"),
577 BLTIN("[" , builtin_test, "Test condition"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000578#if ENABLE_HUSH_JOB
579 BLTIN("bg" , builtin_fg_bg, "Resume a job in the background"),
580#endif
581#if ENABLE_HUSH_LOOPS
582 BLTIN("break" , builtin_break, "Exit from a loop"),
583#endif
584 BLTIN("cd" , builtin_cd, "Change directory"),
585#if ENABLE_HUSH_LOOPS
586 BLTIN("continue", builtin_continue, "Start new loop iteration"),
587#endif
588 BLTIN("echo" , builtin_echo, "Write to stdout"),
589 BLTIN("eval" , builtin_eval, "Construct and run shell command"),
590 BLTIN("exec" , builtin_exec, "Execute command, don't return to shell"),
591 BLTIN("exit" , builtin_exit, "Exit"),
592 BLTIN("export", builtin_export, "Set environment variable"),
593#if ENABLE_HUSH_JOB
594 BLTIN("fg" , builtin_fg_bg, "Bring job into the foreground"),
595 BLTIN("jobs" , builtin_jobs, "List active jobs"),
596#endif
597 BLTIN("pwd" , builtin_pwd, "Print current directory"),
598 BLTIN("read" , builtin_read, "Input environment variable"),
599// BLTIN("return", builtin_not_written, "Return from a function"),
600 BLTIN("set" , builtin_set, "Set/unset shell local variables"),
601 BLTIN("shift" , builtin_shift, "Shift positional parameters"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000602 BLTIN("test" , builtin_test, "Test condition"),
Mike Frysinger9f8128f2009-03-29 23:49:37 +0000603 BLTIN("trap" , builtin_trap, "Trap signals"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000604// BLTIN("ulimit", builtin_not_written, "Control resource limits"),
605 BLTIN("umask" , builtin_umask, "Set file creation mask"),
606 BLTIN("unset" , builtin_unset, "Unset environment variable"),
Mike Frysinger56bdea12009-03-28 20:01:58 +0000607 BLTIN("wait" , builtin_wait, "Wait for process"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000608#if ENABLE_HUSH_HELP
609 BLTIN("help" , builtin_help, "List shell built-in commands"),
610#endif
611};
612
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000613
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000614/* Normal */
Mike Frysinger6379bb42009-03-28 18:55:03 +0000615static void maybe_die(const char *notice, const char *msg)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000616{
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000617 /* Was using fancy stuff:
Denis Vlasenko87a86552008-07-29 19:43:10 +0000618 * (G.interactive_fd ? bb_error_msg : bb_error_msg_and_die)(...params...)
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000619 * but it SEGVs. ?! Oh well... explicit temp ptr works around that */
Mike Frysinger6379bb42009-03-28 18:55:03 +0000620 void FAST_FUNC (*fp)(const char *s, ...) = bb_error_msg_and_die;
621#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko87a86552008-07-29 19:43:10 +0000622 fp = (G.interactive_fd ? bb_error_msg : bb_error_msg_and_die);
Denis Vlasenko87a86552008-07-29 19:43:10 +0000623#endif
Mike Frysinger6379bb42009-03-28 18:55:03 +0000624 fp(msg ? "%s: %s" : notice, notice, msg);
625}
Mike Frysinger5a828452009-03-28 19:09:04 +0000626#if 1
627#define syntax(msg) maybe_die("syntax error", msg);
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000628#else
Mike Frysinger5a828452009-03-28 19:09:04 +0000629/* Debug -- trick gcc to expand __LINE__ and convert to string */
630#define __syntax(msg, line) maybe_die("syntax error hush.c:" # line, msg)
631#define _syntax(msg, line) __syntax(msg, line)
632#define syntax(msg) _syntax(msg, __LINE__)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000633#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000634
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000635static int glob_needed(const char *s)
636{
637 while (*s) {
638 if (*s == '\\')
639 s++;
640 if (*s == '*' || *s == '[' || *s == '?')
641 return 1;
642 s++;
643 }
644 return 0;
645}
646
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000647static int is_assignment(const char *s)
648{
Denis Vlasenkod4981312008-07-31 10:34:48 +0000649 if (!s || !(isalpha(*s) || *s == '_'))
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000650 return 0;
651 s++;
652 while (isalnum(*s) || *s == '_')
653 s++;
654 return *s == '=';
655}
656
Denis Vlasenko55789c62008-06-18 16:30:42 +0000657/* Replace each \x with x in place, return ptr past NUL. */
658static char *unbackslash(char *src)
659{
660 char *dst = src;
661 while (1) {
662 if (*src == '\\')
663 src++;
664 if ((*dst++ = *src++) == '\0')
665 break;
666 }
667 return dst;
668}
669
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000670static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000671{
672 int i;
673 unsigned count1;
674 unsigned count2;
675 char **v;
676
677 v = strings;
678 count1 = 0;
679 if (v) {
680 while (*v) {
681 count1++;
682 v++;
683 }
684 }
685 count2 = 0;
686 v = add;
687 while (*v) {
688 count2++;
689 v++;
690 }
691 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
692 v[count1 + count2] = NULL;
693 i = count2;
694 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000695 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000696 return v;
697}
698
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000699static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000700{
701 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000702 v[0] = add;
703 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000704 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000705}
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000706
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000707static void putenv_all(char **strings)
708{
709 if (!strings)
710 return;
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000711 while (*strings) {
712 debug_printf_env("putenv '%s'\n", *strings);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000713 putenv(*strings++);
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000714 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000715}
716
717static char **putenv_all_and_save_old(char **strings)
718{
719 char **old = NULL;
720 char **s = strings;
721
722 if (!strings)
723 return old;
724 while (*strings) {
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000725 char *v, *eq;
726
727 eq = strchr(*strings, '=');
728 if (eq) {
729 *eq = '\0';
730 v = getenv(*strings);
731 *eq = '=';
732 if (v) {
733 /* v points to VAL in VAR=VAL, go back to VAR */
734 v -= (eq - *strings) + 1;
735 old = add_string_to_strings(old, v);
736 }
737 }
738 strings++;
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000739 }
740 putenv_all(s);
741 return old;
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000742}
743
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000744static void free_strings_and_unsetenv(char **strings, int unset)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000745{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000746 char **v;
747
748 if (!strings)
749 return;
750
751 v = strings;
752 while (*v) {
753 if (unset) {
Denis Vlasenko76ddc2e2008-12-30 05:05:31 +0000754 debug_printf_env("unsetenv '%s'\n", *v);
755 bb_unsetenv(*v);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000756 }
757 free(*v++);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000758 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000759 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000760}
761
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000762static void free_strings(char **strings)
Denis Vlasenko76d50412008-06-10 16:19:39 +0000763{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000764 free_strings_and_unsetenv(strings, 0);
Denis Vlasenko76d50412008-06-10 16:19:39 +0000765}
Denis Vlasenko76d50412008-06-10 16:19:39 +0000766
767
Denis Vlasenkod5762932009-03-31 11:22:57 +0000768/* Basic theory of signal handling in shell
769 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000770 * This does not describe what hush does, rather, it is current understanding
771 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000772 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
773 *
774 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
775 * is finished or backgrounded. It is the same in interactive and
776 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000777 * a user trap handler is installed or a shell special one is in effect.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000778 * ^C or ^Z from keyboard seem to execute "at once" because it usually
779 * backgrounds (i.e. stops) or kills all members of currently running
780 * pipe.
781 *
782 * Wait builtin in interruptible by signals for which user trap is set
783 * or by SIGINT in interactive shell.
784 *
785 * Trap handlers will execute even within trap handlers. (right?)
786 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000787 * User trap handlers are forgotten when subshell ("(cmd)") is entered. [TODO]
Denis Vlasenkod5762932009-03-31 11:22:57 +0000788 *
789 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000790 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000791 *
792 * Commands run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000793 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000794 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000795 * Ordinary commands have signals set to SIG_IGN/DFL set as inherited
796 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000797 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000798 * Siganls which differ from SIG_DFL action
799 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +0000800 *
801 * SIGQUIT: ignore
802 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000803 * SIGHUP (interactive):
804 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +0000805 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000806 * (note that ^Z is handled not by trapping SIGTSTP, but by seeing
807 * that all pipe members are stopped) (right?)
Denis Vlasenkod5762932009-03-31 11:22:57 +0000808 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000809 * of the command line, show prompt. NB: ^C does not send SIGINT
810 * to interactive shell while shell is waiting for a pipe,
811 * since shell is bg'ed (is not in foreground process group).
812 * (check/expand this)
813 * Example 1: this waits 5 sec, but does not execute ls:
814 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
815 * Example 2: this does not wait and does not execute ls:
816 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
817 * Example 3: this does not wait 5 sec, but executes ls:
818 * "sleep 5; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +0000819 *
820 * (What happens to signals which are IGN on shell start?)
821 * (What happens with signal mask on shell start?)
822 *
823 * Implementation in hush
824 * ======================
825 * We use in-kernel pending signal mask to determine which signals were sent.
826 * We block all signals which we don't want to take action immediately,
827 * i.e. we block all signals which need to have special handling as described
828 * above, and all signals which have traps set.
829 * After each pipe execution, we extract any pending signals via sigtimedwait()
830 * and act on them.
831 *
832 * unsigned non_DFL_mask: a mask of such "special" signals
833 * sigset_t blocked_set: current blocked signal set
834 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000835 * "trap - SIGxxx":
836 * clear bit in blocked_set unless it is also in non_DFL
837 * "trap 'cmd' SIGxxx":
838 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +0000839 * after [v]fork, if we plan to be a shell:
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000840 * nothing for {} child shell (say, "true | { true; true; } | true")
841 * unset all traps if () shell. [TODO]
Denis Vlasenkod5762932009-03-31 11:22:57 +0000842 * after [v]fork, if we plan to exec:
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000843 * POSIX says pending signal mask is cleared in child - no need to clear it.
844 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000845 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000846 * Note: as a result, we do not use signal handlers much. The only uses
847 * are to count SIGCHLDs [disabled - bug somewhere, + bloat]
848 * and to restore tty pgrp on signal-induced exit.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000849 *
850 * TODO: check/fix wait builtin to be interruptible.
851 */
852
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000853//static void SIGCHLD_handler(int sig UNUSED_PARAM)
854//{
855// G.count_SIGCHLD++;
856//}
857
Denis Vlasenkod5762932009-03-31 11:22:57 +0000858/* called once at shell init */
859static void init_signal_mask(void)
Denis Vlasenko4830fc52008-05-25 21:50:55 +0000860{
Denis Vlasenkod5762932009-03-31 11:22:57 +0000861 unsigned sig;
862 unsigned mask = (1 << SIGQUIT);
863#if ENABLE_HUSH_INTERACTIVE
864 if (G.interactive_fd) {
865 mask = 0
866 | (1 << SIGQUIT)
867 | (1 << SIGTERM)
868 | (1 << SIGHUP)
869#if ENABLE_HUSH_JOB
870 | (1 << SIGTTIN) | (1 << SIGTTOU) | (1 << SIGTSTP)
871#endif
872 | (1 << SIGINT)
873 ;
874 }
875#endif
876 G.non_DFL_mask = mask;
877
Denis Vlasenkod5762932009-03-31 11:22:57 +0000878 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
879 sig = 0;
880 while (mask) {
881 if (mask & 1)
882 sigaddset(&G.blocked_set, sig);
883 mask >>= 1;
884 sig++;
885 }
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000886 sigdelset(&G.blocked_set, SIGCHLD);
Denis Vlasenkod5762932009-03-31 11:22:57 +0000887 sigprocmask(SIG_SETMASK, &G.blocked_set, &G.inherited_set);
Denis Vlasenko4830fc52008-05-25 21:50:55 +0000888}
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000889
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000890static int check_and_run_traps(int sig)
Denis Vlasenkod5762932009-03-31 11:22:57 +0000891{
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000892 static const struct timespec zero_timespec = { 0, 0 };
Denis Vlasenkod5762932009-03-31 11:22:57 +0000893 smalluint save_rcode;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000894 int last_sig = 0;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000895
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000896 if (sig)
897 goto jump_in;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000898 while (1) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000899 sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec);
Denis Vlasenkod5762932009-03-31 11:22:57 +0000900 if (sig <= 0)
901 break;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000902 jump_in:
903 last_sig = sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000904 if (G.traps && G.traps[sig]) {
905 if (G.traps[sig][0]) {
906 /* We have user-defined handler */
907 char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL };
908 save_rcode = G.last_return_code;
909 builtin_eval(argv);
910 free(argv[1]);
911 G.last_return_code = save_rcode;
912 } /* else: "" trap, ignoring signal */
913 continue;
914 }
915 /* not a trap: special action */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000916 switch (sig) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000917// case SIGCHLD:
918// G.count_SIGCHLD++;
919// break;
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000920 case SIGINT:
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000921 bb_putchar('\n');
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000922 G.flag_SIGINT = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000923 break;
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000924//TODO
925// case SIGHUP: ...
926// break;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000927 default: /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000928 break;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000929 }
Denis Vlasenkod5762932009-03-31 11:22:57 +0000930 }
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000931 return last_sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000932}
933
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000934#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000935
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000936/* Restores tty foreground process group, and exits.
937 * May be called as signal handler for fatal signal
938 * (will faithfully resend signal to itself, producing correct exit state)
939 * or called directly with -EXITCODE.
940 * We also call it if xfunc is exiting. */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000941static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000942static void sigexit(int sig)
943{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000944 /* Disable all signals: job control, SIGPIPE, etc. */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000945 sigprocmask_allsigs(SIG_BLOCK);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000946
Denis Vlasenko87a86552008-07-29 19:43:10 +0000947#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000948 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000949 * tty pgrp then, only top-level shell process does that */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000950 if (G.interactive_fd && getpid() == G.root_pid)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000951 tcsetpgrp(G.interactive_fd, G.saved_tty_pgrp);
952#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000953
954 /* Not a signal, just exit */
955 if (sig <= 0)
956 _exit(- sig);
957
Denis Vlasenko400d8bb2008-02-24 13:36:01 +0000958 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000959}
960
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000961/* helper */
962static void maybe_set_sighandler(int sig)
963{
964 void (*handler)(int);
965 /* non_DFL_mask'ed signals are, well, masked,
966 * no need to set handler for them.
967 */
968 if (!((G.non_DFL_mask >> sig) & 1)) {
969 handler = signal(sig, sigexit);
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000970 if (handler == SIG_IGN) /* oops... restore back to IGN! */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000971 signal(sig, handler);
972 }
973}
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000974/* Used only to set handler to restore pgrp on exit */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000975static void set_fatal_signals_to_sigexit(void)
976{
977 if (HUSH_DEBUG) {
978 maybe_set_sighandler(SIGILL );
979 maybe_set_sighandler(SIGFPE );
980 maybe_set_sighandler(SIGBUS );
981 maybe_set_sighandler(SIGSEGV);
982 maybe_set_sighandler(SIGTRAP);
983 } /* else: hush is perfect. what SEGV? */
984
985 maybe_set_sighandler(SIGABRT);
986
987 /* bash 3.2 seems to handle these just like 'fatal' ones */
988 maybe_set_sighandler(SIGPIPE);
989 maybe_set_sighandler(SIGALRM);
990 maybe_set_sighandler(SIGHUP );
991
992 /* if we aren't interactive... but in this case
993 * we never want to restore pgrp on exit, and this fn is not called */
994 /*maybe_set_sighandler(SIGTERM);*/
995 /*maybe_set_sighandler(SIGINT );*/
996}
997/* Used only to suppress ^Z in `cmd` */
998static void set_jobctrl_signals_to_IGN(void)
999{
1000 bb_signals(0
1001 + (1 << SIGTSTP)
1002 + (1 << SIGTTIN)
1003 + (1 << SIGTTOU)
1004 , SIG_IGN);
1005}
1006
Denis Vlasenkoef36ead2007-05-02 15:34:47 +00001007#else /* !JOB */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001008
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001009#define set_fatal_signals_to_sigexit(handler) ((void)0)
1010#define set_jobctrl_signals_to_IGN(handler) ((void)0)
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001011
Denis Vlasenkoef36ead2007-05-02 15:34:47 +00001012#endif /* JOB */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001013
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001014/* Restores tty foreground process group, and exits. */
1015static void hush_exit(int exitcode) NORETURN;
1016static void hush_exit(int exitcode)
1017{
Denis Vlasenkod5762932009-03-31 11:22:57 +00001018 if (G.traps && G.traps[0] && G.traps[0][0]) {
1019 char *argv[] = { NULL, xstrdup(G.traps[0]), NULL };
1020 builtin_eval(argv);
1021 free(argv[1]);
1022 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001023
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001024#if ENABLE_HUSH_JOB
1025 fflush(NULL); /* flush all streams */
1026 sigexit(- (exitcode & 0xff));
1027#else
1028 exit(exitcode);
1029#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001030}
1031
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001032
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001033static const char *set_cwd(void)
1034{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001035 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1036 * we must not try to free(bb_msg_unknown) */
Denis Vlasenko87a86552008-07-29 19:43:10 +00001037 if (G.cwd == bb_msg_unknown)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001038 G.cwd = NULL;
Denis Vlasenko87a86552008-07-29 19:43:10 +00001039 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1040 if (!G.cwd)
1041 G.cwd = bb_msg_unknown;
1042 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001043}
1044
Denis Vlasenko83506862007-11-23 13:11:42 +00001045
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001046/* Get/check local shell variables */
1047static struct variable *get_local_var(const char *name)
1048{
1049 struct variable *cur;
1050 int len;
1051
1052 if (!name)
1053 return NULL;
1054 len = strlen(name);
1055 for (cur = G.top_var; cur; cur = cur->next) {
1056 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
1057 return cur;
1058 }
1059 return NULL;
1060}
1061
1062/* Basically useful version until someone wants to get fancier,
1063 * see the bash man page under "Parameter Expansion" */
1064static const char *lookup_param(const char *src)
1065{
1066 struct variable *var = get_local_var(src);
1067 if (var)
1068 return strchr(var->varstr, '=') + 1;
1069 return NULL;
1070}
1071
1072/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001073 * We take ownership of it.
1074 * flg_export is used by:
1075 * 0: do not export
1076 * 1: export
1077 * -1: if NAME is set, leave export status alone
1078 * if NAME is not set, do not export
1079 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001080static int set_local_var(char *str, int flg_export)
1081{
1082 struct variable *cur;
1083 char *value;
1084 int name_len;
1085
1086 value = strchr(str, '=');
1087 if (!value) { /* not expected to ever happen? */
1088 free(str);
1089 return -1;
1090 }
1091
1092 name_len = value - str + 1; /* including '=' */
1093 cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */
1094 while (1) {
1095 if (strncmp(cur->varstr, str, name_len) != 0) {
1096 if (!cur->next) {
1097 /* Bail out. Note that now cur points
1098 * to last var in linked list */
1099 break;
1100 }
1101 cur = cur->next;
1102 continue;
1103 }
1104 /* We found an existing var with this name */
1105 *value = '\0';
1106 if (cur->flg_read_only) {
1107 bb_error_msg("%s: readonly variable", str);
1108 free(str);
1109 return -1;
1110 }
1111 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1112 unsetenv(str); /* just in case */
1113 *value = '=';
1114 if (strcmp(cur->varstr, str) == 0) {
1115 free_and_exp:
1116 free(str);
1117 goto exp;
1118 }
1119 if (cur->max_len >= strlen(str)) {
1120 /* This one is from startup env, reuse space */
1121 strcpy(cur->varstr, str);
1122 goto free_and_exp;
1123 }
1124 /* max_len == 0 signifies "malloced" var, which we can
1125 * (and has to) free */
1126 if (!cur->max_len)
1127 free(cur->varstr);
1128 cur->max_len = 0;
1129 goto set_str_and_exp;
1130 }
1131
1132 /* Not found - create next variable struct */
1133 cur->next = xzalloc(sizeof(*cur));
1134 cur = cur->next;
1135
1136 set_str_and_exp:
1137 cur->varstr = str;
1138 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001139 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001140 cur->flg_export = 1;
1141 if (cur->flg_export) {
1142 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1143 return putenv(cur->varstr);
1144 }
1145 return 0;
1146}
1147
Mike Frysingerd690f682009-03-30 06:50:54 +00001148static int unset_local_var(const char *name)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001149{
1150 struct variable *cur;
1151 struct variable *prev = prev; /* for gcc */
1152 int name_len;
1153
1154 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00001155 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001156 name_len = strlen(name);
1157 cur = G.top_var;
1158 while (cur) {
1159 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1160 if (cur->flg_read_only) {
1161 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00001162 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001163 }
1164 /* prev is ok to use here because 1st variable, HUSH_VERSION,
1165 * is ro, and we cannot reach this code on the 1st pass */
1166 prev->next = cur->next;
1167 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1168 bb_unsetenv(cur->varstr);
1169 if (!cur->max_len)
1170 free(cur->varstr);
1171 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00001172 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001173 }
1174 prev = cur;
1175 cur = cur->next;
1176 }
Mike Frysingerd690f682009-03-30 06:50:54 +00001177 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001178}
1179
Mike Frysinger98c52642009-04-02 10:02:37 +00001180#if ENABLE_SH_MATH_SUPPORT
1181#define is_name(c) ((c) == '_' || isalpha((unsigned char)(c)))
1182#define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c)))
1183static char *endofname(const char *name)
1184{
1185 char *p;
1186
1187 p = (char *) name;
1188 if (!is_name(*p))
1189 return p;
1190 while (*++p) {
1191 if (!is_in_name(*p))
1192 break;
1193 }
1194 return p;
1195}
1196
1197static void arith_set_local_var(const char *name, const char *val, int flags)
1198{
1199 /* arith code doesnt malloc space, so do it for it */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001200 char *var = xasprintf("%s=%s", name, val);
Mike Frysinger98c52642009-04-02 10:02:37 +00001201 set_local_var(var, flags);
1202}
1203#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001204
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001205
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001206/*
1207 * in_str support
1208 */
1209static int static_get(struct in_str *i)
1210{
1211 int ch = *i->p++;
1212 if (ch == '\0') return EOF;
1213 return ch;
1214}
1215
1216static int static_peek(struct in_str *i)
1217{
1218 return *i->p;
1219}
1220
1221#if ENABLE_HUSH_INTERACTIVE
1222
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001223static void cmdedit_set_initial_prompt(void)
1224{
Mike Frysingerec2c6552009-03-28 12:24:44 +00001225 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1226 G.PS1 = getenv("PS1");
1227 if (G.PS1 == NULL)
1228 G.PS1 = "\\w \\$ ";
1229 } else
1230 G.PS1 = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001231}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001232
1233static const char* setup_prompt_string(int promptmode)
1234{
1235 const char *prompt_str;
1236 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00001237 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1238 /* Set up the prompt */
1239 if (promptmode == 0) { /* PS1 */
1240 free((char*)G.PS1);
1241 G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#');
1242 prompt_str = G.PS1;
1243 } else
1244 prompt_str = G.PS2;
1245 } else
1246 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001247 debug_printf("result '%s'\n", prompt_str);
1248 return prompt_str;
1249}
1250
1251static void get_user_input(struct in_str *i)
1252{
1253 int r;
1254 const char *prompt_str;
1255
1256 prompt_str = setup_prompt_string(i->promptmode);
1257#if ENABLE_FEATURE_EDITING
1258 /* Enable command line editing only while a command line
1259 * is actually being read */
1260 do {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001261 G.flag_SIGINT = 0;
1262 /* buglet: SIGINT will not make new prompt to appear _at once_,
1263 * only after <Enter>. (^C will work) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001264 r = read_line_input(prompt_str, G.user_input_buf, BUFSIZ-1, G.line_input_state);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001265 /* catch *SIGINT* etc (^C is handled by read_line_input) */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001266 check_and_run_traps(0);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001267 } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001268 i->eof_flag = (r < 0);
1269 if (i->eof_flag) { /* EOF/error detected */
1270 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1271 G.user_input_buf[1] = '\0';
1272 }
1273#else
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001274 do {
1275 G.flag_SIGINT = 0;
1276 fputs(prompt_str, stdout);
1277 fflush(stdout);
1278 G.user_input_buf[0] = r = fgetc(i->file);
1279 /*G.user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001280//do we need check_and_run_traps(0)? (maybe only if stdin)
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001281 } while (G.flag_SIGINT);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001282 i->eof_flag = (r == EOF);
1283#endif
1284 i->p = G.user_input_buf;
1285}
1286
1287#endif /* INTERACTIVE */
1288
1289/* This is the magic location that prints prompts
1290 * and gets data back from the user */
1291static int file_get(struct in_str *i)
1292{
1293 int ch;
1294
1295 /* If there is data waiting, eat it up */
1296 if (i->p && *i->p) {
1297#if ENABLE_HUSH_INTERACTIVE
1298 take_cached:
1299#endif
1300 ch = *i->p++;
1301 if (i->eof_flag && !*i->p)
1302 ch = EOF;
1303 } else {
1304 /* need to double check i->file because we might be doing something
1305 * more complicated by now, like sourcing or substituting. */
1306#if ENABLE_HUSH_INTERACTIVE
1307 if (G.interactive_fd && i->promptme && i->file == stdin) {
1308 do {
1309 get_user_input(i);
1310 } while (!*i->p); /* need non-empty line */
1311 i->promptmode = 1; /* PS2 */
1312 i->promptme = 0;
1313 goto take_cached;
1314 }
1315#endif
1316 ch = fgetc(i->file);
1317 }
1318 debug_printf("file_get: got a '%c' %d\n", ch, ch);
1319#if ENABLE_HUSH_INTERACTIVE
1320 if (ch == '\n')
1321 i->promptme = 1;
1322#endif
1323 return ch;
1324}
1325
1326/* All the callers guarantee this routine will never be
1327 * used right after a newline, so prompting is not needed.
1328 */
1329static int file_peek(struct in_str *i)
1330{
1331 int ch;
1332 if (i->p && *i->p) {
1333 if (i->eof_flag && !i->p[1])
1334 return EOF;
1335 return *i->p;
1336 }
1337 ch = fgetc(i->file);
1338 i->eof_flag = (ch == EOF);
1339 i->peek_buf[0] = ch;
1340 i->peek_buf[1] = '\0';
1341 i->p = i->peek_buf;
1342 debug_printf("file_peek: got a '%c' %d\n", *i->p, *i->p);
1343 return ch;
1344}
1345
1346static void setup_file_in_str(struct in_str *i, FILE *f)
1347{
1348 i->peek = file_peek;
1349 i->get = file_get;
1350#if ENABLE_HUSH_INTERACTIVE
1351 i->promptme = 1;
1352 i->promptmode = 0; /* PS1 */
1353#endif
1354 i->file = f;
1355 i->p = NULL;
1356}
1357
1358static void setup_string_in_str(struct in_str *i, const char *s)
1359{
1360 i->peek = static_peek;
1361 i->get = static_get;
1362#if ENABLE_HUSH_INTERACTIVE
1363 i->promptme = 1;
1364 i->promptmode = 0; /* PS1 */
1365#endif
1366 i->p = s;
1367 i->eof_flag = 0;
1368}
1369
1370
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001371/*
1372 * o_string support
1373 */
1374#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00001375
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001376static void o_reset(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001377{
1378 o->length = 0;
1379 o->nonnull = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001380 if (o->data)
1381 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001382}
1383
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001384static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001385{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001386 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001387 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00001388}
1389
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001390static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001391{
1392 if (o->length + len > o->maxlen) {
1393 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1394 o->data = xrealloc(o->data, 1 + o->maxlen);
1395 }
1396}
1397
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001398static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001399{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001400 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1401 o_grow_by(o, 1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001402 o->data[o->length] = ch;
1403 o->length++;
1404 o->data[o->length] = '\0';
1405}
1406
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001407static void o_addstr(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001408{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001409 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001410 memcpy(&o->data[o->length], str, len);
1411 o->length += len;
1412 o->data[o->length] = '\0';
1413}
1414
Mike Frysinger98c52642009-04-02 10:02:37 +00001415static void o_addstrauto(o_string *o, const char *str)
1416{
1417 o_addstr(o, str, strlen(str) + 1);
1418}
1419
Denis Vlasenko55789c62008-06-18 16:30:42 +00001420static void o_addstr_duplicate_backslash(o_string *o, const char *str, int len)
1421{
1422 while (len) {
1423 o_addchr(o, *str);
1424 if (*str++ == '\\'
1425 && (*str != '*' && *str != '?' && *str != '[')
1426 ) {
1427 o_addchr(o, '\\');
1428 }
1429 len--;
1430 }
1431}
1432
Eric Andersen25f27032001-04-26 23:22:31 +00001433/* My analysis of quoting semantics tells me that state information
1434 * is associated with a destination, not a source.
1435 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001436static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00001437{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001438 int sz = 1;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001439 char *found = strchr("*?[\\", ch);
1440 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001441 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001442 o_grow_by(o, sz);
1443 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001444 o->data[o->length] = '\\';
1445 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00001446 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001447 o->data[o->length] = ch;
1448 o->length++;
1449 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001450}
1451
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001452static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001453{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001454 int sz = 1;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001455 if (o->o_escape && strchr("*?[\\", ch)) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001456 sz++;
1457 o->data[o->length] = '\\';
1458 o->length++;
1459 }
1460 o_grow_by(o, sz);
1461 o->data[o->length] = ch;
1462 o->length++;
1463 o->data[o->length] = '\0';
1464}
1465
1466static void o_addQstr(o_string *o, const char *str, int len)
1467{
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001468 if (!o->o_escape) {
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001469 o_addstr(o, str, len);
1470 return;
1471 }
1472 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001473 char ch;
1474 int sz;
1475 int ordinary_cnt = strcspn(str, "*?[\\");
1476 if (ordinary_cnt > len) /* paranoia */
1477 ordinary_cnt = len;
1478 o_addstr(o, str, ordinary_cnt);
1479 if (ordinary_cnt == len)
1480 return;
1481 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001482 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001483
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001484 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001485 sz = 1;
1486 if (ch) { /* it is necessarily one of "*?[\\" */
1487 sz++;
1488 o->data[o->length] = '\\';
1489 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001490 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001491 o_grow_by(o, sz);
1492 o->data[o->length] = ch;
1493 o->length++;
1494 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001495 }
1496}
1497
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001498/* A special kind of o_string for $VAR and `cmd` expansion.
1499 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001500 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001501 * list[i] contains an INDEX (int!) into this string data.
1502 * It means that if list[] needs to grow, data needs to be moved higher up
1503 * but list[i]'s need not be modified.
1504 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001505 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001506 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
1507 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001508#if DEBUG_EXPAND || DEBUG_GLOB
1509static void debug_print_list(const char *prefix, o_string *o, int n)
1510{
1511 char **list = (char**)o->data;
1512 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1513 int i = 0;
1514 fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n",
1515 prefix, list, n, string_start, o->length, o->maxlen);
1516 while (i < n) {
1517 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
1518 o->data + (int)list[i] + string_start,
1519 o->data + (int)list[i] + string_start);
1520 i++;
1521 }
1522 if (n) {
1523 const char *p = o->data + (int)list[n - 1] + string_start;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001524 fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001525 }
1526}
1527#else
1528#define debug_print_list(prefix, o, n) ((void)0)
1529#endif
1530
1531/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
1532 * in list[n] so that it points past last stored byte so far.
1533 * It returns n+1. */
1534static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001535{
1536 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00001537 int string_start;
1538 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001539
1540 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00001541 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1542 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001543 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001544 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001545 /* list[n] points to string_start, make space for 16 more pointers */
1546 o->maxlen += 0x10 * sizeof(list[0]);
1547 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00001548 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001549 memmove(list + n + 0x10, list + n, string_len);
1550 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001551 } else
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001552 debug_printf_list("list[%d]=%d string_start=%d\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001553 } else {
1554 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00001555 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
1556 string_len = o->length - string_start;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001557 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001558 o->has_empty_slot = 0;
1559 }
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001560 list[n] = (char*)(ptrdiff_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001561 return n + 1;
1562}
1563
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001564/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001565static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001566{
1567 char **list = (char**)o->data;
1568 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1569
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001570 return ((int)(ptrdiff_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001571}
1572
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001573/* o_glob performs globbing on last list[], saving each result
Denis Vlasenko55789c62008-06-18 16:30:42 +00001574 * as a new list[]. */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001575static int o_glob(o_string *o, int n)
1576{
1577 glob_t globdata;
1578 int gr;
1579 char *pattern;
1580
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001581 debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001582 if (!o->data)
1583 return o_save_ptr_helper(o, n);
1584 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001585 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001586 if (!glob_needed(pattern)) {
1587 literal:
1588 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001589 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001590 return o_save_ptr_helper(o, n);
1591 }
1592
1593 memset(&globdata, 0, sizeof(globdata));
1594 gr = glob(pattern, 0, NULL, &globdata);
1595 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
1596 if (gr == GLOB_NOSPACE)
1597 bb_error_msg_and_die("out of memory during glob");
1598 if (gr == GLOB_NOMATCH) {
1599 globfree(&globdata);
1600 goto literal;
1601 }
1602 if (gr != 0) { /* GLOB_ABORTED ? */
1603//TODO: testcase for bad glob pattern behavior
1604 bb_error_msg("glob(3) error %d on '%s'", gr, pattern);
1605 }
1606 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
1607 char **argv = globdata.gl_pathv;
1608 o->length = pattern - o->data; /* "forget" pattern */
1609 while (1) {
Mike Frysinger98c52642009-04-02 10:02:37 +00001610 o_addstrauto(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001611 n = o_save_ptr_helper(o, n);
1612 argv++;
1613 if (!*argv)
1614 break;
1615 }
1616 }
1617 globfree(&globdata);
1618 if (DEBUG_GLOB)
1619 debug_print_list("o_glob returning", o, n);
1620 return n;
1621}
1622
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001623/* If o->o_glob == 1, glob the string so far remembered.
1624 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001625static int o_save_ptr(o_string *o, int n)
1626{
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00001627 if (o->o_glob) { /* if globbing is requested */
1628 /* If o->has_empty_slot, list[n] was already globbed
1629 * (if it was requested back then when it was filled)
1630 * so don't do that again! */
1631 if (!o->has_empty_slot)
1632 return o_glob(o, n); /* o_save_ptr_helper is inside */
1633 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001634 return o_save_ptr_helper(o, n);
1635}
1636
1637/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001638static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001639{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001640 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001641 int string_start;
1642
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001643 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
1644 if (DEBUG_EXPAND)
1645 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001646 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001647 list = (char**)o->data;
1648 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1649 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001650 while (n) {
1651 n--;
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001652 list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001653 }
1654 return list;
1655}
1656
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001657
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001658/* Expansion can recurse */
1659#if ENABLE_HUSH_TICK
Denis Vlasenko37181682009-04-03 03:19:15 +00001660static int process_command_subs(o_string *dest, struct in_str *input);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001661#endif
1662static char *expand_string_to_string(const char *str);
1663static int parse_stream_dquoted(o_string *dest, struct in_str *input, int dquote_end);
1664
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001665/* expand_strvec_to_strvec() takes a list of strings, expands
1666 * all variable references within and returns a pointer to
1667 * a list of expanded strings, possibly with larger number
1668 * of strings. (Think VAR="a b"; echo $VAR).
1669 * This new list is allocated as a single malloc block.
1670 * NULL-terminated list of char* pointers is at the beginning of it,
1671 * followed by strings themself.
1672 * Caller can deallocate entire list by single free(list). */
Eric Andersen25f27032001-04-26 23:22:31 +00001673
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001674/* Store given string, finalizing the word and starting new one whenever
1675 * we encounter IFS char(s). This is used for expanding variable values.
1676 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
1677static int expand_on_ifs(o_string *output, int n, const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00001678{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001679 while (1) {
1680 int word_len = strcspn(str, G.ifs);
1681 if (word_len) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001682 if (output->o_escape || !output->o_glob)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001683 o_addQstr(output, str, word_len);
1684 else /* protect backslashes against globbing up :) */
1685 o_addstr_duplicate_backslash(output, str, word_len);
1686 str += word_len;
1687 }
1688 if (!*str) /* EOL - do not finalize word */
1689 break;
1690 o_addchr(output, '\0');
1691 debug_print_list("expand_on_ifs", output, n);
1692 n = o_save_ptr(output, n);
1693 str += strspn(str, G.ifs); /* skip ifs chars */
Eric Andersen25f27032001-04-26 23:22:31 +00001694 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001695 debug_print_list("expand_on_ifs[1]", output, n);
1696 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00001697}
1698
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001699/* Expand all variable references in given string, adding words to list[]
1700 * at n, n+1,... positions. Return updated n (so that list[n] is next one
1701 * to be filled). This routine is extremely tricky: has to deal with
1702 * variables/parameters with whitespace, $* and $@, and constructs like
1703 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
1704static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00001705{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001706 /* or_mask is either 0 (normal case) or 0x80
1707 * (expansion of right-hand side of assignment == 1-element expand.
1708 * It will also do no globbing, and thus we must not backslash-quote!) */
Eric Andersen25f27032001-04-26 23:22:31 +00001709
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001710 char first_ch, ored_ch;
1711 int i;
1712 const char *val;
1713 char *p;
1714
1715 ored_ch = 0;
1716
1717 debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg);
1718 debug_print_list("expand_vars_to_list", output, n);
1719 n = o_save_ptr(output, n);
1720 debug_print_list("expand_vars_to_list[0]", output, n);
1721
1722 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
1723#if ENABLE_HUSH_TICK
1724 o_string subst_result = NULL_O_STRING;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001725#endif
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001726#if ENABLE_SH_MATH_SUPPORT
1727 char arith_buf[sizeof(arith_t)*3 + 2];
1728#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001729 o_addstr(output, arg, p - arg);
1730 debug_print_list("expand_vars_to_list[1]", output, n);
1731 arg = ++p;
1732 p = strchr(p, SPECIAL_VAR_SYMBOL);
1733
1734 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
1735 /* "$@" is special. Even if quoted, it can still
1736 * expand to nothing (not even an empty string) */
1737 if ((first_ch & 0x7f) != '@')
1738 ored_ch |= first_ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001739
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001740 val = NULL;
1741 switch (first_ch & 0x7f) {
1742 /* Highest bit in first_ch indicates that var is double-quoted */
1743 case '$': /* pid */
1744 val = utoa(G.root_pid);
1745 break;
1746 case '!': /* bg pid */
1747 val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)"";
1748 break;
1749 case '?': /* exitcode */
1750 val = utoa(G.last_return_code);
1751 break;
1752 case '#': /* argc */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001753 if (arg[1] != SPECIAL_VAR_SYMBOL)
1754 /* actually, it's a ${#var} */
1755 goto case_default;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001756 val = utoa(G.global_argc ? G.global_argc-1 : 0);
1757 break;
1758 case '*':
1759 case '@':
1760 i = 1;
1761 if (!G.global_argv[i])
1762 break;
1763 ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
1764 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001765 smallint sv = output->o_escape;
1766 /* unquoted var's contents should be globbed, so don't escape */
1767 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001768 while (G.global_argv[i]) {
1769 n = expand_on_ifs(output, n, G.global_argv[i]);
1770 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
1771 if (G.global_argv[i++][0] && G.global_argv[i]) {
1772 /* this argv[] is not empty and not last:
1773 * put terminating NUL, start new word */
1774 o_addchr(output, '\0');
1775 debug_print_list("expand_vars_to_list[2]", output, n);
1776 n = o_save_ptr(output, n);
1777 debug_print_list("expand_vars_to_list[3]", output, n);
1778 }
1779 }
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001780 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001781 } else
1782 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
1783 * and in this case should treat it like '$*' - see 'else...' below */
1784 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
1785 while (1) {
1786 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
1787 if (++i >= G.global_argc)
1788 break;
1789 o_addchr(output, '\0');
1790 debug_print_list("expand_vars_to_list[4]", output, n);
1791 n = o_save_ptr(output, n);
1792 }
1793 } else { /* quoted $*: add as one word */
1794 while (1) {
1795 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
1796 if (!G.global_argv[++i])
1797 break;
1798 if (G.ifs[0])
1799 o_addchr(output, G.ifs[0]);
1800 }
1801 }
1802 break;
1803 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
1804 /* "Empty variable", used to make "" etc to not disappear */
1805 arg++;
1806 ored_ch = 0x80;
1807 break;
1808#if ENABLE_HUSH_TICK
1809 case '`': { /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
1810 struct in_str input;
1811 *p = '\0';
1812 arg++;
1813//TODO: can we just stuff it into "output" directly?
1814 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
1815 setup_string_in_str(&input, arg);
Denis Vlasenko37181682009-04-03 03:19:15 +00001816 process_command_subs(&subst_result, &input);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001817 debug_printf_subst("SUBST RES '%s'\n", subst_result.data);
1818 val = subst_result.data;
1819 goto store_val;
Eric Andersen25f27032001-04-26 23:22:31 +00001820 }
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001821#endif
Mike Frysinger98c52642009-04-02 10:02:37 +00001822#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001823 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001824 arith_eval_hooks_t hooks;
Mike Frysinger98c52642009-04-02 10:02:37 +00001825 arith_t res;
Mike Frysinger98c52642009-04-02 10:02:37 +00001826 int errcode;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001827 char *exp_str;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001828
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001829 arg++; /* skip '+' */
1830 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Mike Frysinger98c52642009-04-02 10:02:37 +00001831 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001832
1833 /* Optional: skip expansion if expr is simple ("a + 3", "i++" etc) */
1834 exp_str = arg;
1835 while (1) {
1836 unsigned char c = *exp_str++;
1837 if (c == '\0') {
1838 exp_str = NULL;
1839 goto skip_expand;
1840 }
1841 if (isdigit(c))
1842 continue;
1843 if (strchr(" \t+-*/%_", c) != NULL)
1844 continue;
1845 c |= 0x20; /* tolower */
1846 if (c >= 'a' && c <= 'z')
1847 continue;
1848 break;
1849 }
1850 /* We need to expand. Example: "echo $(($a + 1)) $((1 + $((2)) ))" */
1851 {
1852 struct in_str input;
1853 o_string dest = NULL_O_STRING;
1854
1855 setup_string_in_str(&input, arg);
1856 parse_stream_dquoted(&dest, &input, EOF);
1857 //bb_error_msg("'%s' -> '%s'", arg, dest.data);
1858 exp_str = expand_string_to_string(dest.data);
1859 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
1860 o_free(&dest);
1861 }
1862 skip_expand:
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001863 hooks.lookupvar = lookup_param;
1864 hooks.setvar = arith_set_local_var;
1865 hooks.endofname = endofname;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001866 res = arith(exp_str ? exp_str : arg, &errcode, &hooks);
1867 free(exp_str);
1868
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001869 if (errcode < 0) {
Mike Frysinger98c52642009-04-02 10:02:37 +00001870 switch (errcode) {
1871 case -3: maybe_die("arith", "exponent less than 0"); break;
1872 case -2: maybe_die("arith", "divide by zero"); break;
1873 case -5: maybe_die("arith", "expression recursion loop detected"); break;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001874 default: maybe_die("arith", "syntax error"); break;
Mike Frysinger98c52642009-04-02 10:02:37 +00001875 }
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001876 }
Mike Frysinger98c52642009-04-02 10:02:37 +00001877 debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001878 sprintf(arith_buf, arith_t_fmt, res);
1879 val = arith_buf;
Mike Frysinger98c52642009-04-02 10:02:37 +00001880 break;
1881 }
1882#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001883 default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001884 case_default: {
1885 bool exp_len = false, exp_null = false;
1886 char *var = arg, exp_save, exp_op, *exp_word;
1887 size_t exp_off = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001888 *p = '\0';
1889 arg[0] = first_ch & 0x7f;
Mike Frysinger6379bb42009-03-28 18:55:03 +00001890
1891 /* prepare for expansions */
1892 if (var[0] == '#') {
1893 /* handle length expansion ${#var} */
1894 exp_len = true;
1895 ++var;
1896 } else {
1897 /* maybe handle parameter expansion */
1898 exp_off = strcspn(var, ":-=+?");
1899 if (!var[exp_off])
1900 exp_off = 0;
1901 if (exp_off) {
1902 exp_save = var[exp_off];
1903 exp_null = exp_save == ':';
1904 exp_word = var + exp_off;
1905 if (exp_null) ++exp_word;
1906 exp_op = *exp_word++;
1907 var[exp_off] = '\0';
1908 }
1909 }
1910
1911 /* lookup the variable in question */
1912 if (isdigit(var[0])) {
Mike Frysinger7c3e52c2009-03-28 21:06:22 +00001913 /* handle_dollar() should have vetted var for us */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001914 i = xatoi_u(var);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001915 if (i < G.global_argc)
1916 val = G.global_argv[i];
1917 /* else val remains NULL: $N with too big N */
1918 } else
Mike Frysinger6379bb42009-03-28 18:55:03 +00001919 val = lookup_param(var);
1920
1921 /* handle any expansions */
1922 if (exp_len) {
1923 debug_printf_expand("expand: length of '%s' = ", val);
1924 val = utoa(val ? strlen(val) : 0);
1925 debug_printf_expand("%s\n", val);
1926 } else if (exp_off) {
1927 /* we need to do an expansion */
1928 int exp_test = (!val || (exp_null && !val[0]));
1929 if (exp_op == '+')
1930 exp_test = !exp_test;
1931 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
1932 exp_null ? "true" : "false", exp_test);
1933 if (exp_test) {
1934 if (exp_op == '?')
1935 maybe_die(var, *exp_word ? exp_word : "parameter null or not set");
1936 else
1937 val = exp_word;
1938
1939 if (exp_op == '=') {
1940 if (isdigit(var[0]) || var[0] == '#') {
1941 maybe_die(var, "special vars cannot assign in this way");
1942 val = NULL;
1943 } else {
1944 char *new_var = xmalloc(strlen(var) + strlen(val) + 2);
1945 sprintf(new_var, "%s=%s", var, val);
1946 set_local_var(new_var, -1);
1947 }
1948 }
1949 }
1950 var[exp_off] = exp_save;
1951 }
1952
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001953 arg[0] = first_ch;
Mike Frysinger6379bb42009-03-28 18:55:03 +00001954
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001955#if ENABLE_HUSH_TICK
1956 store_val:
1957#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001958 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001959 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001960 if (val) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001961 /* unquoted var's contents should be globbed, so don't escape */
1962 smallint sv = output->o_escape;
1963 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001964 n = expand_on_ifs(output, n, val);
1965 val = NULL;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001966 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001967 }
1968 } else { /* quoted $VAR, val will be appended below */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001969 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001970 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001971 } /* default: */
1972 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001973 if (val) {
1974 o_addQstr(output, val, strlen(val));
1975 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00001976 /* Do the check to avoid writing to a const string */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001977 if (*p != SPECIAL_VAR_SYMBOL)
Mike Frysinger6379bb42009-03-28 18:55:03 +00001978 *p = SPECIAL_VAR_SYMBOL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001979
1980#if ENABLE_HUSH_TICK
1981 o_free(&subst_result);
1982#endif
1983 arg = ++p;
1984 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
1985
1986 if (arg[0]) {
1987 debug_print_list("expand_vars_to_list[a]", output, n);
1988 /* this part is literal, and it was already pre-quoted
1989 * if needed (much earlier), do not use o_addQstr here! */
Mike Frysinger98c52642009-04-02 10:02:37 +00001990 o_addstrauto(output, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001991 debug_print_list("expand_vars_to_list[b]", output, n);
1992 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
1993 && !(ored_ch & 0x80) /* and all vars were not quoted. */
1994 ) {
1995 n--;
1996 /* allow to reuse list[n] later without re-growth */
1997 output->has_empty_slot = 1;
1998 } else {
1999 o_addchr(output, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00002000 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002001 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00002002}
2003
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002004static char **expand_variables(char **argv, int or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00002005{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002006 int n;
2007 char **list;
2008 char **v;
2009 o_string output = NULL_O_STRING;
2010
2011 if (or_mask & 0x100) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002012 output.o_escape = 1; /* protect against globbing for "$var" */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002013 /* (unquoted $var will temporarily switch it off) */
2014 output.o_glob = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002015 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002016
2017 n = 0;
2018 v = argv;
2019 while (*v) {
2020 n = expand_vars_to_list(&output, n, *v, (char)or_mask);
2021 v++;
2022 }
2023 debug_print_list("expand_variables", &output, n);
2024
2025 /* output.data (malloced in one block) gets returned in "list" */
2026 list = o_finalize_list(&output, n);
2027 debug_print_strings("expand_variables[1]", list);
2028 return list;
Eric Andersen25f27032001-04-26 23:22:31 +00002029}
2030
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002031static char **expand_strvec_to_strvec(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00002032{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002033 return expand_variables(argv, 0x100);
Eric Andersen25f27032001-04-26 23:22:31 +00002034}
2035
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002036/* Used for expansion of right hand of assignments */
2037/* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs
2038 * "v=/bin/c*" */
2039static char *expand_string_to_string(const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00002040{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002041 char *argv[2], **list;
2042
2043 argv[0] = (char*)str;
2044 argv[1] = NULL;
2045 list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */
2046 if (HUSH_DEBUG)
2047 if (!list[0] || list[1])
2048 bb_error_msg_and_die("BUG in varexp2");
2049 /* actually, just move string 2*sizeof(char*) bytes back */
2050 overlapping_strcpy((char*)list, list[0]);
2051 debug_printf_expand("string_to_string='%s'\n", (char*)list);
2052 return (char*)list;
2053}
2054
2055/* Used for "eval" builtin */
2056static char* expand_strvec_to_string(char **argv)
2057{
2058 char **list;
2059
2060 list = expand_variables(argv, 0x80);
2061 /* Convert all NULs to spaces */
2062 if (list[0]) {
2063 int n = 1;
2064 while (list[n]) {
2065 if (HUSH_DEBUG)
2066 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2067 bb_error_msg_and_die("BUG in varexp3");
2068 list[n][-1] = ' '; /* TODO: or to G.ifs[0]? */
2069 n++;
2070 }
2071 }
2072 overlapping_strcpy((char*)list, list[0]);
2073 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
2074 return (char*)list;
2075}
2076
2077static char **expand_assignments(char **argv, int count)
2078{
2079 int i;
2080 char **p = NULL;
2081 /* Expand assignments into one string each */
2082 for (i = 0; i < count; i++) {
2083 p = add_string_to_strings(p, expand_string_to_string(argv[i]));
2084 }
2085 return p;
Eric Andersen25f27032001-04-26 23:22:31 +00002086}
2087
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002088
Eric Andersen25f27032001-04-26 23:22:31 +00002089/* squirrel != NULL means we squirrel away copies of stdin, stdout,
2090 * and stderr if they are redirected. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002091static int setup_redirects(struct command *prog, int squirrel[])
Eric Andersen25f27032001-04-26 23:22:31 +00002092{
2093 int openfd, mode;
2094 struct redir_struct *redir;
2095
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002096 for (redir = prog->redirects; redir; redir = redir->next) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002097 if (redir->dup == -1 && redir->rd_filename == NULL) {
Eric Andersen817e73c2001-06-06 17:56:09 +00002098 /* something went wrong in the parse. Pretend it didn't happen */
2099 continue;
2100 }
Eric Andersen25f27032001-04-26 23:22:31 +00002101 if (redir->dup == -1) {
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002102 char *p;
Denis Vlasenko55789c62008-06-18 16:30:42 +00002103 mode = redir_table[redir->rd_type].mode;
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00002104//TODO: check redir for names like '\\'
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002105 p = expand_string_to_string(redir->rd_filename);
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002106 openfd = open_or_warn(p, mode);
2107 free(p);
Eric Andersen25f27032001-04-26 23:22:31 +00002108 if (openfd < 0) {
2109 /* this could get lost if stderr has been redirected, but
2110 bash and ash both lose it as well (though zsh doesn't!) */
Eric Andersen25f27032001-04-26 23:22:31 +00002111 return 1;
2112 }
2113 } else {
2114 openfd = redir->dup;
2115 }
2116
2117 if (openfd != redir->fd) {
2118 if (squirrel && redir->fd < 3) {
2119 squirrel[redir->fd] = dup(redir->fd);
2120 }
Eric Andersen83a2ae22001-05-07 17:59:25 +00002121 if (openfd == -3) {
Denis Vlasenko8412d792007-10-01 09:59:47 +00002122 //close(openfd); // close(-3) ??!
Eric Andersen83a2ae22001-05-07 17:59:25 +00002123 } else {
2124 dup2(openfd, redir->fd);
Matt Kraaic616e532001-06-05 16:50:08 +00002125 if (redir->dup == -1)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002126 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002127 }
Eric Andersen25f27032001-04-26 23:22:31 +00002128 }
2129 }
2130 return 0;
2131}
2132
2133static void restore_redirects(int squirrel[])
2134{
2135 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002136 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002137 fd = squirrel[i];
2138 if (fd != -1) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002139 /* We simply die on error */
2140 xmove_fd(fd, i);
Eric Andersen25f27032001-04-26 23:22:31 +00002141 }
2142 }
2143}
2144
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002145
2146#if !defined(DEBUG_CLEAN)
2147#define free_pipe_list(head, indent) free_pipe_list(head)
2148#define free_pipe(pi, indent) free_pipe(pi)
2149#endif
2150static int free_pipe_list(struct pipe *head, int indent);
2151
2152/* return code is the exit status of the pipe */
2153static int free_pipe(struct pipe *pi, int indent)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002154{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002155 char **p;
2156 struct command *command;
2157 struct redir_struct *r, *rnext;
2158 int a, i, ret_code = 0;
2159
2160 if (pi->stopped_cmds > 0)
2161 return ret_code;
2162 debug_printf_clean("%s run pipe: (pid %d)\n", indenter(indent), getpid());
2163 for (i = 0; i < pi->num_cmds; i++) {
2164 command = &pi->cmds[i];
2165 debug_printf_clean("%s command %d:\n", indenter(indent), i);
2166 if (command->argv) {
2167 for (a = 0, p = command->argv; *p; a++, p++) {
2168 debug_printf_clean("%s argv[%d] = %s\n", indenter(indent), a, *p);
2169 }
2170 free_strings(command->argv);
2171 command->argv = NULL;
2172 } else if (command->group) {
2173 debug_printf_clean("%s begin group (grp_type:%d)\n", indenter(indent), command->grp_type);
2174 ret_code = free_pipe_list(command->group, indent+3);
2175 debug_printf_clean("%s end group\n", indenter(indent));
2176 } else {
2177 debug_printf_clean("%s (nil)\n", indenter(indent));
2178 }
2179 for (r = command->redirects; r; r = rnext) {
2180 debug_printf_clean("%s redirect %d%s", indenter(indent), r->fd, redir_table[r->rd_type].descrip);
2181 if (r->dup == -1) {
2182 /* guard against the case >$FOO, where foo is unset or blank */
2183 if (r->rd_filename) {
2184 debug_printf_clean(" %s\n", r->rd_filename);
2185 free(r->rd_filename);
2186 r->rd_filename = NULL;
2187 }
2188 } else {
2189 debug_printf_clean("&%d\n", r->dup);
2190 }
2191 rnext = r->next;
2192 free(r);
2193 }
2194 command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002195 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002196 free(pi->cmds); /* children are an array, they get freed all at once */
2197 pi->cmds = NULL;
2198#if ENABLE_HUSH_JOB
2199 free(pi->cmdtext);
2200 pi->cmdtext = NULL;
2201#endif
2202 return ret_code;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002203}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002204
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002205static int free_pipe_list(struct pipe *head, int indent)
2206{
2207 int rcode = 0; /* if list has no members */
2208 struct pipe *pi, *next;
2209
2210 for (pi = head; pi; pi = next) {
2211#if HAS_KEYWORDS
2212 debug_printf_clean("%s pipe reserved mode %d\n", indenter(indent), pi->res_word);
2213#endif
2214 rcode = free_pipe(pi, indent);
2215 debug_printf_clean("%s pipe followup code %d\n", indenter(indent), pi->followup);
2216 next = pi->next;
2217 /*pi->next = NULL;*/
2218 free(pi);
2219 }
2220 return rcode;
2221}
2222
2223
2224#if !BB_MMU
2225typedef struct nommu_save_t {
2226 char **new_env;
2227 char **old_env;
2228 char **argv;
2229} nommu_save_t;
2230#else
2231#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
2232 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
2233#define pseudo_exec(nommu_save, command, argv_expanded) \
2234 pseudo_exec(command, argv_expanded)
2235#endif
2236
Denis Vlasenko05743d72008-02-10 12:10:08 +00002237/* Called after [v]fork() in run_pipe(), or from builtin_exec().
Denis Vlasenko8412d792007-10-01 09:59:47 +00002238 * Never returns.
2239 * XXX no exit() here. If you don't exec, use _exit instead.
Eric Andersen94ac2442001-05-22 19:05:18 +00002240 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002241 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002242static void pseudo_exec_argv(nommu_save_t *nommu_save, char **argv, int assignment_cnt, char **argv_expanded) NORETURN;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002243static void pseudo_exec_argv(nommu_save_t *nommu_save, char **argv, int assignment_cnt, char **argv_expanded)
Eric Andersen25f27032001-04-26 23:22:31 +00002244{
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002245 int rcode;
2246 char **new_env;
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +00002247 const struct built_in_command *x;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002248
Denis Vlasenko1359da62007-04-21 23:27:30 +00002249 /* If a variable is assigned in a forest, and nobody listens,
2250 * was it ever really set?
2251 */
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002252 if (!argv[assignment_cnt])
Denis Vlasenko1359da62007-04-21 23:27:30 +00002253 _exit(EXIT_SUCCESS);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002254
Denis Vlasenko9504e442008-10-29 01:19:15 +00002255 new_env = expand_assignments(argv, assignment_cnt);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002256#if BB_MMU
2257 putenv_all(new_env);
2258 free(new_env); /* optional */
2259#else
2260 nommu_save->new_env = new_env;
2261 nommu_save->old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002262#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002263 if (argv_expanded) {
2264 argv = argv_expanded;
2265 } else {
Denis Vlasenko37181682009-04-03 03:19:15 +00002266 argv = expand_strvec_to_strvec(argv + assignment_cnt);
Denis Vlasenko76d50412008-06-10 16:19:39 +00002267#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002268 nommu_save->argv = argv;
Denis Vlasenko76d50412008-06-10 16:19:39 +00002269#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002270 }
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002271
Denis Vlasenko1359da62007-04-21 23:27:30 +00002272 /*
2273 * Check if the command matches any of the builtins.
2274 * Depending on context, this might be redundant. But it's
2275 * easier to waste a few CPU cycles than it is to figure out
2276 * if this is one of those cases.
2277 */
Denis Vlasenkodd316dd2008-06-14 15:50:55 +00002278 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
Denis Vlasenko1359da62007-04-21 23:27:30 +00002279 if (strcmp(argv[0], x->cmd) == 0) {
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002280 debug_printf_exec("running builtin '%s'\n", argv[0]);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002281 rcode = x->function(argv);
2282 fflush(stdout);
2283 _exit(rcode);
Eric Andersen94ac2442001-05-22 19:05:18 +00002284 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00002285 }
Eric Andersen78a7c992001-05-15 16:30:25 +00002286
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002287 /* Check if the command matches any busybox applets */
Denis Vlasenko80d14be2007-04-10 23:03:30 +00002288#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002289 if (strchr(argv[0], '/') == NULL) {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002290 int a = find_applet_by_name(argv[0]);
2291 if (a >= 0) {
2292 if (APPLET_IS_NOEXEC(a)) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002293 debug_printf_exec("running applet '%s'\n", argv[0]);
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002294// is it ok that run_applet_no_and_exit() does exit(), not _exit()?
2295 run_applet_no_and_exit(a, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002296 }
2297 /* re-exec ourselves with the new arguments */
2298 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denis Vlasenkobdbbb7e2007-06-08 15:02:55 +00002299 execvp(bb_busybox_exec_path, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002300 /* If they called chroot or otherwise made the binary no longer
2301 * executable, fall through */
2302 }
2303 }
Eric Andersenaac75e52001-04-30 18:18:45 +00002304#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002305
Denis Vlasenkod5762932009-03-31 11:22:57 +00002306 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
2307
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002308 debug_printf_exec("execing '%s'\n", argv[0]);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002309 execvp(argv[0], argv);
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +00002310 bb_perror_msg("can't exec '%s'", argv[0]);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00002311 _exit(EXIT_FAILURE);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002312}
2313
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002314static int run_list(struct pipe *pi);
2315
Denis Vlasenko05743d72008-02-10 12:10:08 +00002316/* Called after [v]fork() in run_pipe()
Denis Vlasenko8412d792007-10-01 09:59:47 +00002317 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002318static void pseudo_exec(nommu_save_t *nommu_save, struct command *command, char **argv_expanded) NORETURN;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002319static void pseudo_exec(nommu_save_t *nommu_save, struct command *command, char **argv_expanded)
Denis Vlasenko1359da62007-04-21 23:27:30 +00002320{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002321 if (command->argv)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002322 pseudo_exec_argv(nommu_save, command->argv, command->assignment_cnt, argv_expanded);
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002323
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002324 if (command->group) {
Denis Vlasenko8412d792007-10-01 09:59:47 +00002325#if !BB_MMU
Denis Vlasenko3b492162007-12-24 14:26:57 +00002326 bb_error_msg_and_die("nested lists are not supported on NOMMU");
Denis Vlasenko8412d792007-10-01 09:59:47 +00002327#else
Denis Vlasenko3b492162007-12-24 14:26:57 +00002328 int rcode;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002329 debug_printf_exec("pseudo_exec: run_list\n");
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002330 rcode = run_list(command->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00002331 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00002332 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00002333 _exit(rcode);
Denis Vlasenko8412d792007-10-01 09:59:47 +00002334#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002335 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002336
2337 /* Can happen. See what bash does with ">foo" by itself. */
2338 debug_printf("trying to pseudo_exec null command\n");
2339 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00002340}
2341
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002342#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002343static const char *get_cmdtext(struct pipe *pi)
2344{
2345 char **argv;
2346 char *p;
2347 int len;
2348
2349 /* This is subtle. ->cmdtext is created only on first backgrounding.
2350 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002351 * On subsequent bg argv is trashed, but we won't use it */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002352 if (pi->cmdtext)
2353 return pi->cmdtext;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002354 argv = pi->cmds[0].argv;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002355 if (!argv || !argv[0]) {
2356 pi->cmdtext = xzalloc(1);
2357 return pi->cmdtext;
2358 }
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002359
2360 len = 0;
2361 do len += strlen(*argv) + 1; while (*++argv);
2362 pi->cmdtext = p = xmalloc(len);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002363 argv = pi->cmds[0].argv;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002364 do {
2365 len = strlen(*argv);
2366 memcpy(p, *argv, len);
2367 p += len;
2368 *p++ = ' ';
2369 } while (*++argv);
2370 p[-1] = '\0';
2371 return pi->cmdtext;
2372}
2373
Eric Andersenbafd94f2001-05-02 16:11:59 +00002374static void insert_bg_job(struct pipe *pi)
2375{
2376 struct pipe *thejob;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002377 int i;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002378
2379 /* Linear search for the ID of the job to use */
2380 pi->jobid = 1;
Denis Vlasenko87a86552008-07-29 19:43:10 +00002381 for (thejob = G.job_list; thejob; thejob = thejob->next)
Eric Andersenbafd94f2001-05-02 16:11:59 +00002382 if (thejob->jobid >= pi->jobid)
2383 pi->jobid = thejob->jobid + 1;
2384
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002385 /* Add thejob to the list of running jobs */
Denis Vlasenko87a86552008-07-29 19:43:10 +00002386 if (!G.job_list) {
2387 thejob = G.job_list = xmalloc(sizeof(*thejob));
Eric Andersenbafd94f2001-05-02 16:11:59 +00002388 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00002389 for (thejob = G.job_list; thejob->next; thejob = thejob->next)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002390 continue;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002391 thejob->next = xmalloc(sizeof(*thejob));
2392 thejob = thejob->next;
2393 }
2394
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002395 /* Physically copy the struct job */
Eric Andersen0fcd4472001-05-02 20:12:03 +00002396 memcpy(thejob, pi, sizeof(struct pipe));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002397 thejob->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
2398 /* We cannot copy entire pi->cmds[] vector! Double free()s will happen */
2399 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002400// TODO: do we really need to have so many fields which are just dead weight
2401// at execution stage?
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002402 thejob->cmds[i].pid = pi->cmds[i].pid;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002403 /* all other fields are not used and stay zero */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002404 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00002405 thejob->next = NULL;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002406 thejob->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00002407
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002408 /* We don't wait for background thejobs to return -- append it
Eric Andersenbafd94f2001-05-02 16:11:59 +00002409 to the list of backgrounded thejobs and leave it alone */
Mike Frysinger87824e02009-03-30 00:19:30 +00002410 if (G.interactive_fd)
2411 printf("[%d] %d %s\n", thejob->jobid, thejob->cmds[0].pid, thejob->cmdtext);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002412 G.last_bg_pid = thejob->cmds[0].pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +00002413 G.last_jobid = thejob->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002414}
2415
Eric Andersenbafd94f2001-05-02 16:11:59 +00002416static void remove_bg_job(struct pipe *pi)
2417{
2418 struct pipe *prev_pipe;
2419
Denis Vlasenko87a86552008-07-29 19:43:10 +00002420 if (pi == G.job_list) {
2421 G.job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002422 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00002423 prev_pipe = G.job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002424 while (prev_pipe->next != pi)
2425 prev_pipe = prev_pipe->next;
2426 prev_pipe->next = pi->next;
2427 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00002428 if (G.job_list)
2429 G.last_jobid = G.job_list->jobid;
Eric Andersen028b65b2001-06-28 01:10:11 +00002430 else
Denis Vlasenko87a86552008-07-29 19:43:10 +00002431 G.last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00002432}
Eric Andersen028b65b2001-06-28 01:10:11 +00002433
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002434/* Remove a backgrounded job */
Denis Vlasenko1359da62007-04-21 23:27:30 +00002435static void delete_finished_bg_job(struct pipe *pi)
2436{
2437 remove_bg_job(pi);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002438 pi->stopped_cmds = 0;
Eric Andersenbf7df042001-05-23 22:18:35 +00002439 free_pipe(pi, 0);
Eric Andersenbafd94f2001-05-02 16:11:59 +00002440 free(pi);
2441}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002442#endif /* JOB */
Eric Andersenbafd94f2001-05-02 16:11:59 +00002443
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002444/* Check to see if any processes have exited -- if they
2445 * have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00002446static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00002447{
Eric Andersenc798b072001-06-22 06:23:03 +00002448 int attributes;
2449 int status;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002450#if ENABLE_HUSH_JOB
Eric Andersenbafd94f2001-05-02 16:11:59 +00002451 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002452#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00002453 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002454 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002455
Denis Vlasenkod5762932009-03-31 11:22:57 +00002456 debug_printf_jobs("checkjobs %p\n", fg_pipe);
2457
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002458 errno = 0;
2459// if (G.handled_SIGCHLD == G.count_SIGCHLD)
2460// /* avoid doing syscall, nothing there anyway */
2461// return rcode;
2462
Eric Andersenc798b072001-06-22 06:23:03 +00002463 attributes = WUNTRACED;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002464 if (fg_pipe == NULL)
Eric Andersenc798b072001-06-22 06:23:03 +00002465 attributes |= WNOHANG;
Eric Andersenc798b072001-06-22 06:23:03 +00002466
Denis Vlasenko1359da62007-04-21 23:27:30 +00002467/* Do we do this right?
2468 * bash-3.00# sleep 20 | false
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002469 * <ctrl-Z pressed>
Denis Vlasenko1359da62007-04-21 23:27:30 +00002470 * [3]+ Stopped sleep 20 | false
2471 * bash-3.00# echo $?
2472 * 1 <========== bg pipe is not fully done, but exitcode is already known!
2473 */
2474
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002475//FIXME: non-interactive bash does not continue even if all processes in fg pipe
2476//are stopped. Testcase: "cat | cat" in a script (not on command line)
2477// + killall -STOP cat
2478
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002479 wait_more:
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002480 while (1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002481 int i;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002482 int dead;
2483
2484// i = G.count_SIGCHLD;
2485 childpid = waitpid(-1, &status, attributes);
2486 if (childpid <= 0) {
2487 if (childpid && errno != ECHILD)
2488 bb_perror_msg("waitpid");
2489// else /* Until next SIGCHLD, waitpid's are useless */
2490// G.handled_SIGCHLD = i;
2491 break;
2492 }
2493 dead = WIFEXITED(status) || WIFSIGNALED(status);
2494
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002495#if DEBUG_JOBS
Denis Vlasenko1359da62007-04-21 23:27:30 +00002496 if (WIFSTOPPED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002497 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002498 childpid, WSTOPSIG(status), WEXITSTATUS(status));
2499 if (WIFSIGNALED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002500 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002501 childpid, WTERMSIG(status), WEXITSTATUS(status));
2502 if (WIFEXITED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002503 debug_printf_jobs("pid %d exited, exitcode %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002504 childpid, WEXITSTATUS(status));
2505#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002506 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00002507 if (fg_pipe) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002508 for (i = 0; i < fg_pipe->num_cmds; i++) {
2509 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
2510 if (fg_pipe->cmds[i].pid != childpid)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002511 continue;
2512 /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */
2513 if (dead) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002514 fg_pipe->cmds[i].pid = 0;
2515 fg_pipe->alive_cmds--;
2516 if (i == fg_pipe->num_cmds - 1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002517 /* last process gives overall exitstatus */
2518 rcode = WEXITSTATUS(status);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002519 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
Denis Vlasenko1359da62007-04-21 23:27:30 +00002520 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002521 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002522 fg_pipe->cmds[i].is_stopped = 1;
2523 fg_pipe->stopped_cmds++;
Eric Andersenc798b072001-06-22 06:23:03 +00002524 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002525 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
2526 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
2527 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002528 /* All processes in fg pipe have exited/stopped */
2529#if ENABLE_HUSH_JOB
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002530 if (fg_pipe->alive_cmds)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002531 insert_bg_job(fg_pipe);
2532#endif
2533 return rcode;
2534 }
2535 /* There are still running processes in the fg pipe */
2536 goto wait_more; /* do waitpid again */
Eric Andersenc798b072001-06-22 06:23:03 +00002537 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002538 /* it wasnt fg_pipe, look for process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00002539 }
2540
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002541#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002542 /* We asked to wait for bg or orphaned children */
2543 /* No need to remember exitcode in this case */
Denis Vlasenko87a86552008-07-29 19:43:10 +00002544 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002545 for (i = 0; i < pi->num_cmds; i++) {
2546 if (pi->cmds[i].pid == childpid)
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002547 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00002548 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00002549 }
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002550 /* Happens when shell is used as init process (init=/bin/sh) */
2551 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002552 continue; /* do waitpid again */
Eric Andersenaeb44c42001-05-22 20:29:00 +00002553
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002554 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00002555 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00002556 /* child exited */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002557 pi->cmds[i].pid = 0;
2558 pi->alive_cmds--;
2559 if (!pi->alive_cmds) {
Mike Frysinger87824e02009-03-30 00:19:30 +00002560 if (G.interactive_fd)
2561 printf(JOB_STATUS_FORMAT, pi->jobid,
2562 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002563 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00002564 }
2565 } else {
2566 /* child stopped */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002567 pi->cmds[i].is_stopped = 1;
2568 pi->stopped_cmds++;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002569 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002570#endif
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002571 } /* while (waitpid succeeds)... */
Eric Andersenbafd94f2001-05-02 16:11:59 +00002572
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002573 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00002574}
2575
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002576#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +00002577static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
2578{
2579 pid_t p;
2580 int rcode = checkjobs(fg_pipe);
2581 /* Job finished, move the shell to the foreground */
Denis Vlasenko170435c2007-05-23 13:01:10 +00002582 p = getpgid(0); /* pgid of our process */
2583 debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p);
Denis Vlasenko87a86552008-07-29 19:43:10 +00002584 tcsetpgrp(G.interactive_fd, p);
Denis Vlasenko52881e92007-04-21 13:42:52 +00002585 return rcode;
2586}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002587#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00002588
Denis Vlasenko05743d72008-02-10 12:10:08 +00002589/* run_pipe() starts all the jobs, but doesn't wait for anything
Eric Andersenc798b072001-06-22 06:23:03 +00002590 * to finish. See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00002591 *
2592 * return code is normally -1, when the caller has to wait for children
2593 * to finish to determine the exit status of the pipe. If the pipe
2594 * is a simple builtin command, however, the action is done by the
Denis Vlasenko05743d72008-02-10 12:10:08 +00002595 * time run_pipe returns, and the exit code is provided as the
Eric Andersen25f27032001-04-26 23:22:31 +00002596 * return value.
2597 *
2598 * The input of the pipe is always stdin, the output is always
2599 * stdout. The outpipe[] mechanism in BusyBox-0.48 lash is bogus,
2600 * because it tries to avoid running the command substitution in
2601 * subshell, when that is in fact necessary. The subshell process
2602 * now has its stdout directed to the input of the appropriate pipe,
2603 * so this routine is noticeably simpler.
Denis Vlasenko170435c2007-05-23 13:01:10 +00002604 *
2605 * Returns -1 only if started some children. IOW: we have to
2606 * mask out retvals of builtins etc with 0xff!
Eric Andersen25f27032001-04-26 23:22:31 +00002607 */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002608static int run_pipe(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00002609{
2610 int i;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002611 int nextin;
2612 int pipefds[2]; /* pipefds[0] is for reading */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002613 struct command *command;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002614 char **argv_expanded;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002615 char **argv;
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +00002616 const struct built_in_command *x;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002617 char *p;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00002618 /* it is not always needed, but we aim to smaller code */
2619 int squirrel[] = { -1, -1, -1 };
2620 int rcode;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002621 const int single_and_fg = (pi->num_cmds == 1 && pi->followup != PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00002622
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002623 debug_printf_exec("run_pipe start: single_and_fg=%d\n", single_and_fg);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00002624
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002625#if ENABLE_HUSH_JOB
Eric Andersenada18ff2001-05-21 16:18:22 +00002626 pi->pgrp = -1;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002627#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002628 pi->alive_cmds = 1;
2629 pi->stopped_cmds = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00002630
2631 /* Check if this is a simple builtin (not part of a pipe).
2632 * Builtins within pipes have to fork anyway, and are handled in
2633 * pseudo_exec. "echo foo | read bar" doesn't work on bash, either.
2634 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002635 command = &(pi->cmds[0]);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002636
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002637#if ENABLE_HUSH_FUNCTIONS
2638 if (single_and_fg && command->group && command->grp_type == GRP_FUNCTION) {
2639 /* We "execute" function definition */
2640 bb_error_msg("here we ought to remember function definition, and go on");
2641 return EXIT_SUCCESS;
2642 }
2643#endif
2644
2645 if (single_and_fg && command->group && command->grp_type == GRP_NORMAL) {
Eric Andersen04407e52001-06-07 16:42:05 +00002646 debug_printf("non-subshell grouping\n");
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002647 setup_redirects(command, squirrel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00002648 debug_printf_exec(": run_list\n");
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002649 rcode = run_list(command->group) & 0xff;
Eric Andersen04407e52001-06-07 16:42:05 +00002650 restore_redirects(squirrel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00002651 debug_printf_exec("run_pipe return %d\n", rcode);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002652 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko05743d72008-02-10 12:10:08 +00002653 return rcode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002654 }
2655
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002656 argv = command->argv;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002657 argv_expanded = NULL;
Denis Vlasenko1359da62007-04-21 23:27:30 +00002658
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002659 if (single_and_fg && argv != NULL) {
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002660 char **new_env = NULL;
2661 char **old_env = NULL;
2662
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002663 i = command->assignment_cnt;
Denis Vlasenko1359da62007-04-21 23:27:30 +00002664 if (i != 0 && argv[i] == NULL) {
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002665 /* assignments, but no command: set local environment */
Denis Vlasenko1359da62007-04-21 23:27:30 +00002666 for (i = 0; argv[i] != NULL; i++) {
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002667 debug_printf("local environment set: %s\n", argv[i]);
Denis Vlasenko170435c2007-05-23 13:01:10 +00002668 p = expand_string_to_string(argv[i]);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002669 set_local_var(p, 0);
Eric Andersen78a7c992001-05-15 16:30:25 +00002670 }
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002671 return EXIT_SUCCESS; /* don't worry about errors in set_local_var() yet */
Eric Andersen78a7c992001-05-15 16:30:25 +00002672 }
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002673
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002674 /* Expand the rest into (possibly) many strings each */
2675 argv_expanded = expand_strvec_to_strvec(argv + i);
2676
Denis Vlasenkodd316dd2008-06-14 15:50:55 +00002677 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002678 if (strcmp(argv_expanded[0], x->cmd) != 0)
2679 continue;
2680 if (x->function == builtin_exec && argv_expanded[1] == NULL) {
2681 debug_printf("exec with redirects only\n");
2682 setup_redirects(command, NULL);
2683 rcode = EXIT_SUCCESS;
2684 goto clean_up_and_ret1;
Eric Andersen25f27032001-04-26 23:22:31 +00002685 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002686 debug_printf("builtin inline %s\n", argv_expanded[0]);
2687 /* XXX setup_redirects acts on file descriptors, not FILEs.
2688 * This is perfect for work that comes after exec().
2689 * Is it really safe for inline use? Experimentally,
2690 * things seem to work with glibc. */
2691 setup_redirects(command, squirrel);
2692 new_env = expand_assignments(argv, command->assignment_cnt);
2693 old_env = putenv_all_and_save_old(new_env);
2694 debug_printf_exec(": builtin '%s' '%s'...\n", x->cmd, argv_expanded[1]);
2695 rcode = x->function(argv_expanded) & 0xff;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002696#if ENABLE_FEATURE_SH_STANDALONE
2697 clean_up_and_ret:
2698#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002699 restore_redirects(squirrel);
2700 free_strings_and_unsetenv(new_env, 1);
2701 putenv_all(old_env);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002702 free(old_env); /* not free_strings()! */
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002703 clean_up_and_ret1:
2704 free(argv_expanded);
2705 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
2706 debug_printf_exec("run_pipe return %d\n", rcode);
2707 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00002708 }
Denis Vlasenkof5294e12007-04-14 10:09:57 +00002709#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002710 i = find_applet_by_name(argv_expanded[0]);
2711 if (i >= 0 && APPLET_IS_NOFORK(i)) {
2712 setup_redirects(command, squirrel);
2713 save_nofork_data(&G.nofork_save);
2714 new_env = expand_assignments(argv, command->assignment_cnt);
2715 old_env = putenv_all_and_save_old(new_env);
2716 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n", argv_expanded[0], argv_expanded[1]);
2717 rcode = run_nofork_applet_prime(&G.nofork_save, i, argv_expanded);
2718 goto clean_up_and_ret;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00002719 }
2720#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002721 }
2722
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002723 /* NB: argv_expanded may already be created, and that
2724 * might include `cmd` runs! Do not rerun it! We *must*
2725 * use argv_expanded if it's non-NULL */
2726
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002727 /* Going to fork a child per each pipe member */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002728 pi->alive_cmds = 0;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002729 nextin = 0;
2730
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002731 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko76d50412008-06-10 16:19:39 +00002732#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002733 volatile nommu_save_t nommu_save;
2734 nommu_save.new_env = NULL;
2735 nommu_save.old_env = NULL;
2736 nommu_save.argv = NULL;
Denis Vlasenko76d50412008-06-10 16:19:39 +00002737#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002738 command = &(pi->cmds[i]);
2739 if (command->argv) {
2740 debug_printf_exec(": pipe member '%s' '%s'...\n", command->argv[0], command->argv[1]);
Denis Vlasenko76d50412008-06-10 16:19:39 +00002741 } else
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002742 debug_printf_exec(": pipe member with no argv\n");
Eric Andersen25f27032001-04-26 23:22:31 +00002743
2744 /* pipes are inserted between pairs of commands */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002745 pipefds[0] = 0;
2746 pipefds[1] = 1;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002747 if ((i + 1) < pi->num_cmds)
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002748 xpipe(pipefds);
Eric Andersen25f27032001-04-26 23:22:31 +00002749
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002750 command->pid = BB_MMU ? fork() : vfork();
2751 if (!command->pid) { /* child */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002752#if ENABLE_HUSH_JOB
Denis Vlasenkod5762932009-03-31 11:22:57 +00002753 die_sleep = 0; /* let nofork's xfuncs die */
2754
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002755 /* Every child adds itself to new process group
Denis Vlasenko05743d72008-02-10 12:10:08 +00002756 * with pgid == pid_of_first_child_in_pipe */
Denis Vlasenko87a86552008-07-29 19:43:10 +00002757 if (G.run_list_level == 1 && G.interactive_fd) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00002758 pid_t pgrp;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002759 pgrp = pi->pgrp;
2760 if (pgrp < 0) /* true for 1st process only */
2761 pgrp = getpid();
2762 if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002763 /* We do it in *every* child, not just first,
2764 * to avoid races */
Denis Vlasenko87a86552008-07-29 19:43:10 +00002765 tcsetpgrp(G.interactive_fd, pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002766 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002767 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002768#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +00002769 xmove_fd(nextin, 0);
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002770 xmove_fd(pipefds[1], 1); /* write end */
2771 if (pipefds[0] > 1)
2772 close(pipefds[0]); /* read end */
Eric Andersen25f27032001-04-26 23:22:31 +00002773 /* Like bash, explicit redirects override pipes,
2774 * and the pipe fd is available for dup'ing. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002775 setup_redirects(command, NULL);
Eric Andersen52a97ca2001-06-22 06:49:26 +00002776
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002777 /* Restore default handlers just prior to exec */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00002778 /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
2779
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002780 /* Stores to nommu_save list of env vars putenv'ed
2781 * (NOMMU, on MMU we don't need that) */
2782 /* cast away volatility... */
2783 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002784 /* pseudo_exec() does not return */
Eric Andersen25f27032001-04-26 23:22:31 +00002785 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002786 /* parent */
2787#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002788 /* Clean up after vforked child */
2789 free(nommu_save.argv);
2790 free_strings_and_unsetenv(nommu_save.new_env, 1);
2791 putenv_all(nommu_save.old_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002792#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002793 free(argv_expanded);
2794 argv_expanded = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002795 if (command->pid < 0) { /* [v]fork failed */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002796 /* Clearly indicate, was it fork or vfork */
Denis Vlasenko82604e92008-07-01 15:59:42 +00002797 bb_perror_msg(BB_MMU ? "fork" : "vfork");
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002798 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002799 pi->alive_cmds++;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002800#if ENABLE_HUSH_JOB
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002801 /* Second and next children need to know pid of first one */
2802 if (pi->pgrp < 0)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002803 pi->pgrp = command->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002804#endif
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002805 }
Eric Andersen25f27032001-04-26 23:22:31 +00002806
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002807 if (i)
2808 close(nextin);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002809 if ((i + 1) < pi->num_cmds)
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002810 close(pipefds[1]); /* write end */
2811 /* Pass read (output) pipe end to next iteration */
Eric Andersen25f27032001-04-26 23:22:31 +00002812 nextin = pipefds[0];
2813 }
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002814
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002815 if (!pi->alive_cmds) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00002816 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
2817 return 1;
2818 }
2819
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002820 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
Eric Andersen25f27032001-04-26 23:22:31 +00002821 return -1;
2822}
2823
Denis Vlasenko4b924f32007-05-30 00:29:55 +00002824#ifndef debug_print_tree
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002825static void debug_print_tree(struct pipe *pi, int lvl)
2826{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002827 static const char *const PIPE[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002828 [PIPE_SEQ] = "SEQ",
2829 [PIPE_AND] = "AND",
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002830 [PIPE_OR ] = "OR" ,
2831 [PIPE_BG ] = "BG" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002832 };
2833 static const char *RES[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002834 [RES_NONE ] = "NONE" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00002835#if ENABLE_HUSH_IF
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002836 [RES_IF ] = "IF" ,
2837 [RES_THEN ] = "THEN" ,
2838 [RES_ELIF ] = "ELIF" ,
2839 [RES_ELSE ] = "ELSE" ,
2840 [RES_FI ] = "FI" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00002841#endif
2842#if ENABLE_HUSH_LOOPS
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002843 [RES_FOR ] = "FOR" ,
2844 [RES_WHILE] = "WHILE",
2845 [RES_UNTIL] = "UNTIL",
2846 [RES_DO ] = "DO" ,
2847 [RES_DONE ] = "DONE" ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +00002848#endif
2849#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002850 [RES_IN ] = "IN" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00002851#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00002852#if ENABLE_HUSH_CASE
2853 [RES_CASE ] = "CASE" ,
2854 [RES_MATCH] = "MATCH",
2855 [RES_CASEI] = "CASEI",
2856 [RES_ESAC ] = "ESAC" ,
2857#endif
Denis Vlasenko06810332007-05-21 23:30:54 +00002858 [RES_XXXX ] = "XXXX" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002859 [RES_SNTX ] = "SNTX" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002860 };
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002861 static const char *const GRPTYPE[] = {
2862 "()",
2863 "{}",
2864#if ENABLE_HUSH_FUNCTIONS
2865 "func()",
2866#endif
2867 };
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002868
2869 int pin, prn;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002870
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002871 pin = 0;
2872 while (pi) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002873 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
2874 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002875 prn = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002876 while (prn < pi->num_cmds) {
2877 struct command *command = &pi->cmds[prn];
2878 char **argv = command->argv;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002879
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002880 fprintf(stderr, "%*s prog %d assignment_cnt:%d", lvl*2, "", prn, command->assignment_cnt);
2881 if (command->group) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002882 fprintf(stderr, " group %s: (argv=%p)\n",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002883 GRPTYPE[command->grp_type],
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002884 argv);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002885 debug_print_tree(command->group, lvl+1);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002886 prn++;
2887 continue;
2888 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002889 if (argv) while (*argv) {
2890 fprintf(stderr, " '%s'", *argv);
2891 argv++;
Denis Vlasenko4b924f32007-05-30 00:29:55 +00002892 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002893 fprintf(stderr, "\n");
2894 prn++;
2895 }
2896 pi = pi->next;
2897 pin++;
2898 }
2899}
2900#endif
2901
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002902/* NB: called by pseudo_exec, and therefore must not modify any
2903 * global data until exec/_exit (we can be a child after vfork!) */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002904static int run_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00002905{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00002906#if ENABLE_HUSH_CASE
2907 char *case_word = NULL;
2908#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00002909#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00002910 struct pipe *loop_top = NULL;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00002911 char *for_varname = NULL;
2912 char **for_lcur = NULL;
2913 char **for_list = NULL;
Denis Vlasenko06810332007-05-21 23:30:54 +00002914#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00002915 smallint flag_skip = 1;
Denis Vlasenkocf22c892008-07-28 15:17:44 +00002916 smalluint rcode = 0; /* probably just for compiler */
Denis Vlasenkod91afa32008-07-29 11:10:01 +00002917#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00002918 smalluint cond_code = 0;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00002919#else
Denis Vlasenkobcb25532008-07-28 23:04:34 +00002920 enum { cond_code = 0, };
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00002921#endif
Denis Vlasenkobcb25532008-07-28 23:04:34 +00002922 /*enum reserved_style*/ smallint rword = RES_NONE;
2923 /*enum reserved_style*/ smallint skip_more_for_this_rword = RES_XXXX;
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00002924
Denis Vlasenko87a86552008-07-29 19:43:10 +00002925 debug_printf_exec("run_list start lvl %d\n", G.run_list_level + 1);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00002926
Denis Vlasenko06810332007-05-21 23:30:54 +00002927#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00002928 /* Check syntax for "for" */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00002929 for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
2930 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00002931 continue;
2932 /* current word is FOR or IN (BOLD in comments below) */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00002933 if (cpipe->next == NULL) {
Denis Vlasenko17f02e72008-07-14 04:32:29 +00002934 syntax("malformed for");
Denis Vlasenko87a86552008-07-29 19:43:10 +00002935 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002936 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002937 }
Denis Vlasenko17f02e72008-07-14 04:32:29 +00002938 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00002939 if (cpipe->next->res_word == RES_DO)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00002940 continue;
2941 /* next word is not "do". It must be "in" then ("FOR v in ...") */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00002942 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
2943 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002944 ) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00002945 syntax("malformed for");
Denis Vlasenko87a86552008-07-29 19:43:10 +00002946 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002947 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002948 }
2949 }
Denis Vlasenko06810332007-05-21 23:30:54 +00002950#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002951
Denis Vlasenkobe709c22008-07-28 00:01:16 +00002952 /* Past this point, all code paths should jump to ret: label
Denis Vlasenko12acec52008-07-28 15:15:59 +00002953 * in order to return, no direct "return" statements please.
2954 * This helps to ensure that no memory is leaked. */
Denis Vlasenkobe709c22008-07-28 00:01:16 +00002955
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00002956////TODO: ctrl-Z handling needs re-thinking and re-testing
Denis Vlasenkod5762932009-03-31 11:22:57 +00002957
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002958#if ENABLE_HUSH_JOB
2959 /* Example of nested list: "while true; do { sleep 1 | exit 2; } done".
2960 * We are saving state before entering outermost list ("while...done")
2961 * so that ctrl-Z will correctly background _entire_ outermost list,
2962 * not just a part of it (like "sleep 1 | exit 2") */
Denis Vlasenko87a86552008-07-29 19:43:10 +00002963 if (++G.run_list_level == 1 && G.interactive_fd) {
2964 if (sigsetjmp(G.toplevel_jb, 1)) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002965 /* ctrl-Z forked and we are parent; or ctrl-C.
2966 * Sighandler has longjmped us here */
2967 signal(SIGINT, SIG_IGN);
2968 signal(SIGTSTP, SIG_IGN);
2969 /* Restore level (we can be coming from deep inside
2970 * nested levels) */
Denis Vlasenko87a86552008-07-29 19:43:10 +00002971 G.run_list_level = 1;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002972#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko87a86552008-07-29 19:43:10 +00002973 if (G.nofork_save.saved) { /* if save area is valid */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002974 debug_printf_jobs("exiting nofork early\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00002975 restore_nofork_data(&G.nofork_save);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002976 }
2977#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00002978//// if (G.ctrl_z_flag) {
2979//// /* ctrl-Z has forked and stored pid of the child in pi->pid.
2980//// * Remember this child as background job */
2981//// insert_bg_job(pi);
2982//// } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002983 /* ctrl-C. We just stop doing whatever we were doing */
Denis Vlasenko4daad902007-09-27 10:20:47 +00002984 bb_putchar('\n');
Denis Vlasenkod5762932009-03-31 11:22:57 +00002985//// }
Denis Vlasenkoff29b4f2008-07-29 13:57:59 +00002986 USE_HUSH_LOOPS(loop_top = NULL;)
Denis Vlasenko87a86552008-07-29 19:43:10 +00002987 USE_HUSH_LOOPS(G.depth_of_loop = 0;)
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002988 rcode = 0;
2989 goto ret;
2990 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00002991//// /* ctrl-Z handler will store pid etc in pi */
2992//// G.toplevel_list = pi;
2993//// G.ctrl_z_flag = 0;
2994////#if ENABLE_FEATURE_SH_STANDALONE
2995//// G.nofork_save.saved = 0; /* in case we will run a nofork later */
2996////#endif
2997//// signal_SA_RESTART_empty_mask(SIGTSTP, handler_ctrl_z);
2998//// signal(SIGINT, handler_ctrl_c);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002999 }
Denis Vlasenko05743d72008-02-10 12:10:08 +00003000#endif /* JOB */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003001
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003002 /* Go through list of pipes, (maybe) executing them. */
3003 for (; pi; pi = USE_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00003004 if (G.flag_SIGINT)
3005 break;
3006
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003007 IF_HAS_KEYWORDS(rword = pi->res_word;)
3008 IF_HAS_NO_KEYWORDS(rword = RES_NONE;)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003009 debug_printf_exec(": rword=%d cond_code=%d skip_more=%d\n",
3010 rword, cond_code, skip_more_for_this_rword);
Denis Vlasenko06810332007-05-21 23:30:54 +00003011#if ENABLE_HUSH_LOOPS
Denis Vlasenko4554b722008-07-29 13:36:09 +00003012 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003013 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
Denis Vlasenko4554b722008-07-29 13:36:09 +00003014 ) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003015 /* start of a loop: remember where loop starts */
3016 loop_top = pi;
Denis Vlasenko87a86552008-07-29 19:43:10 +00003017 G.depth_of_loop++;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003018 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003019#endif
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003020 if (rword == skip_more_for_this_rword && flag_skip) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003021 if (pi->followup == PIPE_SEQ)
3022 flag_skip = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003023 /* it is "<false> && CMD" or "<true> || CMD"
3024 * and we should not execute CMD */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003025 continue;
3026 }
3027 flag_skip = 1;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003028 skip_more_for_this_rword = RES_XXXX;
Denis Vlasenko06810332007-05-21 23:30:54 +00003029#if ENABLE_HUSH_IF
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003030 if (cond_code) {
3031 if (rword == RES_THEN) {
3032 /* "if <false> THEN cmd": skip cmd */
3033 continue;
3034 }
3035 } else {
3036 if (rword == RES_ELSE || rword == RES_ELIF) {
3037 /* "if <true> then ... ELSE/ELIF cmd":
3038 * skip cmd and all following ones */
3039 break;
3040 }
3041 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003042#endif
3043#if ENABLE_HUSH_LOOPS
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003044 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003045 if (!for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003046 /* first loop through for */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003047
3048 static const char encoded_dollar_at[] ALIGN1 = {
3049 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
3050 }; /* encoded representation of "$@" */
3051 static const char *const encoded_dollar_at_argv[] = {
3052 encoded_dollar_at, NULL
3053 }; /* argv list with one element: "$@" */
3054 char **vals;
3055
3056 vals = (char**)encoded_dollar_at_argv;
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003057 if (pi->next->res_word == RES_IN) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003058 /* if no variable values after "in" we skip "for" */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003059 if (!pi->next->cmds[0].argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003060 break;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003061 vals = pi->next->cmds[0].argv;
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003062 } /* else: "for var; do..." -> assume "$@" list */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003063 /* create list of variable values */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003064 debug_print_strings("for_list made from", vals);
3065 for_list = expand_strvec_to_strvec(vals);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003066 for_lcur = for_list;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003067 debug_print_strings("for_list", for_list);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003068 for_varname = pi->cmds[0].argv[0];
3069 pi->cmds[0].argv[0] = NULL;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003070 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003071 free(pi->cmds[0].argv[0]);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003072 if (!*for_lcur) {
Denis Vlasenko12acec52008-07-28 15:15:59 +00003073 /* "for" loop is over, clean up */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003074 free(for_list);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003075 for_list = NULL;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003076 for_lcur = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003077 pi->cmds[0].argv[0] = for_varname;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003078 break;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003079 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003080 /* insert next value from for_lcur */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003081//TODO: does it need escaping?
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003082 pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++);
3083 pi->cmds[0].assignment_cnt = 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003084 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003085 if (rword == RES_IN) /* "for v IN list;..." - "in" has no cmds anyway */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003086 continue;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003087 if (rword == RES_DONE) {
3088 continue; /* "done" has no cmds too */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003089 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003090#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003091#if ENABLE_HUSH_CASE
3092 if (rword == RES_CASE) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003093 case_word = expand_strvec_to_string(pi->cmds->argv);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003094 continue;
3095 }
3096 if (rword == RES_MATCH) {
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003097 char **argv;
3098
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003099 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
3100 break;
3101 /* all prev words didn't match, does this one match? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003102 argv = pi->cmds->argv;
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003103 while (*argv) {
3104 char *pattern = expand_string_to_string(*argv);
3105 /* TODO: which FNM_xxx flags to use? */
3106 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
3107 free(pattern);
3108 if (cond_code == 0) { /* match! we will execute this branch */
3109 free(case_word); /* make future "word)" stop */
3110 case_word = NULL;
3111 break;
3112 }
3113 argv++;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003114 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003115 continue;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003116 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003117 if (rword == RES_CASEI) { /* inside of a case branch */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003118 if (cond_code != 0)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003119 continue; /* not matched yet, skip this pipe */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003120 }
3121#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00003122 /* Just pressing <enter> in shell should check for jobs.
3123 * OTOH, in non-interactive shell this is useless
3124 * and only leads to extra job checks */
3125 if (pi->num_cmds == 0) {
3126 if (G.interactive_fd)
3127 goto check_jobs_and_continue;
3128 continue;
3129 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003130
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003131 /* After analyzing all keywords and conditions, we decided
Denis Vlasenkod5762932009-03-31 11:22:57 +00003132 * to execute this pipe. NB: have to do checkjobs(NULL)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003133 * after run_pipe() to collect any background children,
3134 * even if list execution is to be stopped. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003135 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003136 {
3137 int r;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003138#if ENABLE_HUSH_LOOPS
Denis Vlasenko87a86552008-07-29 19:43:10 +00003139 G.flag_break_continue = 0;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003140#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003141 rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
3142 if (r != -1) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003143 /* we only ran a builtin: rcode is already known
3144 * and we don't need to wait for anything. */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003145 check_and_run_traps(0);
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003146#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003147 /* was it "break" or "continue"? */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003148 if (G.flag_break_continue) {
3149 smallint fbc = G.flag_break_continue;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003150 /* we might fall into outer *loop*,
3151 * don't want to break it too */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003152 if (loop_top) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003153 G.depth_break_continue--;
3154 if (G.depth_break_continue == 0)
3155 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003156 /* else: e.g. "continue 2" should *break* once, *then* continue */
3157 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003158 if (G.depth_break_continue != 0 || fbc == BC_BREAK)
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003159 goto check_jobs_and_break;
3160 /* "continue": simulate end of loop */
3161 rword = RES_DONE;
3162 continue;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003163 }
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003164#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003165 } else if (pi->followup == PIPE_BG) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003166 /* what does bash do with attempts to background builtins? */
3167 /* even bash 3.2 doesn't do that well with nested bg:
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003168 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
3169 * I'm NOT treating inner &'s as jobs */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003170 check_and_run_traps(0);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003171#if ENABLE_HUSH_JOB
Denis Vlasenko87a86552008-07-29 19:43:10 +00003172 if (G.run_list_level == 1)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003173 insert_bg_job(pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003174#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003175 rcode = 0; /* EXIT_SUCCESS */
3176 } else {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003177#if ENABLE_HUSH_JOB
Denis Vlasenko87a86552008-07-29 19:43:10 +00003178 if (G.run_list_level == 1 && G.interactive_fd) {
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003179 /* waits for completion, then fg's main shell */
3180 rcode = checkjobs_and_fg_shell(pi);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003181 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003182 debug_printf_exec(": checkjobs_and_fg_shell returned %d\n", rcode);
3183 } else
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003184#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003185 { /* this one just waits for completion */
3186 rcode = checkjobs(pi);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003187 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003188 debug_printf_exec(": checkjobs returned %d\n", rcode);
3189 }
Eric Andersen25f27032001-04-26 23:22:31 +00003190 }
3191 }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003192 debug_printf_exec(": setting last_return_code=%d\n", rcode);
Denis Vlasenko87a86552008-07-29 19:43:10 +00003193 G.last_return_code = rcode;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003194
3195 /* Analyze how result affects subsequent commands */
Denis Vlasenko06810332007-05-21 23:30:54 +00003196#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003197 if (rword == RES_IF || rword == RES_ELIF)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003198 cond_code = rcode;
Denis Vlasenko06810332007-05-21 23:30:54 +00003199#endif
3200#if ENABLE_HUSH_LOOPS
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003201 if (rword == RES_WHILE) {
Denis Vlasenko918a34b2008-07-28 23:17:31 +00003202 if (rcode) {
3203 rcode = 0; /* "while false; do...done" - exitcode 0 */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003204 goto check_jobs_and_break;
Denis Vlasenko918a34b2008-07-28 23:17:31 +00003205 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003206 }
3207 if (rword == RES_UNTIL) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003208 if (!rcode) {
3209 check_jobs_and_break:
3210 checkjobs(NULL);
3211 break;
3212 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003213 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003214#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003215 if ((rcode == 0 && pi->followup == PIPE_OR)
3216 || (rcode != 0 && pi->followup == PIPE_AND)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003217 ) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003218 skip_more_for_this_rword = rword;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003219 }
Mike Frysinger8ec1c9d2009-03-29 00:45:26 +00003220
3221 check_jobs_and_continue:
Eric Andersen028b65b2001-06-28 01:10:11 +00003222 checkjobs(NULL);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003223 } /* for (pi) */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003224
3225#if ENABLE_HUSH_JOB
Denis Vlasenkod5762932009-03-31 11:22:57 +00003226//// if (G.ctrl_z_flag) {
3227//// /* ctrl-Z forked somewhere in the past, we are the child,
3228//// * and now we completed running the list. Exit. */
3229//////TODO: _exit?
3230//// exit(rcode);
3231//// }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003232 ret:
Denis Vlasenkod5762932009-03-31 11:22:57 +00003233 G.run_list_level--;
3234//// if (!G.run_list_level && G.interactive_fd) {
3235//// signal(SIGTSTP, SIG_IGN);
3236//// signal(SIGINT, SIG_IGN);
3237//// }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003238#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00003239 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003240#if ENABLE_HUSH_LOOPS
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003241 if (loop_top)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003242 G.depth_of_loop--;
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003243 free(for_list);
3244#endif
3245#if ENABLE_HUSH_CASE
3246 free(case_word);
3247#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003248 return rcode;
3249}
3250
Eric Andersen25f27032001-04-26 23:22:31 +00003251/* Select which version we will use */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003252static int run_and_free_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003253{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003254 int rcode = 0;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003255 debug_printf_exec("run_and_free_list entered\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003256 if (!G.fake_mode) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003257 debug_printf_exec(": run_list with %d members\n", pi->num_cmds);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003258 rcode = run_list(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003259 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003260 /* free_pipe_list has the side effect of clearing memory.
Denis Vlasenko05743d72008-02-10 12:10:08 +00003261 * In the long run that function can be merged with run_list,
Eric Andersen25f27032001-04-26 23:22:31 +00003262 * but doing that now would hobble the debugging effort. */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003263 free_pipe_list(pi, /* indent: */ 0);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00003264 debug_printf_exec("run_and_free_list return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003265 return rcode;
3266}
3267
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003268
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003269/* Peek ahead in the in_str to find out if we have a "&n" construct,
3270 * as in "2>&1", that represents duplicating a file descriptor.
3271 * Return either -2 (syntax error), -1 (no &), or the number found.
3272 */
3273static int redirect_dup_num(struct in_str *input)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003274{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003275 int ch, d = 0, ok = 0;
3276 ch = i_peek(input);
3277 if (ch != '&') return -1;
3278
3279 i_getch(input); /* get the & */
3280 ch = i_peek(input);
3281 if (ch == '-') {
3282 i_getch(input);
3283 return -3; /* "-" represents "close me" */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003284 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003285 while (isdigit(ch)) {
3286 d = d*10 + (ch-'0');
3287 ok = 1;
3288 i_getch(input);
3289 ch = i_peek(input);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003290 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003291 if (ok) return d;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003292
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003293 bb_error_msg("ambiguous redirect");
3294 return -2;
Eric Andersen78a7c992001-05-15 16:30:25 +00003295}
3296
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003297/* The src parameter allows us to peek forward to a possible &n syntax
Eric Andersen25f27032001-04-26 23:22:31 +00003298 * for file descriptor duplication, e.g., "2>&1".
3299 * Return code is 0 normally, 1 if a syntax error is detected in src.
3300 * Resource errors (in xmalloc) cause the process to exit */
Denis Vlasenkof9f74292009-04-03 00:07:05 +00003301static int setup_redirect(struct parse_context *ctx,
3302 int fd,
3303 redir_type style,
3304 struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00003305{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003306 struct command *command = ctx->command;
Denis Vlasenkof9f74292009-04-03 00:07:05 +00003307 struct redir_struct *redir;
3308 struct redir_struct **redirp;
3309 int dup_num;
3310
3311 /* Check for a '2>&1' type redirect */
3312 dup_num = redirect_dup_num(input);
3313 if (dup_num == -2)
3314 return 1; /* syntax error */
Eric Andersen25f27032001-04-26 23:22:31 +00003315
3316 /* Create a new redir_struct and drop it onto the end of the linked list */
Denis Vlasenkof9f74292009-04-03 00:07:05 +00003317 redirp = &command->redirects;
3318 while ((redir = *redirp) != NULL) {
3319 redirp = &(redir->next);
Eric Andersen25f27032001-04-26 23:22:31 +00003320 }
Denis Vlasenkof9f74292009-04-03 00:07:05 +00003321 *redirp = redir = xzalloc(sizeof(*redir));
Denis Vlasenkoff097622007-10-01 10:00:45 +00003322 /* redir->next = NULL; */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003323 /* redir->rd_filename = NULL; */
Denis Vlasenko55789c62008-06-18 16:30:42 +00003324 redir->rd_type = style;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003325 redir->fd = (fd == -1) ? redir_table[style].default_fd : fd;
Eric Andersen25f27032001-04-26 23:22:31 +00003326
3327 debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip);
3328
Denis Vlasenkof9f74292009-04-03 00:07:05 +00003329 redir->dup = dup_num;
3330 if (dup_num != -1) {
Eric Andersen25f27032001-04-26 23:22:31 +00003331 /* Erik had a check here that the file descriptor in question
Eric Andersen83a2ae22001-05-07 17:59:25 +00003332 * is legit; I postpone that to "run time"
3333 * A "-" representation of "close me" shows up as a -3 here */
Eric Andersen25f27032001-04-26 23:22:31 +00003334 debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup);
3335 } else {
3336 /* We do _not_ try to open the file that src points to,
3337 * since we need to return and let src be expanded first.
3338 * Set ctx->pending_redirect, so we know what to do at the
Denis Vlasenko201c72a2007-05-25 10:00:36 +00003339 * end of the next parsed word. */
Eric Andersen25f27032001-04-26 23:22:31 +00003340 ctx->pending_redirect = redir;
3341 }
3342 return 0;
3343}
3344
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003345
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00003346static struct pipe *new_pipe(void)
3347{
Eric Andersen25f27032001-04-26 23:22:31 +00003348 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003349 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003350 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003351 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00003352 return pi;
3353}
3354
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003355/* Command (member of a pipe) is complete. The only possible error here
3356 * is out of memory, in which case xmalloc exits. */
3357static int done_command(struct parse_context *ctx)
3358{
3359 /* The command is really already in the pipe structure, so
3360 * advance the pipe counter and make a new, null command. */
3361 struct pipe *pi = ctx->pipe;
3362 struct command *command = ctx->command;
3363
3364 if (command) {
3365 if (command->group == NULL
3366 && command->argv == NULL
3367 && command->redirects == NULL
3368 ) {
3369 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
3370 return pi->num_cmds;
3371 }
3372 pi->num_cmds++;
3373 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
3374 } else {
3375 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
3376 }
3377
3378 /* Only real trickiness here is that the uncommitted
3379 * command structure is not counted in pi->num_cmds. */
3380 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
3381 command = &pi->cmds[pi->num_cmds];
3382 memset(command, 0, sizeof(*command));
3383
3384 ctx->command = command;
3385 /* but ctx->pipe and ctx->list_head remain unchanged */
3386
3387 return pi->num_cmds; /* used only for 0/nonzero check */
3388}
3389
3390static void done_pipe(struct parse_context *ctx, pipe_style type)
3391{
3392 int not_null;
3393
3394 debug_printf_parse("done_pipe entered, followup %d\n", type);
3395 /* Close previous command */
3396 not_null = done_command(ctx);
3397 ctx->pipe->followup = type;
3398 IF_HAS_KEYWORDS(ctx->pipe->pi_inverted = ctx->ctx_inverted;)
3399 IF_HAS_KEYWORDS(ctx->ctx_inverted = 0;)
3400 IF_HAS_KEYWORDS(ctx->pipe->res_word = ctx->ctx_res_w;)
3401
3402 /* Without this check, even just <enter> on command line generates
3403 * tree of three NOPs (!). Which is harmless but annoying.
3404 * IOW: it is safe to do it unconditionally.
3405 * RES_NONE case is for "for a in; do ..." (empty IN set)
3406 * to work, possibly other cases too. */
3407 if (not_null IF_HAS_KEYWORDS(|| ctx->ctx_res_w != RES_NONE)) {
3408 struct pipe *new_p;
3409 debug_printf_parse("done_pipe: adding new pipe: "
3410 "not_null:%d ctx->ctx_res_w:%d\n",
3411 not_null, ctx->ctx_res_w);
3412 new_p = new_pipe();
3413 ctx->pipe->next = new_p;
3414 ctx->pipe = new_p;
3415 ctx->command = NULL; /* needed! */
3416 /* RES_THEN, RES_DO etc are "sticky" -
3417 * they remain set for commands inside if/while.
3418 * This is used to control execution.
3419 * RES_FOR and RES_IN are NOT sticky (needed to support
3420 * cases where variable or value happens to match a keyword):
3421 */
3422#if ENABLE_HUSH_LOOPS
3423 if (ctx->ctx_res_w == RES_FOR
3424 || ctx->ctx_res_w == RES_IN)
3425 ctx->ctx_res_w = RES_NONE;
3426#endif
3427#if ENABLE_HUSH_CASE
3428 if (ctx->ctx_res_w == RES_MATCH)
3429 ctx->ctx_res_w = RES_CASEI;
3430#endif
3431 /* Create the memory for command, roughly:
3432 * ctx->pipe->cmds = new struct command;
3433 * ctx->command = &ctx->pipe->cmds[0];
3434 */
3435 done_command(ctx);
3436 }
3437 debug_printf_parse("done_pipe return\n");
3438}
3439
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003440static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003441{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003442 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00003443 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003444 /* Create the memory for command, roughly:
3445 * ctx->pipe->cmds = new struct command;
3446 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003447 */
3448 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00003449}
3450
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003451
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003452/* If a reserved word is found and processed, parse context is modified
3453 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00003454 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003455#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003456struct reserved_combo {
3457 char literal[6];
3458 unsigned char res;
3459 unsigned char assignment_flag;
3460 int flag;
3461};
3462enum {
3463 FLAG_END = (1 << RES_NONE ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003464#if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003465 FLAG_IF = (1 << RES_IF ),
3466 FLAG_THEN = (1 << RES_THEN ),
3467 FLAG_ELIF = (1 << RES_ELIF ),
3468 FLAG_ELSE = (1 << RES_ELSE ),
3469 FLAG_FI = (1 << RES_FI ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003470#endif
3471#if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003472 FLAG_FOR = (1 << RES_FOR ),
3473 FLAG_WHILE = (1 << RES_WHILE),
3474 FLAG_UNTIL = (1 << RES_UNTIL),
3475 FLAG_DO = (1 << RES_DO ),
3476 FLAG_DONE = (1 << RES_DONE ),
3477 FLAG_IN = (1 << RES_IN ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003478#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003479#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003480 FLAG_MATCH = (1 << RES_MATCH),
3481 FLAG_ESAC = (1 << RES_ESAC ),
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003482#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003483 FLAG_START = (1 << RES_XXXX ),
3484};
3485
3486static const struct reserved_combo* match_reserved_word(o_string *word)
3487{
Eric Andersen25f27032001-04-26 23:22:31 +00003488 /* Mostly a list of accepted follow-up reserved words.
3489 * FLAG_END means we are done with the sequence, and are ready
3490 * to turn the compound list into a command.
3491 * FLAG_START means the word must start a new compound list.
3492 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003493 static const struct reserved_combo reserved_list[] = {
Denis Vlasenko06810332007-05-21 23:30:54 +00003494#if ENABLE_HUSH_IF
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003495 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
3496 { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
3497 { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
3498 { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN },
3499 { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI },
3500 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00003501#endif
3502#if ENABLE_HUSH_LOOPS
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003503 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
3504 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
3505 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
3506 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
3507 { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE },
3508 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003509#endif
3510#if ENABLE_HUSH_CASE
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003511 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
3512 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00003513#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003514 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003515 const struct reserved_combo *r;
3516
3517 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
3518 if (strcmp(word->data, r->literal) == 0)
3519 return r;
3520 }
3521 return NULL;
3522}
3523static int reserved_word(o_string *word, struct parse_context *ctx)
3524{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003525#if ENABLE_HUSH_CASE
3526 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003527 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003528 };
3529#endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003530 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003531
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003532 r = match_reserved_word(word);
3533 if (!r)
3534 return 0;
3535
3536 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003537#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003538 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE)
3539 /* "case word IN ..." - IN part starts first match part */
3540 r = &reserved_match;
3541 else
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003542#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003543 if (r->flag == 0) { /* '!' */
3544 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003545 syntax(NULL);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003546 IF_HAS_KEYWORDS(ctx->ctx_res_w = RES_SNTX;)
Eric Andersen25f27032001-04-26 23:22:31 +00003547 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003548 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00003549 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003550 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003551 if (r->flag & FLAG_START) {
3552 struct parse_context *new;
3553 debug_printf("push stack\n");
3554 new = xmalloc(sizeof(*new));
3555 *new = *ctx; /* physical copy */
3556 initialize_context(ctx);
3557 ctx->stack = new;
3558 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
3559 syntax(NULL);
3560 ctx->ctx_res_w = RES_SNTX;
3561 return 1;
3562 }
3563 ctx->ctx_res_w = r->res;
3564 ctx->old_flag = r->flag;
3565 if (ctx->old_flag & FLAG_END) {
3566 struct parse_context *old;
3567 debug_printf("pop stack\n");
3568 done_pipe(ctx, PIPE_SEQ);
3569 old = ctx->stack;
3570 old->command->group = ctx->list_head;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003571 old->command->grp_type = GRP_NORMAL;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003572 *ctx = *old; /* physical copy */
3573 free(old);
3574 }
3575 word->o_assignment = r->assignment_flag;
3576 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003577}
Denis Vlasenko06810332007-05-21 23:30:54 +00003578#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003579
Denis Vlasenkoddc8ae32008-10-14 12:50:34 +00003580//TODO: many, many callers don't check error from done_word()
3581
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003582/* Word is complete, look at it and update parsing context.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003583 * Normal return is 0. Syntax errors return 1. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003584static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003585{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003586 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00003587
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003588 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003589 if (word->length == 0 && word->nonnull == 0) {
3590 debug_printf_parse("done_word return 0: true null, ignored\n");
3591 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003592 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003593 /* If this word wasn't an assignment, next ones definitely
3594 * can't be assignments. Even if they look like ones. */
3595 if (word->o_assignment != DEFINITELY_ASSIGNMENT
3596 && word->o_assignment != WORD_IS_KEYWORD
3597 ) {
3598 word->o_assignment = NOT_ASSIGNMENT;
3599 } else {
3600 if (word->o_assignment == DEFINITELY_ASSIGNMENT)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003601 command->assignment_cnt++;
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003602 word->o_assignment = MAYBE_ASSIGNMENT;
3603 }
3604
Eric Andersen25f27032001-04-26 23:22:31 +00003605 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003606 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
3607 * only if run as "bash", not "sh" */
3608 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenko55789c62008-06-18 16:30:42 +00003609 word->o_assignment = NOT_ASSIGNMENT;
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003610 debug_printf("word stored in rd_filename: '%s'\n", word->data);
Eric Andersen25f27032001-04-26 23:22:31 +00003611 } else {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003612 /* "{ echo foo; } echo bar" - bad */
3613 /* NB: bash allows e.g. "if true; then { echo foo; } fi". TODO? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003614 if (command->group) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003615 syntax(NULL);
3616 debug_printf_parse("done_word return 1: syntax error, groups and arglists don't mix\n");
3617 return 1;
3618 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003619#if HAS_KEYWORDS
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003620#if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00003621 if (ctx->ctx_dsemicolon
3622 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
3623 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003624 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003625 /* ctx->ctx_res_w = RES_MATCH; */
3626 ctx->ctx_dsemicolon = 0;
3627 } else
3628#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003629 if (!command->argv /* if it's the first word... */
Denis Vlasenko6bdff082008-07-09 20:14:53 +00003630#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003631 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
3632 && ctx->ctx_res_w != RES_IN
Denis Vlasenko6bdff082008-07-09 20:14:53 +00003633#endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003634 ) {
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003635 debug_printf_parse(": checking '%s' for reserved-ness\n", word->data);
3636 if (reserved_word(word, ctx)) {
3637 o_reset(word);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003638 debug_printf_parse("done_word return %d\n", (ctx->ctx_res_w == RES_SNTX));
3639 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003640 }
Eric Andersen25f27032001-04-26 23:22:31 +00003641 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003642#endif
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003643 if (word->nonnull /* word had "xx" or 'xx' at least as part of it. */
Denis Vlasenko55789c62008-06-18 16:30:42 +00003644 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
3645 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003646 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003647 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003648 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003649 char *p = word->data;
3650 while (p[0] == SPECIAL_VAR_SYMBOL
3651 && (p[1] & 0x7f) == '@'
3652 && p[2] == SPECIAL_VAR_SYMBOL
3653 ) {
3654 p += 3;
3655 }
3656 if (p == word->data || p[0] != '\0') {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003657 /* saw no "$@", or not only "$@" but some
3658 * real text is there too */
3659 /* insert "empty variable" reference, this makes
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003660 * e.g. "", $empty"" etc to not disappear */
3661 o_addchr(word, SPECIAL_VAR_SYMBOL);
3662 o_addchr(word, SPECIAL_VAR_SYMBOL);
3663 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00003664 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003665 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003666 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003667 }
Eric Andersen25f27032001-04-26 23:22:31 +00003668
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003669 o_reset(word);
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003670 ctx->pending_redirect = NULL;
3671
Denis Vlasenko06810332007-05-21 23:30:54 +00003672#if ENABLE_HUSH_LOOPS
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003673 /* Force FOR to have just one word (variable name) */
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003674 /* NB: basically, this makes hush see "for v in ..." syntax as if
3675 * as it is "for v; in ...". FOR and IN become two pipe structs
3676 * in parse tree. */
3677 if (ctx->ctx_res_w == RES_FOR) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003678//TODO: check that command->argv[0] is a valid variable name!
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003679 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003680 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003681#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003682#if ENABLE_HUSH_CASE
3683 /* Force CASE to have just one word */
3684 if (ctx->ctx_res_w == RES_CASE) {
3685 done_pipe(ctx, PIPE_SEQ);
3686 }
3687#endif
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003688 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003689 return 0;
3690}
3691
Eric Andersen25f27032001-04-26 23:22:31 +00003692/* If a redirect is immediately preceded by a number, that number is
3693 * supposed to tell which file descriptor to redirect. This routine
3694 * looks for such preceding numbers. In an ideal world this routine
3695 * needs to handle all the following classes of redirects...
3696 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
3697 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
3698 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
3699 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
3700 * A -1 output from this program means no valid number was found, so the
3701 * caller should use the appropriate default for this redirection.
3702 */
3703static int redirect_opt_num(o_string *o)
3704{
3705 int num;
3706
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003707 if (o->length == 0)
3708 return -1;
3709 for (num = 0; num < o->length; num++) {
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00003710 if (!isdigit(o->data[num])) {
Eric Andersen25f27032001-04-26 23:22:31 +00003711 return -1;
3712 }
3713 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003714 num = atoi(o->data);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003715 o_reset(o);
Eric Andersen25f27032001-04-26 23:22:31 +00003716 return num;
3717}
3718
Mike Frysingerddbee972009-03-22 22:48:41 +00003719static int parse_stream(o_string *dest, struct parse_context *ctx,
3720 struct in_str *input0, const char *end_trigger);
3721
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003722#if ENABLE_HUSH_TICK
"Vladimir N. Oleynik"19c37012005-09-22 14:33:15 +00003723static FILE *generate_stream_from_list(struct pipe *head)
Eric Andersen25f27032001-04-26 23:22:31 +00003724{
3725 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00003726 int pid, channel[2];
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003727
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +00003728 xpipe(channel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003729/* *** NOMMU WARNING *** */
3730/* By using vfork here, we suspend parent till child exits or execs.
3731 * If child will not do it before it fills the pipe, it can block forever
3732 * in write(STDOUT_FILENO), and parent (shell) will be also stuck.
Denis Vlasenko3fe4f982008-06-09 16:02:39 +00003733 * Try this script:
3734 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >TESTFILE
3735 * huge=`cat TESTFILE` # will block here forever
3736 * echo OK
Denis Vlasenko05743d72008-02-10 12:10:08 +00003737 */
Denis Vlasenko82604e92008-07-01 15:59:42 +00003738 pid = BB_MMU ? fork() : vfork();
3739 if (pid < 0)
3740 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
Denis Vlasenko05743d72008-02-10 12:10:08 +00003741 if (pid == 0) { /* child */
Denis Vlasenko83177992008-02-11 08:44:36 +00003742 if (ENABLE_HUSH_JOB)
3743 die_sleep = 0; /* let nofork's xfuncs die */
Denis Vlasenko284d0fa2008-02-16 13:18:17 +00003744 close(channel[0]); /* NB: close _first_, then move fd! */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003745 xmove_fd(channel[1], 1);
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003746 /* Prevent it from trying to handle ctrl-z etc */
Denis Vlasenko27f79ff2007-05-30 00:55:52 +00003747#if ENABLE_HUSH_JOB
Denis Vlasenko87a86552008-07-29 19:43:10 +00003748 G.run_list_level = 1;
Denis Vlasenko27f79ff2007-05-30 00:55:52 +00003749#endif
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003750 /* Process substitution is not considered to be usual
3751 * 'command execution'.
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00003752 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
3753 */
3754 set_jobctrl_signals_to_IGN();
3755
3756 /* Note: freeing 'head' here would break NOMMU. */
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00003757 _exit(run_list(head));
Eric Andersen25f27032001-04-26 23:22:31 +00003758 }
Eric Andersen25f27032001-04-26 23:22:31 +00003759 close(channel[1]);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003760 pf = fdopen(channel[0], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00003761 return pf;
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00003762 /* 'head' is freed by the caller */
Eric Andersen25f27032001-04-26 23:22:31 +00003763}
3764
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003765/* Return code is exit status of the process that is run. */
Denis Vlasenko68404f12008-03-17 09:00:54 +00003766static int process_command_subs(o_string *dest,
Denis Vlasenko37181682009-04-03 03:19:15 +00003767 struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00003768{
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003769 int retcode, ch, eol_cnt;
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003770 o_string result = NULL_O_STRING;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003771 struct parse_context inner;
Eric Andersen25f27032001-04-26 23:22:31 +00003772 FILE *p;
3773 struct in_str pipe_str;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003774
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003775 /* Recursion to generate command */
Denis Vlasenko37181682009-04-03 03:19:15 +00003776 retcode = parse_stream(&result, &inner, input, NULL);
Denis Vlasenko1a735862007-05-23 00:32:25 +00003777 if (retcode != 0)
3778 return retcode; /* syntax error or EOF */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003779 o_free(&result);
Eric Andersen25f27032001-04-26 23:22:31 +00003780
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003781 p = generate_stream_from_list(inner.list_head);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003782 if (p == NULL)
3783 return 1;
Denis Vlasenkoa0898172007-10-01 09:59:01 +00003784 close_on_exec_on(fileno(p));
Eric Andersen25f27032001-04-26 23:22:31 +00003785 setup_file_in_str(&pipe_str, p);
3786
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003787 /* Now send results of command back into original context */
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003788 eol_cnt = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003789 while ((ch = i_getch(&pipe_str)) != EOF) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003790 if (ch == '\n') {
3791 eol_cnt++;
3792 continue;
3793 }
3794 while (eol_cnt) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00003795 o_addchr(dest, '\n');
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003796 eol_cnt--;
3797 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003798 o_addQchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003799 }
3800
3801 debug_printf("done reading from pipe, pclose()ing\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003802 /* Note: we got EOF, and we just close the read end of the pipe.
3803 * We do not wait for the `cmd` child to terminate. bash and ash do.
3804 * Try this:
3805 * echo `echo Hi; exec 1>&-; sleep 2`
3806 */
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003807 retcode = fclose(p);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003808 free_pipe_list(inner.list_head, /* indent: */ 0);
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003809 debug_printf("closed FILE from child, retcode=%d\n", retcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003810 return retcode;
3811}
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003812#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003813
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003814static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00003815 struct in_str *input, int ch)
3816{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003817 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00003818 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003819 * it contains function name (without '()'). */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003820 int rcode;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00003821 const char *endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003822 struct parse_context sub;
3823 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003824
3825 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003826#if ENABLE_HUSH_FUNCTIONS
3827 if (ch == 'F') { /* function definition? */
3828 bb_error_msg("aha '%s' is a function, parsing it...", dest->data);
3829 //command->fname = dest->data;
3830 command->grp_type = GRP_FUNCTION;
3831//TODO: review every o_reset() location... do they handle all o_string fields correctly?
3832 memset(dest, 0, sizeof(*dest));
3833 }
3834#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003835 if (command->argv /* word [word](... */
3836 || dest->length /* word(... */
3837 || dest->nonnull /* ""(... */
3838 ) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003839 syntax(NULL);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003840 debug_printf_parse("parse_group return 1: syntax error, groups and arglists don't mix\n");
3841 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003842 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003843 endch = "}";
3844 if (ch == '(') {
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003845 endch = ")";
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003846 command->grp_type = GRP_SUBSHELL;
Eric Andersen25f27032001-04-26 23:22:31 +00003847 }
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003848 rcode = parse_stream(dest, &sub, input, endch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003849 if (rcode == 0) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003850 command->group = sub.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003851 }
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003852 debug_printf_parse("parse_group return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003853 return rcode;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003854 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00003855}
3856
Mike Frysinger98c52642009-04-02 10:02:37 +00003857#if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003858/* Subroutines for copying $(...) and `...` things */
3859static void add_till_backquote(o_string *dest, struct in_str *input);
3860/* '...' */
3861static void add_till_single_quote(o_string *dest, struct in_str *input)
3862{
3863 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003864 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003865 if (ch == EOF)
3866 break;
3867 if (ch == '\'')
3868 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003869 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003870 }
3871}
3872/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
3873static void add_till_double_quote(o_string *dest, struct in_str *input)
3874{
3875 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003876 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003877 if (ch == '"')
3878 break;
3879 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003880 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003881 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003882 }
3883 if (ch == EOF)
3884 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003885 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003886 if (ch == '`') {
3887 add_till_backquote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003888 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003889 continue;
3890 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00003891 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003892 }
3893}
3894/* Process `cmd` - copy contents until "`" is seen. Complicated by
3895 * \` quoting.
3896 * "Within the backquoted style of command substitution, backslash
3897 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
3898 * The search for the matching backquote shall be satisfied by the first
3899 * backquote found without a preceding backslash; during this search,
3900 * if a non-escaped backquote is encountered within a shell comment,
3901 * a here-document, an embedded command substitution of the $(command)
3902 * form, or a quoted string, undefined results occur. A single-quoted
3903 * or double-quoted string that begins, but does not end, within the
3904 * "`...`" sequence produces undefined results."
3905 * Example Output
3906 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
3907 */
3908static void add_till_backquote(o_string *dest, struct in_str *input)
3909{
3910 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003911 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003912 if (ch == '`')
3913 break;
3914 if (ch == '\\') { /* \x. Copy both chars unless it is \` */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003915 int ch2 = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003916 if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003917 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003918 ch = ch2;
3919 }
3920 if (ch == EOF)
3921 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003922 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003923 }
3924}
3925/* Process $(cmd) - copy contents until ")" is seen. Complicated by
3926 * quoting and nested ()s.
3927 * "With the $(command) style of command substitution, all characters
3928 * following the open parenthesis to the matching closing parenthesis
3929 * constitute the command. Any valid shell script can be used for command,
3930 * except a script consisting solely of redirections which produces
3931 * unspecified results."
3932 * Example Output
3933 * echo $(echo '(TEST)' BEST) (TEST) BEST
3934 * echo $(echo 'TEST)' BEST) TEST) BEST
3935 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
3936 */
Mike Frysinger98c52642009-04-02 10:02:37 +00003937static void add_till_closing_paren(o_string *dest, struct in_str *input, bool dbl)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003938{
3939 int count = 0;
3940 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003941 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003942 if (ch == EOF)
3943 break;
3944 if (ch == '(')
3945 count++;
3946 if (ch == ')')
Mike Frysinger98c52642009-04-02 10:02:37 +00003947 if (--count < 0) {
3948 if (!dbl)
3949 break;
3950 if (i_peek(input) == ')') {
3951 i_getch(input);
3952 break;
3953 }
3954 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003955 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003956 if (ch == '\'') {
3957 add_till_single_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003958 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003959 continue;
3960 }
3961 if (ch == '"') {
3962 add_till_double_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003963 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003964 continue;
3965 }
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00003966 if (ch == '\\') { /* \x. Copy verbatim. Important for \(, \) */
3967 ch = i_getch(input);
3968 if (ch == EOF)
3969 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003970 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00003971 continue;
3972 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003973 }
3974}
Mike Frysinger98c52642009-04-02 10:02:37 +00003975#endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003976
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003977/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003978static int handle_dollar(o_string *dest, struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00003979{
Mike Frysinger6379bb42009-03-28 18:55:03 +00003980 int expansion;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003981 int ch = i_peek(input); /* first character after the $ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00003982 unsigned char quote_mask = dest->o_escape ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003983
3984 debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003985 if (isalpha(ch)) {
Denis Vlasenkod4981312008-07-31 10:34:48 +00003986 i_getch(input);
3987 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003988 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003989 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003990 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003991 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003992 quote_mask = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003993 ch = i_peek(input);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003994 if (!isalnum(ch) && ch != '_')
3995 break;
Denis Vlasenkod4981312008-07-31 10:34:48 +00003996 i_getch(input);
Eric Andersen25f27032001-04-26 23:22:31 +00003997 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003998 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003999 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004000 make_one_char_var:
Denis Vlasenkod4981312008-07-31 10:34:48 +00004001 i_getch(input);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004002 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004003 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004004 o_addchr(dest, ch | quote_mask);
4005 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004006 } else switch (ch) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004007 case '$': /* pid */
4008 case '!': /* last bg pid */
4009 case '?': /* last exit code */
4010 case '#': /* number of args */
4011 case '*': /* args */
4012 case '@': /* args */
4013 goto make_one_char_var;
Mike Frysinger6379bb42009-03-28 18:55:03 +00004014 case '{': {
Mike Frysinger7c3e52c2009-03-28 21:06:22 +00004015 bool first_char, all_digits;
Mike Frysinger6379bb42009-03-28 18:55:03 +00004016
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004017 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4018 i_getch(input);
Eric Andersen25f27032001-04-26 23:22:31 +00004019 /* XXX maybe someone will try to escape the '}' */
Mike Frysinger6379bb42009-03-28 18:55:03 +00004020 expansion = 0;
4021 first_char = true;
Mike Frysinger7c3e52c2009-03-28 21:06:22 +00004022 all_digits = false;
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004023 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004024 ch = i_getch(input);
Denis Vlasenkob0550012007-05-24 12:18:16 +00004025 if (ch == '}')
4026 break;
Mike Frysinger6379bb42009-03-28 18:55:03 +00004027
Mike Frysinger7c3e52c2009-03-28 21:06:22 +00004028 if (first_char) {
4029 if (ch == '#')
4030 /* ${#var}: length of var contents */
4031 goto char_ok;
4032 else if (isdigit(ch)) {
4033 all_digits = true;
4034 goto char_ok;
4035 }
4036 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00004037
Mike Frysinger7c3e52c2009-03-28 21:06:22 +00004038 if (expansion < 2 &&
4039 ((all_digits && !isdigit(ch)) ||
4040 (!all_digits && !isalnum(ch) && ch != '_')))
4041 {
Mike Frysinger6379bb42009-03-28 18:55:03 +00004042 /* handle parameter expansions
4043 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
4044 */
4045 if (first_char)
4046 goto case_default;
4047 switch (ch) {
4048 case ':': /* null modifier */
4049 if (expansion == 0) {
4050 debug_printf_parse(": null modifier\n");
4051 ++expansion;
4052 break;
4053 }
4054 goto case_default;
4055
4056#if 0 /* not implemented yet :( */
4057 case '#': /* remove prefix */
4058 case '%': /* remove suffix */
4059 if (expansion == 0) {
4060 debug_printf_parse(": remove suffix/prefix\n");
4061 expansion = 2;
4062 break;
4063 }
4064 goto case_default;
4065#endif
4066
4067 case '-': /* default value */
4068 case '=': /* assign default */
4069 case '+': /* alternative */
4070 case '?': /* error indicate */
4071 debug_printf_parse(": parameter expansion\n");
4072 expansion = 2;
4073 break;
4074
4075 default:
4076 case_default:
4077 syntax("unterminated ${name}");
4078 debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
4079 return 1;
4080 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004081 }
Mike Frysinger7c3e52c2009-03-28 21:06:22 +00004082
4083 char_ok:
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004084 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004085 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004086 quote_mask = 0;
Mike Frysinger6379bb42009-03-28 18:55:03 +00004087 first_char = false;
Eric Andersen25f27032001-04-26 23:22:31 +00004088 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004089 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004090 break;
Mike Frysinger6379bb42009-03-28 18:55:03 +00004091 }
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004092 case '(': {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004093 i_getch(input);
Mike Frysinger98c52642009-04-02 10:02:37 +00004094
4095#if ENABLE_SH_MATH_SUPPORT
4096 if (i_peek(input) == '(') {
4097 i_getch(input);
4098 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004099 o_addchr(dest, /*quote_mask |*/ '+');
Mike Frysinger98c52642009-04-02 10:02:37 +00004100 add_till_closing_paren(dest, input, true);
4101 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4102 break;
4103 }
4104#endif
4105
4106#if ENABLE_HUSH_TICK
4107 //int pos = dest->length;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004108 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4109 o_addchr(dest, quote_mask | '`');
Mike Frysinger98c52642009-04-02 10:02:37 +00004110 add_till_closing_paren(dest, input, false);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00004111 //debug_printf_subst("SUBST RES2 '%s'\n", dest->data + pos);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004112 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Mike Frysinger98c52642009-04-02 10:02:37 +00004113#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004114 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004115 }
Eric Andersen25f27032001-04-26 23:22:31 +00004116 case '_':
Denis Vlasenkod4981312008-07-31 10:34:48 +00004117 i_getch(input);
4118 ch = i_peek(input);
4119 if (isalnum(ch)) { /* it's $_name or $_123 */
4120 ch = '_';
4121 goto make_var;
4122 }
4123 /* else: it's $_ */
4124 case '-':
Eric Andersen25f27032001-04-26 23:22:31 +00004125 /* still unhandled, but should be eventually */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004126 bb_error_msg("unhandled syntax: $%c", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004127 return 1;
4128 break;
4129 default:
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00004130 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00004131 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004132 debug_printf_parse("handle_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00004133 return 0;
4134}
4135
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004136static int parse_stream_dquoted(o_string *dest, struct in_str *input, int dquote_end)
4137{
4138 int ch, m;
4139 int next;
4140
4141 again:
4142 ch = i_getch(input);
4143 if (ch == dquote_end) { /* may be only '"' or EOF */
4144 dest->nonnull = 1;
4145 if (dest->o_assignment == NOT_ASSIGNMENT)
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004146 dest->o_escape ^= 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004147 debug_printf_parse("parse_stream_dquoted return 0\n");
4148 return 0;
4149 }
4150 if (ch == EOF) {
4151 syntax("unterminated \"");
4152 debug_printf_parse("parse_stream_dquoted return 1: unterminated \"\n");
4153 return 1;
4154 }
4155 next = '\0';
4156 m = G.charmap[ch];
4157 if (ch != '\n') {
4158 next = i_peek(input);
4159 }
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004160 debug_printf_parse(": ch=%c (%d) m=%d escape=%d\n",
4161 ch, ch, m, dest->o_escape);
Denis Vlasenkof328e002009-04-02 16:55:38 +00004162 /* Basically, checking every CHAR_SPECIAL char except '"' */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004163 if (ch == '\\') {
4164 if (next == EOF) {
4165 syntax("\\<eof>");
4166 debug_printf_parse("parse_stream_dquoted return 1: \\<eof>\n");
4167 return 1;
4168 }
4169 /* bash:
4170 * "The backslash retains its special meaning [in "..."]
4171 * only when followed by one of the following characters:
4172 * $, `, ", \, or <newline>. A double quote may be quoted
4173 * within double quotes by preceding it with a backslash.
4174 * If enabled, history expansion will be performed unless
4175 * an ! appearing in double quotes is escaped using
4176 * a backslash. The backslash preceding the ! is not removed."
4177 */
4178 if (strchr("$`\"\\", next) != NULL) {
4179 o_addqchr(dest, i_getch(input));
4180 } else {
4181 o_addqchr(dest, '\\');
4182 }
4183 goto again;
4184 }
4185 if (ch == '$') {
4186 if (handle_dollar(dest, input) != 0) {
4187 debug_printf_parse("parse_stream_dquoted return 1: handle_dollar returned non-0\n");
4188 return 1;
4189 }
4190 goto again;
4191 }
4192#if ENABLE_HUSH_TICK
4193 if (ch == '`') {
4194 //int pos = dest->length;
4195 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4196 o_addchr(dest, 0x80 | '`');
4197 add_till_backquote(dest, input);
4198 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4199 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00004200 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004201 }
4202#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00004203 o_addQchr(dest, ch);
4204 if (ch == '='
4205 && (dest->o_assignment == MAYBE_ASSIGNMENT
4206 || dest->o_assignment == WORD_IS_KEYWORD)
4207 && is_assignment(dest->data)
4208 ) {
4209 dest->o_assignment = DEFINITELY_ASSIGNMENT;
4210 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004211 goto again;
4212}
4213
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004214/* Initalize ctx (i.e. caller does not need to do that).
4215 * Scan input, call done_word() whenever full IFS delimited word was seen.
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004216 * Call done_pipe if '\n' was seen (and end_trigger != NULL).
4217 * Return code is 0 if end_trigger char is met,
4218 * -1 on EOF (but if end_trigger == NULL then return 0),
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004219 * 1 for syntax error
4220 * Net result is a list of pipes in ctx->list_head.
4221 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004222static int parse_stream(o_string *dest, struct parse_context *ctx,
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004223 struct in_str *input, const char *end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00004224{
"Vladimir N. Oleynik"4ccd2b42006-01-31 09:27:48 +00004225 int ch, m;
Eric Andersen25f27032001-04-26 23:22:31 +00004226 int redir_fd;
4227 redir_type redir_style;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004228 int is_in_dquote;
Eric Andersen25f27032001-04-26 23:22:31 +00004229 int next;
4230
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004231 /* Double-quote state is handled in the state variable is_in_dquote.
Eric Andersen25f27032001-04-26 23:22:31 +00004232 * A single-quote triggers a bypass of the main loop until its mate is
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004233 * found. When recursing, quote state is passed in via dest->o_escape. */
Eric Andersen25f27032001-04-26 23:22:31 +00004234
Denis Vlasenko37181682009-04-03 03:19:15 +00004235 debug_printf_parse("parse_stream entered, end_trigger='%s' "
4236 "dest->o_assignment:%d\n", end_trigger, dest->o_assignment);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004237
Denis Vlasenko37181682009-04-03 03:19:15 +00004238 dest->o_assignment = MAYBE_ASSIGNMENT;
4239 initialize_context(ctx);
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004240 is_in_dquote = dest->o_escape;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004241 while (1) {
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004242 if (is_in_dquote) {
4243 if (parse_stream_dquoted(dest, input, '"'))
4244 return 1; /* propagate parse error */
4245 /* If we're here, we reached closing '"' */
4246 is_in_dquote = 0;
4247 }
Denis Vlasenko1a735862007-05-23 00:32:25 +00004248 m = CHAR_IFS;
4249 next = '\0';
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004250 ch = i_getch(input);
Denis Vlasenko1a735862007-05-23 00:32:25 +00004251 if (ch != EOF) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00004252 m = G.charmap[ch];
Denis Vlasenko55789c62008-06-18 16:30:42 +00004253 if (ch != '\n') {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004254 next = i_peek(input);
Denis Vlasenko55789c62008-06-18 16:30:42 +00004255 }
Denis Vlasenko1a735862007-05-23 00:32:25 +00004256 }
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004257 debug_printf_parse(": ch=%c (%d) m=%d escape=%d\n",
4258 ch, ch, m, dest->o_escape);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004259 if (m == CHAR_ORDINARY) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00004260 o_addQchr(dest, ch);
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004261 if ((dest->o_assignment == MAYBE_ASSIGNMENT
4262 || dest->o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00004263 && ch == '='
4264 && is_assignment(dest->data)
4265 ) {
4266 dest->o_assignment = DEFINITELY_ASSIGNMENT;
4267 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004268 continue;
4269 }
Denis Vlasenko37181682009-04-03 03:19:15 +00004270 /* m is SPECIAL ($,`), IFS, or ORDINARY_IF_QUOTED (*,#) */
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00004271 if (m == CHAR_IFS) {
Denis Vlasenko37181682009-04-03 03:19:15 +00004272 if (ch == EOF)
4273 goto ret_EOF;
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004274 if (done_word(dest, ctx)) {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00004275 debug_printf_parse("parse_stream return 1: done_word!=0\n");
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004276 return 1;
Eric Andersenaac75e52001-04-30 18:18:45 +00004277 }
Denis Vlasenko37181682009-04-03 03:19:15 +00004278 if (ch == '\n') {
Denis Vlasenkof1736072008-07-31 10:09:26 +00004279#if ENABLE_HUSH_CASE
4280 /* "case ... in <newline> word) ..." -
4281 * newlines are ignored (but ';' wouldn't be) */
Denis Vlasenko37181682009-04-03 03:19:15 +00004282 if (ctx->command->argv == NULL
Denis Vlasenkof1736072008-07-31 10:09:26 +00004283 && ctx->ctx_res_w == RES_MATCH
4284 ) {
4285 continue;
4286 }
4287#endif
Denis Vlasenko37181682009-04-03 03:19:15 +00004288 /* Treat newline as a command separator.
4289 * [why don't we handle it exactly like ';'? --vda] */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004290 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004291 dest->o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004292 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004293 }
Denis Vlasenko37181682009-04-03 03:19:15 +00004294 if (end_trigger && strchr(end_trigger, ch)) {
4295 /* Special case: (...word) makes last word terminate,
4296 * as if ';' is seen */
4297 if (ch == ')') {
4298 done_word(dest, ctx);
Denis Vlasenko55789c62008-06-18 16:30:42 +00004299//err chk?
Denis Vlasenko37181682009-04-03 03:19:15 +00004300 done_pipe(ctx, PIPE_SEQ);
4301 dest->o_assignment = MAYBE_ASSIGNMENT;
4302 }
4303 /* What do we check here? */
4304 if (!HAS_KEYWORDS
4305 IF_HAS_KEYWORDS(|| (ctx->ctx_res_w == RES_NONE && ctx->old_flag == 0))
4306 ) {
4307 debug_printf_parse("parse_stream return 0: end_trigger char found\n");
4308 /* this makes us return 0, not -1 */
4309 end_trigger = NULL;
4310 goto ret;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004311 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004312 }
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00004313 if (m == CHAR_IFS)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004314 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004315
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004316 /* m is SPECIAL (e.g. $,`) or ORDINARY_IF_QUOTED (*,#) */
4317
Denis Vlasenko55789c62008-06-18 16:30:42 +00004318 if (dest->o_assignment == MAYBE_ASSIGNMENT) {
4319 /* ch is a special char and thus this word
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004320 * cannot be an assignment */
Denis Vlasenko55789c62008-06-18 16:30:42 +00004321 dest->o_assignment = NOT_ASSIGNMENT;
4322 }
4323
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004324 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00004325 case '#':
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004326 if (dest->length == 0) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004327 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004328 ch = i_peek(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004329 if (ch == EOF || ch == '\n')
4330 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004331 i_getch(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004332 }
Eric Andersen25f27032001-04-26 23:22:31 +00004333 } else {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00004334 o_addQchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004335 }
4336 break;
4337 case '\\':
4338 if (next == EOF) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004339 syntax("\\<eof>");
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00004340 debug_printf_parse("parse_stream return 1: \\<eof>\n");
Eric Andersen25f27032001-04-26 23:22:31 +00004341 return 1;
4342 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004343 o_addchr(dest, '\\');
4344 o_addchr(dest, i_getch(input));
Eric Andersen25f27032001-04-26 23:22:31 +00004345 break;
4346 case '$':
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004347 if (handle_dollar(dest, input) != 0) {
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004348 debug_printf_parse("parse_stream return 1: handle_dollar returned non-0\n");
4349 return 1;
4350 }
Eric Andersen25f27032001-04-26 23:22:31 +00004351 break;
4352 case '\'':
4353 dest->nonnull = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004354 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004355 ch = i_getch(input);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004356 if (ch == EOF) {
4357 syntax("unterminated '");
4358 debug_printf_parse("parse_stream return 1: unterminated '\n");
4359 return 1;
4360 }
4361 if (ch == '\'')
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004362 break;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004363 if (dest->o_assignment == NOT_ASSIGNMENT)
4364 o_addqchr(dest, ch);
4365 else
4366 o_addchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004367 }
Eric Andersen25f27032001-04-26 23:22:31 +00004368 break;
4369 case '"':
4370 dest->nonnull = 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004371 is_in_dquote ^= 1; /* invert */
Denis Vlasenko55789c62008-06-18 16:30:42 +00004372 if (dest->o_assignment == NOT_ASSIGNMENT)
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004373 dest->o_escape ^= 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004374 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004375#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004376 case '`': {
4377 //int pos = dest->length;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004378 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004379 o_addchr(dest, '`');
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004380 add_till_backquote(dest, input);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004381 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00004382 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00004383 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004384 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004385#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004386 case '>':
4387 redir_fd = redirect_opt_num(dest);
4388 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004389 redir_style = REDIRECT_OVERWRITE;
Eric Andersen25f27032001-04-26 23:22:31 +00004390 if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004391 redir_style = REDIRECT_APPEND;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004392 i_getch(input);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004393 }
4394#if 0
4395 else if (next == '(') {
4396 syntax(">(process) not supported");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004397 debug_printf_parse("parse_stream return 1: >(process) not supported\n");
Eric Andersen25f27032001-04-26 23:22:31 +00004398 return 1;
4399 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004400#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004401 setup_redirect(ctx, redir_fd, redir_style, input);
4402 break;
4403 case '<':
4404 redir_fd = redirect_opt_num(dest);
4405 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004406 redir_style = REDIRECT_INPUT;
Eric Andersen25f27032001-04-26 23:22:31 +00004407 if (next == '<') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004408 redir_style = REDIRECT_HEREIS;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004409 i_getch(input);
Eric Andersen25f27032001-04-26 23:22:31 +00004410 } else if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004411 redir_style = REDIRECT_IO;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004412 i_getch(input);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004413 }
4414#if 0
4415 else if (next == '(') {
4416 syntax("<(process) not supported");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004417 debug_printf_parse("parse_stream return 1: <(process) not supported\n");
Eric Andersen25f27032001-04-26 23:22:31 +00004418 return 1;
4419 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004420#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004421 setup_redirect(ctx, redir_fd, redir_style, input);
4422 break;
4423 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004424#if ENABLE_HUSH_CASE
4425 case_semi:
4426#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004427 done_word(dest, ctx);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004428 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004429#if ENABLE_HUSH_CASE
4430 /* Eat multiple semicolons, detect
4431 * whether it means something special */
4432 while (1) {
4433 ch = i_peek(input);
4434 if (ch != ';')
4435 break;
4436 i_getch(input);
4437 if (ctx->ctx_res_w == RES_CASEI) {
4438 ctx->ctx_dsemicolon = 1;
4439 ctx->ctx_res_w = RES_MATCH;
4440 break;
4441 }
4442 }
4443#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004444 new_cmd:
4445 /* We just finished a cmd. New one may start
4446 * with an assignment */
4447 dest->o_assignment = MAYBE_ASSIGNMENT;
Eric Andersen25f27032001-04-26 23:22:31 +00004448 break;
4449 case '&':
4450 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004451 if (next == '&') {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004452 i_getch(input);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004453 done_pipe(ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00004454 } else {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004455 done_pipe(ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00004456 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004457 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004458 case '|':
4459 done_word(dest, ctx);
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004460#if ENABLE_HUSH_CASE
4461 if (ctx->ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00004462 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004463#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004464 if (next == '|') { /* || */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004465 i_getch(input);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004466 done_pipe(ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00004467 } else {
4468 /* we could pick up a file descriptor choice here
4469 * with redirect_opt_num(), but bash doesn't do it.
4470 * "echo foo 2| cat" yields "foo 2". */
4471 done_command(ctx);
4472 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004473 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004474 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004475#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00004476 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004477 if (ctx->ctx_res_w == RES_MATCH
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004478 && ctx->command->argv == NULL /* not (word|(... */
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004479 && dest->length == 0 /* not word(... */
4480 && dest->nonnull == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004481 ) {
4482 continue;
4483 }
4484#endif
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004485#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004486 if (dest->length != 0 /* not just () but word() */
4487 && dest->nonnull == 0 /* not a"b"c() */
4488 && ctx->command->argv == NULL /* it's the first word */
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004489//TODO: "func ( ) {...}" - note spaces - is valid format too in bash
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004490 && i_peek(input) == ')'
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004491 && !match_reserved_word(dest)
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004492 ) {
4493 bb_error_msg("seems like a function definition");
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004494 i_getch(input);
4495 do {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004496//TODO: do it properly.
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004497 ch = i_getch(input);
4498 } while (ch == ' ' || ch == '\n');
4499 if (ch != '{') {
4500 syntax("was expecting {");
4501 debug_printf_parse("parse_stream return 1\n");
4502 return 1;
4503 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004504 ch = 'F'; /* magic value */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004505 }
4506#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004507 case '{':
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004508 if (parse_group(dest, ctx, input, ch) != 0) {
4509 debug_printf_parse("parse_stream return 1: parse_group returned non-0\n");
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004510 return 1;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004511 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004512 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004513 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004514#if ENABLE_HUSH_CASE
4515 if (ctx->ctx_res_w == RES_MATCH)
4516 goto case_semi;
4517#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004518 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004519 /* proper use of this character is caught by end_trigger:
4520 * if we see {, we call parse_group(..., end_trigger='}')
4521 * and it will match } earlier (not here). */
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004522 syntax("unexpected } or )");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004523 debug_printf_parse("parse_stream return 1: unexpected '}'\n");
Eric Andersen25f27032001-04-26 23:22:31 +00004524 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004525 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004526 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004527 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004528 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004529 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004530
4531 /* Non-error returns */
4532 ret_EOF:
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00004533 debug_printf_parse("parse_stream return %d\n", -(end_trigger != NULL));
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004534 ret:
4535 done_word(dest, ctx);
4536 done_pipe(ctx, PIPE_SEQ);
4537 if (end_trigger) {
4538 return -1; /* EOF found while expecting end_trigger */
4539 }
Eric Andersen25f27032001-04-26 23:22:31 +00004540 return 0;
4541}
4542
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00004543static void set_in_charmap(const char *set, int code)
Eric Andersen25f27032001-04-26 23:22:31 +00004544{
Denis Vlasenkof5294e12007-04-14 10:09:57 +00004545 while (*set)
Denis Vlasenko87a86552008-07-29 19:43:10 +00004546 G.charmap[(unsigned char)*set++] = code;
Eric Andersen25f27032001-04-26 23:22:31 +00004547}
4548
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00004549static void update_charmap(void)
Eric Andersen25f27032001-04-26 23:22:31 +00004550{
Denis Vlasenko87a86552008-07-29 19:43:10 +00004551 G.ifs = getenv("IFS");
4552 if (G.ifs == NULL)
4553 G.ifs = " \t\n";
Eric Andersen25f27032001-04-26 23:22:31 +00004554 /* Precompute a list of 'flow through' behavior so it can be treated
4555 * quickly up front. Computation is necessary because of IFS.
4556 * Special case handling of IFS == " \t\n" is not implemented.
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00004557 * The charmap[] array only really needs two bits each,
4558 * and on most machines that would be faster (reduced L1 cache use).
Eric Andersen25f27032001-04-26 23:22:31 +00004559 */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004560 memset(G.charmap, CHAR_ORDINARY, sizeof(G.charmap));
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004561#if ENABLE_HUSH_TICK
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00004562 set_in_charmap("\\$\"`", CHAR_SPECIAL);
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004563#else
4564 set_in_charmap("\\$\"", CHAR_SPECIAL);
4565#endif
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00004566 set_in_charmap("<>;&|(){}#'", CHAR_ORDINARY_IF_QUOTED);
Denis Vlasenko87a86552008-07-29 19:43:10 +00004567 set_in_charmap(G.ifs, CHAR_IFS); /* are ordinary if quoted */
Eric Andersen25f27032001-04-26 23:22:31 +00004568}
4569
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004570/* Most recursion does not come through here, the exception is
Denis Vlasenko170435c2007-05-23 13:01:10 +00004571 * from builtin_source() and builtin_eval() */
4572static int parse_and_run_stream(struct in_str *inp, int parse_flag)
Eric Andersen25f27032001-04-26 23:22:31 +00004573{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004574 struct parse_context ctx;
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004575 o_string temp = NULL_O_STRING;
Eric Andersen25f27032001-04-26 23:22:31 +00004576 int rcode;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004577
Eric Andersen25f27032001-04-26 23:22:31 +00004578 do {
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00004579 update_charmap();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004580#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00004581 inp->promptmode = 0; /* PS1 */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004582#endif
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00004583 /* We will stop & execute after each ';' or '\n'.
4584 * Example: "sleep 9999; echo TEST" + ctrl-C:
4585 * TEST should be printed */
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004586 temp.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004587 rcode = parse_stream(&temp, &ctx, inp, ";\n");
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004588 debug_printf_parse("rcode %d ctx.old_flag %x\n", rcode, ctx.old_flag);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004589#if HAS_KEYWORDS
Eric Andersen4c9b68f2002-04-13 12:33:41 +00004590 if (rcode != 1 && ctx.old_flag != 0) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004591 syntax(NULL);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00004592 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004593#endif
4594 if (rcode != 1 IF_HAS_KEYWORDS(&& ctx.old_flag == 0)) {
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004595 debug_print_tree(ctx.list_head, 0);
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004596 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
Denis Vlasenko05743d72008-02-10 12:10:08 +00004597 run_and_free_list(ctx.list_head);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00004598 } else {
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004599 /* We arrive here also if rcode == 1 (error in parse_stream) */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004600#if HAS_KEYWORDS
Eric Andersen4c9b68f2002-04-13 12:33:41 +00004601 if (ctx.old_flag != 0) {
4602 free(ctx.stack);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004603 o_reset(&temp);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004604 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004605#endif
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00004606 /*temp.nonnull = 0; - o_free does it below */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004607 /*temp.o_escape = 0; - o_free does it below */
Denis Vlasenko05743d72008-02-10 12:10:08 +00004608 free_pipe_list(ctx.list_head, /* indent: */ 0);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004609 /* Discard all unprocessed line input, force prompt on */
4610 inp->p = NULL;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004611#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004612 inp->promptme = 1;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004613#endif
Eric Andersen4c9b68f2002-04-13 12:33:41 +00004614 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004615 o_free(&temp);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004616 /* loop on syntax errors, return on EOF: */
4617 } while (rcode != -1 && !(parse_flag & PARSEFLAG_EXIT_FROM_LOOP));
Eric Andersen25f27032001-04-26 23:22:31 +00004618 return 0;
4619}
4620
Denis Vlasenko170435c2007-05-23 13:01:10 +00004621static int parse_and_run_string(const char *s, int parse_flag)
Eric Andersen25f27032001-04-26 23:22:31 +00004622{
4623 struct in_str input;
4624 setup_string_in_str(&input, s);
Denis Vlasenko170435c2007-05-23 13:01:10 +00004625 return parse_and_run_stream(&input, parse_flag);
Eric Andersen25f27032001-04-26 23:22:31 +00004626}
4627
Denis Vlasenko170435c2007-05-23 13:01:10 +00004628static int parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00004629{
4630 int rcode;
4631 struct in_str input;
4632 setup_file_in_str(&input, f);
Denis Vlasenko5703c222008-06-15 11:49:42 +00004633 rcode = parse_and_run_stream(&input, 0 /* parse_flag */);
Eric Andersen25f27032001-04-26 23:22:31 +00004634 return rcode;
4635}
4636
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004637#if ENABLE_HUSH_JOB
Eric Andersen6c947d22001-06-25 22:24:38 +00004638/* Make sure we have a controlling tty. If we get started under a job
4639 * aware app (like bash for example), make sure we are now in charge so
4640 * we don't fight over who gets the foreground */
Eric Anderseneaecbf32001-10-31 10:41:31 +00004641static void setup_job_control(void)
Eric Andersen52a97ca2001-06-22 06:49:26 +00004642{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004643 pid_t shell_pgrp;
4644
Denis Vlasenko87a86552008-07-29 19:43:10 +00004645 shell_pgrp = getpgrp();
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004646
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00004647 /* If we were ran as 'hush &',
4648 * sleep until we are in the foreground. */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004649 while (tcgetpgrp(G.interactive_fd) != shell_pgrp) {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00004650 /* Send TTIN to ourself (should stop us) */
Denis Vlasenkoff131b92007-04-10 15:42:06 +00004651 kill(- shell_pgrp, SIGTTIN);
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00004652 shell_pgrp = getpgrp();
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004653 }
Eric Andersen52a97ca2001-06-22 06:49:26 +00004654
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00004655 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00004656 set_fatal_signals_to_sigexit();
Eric Andersen6c947d22001-06-25 22:24:38 +00004657
4658 /* Put ourselves in our own process group. */
Bernhard Reutner-Fischer864329d2008-09-25 10:55:05 +00004659 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
Eric Andersen6c947d22001-06-25 22:24:38 +00004660 /* Grab control of the terminal. */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004661 tcsetpgrp(G.interactive_fd, getpid());
Eric Andersen6c947d22001-06-25 22:24:38 +00004662}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00004663#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00004664
Denis Vlasenkod5762932009-03-31 11:22:57 +00004665static int set_mode(const char cstate, const char mode)
4666{
4667 int state = (cstate == '-' ? 1 : 0);
4668 switch (mode) {
4669 case 'n': G.fake_mode = state; break;
4670 case 'x': /*G.debug_mode = state;*/ break;
4671 default: return EXIT_FAILURE;
4672 }
4673 return EXIT_SUCCESS;
4674}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004675
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00004676int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00004677int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00004678{
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00004679 static const struct variable const_shell_ver = {
4680 .next = NULL,
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00004681 .varstr = (char*)hush_version_str,
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00004682 .max_len = 1, /* 0 can provoke free(name) */
4683 .flg_export = 1,
4684 .flg_read_only = 1,
4685 };
4686
Eric Andersen25f27032001-04-26 23:22:31 +00004687 int opt;
4688 FILE *input;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004689 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004690 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00004691
Denis Vlasenko574f2f42008-02-27 18:41:59 +00004692 INIT_G();
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004693
Denis Vlasenko87a86552008-07-29 19:43:10 +00004694 G.root_pid = getpid();
Denis Vlasenko16c2fea2008-06-17 12:28:44 +00004695
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00004696 /* Deal with HUSH_VERSION */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004697 G.shell_ver = const_shell_ver; /* copying struct here */
4698 G.top_var = &G.shell_ver;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00004699 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00004700 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
4701 /* Initialize our shell local variables with the values
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004702 * currently living in the environment */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004703 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00004704 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004705 if (e) while (*e) {
4706 char *value = strchr(*e, '=');
4707 if (value) { /* paranoia */
4708 cur_var->next = xzalloc(sizeof(*cur_var));
4709 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00004710 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004711 cur_var->max_len = strlen(*e);
4712 cur_var->flg_export = 1;
4713 }
4714 e++;
4715 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00004716 debug_printf_env("putenv '%s'\n", hush_version_str);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00004717 putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00004718
Denis Vlasenko38f63192007-01-22 09:03:07 +00004719#if ENABLE_FEATURE_EDITING
Denis Vlasenko87a86552008-07-29 19:43:10 +00004720 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00004721#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004722 /* XXX what should these be while sourcing /etc/profile? */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004723 G.global_argc = argc;
4724 G.global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00004725 /* Initialize some more globals to non-zero values */
4726 set_cwd();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004727#if ENABLE_HUSH_INTERACTIVE
Mike Frysingerec2c6552009-03-28 12:24:44 +00004728 if (ENABLE_FEATURE_EDITING)
4729 cmdedit_set_initial_prompt();
Denis Vlasenko87a86552008-07-29 19:43:10 +00004730 G.PS2 = "> ";
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004731#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00004732
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004733 if (EXIT_SUCCESS) /* otherwise is already done */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004734 G.last_return_code = EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +00004735
4736 if (argv[0] && argv[0][0] == '-') {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004737 debug_printf("sourcing /etc/profile\n");
Denis Vlasenko5415c852008-07-21 23:05:26 +00004738 input = fopen_for_read("/etc/profile");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00004739 if (input != NULL) {
Denis Vlasenkoa0898172007-10-01 09:59:01 +00004740 close_on_exec_on(fileno(input));
Denis Vlasenko170435c2007-05-23 13:01:10 +00004741 parse_and_run_file(input);
Eric Andersena90f20b2001-06-26 23:00:21 +00004742 fclose(input);
4743 }
Eric Andersen25f27032001-04-26 23:22:31 +00004744 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004745 input = stdin;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004746
Mike Frysinger19a7ea12009-03-28 13:02:11 +00004747 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
4748 while ((opt = getopt(argc, argv, "c:xins")) > 0) {
Eric Andersen25f27032001-04-26 23:22:31 +00004749 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004750 case 'c':
Denis Vlasenko87a86552008-07-29 19:43:10 +00004751 G.global_argv = argv + optind;
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00004752 if (!argv[optind]) {
4753 /* -c 'script' (no params): prevent empty $0 */
4754 *--G.global_argv = argv[0];
4755 optind--;
4756 } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004757 G.global_argc = argc - optind;
Denis Vlasenko5703c222008-06-15 11:49:42 +00004758 opt = parse_and_run_string(optarg, 0 /* parse_flag */);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004759 goto final_return;
4760 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00004761 /* Well, we cannot just declare interactiveness,
4762 * we have to have some stuff (ctty, etc) */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004763 /* G.interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004764 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00004765 case 's':
4766 /* "-s" means "read from stdin", but this is how we always
4767 * operate, so simply do nothing here. */
4768 break;
Mike Frysingerad88d5a2009-03-28 13:44:51 +00004769 case 'n':
4770 case 'x':
Denis Vlasenkod5762932009-03-31 11:22:57 +00004771 if (!set_mode('-', opt))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00004772 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004773 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00004774#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004775 fprintf(stderr, "Usage: sh [FILE]...\n"
4776 " or: sh -c command [args]...\n\n");
4777 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00004778#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004779 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00004780#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004781 }
4782 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004783#if ENABLE_HUSH_JOB
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004784 /* A shell is interactive if the '-i' flag was given, or if all of
Eric Andersen25f27032001-04-26 23:22:31 +00004785 * the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00004786 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00004787 * no arguments remaining or the -s flag given
4788 * standard input is a terminal
4789 * standard output is a terminal
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004790 * Refer to Posix.2, the description of the 'sh' utility. */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004791 if (argv[optind] == NULL && input == stdin
4792 && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)
4793 ) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00004794 G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
4795 debug_printf("saved_tty_pgrp=%d\n", G.saved_tty_pgrp);
4796 if (G.saved_tty_pgrp >= 0) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004797 /* try to dup to high fd#, >= 255 */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004798 G.interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
4799 if (G.interactive_fd < 0) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004800 /* try to dup to any fd */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004801 G.interactive_fd = dup(STDIN_FILENO);
4802 if (G.interactive_fd < 0)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004803 /* give up */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004804 G.interactive_fd = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004805 }
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00004806 // TODO: track & disallow any attempts of user
4807 // to (inadvertently) close/redirect it
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004808 }
Eric Andersen25f27032001-04-26 23:22:31 +00004809 }
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004810 init_signal_mask(); /* note: ensures SIGCHLD is not masked */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004811 debug_printf("G.interactive_fd=%d\n", G.interactive_fd);
4812 if (G.interactive_fd) {
4813 fcntl(G.interactive_fd, F_SETFD, FD_CLOEXEC);
Eric Andersen25f27032001-04-26 23:22:31 +00004814 /* Looks like they want an interactive shell */
Eric Andersen52a97ca2001-06-22 06:49:26 +00004815 setup_job_control();
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00004816 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00004817 * (we reset die_sleep = 0 whereever we [v]fork) */
4818 die_sleep = -1;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004819 if (setjmp(die_jmp)) {
4820 /* xfunc has failed! die die die */
4821 hush_exit(xfunc_error_retval);
4822 }
Eric Andersenada18ff2001-05-21 16:18:22 +00004823 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004824#elif ENABLE_HUSH_INTERACTIVE
4825/* no job control compiled, only prompt/line editing */
4826 if (argv[optind] == NULL && input == stdin
4827 && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)
4828 ) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00004829 G.interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
4830 if (G.interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004831 /* try to dup to any fd */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004832 G.interactive_fd = dup(STDIN_FILENO);
4833 if (G.interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004834 /* give up */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004835 G.interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004836 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00004837 if (G.interactive_fd) {
4838 fcntl(G.interactive_fd, F_SETFD, FD_CLOEXEC);
Denis Vlasenko4830fc52008-05-25 21:50:55 +00004839 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004840 }
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004841 init_signal_mask(); /* note: ensures SIGCHLD is not masked */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00004842#endif
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004843 /* POSIX allows shell to re-enable SIGCHLD
4844 * even if it was SIG_IGN on entry */
4845// G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
4846 signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004847
Denis Vlasenko701ac182009-03-28 19:22:08 +00004848#if ENABLE_HUSH_INTERACTIVE && !ENABLE_FEATURE_SH_EXTRA_QUIET
4849 if (G.interactive_fd) {
Mike Frysingerb2705e12009-03-23 08:44:02 +00004850 printf("\n\n%s hush - the humble shell v"HUSH_VER_STR"\n", bb_banner);
4851 printf("Enter 'help' for a list of built-in commands.\n\n");
4852 }
Denis Vlasenko701ac182009-03-28 19:22:08 +00004853#endif
Mike Frysingerb2705e12009-03-23 08:44:02 +00004854
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004855 if (argv[optind] == NULL) {
Denis Vlasenko170435c2007-05-23 13:01:10 +00004856 opt = parse_and_run_file(stdin);
Denis Vlasenko05743d72008-02-10 12:10:08 +00004857 } else {
4858 debug_printf("\nrunning script '%s'\n", argv[optind]);
Denis Vlasenko87a86552008-07-29 19:43:10 +00004859 G.global_argv = argv + optind;
4860 G.global_argc = argc - optind;
Denis Vlasenko5415c852008-07-21 23:05:26 +00004861 input = xfopen_for_read(argv[optind]);
Denis Vlasenko459a5ad2008-02-11 08:35:03 +00004862 fcntl(fileno(input), F_SETFD, FD_CLOEXEC);
Denis Vlasenko05743d72008-02-10 12:10:08 +00004863 opt = parse_and_run_file(input);
Eric Andersen25f27032001-04-26 23:22:31 +00004864 }
Eric Andersen25f27032001-04-26 23:22:31 +00004865
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004866 final_return:
4867
Denis Vlasenko38f63192007-01-22 09:03:07 +00004868#if ENABLE_FEATURE_CLEAN_UP
Eric Andersenaeb44c42001-05-22 20:29:00 +00004869 fclose(input);
Denis Vlasenko87a86552008-07-29 19:43:10 +00004870 if (G.cwd != bb_msg_unknown)
4871 free((char*)G.cwd);
4872 cur_var = G.top_var->next;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004873 while (cur_var) {
4874 struct variable *tmp = cur_var;
4875 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00004876 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004877 cur_var = cur_var->next;
4878 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00004879 }
Eric Andersen25f27032001-04-26 23:22:31 +00004880#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00004881 hush_exit(opt ? opt : G.last_return_code);
Eric Andersen25f27032001-04-26 23:22:31 +00004882}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00004883
4884
4885#if ENABLE_LASH
4886int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
4887int lash_main(int argc, char **argv)
4888{
4889 //bb_error_msg("lash is deprecated, please use hush instead");
4890 return hush_main(argc, argv);
4891}
4892#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004893
4894
4895/*
4896 * Built-ins
4897 */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004898static int builtin_trap(char **argv)
4899{
Denis Vlasenkod5762932009-03-31 11:22:57 +00004900 int i;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004901 int sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +00004902 char *new_cmd;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004903
4904 if (!G.traps)
Denis Vlasenkod5762932009-03-31 11:22:57 +00004905 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004906
4907 if (!argv[1]) {
4908 /* No args: print all trapped. This isn't 100% correct as we should
4909 * be escaping the cmd so that it can be pasted back in ...
4910 */
4911 for (i = 0; i < NSIG; ++i)
Denis Vlasenkod5762932009-03-31 11:22:57 +00004912 if (G.traps[i])
4913 printf("trap -- '%s' %s\n", G.traps[i], get_signame(i));
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004914 return EXIT_SUCCESS;
4915 }
4916
Denis Vlasenkod5762932009-03-31 11:22:57 +00004917 new_cmd = NULL;
4918 i = 0;
4919 /* if first arg is decimal: reset all specified */
4920 sig = bb_strtou(*++argv, NULL, 10);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004921 if (errno == 0) {
4922 int ret;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004923 set_all:
4924 ret = EXIT_SUCCESS;
Denis Vlasenkod5762932009-03-31 11:22:57 +00004925 while (*argv) {
4926 sig = get_signum(*argv++);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004927 if (sig < 0 || sig >= NSIG) {
4928 ret = EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00004929 /* mimic bash message exactly */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004930 bb_perror_msg("trap: %s: invalid signal specification", argv[i]);
4931 continue;
4932 }
4933
Denis Vlasenkod5762932009-03-31 11:22:57 +00004934 free(G.traps[sig]);
4935 G.traps[sig] = xstrdup(new_cmd);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004936
Denis Vlasenkod5762932009-03-31 11:22:57 +00004937 debug_printf("trap: setting SIG%s (%i) to '%s'",
4938 get_signame(sig), sig, G.traps[sig]);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004939
4940 /* There is no signal for 0 (EXIT) */
4941 if (sig == 0)
4942 continue;
4943
4944 if (new_cmd) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00004945 sigaddset(&G.blocked_set, sig);
4946 } else {
4947 /* there was a trap handler, we are removing it
4948 * (if sig has non-DFL handling,
4949 * we don't need to do anything) */
4950 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
4951 continue;
4952 sigdelset(&G.blocked_set, sig);
4953 }
4954 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004955 }
4956 return ret;
4957 }
4958
4959 /* first arg is "-": reset all specified to default */
4960 /* first arg is "": ignore all specified */
4961 /* everything else: execute first arg upon signal */
Denis Vlasenkod5762932009-03-31 11:22:57 +00004962 if (!argv[1]) {
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004963 bb_error_msg("trap: invalid arguments");
4964 return EXIT_FAILURE;
4965 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00004966 if (LONE_DASH(*argv))
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004967 /* nothing! */;
4968 else
Denis Vlasenkod5762932009-03-31 11:22:57 +00004969 new_cmd = *argv;
4970 argv++;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004971 goto set_all;
4972}
4973
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00004974static int builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004975{
4976 return 0;
4977}
4978
4979static int builtin_test(char **argv)
4980{
4981 int argc = 0;
4982 while (*argv) {
4983 argc++;
4984 argv++;
4985 }
4986 return test_main(argc, argv - argc);
4987}
4988
4989static int builtin_echo(char **argv)
4990{
4991 int argc = 0;
4992 while (*argv) {
4993 argc++;
4994 argv++;
4995 }
4996 return echo_main(argc, argv - argc);
4997}
4998
4999static int builtin_eval(char **argv)
5000{
5001 int rcode = EXIT_SUCCESS;
5002
5003 if (argv[1]) {
5004 char *str = expand_strvec_to_string(argv + 1);
5005 parse_and_run_string(str, PARSEFLAG_EXIT_FROM_LOOP);
5006 free(str);
Denis Vlasenko87a86552008-07-29 19:43:10 +00005007 rcode = G.last_return_code;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005008 }
5009 return rcode;
5010}
5011
5012static int builtin_cd(char **argv)
5013{
5014 const char *newdir;
5015 if (argv[1] == NULL) {
5016 // bash does nothing (exitcode 0) if HOME is ""; if it's unset,
5017 // bash says "bash: cd: HOME not set" and does nothing (exitcode 1)
5018 newdir = getenv("HOME") ? : "/";
5019 } else
5020 newdir = argv[1];
5021 if (chdir(newdir)) {
5022 printf("cd: %s: %s\n", newdir, strerror(errno));
5023 return EXIT_FAILURE;
5024 }
5025 set_cwd();
5026 return EXIT_SUCCESS;
5027}
5028
5029static int builtin_exec(char **argv)
5030{
5031 if (argv[1] == NULL)
5032 return EXIT_SUCCESS; /* bash does this */
5033 {
5034#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005035 nommu_save_t dummy;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005036#endif
5037// FIXME: if exec fails, bash does NOT exit! We do...
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005038 pseudo_exec_argv(&dummy, argv + 1, 0, NULL);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005039 /* never returns */
5040 }
5041}
5042
5043static int builtin_exit(char **argv)
5044{
5045// TODO: bash does it ONLY on top-level sh exit (+interacive only?)
5046 //puts("exit"); /* bash does it */
5047// TODO: warn if we have background jobs: "There are stopped jobs"
5048// On second consecutive 'exit', exit anyway.
5049 if (argv[1] == NULL)
Denis Vlasenko87a86552008-07-29 19:43:10 +00005050 hush_exit(G.last_return_code);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005051 /* mimic bash: exit 123abc == exit 255 + error msg */
5052 xfunc_error_retval = 255;
5053 /* bash: exit -2 == exit 254, no error msg */
5054 hush_exit(xatoi(argv[1]) & 0xff);
5055}
5056
5057static int builtin_export(char **argv)
5058{
5059 const char *value;
5060 char *name = argv[1];
5061
5062 if (name == NULL) {
5063 // TODO:
5064 // ash emits: export VAR='VAL'
5065 // bash: declare -x VAR="VAL"
5066 // (both also escape as needed (quotes, $, etc))
5067 char **e = environ;
5068 if (e)
5069 while (*e)
5070 puts(*e++);
5071 return EXIT_SUCCESS;
5072 }
5073
5074 value = strchr(name, '=');
5075 if (!value) {
5076 /* They are exporting something without a =VALUE */
5077 struct variable *var;
5078
5079 var = get_local_var(name);
5080 if (var) {
5081 var->flg_export = 1;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005082 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005083 putenv(var->varstr);
5084 }
5085 /* bash does not return an error when trying to export
5086 * an undefined variable. Do likewise. */
5087 return EXIT_SUCCESS;
5088 }
5089
5090 set_local_var(xstrdup(name), 1);
5091 return EXIT_SUCCESS;
5092}
5093
5094#if ENABLE_HUSH_JOB
5095/* built-in 'fg' and 'bg' handler */
5096static int builtin_fg_bg(char **argv)
5097{
5098 int i, jobnum;
5099 struct pipe *pi;
5100
Denis Vlasenko87a86552008-07-29 19:43:10 +00005101 if (!G.interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005102 return EXIT_FAILURE;
5103 /* If they gave us no args, assume they want the last backgrounded task */
5104 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00005105 for (pi = G.job_list; pi; pi = pi->next) {
5106 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005107 goto found;
5108 }
5109 }
5110 bb_error_msg("%s: no current job", argv[0]);
5111 return EXIT_FAILURE;
5112 }
5113 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
5114 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
5115 return EXIT_FAILURE;
5116 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00005117 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005118 if (pi->jobid == jobnum) {
5119 goto found;
5120 }
5121 }
5122 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
5123 return EXIT_FAILURE;
5124 found:
5125 // TODO: bash prints a string representation
5126 // of job being foregrounded (like "sleep 1 | cat")
5127 if (*argv[0] == 'f') {
5128 /* Put the job into the foreground. */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005129 tcsetpgrp(G.interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005130 }
5131
5132 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005133 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
5134 for (i = 0; i < pi->num_cmds; i++) {
5135 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
5136 pi->cmds[i].is_stopped = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005137 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005138 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005139
5140 i = kill(- pi->pgrp, SIGCONT);
5141 if (i < 0) {
5142 if (errno == ESRCH) {
5143 delete_finished_bg_job(pi);
5144 return EXIT_SUCCESS;
5145 } else {
5146 bb_perror_msg("kill (SIGCONT)");
5147 }
5148 }
5149
5150 if (*argv[0] == 'f') {
5151 remove_bg_job(pi);
5152 return checkjobs_and_fg_shell(pi);
5153 }
5154 return EXIT_SUCCESS;
5155}
5156#endif
5157
5158#if ENABLE_HUSH_HELP
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005159static int builtin_help(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005160{
5161 const struct built_in_command *x;
5162
5163 printf("\nBuilt-in commands:\n");
5164 printf("-------------------\n");
5165 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
5166 printf("%s\t%s\n", x->cmd, x->descr);
5167 }
5168 printf("\n\n");
5169 return EXIT_SUCCESS;
5170}
5171#endif
5172
5173#if ENABLE_HUSH_JOB
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005174static int builtin_jobs(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005175{
5176 struct pipe *job;
5177 const char *status_string;
5178
Denis Vlasenko87a86552008-07-29 19:43:10 +00005179 for (job = G.job_list; job; job = job->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005180 if (job->alive_cmds == job->stopped_cmds)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005181 status_string = "Stopped";
5182 else
5183 status_string = "Running";
5184
5185 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
5186 }
5187 return EXIT_SUCCESS;
5188}
5189#endif
5190
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005191static int builtin_pwd(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005192{
5193 puts(set_cwd());
5194 return EXIT_SUCCESS;
5195}
5196
5197static int builtin_read(char **argv)
5198{
5199 char *string;
5200 const char *name = argv[1] ? argv[1] : "REPLY";
5201
5202 string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
5203 return set_local_var(string, 0);
5204}
5205
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005206/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
5207 * built-in 'set' handler
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005208 * SUSv3 says:
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005209 * set [-abCefhmnuvx] [-o option] [argument...]
5210 * set [+abCefhmnuvx] [+o option] [argument...]
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005211 * set -- [argument...]
5212 * set -o
5213 * set +o
5214 * Implementations shall support the options in both their hyphen and
5215 * plus-sign forms. These options can also be specified as options to sh.
5216 * Examples:
5217 * Write out all variables and their values: set
5218 * Set $1, $2, and $3 and set "$#" to 3: set c a b
5219 * Turn on the -x and -v options: set -xv
5220 * Unset all positional parameters: set --
5221 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
5222 * Set the positional parameters to the expansion of x, even if x expands
5223 * with a leading '-' or '+': set -- $x
5224 *
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005225 * So far, we only support "set -- [argument...]" and some of the short names.
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005226 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005227static int builtin_set(char **argv)
5228{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005229 int n;
5230 char **pp, **g_argv;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005231 char *arg = *++argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005232
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005233 if (arg == NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005234 struct variable *e;
Denis Vlasenko87a86552008-07-29 19:43:10 +00005235 for (e = G.top_var; e; e = e->next)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005236 puts(e->varstr);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005237 return EXIT_SUCCESS;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005238 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005239
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005240 do {
5241 if (!strcmp(arg, "--")) {
5242 ++argv;
5243 goto set_argv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005244 }
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005245
5246 if (arg[0] == '+' || arg[0] == '-') {
5247 for (n = 1; arg[n]; ++n)
Denis Vlasenkod5762932009-03-31 11:22:57 +00005248 if (set_mode(arg[0], arg[n]))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005249 goto error;
5250 continue;
5251 }
5252
5253 break;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005254 } while ((arg = *++argv) != NULL);
5255 /* Now argv[0] is 1st argument */
5256
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005257 /* Only reset global_argv if we didn't process anything */
5258 if (arg == NULL)
5259 return EXIT_SUCCESS;
5260 set_argv:
5261
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005262 /* NB: G.global_argv[0] ($0) is never freed/changed */
5263 g_argv = G.global_argv;
5264 if (G.global_args_malloced) {
5265 pp = g_argv;
5266 while (*++pp)
5267 free(*pp);
5268 g_argv[1] = NULL;
5269 } else {
5270 G.global_args_malloced = 1;
5271 pp = xzalloc(sizeof(pp[0]) * 2);
5272 pp[0] = g_argv[0]; /* retain $0 */
5273 g_argv = pp;
5274 }
5275 /* This realloc's G.global_argv */
5276 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
5277
5278 n = 1;
5279 while (*++pp)
5280 n++;
5281 G.global_argc = n;
5282
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005283 return EXIT_SUCCESS;
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005284
5285 /* Nothing known, so abort */
5286 error:
5287 bb_error_msg("set: %s: invalid option", arg);
5288 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005289}
5290
5291static int builtin_shift(char **argv)
5292{
5293 int n = 1;
5294 if (argv[1]) {
5295 n = atoi(argv[1]);
5296 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00005297 if (n >= 0 && n < G.global_argc) {
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00005298 if (G.global_args_malloced) {
5299 int m = 1;
5300 while (m <= n)
5301 free(G.global_argv[m++]);
5302 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00005303 G.global_argc -= n;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00005304 memmove(&G.global_argv[1], &G.global_argv[n+1],
5305 G.global_argc * sizeof(G.global_argv[0]));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005306 return EXIT_SUCCESS;
5307 }
5308 return EXIT_FAILURE;
5309}
5310
5311static int builtin_source(char **argv)
5312{
5313 FILE *input;
5314 int status;
5315
5316 if (argv[1] == NULL)
5317 return EXIT_FAILURE;
5318
5319 /* XXX search through $PATH is missing */
Denis Vlasenko5415c852008-07-21 23:05:26 +00005320 input = fopen_for_read(argv[1]);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005321 if (!input) {
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +00005322 bb_error_msg("can't open '%s'", argv[1]);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005323 return EXIT_FAILURE;
5324 }
5325 close_on_exec_on(fileno(input));
5326
5327 /* Now run the file */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005328 /* XXX argv and argc are broken; need to save old G.global_argv
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005329 * (pointer only is OK!) on this stack frame,
Denis Vlasenko87a86552008-07-29 19:43:10 +00005330 * set G.global_argv=argv+1, recurse, and restore. */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005331 status = parse_and_run_file(input);
5332 fclose(input);
5333 return status;
5334}
5335
5336static int builtin_umask(char **argv)
5337{
5338 mode_t new_umask;
5339 const char *arg = argv[1];
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005340 if (arg) {
Mike Frysinger40b8dc42009-03-29 00:50:30 +00005341 new_umask = bb_strtou(arg, NULL, 8);
5342 if (errno)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005343 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005344 } else {
5345 new_umask = umask(0);
5346 printf("%.3o\n", (unsigned) new_umask);
5347 }
5348 umask(new_umask);
5349 return EXIT_SUCCESS;
5350}
5351
Mike Frysingerd690f682009-03-30 06:50:54 +00005352/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005353static int builtin_unset(char **argv)
5354{
Mike Frysingerd690f682009-03-30 06:50:54 +00005355 size_t i;
5356 int ret;
5357 bool var = true;
5358
5359 if (!argv[1])
5360 return EXIT_SUCCESS;
5361
5362 i = 0;
5363 if (argv[1][0] == '-') {
5364 switch (argv[1][1]) {
5365 case 'v': break;
5366 case 'f': if (ENABLE_HUSH_FUNCTIONS) { var = false; break; }
5367 default:
5368 bb_error_msg("unset: %s: invalid option", argv[1]);
5369 return EXIT_FAILURE;
5370 }
5371 ++i;
5372 }
5373
5374 ret = EXIT_SUCCESS;
5375 while (argv[++i]) {
5376 if (var) {
5377 if (unset_local_var(argv[i]))
5378 ret = EXIT_FAILURE;
5379 }
5380#if ENABLE_HUSH_FUNCTIONS
5381 else
5382 unset_local_func(argv[i]);
5383#endif
5384 }
5385 return ret;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005386}
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005387
Mike Frysinger56bdea12009-03-28 20:01:58 +00005388/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
5389static int builtin_wait(char **argv)
5390{
5391 int ret = EXIT_SUCCESS;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00005392 int status, sig;
Mike Frysinger56bdea12009-03-28 20:01:58 +00005393
Denis Vlasenko7566bae2009-03-31 17:24:49 +00005394 if (*++argv == NULL) {
5395 /* Don't care about wait results */
5396 /* Note 1: must wait until there are no more children */
5397 /* Note 2: must be interruptible */
5398 /* Examples:
5399 * $ sleep 3 & sleep 6 & wait
5400 * [1] 30934 sleep 3
5401 * [2] 30935 sleep 6
5402 * [1] Done sleep 3
5403 * [2] Done sleep 6
5404 * $ sleep 3 & sleep 6 & wait
5405 * [1] 30936 sleep 3
5406 * [2] 30937 sleep 6
5407 * [1] Done sleep 3
5408 * ^C <-- after ~4 sec from keyboard
5409 * $
5410 */
5411 sigaddset(&G.blocked_set, SIGCHLD);
5412 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
5413 while (1) {
5414 checkjobs(NULL);
5415 if (errno == ECHILD)
5416 break;
5417 /* Wait for SIGCHLD or any other signal of interest */
5418 /* sigtimedwait with infinite timeout: */
5419 sig = sigwaitinfo(&G.blocked_set, NULL);
5420 if (sig > 0) {
5421 sig = check_and_run_traps(sig);
5422 if (sig && sig != SIGCHLD) { /* see note 2 */
5423 ret = 128 + sig;
5424 break;
5425 }
5426 }
5427 }
5428 sigdelset(&G.blocked_set, SIGCHLD);
5429 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
5430 return ret;
5431 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00005432
Denis Vlasenko7566bae2009-03-31 17:24:49 +00005433 /* This is probably buggy wrt interruptible-ness */
Denis Vlasenkod5762932009-03-31 11:22:57 +00005434 while (*argv) {
5435 pid_t pid = bb_strtou(*argv, NULL, 10);
Mike Frysinger40b8dc42009-03-29 00:50:30 +00005436 if (errno) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00005437 /* mimic bash message */
5438 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00005439 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00005440 }
5441 if (waitpid(pid, &status, 0) == pid) {
Mike Frysinger56bdea12009-03-28 20:01:58 +00005442 if (WIFSIGNALED(status))
5443 ret = 128 + WTERMSIG(status);
5444 else if (WIFEXITED(status))
5445 ret = WEXITSTATUS(status);
Denis Vlasenkod5762932009-03-31 11:22:57 +00005446 else /* wtf? */
Mike Frysinger56bdea12009-03-28 20:01:58 +00005447 ret = EXIT_FAILURE;
5448 } else {
Denis Vlasenkod5762932009-03-31 11:22:57 +00005449 bb_perror_msg("wait %s", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00005450 ret = 127;
5451 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00005452 argv++;
Mike Frysinger56bdea12009-03-28 20:01:58 +00005453 }
5454
5455 return ret;
5456}
5457
Denis Vlasenkodadfb492008-07-29 10:16:05 +00005458#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00005459static int builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005460{
Denis Vlasenko87a86552008-07-29 19:43:10 +00005461 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00005462 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00005463 return EXIT_SUCCESS; /* bash compat */
5464 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00005465 G.flag_break_continue++; /* BC_BREAK = 1 */
5466 G.depth_break_continue = 1;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00005467 if (argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00005468 G.depth_break_continue = bb_strtou(argv[1], NULL, 10);
5469 if (errno || !G.depth_break_continue || argv[2]) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00005470 bb_error_msg("%s: bad arguments", argv[0]);
Denis Vlasenko87a86552008-07-29 19:43:10 +00005471 G.flag_break_continue = BC_BREAK;
5472 G.depth_break_continue = UINT_MAX;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00005473 }
5474 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00005475 if (G.depth_of_loop < G.depth_break_continue)
5476 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005477 return EXIT_SUCCESS;
5478}
5479
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00005480static int builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005481{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00005482 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
5483 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005484}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00005485#endif