blob: 6c20615fa58487228477f1f2c3222abddfff8c5b [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 *
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +00008 * Copyright (C) 2000,2001 Larry Doolittle <larry@doolittle.boa.org>
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00009 * Copyright (C) 2008,2009 Denys Vlasenko <vda.linux@googlemail.com>
Eric Andersen25f27032001-04-26 23:22:31 +000010 *
11 * Credits:
12 * The parser routines proper are all original material, first
Eric Andersencb81e642003-07-14 21:21:08 +000013 * written Dec 2000 and Jan 2001 by Larry Doolittle. The
14 * execution engine, the builtins, and much of the underlying
15 * support has been adapted from busybox-0.49pre's lash, which is
Eric Andersenc7bda1c2004-03-15 08:29:22 +000016 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersencb81e642003-07-14 21:21:08 +000017 * written by Erik Andersen <andersen@codepoet.org>. That, in turn,
18 * is based in part on ladsh.c, by Michael K. Johnson and Erik W.
19 * Troan, which they placed in the public domain. I don't know
20 * how much of the Johnson/Troan code has survived the repeated
21 * rewrites.
22 *
Eric Andersen25f27032001-04-26 23:22:31 +000023 * Other credits:
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +000024 * o_addchr derived from similar w_addchar function in glibc-2.2.
Denis Vlasenko50f3aa42009-04-07 10:52:40 +000025 * parse_redirect, redirect_opt_num, and big chunks of main
Denis Vlasenko424f79b2009-03-22 14:23:34 +000026 * and many builtins derived from contributions by Erik Andersen.
27 * Miscellaneous bugfixes from Matt Kraai.
Eric Andersen25f27032001-04-26 23:22:31 +000028 *
29 * There are two big (and related) architecture differences between
30 * this parser and the lash parser. One is that this version is
31 * actually designed from the ground up to understand nearly all
32 * of the Bourne grammar. The second, consequential change is that
33 * the parser and input reader have been turned inside out. Now,
34 * the parser is in control, and asks for input as needed. The old
35 * way had the input reader in control, and it asked for parsing to
36 * take place as needed. The new way makes it much easier to properly
37 * handle the recursion implicit in the various substitutions, especially
38 * across continuation lines.
39 *
Mike Frysinger25a6ca02009-03-28 13:59:26 +000040 * POSIX syntax not implemented:
Eric Andersen78a7c992001-05-15 16:30:25 +000041 * aliases
Eric Andersen25f27032001-04-26 23:22:31 +000042 * <(list) and >(list) Process Substitution
Mike Frysinger25a6ca02009-03-28 13:59:26 +000043 * Tilde Expansion
Mike Frysinger25a6ca02009-03-28 13:59:26 +000044 *
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000045 * Bash stuff (maybe optionally enable?):
Mike Frysinger25a6ca02009-03-28 13:59:26 +000046 * &> and >& redirection of stdout+stderr
Denys Vlasenko08218012009-06-03 14:43:56 +020047 * Brace Expansion
Mike Frysinger25a6ca02009-03-28 13:59:26 +000048 * reserved words: [[ ]] function select
Mike Frysinger6379bb42009-03-28 18:55:03 +000049 * substrings ${var:1:5}
Mike Frysinger25a6ca02009-03-28 13:59:26 +000050 *
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000051 * TODOs:
52 * grep for "TODO" and fix (some of them are easy)
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +020053 * builtins: ulimit
Eric Andersen25f27032001-04-26 23:22:31 +000054 * follow IFS rules more precisely, including update semantics
Denys Vlasenko08218012009-06-03 14:43:56 +020055 * export builtin should be special, its arguments are assignments
56 * and therefore expansion of them should be "one-word" expansion:
57 * $ export i=`echo 'a b'` # export has one arg: "i=a b"
58 * compare with:
59 * $ ls i=`echo 'a b'` # ls has two args: "i=a" and "b"
60 * ls: cannot access i=a: No such file or directory
61 * ls: cannot access b: No such file or directory
62 * Note1: same applies to local builtin when we'll have it.
63 * Note2: bash 3.2.33(1) does this only if export word itself
64 * is not quoted:
65 * $ export i=`echo 'aaa bbb'`; echo "$i"
66 * aaa bbb
67 * $ "export" i=`echo 'aaa bbb'`; echo "$i"
68 * aaa
Eric Andersen25f27032001-04-26 23:22:31 +000069 *
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000070 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersen25f27032001-04-26 23:22:31 +000071 */
Denys Vlasenkocb6ff252009-05-04 00:14:30 +020072#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
Denis Vlasenkobe709c22008-07-28 00:01:16 +000073#include <glob.h>
74/* #include <dmalloc.h> */
75#if ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +000076# include <fnmatch.h>
Denis Vlasenkobe709c22008-07-28 00:01:16 +000077#endif
Mike Frysinger98c52642009-04-02 10:02:37 +000078#include "math.h"
Mike Frysingera4f331d2009-04-07 06:03:22 +000079#include "match.h"
Denis Vlasenko50f3aa42009-04-07 10:52:40 +000080#ifndef PIPE_BUF
Denys Vlasenkocb6ff252009-05-04 00:14:30 +020081# define PIPE_BUF 4096 /* amount of buffering in a pipe */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +000082#endif
Mike Frysinger98c52642009-04-02 10:02:37 +000083
Denis Vlasenko1943aec2009-04-09 14:15:57 +000084
Denys Vlasenko8d7be232009-05-25 16:38:32 +020085/* Build knobs */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +000086#define LEAK_HUNTING 0
87#define BUILD_AS_NOMMU 0
88/* Enable/disable sanity checks. Ok to enable in production,
89 * only adds a bit of bloat. Set to >1 to get non-production level verbosity.
90 * Keeping 1 for now even in released versions.
91 */
92#define HUSH_DEBUG 1
Denys Vlasenko8d7be232009-05-25 16:38:32 +020093/* Slightly bigger (+200 bytes), but faster hush.
94 * So far it only enables a trick with counting SIGCHLDs and forks,
95 * which allows us to do fewer waitpid's.
96 * (we can detect a case where neither forks were done nor SIGCHLDs happened
97 * and therefore waitpid will return the same result as last time)
98 */
99#define ENABLE_HUSH_FAST 0
Denis Vlasenko1943aec2009-04-09 14:15:57 +0000100
101
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000102#if BUILD_AS_NOMMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000103# undef BB_MMU
104# undef USE_FOR_NOMMU
105# undef USE_FOR_MMU
106# define BB_MMU 0
107# define USE_FOR_NOMMU(...) __VA_ARGS__
108# define USE_FOR_MMU(...)
109#endif
110
Denis Vlasenko61befda2008-11-25 01:36:03 +0000111#if defined SINGLE_APPLET_MAIN
112/* STANDALONE does not make sense, and won't compile */
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000113# undef CONFIG_FEATURE_SH_STANDALONE
114# undef ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000115# undef IF_FEATURE_SH_STANDALONE
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000116# define IF_FEATURE_SH_STANDALONE(...)
117# define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__
Denys Vlasenko673e9452009-05-27 14:39:35 +0200118# define ENABLE_FEATURE_SH_STANDALONE 0
Denis Vlasenko61befda2008-11-25 01:36:03 +0000119#endif
120
Denis Vlasenko05743d72008-02-10 12:10:08 +0000121#if !ENABLE_HUSH_INTERACTIVE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000122# undef ENABLE_FEATURE_EDITING
123# define ENABLE_FEATURE_EDITING 0
124# undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
125# define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000126#endif
127
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000128/* Do we support ANY keywords? */
129#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000130# define HAS_KEYWORDS 1
131# define IF_HAS_KEYWORDS(...) __VA_ARGS__
132# define IF_HAS_NO_KEYWORDS(...)
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000133#else
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000134# define HAS_KEYWORDS 0
135# define IF_HAS_KEYWORDS(...)
136# define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000137#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000138
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000139/* If you comment out one of these below, it will be #defined later
140 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000141#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000142/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000143#define debug_printf_parse(...) do {} while (0)
144#define debug_print_tree(a, b) do {} while (0)
145#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000146#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000147#define debug_printf_jobs(...) do {} while (0)
148#define debug_printf_expand(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000149#define debug_printf_glob(...) do {} while (0)
150#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000151#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000152#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000153
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000154#define ERR_PTR ((void*)(long)1)
155
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000156#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000157
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000158#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000159
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200160struct variable;
161
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000162static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
163
164/* This supports saving pointers malloced in vfork child,
Denis Vlasenkoc376db32009-04-15 21:49:48 +0000165 * to be freed in the parent.
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000166 */
167#if !BB_MMU
168typedef struct nommu_save_t {
169 char **new_env;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200170 struct variable *old_vars;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000171 char **argv;
Denis Vlasenko27014ed2009-04-15 21:48:23 +0000172 char **argv_from_re_execing;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000173} nommu_save_t;
174#endif
175
Denis Vlasenko55789c62008-06-18 16:30:42 +0000176/* The descrip member of this structure is only used to make
177 * debugging output pretty */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000178static const struct {
179 int mode;
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000180 signed char default_fd;
181 char descrip[3];
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000182} redir_table[] = {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +0000183 { 0, 0, "??" },
Eric Andersen25f27032001-04-26 23:22:31 +0000184 { O_RDONLY, 0, "<" },
185 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
186 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +0000187 { O_RDONLY, 0, "<<" },
188 { O_CREAT|O_RDWR, 1, "<>" },
189/* Should not be needed. Bogus default_fd helps in debugging */
190/* { O_RDONLY, 77, "<<" }, */
Eric Andersen25f27032001-04-26 23:22:31 +0000191};
192
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000193typedef enum reserved_style {
Eric Andersen25f27032001-04-26 23:22:31 +0000194 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000195#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000196 RES_IF ,
197 RES_THEN ,
198 RES_ELIF ,
199 RES_ELSE ,
200 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000201#endif
202#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000203 RES_FOR ,
204 RES_WHILE ,
205 RES_UNTIL ,
206 RES_DO ,
207 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000208#endif
209#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000210 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000211#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000212#if ENABLE_HUSH_CASE
213 RES_CASE ,
Denys Vlasenkoe9bda902009-05-23 16:50:07 +0200214 /* three pseudo-keywords support contrived "case" syntax: */
215 RES_CASE_IN, /* "case ... IN", turns into RES_MATCH when IN is observed */
216 RES_MATCH , /* "word)" */
217 RES_CASE_BODY, /* "this command is inside CASE" */
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000218 RES_ESAC ,
219#endif
220 RES_XXXX ,
221 RES_SNTX
Eric Andersen25f27032001-04-26 23:22:31 +0000222} reserved_style;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000223
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000224typedef struct o_string {
225 char *data;
226 int length; /* position where data is appended */
227 int maxlen;
228 /* Protect newly added chars against globbing
229 * (by prepending \ to *, ?, [, \) */
230 smallint o_escape;
231 smallint o_glob;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000232 /* At least some part of the string was inside '' or "",
233 * possibly empty one: word"", wo''rd etc. */
234 smallint o_quoted;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000235 smallint has_empty_slot;
236 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
237} o_string;
238enum {
239 MAYBE_ASSIGNMENT = 0,
240 DEFINITELY_ASSIGNMENT = 1,
241 NOT_ASSIGNMENT = 2,
242 WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */
243};
244/* Used for initialization: o_string foo = NULL_O_STRING; */
245#define NULL_O_STRING { NULL }
246
247/* I can almost use ordinary FILE*. Is open_memstream() universally
248 * available? Where is it documented? */
249typedef struct in_str {
250 const char *p;
251 /* eof_flag=1: last char in ->p is really an EOF */
252 char eof_flag; /* meaningless if ->p == NULL */
253 char peek_buf[2];
254#if ENABLE_HUSH_INTERACTIVE
255 smallint promptme;
256 smallint promptmode; /* 0: PS1, 1: PS2 */
257#endif
258 FILE *file;
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200259 int (*get) (struct in_str *) FAST_FUNC;
260 int (*peek) (struct in_str *) FAST_FUNC;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000261} in_str;
262#define i_getch(input) ((input)->get(input))
263#define i_peek(input) ((input)->peek(input))
264
Eric Andersen25f27032001-04-26 23:22:31 +0000265struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000266 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000267 char *rd_filename; /* filename */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000268 int rd_fd; /* fd to redirect */
269 /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
270 int rd_dup;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000271 smallint rd_type; /* (enum redir_type) */
272 /* note: for heredocs, rd_filename contains heredoc delimiter,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000273 * and subsequently heredoc itself; and rd_dup is a bitmask:
274 * 1: do we need to trim leading tabs?
Denis Vlasenkoed055212009-04-11 10:37:10 +0000275 * 2: is heredoc quoted (<<'delim' syntax) ?
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000276 */
Eric Andersen25f27032001-04-26 23:22:31 +0000277};
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000278typedef enum redir_type {
279 REDIRECT_INVALID = 0,
280 REDIRECT_INPUT = 1,
281 REDIRECT_OVERWRITE = 2,
282 REDIRECT_APPEND = 3,
283 REDIRECT_HEREDOC = 4,
284 REDIRECT_IO = 5,
285 REDIRECT_HEREDOC2 = 6, /* REDIRECT_HEREDOC after heredoc is loaded */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000286
287 REDIRFD_CLOSE = -3,
288 REDIRFD_SYNTAX_ERR = -2,
Denis Vlasenko835fcfd2009-04-10 13:51:56 +0000289 REDIRFD_TO_FILE = -1,
290 /* otherwise, rd_fd is redirected to rd_dup */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000291
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000292 HEREDOC_SKIPTABS = 1,
293 HEREDOC_QUOTED = 2,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000294} redir_type;
295
Eric Andersen25f27032001-04-26 23:22:31 +0000296
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000297struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000298 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000299 int assignment_cnt; /* how many argv[i] are assignments? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000300 smallint is_stopped; /* is the command currently running? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000301 smallint grp_type; /* GRP_xxx */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000302#define GRP_NORMAL 0
303#define GRP_SUBSHELL 1
304#if ENABLE_HUSH_FUNCTIONS
305# define GRP_FUNCTION 2
306#endif
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200307 /* if non-NULL, this "command" is { list }, ( list ), or a compound statement */
308 struct pipe *group;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000309#if !BB_MMU
310 char *group_as_string;
311#endif
Denis Vlasenkoed055212009-04-11 10:37:10 +0000312#if ENABLE_HUSH_FUNCTIONS
313 struct function *child_func;
314/* This field is used to prevent a bug here:
315 * while...do f1() {a;}; f1; f1 {b;}; f1; done
316 * When we execute "f1() {a;}" cmd, we create new function and clear
317 * cmd->group, cmd->group_as_string, cmd->argv[0].
318 * when we execute "f1 {b;}", we notice that f1 exists,
319 * and that it's "parent cmd" struct is still "alive",
320 * we put those fields back into cmd->xxx
321 * (struct function has ->parent_cmd ptr to facilitate that).
322 * When we loop back, we can execute "f1() {a;}" again and set f1 correctly.
323 * Without this trick, loop would execute a;b;b;b;...
324 * instead of correct sequence a;b;a;b;...
325 * When command is freed, it severs the link
326 * (sets ->child_func->parent_cmd to NULL).
327 */
328#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000329 char **argv; /* command name and arguments */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000330/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
331 * and on execution these are substituted with their values.
332 * Substitution can make _several_ words out of one argv[n]!
333 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000334 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000335 */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000336 struct redir_struct *redirects; /* I/O redirections */
337};
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000338/* Is there anything in this command at all? */
339#define IS_NULL_CMD(cmd) \
340 (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects)
341
Eric Andersen25f27032001-04-26 23:22:31 +0000342
343struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000344 struct pipe *next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000345 int num_cmds; /* total number of commands in pipe */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000346 int alive_cmds; /* number of commands running (not exited) */
347 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000348#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000349 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000350 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000351 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000352#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000353 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000354 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000355 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
356 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000357};
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000358typedef enum pipe_style {
359 PIPE_SEQ = 1,
360 PIPE_AND = 2,
361 PIPE_OR = 3,
362 PIPE_BG = 4,
363} pipe_style;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000364/* Is there anything in this pipe at all? */
365#define IS_NULL_PIPE(pi) \
366 ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE))
Eric Andersen25f27032001-04-26 23:22:31 +0000367
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000368/* This holds pointers to the various results of parsing */
369struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000370 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000371 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000372 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000373 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000374 /* last command in pipe (being constructed right now) */
375 struct command *command;
376 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000377 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000378#if !BB_MMU
379 o_string as_string;
380#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000381#if HAS_KEYWORDS
382 smallint ctx_res_w;
383 smallint ctx_inverted; /* "! cmd | cmd" */
384#if ENABLE_HUSH_CASE
385 smallint ctx_dsemicolon; /* ";;" seen */
386#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000387 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
388 int old_flag;
389 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000390 * example: "if pipe1; pipe2; then pipe3; fi"
391 * when we see "if" or "then", we malloc and copy current context,
392 * and make ->stack point to it. then we parse pipeN.
393 * when closing "then" / fi" / whatever is found,
394 * we move list_head into ->stack->command->group,
395 * copy ->stack into current context, and delete ->stack.
396 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000397 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000398 struct parse_context *stack;
399#endif
400};
401
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000402/* On program start, environ points to initial environment.
403 * putenv adds new pointers into it, unsetenv removes them.
404 * Neither of these (de)allocates the strings.
405 * setenv allocates new strings in malloc space and does putenv,
406 * and thus setenv is unusable (leaky) for shell's purposes */
407#define setenv(...) setenv_is_leaky_dont_use()
408struct variable {
409 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000410 char *varstr; /* points to "name=" portion */
Denys Vlasenko295fef82009-06-03 12:47:26 +0200411#if ENABLE_HUSH_LOCAL
412 unsigned func_nest_level;
413#endif
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000414 int max_len; /* if > 0, name is part of initial env; else name is malloced */
415 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000416 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000417};
418
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000419enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000420 BC_BREAK = 1,
421 BC_CONTINUE = 2,
422};
423
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000424#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000425struct function {
426 struct function *next;
427 char *name;
Denis Vlasenkoed055212009-04-11 10:37:10 +0000428 struct command *parent_cmd;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000429 struct pipe *body;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000430#if !BB_MMU
431 char *body_as_string;
432#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000433};
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000434#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000435
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000436
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000437/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000438/* Sorted roughly by size (smaller offsets == smaller code) */
439struct globals {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000440 /* interactive_fd != 0 means we are an interactive shell.
441 * If we are, then saved_tty_pgrp can also be != 0, meaning
442 * that controlling tty is available. With saved_tty_pgrp == 0,
443 * job control still works, but terminal signals
444 * (^C, ^Z, ^Y, ^\) won't work at all, and background
445 * process groups can only be created with "cmd &".
446 * With saved_tty_pgrp != 0, hush will use tcsetpgrp()
447 * to give tty to the foreground process group,
448 * and will take it back when the group is stopped (^Z)
449 * or killed (^C).
450 */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000451#if ENABLE_HUSH_INTERACTIVE
452 /* 'interactive_fd' is a fd# open to ctty, if we have one
453 * _AND_ if we decided to act interactively */
454 int interactive_fd;
455 const char *PS1;
456 const char *PS2;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000457# define G_interactive_fd (G.interactive_fd)
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000458#else
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000459# define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000460#endif
461#if ENABLE_FEATURE_EDITING
462 line_input_t *line_input_state;
463#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000464 pid_t root_pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000465 pid_t last_bg_pid;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000466#if ENABLE_HUSH_JOB
467 int run_list_level;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000468 int last_jobid;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000469 pid_t saved_tty_pgrp;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000470 struct pipe *job_list;
Mike Frysinger38478a62009-05-20 04:48:06 -0400471# define G_saved_tty_pgrp (G.saved_tty_pgrp)
472#else
473# define G_saved_tty_pgrp 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000474#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000475 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000476#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000477 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000478#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000479#if ENABLE_HUSH_FUNCTIONS
480 /* 0: outside of a function (or sourced file)
481 * -1: inside of a function, ok to use return builtin
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000482 * 1: return is invoked, skip all till end of func
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000483 */
484 smallint flag_return_in_progress;
485#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000486 smallint fake_mode;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000487 smallint exiting; /* used to prevent EXIT trap recursion */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000488 /* These four support $?, $#, and $1 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000489 smalluint last_exitcode;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000490 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000491 smalluint global_args_malloced;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000492 /* how many non-NULL argv's we have. NB: $# + 1 */
493 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000494 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000495#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000496 char *argv0_for_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000497#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000498#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000499 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000500 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000501#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000502 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000503 const char *cwd;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000504 struct variable *top_var; /* = &G.shell_ver (set in main()) */
Denis Vlasenko0a83fc32007-05-25 11:12:32 +0000505 struct variable shell_ver;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000506#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000507 struct function *top_func;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200508# if ENABLE_HUSH_LOCAL
509 struct variable **shadowed_vars_pp;
510 unsigned func_nest_level;
511# endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000512#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000513 /* Signal and trap handling */
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200514#if ENABLE_HUSH_FAST
515 unsigned count_SIGCHLD;
516 unsigned handled_SIGCHLD;
Denys Vlasenkoe2df5f42009-05-26 14:34:10 +0200517 smallint we_have_children;
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200518#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000519 /* which signals have non-DFL handler (even with no traps set)? */
520 unsigned non_DFL_mask;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000521 char **traps; /* char *traps[NSIG] */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000522 sigset_t blocked_set;
523 sigset_t inherited_set;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000524#if HUSH_DEBUG
525 unsigned long memleak_value;
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000526 int debug_indent;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000527#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000528 char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2];
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000529};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000530#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000531/* Not #defining name to G.name - this quickly gets unwieldy
532 * (too many defines). Also, I actually prefer to see when a variable
533 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000534#define INIT_G() do { \
535 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
536} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000537
538
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000539/* Function prototypes for builtins */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200540static int builtin_cd(char **argv) FAST_FUNC;
541static int builtin_echo(char **argv) FAST_FUNC;
542static int builtin_eval(char **argv) FAST_FUNC;
543static int builtin_exec(char **argv) FAST_FUNC;
544static int builtin_exit(char **argv) FAST_FUNC;
545static int builtin_export(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000546#if ENABLE_HUSH_JOB
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200547static int builtin_fg_bg(char **argv) FAST_FUNC;
548static int builtin_jobs(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000549#endif
550#if ENABLE_HUSH_HELP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200551static int builtin_help(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000552#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +0200553#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200554static int builtin_local(char **argv) FAST_FUNC;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200555#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000556#if HUSH_DEBUG
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200557static int builtin_memleak(char **argv) FAST_FUNC;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000558#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200559static int builtin_pwd(char **argv) FAST_FUNC;
560static int builtin_read(char **argv) FAST_FUNC;
561static int builtin_set(char **argv) FAST_FUNC;
562static int builtin_shift(char **argv) FAST_FUNC;
563static int builtin_source(char **argv) FAST_FUNC;
564static int builtin_test(char **argv) FAST_FUNC;
565static int builtin_trap(char **argv) FAST_FUNC;
566static int builtin_type(char **argv) FAST_FUNC;
567static int builtin_true(char **argv) FAST_FUNC;
568static int builtin_umask(char **argv) FAST_FUNC;
569static int builtin_unset(char **argv) FAST_FUNC;
570static int builtin_wait(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000571#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200572static int builtin_break(char **argv) FAST_FUNC;
573static int builtin_continue(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000574#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000575#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200576static int builtin_return(char **argv) FAST_FUNC;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000577#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000578
579/* Table of built-in functions. They can be forked or not, depending on
580 * context: within pipes, they fork. As simple commands, they do not.
581 * When used in non-forking context, they can change global variables
582 * in the parent shell process. If forked, of course they cannot.
583 * For example, 'unset foo | whatever' will parse and run, but foo will
584 * still be set at the end. */
585struct built_in_command {
586 const char *cmd;
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200587 int (*function)(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000588#if ENABLE_HUSH_HELP
589 const char *descr;
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200590# define BLTIN(cmd, func, help) { cmd, func, help }
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000591#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200592# define BLTIN(cmd, func, help) { cmd, func }
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000593#endif
594};
595
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200596static const struct built_in_command bltins1[] = {
597 BLTIN("." , builtin_source , "Run commands in a file"),
598 BLTIN(":" , builtin_true , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000599#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200600 BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000601#endif
602#if ENABLE_HUSH_LOOPS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200603 BLTIN("break" , builtin_break , "Exit from a loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000604#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200605 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000606#if ENABLE_HUSH_LOOPS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200607 BLTIN("continue" , builtin_continue, "Start new loop iteration"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000608#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200609 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
610 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
611 BLTIN("exit" , builtin_exit , "Exit"),
612 BLTIN("export" , builtin_export , "Set environment variables"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000613#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200614 BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000615#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000616#if ENABLE_HUSH_HELP
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200617 BLTIN("help" , builtin_help , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000618#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000619#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200620 BLTIN("jobs" , builtin_jobs , "List jobs"),
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000621#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +0200622#if ENABLE_HUSH_LOCAL
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200623 BLTIN("local" , builtin_local , "Set local variables"),
Denys Vlasenko295fef82009-06-03 12:47:26 +0200624#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000625#if HUSH_DEBUG
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200626 BLTIN("memleak" , builtin_memleak , NULL),
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000627#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200628 BLTIN("read" , builtin_read , "Input into variable"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000629#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200630 BLTIN("return" , builtin_return , "Return from a function"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000631#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200632 BLTIN("set" , builtin_set , "Set/unset positional parameters"),
633 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
634 BLTIN("trap" , builtin_trap , "Trap signals"),
635 BLTIN("type" , builtin_type , "Write a description of command type"),
636// BLTIN("ulimit" , builtin_ulimit , "Control resource limits"),
637 BLTIN("umask" , builtin_umask , "Set file creation mask"),
638 BLTIN("unset" , builtin_unset , "Unset variables"),
639 BLTIN("wait" , builtin_wait , "Wait for process"),
640};
641/* For now, echo and test are unconditionally enabled.
642 * Maybe make it configurable? */
643static const struct built_in_command bltins2[] = {
644 BLTIN("[" , builtin_test , NULL),
645 BLTIN("echo" , builtin_echo , NULL),
646 BLTIN("pwd" , builtin_pwd , NULL),
647 BLTIN("test" , builtin_test , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000648};
649
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000650
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000651/* Debug printouts.
652 */
653#if HUSH_DEBUG
654/* prevent disasters with G.debug_indent < 0 */
655# define indent() fprintf(stderr, "%*s", (G.debug_indent * 2) & 0xff, "")
656# define debug_enter() (G.debug_indent++)
657# define debug_leave() (G.debug_indent--)
658#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200659# define indent() ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000660# define debug_enter() ((void)0)
661# define debug_leave() ((void)0)
662#endif
663
664#ifndef debug_printf
665# define debug_printf(...) (indent(), fprintf(stderr, __VA_ARGS__))
666#endif
667
668#ifndef debug_printf_parse
669# define debug_printf_parse(...) (indent(), fprintf(stderr, __VA_ARGS__))
670#endif
671
672#ifndef debug_printf_exec
673#define debug_printf_exec(...) (indent(), fprintf(stderr, __VA_ARGS__))
674#endif
675
676#ifndef debug_printf_env
677# define debug_printf_env(...) (indent(), fprintf(stderr, __VA_ARGS__))
678#endif
679
680#ifndef debug_printf_jobs
681# define debug_printf_jobs(...) (indent(), fprintf(stderr, __VA_ARGS__))
682# define DEBUG_JOBS 1
683#else
684# define DEBUG_JOBS 0
685#endif
686
687#ifndef debug_printf_expand
688# define debug_printf_expand(...) (indent(), fprintf(stderr, __VA_ARGS__))
689# define DEBUG_EXPAND 1
690#else
691# define DEBUG_EXPAND 0
692#endif
693
694#ifndef debug_printf_glob
695# define debug_printf_glob(...) (indent(), fprintf(stderr, __VA_ARGS__))
696# define DEBUG_GLOB 1
697#else
698# define DEBUG_GLOB 0
699#endif
700
701#ifndef debug_printf_list
702# define debug_printf_list(...) (indent(), fprintf(stderr, __VA_ARGS__))
703#endif
704
705#ifndef debug_printf_subst
706# define debug_printf_subst(...) (indent(), fprintf(stderr, __VA_ARGS__))
707#endif
708
709#ifndef debug_printf_clean
710# define debug_printf_clean(...) (indent(), fprintf(stderr, __VA_ARGS__))
711# define DEBUG_CLEAN 1
712#else
713# define DEBUG_CLEAN 0
714#endif
715
716#if DEBUG_EXPAND
717static void debug_print_strings(const char *prefix, char **vv)
718{
719 indent();
720 fprintf(stderr, "%s:\n", prefix);
721 while (*vv)
722 fprintf(stderr, " '%s'\n", *vv++);
723}
724#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200725# define debug_print_strings(prefix, vv) ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000726#endif
727
728
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000729/* Leak hunting. Use hush_leaktool.sh for post-processing.
730 */
731#if LEAK_HUNTING
732static void *xxmalloc(int lineno, size_t size)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000733{
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000734 void *ptr = xmalloc((size + 0xff) & ~0xff);
735 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
736 return ptr;
737}
738static void *xxrealloc(int lineno, void *ptr, size_t size)
739{
740 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
741 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
742 return ptr;
743}
744static char *xxstrdup(int lineno, const char *str)
745{
746 char *ptr = xstrdup(str);
747 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
748 return ptr;
749}
750static void xxfree(void *ptr)
751{
752 fdprintf(2, "free %p\n", ptr);
753 free(ptr);
754}
755#define xmalloc(s) xxmalloc(__LINE__, s)
756#define xrealloc(p, s) xxrealloc(__LINE__, p, s)
757#define xstrdup(s) xxstrdup(__LINE__, s)
758#define free(p) xxfree(p)
759#endif
760
761
762/* Syntax and runtime errors. They always abort scripts.
763 * In interactive use they usually discard unparsed and/or unexecuted commands
764 * and return to the prompt.
765 * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
766 */
767#if HUSH_DEBUG < 2
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000768# define die_if_script(lineno, fmt...) die_if_script(fmt)
769# define syntax_error(lineno, msg) syntax_error(msg)
770# define syntax_error_at(lineno, msg) syntax_error_at(msg)
771# define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch)
772# define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s)
773# define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000774#endif
775
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000776static void die_if_script(unsigned lineno, const char *fmt, ...)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000777{
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000778 va_list p;
779
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000780#if HUSH_DEBUG >= 2
781 bb_error_msg("hush.c:%u", lineno);
782#endif
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000783 va_start(p, fmt);
784 bb_verror_msg(fmt, p, NULL);
785 va_end(p);
786 if (!G_interactive_fd)
787 xfunc_die();
Mike Frysinger6379bb42009-03-28 18:55:03 +0000788}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000789
790static void syntax_error(unsigned lineno, const char *msg)
791{
792 if (msg)
793 die_if_script(lineno, "syntax error: %s", msg);
794 else
795 die_if_script(lineno, "syntax error", NULL);
796}
797
798static void syntax_error_at(unsigned lineno, const char *msg)
799{
800 die_if_script(lineno, "syntax error at '%s'", msg);
801}
802
Mike Frysinger6a46ab82009-06-01 14:14:36 -0400803static void syntax_error_unterm_str(unsigned lineno, const char *s)
804{
805 die_if_script(lineno, "syntax error: unterminated %s", s);
806}
807
Denis Vlasenko0b677d82009-04-10 13:49:10 +0000808/* It so happens that all such cases are totally fatal
809 * even if shell is interactive: EOF while looking for closing
810 * delimiter. There is nowhere to read stuff from after that,
811 * it's EOF! The only choice is to terminate.
812 */
813static void syntax_error_unterm_ch(unsigned lineno, char ch) NORETURN;
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000814static void syntax_error_unterm_ch(unsigned lineno, char ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000815{
Mike Frysinger6a46ab82009-06-01 14:14:36 -0400816 char msg[2] = { ch, '\0' };
817 syntax_error_unterm_str(lineno, msg);
Denis Vlasenko0b677d82009-04-10 13:49:10 +0000818 xfunc_die();
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000819}
820
Denys Vlasenkob1cfc452009-05-02 17:18:34 +0200821static void syntax_error_unexpected_ch(unsigned lineno, int ch)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000822{
823 char msg[2];
824 msg[0] = ch;
825 msg[1] = '\0';
Denys Vlasenkob1cfc452009-05-02 17:18:34 +0200826 die_if_script(lineno, "syntax error: unexpected %s", ch == EOF ? "EOF" : msg);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000827}
828
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000829#if HUSH_DEBUG < 2
830# undef die_if_script
831# undef syntax_error
832# undef syntax_error_at
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000833# undef syntax_error_unterm_ch
834# undef syntax_error_unterm_str
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000835# undef syntax_error_unexpected_ch
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000836#else
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000837# define die_if_script(fmt...) die_if_script(__LINE__, fmt)
838# define syntax_error(msg) syntax_error(__LINE__, msg)
839# define syntax_error_at(msg) syntax_error_at(__LINE__, msg)
840# define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch)
841# define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s)
842# define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000843#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000844
Denis Vlasenko552433b2009-04-04 19:29:21 +0000845
Mike Frysinger67c1c7b2009-04-24 06:26:18 +0000846#if ENABLE_HUSH_INTERACTIVE
847static void cmdedit_update_prompt(void);
848#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200849# define cmdedit_update_prompt() ((void)0)
Mike Frysinger67c1c7b2009-04-24 06:26:18 +0000850#endif
851
852
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000853/* Utility functions
854 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000855static int glob_needed(const char *s)
856{
857 while (*s) {
858 if (*s == '\\')
859 s++;
860 if (*s == '*' || *s == '[' || *s == '?')
861 return 1;
862 s++;
863 }
864 return 0;
865}
866
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000867static int is_well_formed_var_name(const char *s, char terminator)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000868{
Denis Vlasenkod4981312008-07-31 10:34:48 +0000869 if (!s || !(isalpha(*s) || *s == '_'))
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000870 return 0;
871 s++;
872 while (isalnum(*s) || *s == '_')
873 s++;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000874 return *s == terminator;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000875}
876
Denis Vlasenko55789c62008-06-18 16:30:42 +0000877/* Replace each \x with x in place, return ptr past NUL. */
878static char *unbackslash(char *src)
879{
880 char *dst = src;
881 while (1) {
882 if (*src == '\\')
883 src++;
884 if ((*dst++ = *src++) == '\0')
885 break;
886 }
887 return dst;
888}
889
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000890static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000891{
892 int i;
893 unsigned count1;
894 unsigned count2;
895 char **v;
896
897 v = strings;
898 count1 = 0;
899 if (v) {
900 while (*v) {
901 count1++;
902 v++;
903 }
904 }
905 count2 = 0;
906 v = add;
907 while (*v) {
908 count2++;
909 v++;
910 }
911 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
912 v[count1 + count2] = NULL;
913 i = count2;
914 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000915 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000916 return v;
917}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000918#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000919static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
920{
921 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
922 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
923 return ptr;
924}
925#define add_strings_to_strings(strings, add, need_to_dup) \
926 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
927#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000928
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200929/* Note: takes ownership of "add" ptr (it is not strdup'ed) */
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000930static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000931{
932 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000933 v[0] = add;
934 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000935 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000936}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000937#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000938static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
939{
940 char **ptr = add_string_to_strings(strings, add);
941 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
942 return ptr;
943}
944#define add_string_to_strings(strings, add) \
945 xx_add_string_to_strings(__LINE__, strings, add)
946#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000947
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +0200948static void free_strings(char **strings)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000949{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000950 char **v;
951
952 if (!strings)
953 return;
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000954 v = strings;
955 while (*v) {
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +0200956 free(*v);
957 v++;
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000958 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000959 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000960}
961
Denis Vlasenko76d50412008-06-10 16:19:39 +0000962
Denis Vlasenko270b1c32009-04-17 18:54:50 +0000963/* Helpers for setting new $n and restoring them back
964 */
965typedef struct save_arg_t {
966 char *sv_argv0;
967 char **sv_g_argv;
968 int sv_g_argc;
969 smallint sv_g_malloced;
970} save_arg_t;
971
972static void save_and_replace_G_args(save_arg_t *sv, char **argv)
973{
974 int n;
975
976 sv->sv_argv0 = argv[0];
977 sv->sv_g_argv = G.global_argv;
978 sv->sv_g_argc = G.global_argc;
979 sv->sv_g_malloced = G.global_args_malloced;
980
981 argv[0] = G.global_argv[0]; /* retain $0 */
982 G.global_argv = argv;
983 G.global_args_malloced = 0;
984
985 n = 1;
986 while (*++argv)
987 n++;
988 G.global_argc = n;
989}
990
991static void restore_G_args(save_arg_t *sv, char **argv)
992{
993 char **pp;
994
995 if (G.global_args_malloced) {
996 /* someone ran "set -- arg1 arg2 ...", undo */
997 pp = G.global_argv;
998 while (*++pp) /* note: does not free $0 */
999 free(*pp);
1000 free(G.global_argv);
1001 }
1002 argv[0] = sv->sv_argv0;
1003 G.global_argv = sv->sv_g_argv;
1004 G.global_argc = sv->sv_g_argc;
1005 G.global_args_malloced = sv->sv_g_malloced;
1006}
1007
1008
Denis Vlasenkod5762932009-03-31 11:22:57 +00001009/* Basic theory of signal handling in shell
1010 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001011 * This does not describe what hush does, rather, it is current understanding
1012 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001013 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
1014 *
1015 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
1016 * is finished or backgrounded. It is the same in interactive and
1017 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001018 * a user trap handler is installed or a shell special one is in effect.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001019 * ^C or ^Z from keyboard seem to execute "at once" because it usually
1020 * backgrounds (i.e. stops) or kills all members of currently running
1021 * pipe.
1022 *
1023 * Wait builtin in interruptible by signals for which user trap is set
1024 * or by SIGINT in interactive shell.
1025 *
1026 * Trap handlers will execute even within trap handlers. (right?)
1027 *
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001028 * User trap handlers are forgotten when subshell ("(cmd)") is entered.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001029 *
1030 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001031 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001032 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001033 * Commands which are run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001034 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001035 *
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001036 * Ordinary commands have signals set to SIG_IGN/DFL as inherited
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001037 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001038 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001039 * Signals which differ from SIG_DFL action
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001040 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +00001041 *
1042 * SIGQUIT: ignore
1043 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001044 * SIGHUP (interactive):
1045 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +00001046 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00001047 * Note that ^Z is handled not by trapping SIGTSTP, but by seeing
1048 * that all pipe members are stopped. Try this in bash:
1049 * while :; do :; done - ^Z does not background it
1050 * (while :; do :; done) - ^Z backgrounds it
Denis Vlasenkod5762932009-03-31 11:22:57 +00001051 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001052 * of the command line, show prompt. NB: ^C does not send SIGINT
1053 * to interactive shell while shell is waiting for a pipe,
1054 * since shell is bg'ed (is not in foreground process group).
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001055 * Example 1: this waits 5 sec, but does not execute ls:
1056 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
1057 * Example 2: this does not wait and does not execute ls:
1058 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
1059 * Example 3: this does not wait 5 sec, but executes ls:
1060 * "sleep 5; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +00001061 *
1062 * (What happens to signals which are IGN on shell start?)
1063 * (What happens with signal mask on shell start?)
1064 *
1065 * Implementation in hush
1066 * ======================
1067 * We use in-kernel pending signal mask to determine which signals were sent.
1068 * We block all signals which we don't want to take action immediately,
1069 * i.e. we block all signals which need to have special handling as described
1070 * above, and all signals which have traps set.
1071 * After each pipe execution, we extract any pending signals via sigtimedwait()
1072 * and act on them.
1073 *
1074 * unsigned non_DFL_mask: a mask of such "special" signals
1075 * sigset_t blocked_set: current blocked signal set
1076 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001077 * "trap - SIGxxx":
Denis Vlasenko552433b2009-04-04 19:29:21 +00001078 * clear bit in blocked_set unless it is also in non_DFL_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001079 * "trap 'cmd' SIGxxx":
1080 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +00001081 * after [v]fork, if we plan to be a shell:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001082 * unblock signals with special interactive handling
1083 * (child shell is not interactive),
1084 * unset all traps (note: regardless of child shell's type - {}, (), etc)
Denis Vlasenkod5762932009-03-31 11:22:57 +00001085 * after [v]fork, if we plan to exec:
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001086 * POSIX says pending signal mask is cleared in child - no need to clear it.
1087 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001088 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001089 * Note: as a result, we do not use signal handlers much. The only uses
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001090 * are to count SIGCHLDs
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001091 * and to restore tty pgrp on signal-induced exit.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001092 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001093enum {
1094 SPECIAL_INTERACTIVE_SIGS = 0
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001095 | (1 << SIGTERM)
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001096 | (1 << SIGINT)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001097 | (1 << SIGHUP)
1098 ,
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001099 SPECIAL_JOB_SIGS = 0
Mike Frysinger38478a62009-05-20 04:48:06 -04001100#if ENABLE_HUSH_JOB
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001101 | (1 << SIGTTIN)
1102 | (1 << SIGTTOU)
1103 | (1 << SIGTSTP)
1104#endif
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001105};
Denis Vlasenkod5762932009-03-31 11:22:57 +00001106
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001107#if ENABLE_HUSH_FAST
1108static void SIGCHLD_handler(int sig UNUSED_PARAM)
1109{
1110 G.count_SIGCHLD++;
1111//bb_error_msg("[%d] SIGCHLD_handler: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
1112}
1113#endif
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001114
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001115#if ENABLE_HUSH_JOB
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001116
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001117/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
1118#define disable_restore_tty_pgrp_on_exit() (die_sleep = 0)
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001119/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001120#define enable_restore_tty_pgrp_on_exit() (die_sleep = -1)
1121
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001122/* Restores tty foreground process group, and exits.
1123 * May be called as signal handler for fatal signal
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001124 * (will resend signal to itself, producing correct exit state)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001125 * or called directly with -EXITCODE.
1126 * We also call it if xfunc is exiting. */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001127static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001128static void sigexit(int sig)
1129{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001130 /* Disable all signals: job control, SIGPIPE, etc. */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001131 sigprocmask_allsigs(SIG_BLOCK);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001132
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001133 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001134 * tty pgrp then, only top-level shell process does that */
Mike Frysinger38478a62009-05-20 04:48:06 -04001135 if (G_saved_tty_pgrp && getpid() == G.root_pid)
1136 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001137
1138 /* Not a signal, just exit */
1139 if (sig <= 0)
1140 _exit(- sig);
1141
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001142 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001143}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001144#else
1145
1146#define disable_restore_tty_pgrp_on_exit() ((void)0)
1147#define enable_restore_tty_pgrp_on_exit() ((void)0)
1148
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001149#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001150
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001151/* Restores tty foreground process group, and exits. */
1152static void hush_exit(int exitcode) NORETURN;
1153static void hush_exit(int exitcode)
1154{
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001155 if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) {
1156 /* Prevent recursion:
1157 * trap "echo Hi; exit" EXIT; exit
1158 */
1159 char *argv[] = { NULL, G.traps[0], NULL };
1160 G.traps[0] = NULL;
1161 G.exiting = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001162 builtin_eval(argv);
1163 free(argv[1]);
1164 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001165
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001166#if ENABLE_HUSH_JOB
1167 fflush(NULL); /* flush all streams */
1168 sigexit(- (exitcode & 0xff));
1169#else
1170 exit(exitcode);
1171#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001172}
1173
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001174static int check_and_run_traps(int sig)
1175{
1176 static const struct timespec zero_timespec = { 0, 0 };
1177 smalluint save_rcode;
1178 int last_sig = 0;
1179
1180 if (sig)
1181 goto jump_in;
1182 while (1) {
1183 sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec);
1184 if (sig <= 0)
1185 break;
1186 jump_in:
1187 last_sig = sig;
1188 if (G.traps && G.traps[sig]) {
1189 if (G.traps[sig][0]) {
1190 /* We have user-defined handler */
1191 char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL };
1192 save_rcode = G.last_exitcode;
1193 builtin_eval(argv);
1194 free(argv[1]);
1195 G.last_exitcode = save_rcode;
1196 } /* else: "" trap, ignoring signal */
1197 continue;
1198 }
1199 /* not a trap: special action */
1200 switch (sig) {
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001201#if ENABLE_HUSH_FAST
1202 case SIGCHLD:
1203 G.count_SIGCHLD++;
1204//bb_error_msg("[%d] check_and_run_traps: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
1205 break;
1206#endif
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001207 case SIGINT:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001208 /* Builtin was ^C'ed, make it look prettier: */
1209 bb_putchar('\n');
1210 G.flag_SIGINT = 1;
1211 break;
1212#if ENABLE_HUSH_JOB
1213 case SIGHUP: {
1214 struct pipe *job;
1215 /* bash is observed to signal whole process groups,
1216 * not individual processes */
1217 for (job = G.job_list; job; job = job->next) {
1218 if (job->pgrp <= 0)
1219 continue;
1220 debug_printf_exec("HUPing pgrp %d\n", job->pgrp);
1221 if (kill(- job->pgrp, SIGHUP) == 0)
1222 kill(- job->pgrp, SIGCONT);
1223 }
1224 sigexit(SIGHUP);
1225 }
1226#endif
1227 default: /* ignored: */
1228 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
1229 break;
1230 }
1231 }
1232 return last_sig;
1233}
1234
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001235
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001236static const char *get_cwd(int force)
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001237{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001238 if (force || G.cwd == NULL) {
1239 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1240 * we must not try to free(bb_msg_unknown) */
1241 if (G.cwd == bb_msg_unknown)
1242 G.cwd = NULL;
1243 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1244 if (!G.cwd)
1245 G.cwd = bb_msg_unknown;
1246 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00001247 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001248}
1249
Denis Vlasenko83506862007-11-23 13:11:42 +00001250
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001251/*
1252 * Shell and environment variable support
1253 */
1254static struct variable **get_ptr_to_local_var(const char *name)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001255{
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001256 struct variable **pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001257 struct variable *cur;
1258 int len;
1259
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001260 len = strlen(name);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001261 pp = &G.top_var;
1262 while ((cur = *pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001263 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001264 return pp;
1265 pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001266 }
1267 return NULL;
1268}
1269
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001270static struct variable *get_local_var(const char *name)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001271{
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001272 struct variable **pp = get_ptr_to_local_var(name);
1273 if (pp)
1274 return *pp;
1275 return NULL;
1276}
1277
1278static const char *get_local_var_value(const char *name)
1279{
1280 struct variable **pp = get_ptr_to_local_var(name);
1281 if (pp)
1282 return strchr((*pp)->varstr, '=') + 1;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001283 return NULL;
1284}
1285
1286/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001287 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001288 * flg_export:
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001289 * 0: do not change export flag
1290 * (if creating new variable, flag will be 0)
1291 * 1: set export flag and putenv the variable
1292 * -1: clear export flag and unsetenv the variable
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001293 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00001294 */
Denys Vlasenko295fef82009-06-03 12:47:26 +02001295#if !BB_MMU && ENABLE_HUSH_LOCAL
1296/* all params are used */
1297#elif BB_MMU && ENABLE_HUSH_LOCAL
1298#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
1299 set_local_var(str, flg_export, local_lvl)
1300#elif BB_MMU && !ENABLE_HUSH_LOCAL
1301#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001302 set_local_var(str, flg_export)
Denys Vlasenko295fef82009-06-03 12:47:26 +02001303#elif !BB_MMU && !ENABLE_HUSH_LOCAL
1304#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
1305 set_local_var(str, flg_export, flg_read_only)
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001306#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02001307static int set_local_var(char *str, int flg_export, int local_lvl, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001308{
Denys Vlasenko295fef82009-06-03 12:47:26 +02001309 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001310 struct variable *cur;
Denis Vlasenko950bd722009-04-21 11:23:56 +00001311 char *eq_sign;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001312 int name_len;
1313
Denis Vlasenko950bd722009-04-21 11:23:56 +00001314 eq_sign = strchr(str, '=');
1315 if (!eq_sign) { /* not expected to ever happen? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001316 free(str);
1317 return -1;
1318 }
1319
Denis Vlasenko950bd722009-04-21 11:23:56 +00001320 name_len = eq_sign - str + 1; /* including '=' */
Denys Vlasenko295fef82009-06-03 12:47:26 +02001321 var_pp = &G.top_var;
1322 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001323 if (strncmp(cur->varstr, str, name_len) != 0) {
Denys Vlasenko295fef82009-06-03 12:47:26 +02001324 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001325 continue;
1326 }
1327 /* We found an existing var with this name */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001328 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001329#if !BB_MMU
1330 if (!flg_read_only)
1331#endif
1332 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001333 free(str);
1334 return -1;
1335 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001336 if (flg_export == -1) { // "&& cur->flg_export" ?
Denis Vlasenko950bd722009-04-21 11:23:56 +00001337 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1338 *eq_sign = '\0';
1339 unsetenv(str);
1340 *eq_sign = '=';
1341 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001342#if ENABLE_HUSH_LOCAL
1343 if (cur->func_nest_level < local_lvl) {
1344 /* New variable is declared as local,
1345 * and existing one is global, or local
1346 * from enclosing function.
1347 * Remove and save old one: */
1348 *var_pp = cur->next;
1349 cur->next = *G.shadowed_vars_pp;
1350 *G.shadowed_vars_pp = cur;
1351 /* bash 3.2.33(1) and exported vars:
1352 * # export z=z
1353 * # f() { local z=a; env | grep ^z; }
1354 * # f
1355 * z=a
1356 * # env | grep ^z
1357 * z=z
1358 */
1359 if (cur->flg_export)
1360 flg_export = 1;
1361 break;
1362 }
1363#endif
Denis Vlasenko950bd722009-04-21 11:23:56 +00001364 if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001365 free_and_exp:
1366 free(str);
1367 goto exp;
1368 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001369 if (cur->max_len != 0) {
1370 if (cur->max_len >= strlen(str)) {
1371 /* This one is from startup env, reuse space */
1372 strcpy(cur->varstr, str);
1373 goto free_and_exp;
1374 }
1375 } else {
1376 /* max_len == 0 signifies "malloced" var, which we can
1377 * (and has to) free */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001378 free(cur->varstr);
Denys Vlasenko295fef82009-06-03 12:47:26 +02001379 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001380 cur->max_len = 0;
1381 goto set_str_and_exp;
1382 }
1383
Denys Vlasenko295fef82009-06-03 12:47:26 +02001384 /* Not found - create new variable struct */
1385 cur = xzalloc(sizeof(*cur));
1386#if ENABLE_HUSH_LOCAL
1387 cur->func_nest_level = local_lvl;
1388#endif
1389 cur->next = *var_pp;
1390 *var_pp = cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001391
1392 set_str_and_exp:
1393 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001394#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001395 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001396#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001397 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001398 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001399 cur->flg_export = 1;
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001400 if (name_len == 4 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
1401 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001402 if (cur->flg_export) {
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001403 if (flg_export == -1) {
1404 cur->flg_export = 0;
1405 /* unsetenv was already done */
1406 } else {
1407 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1408 return putenv(cur->varstr);
1409 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001410 }
1411 return 0;
1412}
1413
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001414static int unset_local_var_len(const char *name, int name_len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001415{
1416 struct variable *cur;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001417 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001418
1419 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00001420 return EXIT_SUCCESS;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001421 var_pp = &G.top_var;
1422 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001423 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1424 if (cur->flg_read_only) {
1425 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00001426 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001427 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001428 *var_pp = cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001429 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1430 bb_unsetenv(cur->varstr);
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001431 if (name_len == 3 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
1432 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001433 if (!cur->max_len)
1434 free(cur->varstr);
1435 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00001436 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001437 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001438 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001439 }
Mike Frysingerd690f682009-03-30 06:50:54 +00001440 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001441}
1442
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001443static int unset_local_var(const char *name)
1444{
1445 return unset_local_var_len(name, strlen(name));
1446}
1447
1448static void unset_vars(char **strings)
1449{
1450 char **v;
1451
1452 if (!strings)
1453 return;
1454 v = strings;
1455 while (*v) {
1456 const char *eq = strchrnul(*v, '=');
1457 unset_local_var_len(*v, (int)(eq - *v));
1458 v++;
1459 }
1460 free(strings);
1461}
1462
Mike Frysinger98c52642009-04-02 10:02:37 +00001463#if ENABLE_SH_MATH_SUPPORT
1464#define is_name(c) ((c) == '_' || isalpha((unsigned char)(c)))
1465#define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c)))
1466static char *endofname(const char *name)
1467{
1468 char *p;
1469
1470 p = (char *) name;
1471 if (!is_name(*p))
1472 return p;
1473 while (*++p) {
1474 if (!is_in_name(*p))
1475 break;
1476 }
1477 return p;
1478}
1479
1480static void arith_set_local_var(const char *name, const char *val, int flags)
1481{
1482 /* arith code doesnt malloc space, so do it for it */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001483 char *var = xasprintf("%s=%s", name, val);
Denys Vlasenko295fef82009-06-03 12:47:26 +02001484 set_local_var(var, flags, /*lvl:*/ 0, /*ro:*/ 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00001485}
1486#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001487
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001488
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001489/*
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001490 * Helpers for "var1=val1 var2=val2 cmd" feature
1491 */
1492static void add_vars(struct variable *var)
1493{
1494 struct variable *next;
1495
1496 while (var) {
1497 next = var->next;
1498 var->next = G.top_var;
1499 G.top_var = var;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001500 if (var->flg_export) {
1501 debug_printf_env("%s: restoring exported '%s'\n", __func__, var->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001502 putenv(var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001503 } else {
Denys Vlasenko295fef82009-06-03 12:47:26 +02001504 debug_printf_env("%s: restoring variable '%s'\n", __func__, var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001505 }
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001506 var = next;
1507 }
1508}
1509
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001510static struct variable *set_vars_and_save_old(char **strings)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001511{
1512 char **s;
1513 struct variable *old = NULL;
1514
1515 if (!strings)
1516 return old;
1517 s = strings;
1518 while (*s) {
1519 struct variable *var_p;
1520 struct variable **var_pp;
1521 char *eq;
1522
1523 eq = strchr(*s, '=');
1524 if (eq) {
1525 *eq = '\0';
1526 var_pp = get_ptr_to_local_var(*s);
1527 *eq = '=';
1528 if (var_pp) {
1529 /* Remove variable from global linked list */
1530 var_p = *var_pp;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001531 debug_printf_env("%s: removing '%s'\n", __func__, var_p->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001532 *var_pp = var_p->next;
1533 /* Add it to returned list */
1534 var_p->next = old;
1535 old = var_p;
1536 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001537 set_local_var(*s, /*exp:*/ 1, /*lvl:*/ 0, /*ro:*/ 0);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001538 }
1539 s++;
1540 }
1541 return old;
1542}
1543
1544
1545/*
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001546 * in_str support
1547 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001548static int FAST_FUNC static_get(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001549{
1550 int ch = *i->p++;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001551 if (ch != '\0')
1552 return ch;
1553 i->p--;
1554 return EOF;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001555}
1556
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001557static int FAST_FUNC static_peek(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001558{
1559 return *i->p;
1560}
1561
1562#if ENABLE_HUSH_INTERACTIVE
1563
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001564static void cmdedit_update_prompt(void)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001565{
Mike Frysingerec2c6552009-03-28 12:24:44 +00001566 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001567 G.PS1 = get_local_var_value("PS1");
Mike Frysingerec2c6552009-03-28 12:24:44 +00001568 if (G.PS1 == NULL)
1569 G.PS1 = "\\w \\$ ";
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001570 G.PS2 = get_local_var_value("PS2");
Denys Vlasenko690ad242009-04-30 21:24:24 +02001571 } else {
Mike Frysingerec2c6552009-03-28 12:24:44 +00001572 G.PS1 = NULL;
Denys Vlasenko690ad242009-04-30 21:24:24 +02001573 }
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001574 if (G.PS2 == NULL)
1575 G.PS2 = "> ";
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001576}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001577
1578static const char* setup_prompt_string(int promptmode)
1579{
1580 const char *prompt_str;
1581 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00001582 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1583 /* Set up the prompt */
1584 if (promptmode == 0) { /* PS1 */
1585 free((char*)G.PS1);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001586 G.PS1 = xasprintf("%s %c ", get_cwd(0), (geteuid() != 0) ? '$' : '#');
Mike Frysingerec2c6552009-03-28 12:24:44 +00001587 prompt_str = G.PS1;
1588 } else
1589 prompt_str = G.PS2;
1590 } else
1591 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001592 debug_printf("result '%s'\n", prompt_str);
1593 return prompt_str;
1594}
1595
1596static void get_user_input(struct in_str *i)
1597{
1598 int r;
1599 const char *prompt_str;
1600
1601 prompt_str = setup_prompt_string(i->promptmode);
1602#if ENABLE_FEATURE_EDITING
1603 /* Enable command line editing only while a command line
1604 * is actually being read */
1605 do {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001606 G.flag_SIGINT = 0;
1607 /* buglet: SIGINT will not make new prompt to appear _at once_,
1608 * only after <Enter>. (^C will work) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001609 r = read_line_input(prompt_str, G.user_input_buf, BUFSIZ-1, G.line_input_state);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001610 /* catch *SIGINT* etc (^C is handled by read_line_input) */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001611 check_and_run_traps(0);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001612 } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001613 i->eof_flag = (r < 0);
1614 if (i->eof_flag) { /* EOF/error detected */
1615 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1616 G.user_input_buf[1] = '\0';
1617 }
1618#else
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001619 do {
1620 G.flag_SIGINT = 0;
1621 fputs(prompt_str, stdout);
1622 fflush(stdout);
1623 G.user_input_buf[0] = r = fgetc(i->file);
1624 /*G.user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001625//do we need check_and_run_traps(0)? (maybe only if stdin)
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001626 } while (G.flag_SIGINT);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001627 i->eof_flag = (r == EOF);
1628#endif
1629 i->p = G.user_input_buf;
1630}
1631
1632#endif /* INTERACTIVE */
1633
1634/* This is the magic location that prints prompts
1635 * and gets data back from the user */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001636static int FAST_FUNC file_get(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001637{
1638 int ch;
1639
1640 /* If there is data waiting, eat it up */
1641 if (i->p && *i->p) {
1642#if ENABLE_HUSH_INTERACTIVE
1643 take_cached:
1644#endif
1645 ch = *i->p++;
1646 if (i->eof_flag && !*i->p)
1647 ch = EOF;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001648 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001649 } else {
1650 /* need to double check i->file because we might be doing something
1651 * more complicated by now, like sourcing or substituting. */
1652#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001653 if (G_interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001654 do {
1655 get_user_input(i);
1656 } while (!*i->p); /* need non-empty line */
1657 i->promptmode = 1; /* PS2 */
1658 i->promptme = 0;
1659 goto take_cached;
1660 }
1661#endif
Denis Vlasenko913a2012009-04-05 22:17:04 +00001662 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001663 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001664 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001665#if ENABLE_HUSH_INTERACTIVE
1666 if (ch == '\n')
1667 i->promptme = 1;
1668#endif
1669 return ch;
1670}
1671
Denis Vlasenko913a2012009-04-05 22:17:04 +00001672/* All callers guarantee this routine will never
1673 * be used right after a newline, so prompting is not needed.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001674 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001675static int FAST_FUNC file_peek(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001676{
1677 int ch;
1678 if (i->p && *i->p) {
1679 if (i->eof_flag && !i->p[1])
1680 return EOF;
1681 return *i->p;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001682 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001683 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001684 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001685 i->eof_flag = (ch == EOF);
1686 i->peek_buf[0] = ch;
1687 i->peek_buf[1] = '\0';
1688 i->p = i->peek_buf;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001689 debug_printf("file_peek: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001690 return ch;
1691}
1692
1693static void setup_file_in_str(struct in_str *i, FILE *f)
1694{
1695 i->peek = file_peek;
1696 i->get = file_get;
1697#if ENABLE_HUSH_INTERACTIVE
1698 i->promptme = 1;
1699 i->promptmode = 0; /* PS1 */
1700#endif
1701 i->file = f;
1702 i->p = NULL;
1703}
1704
1705static void setup_string_in_str(struct in_str *i, const char *s)
1706{
1707 i->peek = static_peek;
1708 i->get = static_get;
1709#if ENABLE_HUSH_INTERACTIVE
1710 i->promptme = 1;
1711 i->promptmode = 0; /* PS1 */
1712#endif
1713 i->p = s;
1714 i->eof_flag = 0;
1715}
1716
1717
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001718/*
1719 * o_string support
1720 */
1721#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00001722
Denis Vlasenko0b677d82009-04-10 13:49:10 +00001723static void o_reset_to_empty_unquoted(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001724{
1725 o->length = 0;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001726 o->o_quoted = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001727 if (o->data)
1728 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001729}
1730
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001731static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001732{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001733 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001734 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00001735}
1736
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001737static ALWAYS_INLINE void o_free_unsafe(o_string *o)
1738{
1739 free(o->data);
1740}
1741
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001742static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001743{
1744 if (o->length + len > o->maxlen) {
1745 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1746 o->data = xrealloc(o->data, 1 + o->maxlen);
1747 }
1748}
1749
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001750static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001751{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001752 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1753 o_grow_by(o, 1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001754 o->data[o->length] = ch;
1755 o->length++;
1756 o->data[o->length] = '\0';
1757}
1758
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001759static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001760{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001761 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001762 memcpy(&o->data[o->length], str, len);
1763 o->length += len;
1764 o->data[o->length] = '\0';
1765}
1766
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001767#if !BB_MMU
1768static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00001769{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001770 o_addblock(o, str, strlen(str));
1771}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001772static void nommu_addchr(o_string *o, int ch)
1773{
1774 if (o)
1775 o_addchr(o, ch);
1776}
1777#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001778# define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001779#endif
1780
1781static void o_addstr_with_NUL(o_string *o, const char *str)
1782{
1783 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00001784}
1785
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001786static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
Denis Vlasenko55789c62008-06-18 16:30:42 +00001787{
1788 while (len) {
1789 o_addchr(o, *str);
1790 if (*str++ == '\\'
1791 && (*str != '*' && *str != '?' && *str != '[')
1792 ) {
1793 o_addchr(o, '\\');
1794 }
1795 len--;
1796 }
1797}
1798
Eric Andersen25f27032001-04-26 23:22:31 +00001799/* My analysis of quoting semantics tells me that state information
1800 * is associated with a destination, not a source.
1801 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001802static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00001803{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001804 int sz = 1;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001805 char *found = strchr("*?[\\", ch);
1806 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001807 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001808 o_grow_by(o, sz);
1809 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001810 o->data[o->length] = '\\';
1811 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00001812 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001813 o->data[o->length] = ch;
1814 o->length++;
1815 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001816}
1817
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001818static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001819{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001820 int sz = 1;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001821 if (o->o_escape && strchr("*?[\\", ch)) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001822 sz++;
1823 o->data[o->length] = '\\';
1824 o->length++;
1825 }
1826 o_grow_by(o, sz);
1827 o->data[o->length] = ch;
1828 o->length++;
1829 o->data[o->length] = '\0';
1830}
1831
1832static void o_addQstr(o_string *o, const char *str, int len)
1833{
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001834 if (!o->o_escape) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001835 o_addblock(o, str, len);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001836 return;
1837 }
1838 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001839 char ch;
1840 int sz;
1841 int ordinary_cnt = strcspn(str, "*?[\\");
1842 if (ordinary_cnt > len) /* paranoia */
1843 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001844 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001845 if (ordinary_cnt == len)
1846 return;
1847 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001848 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001849
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001850 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001851 sz = 1;
1852 if (ch) { /* it is necessarily one of "*?[\\" */
1853 sz++;
1854 o->data[o->length] = '\\';
1855 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001856 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001857 o_grow_by(o, sz);
1858 o->data[o->length] = ch;
1859 o->length++;
1860 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001861 }
1862}
1863
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001864/* A special kind of o_string for $VAR and `cmd` expansion.
1865 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001866 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001867 * list[i] contains an INDEX (int!) into this string data.
1868 * It means that if list[] needs to grow, data needs to be moved higher up
1869 * but list[i]'s need not be modified.
1870 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001871 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001872 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
1873 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001874#if DEBUG_EXPAND || DEBUG_GLOB
1875static void debug_print_list(const char *prefix, o_string *o, int n)
1876{
1877 char **list = (char**)o->data;
1878 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1879 int i = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001880
1881 indent();
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001882 fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n",
1883 prefix, list, n, string_start, o->length, o->maxlen);
1884 while (i < n) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001885 indent();
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001886 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
1887 o->data + (int)list[i] + string_start,
1888 o->data + (int)list[i] + string_start);
1889 i++;
1890 }
1891 if (n) {
1892 const char *p = o->data + (int)list[n - 1] + string_start;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001893 indent();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001894 fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001895 }
1896}
1897#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001898# define debug_print_list(prefix, o, n) ((void)0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001899#endif
1900
1901/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
1902 * in list[n] so that it points past last stored byte so far.
1903 * It returns n+1. */
1904static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001905{
1906 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00001907 int string_start;
1908 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001909
1910 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00001911 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1912 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001913 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001914 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001915 /* list[n] points to string_start, make space for 16 more pointers */
1916 o->maxlen += 0x10 * sizeof(list[0]);
1917 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00001918 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001919 memmove(list + n + 0x10, list + n, string_len);
1920 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001921 } else {
1922 debug_printf_list("list[%d]=%d string_start=%d\n",
1923 n, string_len, string_start);
1924 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001925 } else {
1926 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00001927 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
1928 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001929 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
1930 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001931 o->has_empty_slot = 0;
1932 }
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001933 list[n] = (char*)(ptrdiff_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001934 return n + 1;
1935}
1936
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001937/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001938static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001939{
1940 char **list = (char**)o->data;
1941 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1942
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001943 return ((int)(ptrdiff_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001944}
1945
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001946/* o_glob performs globbing on last list[], saving each result
Denis Vlasenko55789c62008-06-18 16:30:42 +00001947 * as a new list[]. */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001948static int o_glob(o_string *o, int n)
1949{
1950 glob_t globdata;
1951 int gr;
1952 char *pattern;
1953
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001954 debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001955 if (!o->data)
1956 return o_save_ptr_helper(o, n);
1957 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001958 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001959 if (!glob_needed(pattern)) {
1960 literal:
1961 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001962 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001963 return o_save_ptr_helper(o, n);
1964 }
1965
1966 memset(&globdata, 0, sizeof(globdata));
1967 gr = glob(pattern, 0, NULL, &globdata);
1968 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
1969 if (gr == GLOB_NOSPACE)
1970 bb_error_msg_and_die("out of memory during glob");
1971 if (gr == GLOB_NOMATCH) {
1972 globfree(&globdata);
1973 goto literal;
1974 }
1975 if (gr != 0) { /* GLOB_ABORTED ? */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00001976 /* TODO: testcase for bad glob pattern behavior */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001977 bb_error_msg("glob(3) error %d on '%s'", gr, pattern);
1978 }
1979 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
1980 char **argv = globdata.gl_pathv;
1981 o->length = pattern - o->data; /* "forget" pattern */
1982 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001983 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001984 n = o_save_ptr_helper(o, n);
1985 argv++;
1986 if (!*argv)
1987 break;
1988 }
1989 }
1990 globfree(&globdata);
1991 if (DEBUG_GLOB)
1992 debug_print_list("o_glob returning", o, n);
1993 return n;
1994}
1995
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001996/* If o->o_glob == 1, glob the string so far remembered.
1997 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001998static int o_save_ptr(o_string *o, int n)
1999{
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00002000 if (o->o_glob) { /* if globbing is requested */
2001 /* If o->has_empty_slot, list[n] was already globbed
2002 * (if it was requested back then when it was filled)
2003 * so don't do that again! */
2004 if (!o->has_empty_slot)
2005 return o_glob(o, n); /* o_save_ptr_helper is inside */
2006 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002007 return o_save_ptr_helper(o, n);
2008}
2009
2010/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002011static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002012{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002013 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002014 int string_start;
2015
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002016 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
2017 if (DEBUG_EXPAND)
2018 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002019 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002020 list = (char**)o->data;
2021 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2022 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002023 while (n) {
2024 n--;
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00002025 list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002026 }
2027 return list;
2028}
2029
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002030
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002031/* Expansion can recurse */
2032#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00002033static int process_command_subs(o_string *dest, const char *s);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002034#endif
2035static char *expand_string_to_string(const char *str);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002036#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00002037#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002038 parse_stream_dquoted(dest, input, dquote_end)
2039#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00002040static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002041 o_string *dest,
2042 struct in_str *input,
2043 int dquote_end);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002044
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002045/* expand_strvec_to_strvec() takes a list of strings, expands
2046 * all variable references within and returns a pointer to
2047 * a list of expanded strings, possibly with larger number
2048 * of strings. (Think VAR="a b"; echo $VAR).
2049 * This new list is allocated as a single malloc block.
2050 * NULL-terminated list of char* pointers is at the beginning of it,
2051 * followed by strings themself.
2052 * Caller can deallocate entire list by single free(list). */
Eric Andersen25f27032001-04-26 23:22:31 +00002053
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002054/* Store given string, finalizing the word and starting new one whenever
2055 * we encounter IFS char(s). This is used for expanding variable values.
2056 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
2057static int expand_on_ifs(o_string *output, int n, const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00002058{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002059 while (1) {
2060 int word_len = strcspn(str, G.ifs);
2061 if (word_len) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002062 if (output->o_escape || !output->o_glob)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002063 o_addQstr(output, str, word_len);
2064 else /* protect backslashes against globbing up :) */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002065 o_addblock_duplicate_backslash(output, str, word_len);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002066 str += word_len;
2067 }
2068 if (!*str) /* EOL - do not finalize word */
2069 break;
2070 o_addchr(output, '\0');
2071 debug_print_list("expand_on_ifs", output, n);
2072 n = o_save_ptr(output, n);
2073 str += strspn(str, G.ifs); /* skip ifs chars */
Eric Andersen25f27032001-04-26 23:22:31 +00002074 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002075 debug_print_list("expand_on_ifs[1]", output, n);
2076 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00002077}
2078
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002079/* Helper to expand $((...)) and heredoc body. These act as if
2080 * they are in double quotes, with the exception that they are not :).
2081 * Just the rules are similar: "expand only $var and `cmd`"
2082 *
2083 * Returns malloced string.
2084 * As an optimization, we return NULL if expansion is not needed.
2085 */
2086static char *expand_pseudo_dquoted(const char *str)
2087{
2088 char *exp_str;
2089 struct in_str input;
2090 o_string dest = NULL_O_STRING;
2091
2092 if (strchr(str, '$') == NULL
2093#if ENABLE_HUSH_TICK
2094 && strchr(str, '`') == NULL
2095#endif
2096 ) {
2097 return NULL;
2098 }
2099
2100 /* We need to expand. Example:
2101 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
2102 */
2103 setup_string_in_str(&input, str);
2104 parse_stream_dquoted(NULL, &dest, &input, EOF);
2105 //bb_error_msg("'%s' -> '%s'", str, dest.data);
2106 exp_str = expand_string_to_string(dest.data);
2107 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
2108 o_free_unsafe(&dest);
2109 return exp_str;
2110}
2111
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002112/* Expand all variable references in given string, adding words to list[]
2113 * at n, n+1,... positions. Return updated n (so that list[n] is next one
2114 * to be filled). This routine is extremely tricky: has to deal with
2115 * variables/parameters with whitespace, $* and $@, and constructs like
2116 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
2117static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00002118{
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02002119 /* or_mask is either 0 (normal case) or 0x80 -
2120 * expansion of right-hand side of assignment == 1-element expand.
2121 * It will also do no globbing, and thus we must not backslash-quote!
2122 */
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002123 char ored_ch;
2124 char *p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002125
2126 ored_ch = 0;
2127
2128 debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg);
2129 debug_print_list("expand_vars_to_list", output, n);
2130 n = o_save_ptr(output, n);
2131 debug_print_list("expand_vars_to_list[0]", output, n);
2132
2133 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002134 char first_ch;
2135 int i;
2136 char *dyn_val = NULL;
2137 const char *val = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002138#if ENABLE_HUSH_TICK
2139 o_string subst_result = NULL_O_STRING;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00002140#endif
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002141#if ENABLE_SH_MATH_SUPPORT
2142 char arith_buf[sizeof(arith_t)*3 + 2];
2143#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002144 o_addblock(output, arg, p - arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002145 debug_print_list("expand_vars_to_list[1]", output, n);
2146 arg = ++p;
2147 p = strchr(p, SPECIAL_VAR_SYMBOL);
2148
2149 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
2150 /* "$@" is special. Even if quoted, it can still
2151 * expand to nothing (not even an empty string) */
2152 if ((first_ch & 0x7f) != '@')
2153 ored_ch |= first_ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002154
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002155 switch (first_ch & 0x7f) {
2156 /* Highest bit in first_ch indicates that var is double-quoted */
2157 case '$': /* pid */
2158 val = utoa(G.root_pid);
2159 break;
2160 case '!': /* bg pid */
2161 val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)"";
2162 break;
2163 case '?': /* exitcode */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00002164 val = utoa(G.last_exitcode);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002165 break;
2166 case '#': /* argc */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002167 if (arg[1] != SPECIAL_VAR_SYMBOL)
2168 /* actually, it's a ${#var} */
2169 goto case_default;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002170 val = utoa(G.global_argc ? G.global_argc-1 : 0);
2171 break;
2172 case '*':
2173 case '@':
2174 i = 1;
2175 if (!G.global_argv[i])
2176 break;
2177 ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
2178 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002179 smallint sv = output->o_escape;
2180 /* unquoted var's contents should be globbed, so don't escape */
2181 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002182 while (G.global_argv[i]) {
2183 n = expand_on_ifs(output, n, G.global_argv[i]);
2184 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
2185 if (G.global_argv[i++][0] && G.global_argv[i]) {
2186 /* this argv[] is not empty and not last:
2187 * put terminating NUL, start new word */
2188 o_addchr(output, '\0');
2189 debug_print_list("expand_vars_to_list[2]", output, n);
2190 n = o_save_ptr(output, n);
2191 debug_print_list("expand_vars_to_list[3]", output, n);
2192 }
2193 }
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002194 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002195 } else
2196 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
2197 * and in this case should treat it like '$*' - see 'else...' below */
2198 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
2199 while (1) {
2200 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
2201 if (++i >= G.global_argc)
2202 break;
2203 o_addchr(output, '\0');
2204 debug_print_list("expand_vars_to_list[4]", output, n);
2205 n = o_save_ptr(output, n);
2206 }
2207 } else { /* quoted $*: add as one word */
2208 while (1) {
2209 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
2210 if (!G.global_argv[++i])
2211 break;
2212 if (G.ifs[0])
2213 o_addchr(output, G.ifs[0]);
2214 }
2215 }
2216 break;
2217 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
2218 /* "Empty variable", used to make "" etc to not disappear */
2219 arg++;
2220 ored_ch = 0x80;
2221 break;
2222#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00002223 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002224 *p = '\0';
2225 arg++;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002226 /* Can't just stuff it into output o_string,
2227 * expanded result may need to be globbed
2228 * and $IFS-splitted */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002229 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00002230 process_command_subs(&subst_result, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002231 debug_printf_subst("SUBST RES '%s'\n", subst_result.data);
2232 val = subst_result.data;
2233 goto store_val;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00002234#endif
Mike Frysinger98c52642009-04-02 10:02:37 +00002235#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002236 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002237 arith_eval_hooks_t hooks;
Mike Frysinger98c52642009-04-02 10:02:37 +00002238 arith_t res;
Mike Frysinger98c52642009-04-02 10:02:37 +00002239 int errcode;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002240 char *exp_str;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002241
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002242 arg++; /* skip '+' */
2243 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Mike Frysinger98c52642009-04-02 10:02:37 +00002244 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002245
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002246 exp_str = expand_pseudo_dquoted(arg);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00002247 hooks.lookupvar = get_local_var_value;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002248 hooks.setvar = arith_set_local_var;
2249 hooks.endofname = endofname;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002250 res = arith(exp_str ? exp_str : arg, &errcode, &hooks);
2251 free(exp_str);
2252
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002253 if (errcode < 0) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002254 const char *msg = "error in arithmetic";
Mike Frysinger98c52642009-04-02 10:02:37 +00002255 switch (errcode) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002256 case -3:
2257 msg = "exponent less than 0";
2258 break;
2259 case -2:
2260 msg = "divide by 0";
2261 break;
2262 case -5:
2263 msg = "expression recursion loop detected";
2264 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00002265 }
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002266 die_if_script(msg);
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002267 }
Mike Frysinger98c52642009-04-02 10:02:37 +00002268 debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002269 sprintf(arith_buf, arith_t_fmt, res);
2270 val = arith_buf;
Mike Frysinger98c52642009-04-02 10:02:37 +00002271 break;
2272 }
2273#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002274 default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002275 case_default: {
Denis Vlasenko232be3e2009-04-05 09:16:00 +00002276 bool exp_len = false;
2277 bool exp_null = false;
2278 char *var = arg;
2279 char exp_save = exp_save; /* for compiler */
2280 char exp_op = exp_op; /* for compiler */
2281 char *exp_word = exp_word; /* for compiler */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002282 size_t exp_off = 0;
Denis Vlasenko232be3e2009-04-05 09:16:00 +00002283
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002284 *p = '\0';
2285 arg[0] = first_ch & 0x7f;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002286
2287 /* prepare for expansions */
2288 if (var[0] == '#') {
2289 /* handle length expansion ${#var} */
2290 exp_len = true;
2291 ++var;
2292 } else {
2293 /* maybe handle parameter expansion */
Mike Frysingera4f331d2009-04-07 06:03:22 +00002294 exp_off = strcspn(var, ":-=+?%#");
Mike Frysinger6379bb42009-03-28 18:55:03 +00002295 if (!var[exp_off])
2296 exp_off = 0;
2297 if (exp_off) {
2298 exp_save = var[exp_off];
2299 exp_null = exp_save == ':';
2300 exp_word = var + exp_off;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002301 if (exp_null)
2302 ++exp_word;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002303 exp_op = *exp_word++;
2304 var[exp_off] = '\0';
2305 }
2306 }
2307
2308 /* lookup the variable in question */
2309 if (isdigit(var[0])) {
Mike Frysinger7c3e52c2009-03-28 21:06:22 +00002310 /* handle_dollar() should have vetted var for us */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002311 i = xatoi_u(var);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002312 if (i < G.global_argc)
2313 val = G.global_argv[i];
2314 /* else val remains NULL: $N with too big N */
2315 } else
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00002316 val = get_local_var_value(var);
Mike Frysinger6379bb42009-03-28 18:55:03 +00002317
2318 /* handle any expansions */
2319 if (exp_len) {
2320 debug_printf_expand("expand: length of '%s' = ", val);
2321 val = utoa(val ? strlen(val) : 0);
2322 debug_printf_expand("%s\n", val);
2323 } else if (exp_off) {
Mike Frysingera4f331d2009-04-07 06:03:22 +00002324 if (exp_op == '%' || exp_op == '#') {
Mike Frysinger57e74672009-04-09 23:00:33 +00002325 if (val) {
2326 /* we need to do a pattern match */
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002327 bool match_at_left;
Mike Frysinger57e74672009-04-09 23:00:33 +00002328 char *loc;
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002329 scan_t scan = pick_scan(exp_op, *exp_word, &match_at_left);
Mike Frysinger57e74672009-04-09 23:00:33 +00002330 if (exp_op == *exp_word) /* ## or %% */
2331 ++exp_word;
2332 val = dyn_val = xstrdup(val);
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002333 loc = scan(dyn_val, exp_word, match_at_left);
2334 if (match_at_left) /* # or ## */
Mike Frysinger57e74672009-04-09 23:00:33 +00002335 val = loc;
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002336 else if (loc) /* % or %% and match was found */
Mike Frysinger57e74672009-04-09 23:00:33 +00002337 *loc = '\0';
2338 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002339 } else {
2340 /* we need to do an expansion */
2341 int exp_test = (!val || (exp_null && !val[0]));
2342 if (exp_op == '+')
2343 exp_test = !exp_test;
2344 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
2345 exp_null ? "true" : "false", exp_test);
2346 if (exp_test) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002347 if (exp_op == '?') {
2348//TODO: how interactive bash aborts expansion mid-command?
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002349 /* ${var?[error_msg_if_unset]} */
2350 /* ${var:?[error_msg_if_unset_or_null]} */
2351 /* mimic bash message */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002352 die_if_script("%s: %s",
2353 var,
2354 exp_word[0] ? exp_word : "parameter null or not set"
2355 );
2356 } else {
Mike Frysingera4f331d2009-04-07 06:03:22 +00002357 val = exp_word;
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002358 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002359
Mike Frysingera4f331d2009-04-07 06:03:22 +00002360 if (exp_op == '=') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002361 /* ${var=[word]} or ${var:=[word]} */
Mike Frysingera4f331d2009-04-07 06:03:22 +00002362 if (isdigit(var[0]) || var[0] == '#') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002363 /* mimic bash message */
2364 die_if_script("$%s: cannot assign in this way", var);
Mike Frysingera4f331d2009-04-07 06:03:22 +00002365 val = NULL;
2366 } else {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002367 char *new_var = xasprintf("%s=%s", var, val);
Denys Vlasenko295fef82009-06-03 12:47:26 +02002368 set_local_var(new_var, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
Mike Frysingera4f331d2009-04-07 06:03:22 +00002369 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002370 }
2371 }
2372 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002373
Mike Frysinger6379bb42009-03-28 18:55:03 +00002374 var[exp_off] = exp_save;
2375 }
2376
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002377 arg[0] = first_ch;
2378#if ENABLE_HUSH_TICK
2379 store_val:
2380#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002381 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002382 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002383 if (val) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002384 /* unquoted var's contents should be globbed, so don't escape */
2385 smallint sv = output->o_escape;
2386 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002387 n = expand_on_ifs(output, n, val);
2388 val = NULL;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002389 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002390 }
2391 } else { /* quoted $VAR, val will be appended below */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002392 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002393 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002394 } /* default: */
2395 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002396
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002397 if (val) {
2398 o_addQstr(output, val, strlen(val));
2399 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002400 free(dyn_val);
Mike Frysinger6379bb42009-03-28 18:55:03 +00002401 /* Do the check to avoid writing to a const string */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002402 if (*p != SPECIAL_VAR_SYMBOL)
Mike Frysinger6379bb42009-03-28 18:55:03 +00002403 *p = SPECIAL_VAR_SYMBOL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002404
2405#if ENABLE_HUSH_TICK
2406 o_free(&subst_result);
2407#endif
2408 arg = ++p;
2409 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
2410
2411 if (arg[0]) {
2412 debug_print_list("expand_vars_to_list[a]", output, n);
2413 /* this part is literal, and it was already pre-quoted
2414 * if needed (much earlier), do not use o_addQstr here! */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002415 o_addstr_with_NUL(output, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002416 debug_print_list("expand_vars_to_list[b]", output, n);
2417 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
2418 && !(ored_ch & 0x80) /* and all vars were not quoted. */
2419 ) {
2420 n--;
2421 /* allow to reuse list[n] later without re-growth */
2422 output->has_empty_slot = 1;
2423 } else {
2424 o_addchr(output, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00002425 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002426 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00002427}
2428
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002429static char **expand_variables(char **argv, int or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00002430{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002431 int n;
2432 char **list;
2433 char **v;
2434 o_string output = NULL_O_STRING;
2435
2436 if (or_mask & 0x100) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002437 output.o_escape = 1; /* protect against globbing for "$var" */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002438 /* (unquoted $var will temporarily switch it off) */
2439 output.o_glob = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002440 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002441
2442 n = 0;
2443 v = argv;
2444 while (*v) {
2445 n = expand_vars_to_list(&output, n, *v, (char)or_mask);
2446 v++;
2447 }
2448 debug_print_list("expand_variables", &output, n);
2449
2450 /* output.data (malloced in one block) gets returned in "list" */
2451 list = o_finalize_list(&output, n);
2452 debug_print_strings("expand_variables[1]", list);
2453 return list;
Eric Andersen25f27032001-04-26 23:22:31 +00002454}
2455
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002456static char **expand_strvec_to_strvec(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00002457{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002458 return expand_variables(argv, 0x100);
Eric Andersen25f27032001-04-26 23:22:31 +00002459}
2460
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002461/* Used for expansion of right hand of assignments */
2462/* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs
2463 * "v=/bin/c*" */
2464static char *expand_string_to_string(const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00002465{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002466 char *argv[2], **list;
2467
2468 argv[0] = (char*)str;
2469 argv[1] = NULL;
2470 list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */
2471 if (HUSH_DEBUG)
2472 if (!list[0] || list[1])
2473 bb_error_msg_and_die("BUG in varexp2");
2474 /* actually, just move string 2*sizeof(char*) bytes back */
2475 overlapping_strcpy((char*)list, list[0]);
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02002476 unbackslash((char*)list);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002477 debug_printf_expand("string_to_string='%s'\n", (char*)list);
2478 return (char*)list;
2479}
2480
2481/* Used for "eval" builtin */
2482static char* expand_strvec_to_string(char **argv)
2483{
2484 char **list;
2485
2486 list = expand_variables(argv, 0x80);
2487 /* Convert all NULs to spaces */
2488 if (list[0]) {
2489 int n = 1;
2490 while (list[n]) {
2491 if (HUSH_DEBUG)
2492 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2493 bb_error_msg_and_die("BUG in varexp3");
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00002494 /* bash uses ' ' regardless of $IFS contents */
2495 list[n][-1] = ' ';
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002496 n++;
2497 }
2498 }
2499 overlapping_strcpy((char*)list, list[0]);
2500 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
2501 return (char*)list;
2502}
2503
2504static char **expand_assignments(char **argv, int count)
2505{
2506 int i;
2507 char **p = NULL;
2508 /* Expand assignments into one string each */
2509 for (i = 0; i < count; i++) {
2510 p = add_string_to_strings(p, expand_string_to_string(argv[i]));
2511 }
2512 return p;
Eric Andersen25f27032001-04-26 23:22:31 +00002513}
2514
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002515
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002516#if BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002517/* never called */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002518void re_execute_shell(char ***to_free, const char *s,
2519 char *g_argv0, char **g_argv,
2520 char **builtin_argv) NORETURN;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002521
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002522static void reset_traps_to_defaults(void)
2523{
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002524 /* This function is always called in a child shell
2525 * after fork (not vfork, NOMMU doesn't use this function).
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002526 * Child shells are not interactive.
2527 * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
2528 * Testcase: (while :; do :; done) + ^Z should background.
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002529 * Same goes for SIGTERM, SIGHUP, SIGINT.
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002530 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002531 unsigned sig;
2532 unsigned mask;
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002533
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002534 if (!G.traps && !(G.non_DFL_mask & SPECIAL_INTERACTIVE_SIGS))
2535 return;
2536
2537 /* Stupid. It can be done with *single* &= op, but we can't use
2538 * the fact that G.blocked_set is implemented as a bitmask... */
2539 mask = (SPECIAL_INTERACTIVE_SIGS >> 1);
2540 sig = 1;
2541 while (1) {
2542 if (mask & 1)
2543 sigdelset(&G.blocked_set, sig);
2544 mask >>= 1;
2545 if (!mask)
2546 break;
2547 sig++;
2548 }
2549
2550 G.non_DFL_mask &= ~SPECIAL_INTERACTIVE_SIGS;
2551 mask = G.non_DFL_mask;
2552 if (G.traps) for (sig = 0; sig < NSIG; sig++, mask >>= 1) {
2553 if (!G.traps[sig])
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002554 continue;
2555 free(G.traps[sig]);
2556 G.traps[sig] = NULL;
2557 /* There is no signal for 0 (EXIT) */
2558 if (sig == 0)
2559 continue;
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002560 /* There was a trap handler, we are removing it.
2561 * But if sig still has non-DFL handling,
2562 * we should not unblock it. */
2563 if (mask & 1)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002564 continue;
2565 sigdelset(&G.blocked_set, sig);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002566 }
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002567 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002568}
2569
2570#else /* !BB_MMU */
2571
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002572static void re_execute_shell(char ***to_free, const char *s,
2573 char *g_argv0, char **g_argv,
2574 char **builtin_argv) NORETURN;
2575static void re_execute_shell(char ***to_free, const char *s,
2576 char *g_argv0, char **g_argv,
2577 char **builtin_argv)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002578{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002579 char param_buf[sizeof("-$%x:%x:%x:%x:%x") + sizeof(unsigned) * 2];
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002580 char *heredoc_argv[4];
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002581 struct variable *cur;
Denis Vlasenkobc569742009-04-12 20:35:19 +00002582#if ENABLE_HUSH_FUNCTIONS
2583 struct function *funcp;
2584#endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002585 char **argv, **pp;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002586 unsigned cnt;
2587
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002588 if (!g_argv0) { /* heredoc */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002589 argv = heredoc_argv;
2590 argv[0] = (char *) G.argv0_for_re_execing;
2591 argv[1] = (char *) "-<";
2592 argv[2] = (char *) s;
2593 argv[3] = NULL;
Denis Vlasenkof50caac2009-04-09 01:40:15 +00002594 pp = &argv[3]; /* used as pointer to empty environment */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002595 goto do_exec;
2596 }
2597
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002598 cnt = 0;
2599 pp = builtin_argv;
2600 if (pp) while (*pp++)
2601 cnt++;
2602
2603 sprintf(param_buf, "-$%x:%x:%x:%x" IF_HUSH_LOOPS(":%x")
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002604 , (unsigned) G.root_pid
2605 , (unsigned) G.last_bg_pid
2606 , (unsigned) G.last_exitcode
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002607 , cnt
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002608 IF_HUSH_LOOPS(, G.depth_of_loop)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002609 );
Denis Vlasenkobc569742009-04-12 20:35:19 +00002610 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<depth> <vars...> <funcs...>
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002611 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002612 */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002613 cnt += 6;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002614 for (cur = G.top_var; cur; cur = cur->next) {
2615 if (!cur->flg_export || cur->flg_read_only)
2616 cnt += 2;
2617 }
Denis Vlasenkobc569742009-04-12 20:35:19 +00002618#if ENABLE_HUSH_FUNCTIONS
2619 for (funcp = G.top_func; funcp; funcp = funcp->next)
2620 cnt += 3;
2621#endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002622 pp = g_argv;
2623 while (*pp++)
2624 cnt++;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002625 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002626 *pp++ = (char *) G.argv0_for_re_execing;
2627 *pp++ = param_buf;
2628 for (cur = G.top_var; cur; cur = cur->next) {
2629 if (cur->varstr == hush_version_str)
2630 continue;
2631 if (cur->flg_read_only) {
2632 *pp++ = (char *) "-R";
2633 *pp++ = cur->varstr;
2634 } else if (!cur->flg_export) {
2635 *pp++ = (char *) "-V";
2636 *pp++ = cur->varstr;
2637 }
2638 }
Denis Vlasenkobc569742009-04-12 20:35:19 +00002639#if ENABLE_HUSH_FUNCTIONS
2640 for (funcp = G.top_func; funcp; funcp = funcp->next) {
2641 *pp++ = (char *) "-F";
2642 *pp++ = funcp->name;
2643 *pp++ = funcp->body_as_string;
2644 }
2645#endif
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002646 /* We can pass activated traps here. Say, -Tnn:trap_string
2647 *
2648 * However, POSIX says that subshells reset signals with traps
2649 * to SIG_DFL.
2650 * I tested bash-3.2 and it not only does that with true subshells
2651 * of the form ( list ), but with any forked children shells.
2652 * I set trap "echo W" WINCH; and then tried:
2653 *
2654 * { echo 1; sleep 20; echo 2; } &
2655 * while true; do echo 1; sleep 20; echo 2; break; done &
2656 * true | { echo 1; sleep 20; echo 2; } | cat
2657 *
2658 * In all these cases sending SIGWINCH to the child shell
2659 * did not run the trap. If I add trap "echo V" WINCH;
2660 * _inside_ group (just before echo 1), it works.
2661 *
2662 * I conclude it means we don't need to pass active traps here.
2663 * exec syscall below resets them to SIG_DFL for us.
2664 */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002665 *pp++ = (char *) "-c";
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002666 *pp++ = (char *) s;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002667 if (builtin_argv) {
2668 while (*++builtin_argv)
2669 *pp++ = *builtin_argv;
2670 *pp++ = (char *) "";
2671 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002672 *pp++ = g_argv0;
2673 while (*g_argv)
2674 *pp++ = *g_argv++;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002675 /* *pp = NULL; - is already there */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002676 pp = environ;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002677
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002678 do_exec:
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002679 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
2680 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002681 execve(bb_busybox_exec_path, argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002682 /* Fallback. Useful for init=/bin/hush usage etc */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002683 if (argv[0][0] == '/')
2684 execve(argv[0], argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002685 xfunc_error_retval = 127;
2686 bb_error_msg_and_die("can't re-execute the shell");
2687}
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002688#endif /* !BB_MMU */
2689
2690
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002691static void setup_heredoc(struct redir_struct *redir)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002692{
2693 struct fd_pair pair;
2694 pid_t pid;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002695 int len, written;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002696 /* the _body_ of heredoc (misleading field name) */
2697 const char *heredoc = redir->rd_filename;
2698 char *expanded;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002699#if !BB_MMU
2700 char **to_free;
2701#endif
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002702
2703 expanded = NULL;
2704 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
2705 expanded = expand_pseudo_dquoted(heredoc);
2706 if (expanded)
2707 heredoc = expanded;
2708 }
2709 len = strlen(heredoc);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002710
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002711 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002712 xpiped_pair(pair);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002713 xmove_fd(pair.rd, redir->rd_fd);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002714
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002715 /* Try writing without forking. Newer kernels have
2716 * dynamically growing pipes. Must use non-blocking write! */
2717 ndelay_on(pair.wr);
2718 while (1) {
2719 written = write(pair.wr, heredoc, len);
2720 if (written <= 0)
2721 break;
2722 len -= written;
2723 if (len == 0) {
2724 close(pair.wr);
Denis Vlasenko1943aec2009-04-09 14:15:57 +00002725 free(expanded);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002726 return;
2727 }
2728 heredoc += written;
2729 }
2730 ndelay_off(pair.wr);
2731
2732 /* Okay, pipe buffer was not big enough */
2733 /* Note: we must not create a stray child (bastard? :)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002734 * for the unsuspecting parent process. Child creates a grandchild
2735 * and exits before parent execs the process which consumes heredoc
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002736 * (that exec happens after we return from this function) */
Denis Vlasenko41ddecd2009-04-15 21:58:14 +00002737#if !BB_MMU
2738 to_free = NULL;
2739#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002740 pid = vfork();
2741 if (pid < 0)
2742 bb_perror_msg_and_die("vfork");
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002743 if (pid == 0) {
2744 /* child */
Denis Vlasenko41ddecd2009-04-15 21:58:14 +00002745 disable_restore_tty_pgrp_on_exit();
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002746 pid = BB_MMU ? fork() : vfork();
2747 if (pid < 0)
2748 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
2749 if (pid != 0)
2750 _exit(0);
2751 /* grandchild */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002752 close(redir->rd_fd); /* read side of the pipe */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002753#if BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002754 full_write(pair.wr, heredoc, len); /* may loop or block */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002755 _exit(0);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002756#else
2757 /* Delegate blocking writes to another process */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002758 xmove_fd(pair.wr, STDOUT_FILENO);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002759 re_execute_shell(&to_free, heredoc, NULL, NULL, NULL);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002760#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002761 }
2762 /* parent */
Denys Vlasenko8d7be232009-05-25 16:38:32 +02002763#if ENABLE_HUSH_FAST
2764 G.count_SIGCHLD++;
2765//bb_error_msg("[%d] fork in setup_heredoc: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
2766#endif
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002767 enable_restore_tty_pgrp_on_exit();
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002768#if !BB_MMU
2769 free(to_free);
2770#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002771 close(pair.wr);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002772 free(expanded);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002773 wait(NULL); /* wait till child has died */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002774}
2775
Eric Andersen25f27032001-04-26 23:22:31 +00002776/* squirrel != NULL means we squirrel away copies of stdin, stdout,
2777 * and stderr if they are redirected. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002778static int setup_redirects(struct command *prog, int squirrel[])
Eric Andersen25f27032001-04-26 23:22:31 +00002779{
2780 int openfd, mode;
2781 struct redir_struct *redir;
2782
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002783 for (redir = prog->redirects; redir; redir = redir->next) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002784 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002785 /* rd_fd<<HERE case */
Denys Vlasenko1dd6cf82009-05-02 14:17:31 +02002786 if (squirrel && redir->rd_fd < 3
2787 && squirrel[redir->rd_fd] < 0
2788 ) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002789 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002790 }
2791 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
2792 * of the heredoc */
2793 debug_printf_parse("set heredoc '%s'\n",
2794 redir->rd_filename);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002795 setup_heredoc(redir);
Eric Andersen817e73c2001-06-06 17:56:09 +00002796 continue;
2797 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002798
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002799 if (redir->rd_dup == REDIRFD_TO_FILE) {
2800 /* rd_fd<*>file case (<*> is <,>,>>,<>) */
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002801 char *p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002802 if (redir->rd_filename == NULL) {
2803 /* Something went wrong in the parse.
2804 * Pretend it didn't happen */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002805 bb_error_msg("bug in redirect parse");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002806 continue;
2807 }
Denis Vlasenko55789c62008-06-18 16:30:42 +00002808 mode = redir_table[redir->rd_type].mode;
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002809 p = expand_string_to_string(redir->rd_filename);
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002810 openfd = open_or_warn(p, mode);
2811 free(p);
Eric Andersen25f27032001-04-26 23:22:31 +00002812 if (openfd < 0) {
2813 /* this could get lost if stderr has been redirected, but
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002814 * bash and ash both lose it as well (though zsh doesn't!) */
2815//what the above comment tries to say?
Eric Andersen25f27032001-04-26 23:22:31 +00002816 return 1;
2817 }
2818 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002819 /* rd_fd<*>rd_dup or rd_fd<*>- cases */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002820 openfd = redir->rd_dup;
Eric Andersen25f27032001-04-26 23:22:31 +00002821 }
2822
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002823 if (openfd != redir->rd_fd) {
Denys Vlasenko1dd6cf82009-05-02 14:17:31 +02002824 if (squirrel && redir->rd_fd < 3
2825 && squirrel[redir->rd_fd] < 0
2826 ) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002827 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Eric Andersen25f27032001-04-26 23:22:31 +00002828 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002829 if (openfd == REDIRFD_CLOSE) {
2830 /* "n>-" means "close me" */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002831 close(redir->rd_fd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002832 } else {
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002833 xdup2(openfd, redir->rd_fd);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002834 if (redir->rd_dup == REDIRFD_TO_FILE)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002835 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002836 }
Eric Andersen25f27032001-04-26 23:22:31 +00002837 }
2838 }
2839 return 0;
2840}
2841
2842static void restore_redirects(int squirrel[])
2843{
2844 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002845 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002846 fd = squirrel[i];
2847 if (fd != -1) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002848 /* We simply die on error */
2849 xmove_fd(fd, i);
Eric Andersen25f27032001-04-26 23:22:31 +00002850 }
2851 }
2852}
2853
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002854
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002855static void free_pipe_list(struct pipe *head);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002856
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002857/* Return code is the exit status of the pipe */
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002858static void free_pipe(struct pipe *pi)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002859{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002860 char **p;
2861 struct command *command;
2862 struct redir_struct *r, *rnext;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002863 int a, i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002864
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002865 if (pi->stopped_cmds > 0) /* why? */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002866 return;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002867 debug_printf_clean("run pipe: (pid %d)\n", getpid());
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002868 for (i = 0; i < pi->num_cmds; i++) {
2869 command = &pi->cmds[i];
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002870 debug_printf_clean(" command %d:\n", i);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002871 if (command->argv) {
2872 for (a = 0, p = command->argv; *p; a++, p++) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002873 debug_printf_clean(" argv[%d] = %s\n", a, *p);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002874 }
2875 free_strings(command->argv);
2876 command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002877 }
2878 /* not "else if": on syntax error, we may have both! */
2879 if (command->group) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002880 debug_printf_clean(" begin group (grp_type:%d)\n",
2881 command->grp_type);
2882 free_pipe_list(command->group);
2883 debug_printf_clean(" end group\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002884 command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002885 }
Denis Vlasenkoed055212009-04-11 10:37:10 +00002886 /* else is crucial here.
2887 * If group != NULL, child_func is meaningless */
2888#if ENABLE_HUSH_FUNCTIONS
2889 else if (command->child_func) {
2890 debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
2891 command->child_func->parent_cmd = NULL;
2892 }
2893#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002894#if !BB_MMU
2895 free(command->group_as_string);
2896 command->group_as_string = NULL;
2897#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002898 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002899 debug_printf_clean(" redirect %d%s",
2900 r->rd_fd, redir_table[r->rd_type].descrip);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002901 /* guard against the case >$FOO, where foo is unset or blank */
2902 if (r->rd_filename) {
2903 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
2904 free(r->rd_filename);
2905 r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002906 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002907 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002908 rnext = r->next;
2909 free(r);
2910 }
2911 command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002912 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002913 free(pi->cmds); /* children are an array, they get freed all at once */
2914 pi->cmds = NULL;
2915#if ENABLE_HUSH_JOB
2916 free(pi->cmdtext);
2917 pi->cmdtext = NULL;
2918#endif
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002919}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002920
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002921static void free_pipe_list(struct pipe *head)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002922{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002923 struct pipe *pi, *next;
2924
2925 for (pi = head; pi; pi = next) {
2926#if HAS_KEYWORDS
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002927 debug_printf_clean(" pipe reserved word %d\n", pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002928#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002929 free_pipe(pi);
2930 debug_printf_clean("pipe followup code %d\n", pi->followup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002931 next = pi->next;
2932 /*pi->next = NULL;*/
2933 free(pi);
2934 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002935}
2936
2937
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002938static int run_list(struct pipe *pi);
Denis Vlasenkobc569742009-04-12 20:35:19 +00002939#if BB_MMU
2940#define parse_stream(pstring, input, end_trigger) \
2941 parse_stream(input, end_trigger)
2942#endif
2943static struct pipe *parse_stream(char **pstring,
2944 struct in_str *input,
2945 int end_trigger);
2946static void parse_and_run_string(const char *s);
2947
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002948
Mike Frysinger93cadc22009-05-27 17:06:25 -04002949static char *find_in_path(const char *arg)
2950{
2951 char *ret = NULL;
2952 const char *PATH = get_local_var_value("PATH");
2953
2954 if (!PATH)
2955 return NULL;
2956
2957 while (1) {
2958 const char *end = strchrnul(PATH, ':');
2959 int sz = end - PATH; /* must be int! */
2960
2961 free(ret);
2962 if (sz != 0) {
2963 ret = xasprintf("%.*s/%s", sz, PATH, arg);
2964 } else {
2965 /* We have xxx::yyyy in $PATH,
2966 * it means "use current dir" */
2967 ret = xstrdup(arg);
2968 }
2969 if (access(ret, F_OK) == 0)
2970 break;
2971
2972 if (*end == '\0') {
2973 free(ret);
2974 return NULL;
2975 }
2976 PATH = end + 1;
2977 }
2978
2979 return ret;
2980}
2981
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002982static const struct built_in_command* find_builtin_helper(const char *name,
2983 const struct built_in_command *x,
2984 const struct built_in_command *end)
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002985{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002986 while (x != end) {
2987 if (strcmp(name, x->cmd) != 0) {
2988 x++;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002989 continue;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002990 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002991 debug_printf_exec("found builtin '%s'\n", name);
2992 return x;
2993 }
2994 return NULL;
2995}
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002996static const struct built_in_command* find_builtin1(const char *name)
2997{
2998 return find_builtin_helper(name, bltins1, &bltins1[ARRAY_SIZE(bltins1)]);
2999}
3000static const struct built_in_command* find_builtin(const char *name)
3001{
3002 const struct built_in_command *x = find_builtin1(name);
3003 if (x)
3004 return x;
3005 return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]);
3006}
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003007
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003008#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003009static const struct function *find_function(const char *name)
3010{
3011 const struct function *funcp = G.top_func;
3012 while (funcp) {
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003013 if (strcmp(name, funcp->name) == 0) {
3014 break;
3015 }
3016 funcp = funcp->next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003017 }
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003018 if (funcp)
3019 debug_printf_exec("found function '%s'\n", name);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003020 return funcp;
3021}
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00003022
Denis Vlasenkobc569742009-04-12 20:35:19 +00003023/* Note: takes ownership on name ptr */
3024static struct function *new_function(char *name)
3025{
3026 struct function *funcp;
3027 struct function **funcpp = &G.top_func;
3028
3029 while ((funcp = *funcpp) != NULL) {
3030 struct command *cmd;
3031
3032 if (strcmp(funcp->name, name) != 0) {
3033 funcpp = &funcp->next;
3034 continue;
3035 }
3036
3037 cmd = funcp->parent_cmd;
3038 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
3039 if (!cmd) {
3040 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
3041 free(funcp->name);
3042 /* Note: if !funcp->body, do not free body_as_string!
3043 * This is a special case of "-F name body" function:
3044 * body_as_string was not malloced! */
3045 if (funcp->body) {
3046 free_pipe_list(funcp->body);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003047# if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00003048 free(funcp->body_as_string);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003049# endif
Denis Vlasenkobc569742009-04-12 20:35:19 +00003050 }
3051 } else {
3052 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
3053 cmd->argv[0] = funcp->name;
3054 cmd->group = funcp->body;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003055# if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00003056 cmd->group_as_string = funcp->body_as_string;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003057# endif
Denis Vlasenkobc569742009-04-12 20:35:19 +00003058 }
3059 goto skip;
3060 }
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003061 debug_printf_exec("remembering new function '%s'\n", name);
Denis Vlasenkobc569742009-04-12 20:35:19 +00003062 funcp = *funcpp = xzalloc(sizeof(*funcp));
3063 /*funcp->next = NULL;*/
3064 skip:
3065 funcp->name = name;
3066 return funcp;
3067}
3068
Denis Vlasenko40e84372009-04-18 11:23:38 +00003069static void unset_func(const char *name)
3070{
3071 struct function *funcp;
3072 struct function **funcpp = &G.top_func;
3073
3074 while ((funcp = *funcpp) != NULL) {
3075 if (strcmp(funcp->name, name) == 0) {
3076 *funcpp = funcp->next;
root62452022009-05-04 12:00:19 +02003077 /* funcp is unlinked now, deleting it.
3078 * Note: if !funcp->body, the function was created by
3079 * "-F name body", do not free ->body_as_string
3080 * and ->name as they were not malloced. */
Denis Vlasenko40e84372009-04-18 11:23:38 +00003081 if (funcp->body) {
3082 free_pipe_list(funcp->body);
root62452022009-05-04 12:00:19 +02003083 free(funcp->name);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003084# if !BB_MMU
Denis Vlasenko40e84372009-04-18 11:23:38 +00003085 free(funcp->body_as_string);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003086# endif
Denis Vlasenko40e84372009-04-18 11:23:38 +00003087 }
3088 free(funcp);
3089 break;
3090 }
Denis Vlasenko73010672009-04-18 11:25:18 +00003091 funcpp = &funcp->next;
Denis Vlasenko40e84372009-04-18 11:23:38 +00003092 }
3093}
3094
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003095# if BB_MMU
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003096#define exec_function(nommu_save, funcp, argv) \
3097 exec_function(funcp, argv)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003098# endif
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003099static void exec_function(nommu_save_t *nommu_save,
3100 const struct function *funcp,
3101 char **argv) NORETURN;
3102static void exec_function(nommu_save_t *nommu_save,
3103 const struct function *funcp,
3104 char **argv)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003105{
3106# if BB_MMU
3107 int n = 1;
3108
3109 argv[0] = G.global_argv[0];
3110 G.global_argv = argv;
3111 while (*++argv)
3112 n++;
3113 G.global_argc = n;
Denis Vlasenkobc569742009-04-12 20:35:19 +00003114 /* On MMU, funcp->body is always non-NULL */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003115 n = run_list(funcp->body);
3116 fflush(NULL);
3117 _exit(n);
3118# else
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003119 re_execute_shell(&nommu_save->argv_from_re_execing,
3120 funcp->body_as_string,
3121 G.global_argv[0],
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003122 argv + 1,
3123 NULL);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00003124# endif
3125}
3126
3127static int run_function(const struct function *funcp, char **argv)
3128{
Denis Vlasenko270b1c32009-04-17 18:54:50 +00003129 int rc;
3130 save_arg_t sv;
Mike Frysinger885b6f22009-04-18 21:04:25 +00003131 smallint sv_flg;
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00003132
Denis Vlasenko270b1c32009-04-17 18:54:50 +00003133 save_and_replace_G_args(&sv, argv);
Denys Vlasenko295fef82009-06-03 12:47:26 +02003134
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00003135 /* "we are in function, ok to use return" */
3136 sv_flg = G.flag_return_in_progress;
3137 G.flag_return_in_progress = -1;
Denys Vlasenko295fef82009-06-03 12:47:26 +02003138#if ENABLE_HUSH_LOCAL
3139 G.func_nest_level++;
3140#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00003141
Denis Vlasenkobc569742009-04-12 20:35:19 +00003142 /* On MMU, funcp->body is always non-NULL */
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003143# if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00003144 if (!funcp->body) {
3145 /* Function defined by -F */
3146 parse_and_run_string(funcp->body_as_string);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00003147 rc = G.last_exitcode;
Denis Vlasenkobc569742009-04-12 20:35:19 +00003148 } else
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003149# endif
Denis Vlasenkobc569742009-04-12 20:35:19 +00003150 {
Denis Vlasenko270b1c32009-04-17 18:54:50 +00003151 rc = run_list(funcp->body);
Denis Vlasenkobc569742009-04-12 20:35:19 +00003152 }
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00003153
Denys Vlasenko295fef82009-06-03 12:47:26 +02003154#if ENABLE_HUSH_LOCAL
3155 {
3156 struct variable *var;
3157 struct variable **var_pp;
3158
3159 var_pp = &G.top_var;
3160 while ((var = *var_pp) != NULL) {
3161 if (var->func_nest_level < G.func_nest_level) {
3162 var_pp = &var->next;
3163 continue;
3164 }
3165 /* Unexport */
3166 if (var->flg_export)
3167 bb_unsetenv(var->varstr);
3168 /* Remove from global list */
3169 *var_pp = var->next;
3170 /* Free */
3171 if (!var->max_len)
3172 free(var->varstr);
3173 free(var);
3174 }
3175 G.func_nest_level--;
3176 }
3177#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00003178 G.flag_return_in_progress = sv_flg;
Denys Vlasenko295fef82009-06-03 12:47:26 +02003179
Denis Vlasenko270b1c32009-04-17 18:54:50 +00003180 restore_G_args(&sv, argv);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00003181
Denis Vlasenko270b1c32009-04-17 18:54:50 +00003182 return rc;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003183}
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003184#endif /* ENABLE_HUSH_FUNCTIONS */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003185
3186
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003187# if BB_MMU
3188#define exec_builtin(nommu_save, x, argv) \
3189 exec_builtin(x, argv)
3190# else
3191#define exec_builtin(nommu_save, x, argv) \
3192 exec_builtin(nommu_save, argv)
3193# endif
3194static void exec_builtin(nommu_save_t *nommu_save,
3195 const struct built_in_command *x,
3196 char **argv) NORETURN;
3197static void exec_builtin(nommu_save_t *nommu_save,
3198 const struct built_in_command *x,
3199 char **argv)
3200{
3201# if BB_MMU
3202 int rcode = x->function(argv);
3203 fflush(NULL);
3204 _exit(rcode);
3205# else
3206 /* On NOMMU, we must never block!
3207 * Example: { sleep 99 | read line; } & echo Ok
3208 */
3209 re_execute_shell(&nommu_save->argv_from_re_execing,
3210 argv[0],
3211 G.global_argv[0],
3212 G.global_argv + 1,
3213 argv);
3214# endif
3215}
3216
3217
Denis Vlasenkocc90f442009-04-08 16:40:34 +00003218#if BB_MMU
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003219#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
3220 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
3221#define pseudo_exec(nommu_save, command, argv_expanded) \
3222 pseudo_exec(command, argv_expanded)
3223#endif
3224
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003225/* Called after [v]fork() in run_pipe, or from builtin_exec.
Denis Vlasenko8412d792007-10-01 09:59:47 +00003226 * Never returns.
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003227 * Don't exit() here. If you don't exec, use _exit instead.
Eric Andersen94ac2442001-05-22 19:05:18 +00003228 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00003229 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003230static void pseudo_exec_argv(nommu_save_t *nommu_save,
3231 char **argv, int assignment_cnt,
3232 char **argv_expanded) NORETURN;
3233static void pseudo_exec_argv(nommu_save_t *nommu_save,
3234 char **argv, int assignment_cnt,
3235 char **argv_expanded)
Eric Andersen25f27032001-04-26 23:22:31 +00003236{
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003237 char **new_env;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00003238
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003239 /* Case when we are here: ... | var=val | ... */
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003240 if (!argv[assignment_cnt])
Denis Vlasenko1359da62007-04-21 23:27:30 +00003241 _exit(EXIT_SUCCESS);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00003242
Denis Vlasenko9504e442008-10-29 01:19:15 +00003243 new_env = expand_assignments(argv, assignment_cnt);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003244#if BB_MMU
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003245 set_vars_and_save_old(new_env);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003246 free(new_env); /* optional */
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003247 /* we can also destroy set_vars_and_save_old's return value,
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003248 * to save memory */
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003249#else
3250 nommu_save->new_env = new_env;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003251 nommu_save->old_vars = set_vars_and_save_old(new_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003252#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003253 if (argv_expanded) {
3254 argv = argv_expanded;
3255 } else {
Denis Vlasenko37181682009-04-03 03:19:15 +00003256 argv = expand_strvec_to_strvec(argv + assignment_cnt);
Denis Vlasenko76d50412008-06-10 16:19:39 +00003257#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003258 nommu_save->argv = argv;
Denis Vlasenko76d50412008-06-10 16:19:39 +00003259#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003260 }
Denis Vlasenko764d59d2007-05-14 16:23:23 +00003261
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003262#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
3263 if (strchr(argv[0], '/') != NULL)
3264 goto skip;
3265#endif
3266
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003267 /* Check if the command matches any of the builtins.
Denis Vlasenko1359da62007-04-21 23:27:30 +00003268 * Depending on context, this might be redundant. But it's
3269 * easier to waste a few CPU cycles than it is to figure out
3270 * if this is one of those cases.
3271 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003272 {
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003273 /* On NOMMU, it is more expensive to re-execute shell
3274 * just in order to run echo or test builtin.
3275 * It's better to skip it here and run corresponding
3276 * non-builtin later. */
3277 const struct built_in_command *x;
3278 x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003279 if (x) {
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003280 exec_builtin(nommu_save, x, argv);
Eric Andersen94ac2442001-05-22 19:05:18 +00003281 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00003282 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003283#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003284 /* Check if the command matches any functions */
3285 {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003286 const struct function *funcp = find_function(argv[0]);
3287 if (funcp) {
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003288 exec_function(nommu_save, funcp, argv);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003289 }
3290 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003291#endif
Eric Andersen78a7c992001-05-15 16:30:25 +00003292
Denis Vlasenko80d14be2007-04-10 23:03:30 +00003293#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003294 /* Check if the command matches any busybox applets */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003295 {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00003296 int a = find_applet_by_name(argv[0]);
3297 if (a >= 0) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003298# if BB_MMU /* see above why on NOMMU it is not allowed */
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00003299 if (APPLET_IS_NOEXEC(a)) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003300 debug_printf_exec("running applet '%s'\n", argv[0]);
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00003301 run_applet_no_and_exit(a, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003302 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003303# endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003304 /* Re-exec ourselves */
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003305 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003306 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
3307 execv(bb_busybox_exec_path, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003308 /* If they called chroot or otherwise made the binary no longer
3309 * executable, fall through */
3310 }
3311 }
Eric Andersenaac75e52001-04-30 18:18:45 +00003312#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003313
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003314#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003315 skip:
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003316#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003317 debug_printf_exec("execing '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003318 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenko1359da62007-04-21 23:27:30 +00003319 execvp(argv[0], argv);
Denis Vlasenkof9d4fc32009-04-21 20:40:51 +00003320 bb_perror_msg("can't execute '%s'", argv[0]);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00003321 _exit(EXIT_FAILURE);
Denis Vlasenko1359da62007-04-21 23:27:30 +00003322}
3323
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003324/* Called after [v]fork() in run_pipe
Denis Vlasenko8412d792007-10-01 09:59:47 +00003325 */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003326static void pseudo_exec(nommu_save_t *nommu_save,
3327 struct command *command,
3328 char **argv_expanded) NORETURN;
3329static void pseudo_exec(nommu_save_t *nommu_save,
3330 struct command *command,
3331 char **argv_expanded)
Denis Vlasenko1359da62007-04-21 23:27:30 +00003332{
Denis Vlasenko552433b2009-04-04 19:29:21 +00003333 if (command->argv) {
3334 pseudo_exec_argv(nommu_save, command->argv,
3335 command->assignment_cnt, argv_expanded);
3336 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003337
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003338 if (command->group) {
Denis Vlasenko552433b2009-04-04 19:29:21 +00003339 /* Cases when we are here:
3340 * ( list )
3341 * { list } &
3342 * ... | ( list ) | ...
3343 * ... | { list } | ...
3344 */
3345#if BB_MMU
Denis Vlasenko3b492162007-12-24 14:26:57 +00003346 int rcode;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003347 debug_printf_exec("pseudo_exec: run_list\n");
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00003348 reset_traps_to_defaults();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003349 rcode = run_list(command->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00003350 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00003351 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00003352 _exit(rcode);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003353#else
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003354 re_execute_shell(&nommu_save->argv_from_re_execing,
3355 command->group_as_string,
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003356 G.global_argv[0],
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003357 G.global_argv + 1,
3358 NULL);
Denis Vlasenko8412d792007-10-01 09:59:47 +00003359#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003360 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003361
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003362 /* Case when we are here: ... | >file */
3363 debug_printf_exec("pseudo_exec'ed null command\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003364 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00003365}
3366
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003367#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003368static const char *get_cmdtext(struct pipe *pi)
3369{
3370 char **argv;
3371 char *p;
3372 int len;
3373
3374 /* This is subtle. ->cmdtext is created only on first backgrounding.
3375 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003376 * On subsequent bg argv is trashed, but we won't use it */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003377 if (pi->cmdtext)
3378 return pi->cmdtext;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003379 argv = pi->cmds[0].argv;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003380 if (!argv || !argv[0]) {
3381 pi->cmdtext = xzalloc(1);
3382 return pi->cmdtext;
3383 }
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003384
3385 len = 0;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003386 do {
3387 len += strlen(*argv) + 1;
3388 } while (*++argv);
3389 p = xmalloc(len);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00003390 pi->cmdtext = p;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003391 argv = pi->cmds[0].argv;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003392 do {
3393 len = strlen(*argv);
3394 memcpy(p, *argv, len);
3395 p += len;
3396 *p++ = ' ';
3397 } while (*++argv);
3398 p[-1] = '\0';
3399 return pi->cmdtext;
3400}
3401
Eric Andersenbafd94f2001-05-02 16:11:59 +00003402static void insert_bg_job(struct pipe *pi)
3403{
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003404 struct pipe *job, **jobp;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003405 int i;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003406
3407 /* Linear search for the ID of the job to use */
3408 pi->jobid = 1;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003409 for (job = G.job_list; job; job = job->next)
3410 if (job->jobid >= pi->jobid)
3411 pi->jobid = job->jobid + 1;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003412
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003413 /* Add job to the list of running jobs */
3414 jobp = &G.job_list;
3415 while ((job = *jobp) != NULL)
3416 jobp = &job->next;
3417 job = *jobp = xmalloc(sizeof(*job));
Eric Andersenbafd94f2001-05-02 16:11:59 +00003418
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003419 *job = *pi; /* physical copy */
3420 job->next = NULL;
3421 job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
3422 /* Cannot copy entire pi->cmds[] vector! This causes double frees */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003423 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003424 job->cmds[i].pid = pi->cmds[i].pid;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003425 /* all other fields are not used and stay zero */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003426 }
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003427 job->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00003428
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003429 if (G_interactive_fd)
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003430 printf("[%d] %d %s\n", job->jobid, job->cmds[0].pid, job->cmdtext);
3431 /* Last command's pid goes to $! */
3432 G.last_bg_pid = job->cmds[job->num_cmds - 1].pid;
3433 G.last_jobid = job->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003434}
3435
Eric Andersenbafd94f2001-05-02 16:11:59 +00003436static void remove_bg_job(struct pipe *pi)
3437{
3438 struct pipe *prev_pipe;
3439
Denis Vlasenko87a86552008-07-29 19:43:10 +00003440 if (pi == G.job_list) {
3441 G.job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003442 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003443 prev_pipe = G.job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003444 while (prev_pipe->next != pi)
3445 prev_pipe = prev_pipe->next;
3446 prev_pipe->next = pi->next;
3447 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00003448 if (G.job_list)
3449 G.last_jobid = G.job_list->jobid;
Eric Andersen028b65b2001-06-28 01:10:11 +00003450 else
Denis Vlasenko87a86552008-07-29 19:43:10 +00003451 G.last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00003452}
Eric Andersen028b65b2001-06-28 01:10:11 +00003453
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003454/* Remove a backgrounded job */
Denis Vlasenko1359da62007-04-21 23:27:30 +00003455static void delete_finished_bg_job(struct pipe *pi)
3456{
3457 remove_bg_job(pi);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003458 pi->stopped_cmds = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003459 free_pipe(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00003460 free(pi);
3461}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003462#endif /* JOB */
Eric Andersenbafd94f2001-05-02 16:11:59 +00003463
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003464/* Check to see if any processes have exited -- if they
3465 * have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00003466static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00003467{
Eric Andersenc798b072001-06-22 06:23:03 +00003468 int attributes;
3469 int status;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003470#if ENABLE_HUSH_JOB
Eric Andersenbafd94f2001-05-02 16:11:59 +00003471 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003472#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00003473 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003474 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003475
Denis Vlasenkod5762932009-03-31 11:22:57 +00003476 debug_printf_jobs("checkjobs %p\n", fg_pipe);
3477
Eric Andersenc798b072001-06-22 06:23:03 +00003478 attributes = WUNTRACED;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003479 if (fg_pipe == NULL)
Eric Andersenc798b072001-06-22 06:23:03 +00003480 attributes |= WNOHANG;
Eric Andersenc798b072001-06-22 06:23:03 +00003481
Denys Vlasenkoe2df5f42009-05-26 14:34:10 +02003482 errno = 0;
3483#if ENABLE_HUSH_FAST
3484 if (G.handled_SIGCHLD == G.count_SIGCHLD) {
3485//bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p",
3486//getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe);
Denys Vlasenko68759ed2009-05-26 14:39:41 +02003487 /* There was neither fork nor SIGCHLD since last waitpid */
3488 /* Avoid doing waitpid syscall if possible */
Denys Vlasenkoe2df5f42009-05-26 14:34:10 +02003489 if (!G.we_have_children) {
3490 errno = ECHILD;
3491 return -1;
3492 }
3493 if (fg_pipe == NULL) { /* is WNOHANG set? */
3494 /* We have children, but they did not exit
3495 * or stop yet (we saw no SIGCHLD) */
3496 return 0;
3497 }
3498 /* else: !WNOHANG, waitpid will block, can't short-circuit */
3499 }
3500#endif
3501
Denis Vlasenko1359da62007-04-21 23:27:30 +00003502/* Do we do this right?
3503 * bash-3.00# sleep 20 | false
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003504 * <ctrl-Z pressed>
Denis Vlasenko1359da62007-04-21 23:27:30 +00003505 * [3]+ Stopped sleep 20 | false
3506 * bash-3.00# echo $?
3507 * 1 <========== bg pipe is not fully done, but exitcode is already known!
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003508 * [hush 1.14.0: yes we do it right]
Denis Vlasenko1359da62007-04-21 23:27:30 +00003509 */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003510 wait_more:
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003511 while (1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003512 int i;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003513 int dead;
3514
Denys Vlasenko8d7be232009-05-25 16:38:32 +02003515#if ENABLE_HUSH_FAST
3516 i = G.count_SIGCHLD;
3517#endif
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003518 childpid = waitpid(-1, &status, attributes);
3519 if (childpid <= 0) {
3520 if (childpid && errno != ECHILD)
3521 bb_perror_msg("waitpid");
Denys Vlasenko8d7be232009-05-25 16:38:32 +02003522#if ENABLE_HUSH_FAST
3523 else { /* Until next SIGCHLD, waitpid's are useless */
Denys Vlasenkoe2df5f42009-05-26 14:34:10 +02003524 G.we_have_children = (childpid == 0);
Denys Vlasenko8d7be232009-05-25 16:38:32 +02003525 G.handled_SIGCHLD = i;
3526//bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
3527 }
3528#endif
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003529 break;
3530 }
3531 dead = WIFEXITED(status) || WIFSIGNALED(status);
3532
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003533#if DEBUG_JOBS
Denis Vlasenko1359da62007-04-21 23:27:30 +00003534 if (WIFSTOPPED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003535 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003536 childpid, WSTOPSIG(status), WEXITSTATUS(status));
3537 if (WIFSIGNALED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003538 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003539 childpid, WTERMSIG(status), WEXITSTATUS(status));
3540 if (WIFEXITED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003541 debug_printf_jobs("pid %d exited, exitcode %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003542 childpid, WEXITSTATUS(status));
3543#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003544 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00003545 if (fg_pipe) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003546 for (i = 0; i < fg_pipe->num_cmds; i++) {
3547 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
3548 if (fg_pipe->cmds[i].pid != childpid)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003549 continue;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003550 if (dead) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003551 fg_pipe->cmds[i].pid = 0;
3552 fg_pipe->alive_cmds--;
3553 if (i == fg_pipe->num_cmds - 1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003554 /* last process gives overall exitstatus */
Denis Vlasenko38e626d2009-04-18 12:58:19 +00003555 /* Note: is WIFSIGNALED, WEXITSTATUS = sig + 128 */
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003556 rcode = WEXITSTATUS(status);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003557 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
Denis Vlasenko40e84372009-04-18 11:23:38 +00003558 /* bash prints killing signal's name for *last*
3559 * process in pipe (prints just newline for SIGINT).
Denis Vlasenko38e626d2009-04-18 12:58:19 +00003560 * Mimic this. Example: "sleep 5" + ^\
Denis Vlasenko40e84372009-04-18 11:23:38 +00003561 */
3562 if (WIFSIGNALED(status)) {
Denis Vlasenko38e626d2009-04-18 12:58:19 +00003563 int sig = WTERMSIG(status);
3564 printf("%s\n", sig == SIGINT ? "" : get_signame(sig));
Denis Vlasenko40e84372009-04-18 11:23:38 +00003565 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00003566 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003567 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003568 fg_pipe->cmds[i].is_stopped = 1;
3569 fg_pipe->stopped_cmds++;
Eric Andersenc798b072001-06-22 06:23:03 +00003570 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003571 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
3572 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
3573 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003574 /* All processes in fg pipe have exited or stopped */
3575/* Note: *non-interactive* bash does not continue if all processes in fg pipe
3576 * are stopped. Testcase: "cat | cat" in a script (not on command line!)
3577 * and "killall -STOP cat" */
3578 if (G_interactive_fd) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003579#if ENABLE_HUSH_JOB
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003580 if (fg_pipe->alive_cmds)
3581 insert_bg_job(fg_pipe);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003582#endif
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003583 return rcode;
3584 }
Denys Vlasenko6f226242009-06-03 14:37:30 +02003585 if (!fg_pipe->alive_cmds)
3586 return rcode;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003587 }
3588 /* There are still running processes in the fg pipe */
3589 goto wait_more; /* do waitpid again */
Eric Andersenc798b072001-06-22 06:23:03 +00003590 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003591 /* it wasnt fg_pipe, look for process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00003592 }
3593
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003594#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003595 /* We asked to wait for bg or orphaned children */
3596 /* No need to remember exitcode in this case */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003597 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003598 for (i = 0; i < pi->num_cmds; i++) {
3599 if (pi->cmds[i].pid == childpid)
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003600 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00003601 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00003602 }
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003603 /* Happens when shell is used as init process (init=/bin/sh) */
3604 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003605 continue; /* do waitpid again */
Eric Andersenaeb44c42001-05-22 20:29:00 +00003606
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003607 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00003608 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00003609 /* child exited */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003610 pi->cmds[i].pid = 0;
3611 pi->alive_cmds--;
3612 if (!pi->alive_cmds) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003613 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00003614 printf(JOB_STATUS_FORMAT, pi->jobid,
3615 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00003616 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00003617 }
3618 } else {
3619 /* child stopped */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003620 pi->cmds[i].is_stopped = 1;
3621 pi->stopped_cmds++;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003622 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003623#endif
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003624 } /* while (waitpid succeeds)... */
Eric Andersenbafd94f2001-05-02 16:11:59 +00003625
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003626 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00003627}
3628
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003629#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +00003630static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
3631{
3632 pid_t p;
3633 int rcode = checkjobs(fg_pipe);
Mike Frysinger38478a62009-05-20 04:48:06 -04003634 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00003635 /* Job finished, move the shell to the foreground */
3636 p = getpgrp(); /* our process group id */
3637 debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p);
3638 tcsetpgrp(G_interactive_fd, p);
3639 }
Denis Vlasenko52881e92007-04-21 13:42:52 +00003640 return rcode;
3641}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003642#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00003643
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003644/* Start all the jobs, but don't wait for anything to finish.
3645 * See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00003646 *
Denis Vlasenko552433b2009-04-04 19:29:21 +00003647 * Return code is normally -1, when the caller has to wait for children
Eric Andersen25f27032001-04-26 23:22:31 +00003648 * to finish to determine the exit status of the pipe. If the pipe
3649 * is a simple builtin command, however, the action is done by the
Denis Vlasenko05743d72008-02-10 12:10:08 +00003650 * time run_pipe returns, and the exit code is provided as the
Eric Andersen25f27032001-04-26 23:22:31 +00003651 * return value.
3652 *
Denis Vlasenko170435c2007-05-23 13:01:10 +00003653 * Returns -1 only if started some children. IOW: we have to
3654 * mask out retvals of builtins etc with 0xff!
Denis Vlasenko552433b2009-04-04 19:29:21 +00003655 *
3656 * The only case when we do not need to [v]fork is when the pipe
3657 * is single, non-backgrounded, non-subshell command. Examples:
3658 * cmd ; ... { list } ; ...
3659 * cmd && ... { list } && ...
3660 * cmd || ... { list } || ...
3661 * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
3662 * or (if SH_STANDALONE) an applet, and we can run the { list }
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003663 * with run_list. If it isn't one of these, we fork and exec cmd.
Denis Vlasenko552433b2009-04-04 19:29:21 +00003664 *
3665 * Cases when we must fork:
3666 * non-single: cmd | cmd
3667 * backgrounded: cmd & { list } &
3668 * subshell: ( list ) [&]
Eric Andersen25f27032001-04-26 23:22:31 +00003669 */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003670static int run_pipe(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003671{
Denis Vlasenko552433b2009-04-04 19:29:21 +00003672 static const char *const null_ptr = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003673 int i;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003674 int nextin;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003675 struct command *command;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003676 char **argv_expanded;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003677 char **argv;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003678 char *p;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003679 /* it is not always needed, but we aim to smaller code */
3680 int squirrel[] = { -1, -1, -1 };
3681 int rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003682
Denis Vlasenko552433b2009-04-04 19:29:21 +00003683 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003684 debug_enter();
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003685
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00003686 IF_HUSH_JOB(pi->pgrp = -1;)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003687 pi->stopped_cmds = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003688 command = &(pi->cmds[0]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003689 argv_expanded = NULL;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003690
Denis Vlasenko552433b2009-04-04 19:29:21 +00003691 if (pi->num_cmds != 1
3692 || pi->followup == PIPE_BG
3693 || command->grp_type == GRP_SUBSHELL
3694 ) {
3695 goto must_fork;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003696 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003697
Denis Vlasenko552433b2009-04-04 19:29:21 +00003698 pi->alive_cmds = 1;
3699
3700 debug_printf_exec(": group:%p argv:'%s'\n",
3701 command->group, command->argv ? command->argv[0] : "NONE");
3702
3703 if (command->group) {
3704#if ENABLE_HUSH_FUNCTIONS
3705 if (command->grp_type == GRP_FUNCTION) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003706 /* "executing" func () { list } */
3707 struct function *funcp;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003708
Denis Vlasenkobc569742009-04-12 20:35:19 +00003709 funcp = new_function(command->argv[0]);
3710 /* funcp->name is already set to argv[0] */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003711 funcp->body = command->group;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003712# if !BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003713 funcp->body_as_string = command->group_as_string;
3714 command->group_as_string = NULL;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003715# endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003716 command->group = NULL;
3717 command->argv[0] = NULL;
Denis Vlasenkoed055212009-04-11 10:37:10 +00003718 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
3719 funcp->parent_cmd = command;
3720 command->child_func = funcp;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003721
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003722 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
3723 debug_leave();
Denis Vlasenko552433b2009-04-04 19:29:21 +00003724 return EXIT_SUCCESS;
3725 }
3726#endif
3727 /* { list } */
3728 debug_printf("non-subshell group\n");
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003729 rcode = 1; /* exitcode if redir failed */
3730 if (setup_redirects(command, squirrel) == 0) {
3731 debug_printf_exec(": run_list\n");
3732 rcode = run_list(command->group) & 0xff;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003733 }
Eric Andersen04407e52001-06-07 16:42:05 +00003734 restore_redirects(squirrel);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003735 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003736 debug_leave();
3737 debug_printf_exec("run_pipe: return %d\n", rcode);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003738 return rcode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003739 }
3740
Denis Vlasenko552433b2009-04-04 19:29:21 +00003741 argv = command->argv ? command->argv : (char **) &null_ptr;
3742 {
3743 const struct built_in_command *x;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003744#if ENABLE_HUSH_FUNCTIONS
3745 const struct function *funcp;
3746#else
3747 enum { funcp = 0 };
3748#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003749 char **new_env = NULL;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003750 struct variable *old_vars = NULL;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003751
Denis Vlasenko552433b2009-04-04 19:29:21 +00003752 if (argv[command->assignment_cnt] == NULL) {
3753 /* Assignments, but no command */
3754 /* Ensure redirects take effect. Try "a=t >file" */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003755 rcode = setup_redirects(command, squirrel);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003756 restore_redirects(squirrel);
3757 /* Set shell variables */
3758 while (*argv) {
3759 p = expand_string_to_string(*argv);
3760 debug_printf_exec("set shell var:'%s'->'%s'\n",
3761 *argv, p);
Denys Vlasenko295fef82009-06-03 12:47:26 +02003762 set_local_var(p, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003763 argv++;
Eric Andersen78a7c992001-05-15 16:30:25 +00003764 }
Denis Vlasenko552433b2009-04-04 19:29:21 +00003765 /* Do we need to flag set_local_var() errors?
3766 * "assignment to readonly var" and "putenv error"
3767 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003768 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003769 debug_leave();
3770 debug_printf_exec("run_pipe: return %d\n", rcode);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003771 return rcode;
Eric Andersen78a7c992001-05-15 16:30:25 +00003772 }
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003773
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003774 /* Expand the rest into (possibly) many strings each */
Denis Vlasenko552433b2009-04-04 19:29:21 +00003775 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003776
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003777 x = find_builtin(argv_expanded[0]);
3778#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003779 funcp = NULL;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003780 if (!x)
3781 funcp = find_function(argv_expanded[0]);
3782#endif
3783 if (x || funcp) {
3784 if (!funcp) {
3785 if (x->function == builtin_exec && argv_expanded[1] == NULL) {
3786 debug_printf("exec with redirects only\n");
3787 rcode = setup_redirects(command, NULL);
3788 goto clean_up_and_ret1;
3789 }
Eric Andersen25f27032001-04-26 23:22:31 +00003790 }
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003791 /* setup_redirects acts on file descriptors, not FILEs.
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003792 * This is perfect for work that comes after exec().
3793 * Is it really safe for inline use? Experimentally,
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003794 * things seem to work. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003795 rcode = setup_redirects(command, squirrel);
3796 if (rcode == 0) {
3797 new_env = expand_assignments(argv, command->assignment_cnt);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003798 old_vars = set_vars_and_save_old(new_env);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003799 if (!funcp) {
3800 debug_printf_exec(": builtin '%s' '%s'...\n",
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003801 x->cmd, argv_expanded[1]);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003802 rcode = x->function(argv_expanded) & 0xff;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00003803 fflush(NULL);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003804 }
3805#if ENABLE_HUSH_FUNCTIONS
3806 else {
Denys Vlasenko295fef82009-06-03 12:47:26 +02003807# if ENABLE_HUSH_LOCAL
3808 struct variable **sv;
3809 sv = G.shadowed_vars_pp;
3810 G.shadowed_vars_pp = &old_vars;
3811# endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003812 debug_printf_exec(": function '%s' '%s'...\n",
3813 funcp->name, argv_expanded[1]);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00003814 rcode = run_function(funcp, argv_expanded) & 0xff;
Denys Vlasenko295fef82009-06-03 12:47:26 +02003815# if ENABLE_HUSH_LOCAL
3816 G.shadowed_vars_pp = sv;
3817# endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003818 }
3819#endif
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003820 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003821#if ENABLE_FEATURE_SH_STANDALONE
3822 clean_up_and_ret:
3823#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003824 restore_redirects(squirrel);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003825 unset_vars(new_env);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003826 add_vars(old_vars);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003827 clean_up_and_ret1:
3828 free(argv_expanded);
3829 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003830 debug_leave();
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003831 debug_printf_exec("run_pipe return %d\n", rcode);
3832 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003833 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003834
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003835#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003836 i = find_applet_by_name(argv_expanded[0]);
3837 if (i >= 0 && APPLET_IS_NOFORK(i)) {
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003838 rcode = setup_redirects(command, squirrel);
3839 if (rcode == 0) {
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003840 new_env = expand_assignments(argv, command->assignment_cnt);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003841 old_vars = set_vars_and_save_old(new_env);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003842 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003843 argv_expanded[0], argv_expanded[1]);
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00003844 rcode = run_nofork_applet(i, argv_expanded);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003845 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003846 goto clean_up_and_ret;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003847 }
3848#endif
Denis Vlasenko552433b2009-04-04 19:29:21 +00003849 /* It is neither builtin nor applet. We must fork. */
Eric Andersen25f27032001-04-26 23:22:31 +00003850 }
3851
Denis Vlasenko552433b2009-04-04 19:29:21 +00003852 must_fork:
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003853 /* NB: argv_expanded may already be created, and that
3854 * might include `cmd` runs! Do not rerun it! We *must*
3855 * use argv_expanded if it's non-NULL */
3856
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003857 /* Going to fork a child per each pipe member */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003858 pi->alive_cmds = 0;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003859 nextin = 0;
3860
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003861 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003862 struct fd_pair pipefds;
Denis Vlasenko76d50412008-06-10 16:19:39 +00003863#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003864 volatile nommu_save_t nommu_save;
3865 nommu_save.new_env = NULL;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003866 nommu_save.old_vars = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003867 nommu_save.argv = NULL;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003868 nommu_save.argv_from_re_execing = NULL;
Denis Vlasenko76d50412008-06-10 16:19:39 +00003869#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003870 command = &(pi->cmds[i]);
3871 if (command->argv) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003872 debug_printf_exec(": pipe member '%s' '%s'...\n",
3873 command->argv[0], command->argv[1]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003874 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003875 debug_printf_exec(": pipe member with no argv\n");
Denis Vlasenko552433b2009-04-04 19:29:21 +00003876 }
Eric Andersen25f27032001-04-26 23:22:31 +00003877
3878 /* pipes are inserted between pairs of commands */
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003879 pipefds.rd = 0;
3880 pipefds.wr = 1;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003881 if ((i + 1) < pi->num_cmds)
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003882 xpiped_pair(pipefds);
Eric Andersen25f27032001-04-26 23:22:31 +00003883
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003884 command->pid = BB_MMU ? fork() : vfork();
3885 if (!command->pid) { /* child */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003886#if ENABLE_HUSH_JOB
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003887 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkod5762932009-03-31 11:22:57 +00003888
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003889 /* Every child adds itself to new process group
Denis Vlasenko05743d72008-02-10 12:10:08 +00003890 * with pgid == pid_of_first_child_in_pipe */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003891 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00003892 pid_t pgrp;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003893 pgrp = pi->pgrp;
3894 if (pgrp < 0) /* true for 1st process only */
3895 pgrp = getpid();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00003896 if (setpgid(0, pgrp) == 0
3897 && pi->followup != PIPE_BG
Mike Frysinger38478a62009-05-20 04:48:06 -04003898 && G_saved_tty_pgrp /* we have ctty */
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00003899 ) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003900 /* We do it in *every* child, not just first,
3901 * to avoid races */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003902 tcsetpgrp(G_interactive_fd, pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003903 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003904 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003905#endif
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003906 if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
3907 /* 1st cmd in backgrounded pipe
3908 * should have its stdin /dev/null'ed */
3909 close(0);
3910 if (open(bb_dev_null, O_RDONLY))
3911 xopen("/", O_RDONLY);
3912 } else {
3913 xmove_fd(nextin, 0);
3914 }
3915 xmove_fd(pipefds.wr, 1);
3916 if (pipefds.rd > 1)
3917 close(pipefds.rd);
Eric Andersen25f27032001-04-26 23:22:31 +00003918 /* Like bash, explicit redirects override pipes,
3919 * and the pipe fd is available for dup'ing. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003920 if (setup_redirects(command, NULL))
3921 _exit(1);
Eric Andersen52a97ca2001-06-22 06:49:26 +00003922
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003923 /* Restore default handlers just prior to exec */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00003924 /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
3925
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003926 /* Stores to nommu_save list of env vars putenv'ed
3927 * (NOMMU, on MMU we don't need that) */
3928 /* cast away volatility... */
3929 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003930 /* pseudo_exec() does not return */
Eric Andersen25f27032001-04-26 23:22:31 +00003931 }
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00003932
Denis Vlasenkof9375282009-04-05 19:13:39 +00003933 /* parent or error */
Denys Vlasenko8d7be232009-05-25 16:38:32 +02003934#if ENABLE_HUSH_FAST
3935 G.count_SIGCHLD++;
3936//bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
3937#endif
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003938 enable_restore_tty_pgrp_on_exit();
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003939#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003940 /* Clean up after vforked child */
3941 free(nommu_save.argv);
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003942 free(nommu_save.argv_from_re_execing);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003943 unset_vars(nommu_save.new_env);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003944 add_vars(nommu_save.old_vars);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003945#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003946 free(argv_expanded);
3947 argv_expanded = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003948 if (command->pid < 0) { /* [v]fork failed */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003949 /* Clearly indicate, was it fork or vfork */
Denis Vlasenko82604e92008-07-01 15:59:42 +00003950 bb_perror_msg(BB_MMU ? "fork" : "vfork");
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003951 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003952 pi->alive_cmds++;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003953#if ENABLE_HUSH_JOB
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003954 /* Second and next children need to know pid of first one */
3955 if (pi->pgrp < 0)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003956 pi->pgrp = command->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003957#endif
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003958 }
Eric Andersen25f27032001-04-26 23:22:31 +00003959
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003960 if (i)
3961 close(nextin);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003962 if ((i + 1) < pi->num_cmds)
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003963 close(pipefds.wr);
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003964 /* Pass read (output) pipe end to next iteration */
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003965 nextin = pipefds.rd;
Eric Andersen25f27032001-04-26 23:22:31 +00003966 }
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003967
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003968 if (!pi->alive_cmds) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003969 debug_leave();
Denis Vlasenko05743d72008-02-10 12:10:08 +00003970 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
3971 return 1;
3972 }
3973
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003974 debug_leave();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003975 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
Eric Andersen25f27032001-04-26 23:22:31 +00003976 return -1;
3977}
3978
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003979#ifndef debug_print_tree
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003980static void debug_print_tree(struct pipe *pi, int lvl)
3981{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003982 static const char *const PIPE[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003983 [PIPE_SEQ] = "SEQ",
3984 [PIPE_AND] = "AND",
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003985 [PIPE_OR ] = "OR" ,
3986 [PIPE_BG ] = "BG" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003987 };
3988 static const char *RES[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003989 [RES_NONE ] = "NONE" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003990#if ENABLE_HUSH_IF
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003991 [RES_IF ] = "IF" ,
3992 [RES_THEN ] = "THEN" ,
3993 [RES_ELIF ] = "ELIF" ,
3994 [RES_ELSE ] = "ELSE" ,
3995 [RES_FI ] = "FI" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003996#endif
3997#if ENABLE_HUSH_LOOPS
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003998 [RES_FOR ] = "FOR" ,
3999 [RES_WHILE] = "WHILE",
4000 [RES_UNTIL] = "UNTIL",
4001 [RES_DO ] = "DO" ,
4002 [RES_DONE ] = "DONE" ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +00004003#endif
4004#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004005 [RES_IN ] = "IN" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00004006#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004007#if ENABLE_HUSH_CASE
4008 [RES_CASE ] = "CASE" ,
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004009 [RES_CASE_IN ] = "CASE_IN" ,
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004010 [RES_MATCH] = "MATCH",
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004011 [RES_CASE_BODY] = "CASE_BODY",
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004012 [RES_ESAC ] = "ESAC" ,
4013#endif
Denis Vlasenko06810332007-05-21 23:30:54 +00004014 [RES_XXXX ] = "XXXX" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004015 [RES_SNTX ] = "SNTX" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004016 };
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004017 static const char *const GRPTYPE[] = {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004018 "{}",
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00004019 "()",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004020#if ENABLE_HUSH_FUNCTIONS
4021 "func()",
4022#endif
4023 };
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004024
4025 int pin, prn;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00004026
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004027 pin = 0;
4028 while (pi) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00004029 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
4030 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004031 prn = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004032 while (prn < pi->num_cmds) {
4033 struct command *command = &pi->cmds[prn];
4034 char **argv = command->argv;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00004035
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004036 fprintf(stderr, "%*s cmd %d assignment_cnt:%d",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004037 lvl*2, "", prn,
4038 command->assignment_cnt);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004039 if (command->group) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004040 fprintf(stderr, " group %s: (argv=%p)\n",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004041 GRPTYPE[command->grp_type],
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00004042 argv);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004043 debug_print_tree(command->group, lvl+1);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004044 prn++;
4045 continue;
4046 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004047 if (argv) while (*argv) {
4048 fprintf(stderr, " '%s'", *argv);
4049 argv++;
Denis Vlasenko4b924f32007-05-30 00:29:55 +00004050 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004051 fprintf(stderr, "\n");
4052 prn++;
4053 }
4054 pi = pi->next;
4055 pin++;
4056 }
4057}
4058#endif
4059
Denis Vlasenkoc666f712007-05-16 22:18:54 +00004060/* NB: called by pseudo_exec, and therefore must not modify any
4061 * global data until exec/_exit (we can be a child after vfork!) */
Denis Vlasenko05743d72008-02-10 12:10:08 +00004062static int run_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00004063{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004064#if ENABLE_HUSH_CASE
4065 char *case_word = NULL;
4066#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004067#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004068 struct pipe *loop_top = NULL;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004069 char **for_lcur = NULL;
4070 char **for_list = NULL;
Denis Vlasenko06810332007-05-21 23:30:54 +00004071#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004072 smallint last_followup;
4073 smalluint rcode;
Denis Vlasenkod91afa32008-07-29 11:10:01 +00004074#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004075 smalluint cond_code = 0;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004076#else
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004077 enum { cond_code = 0 };
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004078#endif
Denis Vlasenko0e151382009-04-06 18:40:31 +00004079#if HAS_KEYWORDS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004080 smallint rword; /* enum reserved_style */
4081 smallint last_rword; /* ditto */
Denis Vlasenko0e151382009-04-06 18:40:31 +00004082#endif
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00004083
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00004084 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004085 debug_enter();
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00004086
Denis Vlasenko06810332007-05-21 23:30:54 +00004087#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004088 /* Check syntax for "for" */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00004089 for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
4090 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004091 continue;
4092 /* current word is FOR or IN (BOLD in comments below) */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00004093 if (cpipe->next == NULL) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004094 syntax_error("malformed for");
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004095 debug_leave();
Denis Vlasenko87a86552008-07-29 19:43:10 +00004096 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004097 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004098 }
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004099 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00004100 if (cpipe->next->res_word == RES_DO)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004101 continue;
4102 /* next word is not "do". It must be "in" then ("FOR v in ...") */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00004103 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
4104 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004105 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004106 syntax_error("malformed for");
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004107 debug_leave();
Denis Vlasenko87a86552008-07-29 19:43:10 +00004108 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004109 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00004110 }
4111 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004112#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004113
Denis Vlasenkobe709c22008-07-28 00:01:16 +00004114 /* Past this point, all code paths should jump to ret: label
Denis Vlasenko12acec52008-07-28 15:15:59 +00004115 * in order to return, no direct "return" statements please.
4116 * This helps to ensure that no memory is leaked. */
Denis Vlasenkobe709c22008-07-28 00:01:16 +00004117
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004118#if ENABLE_HUSH_JOB
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00004119 G.run_list_level++;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004120#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004121
Denis Vlasenko0e151382009-04-06 18:40:31 +00004122#if HAS_KEYWORDS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004123 rword = RES_NONE;
4124 last_rword = RES_XXXX;
Denis Vlasenko0e151382009-04-06 18:40:31 +00004125#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004126 last_followup = PIPE_SEQ;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004127 rcode = G.last_exitcode;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004128
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004129 /* Go through list of pipes, (maybe) executing them. */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00004130 for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00004131 if (G.flag_SIGINT)
4132 break;
4133
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004134 IF_HAS_KEYWORDS(rword = pi->res_word;)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004135 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
4136 rword, cond_code, last_rword);
Denis Vlasenko06810332007-05-21 23:30:54 +00004137#if ENABLE_HUSH_LOOPS
Denis Vlasenko4554b722008-07-29 13:36:09 +00004138 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
Denis Vlasenko87a86552008-07-29 19:43:10 +00004139 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
Denis Vlasenko4554b722008-07-29 13:36:09 +00004140 ) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004141 /* start of a loop: remember where loop starts */
4142 loop_top = pi;
Denis Vlasenko87a86552008-07-29 19:43:10 +00004143 G.depth_of_loop++;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00004144 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004145#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004146 /* Still in the same "if...", "then..." or "do..." branch? */
Denis Vlasenko0e151382009-04-06 18:40:31 +00004147 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004148 if ((rcode == 0 && last_followup == PIPE_OR)
4149 || (rcode != 0 && last_followup == PIPE_AND)
4150 ) {
4151 /* It is "<true> || CMD" or "<false> && CMD"
4152 * and we should not execute CMD */
4153 debug_printf_exec("skipped cmd because of || or &&\n");
4154 last_followup = pi->followup;
4155 continue;
4156 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00004157 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004158 last_followup = pi->followup;
Denis Vlasenko0e151382009-04-06 18:40:31 +00004159 IF_HAS_KEYWORDS(last_rword = rword;)
Denis Vlasenko06810332007-05-21 23:30:54 +00004160#if ENABLE_HUSH_IF
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004161 if (cond_code) {
4162 if (rword == RES_THEN) {
Denis Vlasenko0e151382009-04-06 18:40:31 +00004163 /* if false; then ... fi has exitcode 0! */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004164 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004165 /* "if <false> THEN cmd": skip cmd */
4166 continue;
4167 }
4168 } else {
4169 if (rword == RES_ELSE || rword == RES_ELIF) {
4170 /* "if <true> then ... ELSE/ELIF cmd":
4171 * skip cmd and all following ones */
4172 break;
4173 }
4174 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004175#endif
4176#if ENABLE_HUSH_LOOPS
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004177 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00004178 if (!for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00004179 /* first loop through for */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00004180
4181 static const char encoded_dollar_at[] ALIGN1 = {
4182 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
4183 }; /* encoded representation of "$@" */
4184 static const char *const encoded_dollar_at_argv[] = {
4185 encoded_dollar_at, NULL
4186 }; /* argv list with one element: "$@" */
4187 char **vals;
4188
4189 vals = (char**)encoded_dollar_at_argv;
Denis Vlasenkocf22c892008-07-28 15:17:44 +00004190 if (pi->next->res_word == RES_IN) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00004191 /* if no variable values after "in" we skip "for" */
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004192 if (!pi->next->cmds[0].argv) {
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004193 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004194 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004195 break;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004196 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004197 vals = pi->next->cmds[0].argv;
Denis Vlasenkoff182a32008-07-05 20:29:59 +00004198 } /* else: "for var; do..." -> assume "$@" list */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00004199 /* create list of variable values */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00004200 debug_print_strings("for_list made from", vals);
4201 for_list = expand_strvec_to_strvec(vals);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00004202 for_lcur = for_list;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004203 debug_print_strings("for_list", for_list);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004204 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00004205 if (!*for_lcur) {
Denis Vlasenko12acec52008-07-28 15:15:59 +00004206 /* "for" loop is over, clean up */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00004207 free(for_list);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00004208 for_list = NULL;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00004209 for_lcur = NULL;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004210 break;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00004211 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004212 /* Insert next value from for_lcur */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004213 /* note: *for_lcur already has quotes removed, $var expanded, etc */
Denys Vlasenko295fef82009-06-03 12:47:26 +02004214 set_local_var(xasprintf("%s=%s", pi->cmds[0].argv[0], *for_lcur++), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02004215 continue;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004216 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004217 if (rword == RES_IN) {
4218 continue; /* "for v IN list;..." - "in" has no cmds anyway */
4219 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004220 if (rword == RES_DONE) {
4221 continue; /* "done" has no cmds too */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004222 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004223#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004224#if ENABLE_HUSH_CASE
4225 if (rword == RES_CASE) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004226 case_word = expand_strvec_to_string(pi->cmds->argv);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004227 continue;
4228 }
4229 if (rword == RES_MATCH) {
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004230 char **argv;
4231
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004232 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
4233 break;
4234 /* all prev words didn't match, does this one match? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004235 argv = pi->cmds->argv;
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004236 while (*argv) {
4237 char *pattern = expand_string_to_string(*argv);
4238 /* TODO: which FNM_xxx flags to use? */
4239 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
4240 free(pattern);
4241 if (cond_code == 0) { /* match! we will execute this branch */
4242 free(case_word); /* make future "word)" stop */
4243 case_word = NULL;
4244 break;
4245 }
4246 argv++;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004247 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004248 continue;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004249 }
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004250 if (rword == RES_CASE_BODY) { /* inside of a case branch */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004251 if (cond_code != 0)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004252 continue; /* not matched yet, skip this pipe */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004253 }
4254#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00004255 /* Just pressing <enter> in shell should check for jobs.
4256 * OTOH, in non-interactive shell this is useless
4257 * and only leads to extra job checks */
4258 if (pi->num_cmds == 0) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004259 if (G_interactive_fd)
Denis Vlasenkod5762932009-03-31 11:22:57 +00004260 goto check_jobs_and_continue;
4261 continue;
4262 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004263
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004264 /* After analyzing all keywords and conditions, we decided
Denis Vlasenkod5762932009-03-31 11:22:57 +00004265 * to execute this pipe. NB: have to do checkjobs(NULL)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004266 * after run_pipe to collect any background children,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004267 * even if list execution is to be stopped. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004268 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004269 {
4270 int r;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00004271#if ENABLE_HUSH_LOOPS
Denis Vlasenko87a86552008-07-29 19:43:10 +00004272 G.flag_break_continue = 0;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00004273#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004274 rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
4275 if (r != -1) {
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00004276 /* We ran a builtin, function, or group.
4277 * rcode is already known
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004278 * and we don't need to wait for anything. */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004279 G.last_exitcode = rcode;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004280 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004281 check_and_run_traps(0);
Denis Vlasenkodadfb492008-07-29 10:16:05 +00004282#if ENABLE_HUSH_LOOPS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004283 /* Was it "break" or "continue"? */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004284 if (G.flag_break_continue) {
4285 smallint fbc = G.flag_break_continue;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004286 /* We might fall into outer *loop*,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004287 * don't want to break it too */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004288 if (loop_top) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00004289 G.depth_break_continue--;
4290 if (G.depth_break_continue == 0)
4291 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00004292 /* else: e.g. "continue 2" should *break* once, *then* continue */
4293 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004294 if (G.depth_break_continue != 0 || fbc == BC_BREAK)
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00004295 goto check_jobs_and_break;
4296 /* "continue": simulate end of loop */
4297 rword = RES_DONE;
4298 continue;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004299 }
Denis Vlasenkodadfb492008-07-29 10:16:05 +00004300#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00004301#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko673e9452009-05-27 14:39:35 +02004302 if (G.flag_return_in_progress == 1) {
4303 /* same as "goto check_jobs_and_break" */
4304 checkjobs(NULL);
4305 break;
4306 }
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00004307#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004308 } else if (pi->followup == PIPE_BG) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004309 /* What does bash do with attempts to background builtins? */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004310 /* even bash 3.2 doesn't do that well with nested bg:
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004311 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
4312 * I'm NOT treating inner &'s as jobs */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004313 check_and_run_traps(0);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004314#if ENABLE_HUSH_JOB
Denis Vlasenko87a86552008-07-29 19:43:10 +00004315 if (G.run_list_level == 1)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004316 insert_bg_job(pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00004317#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004318 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004319 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004320 } else {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004321#if ENABLE_HUSH_JOB
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004322 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004323 /* Waits for completion, then fg's main shell */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004324 rcode = checkjobs_and_fg_shell(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004325 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004326 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004327 } else
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004328#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004329 { /* This one just waits for completion */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004330 rcode = checkjobs(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004331 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004332 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004333 }
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004334 G.last_exitcode = rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00004335 }
4336 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004337
4338 /* Analyze how result affects subsequent commands */
Denis Vlasenko06810332007-05-21 23:30:54 +00004339#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00004340 if (rword == RES_IF || rword == RES_ELIF)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004341 cond_code = rcode;
Denis Vlasenko06810332007-05-21 23:30:54 +00004342#endif
4343#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004344 /* Beware of "while false; true; do ..."! */
4345 if (pi->next && pi->next->res_word == RES_DO) {
4346 if (rword == RES_WHILE) {
4347 if (rcode) {
4348 /* "while false; do...done" - exitcode 0 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004349 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004350 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
4351 goto check_jobs_and_break;
4352 }
Denis Vlasenko918a34b2008-07-28 23:17:31 +00004353 }
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004354 if (rword == RES_UNTIL) {
4355 if (!rcode) {
4356 debug_printf_exec(": until expr is true: breaking\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004357 check_jobs_and_break:
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004358 checkjobs(NULL);
4359 break;
4360 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004361 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004362 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004363#endif
Mike Frysinger8ec1c9d2009-03-29 00:45:26 +00004364
4365 check_jobs_and_continue:
Eric Andersen028b65b2001-06-28 01:10:11 +00004366 checkjobs(NULL);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004367 } /* for (pi) */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004368
4369#if ENABLE_HUSH_JOB
Denis Vlasenkod5762932009-03-31 11:22:57 +00004370 G.run_list_level--;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004371#endif
Denis Vlasenkobe709c22008-07-28 00:01:16 +00004372#if ENABLE_HUSH_LOOPS
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00004373 if (loop_top)
Denis Vlasenko87a86552008-07-29 19:43:10 +00004374 G.depth_of_loop--;
Denis Vlasenkobe709c22008-07-28 00:01:16 +00004375 free(for_list);
4376#endif
4377#if ENABLE_HUSH_CASE
4378 free(case_word);
4379#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004380 debug_leave();
4381 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00004382 return rcode;
4383}
4384
Eric Andersen25f27032001-04-26 23:22:31 +00004385/* Select which version we will use */
Denis Vlasenko05743d72008-02-10 12:10:08 +00004386static int run_and_free_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00004387{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004388 int rcode = 0;
Denis Vlasenko05743d72008-02-10 12:10:08 +00004389 debug_printf_exec("run_and_free_list entered\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00004390 if (!G.fake_mode) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004391 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
Denis Vlasenko05743d72008-02-10 12:10:08 +00004392 rcode = run_list(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004393 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004394 /* free_pipe_list has the side effect of clearing memory.
Denis Vlasenko05743d72008-02-10 12:10:08 +00004395 * In the long run that function can be merged with run_list,
Eric Andersen25f27032001-04-26 23:22:31 +00004396 * but doing that now would hobble the debugging effort. */
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004397 free_pipe_list(pi);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00004398 debug_printf_exec("run_and_free_list return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00004399 return rcode;
4400}
4401
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004402
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00004403static struct pipe *new_pipe(void)
4404{
Eric Andersen25f27032001-04-26 23:22:31 +00004405 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00004406 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004407 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004408 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00004409 return pi;
4410}
4411
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004412/* Command (member of a pipe) is complete, or we start a new pipe
4413 * if ctx->command is NULL.
4414 * No errors possible here.
4415 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004416static int done_command(struct parse_context *ctx)
4417{
4418 /* The command is really already in the pipe structure, so
4419 * advance the pipe counter and make a new, null command. */
4420 struct pipe *pi = ctx->pipe;
4421 struct command *command = ctx->command;
4422
4423 if (command) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004424 if (IS_NULL_CMD(command)) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004425 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004426 goto clear_and_ret;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004427 }
4428 pi->num_cmds++;
4429 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004430 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004431 } else {
4432 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
4433 }
4434
4435 /* Only real trickiness here is that the uncommitted
4436 * command structure is not counted in pi->num_cmds. */
4437 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004438 ctx->command = command = &pi->cmds[pi->num_cmds];
4439 clear_and_ret:
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004440 memset(command, 0, sizeof(*command));
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004441 return pi->num_cmds; /* used only for 0/nonzero check */
4442}
4443
4444static void done_pipe(struct parse_context *ctx, pipe_style type)
4445{
4446 int not_null;
4447
4448 debug_printf_parse("done_pipe entered, followup %d\n", type);
4449 /* Close previous command */
4450 not_null = done_command(ctx);
4451 ctx->pipe->followup = type;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004452#if HAS_KEYWORDS
4453 ctx->pipe->pi_inverted = ctx->ctx_inverted;
4454 ctx->ctx_inverted = 0;
4455 ctx->pipe->res_word = ctx->ctx_res_w;
4456#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004457
4458 /* Without this check, even just <enter> on command line generates
4459 * tree of three NOPs (!). Which is harmless but annoying.
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004460 * IOW: it is safe to do it unconditionally. */
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004461 if (not_null
Denis Vlasenko7f959372009-04-14 08:06:59 +00004462#if ENABLE_HUSH_IF
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004463 || ctx->ctx_res_w == RES_FI
Denis Vlasenko7f959372009-04-14 08:06:59 +00004464#endif
4465#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004466 || ctx->ctx_res_w == RES_DONE
4467 || ctx->ctx_res_w == RES_FOR
4468 || ctx->ctx_res_w == RES_IN
Denis Vlasenko7f959372009-04-14 08:06:59 +00004469#endif
4470#if ENABLE_HUSH_CASE
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004471 || ctx->ctx_res_w == RES_ESAC
4472#endif
4473 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004474 struct pipe *new_p;
4475 debug_printf_parse("done_pipe: adding new pipe: "
4476 "not_null:%d ctx->ctx_res_w:%d\n",
4477 not_null, ctx->ctx_res_w);
4478 new_p = new_pipe();
4479 ctx->pipe->next = new_p;
4480 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004481 /* RES_THEN, RES_DO etc are "sticky" -
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004482 * they remain set for pipes inside if/while.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004483 * This is used to control execution.
4484 * RES_FOR and RES_IN are NOT sticky (needed to support
4485 * cases where variable or value happens to match a keyword):
4486 */
4487#if ENABLE_HUSH_LOOPS
4488 if (ctx->ctx_res_w == RES_FOR
4489 || ctx->ctx_res_w == RES_IN)
4490 ctx->ctx_res_w = RES_NONE;
4491#endif
4492#if ENABLE_HUSH_CASE
4493 if (ctx->ctx_res_w == RES_MATCH)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004494 ctx->ctx_res_w = RES_CASE_BODY;
4495 if (ctx->ctx_res_w == RES_CASE)
4496 ctx->ctx_res_w = RES_CASE_IN;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004497#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004498 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004499 /* Create the memory for command, roughly:
4500 * ctx->pipe->cmds = new struct command;
4501 * ctx->command = &ctx->pipe->cmds[0];
4502 */
4503 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004504 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004505 }
4506 debug_printf_parse("done_pipe return\n");
4507}
4508
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004509static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00004510{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004511 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00004512 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004513 /* Create the memory for command, roughly:
4514 * ctx->pipe->cmds = new struct command;
4515 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004516 */
4517 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00004518}
4519
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004520/* If a reserved word is found and processed, parse context is modified
4521 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00004522 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004523#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004524struct reserved_combo {
4525 char literal[6];
4526 unsigned char res;
4527 unsigned char assignment_flag;
4528 int flag;
4529};
4530enum {
4531 FLAG_END = (1 << RES_NONE ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004532#if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004533 FLAG_IF = (1 << RES_IF ),
4534 FLAG_THEN = (1 << RES_THEN ),
4535 FLAG_ELIF = (1 << RES_ELIF ),
4536 FLAG_ELSE = (1 << RES_ELSE ),
4537 FLAG_FI = (1 << RES_FI ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004538#endif
4539#if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004540 FLAG_FOR = (1 << RES_FOR ),
4541 FLAG_WHILE = (1 << RES_WHILE),
4542 FLAG_UNTIL = (1 << RES_UNTIL),
4543 FLAG_DO = (1 << RES_DO ),
4544 FLAG_DONE = (1 << RES_DONE ),
4545 FLAG_IN = (1 << RES_IN ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004546#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004547#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004548 FLAG_MATCH = (1 << RES_MATCH),
4549 FLAG_ESAC = (1 << RES_ESAC ),
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004550#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004551 FLAG_START = (1 << RES_XXXX ),
4552};
4553
4554static const struct reserved_combo* match_reserved_word(o_string *word)
4555{
Eric Andersen25f27032001-04-26 23:22:31 +00004556 /* Mostly a list of accepted follow-up reserved words.
4557 * FLAG_END means we are done with the sequence, and are ready
4558 * to turn the compound list into a command.
4559 * FLAG_START means the word must start a new compound list.
4560 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004561 static const struct reserved_combo reserved_list[] = {
Denis Vlasenko06810332007-05-21 23:30:54 +00004562#if ENABLE_HUSH_IF
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004563 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
4564 { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
4565 { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
4566 { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN },
4567 { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI },
4568 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00004569#endif
4570#if ENABLE_HUSH_LOOPS
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004571 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
4572 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
4573 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
4574 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
4575 { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE },
4576 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004577#endif
4578#if ENABLE_HUSH_CASE
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004579 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
4580 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00004581#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004582 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004583 const struct reserved_combo *r;
4584
4585 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
4586 if (strcmp(word->data, r->literal) == 0)
4587 return r;
4588 }
4589 return NULL;
4590}
Denis Vlasenkobb929512009-04-16 10:59:40 +00004591/* Return 0: not a keyword, 1: keyword
4592 */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004593static int reserved_word(o_string *word, struct parse_context *ctx)
4594{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004595#if ENABLE_HUSH_CASE
4596 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004597 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004598 };
4599#endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004600 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004601
Denis Vlasenkobb929512009-04-16 10:59:40 +00004602 if (word->o_quoted)
4603 return 0;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004604 r = match_reserved_word(word);
4605 if (!r)
4606 return 0;
4607
4608 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004609#if ENABLE_HUSH_CASE
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004610 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE_IN) {
4611 /* "case word IN ..." - IN part starts first MATCH part */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004612 r = &reserved_match;
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004613 } else
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004614#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004615 if (r->flag == 0) { /* '!' */
4616 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004617 syntax_error("! ! command");
Denis Vlasenkobb929512009-04-16 10:59:40 +00004618 ctx->ctx_res_w = RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00004619 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004620 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004621 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004622 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004623 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004624 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004625
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004626 old = xmalloc(sizeof(*old));
4627 debug_printf_parse("push stack %p\n", old);
4628 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004629 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004630 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004631 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004632 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004633 ctx->ctx_res_w = RES_SNTX;
4634 return 1;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004635 } else {
4636 /* "{...} fi" is ok. "{...} if" is not
4637 * Example:
4638 * if { echo foo; } then { echo bar; } fi */
4639 if (ctx->command->group)
4640 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004641 }
Denis Vlasenkobb929512009-04-16 10:59:40 +00004642
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004643 ctx->ctx_res_w = r->res;
4644 ctx->old_flag = r->flag;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004645 word->o_assignment = r->assignment_flag;
4646
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004647 if (ctx->old_flag & FLAG_END) {
4648 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004649
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004650 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004651 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004652 old = ctx->stack;
4653 old->command->group = ctx->list_head;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004654 old->command->grp_type = GRP_NORMAL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004655#if !BB_MMU
4656 o_addstr(&old->as_string, ctx->as_string.data);
4657 o_free_unsafe(&ctx->as_string);
4658 old->command->group_as_string = xstrdup(old->as_string.data);
4659 debug_printf_parse("pop, remembering as:'%s'\n",
4660 old->command->group_as_string);
4661#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004662 *ctx = *old; /* physical copy */
4663 free(old);
4664 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004665 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004666}
Denis Vlasenko06810332007-05-21 23:30:54 +00004667#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004668
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004669/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004670 * Normal return is 0. Syntax errors return 1.
4671 * Note: on return, word is reset, but not o_free'd!
4672 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004673static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00004674{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004675 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00004676
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004677 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004678 if (word->length == 0 && word->o_quoted == 0) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004679 debug_printf_parse("done_word return 0: true null, ignored\n");
4680 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00004681 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004682
Eric Andersen25f27032001-04-26 23:22:31 +00004683 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004684 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
4685 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004686 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4687 * "2.7 Redirection
4688 * ...the word that follows the redirection operator
4689 * shall be subjected to tilde expansion, parameter expansion,
4690 * command substitution, arithmetic expansion, and quote
4691 * removal. Pathname expansion shall not be performed
4692 * on the word by a non-interactive shell; an interactive
4693 * shell may perform it, but shall do so only when
4694 * the expansion would result in one word."
4695 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004696 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004697 /* Cater for >\file case:
4698 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
4699 * Same with heredocs:
4700 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
4701 */
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02004702 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC) {
4703 unbackslash(ctx->pending_redirect->rd_filename);
4704 /* Is it <<"HEREDOC"? */
4705 if (word->o_quoted) {
4706 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
4707 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004708 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004709 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004710 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00004711 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004712 /* If this word wasn't an assignment, next ones definitely
4713 * can't be assignments. Even if they look like ones. */
4714 if (word->o_assignment != DEFINITELY_ASSIGNMENT
4715 && word->o_assignment != WORD_IS_KEYWORD
4716 ) {
4717 word->o_assignment = NOT_ASSIGNMENT;
4718 } else {
4719 if (word->o_assignment == DEFINITELY_ASSIGNMENT)
4720 command->assignment_cnt++;
4721 word->o_assignment = MAYBE_ASSIGNMENT;
4722 }
4723
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004724#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004725# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00004726 if (ctx->ctx_dsemicolon
4727 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
4728 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00004729 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004730 /* ctx->ctx_res_w = RES_MATCH; */
4731 ctx->ctx_dsemicolon = 0;
4732 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004733# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004734 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004735# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004736 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
4737 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004738# endif
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004739# if ENABLE_HUSH_CASE
4740 && ctx->ctx_res_w != RES_CASE
4741# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004742 ) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004743 debug_printf_parse("checking '%s' for reserved-ness\n", word->data);
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004744 if (reserved_word(word, ctx)) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004745 o_reset_to_empty_unquoted(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004746 debug_printf_parse("done_word return %d\n",
4747 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004748 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004749 }
Eric Andersen25f27032001-04-26 23:22:31 +00004750 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004751#endif
Denis Vlasenkobb929512009-04-16 10:59:40 +00004752 if (command->group) {
4753 /* "{ echo foo; } echo bar" - bad */
4754 syntax_error_at(word->data);
4755 debug_printf_parse("done_word return 1: syntax error, "
4756 "groups and arglists don't mix\n");
4757 return 1;
4758 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004759 if (word->o_quoted /* word had "xx" or 'xx' at least as part of it. */
Denis Vlasenko55789c62008-06-18 16:30:42 +00004760 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
4761 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004762 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004763 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004764 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00004765 char *p = word->data;
4766 while (p[0] == SPECIAL_VAR_SYMBOL
4767 && (p[1] & 0x7f) == '@'
4768 && p[2] == SPECIAL_VAR_SYMBOL
4769 ) {
4770 p += 3;
4771 }
4772 if (p == word->data || p[0] != '\0') {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004773 /* saw no "$@", or not only "$@" but some
4774 * real text is there too */
4775 /* insert "empty variable" reference, this makes
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00004776 * e.g. "", $empty"" etc to not disappear */
4777 o_addchr(word, SPECIAL_VAR_SYMBOL);
4778 o_addchr(word, SPECIAL_VAR_SYMBOL);
4779 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00004780 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004781 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004782 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004783 }
Eric Andersen25f27032001-04-26 23:22:31 +00004784
Denis Vlasenko06810332007-05-21 23:30:54 +00004785#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004786 if (ctx->ctx_res_w == RES_FOR) {
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004787 if (word->o_quoted
4788 || !is_well_formed_var_name(command->argv[0], '\0')
4789 ) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004790 /* bash says just "not a valid identifier" */
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004791 syntax_error("not a valid identifier in for");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004792 return 1;
4793 }
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004794 /* Force FOR to have just one word (variable name) */
4795 /* NB: basically, this makes hush see "for v in ..."
4796 * syntax as if it is "for v; in ...". FOR and IN become
4797 * two pipe structs in parse tree. */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004798 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004799 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004800#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004801#if ENABLE_HUSH_CASE
4802 /* Force CASE to have just one word */
4803 if (ctx->ctx_res_w == RES_CASE) {
4804 done_pipe(ctx, PIPE_SEQ);
4805 }
4806#endif
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004807
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004808 o_reset_to_empty_unquoted(word);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004809
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004810 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00004811 return 0;
4812}
4813
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004814
4815/* Peek ahead in the input to find out if we have a "&n" construct,
4816 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004817 * Return:
4818 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
4819 * REDIRFD_SYNTAX_ERR if syntax error,
4820 * REDIRFD_TO_FILE if no & was seen,
4821 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004822 */
4823#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004824#define parse_redir_right_fd(as_string, input) \
4825 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004826#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004827static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004828{
4829 int ch, d, ok;
4830
4831 ch = i_peek(input);
4832 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004833 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004834
4835 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004836 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004837 ch = i_peek(input);
4838 if (ch == '-') {
4839 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004840 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004841 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004842 }
4843 d = 0;
4844 ok = 0;
4845 while (ch != EOF && isdigit(ch)) {
4846 d = d*10 + (ch-'0');
4847 ok = 1;
4848 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004849 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004850 ch = i_peek(input);
4851 }
4852 if (ok) return d;
4853
4854//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
4855
4856 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004857 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004858}
4859
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004860/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004861 */
4862static int parse_redirect(struct parse_context *ctx,
4863 int fd,
4864 redir_type style,
4865 struct in_str *input)
4866{
4867 struct command *command = ctx->command;
4868 struct redir_struct *redir;
4869 struct redir_struct **redirp;
4870 int dup_num;
4871
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004872 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004873 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004874 /* Check for a '>&1' type redirect */
4875 dup_num = parse_redir_right_fd(&ctx->as_string, input);
4876 if (dup_num == REDIRFD_SYNTAX_ERR)
4877 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004878 } else {
4879 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004880 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004881 if (dup_num) { /* <<-... */
4882 ch = i_getch(input);
4883 nommu_addchr(&ctx->as_string, ch);
4884 ch = i_peek(input);
4885 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004886 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004887
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004888 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004889 int ch = i_peek(input);
4890 if (ch == '|') {
4891 /* >|FILE redirect ("clobbering" >).
4892 * Since we do not support "set -o noclobber" yet,
4893 * >| and > are the same for now. Just eat |.
4894 */
4895 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004896 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004897 }
4898 }
4899
4900 /* Create a new redir_struct and append it to the linked list */
4901 redirp = &command->redirects;
4902 while ((redir = *redirp) != NULL) {
4903 redirp = &(redir->next);
4904 }
4905 *redirp = redir = xzalloc(sizeof(*redir));
4906 /* redir->next = NULL; */
4907 /* redir->rd_filename = NULL; */
4908 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004909 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004910
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004911 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
4912 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004913
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004914 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004915 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004916 /* Erik had a check here that the file descriptor in question
4917 * is legit; I postpone that to "run time"
4918 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004919 debug_printf_parse("duplicating redirect '%d>&%d'\n",
4920 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004921 } else {
4922 /* Set ctx->pending_redirect, so we know what to do at the
4923 * end of the next parsed word. */
4924 ctx->pending_redirect = redir;
4925 }
4926 return 0;
4927}
4928
Eric Andersen25f27032001-04-26 23:22:31 +00004929/* If a redirect is immediately preceded by a number, that number is
4930 * supposed to tell which file descriptor to redirect. This routine
4931 * looks for such preceding numbers. In an ideal world this routine
4932 * needs to handle all the following classes of redirects...
4933 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
4934 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
4935 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
4936 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004937 *
4938 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4939 * "2.7 Redirection
4940 * ... If n is quoted, the number shall not be recognized as part of
4941 * the redirection expression. For example:
4942 * echo \2>a
4943 * writes the character 2 into file a"
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004944 * We are getting it right by setting ->o_quoted on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004945 *
4946 * A -1 return means no valid number was found,
4947 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00004948 */
4949static int redirect_opt_num(o_string *o)
4950{
4951 int num;
4952
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004953 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004954 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004955 num = bb_strtou(o->data, NULL, 10);
4956 if (errno || num < 0)
4957 return -1;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004958 o_reset_to_empty_unquoted(o);
Eric Andersen25f27032001-04-26 23:22:31 +00004959 return num;
4960}
4961
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004962#if BB_MMU
4963#define fetch_till_str(as_string, input, word, skip_tabs) \
4964 fetch_till_str(input, word, skip_tabs)
4965#endif
4966static char *fetch_till_str(o_string *as_string,
4967 struct in_str *input,
4968 const char *word,
4969 int skip_tabs)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004970{
4971 o_string heredoc = NULL_O_STRING;
4972 int past_EOL = 0;
4973 int ch;
4974
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004975 goto jump_in;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004976 while (1) {
4977 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004978 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004979 if (ch == '\n') {
4980 if (strcmp(heredoc.data + past_EOL, word) == 0) {
4981 heredoc.data[past_EOL] = '\0';
4982 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
4983 return heredoc.data;
4984 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004985 do {
4986 o_addchr(&heredoc, ch);
4987 past_EOL = heredoc.length;
4988 jump_in:
4989 do {
4990 ch = i_getch(input);
4991 nommu_addchr(as_string, ch);
4992 } while (skip_tabs && ch == '\t');
4993 } while (ch == '\n');
4994 }
4995 if (ch == EOF) {
4996 o_free_unsafe(&heredoc);
4997 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004998 }
4999 o_addchr(&heredoc, ch);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005000 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005001 }
5002}
5003
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005004/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
5005 * and load them all. There should be exactly heredoc_cnt of them.
5006 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005007static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
5008{
5009 struct pipe *pi = ctx->list_head;
5010
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005011 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005012 int i;
5013 struct command *cmd = pi->cmds;
5014
5015 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
5016 pi->num_cmds,
5017 cmd->argv ? cmd->argv[0] : "NONE");
5018 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005019 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005020
5021 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
5022 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005023 while (redir) {
5024 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005025 char *p;
5026
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005027 redir->rd_type = REDIRECT_HEREDOC2;
5028 /* redir->dup is (ab)used to indicate <<- */
5029 p = fetch_till_str(&ctx->as_string, input,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005030 redir->rd_filename, redir->rd_dup & HEREDOC_SKIPTABS);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005031 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005032 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005033 return 1;
5034 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005035 free(redir->rd_filename);
5036 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005037 heredoc_cnt--;
5038 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005039 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005040 }
5041 cmd++;
5042 }
5043 pi = pi->next;
5044 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005045#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005046 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005047 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005048 bb_error_msg_and_die("heredoc BUG 2");
5049#endif
5050 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005051}
5052
5053
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005054#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005055static FILE *generate_stream_from_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00005056{
5057 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00005058 int pid, channel[2];
Denis Vlasenko27014ed2009-04-15 21:48:23 +00005059#if !BB_MMU
5060 char **to_free;
5061#endif
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00005062
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +00005063 xpipe(channel);
Denis Vlasenko82604e92008-07-01 15:59:42 +00005064 pid = BB_MMU ? fork() : vfork();
5065 if (pid < 0)
5066 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005067
Denis Vlasenko05743d72008-02-10 12:10:08 +00005068 if (pid == 0) { /* child */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005069 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00005070 /* Process substitution is not considered to be usual
5071 * 'command execution'.
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00005072 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
5073 */
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00005074 bb_signals(0
5075 + (1 << SIGTSTP)
5076 + (1 << SIGTTIN)
5077 + (1 << SIGTTOU)
5078 , SIG_IGN);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005079 close(channel[0]); /* NB: close _first_, then move fd! */
5080 xmove_fd(channel[1], 1);
5081 /* Prevent it from trying to handle ctrl-z etc */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00005082 IF_HUSH_JOB(G.run_list_level = 1;)
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005083#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005084 reset_traps_to_defaults();
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005085 parse_and_run_string(s);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005086 _exit(G.last_exitcode);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005087#else
5088 /* We re-execute after vfork on NOMMU. This makes this script safe:
Denis Vlasenkof9375282009-04-05 19:13:39 +00005089 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
5090 * huge=`cat BIG` # was blocking here forever
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005091 * echo OK
5092 */
Denis Vlasenko27014ed2009-04-15 21:48:23 +00005093 re_execute_shell(&to_free,
5094 s,
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005095 G.global_argv[0],
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02005096 G.global_argv + 1,
5097 NULL);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005098#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005099 }
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005100
5101 /* parent */
Denys Vlasenko8d7be232009-05-25 16:38:32 +02005102#if ENABLE_HUSH_FAST
5103 G.count_SIGCHLD++;
5104//bb_error_msg("[%d] fork in generate_stream_from_string: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
5105#endif
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005106 enable_restore_tty_pgrp_on_exit();
Denis Vlasenko27014ed2009-04-15 21:48:23 +00005107#if !BB_MMU
5108 free(to_free);
5109#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005110 close(channel[1]);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00005111 pf = fdopen(channel[0], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00005112 return pf;
5113}
5114
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00005115/* Return code is exit status of the process that is run. */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005116static int process_command_subs(o_string *dest, const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00005117{
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005118 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00005119 struct in_str pipe_str;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005120 int ch, eol_cnt;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00005121
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005122 pf = generate_stream_from_string(s);
5123 if (pf == NULL)
Denis Vlasenko05743d72008-02-10 12:10:08 +00005124 return 1;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005125 close_on_exec_on(fileno(pf));
Eric Andersen25f27032001-04-26 23:22:31 +00005126
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005127 /* Now send results of command back into original context */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005128 setup_file_in_str(&pipe_str, pf);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00005129 eol_cnt = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005130 while ((ch = i_getch(&pipe_str)) != EOF) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00005131 if (ch == '\n') {
5132 eol_cnt++;
5133 continue;
5134 }
5135 while (eol_cnt) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00005136 o_addchr(dest, '\n');
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00005137 eol_cnt--;
5138 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00005139 o_addQchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005140 }
5141
5142 debug_printf("done reading from pipe, pclose()ing\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005143 /* Note: we got EOF, and we just close the read end of the pipe.
5144 * We do not wait for the `cmd` child to terminate. bash and ash do.
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005145 * Try these:
5146 * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec
5147 * `false`; echo $? - bash outputs "1"
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005148 */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005149 fclose(pf);
5150 debug_printf("closed FILE from child. return 0\n");
5151 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00005152}
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005153#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005154
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005155static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00005156 struct in_str *input, int ch)
5157{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005158 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005159 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005160 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005161 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005162 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005163 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005164
5165 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005166#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005167 if (ch == '(' && !dest->o_quoted) {
5168 if (dest->length)
Denis Vlasenkobb929512009-04-16 10:59:40 +00005169 if (done_word(dest, ctx))
5170 return 1;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005171 if (!command->argv)
5172 goto skip; /* (... */
5173 if (command->argv[1]) { /* word word ... (... */
5174 syntax_error_unexpected_ch('(');
5175 return 1;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00005176 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005177 /* it is "word(..." or "word (..." */
5178 do
5179 ch = i_getch(input);
5180 while (ch == ' ' || ch == '\t');
5181 if (ch != ')') {
5182 syntax_error_unexpected_ch(ch);
5183 return 1;
5184 }
5185 nommu_addchr(&ctx->as_string, ch);
5186 do
5187 ch = i_getch(input);
5188 while (ch == ' ' || ch == '\t' || ch == '\n');
5189 if (ch != '{') {
5190 syntax_error_unexpected_ch(ch);
5191 return 1;
5192 }
5193 nommu_addchr(&ctx->as_string, ch);
5194 command->grp_type = GRP_FUNCTION;
5195 goto skip;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005196 }
5197#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00005198 if (command->argv /* word [word]{... */
5199 || dest->length /* word{... */
5200 || dest->o_quoted /* ""{... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005201 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005202 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005203 debug_printf_parse("parse_group return 1: "
5204 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005205 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005206 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00005207
5208#if ENABLE_HUSH_FUNCTIONS
5209 skip:
5210#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00005211 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005212 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00005213 endch = ')';
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005214 command->grp_type = GRP_SUBSHELL;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00005215 } else {
5216 /* bash does not allow "{echo...", requires whitespace */
5217 ch = i_getch(input);
5218 if (ch != ' ' && ch != '\t' && ch != '\n') {
5219 syntax_error_unexpected_ch(ch);
5220 return 1;
5221 }
5222 nommu_addchr(&ctx->as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005223 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00005224
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005225 {
5226#if !BB_MMU
5227 char *as_string = NULL;
5228#endif
5229 pipe_list = parse_stream(&as_string, input, endch);
5230#if !BB_MMU
5231 if (as_string)
5232 o_addstr(&ctx->as_string, as_string);
5233#endif
5234 /* empty ()/{} or parse error? */
5235 if (!pipe_list || pipe_list == ERR_PTR) {
Denis Vlasenkobb929512009-04-16 10:59:40 +00005236 /* parse_stream already emitted error msg */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005237#if !BB_MMU
5238 free(as_string);
5239#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005240 debug_printf_parse("parse_group return 1: "
5241 "parse_stream returned %p\n", pipe_list);
5242 return 1;
5243 }
5244 command->group = pipe_list;
5245#if !BB_MMU
5246 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
5247 command->group_as_string = as_string;
5248 debug_printf_parse("end of group, remembering as:'%s'\n",
5249 command->group_as_string);
5250#endif
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005251 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005252 debug_printf_parse("parse_group return 0\n");
5253 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005254 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00005255}
5256
Mike Frysinger98c52642009-04-02 10:02:37 +00005257#if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005258/* Subroutines for copying $(...) and `...` things */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005259static void add_till_backquote(o_string *dest, struct in_str *input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005260/* '...' */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005261static void add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005262{
5263 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005264 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005265 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005266 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005267 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005268 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005269 if (ch == '\'')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005270 return;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005271 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005272 }
5273}
5274/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005275static void add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005276{
5277 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005278 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005279 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005280 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005281 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005282 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005283 if (ch == '"')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005284 return;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005285 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005286 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005287 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005288 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005289 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005290 if (ch == '`') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005291 add_till_backquote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005292 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005293 continue;
5294 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00005295 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005296 }
5297}
5298/* Process `cmd` - copy contents until "`" is seen. Complicated by
5299 * \` quoting.
5300 * "Within the backquoted style of command substitution, backslash
5301 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
5302 * The search for the matching backquote shall be satisfied by the first
5303 * backquote found without a preceding backslash; during this search,
5304 * if a non-escaped backquote is encountered within a shell comment,
5305 * a here-document, an embedded command substitution of the $(command)
5306 * form, or a quoted string, undefined results occur. A single-quoted
5307 * or double-quoted string that begins, but does not end, within the
5308 * "`...`" sequence produces undefined results."
5309 * Example Output
5310 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
5311 */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005312static void add_till_backquote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005313{
5314 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005315 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005316 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005317 syntax_error_unterm_ch('`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005318 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005319 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005320 if (ch == '`')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005321 return;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005322 if (ch == '\\') {
5323 /* \x. Copy both chars unless it is \` */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005324 int ch2 = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005325 if (ch2 == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005326 syntax_error_unterm_ch('`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005327 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005328 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005329 if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005330 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005331 ch = ch2;
5332 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005333 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005334 }
5335}
5336/* Process $(cmd) - copy contents until ")" is seen. Complicated by
5337 * quoting and nested ()s.
5338 * "With the $(command) style of command substitution, all characters
5339 * following the open parenthesis to the matching closing parenthesis
5340 * constitute the command. Any valid shell script can be used for command,
5341 * except a script consisting solely of redirections which produces
5342 * unspecified results."
5343 * Example Output
5344 * echo $(echo '(TEST)' BEST) (TEST) BEST
5345 * echo $(echo 'TEST)' BEST) TEST) BEST
5346 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
5347 */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005348static void add_till_closing_paren(o_string *dest, struct in_str *input, bool dbl)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005349{
5350 int count = 0;
5351 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005352 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005353 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005354 syntax_error_unterm_ch(')');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005355 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005356 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005357 if (ch == '(')
5358 count++;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005359 if (ch == ')') {
Mike Frysinger98c52642009-04-02 10:02:37 +00005360 if (--count < 0) {
5361 if (!dbl)
5362 break;
5363 if (i_peek(input) == ')') {
5364 i_getch(input);
5365 break;
5366 }
5367 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005368 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005369 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005370 if (ch == '\'') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005371 add_till_single_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005372 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005373 continue;
5374 }
5375 if (ch == '"') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005376 add_till_double_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005377 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005378 continue;
5379 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005380 if (ch == '\\') {
5381 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00005382 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005383 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005384 syntax_error_unterm_ch(')');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005385 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005386 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005387 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00005388 continue;
5389 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005390 }
5391}
Mike Frysinger98c52642009-04-02 10:02:37 +00005392#endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005393
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005394/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005395#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005396#define handle_dollar(as_string, dest, input) \
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005397 handle_dollar(dest, input)
5398#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005399static int handle_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005400 o_string *dest,
5401 struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00005402{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005403 int ch = i_peek(input); /* first character after the $ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00005404 unsigned char quote_mask = dest->o_escape ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005405
5406 debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00005407 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005408 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005409 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00005410 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005411 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005412 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005413 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005414 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00005415 quote_mask = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005416 ch = i_peek(input);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00005417 if (!isalnum(ch) && ch != '_')
5418 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005419 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005420 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005421 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005422 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005423 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00005424 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005425 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005426 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005427 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00005428 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005429 o_addchr(dest, ch | quote_mask);
5430 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005431 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005432 case '$': /* pid */
5433 case '!': /* last bg pid */
5434 case '?': /* last exit code */
5435 case '#': /* number of args */
5436 case '*': /* args */
5437 case '@': /* args */
5438 goto make_one_char_var;
5439 case '{': {
5440 bool first_char, all_digits;
Mike Frysingeref3e7fd2009-06-01 14:13:39 -04005441 int expansion;
Mike Frysinger6379bb42009-03-28 18:55:03 +00005442
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005443 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005444 nommu_addchr(as_string, ch);
Mike Frysingeref3e7fd2009-06-01 14:13:39 -04005445 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5446
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00005447 /* TODO: maybe someone will try to escape the '}' */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005448 expansion = 0;
5449 first_char = true;
5450 all_digits = false;
5451 while (1) {
5452 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005453 nommu_addchr(as_string, ch);
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005454 if (ch == '}') {
Mike Frysinger98c52642009-04-02 10:02:37 +00005455 break;
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005456 }
Mike Frysinger98c52642009-04-02 10:02:37 +00005457
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005458 if (first_char) {
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005459 if (ch == '#') {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005460 /* ${#var}: length of var contents */
5461 goto char_ok;
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005462 }
5463 if (isdigit(ch)) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005464 all_digits = true;
5465 goto char_ok;
5466 }
Mike Frysingerdc3bc402009-06-01 14:09:09 -04005467 /* They're being verbose and doing ${?} */
5468 if (i_peek(input) == '}' && strchr("$!?#*@_", ch))
5469 goto char_ok;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005470 }
5471
5472 if (expansion < 2
5473 && ( (all_digits && !isdigit(ch))
5474 || (!all_digits && !isalnum(ch) && ch != '_')
5475 )
5476 ) {
5477 /* handle parameter expansions
5478 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
5479 */
5480 if (first_char)
5481 goto case_default;
5482 switch (ch) {
5483 case ':': /* null modifier */
5484 if (expansion == 0) {
5485 debug_printf_parse(": null modifier\n");
5486 ++expansion;
5487 break;
5488 }
5489 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005490 case '#': /* remove prefix */
5491 case '%': /* remove suffix */
5492 if (expansion == 0) {
5493 debug_printf_parse(": remove suffix/prefix\n");
5494 expansion = 2;
5495 break;
5496 }
5497 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005498 case '-': /* default value */
5499 case '=': /* assign default */
5500 case '+': /* alternative */
5501 case '?': /* error indicate */
5502 debug_printf_parse(": parameter expansion\n");
5503 expansion = 2;
5504 break;
5505 default:
5506 case_default:
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005507 syntax_error_unterm_str("${name}");
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005508 debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
5509 return 1;
5510 }
5511 }
5512 char_ok:
5513 debug_printf_parse(": '%c'\n", ch);
5514 o_addchr(dest, ch | quote_mask);
5515 quote_mask = 0;
5516 first_char = false;
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005517 } /* while (1) */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005518 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5519 break;
5520 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005521#if (ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK)
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005522 case '(': {
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005523# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005524 int pos;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005525# endif
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005526 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005527 nommu_addchr(as_string, ch);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005528# if ENABLE_SH_MATH_SUPPORT
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005529 if (i_peek(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005530 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005531 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005532 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5533 o_addchr(dest, /*quote_mask |*/ '+');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005534# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005535 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005536# endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005537 add_till_closing_paren(dest, input, true);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005538# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005539 if (as_string) {
5540 o_addstr(as_string, dest->data + pos);
5541 o_addchr(as_string, ')');
5542 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005543 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005544# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005545 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005546 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00005547 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005548# endif
5549# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005550 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5551 o_addchr(dest, quote_mask | '`');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005552# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005553 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005554# endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005555 add_till_closing_paren(dest, input, false);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005556# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005557 if (as_string) {
5558 o_addstr(as_string, dest->data + pos);
5559 o_addchr(as_string, '`');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005560 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005561# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005562 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005563# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005564 break;
5565 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005566#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005567 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005568 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005569 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005570 ch = i_peek(input);
5571 if (isalnum(ch)) { /* it's $_name or $_123 */
5572 ch = '_';
5573 goto make_var;
5574 }
5575 /* else: it's $_ */
5576 /* TODO: */
5577 /* $_ Shell or shell script name; or last cmd name */
5578 /* $- Option flags set by set builtin or shell options (-i etc) */
5579 default:
5580 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00005581 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005582 debug_printf_parse("handle_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00005583 return 0;
5584}
5585
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005586#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005587#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005588 parse_stream_dquoted(dest, input, dquote_end)
5589#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005590static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005591 o_string *dest,
5592 struct in_str *input,
5593 int dquote_end)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005594{
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005595 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005596 int next;
5597
5598 again:
5599 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005600 if (ch != EOF)
5601 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005602 if (ch == dquote_end) { /* may be only '"' or EOF */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005603 if (dest->o_assignment == NOT_ASSIGNMENT)
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00005604 dest->o_escape ^= 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005605 debug_printf_parse("parse_stream_dquoted return 0\n");
5606 return 0;
5607 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005608 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005609 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005610 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005611 /*xfunc_die(); - redundant */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005612 }
5613 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005614 if (ch != '\n') {
5615 next = i_peek(input);
5616 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005617 debug_printf_parse(": ch=%c (%d) escape=%d\n",
5618 ch, ch, dest->o_escape);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005619 if (ch == '\\') {
5620 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005621 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005622 xfunc_die();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005623 }
5624 /* bash:
5625 * "The backslash retains its special meaning [in "..."]
5626 * only when followed by one of the following characters:
5627 * $, `, ", \, or <newline>. A double quote may be quoted
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02005628 * within double quotes by preceding it with a backslash."
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005629 */
Denys Vlasenkoe19e1932009-05-03 02:15:18 +02005630 if (strchr("$`\"\\\n", next) != NULL) {
Denis Vlasenko57293002009-04-26 20:06:14 +00005631 ch = i_getch(input);
Denys Vlasenkoe19e1932009-05-03 02:15:18 +02005632 if (ch != '\n') {
5633 o_addqchr(dest, ch);
5634 nommu_addchr(as_string, ch);
5635 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005636 } else {
5637 o_addqchr(dest, '\\');
Denis Vlasenko57293002009-04-26 20:06:14 +00005638 nommu_addchr(as_string, '\\');
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005639 }
5640 goto again;
5641 }
5642 if (ch == '$') {
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005643 if (handle_dollar(as_string, dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005644 debug_printf_parse("parse_stream_dquoted return 1: "
5645 "handle_dollar returned non-0\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005646 return 1;
5647 }
5648 goto again;
5649 }
5650#if ENABLE_HUSH_TICK
5651 if (ch == '`') {
5652 //int pos = dest->length;
5653 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5654 o_addchr(dest, 0x80 | '`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005655 add_till_backquote(dest, input);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005656 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5657 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00005658 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005659 }
5660#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00005661 o_addQchr(dest, ch);
5662 if (ch == '='
5663 && (dest->o_assignment == MAYBE_ASSIGNMENT
5664 || dest->o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005665 && is_well_formed_var_name(dest->data, '=')
Denis Vlasenkof328e002009-04-02 16:55:38 +00005666 ) {
5667 dest->o_assignment = DEFINITELY_ASSIGNMENT;
5668 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005669 goto again;
5670}
5671
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005672/*
5673 * Scan input until EOF or end_trigger char.
5674 * Return a list of pipes to execute, or NULL on EOF
5675 * or if end_trigger character is met.
5676 * On syntax error, exit is shell is not interactive,
5677 * reset parsing machinery and start parsing anew,
5678 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005679 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005680static struct pipe *parse_stream(char **pstring,
5681 struct in_str *input,
5682 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00005683{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005684 struct parse_context ctx;
5685 o_string dest = NULL_O_STRING;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005686 int is_in_dquote;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005687 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00005688
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00005689 /* Double-quote state is handled in the state variable is_in_dquote.
Eric Andersen25f27032001-04-26 23:22:31 +00005690 * A single-quote triggers a bypass of the main loop until its mate is
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005691 * found. When recursing, quote state is passed in via dest->o_escape.
5692 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005693 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
5694 end_trigger ? : 'X');
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005695 debug_enter();
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005696
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005697 G.ifs = get_local_var_value("IFS");
5698 if (G.ifs == NULL)
5699 G.ifs = " \t\n";
5700
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005701 reset:
5702#if ENABLE_HUSH_INTERACTIVE
5703 input->promptmode = 0; /* PS1 */
5704#endif
5705 /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */
5706 initialize_context(&ctx);
5707 is_in_dquote = 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005708 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00005709 while (1) {
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005710 const char *is_ifs;
5711 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005712 int ch;
5713 int next;
5714 int redir_fd;
5715 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005716
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005717 if (is_in_dquote) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005718 /* dest.o_quoted = 1; - already is (see below) */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005719 if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005720 goto parse_error;
5721 }
5722 /* We reached closing '"' */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005723 is_in_dquote = 0;
5724 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005725 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005726 debug_printf_parse(": ch=%c (%d) escape=%d\n",
5727 ch, ch, dest.o_escape);
5728 if (ch == EOF) {
5729 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005730
5731 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005732 syntax_error_unterm_str("here document");
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02005733 goto parse_error;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005734 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02005735 /* end_trigger == '}' case errors out earlier,
5736 * checking only ')' */
5737 if (end_trigger == ')') {
5738 syntax_error_unterm_ch('('); /* exits */
5739 /* goto parse_error; */
5740 }
5741
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005742 if (done_word(&dest, &ctx)) {
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02005743 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005744 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005745 o_free(&dest);
5746 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005747 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005748 /* If we got nothing... */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005749 /* (this makes bare "&" cmd a no-op.
5750 * bash says: "syntax error near unexpected token '&'") */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005751 if (pi->num_cmds == 0
5752 IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
5753 ) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005754 free_pipe_list(pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005755 pi = NULL;
5756 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005757#if !BB_MMU
5758 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
5759 if (pstring)
5760 *pstring = ctx.as_string.data;
5761 else
5762 o_free_unsafe(&ctx.as_string);
5763#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005764 debug_leave();
5765 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005766 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00005767 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005768 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005769 is_ifs = strchr(G.ifs, ch);
5770 is_special = strchr("<>;&|(){}#'" /* special outside of "str" */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00005771 "\\$\"" IF_HUSH_TICK("`") /* always special */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005772 , ch);
5773
5774 if (!is_special && !is_ifs) { /* ordinary char */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005775 ordinary_char:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005776 o_addQchr(&dest, ch);
5777 if ((dest.o_assignment == MAYBE_ASSIGNMENT
5778 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00005779 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005780 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00005781 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005782 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005783 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005784 continue;
5785 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00005786
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005787 if (is_ifs) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005788 if (done_word(&dest, &ctx)) {
5789 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00005790 }
Denis Vlasenko37181682009-04-03 03:19:15 +00005791 if (ch == '\n') {
Denis Vlasenkof1736072008-07-31 10:09:26 +00005792#if ENABLE_HUSH_CASE
5793 /* "case ... in <newline> word) ..." -
5794 * newlines are ignored (but ';' wouldn't be) */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005795 if (ctx.command->argv == NULL
5796 && ctx.ctx_res_w == RES_MATCH
Denis Vlasenkof1736072008-07-31 10:09:26 +00005797 ) {
5798 continue;
5799 }
5800#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00005801 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005802 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005803 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
5804 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005805 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005806 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005807 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005808 heredoc_cnt = 0;
5809 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005810 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005811 ch = ';';
Denis Vlasenko7c986122009-04-04 12:15:42 +00005812 /* note: if (is_ifs) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005813 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005814 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005815 }
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00005816
5817 /* "cmd}" or "cmd }..." without semicolon or &:
5818 * } is an ordinary char in this case, even inside { cmd; }
5819 * Pathological example: { ""}; } should exec "}" cmd
5820 */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00005821 if (ch == '}') {
5822 if (!IS_NULL_CMD(ctx.command) /* cmd } */
5823 || dest.length != 0 /* word} */
5824 || dest.o_quoted /* ""} */
5825 ) {
5826 goto ordinary_char;
5827 }
5828 if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */
5829 goto skip_end_trigger;
5830 /* else: } does terminate a group */
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00005831 }
5832
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005833 if (end_trigger && end_trigger == ch
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02005834 && (ch != ';' || heredoc_cnt == 0)
5835#if ENABLE_HUSH_CASE
5836 && (ch != ')'
5837 || ctx.ctx_res_w != RES_MATCH
5838 || (!dest.o_quoted && strcmp(dest.data, "esac") == 0)
5839 )
5840#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005841 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005842 if (heredoc_cnt) {
5843 /* This is technically valid:
5844 * { cat <<HERE; }; echo Ok
5845 * heredoc
5846 * heredoc
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005847 * HERE
5848 * but we don't support this.
5849 * We require heredoc to be in enclosing {}/(),
5850 * if any.
5851 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005852 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005853 goto parse_error;
5854 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005855 if (done_word(&dest, &ctx)) {
5856 goto parse_error;
5857 }
5858 done_pipe(&ctx, PIPE_SEQ);
5859 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005860 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00005861 if (!HAS_KEYWORDS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005862 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00005863 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005864 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005865#if !BB_MMU
5866 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
5867 if (pstring)
5868 *pstring = ctx.as_string.data;
5869 else
5870 o_free_unsafe(&ctx.as_string);
5871#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005872 debug_leave();
5873 debug_printf_parse("parse_stream return %p: "
5874 "end_trigger char found\n",
5875 ctx.list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005876 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005877 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005878 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00005879 skip_end_trigger:
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005880 if (is_ifs)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005881 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005882
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005883 next = '\0';
5884 if (ch != '\n') {
5885 next = i_peek(input);
5886 }
5887
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005888 /* Catch <, > before deciding whether this word is
5889 * an assignment. a=1 2>z b=2: b=2 is still assignment */
5890 switch (ch) {
5891 case '>':
5892 redir_fd = redirect_opt_num(&dest);
5893 if (done_word(&dest, &ctx)) {
5894 goto parse_error;
5895 }
5896 redir_style = REDIRECT_OVERWRITE;
5897 if (next == '>') {
5898 redir_style = REDIRECT_APPEND;
5899 ch = i_getch(input);
5900 nommu_addchr(&ctx.as_string, ch);
5901 }
5902#if 0
5903 else if (next == '(') {
5904 syntax_error(">(process) not supported");
5905 goto parse_error;
5906 }
5907#endif
5908 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5909 goto parse_error;
5910 continue; /* back to top of while (1) */
5911 case '<':
5912 redir_fd = redirect_opt_num(&dest);
5913 if (done_word(&dest, &ctx)) {
5914 goto parse_error;
5915 }
5916 redir_style = REDIRECT_INPUT;
5917 if (next == '<') {
5918 redir_style = REDIRECT_HEREDOC;
5919 heredoc_cnt++;
5920 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
5921 ch = i_getch(input);
5922 nommu_addchr(&ctx.as_string, ch);
5923 } else if (next == '>') {
5924 redir_style = REDIRECT_IO;
5925 ch = i_getch(input);
5926 nommu_addchr(&ctx.as_string, ch);
5927 }
5928#if 0
5929 else if (next == '(') {
5930 syntax_error("<(process) not supported");
5931 goto parse_error;
5932 }
5933#endif
5934 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5935 goto parse_error;
5936 continue; /* back to top of while (1) */
5937 }
5938
5939 if (dest.o_assignment == MAYBE_ASSIGNMENT
5940 /* check that we are not in word in "a=1 2>word b=1": */
5941 && !ctx.pending_redirect
5942 ) {
5943 /* ch is a special char and thus this word
5944 * cannot be an assignment */
5945 dest.o_assignment = NOT_ASSIGNMENT;
5946 }
5947
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005948 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00005949 case '#':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005950 if (dest.length == 0) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005951 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005952 ch = i_peek(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005953 if (ch == EOF || ch == '\n')
5954 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005955 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005956 /* note: we do not add it to &ctx.as_string */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005957 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005958 nommu_addchr(&ctx.as_string, '\n');
Eric Andersen25f27032001-04-26 23:22:31 +00005959 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005960 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005961 }
5962 break;
5963 case '\\':
5964 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005965 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005966 xfunc_die();
Eric Andersen25f27032001-04-26 23:22:31 +00005967 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005968 ch = i_getch(input);
Denys Vlasenkoe19e1932009-05-03 02:15:18 +02005969 if (ch != '\n') {
5970 o_addchr(&dest, '\\');
5971 nommu_addchr(&ctx.as_string, '\\');
5972 o_addchr(&dest, ch);
5973 nommu_addchr(&ctx.as_string, ch);
5974 /* Example: echo Hello \2>file
5975 * we need to know that word 2 is quoted */
5976 dest.o_quoted = 1;
5977 }
Eric Andersen25f27032001-04-26 23:22:31 +00005978 break;
5979 case '$':
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005980 if (handle_dollar(&ctx.as_string, &dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005981 debug_printf_parse("parse_stream parse error: "
5982 "handle_dollar returned non-0\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005983 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005984 }
Eric Andersen25f27032001-04-26 23:22:31 +00005985 break;
5986 case '\'':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005987 dest.o_quoted = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005988 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005989 ch = i_getch(input);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005990 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005991 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005992 /*xfunc_die(); - redundant */
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005993 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005994 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005995 if (ch == '\'')
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005996 break;
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02005997 o_addqchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005998 }
Eric Andersen25f27032001-04-26 23:22:31 +00005999 break;
6000 case '"':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00006001 dest.o_quoted = 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006002 is_in_dquote ^= 1; /* invert */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006003 if (dest.o_assignment == NOT_ASSIGNMENT)
6004 dest.o_escape ^= 1;
Eric Andersen25f27032001-04-26 23:22:31 +00006005 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00006006#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006007 case '`': {
Denis Vlasenko5c090a92009-04-08 21:51:33 +00006008#if !BB_MMU
6009 int pos;
6010#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006011 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
6012 o_addchr(&dest, '`');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00006013#if !BB_MMU
6014 pos = dest.length;
6015#endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006016 add_till_backquote(&dest, input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00006017#if !BB_MMU
6018 o_addstr(&ctx.as_string, dest.data + pos);
6019 o_addchr(&ctx.as_string, '`');
6020#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006021 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
6022 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00006023 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006024 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00006025#endif
Eric Andersen25f27032001-04-26 23:22:31 +00006026 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00006027#if ENABLE_HUSH_CASE
6028 case_semi:
6029#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006030 if (done_word(&dest, &ctx)) {
6031 goto parse_error;
6032 }
6033 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00006034#if ENABLE_HUSH_CASE
6035 /* Eat multiple semicolons, detect
6036 * whether it means something special */
6037 while (1) {
6038 ch = i_peek(input);
6039 if (ch != ';')
6040 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00006041 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006042 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02006043 if (ctx.ctx_res_w == RES_CASE_BODY) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006044 ctx.ctx_dsemicolon = 1;
6045 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00006046 break;
6047 }
6048 }
6049#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00006050 new_cmd:
6051 /* We just finished a cmd. New one may start
6052 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006053 dest.o_assignment = MAYBE_ASSIGNMENT;
Eric Andersen25f27032001-04-26 23:22:31 +00006054 break;
6055 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006056 if (done_word(&dest, &ctx)) {
6057 goto parse_error;
6058 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00006059 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00006060 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006061 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006062 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00006063 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006064 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00006065 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00006066 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00006067 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006068 if (done_word(&dest, &ctx)) {
6069 goto parse_error;
6070 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00006071#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006072 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00006073 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00006074#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00006075 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00006076 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006077 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006078 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00006079 } else {
6080 /* we could pick up a file descriptor choice here
6081 * with redirect_opt_num(), but bash doesn't do it.
6082 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006083 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00006084 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00006085 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00006086 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00006087#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00006088 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006089 if (ctx.ctx_res_w == RES_MATCH
6090 && ctx.command->argv == NULL /* not (word|(... */
6091 && dest.length == 0 /* not word(... */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00006092 && dest.o_quoted == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00006093 ) {
6094 continue;
6095 }
6096#endif
Eric Andersen25f27032001-04-26 23:22:31 +00006097 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006098 if (parse_group(&dest, &ctx, input, ch) != 0) {
6099 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00006100 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00006101 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00006102 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00006103#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006104 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00006105 goto case_semi;
6106#endif
Eric Andersen25f27032001-04-26 23:22:31 +00006107 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00006108 /* proper use of this character is caught by end_trigger:
6109 * if we see {, we call parse_group(..., end_trigger='}')
6110 * and it will match } earlier (not here). */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00006111 syntax_error_unexpected_ch(ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006112 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00006113 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00006114 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00006115 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00006116 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006117 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00006118
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006119 parse_error:
6120 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006121 struct parse_context *pctx;
6122 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006123
6124 /* Clean up allocated tree.
6125 * Samples for finding leaks on syntax error recovery path.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006126 * Run them from interactive shell, watch pmap `pidof hush`.
6127 * while if false; then false; fi do break; done
6128 * (bash accepts it)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006129 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00006130 * Samples to catch leaks at execution:
6131 * while if (true | {true;}); then echo ok; fi; do break; done
6132 * while if (true | {true;}); then echo ok; fi; do (if echo ok; break; then :; fi) | cat; break; done
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006133 */
6134 pctx = &ctx;
6135 do {
6136 /* Update pipe/command counts,
6137 * otherwise freeing may miss some */
6138 done_pipe(pctx, PIPE_SEQ);
6139 debug_printf_clean("freeing list %p from ctx %p\n",
6140 pctx->list_head, pctx);
6141 debug_print_tree(pctx->list_head, 0);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00006142 free_pipe_list(pctx->list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006143 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006144#if !BB_MMU
6145 o_free_unsafe(&pctx->as_string);
6146#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006147 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006148 if (pctx != &ctx) {
6149 free(pctx);
6150 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006151 IF_HAS_KEYWORDS(pctx = p2;)
6152 } while (HAS_KEYWORDS && pctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006153 /* Free text, clear all dest fields */
6154 o_free(&dest);
6155 /* If we are not in top-level parse, we return,
6156 * our caller will propagate error.
6157 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006158 if (end_trigger != ';') {
6159#if !BB_MMU
6160 if (pstring)
6161 *pstring = NULL;
6162#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00006163 debug_leave();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006164 return ERR_PTR;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006165 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006166 /* Discard cached input, force prompt */
6167 input->p = NULL;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00006168 IF_HUSH_INTERACTIVE(input->promptme = 1;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006169 goto reset;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00006170 }
Eric Andersen25f27032001-04-26 23:22:31 +00006171}
6172
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006173/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006174 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
6175 * end_trigger controls how often we stop parsing
6176 * NUL: parse all, execute, return
6177 * ';': parse till ';' or newline, execute, repeat till EOF
6178 */
6179static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00006180{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006181 while (1) {
6182 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006183
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006184 pipe_list = parse_stream(NULL, inp, end_trigger);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006185 if (!pipe_list) /* EOF */
6186 break;
6187 debug_print_tree(pipe_list, 0);
6188 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
6189 run_and_free_list(pipe_list);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006190 }
Eric Andersen25f27032001-04-26 23:22:31 +00006191}
6192
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006193static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00006194{
6195 struct in_str input;
6196 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006197 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00006198}
6199
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006200static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00006201{
Eric Andersen25f27032001-04-26 23:22:31 +00006202 struct in_str input;
6203 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006204 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00006205}
6206
Denis Vlasenkof9375282009-04-05 19:13:39 +00006207/* Called a few times only (or even once if "sh -c") */
6208static void block_signals(int second_time)
Eric Andersen52a97ca2001-06-22 06:49:26 +00006209{
Denis Vlasenkof9375282009-04-05 19:13:39 +00006210 unsigned sig;
6211 unsigned mask;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006212
Denis Vlasenkof9375282009-04-05 19:13:39 +00006213 mask = (1 << SIGQUIT);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006214 if (G_interactive_fd) {
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00006215 mask = (1 << SIGQUIT) | SPECIAL_INTERACTIVE_SIGS;
Mike Frysinger38478a62009-05-20 04:48:06 -04006216 if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006217 mask |= SPECIAL_JOB_SIGS;
6218 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006219 G.non_DFL_mask = mask;
Eric Andersen52a97ca2001-06-22 06:49:26 +00006220
Denis Vlasenkof9375282009-04-05 19:13:39 +00006221 if (!second_time)
6222 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
6223 sig = 0;
6224 while (mask) {
6225 if (mask & 1)
6226 sigaddset(&G.blocked_set, sig);
6227 mask >>= 1;
6228 sig++;
6229 }
6230 sigdelset(&G.blocked_set, SIGCHLD);
6231
6232 sigprocmask(SIG_SETMASK, &G.blocked_set,
6233 second_time ? NULL : &G.inherited_set);
6234 /* POSIX allows shell to re-enable SIGCHLD
6235 * even if it was SIG_IGN on entry */
Denys Vlasenko8d7be232009-05-25 16:38:32 +02006236#if ENABLE_HUSH_FAST
6237 G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006238 if (!second_time)
Denys Vlasenko8d7be232009-05-25 16:38:32 +02006239 signal(SIGCHLD, SIGCHLD_handler);
6240#else
6241 if (!second_time)
6242 signal(SIGCHLD, SIG_DFL);
6243#endif
Denis Vlasenkof9375282009-04-05 19:13:39 +00006244}
6245
6246#if ENABLE_HUSH_JOB
6247/* helper */
6248static void maybe_set_to_sigexit(int sig)
6249{
6250 void (*handler)(int);
6251 /* non_DFL_mask'ed signals are, well, masked,
6252 * no need to set handler for them.
6253 */
6254 if (!((G.non_DFL_mask >> sig) & 1)) {
6255 handler = signal(sig, sigexit);
6256 if (handler == SIG_IGN) /* oops... restore back to IGN! */
6257 signal(sig, handler);
6258 }
6259}
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006260/* Set handlers to restore tty pgrp and exit */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006261static void set_fatal_handlers(void)
6262{
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00006263 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006264 if (HUSH_DEBUG) {
6265 maybe_set_to_sigexit(SIGILL );
6266 maybe_set_to_sigexit(SIGFPE );
6267 maybe_set_to_sigexit(SIGBUS );
6268 maybe_set_to_sigexit(SIGSEGV);
6269 maybe_set_to_sigexit(SIGTRAP);
6270 } /* else: hush is perfect. what SEGV? */
6271 maybe_set_to_sigexit(SIGABRT);
6272 /* bash 3.2 seems to handle these just like 'fatal' ones */
6273 maybe_set_to_sigexit(SIGPIPE);
6274 maybe_set_to_sigexit(SIGALRM);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00006275 /* if we are interactive, SIGHUP, SIGTERM and SIGINT are masked.
Denis Vlasenkof9375282009-04-05 19:13:39 +00006276 * if we aren't interactive... but in this case
6277 * we never want to restore pgrp on exit, and this fn is not called */
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00006278 /*maybe_set_to_sigexit(SIGHUP );*/
Denis Vlasenkof9375282009-04-05 19:13:39 +00006279 /*maybe_set_to_sigexit(SIGTERM);*/
6280 /*maybe_set_to_sigexit(SIGINT );*/
Eric Andersen6c947d22001-06-25 22:24:38 +00006281}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00006282#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00006283
Denis Vlasenkod5762932009-03-31 11:22:57 +00006284static int set_mode(const char cstate, const char mode)
6285{
6286 int state = (cstate == '-' ? 1 : 0);
6287 switch (mode) {
6288 case 'n': G.fake_mode = state; break;
6289 case 'x': /*G.debug_mode = state;*/ break;
6290 default: return EXIT_FAILURE;
6291 }
6292 return EXIT_SUCCESS;
6293}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006294
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00006295int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00006296int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00006297{
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00006298 static const struct variable const_shell_ver = {
6299 .next = NULL,
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00006300 .varstr = (char*)hush_version_str,
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00006301 .max_len = 1, /* 0 can provoke free(name) */
6302 .flg_export = 1,
6303 .flg_read_only = 1,
6304 };
Denis Vlasenkof9375282009-04-05 19:13:39 +00006305 int signal_mask_is_inited = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00006306 int opt;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02006307 unsigned builtin_argc;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006308 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006309 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00006310
Denis Vlasenko574f2f42008-02-27 18:41:59 +00006311 INIT_G();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006312 if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006313 G.last_exitcode = EXIT_SUCCESS;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006314#if !BB_MMU
6315 G.argv0_for_re_execing = argv[0];
6316#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00006317 /* Deal with HUSH_VERSION */
Denis Vlasenko87a86552008-07-29 19:43:10 +00006318 G.shell_ver = const_shell_ver; /* copying struct here */
6319 G.top_var = &G.shell_ver;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00006320 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00006321 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
6322 /* Initialize our shell local variables with the values
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006323 * currently living in the environment */
Denis Vlasenko87a86552008-07-29 19:43:10 +00006324 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00006325 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006326 if (e) while (*e) {
6327 char *value = strchr(*e, '=');
6328 if (value) { /* paranoia */
6329 cur_var->next = xzalloc(sizeof(*cur_var));
6330 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00006331 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006332 cur_var->max_len = strlen(*e);
6333 cur_var->flg_export = 1;
6334 }
6335 e++;
6336 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00006337 debug_printf_env("putenv '%s'\n", hush_version_str);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00006338 putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */
Denis Vlasenko38f63192007-01-22 09:03:07 +00006339#if ENABLE_FEATURE_EDITING
Denis Vlasenko87a86552008-07-29 19:43:10 +00006340 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00006341#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00006342 G.global_argc = argc;
6343 G.global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00006344 /* Initialize some more globals to non-zero values */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00006345 cmdedit_update_prompt();
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00006346
Denis Vlasenkoed782372009-04-10 00:45:02 +00006347 if (setjmp(die_jmp)) {
6348 /* xfunc has failed! die die die */
6349 /* no EXIT traps, this is an escape hatch! */
6350 G.exiting = 1;
6351 hush_exit(xfunc_error_retval);
6352 }
6353
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006354 /* Shell is non-interactive at first. We need to call
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006355 * block_signals(0) if we are going to execute "sh <script>",
6356 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006357 * If we later decide that we are interactive, we run block_signals(0)
6358 * (or re-run block_signals(1) if we ran block_signals(0) before)
6359 * in order to intercept (more) signals.
6360 */
6361
6362 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00006363 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02006364 builtin_argc = 0;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006365 while (1) {
6366 opt = getopt(argc, argv, "c:xins"
6367#if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00006368 "<:$:R:V:"
6369# if ENABLE_HUSH_FUNCTIONS
6370 "F:"
6371# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006372#endif
6373 );
6374 if (opt <= 0)
6375 break;
Eric Andersen25f27032001-04-26 23:22:31 +00006376 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006377 case 'c':
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02006378 /* Possibilities:
6379 * sh ... -c 'script'
6380 * sh ... -c 'script' ARG0 [ARG1...]
6381 * On NOMMU, if builtin_argc != 0,
6382 * sh ... -c 'builtin' [BARGV...] "" ARG0 [ARG1...]
6383 * "" needs to be replaced with NULL
6384 * and BARGV vector fed to builtin function.
6385 * Note: this form never happens:
6386 * sh ... -c 'builtin' [BARGV...] ""
6387 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006388 if (!G.root_pid)
6389 G.root_pid = getpid();
Denis Vlasenko87a86552008-07-29 19:43:10 +00006390 G.global_argv = argv + optind;
6391 G.global_argc = argc - optind;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02006392 if (builtin_argc) {
6393 /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */
6394 const struct built_in_command *x;
6395
6396 block_signals(0); /* 0: called 1st time */
6397 x = find_builtin(optarg);
6398 if (x) { /* paranoia */
6399 G.global_argc -= builtin_argc; /* skip [BARGV...] "" */
6400 G.global_argv += builtin_argc;
6401 G.global_argv[-1] = NULL; /* replace "" */
6402 G.last_exitcode = x->function(argv + optind - 1);
6403 }
6404 goto final_return;
6405 }
6406 if (!G.global_argv[0]) {
6407 /* -c 'script' (no params): prevent empty $0 */
6408 G.global_argv--; /* points to argv[i] of 'script' */
6409 G.global_argv[0] = argv[0];
6410 G.global_argc--;
6411 } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006412 block_signals(0); /* 0: called 1st time */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006413 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006414 goto final_return;
6415 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00006416 /* Well, we cannot just declare interactiveness,
6417 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006418 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006419 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00006420 case 's':
6421 /* "-s" means "read from stdin", but this is how we always
6422 * operate, so simply do nothing here. */
6423 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006424#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00006425 case '<': /* "big heredoc" support */
6426 full_write(STDOUT_FILENO, optarg, strlen(optarg));
6427 _exit(0);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006428 case '$':
Denis Vlasenko34e573d2009-04-06 12:56:28 +00006429 G.root_pid = bb_strtou(optarg, &optarg, 16);
6430 optarg++;
6431 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
6432 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006433 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02006434 optarg++;
6435 builtin_argc = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006436# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00006437 optarg++;
6438 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006439# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00006440 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006441 case 'R':
6442 case 'V':
Denys Vlasenko295fef82009-06-03 12:47:26 +02006443 set_local_var(xstrdup(optarg), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ opt == 'R');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006444 break;
Denis Vlasenkobc569742009-04-12 20:35:19 +00006445# if ENABLE_HUSH_FUNCTIONS
6446 case 'F': {
6447 struct function *funcp = new_function(optarg);
6448 /* funcp->name is already set to optarg */
6449 /* funcp->body is set to NULL. It's a special case. */
6450 funcp->body_as_string = argv[optind];
6451 optind++;
6452 break;
6453 }
6454# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006455#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006456 case 'n':
6457 case 'x':
Denis Vlasenkod5762932009-03-31 11:22:57 +00006458 if (!set_mode('-', opt))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006459 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006460 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00006461#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006462 fprintf(stderr, "Usage: sh [FILE]...\n"
6463 " or: sh -c command [args]...\n\n");
6464 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00006465#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006466 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00006467#endif
Eric Andersen25f27032001-04-26 23:22:31 +00006468 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006469 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006470
6471 if (!G.root_pid)
6472 G.root_pid = getpid();
Denis Vlasenkof9375282009-04-05 19:13:39 +00006473
6474 /* If we are login shell... */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006475 if (argv[0] && argv[0][0] == '-') {
6476 FILE *input;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006477 debug_printf("sourcing /etc/profile\n");
6478 input = fopen_for_read("/etc/profile");
6479 if (input != NULL) {
6480 close_on_exec_on(fileno(input));
Denis Vlasenkof9375282009-04-05 19:13:39 +00006481 block_signals(0); /* 0: called 1st time */
6482 signal_mask_is_inited = 1;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006483 parse_and_run_file(input);
6484 fclose(input);
6485 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006486 /* bash: after sourcing /etc/profile,
6487 * tries to source (in the given order):
6488 * ~/.bash_profile, ~/.bash_login, ~/.profile,
Denys Vlasenko28a105d2009-06-01 11:26:30 +02006489 * stopping on first found. --noprofile turns this off.
Denis Vlasenkof9375282009-04-05 19:13:39 +00006490 * bash also sources ~/.bash_logout on exit.
6491 * If called as sh, skips .bash_XXX files.
6492 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006493 }
6494
Denis Vlasenkof9375282009-04-05 19:13:39 +00006495 if (argv[optind]) {
6496 FILE *input;
6497 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006498 * "bash <script>" (which is never interactive (unless -i?))
6499 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00006500 * If called as sh, does the same but with $ENV.
6501 */
6502 debug_printf("running script '%s'\n", argv[optind]);
6503 G.global_argv = argv + optind;
6504 G.global_argc = argc - optind;
6505 input = xfopen_for_read(argv[optind]);
6506 close_on_exec_on(fileno(input));
6507 if (!signal_mask_is_inited)
6508 block_signals(0); /* 0: called 1st time */
6509 parse_and_run_file(input);
6510#if ENABLE_FEATURE_CLEAN_UP
6511 fclose(input);
6512#endif
6513 goto final_return;
6514 }
6515
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006516 /* Up to here, shell was non-interactive. Now it may become one.
6517 * NB: don't forget to (re)run block_signals(0/1) as needed.
6518 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006519
Denys Vlasenko28a105d2009-06-01 11:26:30 +02006520 /* A shell is interactive if the '-i' flag was given,
6521 * or if all of the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00006522 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00006523 * no arguments remaining or the -s flag given
6524 * standard input is a terminal
6525 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00006526 * Refer to Posix.2, the description of the 'sh' utility.
6527 */
6528#if ENABLE_HUSH_JOB
6529 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Mike Frysinger38478a62009-05-20 04:48:06 -04006530 G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
6531 debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp);
6532 if (G_saved_tty_pgrp < 0)
6533 G_saved_tty_pgrp = 0;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006534
6535 /* try to dup stdin to high fd#, >= 255 */
6536 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
6537 if (G_interactive_fd < 0) {
6538 /* try to dup to any fd */
6539 G_interactive_fd = dup(STDIN_FILENO);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006540 if (G_interactive_fd < 0) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006541 /* give up */
6542 G_interactive_fd = 0;
Mike Frysinger38478a62009-05-20 04:48:06 -04006543 G_saved_tty_pgrp = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006544 }
6545 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006546// TODO: track & disallow any attempts of user
6547// to (inadvertently) close/redirect G_interactive_fd
Eric Andersen25f27032001-04-26 23:22:31 +00006548 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006549 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006550 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00006551 close_on_exec_on(G_interactive_fd);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006552
Mike Frysinger38478a62009-05-20 04:48:06 -04006553 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006554 /* If we were run as 'hush &', sleep until we are
6555 * in the foreground (tty pgrp == our pgrp).
6556 * If we get started under a job aware app (like bash),
6557 * make sure we are now in charge so we don't fight over
6558 * who gets the foreground */
6559 while (1) {
6560 pid_t shell_pgrp = getpgrp();
Mike Frysinger38478a62009-05-20 04:48:06 -04006561 G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
6562 if (G_saved_tty_pgrp == shell_pgrp)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006563 break;
6564 /* send TTIN to ourself (should stop us) */
6565 kill(- shell_pgrp, SIGTTIN);
6566 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006567 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006568
Denis Vlasenkof9375282009-04-05 19:13:39 +00006569 /* Block some signals */
6570 block_signals(signal_mask_is_inited);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006571
Mike Frysinger38478a62009-05-20 04:48:06 -04006572 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006573 /* Set other signals to restore saved_tty_pgrp */
6574 set_fatal_handlers();
6575 /* Put ourselves in our own process group
6576 * (bash, too, does this only if ctty is available) */
6577 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
6578 /* Grab control of the terminal */
6579 tcsetpgrp(G_interactive_fd, getpid());
6580 }
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00006581 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00006582 * (we reset die_sleep = 0 whereever we [v]fork) */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006583 enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006584 } else if (!signal_mask_is_inited) {
6585 block_signals(0); /* 0: called 1st time */
6586 } /* else: block_signals(0) was done before */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006587#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00006588 /* No job control compiled in, only prompt/line editing */
6589 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006590 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
6591 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006592 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006593 G_interactive_fd = dup(STDIN_FILENO);
6594 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006595 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006596 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006597 }
6598 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006599 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00006600 close_on_exec_on(G_interactive_fd);
6601 block_signals(signal_mask_is_inited);
6602 } else if (!signal_mask_is_inited) {
6603 block_signals(0);
6604 }
6605#else
6606 /* We have interactiveness code disabled */
6607 if (!signal_mask_is_inited) {
6608 block_signals(0);
6609 }
6610#endif
6611 /* bash:
6612 * if interactive but not a login shell, sources ~/.bashrc
6613 * (--norc turns this off, --rcfile <file> overrides)
6614 */
6615
6616 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Mike Frysinger258275d2009-04-05 21:19:43 +00006617 printf("\n\n%s hush - the humble shell\n", bb_banner);
Mike Frysinger26cf2832009-04-24 06:40:30 +00006618 if (ENABLE_HUSH_HELP)
6619 puts("Enter 'help' for a list of built-in commands.");
6620 puts("");
Mike Frysingerb2705e12009-03-23 08:44:02 +00006621 }
6622
Denis Vlasenkof9375282009-04-05 19:13:39 +00006623 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00006624
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006625 final_return:
Denis Vlasenko38f63192007-01-22 09:03:07 +00006626#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko87a86552008-07-29 19:43:10 +00006627 if (G.cwd != bb_msg_unknown)
6628 free((char*)G.cwd);
6629 cur_var = G.top_var->next;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006630 while (cur_var) {
6631 struct variable *tmp = cur_var;
6632 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00006633 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006634 cur_var = cur_var->next;
6635 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00006636 }
Eric Andersen25f27032001-04-26 23:22:31 +00006637#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006638 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00006639}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00006640
6641
6642#if ENABLE_LASH
6643int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
6644int lash_main(int argc, char **argv)
6645{
6646 //bb_error_msg("lash is deprecated, please use hush instead");
6647 return hush_main(argc, argv);
6648}
6649#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006650
6651
6652/*
6653 * Built-ins
6654 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02006655static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006656{
6657 return 0;
6658}
6659
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02006660static int FAST_FUNC builtin_test(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006661{
6662 int argc = 0;
6663 while (*argv) {
6664 argc++;
6665 argv++;
6666 }
6667 return test_main(argc, argv - argc);
6668}
6669
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02006670static int FAST_FUNC builtin_echo(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006671{
6672 int argc = 0;
6673 while (*argv) {
6674 argc++;
6675 argv++;
6676 }
6677 return echo_main(argc, argv - argc);
6678}
6679
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02006680static int FAST_FUNC builtin_eval(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006681{
6682 int rcode = EXIT_SUCCESS;
6683
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006684 if (*++argv) {
6685 char *str = expand_strvec_to_string(argv);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006686 /* bash:
6687 * eval "echo Hi; done" ("done" is syntax error):
6688 * "echo Hi" will not execute too.
6689 */
6690 parse_and_run_string(str);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006691 free(str);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006692 rcode = G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006693 }
6694 return rcode;
6695}
6696
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02006697static int FAST_FUNC builtin_cd(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006698{
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006699 const char *newdir = argv[1];
6700 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006701 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006702 * bash says "bash: cd: HOME not set" and does nothing
6703 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006704 */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00006705 newdir = get_local_var_value("HOME") ? : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006706 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006707 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006708 /* Mimic bash message exactly */
6709 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006710 return EXIT_FAILURE;
6711 }
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02006712 get_cwd(1);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006713 return EXIT_SUCCESS;
6714}
6715
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02006716static int FAST_FUNC builtin_exec(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006717{
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006718 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006719 return EXIT_SUCCESS; /* bash does this */
6720 {
6721#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00006722 nommu_save_t dummy;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006723#endif
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00006724 /* TODO: if exec fails, bash does NOT exit! We do... */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006725 pseudo_exec_argv(&dummy, argv, 0, NULL);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006726 /* never returns */
6727 }
6728}
6729
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02006730static int FAST_FUNC builtin_exit(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006731{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00006732 debug_printf_exec("%s()\n", __func__);
Denis Vlasenko40e84372009-04-18 11:23:38 +00006733
6734 /* interactive bash:
6735 * # trap "echo EEE" EXIT
6736 * # exit
6737 * exit
6738 * There are stopped jobs.
6739 * (if there are _stopped_ jobs, running ones don't count)
6740 * # exit
6741 * exit
6742 # EEE (then bash exits)
6743 *
6744 * we can use G.exiting = -1 as indicator "last cmd was exit"
6745 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00006746
6747 /* note: EXIT trap is run by hush_exit */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006748 if (*++argv == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006749 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006750 /* mimic bash: exit 123abc == exit 255 + error msg */
6751 xfunc_error_retval = 255;
6752 /* bash: exit -2 == exit 254, no error msg */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006753 hush_exit(xatoi(*argv) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006754}
6755
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006756static void print_escaped(const char *s)
6757{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02006758 if (*s == '\'')
6759 goto squote;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006760 do {
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02006761 const char *p = strchrnul(s, '\'');
6762 /* print 'xxxx', possibly just '' */
6763 printf("'%.*s'", (int)(p - s), s);
6764 if (*p == '\0')
6765 break;
6766 s = p;
6767 squote:
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006768 /* s points to '; print "'''...'''" */
6769 putchar('"');
6770 do putchar('\''); while (*++s == '\'');
6771 putchar('"');
6772 } while (*s);
6773}
6774
Denys Vlasenko295fef82009-06-03 12:47:26 +02006775#if !ENABLE_HUSH_LOCAL
6776#define helper_export_local(argv, exp, lvl) \
6777 helper_export_local(argv, exp)
6778#endif
6779static void helper_export_local(char **argv, int exp, int lvl)
6780{
6781 do {
6782 char *name = *argv;
6783
6784 /* So far we do not check that name is valid (TODO?) */
6785
6786 if (strchr(name, '=') == NULL) {
6787 struct variable *var;
6788
6789 var = get_local_var(name);
6790 if (exp == -1) { /* unexporting? */
6791 /* export -n NAME (without =VALUE) */
6792 if (var) {
6793 var->flg_export = 0;
6794 debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
6795 unsetenv(name);
6796 } /* else: export -n NOT_EXISTING_VAR: no-op */
6797 continue;
6798 }
6799 if (exp == 1) { /* exporting? */
6800 /* export NAME (without =VALUE) */
6801 if (var) {
6802 var->flg_export = 1;
6803 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
6804 putenv(var->varstr);
6805 continue;
6806 }
6807 }
6808 /* Exporting non-existing variable.
6809 * bash does not put it in environment,
6810 * but remembers that it is exported,
6811 * and does put it in env when it is set later.
6812 * We just set it to "" and export. */
6813 /* Or, it's "local NAME" (without =VALUE).
6814 * bash sets the value to "". */
6815 name = xasprintf("%s=", name);
6816 } else {
6817 /* (Un)exporting/making local NAME=VALUE */
6818 name = xstrdup(name);
6819 }
6820 set_local_var(name, /*exp:*/ exp, /*lvl:*/ lvl, /*ro:*/ 0);
6821 } while (*++argv);
6822}
6823
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02006824static int FAST_FUNC builtin_export(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006825{
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006826 unsigned opt_unexport;
6827
Denys Vlasenkodf5131c2009-06-07 16:04:17 +02006828#if ENABLE_HUSH_EXPORT_N
6829 /* "!": do not abort on errors */
6830 opt_unexport = getopt32(argv, "!n");
6831 if (opt_unexport == (uint32_t)-1)
6832 return EXIT_FAILURE;
6833 argv += optind;
6834#else
6835 opt_unexport = 0;
6836 argv++;
6837#endif
6838
6839 if (argv[0] == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006840 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006841 if (e) {
6842 while (*e) {
6843#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006844 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006845#else
6846 /* ash emits: export VAR='VAL'
6847 * bash: declare -x VAR="VAL"
6848 * we follow ash example */
6849 const char *s = *e++;
6850 const char *p = strchr(s, '=');
6851
6852 if (!p) /* wtf? take next variable */
6853 continue;
6854 /* export var= */
6855 printf("export %.*s", (int)(p - s) + 1, s);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006856 print_escaped(p + 1);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006857 putchar('\n');
6858#endif
6859 }
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006860 /*fflush(stdout); - done after each builtin anyway */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006861 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006862 return EXIT_SUCCESS;
6863 }
6864
Denys Vlasenko295fef82009-06-03 12:47:26 +02006865 helper_export_local(argv, (opt_unexport ? -1 : 1), 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006866
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006867 return EXIT_SUCCESS;
6868}
6869
Denys Vlasenko295fef82009-06-03 12:47:26 +02006870#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02006871static int FAST_FUNC builtin_local(char **argv)
Denys Vlasenko295fef82009-06-03 12:47:26 +02006872{
6873 if (G.func_nest_level == 0) {
6874 bb_error_msg("%s: not in a function", argv[0]);
6875 return EXIT_FAILURE; /* bash compat */
6876 }
6877 helper_export_local(argv, 0, G.func_nest_level);
6878 return EXIT_SUCCESS;
6879}
6880#endif
6881
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02006882static int FAST_FUNC builtin_trap(char **argv)
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006883{
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006884 int sig;
6885 char *new_cmd;
6886
6887 if (!G.traps)
6888 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
6889
6890 argv++;
6891 if (!*argv) {
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00006892 int i;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006893 /* No args: print all trapped */
6894 for (i = 0; i < NSIG; ++i) {
6895 if (G.traps[i]) {
6896 printf("trap -- ");
6897 print_escaped(G.traps[i]);
6898 printf(" %s\n", get_signame(i));
6899 }
6900 }
6901 /*fflush(stdout); - done after each builtin anyway */
6902 return EXIT_SUCCESS;
6903 }
6904
6905 new_cmd = NULL;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006906 /* If first arg is a number: reset all specified signals */
6907 sig = bb_strtou(*argv, NULL, 10);
6908 if (errno == 0) {
6909 int ret;
6910 process_sig_list:
6911 ret = EXIT_SUCCESS;
6912 while (*argv) {
6913 sig = get_signum(*argv++);
6914 if (sig < 0 || sig >= NSIG) {
6915 ret = EXIT_FAILURE;
6916 /* Mimic bash message exactly */
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00006917 bb_perror_msg("trap: %s: invalid signal specification", argv[-1]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006918 continue;
6919 }
6920
6921 free(G.traps[sig]);
6922 G.traps[sig] = xstrdup(new_cmd);
6923
6924 debug_printf("trap: setting SIG%s (%i) to '%s'",
6925 get_signame(sig), sig, G.traps[sig]);
6926
6927 /* There is no signal for 0 (EXIT) */
6928 if (sig == 0)
6929 continue;
6930
6931 if (new_cmd) {
6932 sigaddset(&G.blocked_set, sig);
6933 } else {
6934 /* There was a trap handler, we are removing it
6935 * (if sig has non-DFL handling,
6936 * we don't need to do anything) */
6937 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
6938 continue;
6939 sigdelset(&G.blocked_set, sig);
6940 }
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006941 }
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00006942 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006943 return ret;
6944 }
6945
6946 if (!argv[1]) { /* no second arg */
6947 bb_error_msg("trap: invalid arguments");
6948 return EXIT_FAILURE;
6949 }
6950
6951 /* First arg is "-": reset all specified to default */
6952 /* First arg is "--": skip it, the rest is "handler SIGs..." */
6953 /* Everything else: set arg as signal handler
6954 * (includes "" case, which ignores signal) */
6955 if (argv[0][0] == '-') {
6956 if (argv[0][1] == '\0') { /* "-" */
6957 /* new_cmd remains NULL: "reset these sigs" */
6958 goto reset_traps;
6959 }
6960 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
6961 argv++;
6962 }
6963 /* else: "-something", no special meaning */
6964 }
6965 new_cmd = *argv;
6966 reset_traps:
6967 argv++;
6968 goto process_sig_list;
6969}
6970
Mike Frysinger93cadc22009-05-27 17:06:25 -04006971/* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02006972static int FAST_FUNC builtin_type(char **argv)
Mike Frysinger93cadc22009-05-27 17:06:25 -04006973{
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02006974 int ret = EXIT_SUCCESS;
Mike Frysinger93cadc22009-05-27 17:06:25 -04006975
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02006976 while (*++argv) {
Mike Frysinger93cadc22009-05-27 17:06:25 -04006977 const char *type;
Denys Vlasenko171932d2009-05-28 17:07:22 +02006978 char *path = NULL;
Mike Frysinger93cadc22009-05-27 17:06:25 -04006979
6980 if (0) {} /* make conditional compile easier below */
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02006981 /*else if (find_alias(*argv))
Mike Frysinger93cadc22009-05-27 17:06:25 -04006982 type = "an alias";*/
6983#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02006984 else if (find_function(*argv))
Mike Frysinger93cadc22009-05-27 17:06:25 -04006985 type = "a function";
6986#endif
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02006987 else if (find_builtin(*argv))
Mike Frysinger93cadc22009-05-27 17:06:25 -04006988 type = "a shell builtin";
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02006989 else if ((path = find_in_path(*argv)) != NULL)
6990 type = path;
Denys Vlasenko5d7cca22009-05-28 09:58:43 +02006991 else {
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02006992 bb_error_msg("type: %s: not found", *argv);
Mike Frysinger93cadc22009-05-27 17:06:25 -04006993 ret = EXIT_FAILURE;
Denys Vlasenko5d7cca22009-05-28 09:58:43 +02006994 continue;
6995 }
Mike Frysinger93cadc22009-05-27 17:06:25 -04006996
Denys Vlasenko5d7cca22009-05-28 09:58:43 +02006997 printf("%s is %s\n", *argv, type);
6998 free(path);
Mike Frysinger93cadc22009-05-27 17:06:25 -04006999 }
7000
7001 return ret;
7002}
7003
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007004#if ENABLE_HUSH_JOB
7005/* built-in 'fg' and 'bg' handler */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007006static int FAST_FUNC builtin_fg_bg(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007007{
7008 int i, jobnum;
7009 struct pipe *pi;
7010
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007011 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007012 return EXIT_FAILURE;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007013
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007014 /* If they gave us no args, assume they want the last backgrounded task */
7015 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00007016 for (pi = G.job_list; pi; pi = pi->next) {
7017 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007018 goto found;
7019 }
7020 }
7021 bb_error_msg("%s: no current job", argv[0]);
7022 return EXIT_FAILURE;
7023 }
7024 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
7025 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
7026 return EXIT_FAILURE;
7027 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00007028 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007029 if (pi->jobid == jobnum) {
7030 goto found;
7031 }
7032 }
7033 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
7034 return EXIT_FAILURE;
7035 found:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00007036 /* TODO: bash prints a string representation
7037 * of job being foregrounded (like "sleep 1 | cat") */
Mike Frysinger38478a62009-05-20 04:48:06 -04007038 if (argv[0][0] == 'f' && G_saved_tty_pgrp) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007039 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007040 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007041 }
7042
7043 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00007044 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
7045 for (i = 0; i < pi->num_cmds; i++) {
7046 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
7047 pi->cmds[i].is_stopped = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007048 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00007049 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007050
7051 i = kill(- pi->pgrp, SIGCONT);
7052 if (i < 0) {
7053 if (errno == ESRCH) {
7054 delete_finished_bg_job(pi);
7055 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007056 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00007057 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007058 }
7059
Denis Vlasenko34d4d892009-04-04 20:24:37 +00007060 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007061 remove_bg_job(pi);
7062 return checkjobs_and_fg_shell(pi);
7063 }
7064 return EXIT_SUCCESS;
7065}
7066#endif
7067
7068#if ENABLE_HUSH_HELP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007069static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007070{
7071 const struct built_in_command *x;
7072
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007073 printf(
Denis Vlasenko34d4d892009-04-04 20:24:37 +00007074 "Built-in commands:\n"
7075 "------------------\n");
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007076 for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) {
7077 if (x->descr)
7078 printf("%s\t%s\n", x->cmd, x->descr);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007079 }
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007080 bb_putchar('\n');
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007081 return EXIT_SUCCESS;
7082}
7083#endif
7084
7085#if ENABLE_HUSH_JOB
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007086static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007087{
7088 struct pipe *job;
7089 const char *status_string;
7090
Denis Vlasenko87a86552008-07-29 19:43:10 +00007091 for (job = G.job_list; job; job = job->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00007092 if (job->alive_cmds == job->stopped_cmds)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007093 status_string = "Stopped";
7094 else
7095 status_string = "Running";
7096
7097 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
7098 }
7099 return EXIT_SUCCESS;
7100}
7101#endif
7102
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00007103#if HUSH_DEBUG
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007104static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM)
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00007105{
7106 void *p;
7107 unsigned long l;
7108
7109 /* Crude attempt to find where "free memory" starts,
7110 * sans fragmentation. */
7111 p = malloc(240);
7112 l = (unsigned long)p;
7113 free(p);
7114 p = malloc(3400);
7115 if (l < (unsigned long)p) l = (unsigned long)p;
7116 free(p);
7117
7118 if (!G.memleak_value)
7119 G.memleak_value = l;
7120
7121 l -= G.memleak_value;
7122 if ((long)l < 0)
7123 l = 0;
7124 l /= 1024;
7125 if (l > 127)
7126 l = 127;
7127
7128 /* Exitcode is "how many kilobytes we leaked since 1st call" */
7129 return l;
7130}
7131#endif
7132
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007133static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007134{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007135 puts(get_cwd(0));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007136 return EXIT_SUCCESS;
7137}
7138
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007139static int FAST_FUNC builtin_read(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007140{
7141 char *string;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00007142 const char *name = "REPLY";
7143
7144 if (argv[1]) {
7145 name = argv[1];
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00007146 /* bash (3.2.33(1)) bug: "read 0abcd" will execute,
7147 * and _after_ that_ it will complain */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00007148 if (!is_well_formed_var_name(name, '\0')) {
7149 /* Mimic bash message */
7150 bb_error_msg("read: '%s': not a valid identifier", name);
7151 return 1;
7152 }
7153 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007154
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00007155//TODO: bash unbackslashes input, splits words and puts them in argv[i]
7156
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007157 string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
Denys Vlasenko295fef82009-06-03 12:47:26 +02007158 return set_local_var(string, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007159}
7160
Mike Frysingerad88d5a2009-03-28 13:44:51 +00007161/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
7162 * built-in 'set' handler
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00007163 * SUSv3 says:
Mike Frysingerad88d5a2009-03-28 13:44:51 +00007164 * set [-abCefhmnuvx] [-o option] [argument...]
7165 * set [+abCefhmnuvx] [+o option] [argument...]
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00007166 * set -- [argument...]
7167 * set -o
7168 * set +o
7169 * Implementations shall support the options in both their hyphen and
7170 * plus-sign forms. These options can also be specified as options to sh.
7171 * Examples:
7172 * Write out all variables and their values: set
7173 * Set $1, $2, and $3 and set "$#" to 3: set c a b
7174 * Turn on the -x and -v options: set -xv
7175 * Unset all positional parameters: set --
7176 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
7177 * Set the positional parameters to the expansion of x, even if x expands
7178 * with a leading '-' or '+': set -- $x
7179 *
Mike Frysingerad88d5a2009-03-28 13:44:51 +00007180 * So far, we only support "set -- [argument...]" and some of the short names.
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00007181 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007182static int FAST_FUNC builtin_set(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007183{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00007184 int n;
7185 char **pp, **g_argv;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00007186 char *arg = *++argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007187
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00007188 if (arg == NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00007189 struct variable *e;
Denis Vlasenko87a86552008-07-29 19:43:10 +00007190 for (e = G.top_var; e; e = e->next)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007191 puts(e->varstr);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00007192 return EXIT_SUCCESS;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00007193 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007194
Mike Frysingerad88d5a2009-03-28 13:44:51 +00007195 do {
7196 if (!strcmp(arg, "--")) {
7197 ++argv;
7198 goto set_argv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00007199 }
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00007200 if (arg[0] != '+' && arg[0] != '-')
7201 break;
7202 for (n = 1; arg[n]; ++n)
7203 if (set_mode(arg[0], arg[n]))
7204 goto error;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00007205 } while ((arg = *++argv) != NULL);
7206 /* Now argv[0] is 1st argument */
7207
Mike Frysingerad88d5a2009-03-28 13:44:51 +00007208 if (arg == NULL)
7209 return EXIT_SUCCESS;
7210 set_argv:
7211
Denis Vlasenko424f79b2009-03-22 14:23:34 +00007212 /* NB: G.global_argv[0] ($0) is never freed/changed */
7213 g_argv = G.global_argv;
7214 if (G.global_args_malloced) {
7215 pp = g_argv;
7216 while (*++pp)
7217 free(*pp);
7218 g_argv[1] = NULL;
7219 } else {
7220 G.global_args_malloced = 1;
7221 pp = xzalloc(sizeof(pp[0]) * 2);
7222 pp[0] = g_argv[0]; /* retain $0 */
7223 g_argv = pp;
7224 }
7225 /* This realloc's G.global_argv */
7226 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
7227
7228 n = 1;
7229 while (*++pp)
7230 n++;
7231 G.global_argc = n;
7232
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007233 return EXIT_SUCCESS;
Mike Frysingerad88d5a2009-03-28 13:44:51 +00007234
7235 /* Nothing known, so abort */
7236 error:
7237 bb_error_msg("set: %s: invalid option", arg);
7238 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007239}
7240
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007241static int FAST_FUNC builtin_shift(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007242{
7243 int n = 1;
7244 if (argv[1]) {
7245 n = atoi(argv[1]);
7246 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00007247 if (n >= 0 && n < G.global_argc) {
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00007248 if (G.global_args_malloced) {
7249 int m = 1;
7250 while (m <= n)
7251 free(G.global_argv[m++]);
7252 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00007253 G.global_argc -= n;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00007254 memmove(&G.global_argv[1], &G.global_argv[n+1],
7255 G.global_argc * sizeof(G.global_argv[0]));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007256 return EXIT_SUCCESS;
7257 }
7258 return EXIT_FAILURE;
7259}
7260
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007261static int FAST_FUNC builtin_source(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007262{
Mike Frysinger93cadc22009-05-27 17:06:25 -04007263 char *arg_path;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007264 FILE *input;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00007265 save_arg_t sv;
Mike Frysinger885b6f22009-04-18 21:04:25 +00007266#if ENABLE_HUSH_FUNCTIONS
7267 smallint sv_flg;
7268#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007269
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007270 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007271 return EXIT_FAILURE;
7272
Mike Frysinger93cadc22009-05-27 17:06:25 -04007273 if (strchr(*argv, '/') == NULL && (arg_path = find_in_path(*argv)) != NULL) {
7274 input = fopen_for_read(arg_path);
7275 free(arg_path);
7276 } else
7277 input = fopen_or_warn(*argv, "r");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007278 if (!input) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007279 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007280 return EXIT_FAILURE;
7281 }
7282 close_on_exec_on(fileno(input));
7283
Mike Frysinger885b6f22009-04-18 21:04:25 +00007284#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007285 sv_flg = G.flag_return_in_progress;
7286 /* "we are inside sourced file, ok to use return" */
7287 G.flag_return_in_progress = -1;
Mike Frysinger885b6f22009-04-18 21:04:25 +00007288#endif
Denis Vlasenko270b1c32009-04-17 18:54:50 +00007289 save_and_replace_G_args(&sv, argv);
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007290
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007291 parse_and_run_file(input);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007292 fclose(input);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00007293
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007294 restore_G_args(&sv, argv);
Mike Frysinger885b6f22009-04-18 21:04:25 +00007295#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007296 G.flag_return_in_progress = sv_flg;
Mike Frysinger885b6f22009-04-18 21:04:25 +00007297#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007298
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00007299 return G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007300}
7301
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007302static int FAST_FUNC builtin_umask(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007303{
Denis Vlasenkoeb858492009-04-18 02:06:54 +00007304 int rc;
7305 mode_t mask;
7306
7307 mask = umask(0);
7308 if (argv[1]) {
7309 mode_t old_mask = mask;
7310
7311 mask ^= 0777;
7312 rc = bb_parse_mode(argv[1], &mask);
7313 mask ^= 0777;
7314 if (rc == 0) {
7315 mask = old_mask;
7316 /* bash messages:
7317 * bash: umask: 'q': invalid symbolic mode operator
7318 * bash: umask: 999: octal number out of range
7319 */
7320 bb_error_msg("%s: '%s' invalid mode", argv[0], argv[1]);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007321 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007322 } else {
Denis Vlasenkoeb858492009-04-18 02:06:54 +00007323 rc = 1;
7324 /* Mimic bash */
7325 printf("%04o\n", (unsigned) mask);
7326 /* fall through and restore mask which we set to 0 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007327 }
Denis Vlasenkoeb858492009-04-18 02:06:54 +00007328 umask(mask);
7329
7330 return !rc; /* rc != 0 - success */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007331}
7332
Mike Frysingerd690f682009-03-30 06:50:54 +00007333/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007334static int FAST_FUNC builtin_unset(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007335{
Mike Frysingerd690f682009-03-30 06:50:54 +00007336 int ret;
Denis Vlasenko28e67962009-04-26 23:22:40 +00007337 unsigned opts;
Mike Frysingerd690f682009-03-30 06:50:54 +00007338
Denis Vlasenko28e67962009-04-26 23:22:40 +00007339 /* "!": do not abort on errors */
7340 /* "+": stop at 1st non-option */
7341 opts = getopt32(argv, "!+vf");
7342 if (opts == (unsigned)-1)
7343 return EXIT_FAILURE;
7344 if (opts == 3) {
7345 bb_error_msg("unset: -v and -f are exclusive");
7346 return EXIT_FAILURE;
Mike Frysingerd690f682009-03-30 06:50:54 +00007347 }
Denis Vlasenko28e67962009-04-26 23:22:40 +00007348 argv += optind;
Mike Frysingerd690f682009-03-30 06:50:54 +00007349
7350 ret = EXIT_SUCCESS;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007351 while (*argv) {
Denis Vlasenko28e67962009-04-26 23:22:40 +00007352 if (!(opts & 2)) { /* not -f */
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007353 if (unset_local_var(*argv)) {
7354 /* unset <nonexistent_var> doesn't fail.
7355 * Error is when one tries to unset RO var.
7356 * Message was printed by unset_local_var. */
Mike Frysingerd690f682009-03-30 06:50:54 +00007357 ret = EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007358 }
Mike Frysingerd690f682009-03-30 06:50:54 +00007359 }
Denis Vlasenko40e84372009-04-18 11:23:38 +00007360#if ENABLE_HUSH_FUNCTIONS
7361 else {
7362 unset_func(*argv);
7363 }
7364#endif
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007365 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00007366 }
7367 return ret;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007368}
Denis Vlasenkobcb25532008-07-28 23:04:34 +00007369
Mike Frysinger56bdea12009-03-28 20:01:58 +00007370/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007371static int FAST_FUNC builtin_wait(char **argv)
Mike Frysinger56bdea12009-03-28 20:01:58 +00007372{
7373 int ret = EXIT_SUCCESS;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00007374 int status, sig;
Mike Frysinger56bdea12009-03-28 20:01:58 +00007375
Denis Vlasenko7566bae2009-03-31 17:24:49 +00007376 if (*++argv == NULL) {
7377 /* Don't care about wait results */
7378 /* Note 1: must wait until there are no more children */
7379 /* Note 2: must be interruptible */
7380 /* Examples:
7381 * $ sleep 3 & sleep 6 & wait
7382 * [1] 30934 sleep 3
7383 * [2] 30935 sleep 6
7384 * [1] Done sleep 3
7385 * [2] Done sleep 6
7386 * $ sleep 3 & sleep 6 & wait
7387 * [1] 30936 sleep 3
7388 * [2] 30937 sleep 6
7389 * [1] Done sleep 3
7390 * ^C <-- after ~4 sec from keyboard
7391 * $
7392 */
7393 sigaddset(&G.blocked_set, SIGCHLD);
7394 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7395 while (1) {
7396 checkjobs(NULL);
7397 if (errno == ECHILD)
7398 break;
7399 /* Wait for SIGCHLD or any other signal of interest */
7400 /* sigtimedwait with infinite timeout: */
7401 sig = sigwaitinfo(&G.blocked_set, NULL);
7402 if (sig > 0) {
7403 sig = check_and_run_traps(sig);
7404 if (sig && sig != SIGCHLD) { /* see note 2 */
7405 ret = 128 + sig;
7406 break;
7407 }
7408 }
7409 }
7410 sigdelset(&G.blocked_set, SIGCHLD);
7411 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7412 return ret;
7413 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00007414
Denis Vlasenko7566bae2009-03-31 17:24:49 +00007415 /* This is probably buggy wrt interruptible-ness */
Denis Vlasenkod5762932009-03-31 11:22:57 +00007416 while (*argv) {
7417 pid_t pid = bb_strtou(*argv, NULL, 10);
Mike Frysinger40b8dc42009-03-29 00:50:30 +00007418 if (errno) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00007419 /* mimic bash message */
7420 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00007421 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00007422 }
7423 if (waitpid(pid, &status, 0) == pid) {
Mike Frysinger56bdea12009-03-28 20:01:58 +00007424 if (WIFSIGNALED(status))
7425 ret = 128 + WTERMSIG(status);
7426 else if (WIFEXITED(status))
7427 ret = WEXITSTATUS(status);
Denis Vlasenkod5762932009-03-31 11:22:57 +00007428 else /* wtf? */
Mike Frysinger56bdea12009-03-28 20:01:58 +00007429 ret = EXIT_FAILURE;
7430 } else {
Denis Vlasenkod5762932009-03-31 11:22:57 +00007431 bb_perror_msg("wait %s", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00007432 ret = 127;
7433 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00007434 argv++;
Mike Frysinger56bdea12009-03-28 20:01:58 +00007435 }
7436
7437 return ret;
7438}
7439
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007440#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
7441static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
7442{
7443 if (argv[1]) {
7444 def = bb_strtou(argv[1], NULL, 10);
7445 if (errno || def < def_min || argv[2]) {
7446 bb_error_msg("%s: bad arguments", argv[0]);
7447 def = UINT_MAX;
7448 }
7449 }
7450 return def;
7451}
7452#endif
7453
Denis Vlasenkodadfb492008-07-29 10:16:05 +00007454#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007455static int FAST_FUNC builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00007456{
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007457 unsigned depth;
Denis Vlasenko87a86552008-07-29 19:43:10 +00007458 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00007459 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00007460 return EXIT_SUCCESS; /* bash compat */
7461 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00007462 G.flag_break_continue++; /* BC_BREAK = 1 */
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007463
7464 G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
7465 if (depth == UINT_MAX)
7466 G.flag_break_continue = BC_BREAK;
7467 if (G.depth_of_loop < depth)
Denis Vlasenko87a86552008-07-29 19:43:10 +00007468 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007469
Denis Vlasenkobcb25532008-07-28 23:04:34 +00007470 return EXIT_SUCCESS;
7471}
7472
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007473static int FAST_FUNC builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00007474{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00007475 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
7476 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00007477}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00007478#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007479
7480#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007481static int FAST_FUNC builtin_return(char **argv)
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007482{
7483 int rc;
7484
7485 if (G.flag_return_in_progress != -1) {
7486 bb_error_msg("%s: not in a function or sourced script", argv[0]);
7487 return EXIT_FAILURE; /* bash compat */
7488 }
7489
7490 G.flag_return_in_progress = 1;
7491
7492 /* bash:
7493 * out of range: wraps around at 256, does not error out
7494 * non-numeric param:
7495 * f() { false; return qwe; }; f; echo $?
7496 * bash: return: qwe: numeric argument required <== we do this
7497 * 255 <== we also do this
7498 */
7499 rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
7500 return rc;
7501}
7502#endif