blob: 7d851ed97d84f969ee6ec184657ebd1d4ec3f710 [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 *
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020045 * Bash stuff (optionally enabled):
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}
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020050 * let EXPR [EXPR...]
51 * Each EXPR is an arithmetic expression (ARITHMETIC EVALUATION)
52 * If the last arg evaluates to 0, let returns 1; 0 otherwise.
53 * NB: let `echo 'a=a + 1'` - error (IOW: multi-word expansion is used)
54 * ((EXPR))
55 * The EXPR is evaluated according to ARITHMETIC EVALUATION.
56 * This is exactly equivalent to let "expression".
Mike Frysinger25a6ca02009-03-28 13:59:26 +000057 *
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000058 * TODOs:
59 * grep for "TODO" and fix (some of them are easy)
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +020060 * builtins: ulimit
Denys Vlasenko6db47842009-09-05 20:15:17 +020061 * special variables (done: PWD)
Eric Andersen25f27032001-04-26 23:22:31 +000062 * follow IFS rules more precisely, including update semantics
Denys Vlasenko08218012009-06-03 14:43:56 +020063 * export builtin should be special, its arguments are assignments
64 * and therefore expansion of them should be "one-word" expansion:
65 * $ export i=`echo 'a b'` # export has one arg: "i=a b"
66 * compare with:
67 * $ ls i=`echo 'a b'` # ls has two args: "i=a" and "b"
68 * ls: cannot access i=a: No such file or directory
69 * ls: cannot access b: No such file or directory
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020070 * Note1: same applies to local builtin.
Denys Vlasenko08218012009-06-03 14:43:56 +020071 * Note2: bash 3.2.33(1) does this only if export word itself
72 * is not quoted:
73 * $ export i=`echo 'aaa bbb'`; echo "$i"
74 * aaa bbb
75 * $ "export" i=`echo 'aaa bbb'`; echo "$i"
76 * aaa
Eric Andersen25f27032001-04-26 23:22:31 +000077 *
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000078 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersen25f27032001-04-26 23:22:31 +000079 */
Denys Vlasenkocb6ff252009-05-04 00:14:30 +020080#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
Denys Vlasenko27726cb2009-09-12 14:48:33 +020081#include <malloc.h> /* for malloc_trim */
Denis Vlasenkobe709c22008-07-28 00:01:16 +000082#include <glob.h>
83/* #include <dmalloc.h> */
84#if ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +000085# include <fnmatch.h>
Denis Vlasenkobe709c22008-07-28 00:01:16 +000086#endif
Mike Frysinger98c52642009-04-02 10:02:37 +000087#include "math.h"
Mike Frysingera4f331d2009-04-07 06:03:22 +000088#include "match.h"
Denys Vlasenkocbe0b7f2009-10-09 22:00:58 +020089#if ENABLE_HUSH_RANDOM_SUPPORT
Denys Vlasenko20b3d142009-10-09 20:59:39 +020090# include "random.h"
Denys Vlasenko76ace252009-10-12 15:25:01 +020091#else
92# define CLEAR_RANDOM_T(rnd) ((void)0)
Denys Vlasenko20b3d142009-10-09 20:59:39 +020093#endif
Denis Vlasenko50f3aa42009-04-07 10:52:40 +000094#ifndef PIPE_BUF
Denys Vlasenkocb6ff252009-05-04 00:14:30 +020095# define PIPE_BUF 4096 /* amount of buffering in a pipe */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +000096#endif
Mike Frysinger98c52642009-04-02 10:02:37 +000097
Denis Vlasenko1943aec2009-04-09 14:15:57 +000098
Denys Vlasenko8d7be232009-05-25 16:38:32 +020099/* Build knobs */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000100#define LEAK_HUNTING 0
101#define BUILD_AS_NOMMU 0
102/* Enable/disable sanity checks. Ok to enable in production,
103 * only adds a bit of bloat. Set to >1 to get non-production level verbosity.
104 * Keeping 1 for now even in released versions.
105 */
106#define HUSH_DEBUG 1
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200107/* Slightly bigger (+200 bytes), but faster hush.
108 * So far it only enables a trick with counting SIGCHLDs and forks,
109 * which allows us to do fewer waitpid's.
110 * (we can detect a case where neither forks were done nor SIGCHLDs happened
111 * and therefore waitpid will return the same result as last time)
112 */
113#define ENABLE_HUSH_FAST 0
Denis Vlasenko1943aec2009-04-09 14:15:57 +0000114
115
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000116#if BUILD_AS_NOMMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000117# undef BB_MMU
118# undef USE_FOR_NOMMU
119# undef USE_FOR_MMU
120# define BB_MMU 0
121# define USE_FOR_NOMMU(...) __VA_ARGS__
122# define USE_FOR_MMU(...)
123#endif
124
Denis Vlasenko61befda2008-11-25 01:36:03 +0000125#if defined SINGLE_APPLET_MAIN
126/* STANDALONE does not make sense, and won't compile */
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000127# undef CONFIG_FEATURE_SH_STANDALONE
128# undef ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000129# undef IF_FEATURE_SH_STANDALONE
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000130# define IF_FEATURE_SH_STANDALONE(...)
131# define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__
Denys Vlasenko673e9452009-05-27 14:39:35 +0200132# define ENABLE_FEATURE_SH_STANDALONE 0
Denis Vlasenko61befda2008-11-25 01:36:03 +0000133#endif
134
Denis Vlasenko05743d72008-02-10 12:10:08 +0000135#if !ENABLE_HUSH_INTERACTIVE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000136# undef ENABLE_FEATURE_EDITING
137# define ENABLE_FEATURE_EDITING 0
138# undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
139# define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000140#endif
141
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000142/* Do we support ANY keywords? */
143#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000144# define HAS_KEYWORDS 1
145# define IF_HAS_KEYWORDS(...) __VA_ARGS__
146# define IF_HAS_NO_KEYWORDS(...)
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000147#else
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000148# define HAS_KEYWORDS 0
149# define IF_HAS_KEYWORDS(...)
150# define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000151#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000152
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000153/* If you comment out one of these below, it will be #defined later
154 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000155#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000156/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000157#define debug_printf_parse(...) do {} while (0)
158#define debug_print_tree(a, b) do {} while (0)
159#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000160#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000161#define debug_printf_jobs(...) do {} while (0)
162#define debug_printf_expand(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000163#define debug_printf_glob(...) do {} while (0)
164#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000165#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000166#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000167
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000168#define ERR_PTR ((void*)(long)1)
169
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000170#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000171
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000172#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000173
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200174struct variable;
175
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000176static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
177
178/* This supports saving pointers malloced in vfork child,
Denis Vlasenkoc376db32009-04-15 21:49:48 +0000179 * to be freed in the parent.
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000180 */
181#if !BB_MMU
182typedef struct nommu_save_t {
183 char **new_env;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200184 struct variable *old_vars;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000185 char **argv;
Denis Vlasenko27014ed2009-04-15 21:48:23 +0000186 char **argv_from_re_execing;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000187} nommu_save_t;
188#endif
189
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000190typedef enum reserved_style {
Eric Andersen25f27032001-04-26 23:22:31 +0000191 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000192#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000193 RES_IF ,
194 RES_THEN ,
195 RES_ELIF ,
196 RES_ELSE ,
197 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000198#endif
199#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000200 RES_FOR ,
201 RES_WHILE ,
202 RES_UNTIL ,
203 RES_DO ,
204 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000205#endif
206#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000207 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000208#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000209#if ENABLE_HUSH_CASE
210 RES_CASE ,
Denys Vlasenkoe9bda902009-05-23 16:50:07 +0200211 /* three pseudo-keywords support contrived "case" syntax: */
212 RES_CASE_IN, /* "case ... IN", turns into RES_MATCH when IN is observed */
213 RES_MATCH , /* "word)" */
214 RES_CASE_BODY, /* "this command is inside CASE" */
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000215 RES_ESAC ,
216#endif
217 RES_XXXX ,
218 RES_SNTX
Eric Andersen25f27032001-04-26 23:22:31 +0000219} reserved_style;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000220
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000221typedef struct o_string {
222 char *data;
223 int length; /* position where data is appended */
224 int maxlen;
225 /* Protect newly added chars against globbing
226 * (by prepending \ to *, ?, [, \) */
227 smallint o_escape;
228 smallint o_glob;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000229 /* At least some part of the string was inside '' or "",
230 * possibly empty one: word"", wo''rd etc. */
231 smallint o_quoted;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000232 smallint has_empty_slot;
233 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
234} o_string;
235enum {
236 MAYBE_ASSIGNMENT = 0,
237 DEFINITELY_ASSIGNMENT = 1,
238 NOT_ASSIGNMENT = 2,
239 WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */
240};
241/* Used for initialization: o_string foo = NULL_O_STRING; */
242#define NULL_O_STRING { NULL }
243
244/* I can almost use ordinary FILE*. Is open_memstream() universally
245 * available? Where is it documented? */
246typedef struct in_str {
247 const char *p;
248 /* eof_flag=1: last char in ->p is really an EOF */
249 char eof_flag; /* meaningless if ->p == NULL */
250 char peek_buf[2];
251#if ENABLE_HUSH_INTERACTIVE
252 smallint promptme;
253 smallint promptmode; /* 0: PS1, 1: PS2 */
254#endif
255 FILE *file;
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200256 int (*get) (struct in_str *) FAST_FUNC;
257 int (*peek) (struct in_str *) FAST_FUNC;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000258} in_str;
259#define i_getch(input) ((input)->get(input))
260#define i_peek(input) ((input)->peek(input))
261
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200262/* The descrip member of this structure is only used to make
263 * debugging output pretty */
264static const struct {
265 int mode;
266 signed char default_fd;
267 char descrip[3];
268} redir_table[] = {
269 { O_RDONLY, 0, "<" },
270 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
271 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
272 { O_CREAT|O_RDWR, 1, "<>" },
273 { O_RDONLY, 0, "<<" },
274/* Should not be needed. Bogus default_fd helps in debugging */
275/* { O_RDONLY, 77, "<<" }, */
276};
277
Eric Andersen25f27032001-04-26 23:22:31 +0000278struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000279 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000280 char *rd_filename; /* filename */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000281 int rd_fd; /* fd to redirect */
282 /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
283 int rd_dup;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000284 smallint rd_type; /* (enum redir_type) */
285 /* note: for heredocs, rd_filename contains heredoc delimiter,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000286 * and subsequently heredoc itself; and rd_dup is a bitmask:
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200287 * bit 0: do we need to trim leading tabs?
288 * bit 1: is heredoc quoted (<<'delim' syntax) ?
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000289 */
Eric Andersen25f27032001-04-26 23:22:31 +0000290};
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000291typedef enum redir_type {
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200292 REDIRECT_INPUT = 0,
293 REDIRECT_OVERWRITE = 1,
294 REDIRECT_APPEND = 2,
295 REDIRECT_IO = 3,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000296 REDIRECT_HEREDOC = 4,
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200297 REDIRECT_HEREDOC2 = 5, /* REDIRECT_HEREDOC after heredoc is loaded */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000298
299 REDIRFD_CLOSE = -3,
300 REDIRFD_SYNTAX_ERR = -2,
Denis Vlasenko835fcfd2009-04-10 13:51:56 +0000301 REDIRFD_TO_FILE = -1,
302 /* otherwise, rd_fd is redirected to rd_dup */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000303
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000304 HEREDOC_SKIPTABS = 1,
305 HEREDOC_QUOTED = 2,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000306} redir_type;
307
Eric Andersen25f27032001-04-26 23:22:31 +0000308
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000309struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000310 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000311 int assignment_cnt; /* how many argv[i] are assignments? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000312 smallint is_stopped; /* is the command currently running? */
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200313 smallint cmd_type; /* CMD_xxx */
314#define CMD_NORMAL 0
315#define CMD_SUBSHELL 1
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200316
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200317/* used for "[[ EXPR ]]" */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200318#if ENABLE_HUSH_BASH_COMPAT
319# define CMD_SINGLEWORD_NOGLOB 2
Denis Vlasenkoed055212009-04-11 10:37:10 +0000320#endif
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200321
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200322/* used for "export noglob=* glob* a=`echo a b`" */
Denys Vlasenko82a6fb32009-06-14 19:42:12 +0200323//#define CMD_SINGLEWORD_NOGLOB_COND 3
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200324// It is hard to implement correctly, it adds significant amounts of tricky code,
325// and all this is only useful for really obscure export statements
326// almost nobody would use anyway. #ifdef CMD_SINGLEWORD_NOGLOB_COND
327// guards the code which implements it, but I have doubts it works
328// in all cases (especially with mixed globbed/non-globbed arguments)
329
330#if ENABLE_HUSH_FUNCTIONS
331# define CMD_FUNCDEF 3
332#endif
333
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200334 /* if non-NULL, this "command" is { list }, ( list ), or a compound statement */
335 struct pipe *group;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000336#if !BB_MMU
337 char *group_as_string;
338#endif
Denis Vlasenkoed055212009-04-11 10:37:10 +0000339#if ENABLE_HUSH_FUNCTIONS
340 struct function *child_func;
341/* This field is used to prevent a bug here:
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200342 * while...do f1() {a;}; f1; f1() {b;}; f1; done
Denis Vlasenkoed055212009-04-11 10:37:10 +0000343 * When we execute "f1() {a;}" cmd, we create new function and clear
344 * cmd->group, cmd->group_as_string, cmd->argv[0].
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200345 * When we execute "f1() {b;}", we notice that f1 exists,
346 * and that its "parent cmd" struct is still "alive",
Denis Vlasenkoed055212009-04-11 10:37:10 +0000347 * we put those fields back into cmd->xxx
348 * (struct function has ->parent_cmd ptr to facilitate that).
349 * When we loop back, we can execute "f1() {a;}" again and set f1 correctly.
350 * Without this trick, loop would execute a;b;b;b;...
351 * instead of correct sequence a;b;a;b;...
352 * When command is freed, it severs the link
353 * (sets ->child_func->parent_cmd to NULL).
354 */
355#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000356 char **argv; /* command name and arguments */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000357/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
358 * and on execution these are substituted with their values.
359 * Substitution can make _several_ words out of one argv[n]!
360 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000361 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000362 */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000363 struct redir_struct *redirects; /* I/O redirections */
364};
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000365/* Is there anything in this command at all? */
366#define IS_NULL_CMD(cmd) \
367 (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects)
368
Eric Andersen25f27032001-04-26 23:22:31 +0000369
370struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000371 struct pipe *next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000372 int num_cmds; /* total number of commands in pipe */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000373 int alive_cmds; /* number of commands running (not exited) */
374 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000375#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000376 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000377 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000378 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000379#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000380 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000381 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000382 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
383 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000384};
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000385typedef enum pipe_style {
386 PIPE_SEQ = 1,
387 PIPE_AND = 2,
388 PIPE_OR = 3,
389 PIPE_BG = 4,
390} pipe_style;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000391/* Is there anything in this pipe at all? */
392#define IS_NULL_PIPE(pi) \
393 ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE))
Eric Andersen25f27032001-04-26 23:22:31 +0000394
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000395/* This holds pointers to the various results of parsing */
396struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000397 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000398 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000399 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000400 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000401 /* last command in pipe (being constructed right now) */
402 struct command *command;
403 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000404 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000405#if !BB_MMU
406 o_string as_string;
407#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000408#if HAS_KEYWORDS
409 smallint ctx_res_w;
410 smallint ctx_inverted; /* "! cmd | cmd" */
411#if ENABLE_HUSH_CASE
412 smallint ctx_dsemicolon; /* ";;" seen */
413#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000414 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
415 int old_flag;
416 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000417 * example: "if pipe1; pipe2; then pipe3; fi"
418 * when we see "if" or "then", we malloc and copy current context,
419 * and make ->stack point to it. then we parse pipeN.
420 * when closing "then" / fi" / whatever is found,
421 * we move list_head into ->stack->command->group,
422 * copy ->stack into current context, and delete ->stack.
423 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000424 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000425 struct parse_context *stack;
426#endif
427};
428
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000429/* On program start, environ points to initial environment.
430 * putenv adds new pointers into it, unsetenv removes them.
431 * Neither of these (de)allocates the strings.
432 * setenv allocates new strings in malloc space and does putenv,
433 * and thus setenv is unusable (leaky) for shell's purposes */
434#define setenv(...) setenv_is_leaky_dont_use()
435struct variable {
436 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000437 char *varstr; /* points to "name=" portion */
Denys Vlasenko295fef82009-06-03 12:47:26 +0200438#if ENABLE_HUSH_LOCAL
439 unsigned func_nest_level;
440#endif
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000441 int max_len; /* if > 0, name is part of initial env; else name is malloced */
442 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000443 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000444};
445
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000446enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000447 BC_BREAK = 1,
448 BC_CONTINUE = 2,
449};
450
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000451#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000452struct function {
453 struct function *next;
454 char *name;
Denis Vlasenkoed055212009-04-11 10:37:10 +0000455 struct command *parent_cmd;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000456 struct pipe *body;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200457# if !BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000458 char *body_as_string;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200459# endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000460};
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000461#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000462
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000463
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000464/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000465/* Sorted roughly by size (smaller offsets == smaller code) */
466struct globals {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000467 /* interactive_fd != 0 means we are an interactive shell.
468 * If we are, then saved_tty_pgrp can also be != 0, meaning
469 * that controlling tty is available. With saved_tty_pgrp == 0,
470 * job control still works, but terminal signals
471 * (^C, ^Z, ^Y, ^\) won't work at all, and background
472 * process groups can only be created with "cmd &".
473 * With saved_tty_pgrp != 0, hush will use tcsetpgrp()
474 * to give tty to the foreground process group,
475 * and will take it back when the group is stopped (^Z)
476 * or killed (^C).
477 */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000478#if ENABLE_HUSH_INTERACTIVE
479 /* 'interactive_fd' is a fd# open to ctty, if we have one
480 * _AND_ if we decided to act interactively */
481 int interactive_fd;
482 const char *PS1;
483 const char *PS2;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000484# define G_interactive_fd (G.interactive_fd)
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000485#else
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000486# define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000487#endif
488#if ENABLE_FEATURE_EDITING
489 line_input_t *line_input_state;
490#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000491 pid_t root_pid;
Denys Vlasenkodea47882009-10-09 15:40:49 +0200492 pid_t root_ppid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000493 pid_t last_bg_pid;
Denys Vlasenko20b3d142009-10-09 20:59:39 +0200494#if ENABLE_HUSH_RANDOM_SUPPORT
495 random_t random_gen;
496#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000497#if ENABLE_HUSH_JOB
498 int run_list_level;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000499 int last_jobid;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000500 pid_t saved_tty_pgrp;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000501 struct pipe *job_list;
Mike Frysinger38478a62009-05-20 04:48:06 -0400502# define G_saved_tty_pgrp (G.saved_tty_pgrp)
503#else
504# define G_saved_tty_pgrp 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000505#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000506 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000507#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000508 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000509#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000510#if ENABLE_HUSH_FUNCTIONS
511 /* 0: outside of a function (or sourced file)
512 * -1: inside of a function, ok to use return builtin
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000513 * 1: return is invoked, skip all till end of func
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000514 */
515 smallint flag_return_in_progress;
516#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000517 smallint fake_mode;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000518 smallint exiting; /* used to prevent EXIT trap recursion */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000519 /* These four support $?, $#, and $1 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000520 smalluint last_exitcode;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000521 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000522 smalluint global_args_malloced;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000523 /* how many non-NULL argv's we have. NB: $# + 1 */
524 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000525 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000526#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000527 char *argv0_for_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000528#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000529#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000530 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000531 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000532#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000533 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000534 const char *cwd;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000535 struct variable *top_var; /* = &G.shell_ver (set in main()) */
Denis Vlasenko0a83fc32007-05-25 11:12:32 +0000536 struct variable shell_ver;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000537#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000538 struct function *top_func;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200539# if ENABLE_HUSH_LOCAL
540 struct variable **shadowed_vars_pp;
541 unsigned func_nest_level;
542# endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000543#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000544 /* Signal and trap handling */
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200545#if ENABLE_HUSH_FAST
546 unsigned count_SIGCHLD;
547 unsigned handled_SIGCHLD;
Denys Vlasenkoe2df5f42009-05-26 14:34:10 +0200548 smallint we_have_children;
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200549#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000550 /* which signals have non-DFL handler (even with no traps set)? */
551 unsigned non_DFL_mask;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000552 char **traps; /* char *traps[NSIG] */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000553 sigset_t blocked_set;
554 sigset_t inherited_set;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000555#if HUSH_DEBUG
556 unsigned long memleak_value;
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000557 int debug_indent;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000558#endif
Denys Vlasenkoaaa22d22009-10-19 16:34:39 +0200559 char user_input_buf[ENABLE_FEATURE_EDITING ? CONFIG_FEATURE_EDITING_MAX_LEN : 2];
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000560};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000561#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000562/* Not #defining name to G.name - this quickly gets unwieldy
563 * (too many defines). Also, I actually prefer to see when a variable
564 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000565#define INIT_G() do { \
566 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
567} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000568
569
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000570/* Function prototypes for builtins */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200571static int builtin_cd(char **argv) FAST_FUNC;
572static int builtin_echo(char **argv) FAST_FUNC;
573static int builtin_eval(char **argv) FAST_FUNC;
574static int builtin_exec(char **argv) FAST_FUNC;
575static int builtin_exit(char **argv) FAST_FUNC;
576static int builtin_export(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000577#if ENABLE_HUSH_JOB
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200578static int builtin_fg_bg(char **argv) FAST_FUNC;
579static int builtin_jobs(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000580#endif
581#if ENABLE_HUSH_HELP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200582static int builtin_help(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000583#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +0200584#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200585static int builtin_local(char **argv) FAST_FUNC;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200586#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000587#if HUSH_DEBUG
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200588static int builtin_memleak(char **argv) FAST_FUNC;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000589#endif
Mike Frysinger4ebc76c2009-10-15 03:32:39 -0400590#if ENABLE_PRINTF
591static int builtin_printf(char **argv) FAST_FUNC;
592#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200593static int builtin_pwd(char **argv) FAST_FUNC;
594static int builtin_read(char **argv) FAST_FUNC;
595static int builtin_set(char **argv) FAST_FUNC;
596static int builtin_shift(char **argv) FAST_FUNC;
597static int builtin_source(char **argv) FAST_FUNC;
598static int builtin_test(char **argv) FAST_FUNC;
599static int builtin_trap(char **argv) FAST_FUNC;
600static int builtin_type(char **argv) FAST_FUNC;
601static int builtin_true(char **argv) FAST_FUNC;
602static int builtin_umask(char **argv) FAST_FUNC;
603static int builtin_unset(char **argv) FAST_FUNC;
604static int builtin_wait(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000605#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200606static int builtin_break(char **argv) FAST_FUNC;
607static int builtin_continue(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000608#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000609#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200610static int builtin_return(char **argv) FAST_FUNC;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000611#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000612
613/* Table of built-in functions. They can be forked or not, depending on
614 * context: within pipes, they fork. As simple commands, they do not.
615 * When used in non-forking context, they can change global variables
616 * in the parent shell process. If forked, of course they cannot.
617 * For example, 'unset foo | whatever' will parse and run, but foo will
618 * still be set at the end. */
619struct built_in_command {
620 const char *cmd;
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200621 int (*function)(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000622#if ENABLE_HUSH_HELP
623 const char *descr;
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200624# define BLTIN(cmd, func, help) { cmd, func, help }
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000625#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200626# define BLTIN(cmd, func, help) { cmd, func }
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000627#endif
628};
629
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200630static const struct built_in_command bltins1[] = {
631 BLTIN("." , builtin_source , "Run commands in a file"),
632 BLTIN(":" , builtin_true , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000633#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200634 BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000635#endif
636#if ENABLE_HUSH_LOOPS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200637 BLTIN("break" , builtin_break , "Exit from a loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000638#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200639 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000640#if ENABLE_HUSH_LOOPS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200641 BLTIN("continue" , builtin_continue, "Start new loop iteration"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000642#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200643 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
644 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
645 BLTIN("exit" , builtin_exit , "Exit"),
646 BLTIN("export" , builtin_export , "Set environment variables"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000647#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200648 BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000649#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000650#if ENABLE_HUSH_HELP
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200651 BLTIN("help" , builtin_help , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000652#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000653#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200654 BLTIN("jobs" , builtin_jobs , "List jobs"),
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000655#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +0200656#if ENABLE_HUSH_LOCAL
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200657 BLTIN("local" , builtin_local , "Set local variables"),
Denys Vlasenko295fef82009-06-03 12:47:26 +0200658#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000659#if HUSH_DEBUG
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200660 BLTIN("memleak" , builtin_memleak , NULL),
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000661#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200662 BLTIN("read" , builtin_read , "Input into variable"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000663#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200664 BLTIN("return" , builtin_return , "Return from a function"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000665#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200666 BLTIN("set" , builtin_set , "Set/unset positional parameters"),
667 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
668 BLTIN("trap" , builtin_trap , "Trap signals"),
669 BLTIN("type" , builtin_type , "Write a description of command type"),
670// BLTIN("ulimit" , builtin_ulimit , "Control resource limits"),
671 BLTIN("umask" , builtin_umask , "Set file creation mask"),
672 BLTIN("unset" , builtin_unset , "Unset variables"),
673 BLTIN("wait" , builtin_wait , "Wait for process"),
674};
675/* For now, echo and test are unconditionally enabled.
676 * Maybe make it configurable? */
677static const struct built_in_command bltins2[] = {
678 BLTIN("[" , builtin_test , NULL),
679 BLTIN("echo" , builtin_echo , NULL),
Mike Frysinger4ebc76c2009-10-15 03:32:39 -0400680#if ENABLE_PRINTF
681 BLTIN("printf" , builtin_printf , NULL),
682#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200683 BLTIN("pwd" , builtin_pwd , NULL),
684 BLTIN("test" , builtin_test , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000685};
686
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000687
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000688/* Debug printouts.
689 */
690#if HUSH_DEBUG
691/* prevent disasters with G.debug_indent < 0 */
692# define indent() fprintf(stderr, "%*s", (G.debug_indent * 2) & 0xff, "")
693# define debug_enter() (G.debug_indent++)
694# define debug_leave() (G.debug_indent--)
695#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200696# define indent() ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000697# define debug_enter() ((void)0)
698# define debug_leave() ((void)0)
699#endif
700
701#ifndef debug_printf
702# define debug_printf(...) (indent(), fprintf(stderr, __VA_ARGS__))
703#endif
704
705#ifndef debug_printf_parse
706# define debug_printf_parse(...) (indent(), fprintf(stderr, __VA_ARGS__))
707#endif
708
709#ifndef debug_printf_exec
710#define debug_printf_exec(...) (indent(), fprintf(stderr, __VA_ARGS__))
711#endif
712
713#ifndef debug_printf_env
714# define debug_printf_env(...) (indent(), fprintf(stderr, __VA_ARGS__))
715#endif
716
717#ifndef debug_printf_jobs
718# define debug_printf_jobs(...) (indent(), fprintf(stderr, __VA_ARGS__))
719# define DEBUG_JOBS 1
720#else
721# define DEBUG_JOBS 0
722#endif
723
724#ifndef debug_printf_expand
725# define debug_printf_expand(...) (indent(), fprintf(stderr, __VA_ARGS__))
726# define DEBUG_EXPAND 1
727#else
728# define DEBUG_EXPAND 0
729#endif
730
731#ifndef debug_printf_glob
732# define debug_printf_glob(...) (indent(), fprintf(stderr, __VA_ARGS__))
733# define DEBUG_GLOB 1
734#else
735# define DEBUG_GLOB 0
736#endif
737
738#ifndef debug_printf_list
739# define debug_printf_list(...) (indent(), fprintf(stderr, __VA_ARGS__))
740#endif
741
742#ifndef debug_printf_subst
743# define debug_printf_subst(...) (indent(), fprintf(stderr, __VA_ARGS__))
744#endif
745
746#ifndef debug_printf_clean
747# define debug_printf_clean(...) (indent(), fprintf(stderr, __VA_ARGS__))
748# define DEBUG_CLEAN 1
749#else
750# define DEBUG_CLEAN 0
751#endif
752
753#if DEBUG_EXPAND
754static void debug_print_strings(const char *prefix, char **vv)
755{
756 indent();
757 fprintf(stderr, "%s:\n", prefix);
758 while (*vv)
759 fprintf(stderr, " '%s'\n", *vv++);
760}
761#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200762# define debug_print_strings(prefix, vv) ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000763#endif
764
765
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000766/* Leak hunting. Use hush_leaktool.sh for post-processing.
767 */
768#if LEAK_HUNTING
769static void *xxmalloc(int lineno, size_t size)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000770{
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000771 void *ptr = xmalloc((size + 0xff) & ~0xff);
772 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
773 return ptr;
774}
775static void *xxrealloc(int lineno, void *ptr, size_t size)
776{
777 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
778 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
779 return ptr;
780}
781static char *xxstrdup(int lineno, const char *str)
782{
783 char *ptr = xstrdup(str);
784 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
785 return ptr;
786}
787static void xxfree(void *ptr)
788{
789 fdprintf(2, "free %p\n", ptr);
790 free(ptr);
791}
792#define xmalloc(s) xxmalloc(__LINE__, s)
793#define xrealloc(p, s) xxrealloc(__LINE__, p, s)
794#define xstrdup(s) xxstrdup(__LINE__, s)
795#define free(p) xxfree(p)
796#endif
797
798
799/* Syntax and runtime errors. They always abort scripts.
800 * In interactive use they usually discard unparsed and/or unexecuted commands
801 * and return to the prompt.
802 * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
803 */
804#if HUSH_DEBUG < 2
Denys Vlasenko606291b2009-09-23 23:15:43 +0200805# define die_if_script(lineno, ...) die_if_script(__VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000806# define syntax_error(lineno, msg) syntax_error(msg)
807# define syntax_error_at(lineno, msg) syntax_error_at(msg)
808# define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch)
809# define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s)
810# define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000811#endif
812
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000813static void die_if_script(unsigned lineno, const char *fmt, ...)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000814{
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000815 va_list p;
816
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000817#if HUSH_DEBUG >= 2
818 bb_error_msg("hush.c:%u", lineno);
819#endif
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000820 va_start(p, fmt);
821 bb_verror_msg(fmt, p, NULL);
822 va_end(p);
823 if (!G_interactive_fd)
824 xfunc_die();
Mike Frysinger6379bb42009-03-28 18:55:03 +0000825}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000826
827static void syntax_error(unsigned lineno, const char *msg)
828{
829 if (msg)
830 die_if_script(lineno, "syntax error: %s", msg);
831 else
832 die_if_script(lineno, "syntax error", NULL);
833}
834
835static void syntax_error_at(unsigned lineno, const char *msg)
836{
837 die_if_script(lineno, "syntax error at '%s'", msg);
838}
839
Mike Frysinger6a46ab82009-06-01 14:14:36 -0400840static void syntax_error_unterm_str(unsigned lineno, const char *s)
841{
842 die_if_script(lineno, "syntax error: unterminated %s", s);
843}
844
Denis Vlasenko0b677d82009-04-10 13:49:10 +0000845/* It so happens that all such cases are totally fatal
846 * even if shell is interactive: EOF while looking for closing
847 * delimiter. There is nowhere to read stuff from after that,
848 * it's EOF! The only choice is to terminate.
849 */
850static void syntax_error_unterm_ch(unsigned lineno, char ch) NORETURN;
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000851static void syntax_error_unterm_ch(unsigned lineno, char ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000852{
Mike Frysinger6a46ab82009-06-01 14:14:36 -0400853 char msg[2] = { ch, '\0' };
854 syntax_error_unterm_str(lineno, msg);
Denis Vlasenko0b677d82009-04-10 13:49:10 +0000855 xfunc_die();
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000856}
857
Denys Vlasenkob1cfc452009-05-02 17:18:34 +0200858static void syntax_error_unexpected_ch(unsigned lineno, int ch)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000859{
860 char msg[2];
861 msg[0] = ch;
862 msg[1] = '\0';
Denys Vlasenkob1cfc452009-05-02 17:18:34 +0200863 die_if_script(lineno, "syntax error: unexpected %s", ch == EOF ? "EOF" : msg);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000864}
865
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000866#if HUSH_DEBUG < 2
867# undef die_if_script
868# undef syntax_error
869# undef syntax_error_at
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000870# undef syntax_error_unterm_ch
871# undef syntax_error_unterm_str
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000872# undef syntax_error_unexpected_ch
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000873#else
Denys Vlasenko606291b2009-09-23 23:15:43 +0200874# define die_if_script(...) die_if_script(__LINE__, __VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000875# define syntax_error(msg) syntax_error(__LINE__, msg)
876# define syntax_error_at(msg) syntax_error_at(__LINE__, msg)
877# define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch)
878# define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s)
879# define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000880#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000881
Denis Vlasenko552433b2009-04-04 19:29:21 +0000882
Mike Frysinger67c1c7b2009-04-24 06:26:18 +0000883#if ENABLE_HUSH_INTERACTIVE
884static void cmdedit_update_prompt(void);
885#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200886# define cmdedit_update_prompt() ((void)0)
Mike Frysinger67c1c7b2009-04-24 06:26:18 +0000887#endif
888
889
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000890/* Utility functions
891 */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000892static int is_well_formed_var_name(const char *s, char terminator)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000893{
Denis Vlasenkod4981312008-07-31 10:34:48 +0000894 if (!s || !(isalpha(*s) || *s == '_'))
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000895 return 0;
896 s++;
897 while (isalnum(*s) || *s == '_')
898 s++;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000899 return *s == terminator;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000900}
901
Denis Vlasenko55789c62008-06-18 16:30:42 +0000902/* Replace each \x with x in place, return ptr past NUL. */
903static char *unbackslash(char *src)
904{
Denys Vlasenko71885402009-09-24 01:44:13 +0200905 char *dst = src = strchrnul(src, '\\');
Denis Vlasenko55789c62008-06-18 16:30:42 +0000906 while (1) {
907 if (*src == '\\')
908 src++;
909 if ((*dst++ = *src++) == '\0')
910 break;
911 }
912 return dst;
913}
914
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000915static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000916{
917 int i;
918 unsigned count1;
919 unsigned count2;
920 char **v;
921
922 v = strings;
923 count1 = 0;
924 if (v) {
925 while (*v) {
926 count1++;
927 v++;
928 }
929 }
930 count2 = 0;
931 v = add;
932 while (*v) {
933 count2++;
934 v++;
935 }
936 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
937 v[count1 + count2] = NULL;
938 i = count2;
939 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000940 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000941 return v;
942}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000943#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000944static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
945{
946 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
947 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
948 return ptr;
949}
950#define add_strings_to_strings(strings, add, need_to_dup) \
951 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
952#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000953
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200954/* Note: takes ownership of "add" ptr (it is not strdup'ed) */
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000955static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000956{
957 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000958 v[0] = add;
959 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000960 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000961}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000962#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000963static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
964{
965 char **ptr = add_string_to_strings(strings, add);
966 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
967 return ptr;
968}
969#define add_string_to_strings(strings, add) \
970 xx_add_string_to_strings(__LINE__, strings, add)
971#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000972
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +0200973static void free_strings(char **strings)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000974{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000975 char **v;
976
977 if (!strings)
978 return;
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000979 v = strings;
980 while (*v) {
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +0200981 free(*v);
982 v++;
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000983 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000984 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000985}
986
Denis Vlasenko76d50412008-06-10 16:19:39 +0000987
Denis Vlasenko270b1c32009-04-17 18:54:50 +0000988/* Helpers for setting new $n and restoring them back
989 */
990typedef struct save_arg_t {
991 char *sv_argv0;
992 char **sv_g_argv;
993 int sv_g_argc;
994 smallint sv_g_malloced;
995} save_arg_t;
996
997static void save_and_replace_G_args(save_arg_t *sv, char **argv)
998{
999 int n;
1000
1001 sv->sv_argv0 = argv[0];
1002 sv->sv_g_argv = G.global_argv;
1003 sv->sv_g_argc = G.global_argc;
1004 sv->sv_g_malloced = G.global_args_malloced;
1005
1006 argv[0] = G.global_argv[0]; /* retain $0 */
1007 G.global_argv = argv;
1008 G.global_args_malloced = 0;
1009
1010 n = 1;
1011 while (*++argv)
1012 n++;
1013 G.global_argc = n;
1014}
1015
1016static void restore_G_args(save_arg_t *sv, char **argv)
1017{
1018 char **pp;
1019
1020 if (G.global_args_malloced) {
1021 /* someone ran "set -- arg1 arg2 ...", undo */
1022 pp = G.global_argv;
1023 while (*++pp) /* note: does not free $0 */
1024 free(*pp);
1025 free(G.global_argv);
1026 }
1027 argv[0] = sv->sv_argv0;
1028 G.global_argv = sv->sv_g_argv;
1029 G.global_argc = sv->sv_g_argc;
1030 G.global_args_malloced = sv->sv_g_malloced;
1031}
1032
1033
Denis Vlasenkod5762932009-03-31 11:22:57 +00001034/* Basic theory of signal handling in shell
1035 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001036 * This does not describe what hush does, rather, it is current understanding
1037 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001038 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
1039 *
1040 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
1041 * is finished or backgrounded. It is the same in interactive and
1042 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001043 * a user trap handler is installed or a shell special one is in effect.
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001044 * ^C or ^Z from keyboard seems to execute "at once" because it usually
Denis Vlasenkod5762932009-03-31 11:22:57 +00001045 * backgrounds (i.e. stops) or kills all members of currently running
1046 * pipe.
1047 *
1048 * Wait builtin in interruptible by signals for which user trap is set
1049 * or by SIGINT in interactive shell.
1050 *
1051 * Trap handlers will execute even within trap handlers. (right?)
1052 *
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001053 * User trap handlers are forgotten when subshell ("(cmd)") is entered.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001054 *
1055 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001056 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001057 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001058 * Commands which are run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001059 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001060 *
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001061 * Ordinary commands have signals set to SIG_IGN/DFL as inherited
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001062 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001063 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001064 * Signals which differ from SIG_DFL action
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001065 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +00001066 *
1067 * SIGQUIT: ignore
1068 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001069 * SIGHUP (interactive):
1070 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +00001071 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00001072 * Note that ^Z is handled not by trapping SIGTSTP, but by seeing
1073 * that all pipe members are stopped. Try this in bash:
1074 * while :; do :; done - ^Z does not background it
1075 * (while :; do :; done) - ^Z backgrounds it
Denis Vlasenkod5762932009-03-31 11:22:57 +00001076 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001077 * of the command line, show prompt. NB: ^C does not send SIGINT
1078 * to interactive shell while shell is waiting for a pipe,
1079 * since shell is bg'ed (is not in foreground process group).
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001080 * Example 1: this waits 5 sec, but does not execute ls:
1081 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
1082 * Example 2: this does not wait and does not execute ls:
1083 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
1084 * Example 3: this does not wait 5 sec, but executes ls:
1085 * "sleep 5; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +00001086 *
1087 * (What happens to signals which are IGN on shell start?)
1088 * (What happens with signal mask on shell start?)
1089 *
1090 * Implementation in hush
1091 * ======================
1092 * We use in-kernel pending signal mask to determine which signals were sent.
1093 * We block all signals which we don't want to take action immediately,
1094 * i.e. we block all signals which need to have special handling as described
1095 * above, and all signals which have traps set.
1096 * After each pipe execution, we extract any pending signals via sigtimedwait()
1097 * and act on them.
1098 *
1099 * unsigned non_DFL_mask: a mask of such "special" signals
1100 * sigset_t blocked_set: current blocked signal set
1101 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001102 * "trap - SIGxxx":
Denis Vlasenko552433b2009-04-04 19:29:21 +00001103 * clear bit in blocked_set unless it is also in non_DFL_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001104 * "trap 'cmd' SIGxxx":
1105 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +00001106 * after [v]fork, if we plan to be a shell:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001107 * unblock signals with special interactive handling
1108 * (child shell is not interactive),
1109 * unset all traps (note: regardless of child shell's type - {}, (), etc)
Denis Vlasenkod5762932009-03-31 11:22:57 +00001110 * after [v]fork, if we plan to exec:
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001111 * POSIX says fork clears pending signal mask in child - no need to clear it.
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001112 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001113 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001114 * Note: as a result, we do not use signal handlers much. The only uses
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001115 * are to count SIGCHLDs
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001116 * and to restore tty pgrp on signal-induced exit.
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001117 *
Denys Vlasenko67f71862009-09-25 14:21:06 +02001118 * Note 2 (compat):
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001119 * Standard says "When a subshell is entered, traps that are not being ignored
1120 * are set to the default actions". bash interprets it so that traps which
Denys Vlasenko67f71862009-09-25 14:21:06 +02001121 * are set to "" (ignore) are NOT reset to defaults. We do the same.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001122 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001123enum {
1124 SPECIAL_INTERACTIVE_SIGS = 0
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001125 | (1 << SIGTERM)
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001126 | (1 << SIGINT)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001127 | (1 << SIGHUP)
1128 ,
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001129 SPECIAL_JOB_SIGS = 0
Mike Frysinger38478a62009-05-20 04:48:06 -04001130#if ENABLE_HUSH_JOB
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001131 | (1 << SIGTTIN)
1132 | (1 << SIGTTOU)
1133 | (1 << SIGTSTP)
1134#endif
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001135};
Denis Vlasenkod5762932009-03-31 11:22:57 +00001136
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001137#if ENABLE_HUSH_FAST
1138static void SIGCHLD_handler(int sig UNUSED_PARAM)
1139{
1140 G.count_SIGCHLD++;
1141//bb_error_msg("[%d] SIGCHLD_handler: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
1142}
1143#endif
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001144
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001145#if ENABLE_HUSH_JOB
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001146
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001147/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
1148#define disable_restore_tty_pgrp_on_exit() (die_sleep = 0)
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001149/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001150#define enable_restore_tty_pgrp_on_exit() (die_sleep = -1)
1151
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001152/* Restores tty foreground process group, and exits.
1153 * May be called as signal handler for fatal signal
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001154 * (will resend signal to itself, producing correct exit state)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001155 * or called directly with -EXITCODE.
1156 * We also call it if xfunc is exiting. */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001157static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001158static void sigexit(int sig)
1159{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001160 /* Disable all signals: job control, SIGPIPE, etc. */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001161 sigprocmask_allsigs(SIG_BLOCK);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001162
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001163 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001164 * tty pgrp then, only top-level shell process does that */
Mike Frysinger38478a62009-05-20 04:48:06 -04001165 if (G_saved_tty_pgrp && getpid() == G.root_pid)
1166 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001167
1168 /* Not a signal, just exit */
1169 if (sig <= 0)
1170 _exit(- sig);
1171
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001172 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001173}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001174#else
1175
1176#define disable_restore_tty_pgrp_on_exit() ((void)0)
1177#define enable_restore_tty_pgrp_on_exit() ((void)0)
1178
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001179#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001180
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001181/* Restores tty foreground process group, and exits. */
1182static void hush_exit(int exitcode) NORETURN;
1183static void hush_exit(int exitcode)
1184{
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001185 if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) {
1186 /* Prevent recursion:
1187 * trap "echo Hi; exit" EXIT; exit
1188 */
1189 char *argv[] = { NULL, G.traps[0], NULL };
1190 G.traps[0] = NULL;
1191 G.exiting = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001192 builtin_eval(argv);
1193 free(argv[1]);
1194 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001195
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001196#if ENABLE_HUSH_JOB
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001197 fflush_all();
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001198 sigexit(- (exitcode & 0xff));
1199#else
1200 exit(exitcode);
1201#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001202}
1203
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001204static int check_and_run_traps(int sig)
1205{
1206 static const struct timespec zero_timespec = { 0, 0 };
1207 smalluint save_rcode;
1208 int last_sig = 0;
1209
1210 if (sig)
1211 goto jump_in;
1212 while (1) {
1213 sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec);
1214 if (sig <= 0)
1215 break;
1216 jump_in:
1217 last_sig = sig;
1218 if (G.traps && G.traps[sig]) {
1219 if (G.traps[sig][0]) {
1220 /* We have user-defined handler */
1221 char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL };
1222 save_rcode = G.last_exitcode;
1223 builtin_eval(argv);
1224 free(argv[1]);
1225 G.last_exitcode = save_rcode;
1226 } /* else: "" trap, ignoring signal */
1227 continue;
1228 }
1229 /* not a trap: special action */
1230 switch (sig) {
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001231#if ENABLE_HUSH_FAST
1232 case SIGCHLD:
1233 G.count_SIGCHLD++;
1234//bb_error_msg("[%d] check_and_run_traps: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
1235 break;
1236#endif
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001237 case SIGINT:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001238 /* Builtin was ^C'ed, make it look prettier: */
1239 bb_putchar('\n');
1240 G.flag_SIGINT = 1;
1241 break;
1242#if ENABLE_HUSH_JOB
1243 case SIGHUP: {
1244 struct pipe *job;
1245 /* bash is observed to signal whole process groups,
1246 * not individual processes */
1247 for (job = G.job_list; job; job = job->next) {
1248 if (job->pgrp <= 0)
1249 continue;
1250 debug_printf_exec("HUPing pgrp %d\n", job->pgrp);
1251 if (kill(- job->pgrp, SIGHUP) == 0)
1252 kill(- job->pgrp, SIGCONT);
1253 }
1254 sigexit(SIGHUP);
1255 }
1256#endif
1257 default: /* ignored: */
1258 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
1259 break;
1260 }
1261 }
1262 return last_sig;
1263}
1264
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001265
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001266static const char *get_cwd(int force)
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001267{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001268 if (force || G.cwd == NULL) {
1269 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1270 * we must not try to free(bb_msg_unknown) */
1271 if (G.cwd == bb_msg_unknown)
1272 G.cwd = NULL;
1273 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1274 if (!G.cwd)
1275 G.cwd = bb_msg_unknown;
1276 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00001277 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001278}
1279
Denis Vlasenko83506862007-11-23 13:11:42 +00001280
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001281/*
1282 * Shell and environment variable support
1283 */
1284static struct variable **get_ptr_to_local_var(const char *name)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001285{
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001286 struct variable **pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001287 struct variable *cur;
1288 int len;
1289
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001290 len = strlen(name);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001291 pp = &G.top_var;
1292 while ((cur = *pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001293 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001294 return pp;
1295 pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001296 }
1297 return NULL;
1298}
1299
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001300static struct variable *get_local_var(const char *name)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001301{
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001302 struct variable **pp = get_ptr_to_local_var(name);
1303 if (pp)
1304 return *pp;
1305 return NULL;
1306}
1307
1308static const char *get_local_var_value(const char *name)
1309{
1310 struct variable **pp = get_ptr_to_local_var(name);
1311 if (pp)
1312 return strchr((*pp)->varstr, '=') + 1;
Denys Vlasenkodea47882009-10-09 15:40:49 +02001313 if (strcmp(name, "PPID") == 0)
1314 return utoa(G.root_ppid);
1315 // bash compat: UID? EUID?
Denys Vlasenko20b3d142009-10-09 20:59:39 +02001316#if ENABLE_HUSH_RANDOM_SUPPORT
Denys Vlasenko8c66a9d2009-10-11 02:15:49 +02001317 if (strcmp(name, "RANDOM") == 0) {
Denys Vlasenko20b3d142009-10-09 20:59:39 +02001318 return utoa(next_random(&G.random_gen));
Denys Vlasenko8c66a9d2009-10-11 02:15:49 +02001319 }
Denys Vlasenko20b3d142009-10-09 20:59:39 +02001320#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001321 return NULL;
1322}
1323
1324/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001325 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001326 * flg_export:
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001327 * 0: do not change export flag
1328 * (if creating new variable, flag will be 0)
1329 * 1: set export flag and putenv the variable
1330 * -1: clear export flag and unsetenv the variable
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001331 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00001332 */
Denys Vlasenko295fef82009-06-03 12:47:26 +02001333#if !BB_MMU && ENABLE_HUSH_LOCAL
1334/* all params are used */
1335#elif BB_MMU && ENABLE_HUSH_LOCAL
1336#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
1337 set_local_var(str, flg_export, local_lvl)
1338#elif BB_MMU && !ENABLE_HUSH_LOCAL
1339#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001340 set_local_var(str, flg_export)
Denys Vlasenko295fef82009-06-03 12:47:26 +02001341#elif !BB_MMU && !ENABLE_HUSH_LOCAL
1342#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
1343 set_local_var(str, flg_export, flg_read_only)
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001344#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02001345static int set_local_var(char *str, int flg_export, int local_lvl, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001346{
Denys Vlasenko295fef82009-06-03 12:47:26 +02001347 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001348 struct variable *cur;
Denis Vlasenko950bd722009-04-21 11:23:56 +00001349 char *eq_sign;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001350 int name_len;
1351
Denis Vlasenko950bd722009-04-21 11:23:56 +00001352 eq_sign = strchr(str, '=');
1353 if (!eq_sign) { /* not expected to ever happen? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001354 free(str);
1355 return -1;
1356 }
1357
Denis Vlasenko950bd722009-04-21 11:23:56 +00001358 name_len = eq_sign - str + 1; /* including '=' */
Denys Vlasenko295fef82009-06-03 12:47:26 +02001359 var_pp = &G.top_var;
1360 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001361 if (strncmp(cur->varstr, str, name_len) != 0) {
Denys Vlasenko295fef82009-06-03 12:47:26 +02001362 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001363 continue;
1364 }
1365 /* We found an existing var with this name */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001366 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001367#if !BB_MMU
1368 if (!flg_read_only)
1369#endif
1370 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001371 free(str);
1372 return -1;
1373 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001374 if (flg_export == -1) { // "&& cur->flg_export" ?
Denis Vlasenko950bd722009-04-21 11:23:56 +00001375 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1376 *eq_sign = '\0';
1377 unsetenv(str);
1378 *eq_sign = '=';
1379 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001380#if ENABLE_HUSH_LOCAL
1381 if (cur->func_nest_level < local_lvl) {
1382 /* New variable is declared as local,
1383 * and existing one is global, or local
1384 * from enclosing function.
1385 * Remove and save old one: */
1386 *var_pp = cur->next;
1387 cur->next = *G.shadowed_vars_pp;
1388 *G.shadowed_vars_pp = cur;
1389 /* bash 3.2.33(1) and exported vars:
1390 * # export z=z
1391 * # f() { local z=a; env | grep ^z; }
1392 * # f
1393 * z=a
1394 * # env | grep ^z
1395 * z=z
1396 */
1397 if (cur->flg_export)
1398 flg_export = 1;
1399 break;
1400 }
1401#endif
Denis Vlasenko950bd722009-04-21 11:23:56 +00001402 if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001403 free_and_exp:
1404 free(str);
1405 goto exp;
1406 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001407 if (cur->max_len != 0) {
1408 if (cur->max_len >= strlen(str)) {
1409 /* This one is from startup env, reuse space */
1410 strcpy(cur->varstr, str);
1411 goto free_and_exp;
1412 }
1413 } else {
1414 /* max_len == 0 signifies "malloced" var, which we can
1415 * (and has to) free */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001416 free(cur->varstr);
Denys Vlasenko295fef82009-06-03 12:47:26 +02001417 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001418 cur->max_len = 0;
1419 goto set_str_and_exp;
1420 }
1421
Denys Vlasenko295fef82009-06-03 12:47:26 +02001422 /* Not found - create new variable struct */
1423 cur = xzalloc(sizeof(*cur));
1424#if ENABLE_HUSH_LOCAL
1425 cur->func_nest_level = local_lvl;
1426#endif
1427 cur->next = *var_pp;
1428 *var_pp = cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001429
1430 set_str_and_exp:
1431 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001432#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001433 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001434#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001435 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001436 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001437 cur->flg_export = 1;
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001438 if (name_len == 4 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
1439 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001440 if (cur->flg_export) {
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001441 if (flg_export == -1) {
1442 cur->flg_export = 0;
1443 /* unsetenv was already done */
1444 } else {
1445 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1446 return putenv(cur->varstr);
1447 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001448 }
1449 return 0;
1450}
1451
Denys Vlasenko6db47842009-09-05 20:15:17 +02001452/* Used at startup and after each cd */
1453static void set_pwd_var(int exp)
1454{
1455 set_local_var(xasprintf("PWD=%s", get_cwd(/*force:*/ 1)),
1456 /*exp:*/ exp, /*lvl:*/ 0, /*ro:*/ 0);
1457}
1458
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001459static int unset_local_var_len(const char *name, int name_len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001460{
1461 struct variable *cur;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001462 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001463
1464 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00001465 return EXIT_SUCCESS;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001466 var_pp = &G.top_var;
1467 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001468 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1469 if (cur->flg_read_only) {
1470 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00001471 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001472 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001473 *var_pp = cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001474 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1475 bb_unsetenv(cur->varstr);
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001476 if (name_len == 3 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
1477 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001478 if (!cur->max_len)
1479 free(cur->varstr);
1480 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00001481 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001482 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001483 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001484 }
Mike Frysingerd690f682009-03-30 06:50:54 +00001485 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001486}
1487
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001488static int unset_local_var(const char *name)
1489{
1490 return unset_local_var_len(name, strlen(name));
1491}
1492
1493static void unset_vars(char **strings)
1494{
1495 char **v;
1496
1497 if (!strings)
1498 return;
1499 v = strings;
1500 while (*v) {
1501 const char *eq = strchrnul(*v, '=');
1502 unset_local_var_len(*v, (int)(eq - *v));
1503 v++;
1504 }
1505 free(strings);
1506}
1507
Mike Frysinger98c52642009-04-02 10:02:37 +00001508#if ENABLE_SH_MATH_SUPPORT
1509#define is_name(c) ((c) == '_' || isalpha((unsigned char)(c)))
1510#define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c)))
1511static char *endofname(const char *name)
1512{
1513 char *p;
1514
1515 p = (char *) name;
1516 if (!is_name(*p))
1517 return p;
1518 while (*++p) {
1519 if (!is_in_name(*p))
1520 break;
1521 }
1522 return p;
1523}
1524
1525static void arith_set_local_var(const char *name, const char *val, int flags)
1526{
1527 /* arith code doesnt malloc space, so do it for it */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001528 char *var = xasprintf("%s=%s", name, val);
Denys Vlasenko295fef82009-06-03 12:47:26 +02001529 set_local_var(var, flags, /*lvl:*/ 0, /*ro:*/ 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00001530}
1531#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001532
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001533
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001534/*
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001535 * Helpers for "var1=val1 var2=val2 cmd" feature
1536 */
1537static void add_vars(struct variable *var)
1538{
1539 struct variable *next;
1540
1541 while (var) {
1542 next = var->next;
1543 var->next = G.top_var;
1544 G.top_var = var;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001545 if (var->flg_export) {
1546 debug_printf_env("%s: restoring exported '%s'\n", __func__, var->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001547 putenv(var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001548 } else {
Denys Vlasenko295fef82009-06-03 12:47:26 +02001549 debug_printf_env("%s: restoring variable '%s'\n", __func__, var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001550 }
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001551 var = next;
1552 }
1553}
1554
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001555static struct variable *set_vars_and_save_old(char **strings)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001556{
1557 char **s;
1558 struct variable *old = NULL;
1559
1560 if (!strings)
1561 return old;
1562 s = strings;
1563 while (*s) {
1564 struct variable *var_p;
1565 struct variable **var_pp;
1566 char *eq;
1567
1568 eq = strchr(*s, '=');
1569 if (eq) {
1570 *eq = '\0';
1571 var_pp = get_ptr_to_local_var(*s);
1572 *eq = '=';
1573 if (var_pp) {
1574 /* Remove variable from global linked list */
1575 var_p = *var_pp;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001576 debug_printf_env("%s: removing '%s'\n", __func__, var_p->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001577 *var_pp = var_p->next;
1578 /* Add it to returned list */
1579 var_p->next = old;
1580 old = var_p;
1581 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001582 set_local_var(*s, /*exp:*/ 1, /*lvl:*/ 0, /*ro:*/ 0);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001583 }
1584 s++;
1585 }
1586 return old;
1587}
1588
1589
1590/*
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001591 * in_str support
1592 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001593static int FAST_FUNC static_get(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001594{
1595 int ch = *i->p++;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001596 if (ch != '\0')
1597 return ch;
1598 i->p--;
1599 return EOF;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001600}
1601
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001602static int FAST_FUNC static_peek(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001603{
1604 return *i->p;
1605}
1606
1607#if ENABLE_HUSH_INTERACTIVE
1608
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001609static void cmdedit_update_prompt(void)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001610{
Mike Frysingerec2c6552009-03-28 12:24:44 +00001611 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001612 G.PS1 = get_local_var_value("PS1");
Mike Frysingerec2c6552009-03-28 12:24:44 +00001613 if (G.PS1 == NULL)
1614 G.PS1 = "\\w \\$ ";
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001615 G.PS2 = get_local_var_value("PS2");
Denys Vlasenko690ad242009-04-30 21:24:24 +02001616 } else {
Mike Frysingerec2c6552009-03-28 12:24:44 +00001617 G.PS1 = NULL;
Denys Vlasenko690ad242009-04-30 21:24:24 +02001618 }
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001619 if (G.PS2 == NULL)
1620 G.PS2 = "> ";
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001621}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001622
1623static const char* setup_prompt_string(int promptmode)
1624{
1625 const char *prompt_str;
1626 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00001627 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1628 /* Set up the prompt */
1629 if (promptmode == 0) { /* PS1 */
1630 free((char*)G.PS1);
Denys Vlasenko6db47842009-09-05 20:15:17 +02001631 /* bash uses $PWD value, even if it is set by user.
1632 * It uses current dir only if PWD is unset.
1633 * We always use current dir. */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001634 G.PS1 = xasprintf("%s %c ", get_cwd(0), (geteuid() != 0) ? '$' : '#');
Mike Frysingerec2c6552009-03-28 12:24:44 +00001635 prompt_str = G.PS1;
1636 } else
1637 prompt_str = G.PS2;
1638 } else
1639 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001640 debug_printf("result '%s'\n", prompt_str);
1641 return prompt_str;
1642}
1643
1644static void get_user_input(struct in_str *i)
1645{
1646 int r;
1647 const char *prompt_str;
1648
1649 prompt_str = setup_prompt_string(i->promptmode);
1650#if ENABLE_FEATURE_EDITING
1651 /* Enable command line editing only while a command line
1652 * is actually being read */
1653 do {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001654 G.flag_SIGINT = 0;
1655 /* buglet: SIGINT will not make new prompt to appear _at once_,
1656 * only after <Enter>. (^C will work) */
Denys Vlasenkoaaa22d22009-10-19 16:34:39 +02001657 r = read_line_input(prompt_str, G.user_input_buf, CONFIG_FEATURE_EDITING_MAX_LEN-1, G.line_input_state);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001658 /* catch *SIGINT* etc (^C is handled by read_line_input) */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001659 check_and_run_traps(0);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001660 } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001661 i->eof_flag = (r < 0);
1662 if (i->eof_flag) { /* EOF/error detected */
1663 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1664 G.user_input_buf[1] = '\0';
1665 }
1666#else
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001667 do {
1668 G.flag_SIGINT = 0;
1669 fputs(prompt_str, stdout);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001670 fflush_all();
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001671 G.user_input_buf[0] = r = fgetc(i->file);
1672 /*G.user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001673//do we need check_and_run_traps(0)? (maybe only if stdin)
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001674 } while (G.flag_SIGINT);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001675 i->eof_flag = (r == EOF);
1676#endif
1677 i->p = G.user_input_buf;
1678}
1679
1680#endif /* INTERACTIVE */
1681
1682/* This is the magic location that prints prompts
1683 * and gets data back from the user */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001684static int FAST_FUNC file_get(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001685{
1686 int ch;
1687
1688 /* If there is data waiting, eat it up */
1689 if (i->p && *i->p) {
1690#if ENABLE_HUSH_INTERACTIVE
1691 take_cached:
1692#endif
1693 ch = *i->p++;
1694 if (i->eof_flag && !*i->p)
1695 ch = EOF;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001696 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001697 } else {
1698 /* need to double check i->file because we might be doing something
1699 * more complicated by now, like sourcing or substituting. */
1700#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001701 if (G_interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001702 do {
1703 get_user_input(i);
1704 } while (!*i->p); /* need non-empty line */
1705 i->promptmode = 1; /* PS2 */
1706 i->promptme = 0;
1707 goto take_cached;
1708 }
1709#endif
Denis Vlasenko913a2012009-04-05 22:17:04 +00001710 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001711 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001712 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001713#if ENABLE_HUSH_INTERACTIVE
1714 if (ch == '\n')
1715 i->promptme = 1;
1716#endif
1717 return ch;
1718}
1719
Denis Vlasenko913a2012009-04-05 22:17:04 +00001720/* All callers guarantee this routine will never
1721 * be used right after a newline, so prompting is not needed.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001722 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001723static int FAST_FUNC file_peek(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001724{
1725 int ch;
1726 if (i->p && *i->p) {
1727 if (i->eof_flag && !i->p[1])
1728 return EOF;
1729 return *i->p;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001730 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001731 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001732 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001733 i->eof_flag = (ch == EOF);
1734 i->peek_buf[0] = ch;
1735 i->peek_buf[1] = '\0';
1736 i->p = i->peek_buf;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001737 debug_printf("file_peek: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001738 return ch;
1739}
1740
1741static void setup_file_in_str(struct in_str *i, FILE *f)
1742{
1743 i->peek = file_peek;
1744 i->get = file_get;
1745#if ENABLE_HUSH_INTERACTIVE
1746 i->promptme = 1;
1747 i->promptmode = 0; /* PS1 */
1748#endif
1749 i->file = f;
1750 i->p = NULL;
1751}
1752
1753static void setup_string_in_str(struct in_str *i, const char *s)
1754{
1755 i->peek = static_peek;
1756 i->get = static_get;
1757#if ENABLE_HUSH_INTERACTIVE
1758 i->promptme = 1;
1759 i->promptmode = 0; /* PS1 */
1760#endif
1761 i->p = s;
1762 i->eof_flag = 0;
1763}
1764
1765
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001766/*
1767 * o_string support
1768 */
1769#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00001770
Denis Vlasenko0b677d82009-04-10 13:49:10 +00001771static void o_reset_to_empty_unquoted(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001772{
1773 o->length = 0;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001774 o->o_quoted = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001775 if (o->data)
1776 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001777}
1778
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001779static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001780{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001781 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001782 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00001783}
1784
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001785static ALWAYS_INLINE void o_free_unsafe(o_string *o)
1786{
1787 free(o->data);
1788}
1789
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001790static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001791{
1792 if (o->length + len > o->maxlen) {
1793 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1794 o->data = xrealloc(o->data, 1 + o->maxlen);
1795 }
1796}
1797
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001798static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001799{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001800 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1801 o_grow_by(o, 1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001802 o->data[o->length] = ch;
1803 o->length++;
1804 o->data[o->length] = '\0';
1805}
1806
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001807static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001808{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001809 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001810 memcpy(&o->data[o->length], str, len);
1811 o->length += len;
1812 o->data[o->length] = '\0';
1813}
1814
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001815#if !BB_MMU
1816static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00001817{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001818 o_addblock(o, str, strlen(str));
1819}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001820static void nommu_addchr(o_string *o, int ch)
1821{
1822 if (o)
1823 o_addchr(o, ch);
1824}
1825#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001826# define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001827#endif
1828
1829static void o_addstr_with_NUL(o_string *o, const char *str)
1830{
1831 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00001832}
1833
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001834static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
Denis Vlasenko55789c62008-06-18 16:30:42 +00001835{
1836 while (len) {
1837 o_addchr(o, *str);
1838 if (*str++ == '\\'
1839 && (*str != '*' && *str != '?' && *str != '[')
1840 ) {
1841 o_addchr(o, '\\');
1842 }
1843 len--;
1844 }
1845}
1846
Denys Vlasenkof3e28182009-11-17 03:35:31 +01001847#undef HUSH_BRACE_EXP
1848/*
1849 * HUSH_BRACE_EXP code needs corresponding quoting on variable expansion side.
1850 * Currently, "v='{q,w}'; echo $v" erroneously expands braces in $v.
1851 * Apparently, on unquoted $v bash still does globbing
1852 * ("v='*.txt'; echo $v" prints all .txt files),
1853 * but NOT brace expansion! Thus, there should be TWO independent
1854 * quoting mechanisms on $v expansion side: one protects
1855 * $v from brace expansion, and other additionally protects "$v" against globbing.
1856 * We have only second one.
1857 */
1858
1859#ifdef HUSH_BRACE_EXP
1860# define MAYBE_BRACES "{}"
1861#else
1862# define MAYBE_BRACES ""
1863#endif
1864
Eric Andersen25f27032001-04-26 23:22:31 +00001865/* My analysis of quoting semantics tells me that state information
1866 * is associated with a destination, not a source.
1867 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001868static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00001869{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001870 int sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01001871 char *found = strchr("*?[\\" MAYBE_BRACES, ch);
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001872 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001873 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001874 o_grow_by(o, sz);
1875 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001876 o->data[o->length] = '\\';
1877 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00001878 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001879 o->data[o->length] = ch;
1880 o->length++;
1881 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001882}
1883
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001884static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001885{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001886 int sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01001887 if (o->o_escape && strchr("*?[\\" MAYBE_BRACES, ch)) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001888 sz++;
1889 o->data[o->length] = '\\';
1890 o->length++;
1891 }
1892 o_grow_by(o, sz);
1893 o->data[o->length] = ch;
1894 o->length++;
1895 o->data[o->length] = '\0';
1896}
1897
1898static void o_addQstr(o_string *o, const char *str, int len)
1899{
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001900 if (!o->o_escape) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001901 o_addblock(o, str, len);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001902 return;
1903 }
1904 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001905 char ch;
1906 int sz;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01001907 int ordinary_cnt = strcspn(str, "*?[\\" MAYBE_BRACES);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001908 if (ordinary_cnt > len) /* paranoia */
1909 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001910 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001911 if (ordinary_cnt == len)
1912 return;
1913 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001914 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001915
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001916 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001917 sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01001918 if (ch) { /* it is necessarily one of "*?[\\" MAYBE_BRACES */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001919 sz++;
1920 o->data[o->length] = '\\';
1921 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001922 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001923 o_grow_by(o, sz);
1924 o->data[o->length] = ch;
1925 o->length++;
1926 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001927 }
1928}
1929
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001930/* A special kind of o_string for $VAR and `cmd` expansion.
1931 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001932 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001933 * list[i] contains an INDEX (int!) into this string data.
1934 * It means that if list[] needs to grow, data needs to be moved higher up
1935 * but list[i]'s need not be modified.
1936 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001937 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001938 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
1939 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001940#if DEBUG_EXPAND || DEBUG_GLOB
1941static void debug_print_list(const char *prefix, o_string *o, int n)
1942{
1943 char **list = (char**)o->data;
1944 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1945 int i = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001946
1947 indent();
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001948 fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n",
1949 prefix, list, n, string_start, o->length, o->maxlen);
1950 while (i < n) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001951 indent();
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001952 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
1953 o->data + (int)list[i] + string_start,
1954 o->data + (int)list[i] + string_start);
1955 i++;
1956 }
1957 if (n) {
1958 const char *p = o->data + (int)list[n - 1] + string_start;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001959 indent();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001960 fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001961 }
1962}
1963#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001964# define debug_print_list(prefix, o, n) ((void)0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001965#endif
1966
1967/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
1968 * in list[n] so that it points past last stored byte so far.
1969 * It returns n+1. */
1970static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001971{
1972 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00001973 int string_start;
1974 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001975
1976 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00001977 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1978 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001979 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001980 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001981 /* list[n] points to string_start, make space for 16 more pointers */
1982 o->maxlen += 0x10 * sizeof(list[0]);
1983 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00001984 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001985 memmove(list + n + 0x10, list + n, string_len);
1986 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001987 } else {
1988 debug_printf_list("list[%d]=%d string_start=%d\n",
1989 n, string_len, string_start);
1990 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001991 } else {
1992 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00001993 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
1994 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001995 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
1996 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001997 o->has_empty_slot = 0;
1998 }
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001999 list[n] = (char*)(ptrdiff_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002000 return n + 1;
2001}
2002
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002003/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002004static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002005{
2006 char **list = (char**)o->data;
2007 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2008
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00002009 return ((int)(ptrdiff_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002010}
2011
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002012#ifdef HUSH_BRACE_EXP
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002013/* There in a GNU extension, GLOB_BRACE, but it is not usable:
2014 * first, it processes even {a} (no commas), second,
2015 * I didn't manage to make it return strings when they don't match
Denys Vlasenko160746b2009-11-16 05:51:18 +01002016 * existing files. Need to re-implement it.
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002017 */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002018
2019/* Helper */
2020static int glob_needed(const char *s)
2021{
2022 while (*s) {
2023 if (*s == '\\') {
2024 if (!s[1])
2025 return 0;
2026 s += 2;
2027 continue;
2028 }
2029 if (*s == '*' || *s == '[' || *s == '?' || *s == '{')
2030 return 1;
2031 s++;
2032 }
2033 return 0;
2034}
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002035/* Return pointer to next closing brace or to comma */
2036static const char *next_brace_sub(const char *cp)
2037{
2038 unsigned depth = 0;
2039 cp++;
2040 while (*cp != '\0') {
2041 if (*cp == '\\') {
2042 if (*++cp == '\0')
2043 break;
2044 cp++;
2045 continue;
2046 }
2047 /*{*/ if ((*cp == '}' && depth-- == 0) || (*cp == ',' && depth == 0))
2048 break;
2049 if (*cp++ == '{') /*}*/
2050 depth++;
2051 }
2052
2053 return *cp != '\0' ? cp : NULL;
2054}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002055/* Recursive brace globber. Note: may garble pattern[]. */
2056static int glob_brace(char *pattern, o_string *o, int n)
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002057{
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002058 char *new_pattern_buf;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002059 const char *begin;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002060 const char *next;
2061 const char *rest;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002062 const char *p;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002063 size_t rest_len;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002064
2065 debug_printf_glob("glob_brace('%s')\n", pattern);
2066
2067 begin = pattern;
2068 while (1) {
2069 if (*begin == '\0')
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002070 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002071 if (*begin == '{') /*}*/ {
2072 /* Find the first sub-pattern and at the same time
2073 * find the rest after the closing brace */
2074 next = next_brace_sub(begin);
2075 if (next == NULL) {
2076 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002077 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002078 }
2079 /*{*/ if (*next == '}') {
2080 /* "{abc}" with no commas - illegal
2081 * brace expr, disregard and skip it */
2082 begin = next + 1;
2083 continue;
2084 }
2085 break;
2086 }
2087 if (*begin == '\\' && begin[1] != '\0')
2088 begin++;
2089 begin++;
2090 }
2091 debug_printf_glob("begin:%s\n", begin);
2092 debug_printf_glob("next:%s\n", next);
2093
2094 /* Now find the end of the whole brace expression */
2095 rest = next;
2096 /*{*/ while (*rest != '}') {
2097 rest = next_brace_sub(rest);
2098 if (rest == NULL) {
2099 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002100 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002101 }
2102 debug_printf_glob("rest:%s\n", rest);
2103 }
2104 rest_len = strlen(++rest) + 1;
2105
2106 /* We are sure the brace expression is well-formed */
2107
2108 /* Allocate working buffer large enough for our work */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002109 new_pattern_buf = xmalloc(strlen(pattern));
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002110
2111 /* We have a brace expression. BEGIN points to the opening {,
2112 * NEXT points past the terminator of the first element, and REST
2113 * points past the final }. We will accumulate result names from
2114 * recursive runs for each brace alternative in the buffer using
2115 * GLOB_APPEND. */
2116
2117 p = begin + 1;
2118 while (1) {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002119 /* Construct the new glob expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002120 memcpy(
2121 mempcpy(
2122 mempcpy(new_pattern_buf,
2123 /* We know the prefix for all sub-patterns */
2124 pattern, begin - pattern),
2125 p, next - p),
2126 rest, rest_len);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002127
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002128 /* Note: glob_brace() may garble new_pattern_buf[].
2129 * That's why we re-copy prefix every time (1st memcpy above).
2130 */
2131 n = glob_brace(new_pattern_buf, o, n);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002132 /*{*/ if (*next == '}') {
2133 /* We saw the last entry */
2134 break;
2135 }
2136 p = next + 1;
2137 next = next_brace_sub(next);
2138 }
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002139 free(new_pattern_buf);
2140 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002141
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002142 simple_glob:
2143 {
2144 int gr;
2145 glob_t globdata;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002146
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002147 memset(&globdata, 0, sizeof(globdata));
2148 gr = glob(pattern, 0, NULL, &globdata);
2149 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
2150 if (gr != 0) {
2151 if (gr == GLOB_NOMATCH) {
2152 globfree(&globdata);
2153 /* NB: garbles parameter */
2154 unbackslash(pattern);
2155 o_addstr_with_NUL(o, pattern);
2156 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2157 return o_save_ptr_helper(o, n);
2158 }
2159 if (gr == GLOB_NOSPACE)
2160 bb_error_msg_and_die(bb_msg_memory_exhausted);
2161 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
2162 * but we didn't specify it. Paranoia again. */
2163 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
2164 }
2165 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
2166 char **argv = globdata.gl_pathv;
2167 while (1) {
2168 o_addstr_with_NUL(o, *argv);
2169 n = o_save_ptr_helper(o, n);
2170 argv++;
2171 if (!*argv)
2172 break;
2173 }
2174 }
2175 globfree(&globdata);
2176 }
2177 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002178}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002179/* Performs globbing on last list[],
2180 * saving each result as a new list[].
2181 */
2182static int o_glob(o_string *o, int n)
2183{
2184 char *pattern, *copy;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002185
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002186 debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
2187 if (!o->data)
2188 return o_save_ptr_helper(o, n);
2189 pattern = o->data + o_get_last_ptr(o, n);
2190 debug_printf_glob("glob pattern '%s'\n", pattern);
2191 if (!glob_needed(pattern)) {
2192 /* unbackslash last string in o in place, fix length */
2193 o->length = unbackslash(pattern) - o->data;
2194 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2195 return o_save_ptr_helper(o, n);
2196 }
2197
2198 copy = xstrdup(pattern);
2199 /* "forget" pattern in o */
2200 o->length = pattern - o->data;
2201 n = glob_brace(copy, o, n);
2202 free(copy);
2203 if (DEBUG_GLOB)
2204 debug_print_list("o_glob returning", o, n);
2205 return n;
2206}
2207
2208#else
2209
2210/* Helper */
2211static int glob_needed(const char *s)
2212{
2213 while (*s) {
2214 if (*s == '\\') {
2215 if (!s[1])
2216 return 0;
2217 s += 2;
2218 continue;
2219 }
2220 if (*s == '*' || *s == '[' || *s == '?')
2221 return 1;
2222 s++;
2223 }
2224 return 0;
2225}
2226/* Performs globbing on last list[],
2227 * saving each result as a new list[].
2228 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002229static int o_glob(o_string *o, int n)
2230{
2231 glob_t globdata;
2232 int gr;
2233 char *pattern;
2234
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002235 debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002236 if (!o->data)
2237 return o_save_ptr_helper(o, n);
2238 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002239 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002240 if (!glob_needed(pattern)) {
2241 literal:
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002242 /* unbackslash last string in o in place, fix length */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002243 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002244 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002245 return o_save_ptr_helper(o, n);
2246 }
2247
2248 memset(&globdata, 0, sizeof(globdata));
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002249 /* Can't use GLOB_NOCHECK: it does not unescape the string.
2250 * If we glob "*.\*" and don't find anything, we need
2251 * to fall back to using literal "*.*", but GLOB_NOCHECK
2252 * will return "*.\*"!
2253 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002254 gr = glob(pattern, 0, NULL, &globdata);
2255 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002256 if (gr != 0) {
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002257 if (gr == GLOB_NOMATCH) {
2258 globfree(&globdata);
2259 goto literal;
2260 }
2261 if (gr == GLOB_NOSPACE)
2262 bb_error_msg_and_die(bb_msg_memory_exhausted);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002263 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
2264 * but we didn't specify it. Paranoia again. */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002265 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002266 }
2267 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
2268 char **argv = globdata.gl_pathv;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002269 /* "forget" pattern in o */
2270 o->length = pattern - o->data;
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002271 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002272 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002273 n = o_save_ptr_helper(o, n);
2274 argv++;
2275 if (!*argv)
2276 break;
2277 }
2278 }
2279 globfree(&globdata);
2280 if (DEBUG_GLOB)
2281 debug_print_list("o_glob returning", o, n);
2282 return n;
2283}
2284
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002285#endif
2286
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002287/* If o->o_glob == 1, glob the string so far remembered.
2288 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002289static int o_save_ptr(o_string *o, int n)
2290{
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00002291 if (o->o_glob) { /* if globbing is requested */
2292 /* If o->has_empty_slot, list[n] was already globbed
2293 * (if it was requested back then when it was filled)
2294 * so don't do that again! */
2295 if (!o->has_empty_slot)
2296 return o_glob(o, n); /* o_save_ptr_helper is inside */
2297 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002298 return o_save_ptr_helper(o, n);
2299}
2300
2301/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002302static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002303{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002304 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002305 int string_start;
2306
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002307 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
2308 if (DEBUG_EXPAND)
2309 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002310 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002311 list = (char**)o->data;
2312 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2313 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002314 while (n) {
2315 n--;
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00002316 list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002317 }
2318 return list;
2319}
2320
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002321
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002322/* Expansion can recurse */
2323#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00002324static int process_command_subs(o_string *dest, const char *s);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002325#endif
2326static char *expand_string_to_string(const char *str);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002327#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00002328#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002329 parse_stream_dquoted(dest, input, dquote_end)
2330#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00002331static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002332 o_string *dest,
2333 struct in_str *input,
2334 int dquote_end);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002335
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002336/* expand_strvec_to_strvec() takes a list of strings, expands
2337 * all variable references within and returns a pointer to
2338 * a list of expanded strings, possibly with larger number
2339 * of strings. (Think VAR="a b"; echo $VAR).
2340 * This new list is allocated as a single malloc block.
2341 * NULL-terminated list of char* pointers is at the beginning of it,
2342 * followed by strings themself.
2343 * Caller can deallocate entire list by single free(list). */
Eric Andersen25f27032001-04-26 23:22:31 +00002344
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002345/* Store given string, finalizing the word and starting new one whenever
2346 * we encounter IFS char(s). This is used for expanding variable values.
2347 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
2348static int expand_on_ifs(o_string *output, int n, const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00002349{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002350 while (1) {
2351 int word_len = strcspn(str, G.ifs);
2352 if (word_len) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002353 if (output->o_escape || !output->o_glob)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002354 o_addQstr(output, str, word_len);
2355 else /* protect backslashes against globbing up :) */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002356 o_addblock_duplicate_backslash(output, str, word_len);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002357 str += word_len;
2358 }
2359 if (!*str) /* EOL - do not finalize word */
2360 break;
2361 o_addchr(output, '\0');
2362 debug_print_list("expand_on_ifs", output, n);
2363 n = o_save_ptr(output, n);
2364 str += strspn(str, G.ifs); /* skip ifs chars */
Eric Andersen25f27032001-04-26 23:22:31 +00002365 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002366 debug_print_list("expand_on_ifs[1]", output, n);
2367 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00002368}
2369
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002370/* Helper to expand $((...)) and heredoc body. These act as if
2371 * they are in double quotes, with the exception that they are not :).
2372 * Just the rules are similar: "expand only $var and `cmd`"
2373 *
2374 * Returns malloced string.
2375 * As an optimization, we return NULL if expansion is not needed.
2376 */
2377static char *expand_pseudo_dquoted(const char *str)
2378{
2379 char *exp_str;
2380 struct in_str input;
2381 o_string dest = NULL_O_STRING;
2382
2383 if (strchr(str, '$') == NULL
2384#if ENABLE_HUSH_TICK
2385 && strchr(str, '`') == NULL
2386#endif
2387 ) {
2388 return NULL;
2389 }
2390
2391 /* We need to expand. Example:
2392 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
2393 */
2394 setup_string_in_str(&input, str);
2395 parse_stream_dquoted(NULL, &dest, &input, EOF);
2396 //bb_error_msg("'%s' -> '%s'", str, dest.data);
2397 exp_str = expand_string_to_string(dest.data);
2398 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
2399 o_free_unsafe(&dest);
2400 return exp_str;
2401}
2402
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002403/* Expand all variable references in given string, adding words to list[]
2404 * at n, n+1,... positions. Return updated n (so that list[n] is next one
2405 * to be filled). This routine is extremely tricky: has to deal with
2406 * variables/parameters with whitespace, $* and $@, and constructs like
2407 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
Denys Vlasenkoa7bb3c12009-10-08 12:28:08 +02002408static NOINLINE int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00002409{
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02002410 /* or_mask is either 0 (normal case) or 0x80 -
2411 * expansion of right-hand side of assignment == 1-element expand.
2412 * It will also do no globbing, and thus we must not backslash-quote!
2413 */
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002414 char ored_ch;
2415 char *p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002416
2417 ored_ch = 0;
2418
Denys Vlasenkof37eb392009-10-18 11:46:35 +02002419 debug_printf_expand("expand_vars_to_list: arg:'%s' or_mask:%x\n", arg, or_mask);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002420 debug_print_list("expand_vars_to_list", output, n);
2421 n = o_save_ptr(output, n);
2422 debug_print_list("expand_vars_to_list[0]", output, n);
2423
2424 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002425 char first_ch;
2426 int i;
2427 char *dyn_val = NULL;
2428 const char *val = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002429#if ENABLE_HUSH_TICK
2430 o_string subst_result = NULL_O_STRING;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00002431#endif
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002432#if ENABLE_SH_MATH_SUPPORT
2433 char arith_buf[sizeof(arith_t)*3 + 2];
2434#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002435 o_addblock(output, arg, p - arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002436 debug_print_list("expand_vars_to_list[1]", output, n);
2437 arg = ++p;
2438 p = strchr(p, SPECIAL_VAR_SYMBOL);
2439
2440 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
2441 /* "$@" is special. Even if quoted, it can still
2442 * expand to nothing (not even an empty string) */
2443 if ((first_ch & 0x7f) != '@')
2444 ored_ch |= first_ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002445
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002446 switch (first_ch & 0x7f) {
2447 /* Highest bit in first_ch indicates that var is double-quoted */
2448 case '$': /* pid */
2449 val = utoa(G.root_pid);
2450 break;
2451 case '!': /* bg pid */
2452 val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)"";
2453 break;
2454 case '?': /* exitcode */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00002455 val = utoa(G.last_exitcode);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002456 break;
2457 case '#': /* argc */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002458 if (arg[1] != SPECIAL_VAR_SYMBOL)
2459 /* actually, it's a ${#var} */
2460 goto case_default;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002461 val = utoa(G.global_argc ? G.global_argc-1 : 0);
2462 break;
2463 case '*':
2464 case '@':
2465 i = 1;
2466 if (!G.global_argv[i])
2467 break;
2468 ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
2469 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002470 smallint sv = output->o_escape;
2471 /* unquoted var's contents should be globbed, so don't escape */
2472 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002473 while (G.global_argv[i]) {
2474 n = expand_on_ifs(output, n, G.global_argv[i]);
2475 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
2476 if (G.global_argv[i++][0] && G.global_argv[i]) {
2477 /* this argv[] is not empty and not last:
2478 * put terminating NUL, start new word */
2479 o_addchr(output, '\0');
2480 debug_print_list("expand_vars_to_list[2]", output, n);
2481 n = o_save_ptr(output, n);
2482 debug_print_list("expand_vars_to_list[3]", output, n);
2483 }
2484 }
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002485 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002486 } else
2487 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
2488 * and in this case should treat it like '$*' - see 'else...' below */
2489 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
2490 while (1) {
2491 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
2492 if (++i >= G.global_argc)
2493 break;
2494 o_addchr(output, '\0');
2495 debug_print_list("expand_vars_to_list[4]", output, n);
2496 n = o_save_ptr(output, n);
2497 }
2498 } else { /* quoted $*: add as one word */
2499 while (1) {
2500 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
2501 if (!G.global_argv[++i])
2502 break;
2503 if (G.ifs[0])
2504 o_addchr(output, G.ifs[0]);
2505 }
2506 }
2507 break;
2508 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
2509 /* "Empty variable", used to make "" etc to not disappear */
2510 arg++;
2511 ored_ch = 0x80;
2512 break;
2513#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00002514 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002515 *p = '\0';
2516 arg++;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002517 /* Can't just stuff it into output o_string,
2518 * expanded result may need to be globbed
2519 * and $IFS-splitted */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002520 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
Denys Vlasenko647553a2009-11-15 19:58:19 +01002521 G.last_exitcode = process_command_subs(&subst_result, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002522 debug_printf_subst("SUBST RES '%s'\n", subst_result.data);
2523 val = subst_result.data;
2524 goto store_val;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00002525#endif
Mike Frysinger98c52642009-04-02 10:02:37 +00002526#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002527 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002528 arith_eval_hooks_t hooks;
Mike Frysinger98c52642009-04-02 10:02:37 +00002529 arith_t res;
Mike Frysinger98c52642009-04-02 10:02:37 +00002530 int errcode;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002531 char *exp_str;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002532
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002533 arg++; /* skip '+' */
2534 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Mike Frysinger98c52642009-04-02 10:02:37 +00002535 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002536
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002537 exp_str = expand_pseudo_dquoted(arg);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00002538 hooks.lookupvar = get_local_var_value;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002539 hooks.setvar = arith_set_local_var;
2540 hooks.endofname = endofname;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002541 res = arith(exp_str ? exp_str : arg, &errcode, &hooks);
2542 free(exp_str);
2543
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002544 if (errcode < 0) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002545 const char *msg = "error in arithmetic";
Mike Frysinger98c52642009-04-02 10:02:37 +00002546 switch (errcode) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002547 case -3:
2548 msg = "exponent less than 0";
2549 break;
2550 case -2:
2551 msg = "divide by 0";
2552 break;
2553 case -5:
2554 msg = "expression recursion loop detected";
2555 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00002556 }
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002557 die_if_script(msg);
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002558 }
Mike Frysinger98c52642009-04-02 10:02:37 +00002559 debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002560 sprintf(arith_buf, arith_t_fmt, res);
2561 val = arith_buf;
Mike Frysinger98c52642009-04-02 10:02:37 +00002562 break;
2563 }
2564#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002565 default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002566 case_default: {
Denis Vlasenko232be3e2009-04-05 09:16:00 +00002567 bool exp_len = false;
2568 bool exp_null = false;
2569 char *var = arg;
2570 char exp_save = exp_save; /* for compiler */
2571 char exp_op = exp_op; /* for compiler */
2572 char *exp_word = exp_word; /* for compiler */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002573 size_t exp_off = 0;
Denis Vlasenko232be3e2009-04-05 09:16:00 +00002574
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002575 *p = '\0';
2576 arg[0] = first_ch & 0x7f;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002577
2578 /* prepare for expansions */
2579 if (var[0] == '#') {
2580 /* handle length expansion ${#var} */
2581 exp_len = true;
2582 ++var;
2583 } else {
2584 /* maybe handle parameter expansion */
Mike Frysingera4f331d2009-04-07 06:03:22 +00002585 exp_off = strcspn(var, ":-=+?%#");
Mike Frysinger6379bb42009-03-28 18:55:03 +00002586 if (!var[exp_off])
2587 exp_off = 0;
2588 if (exp_off) {
2589 exp_save = var[exp_off];
2590 exp_null = exp_save == ':';
2591 exp_word = var + exp_off;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002592 if (exp_null)
2593 ++exp_word;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002594 exp_op = *exp_word++;
2595 var[exp_off] = '\0';
2596 }
2597 }
2598
2599 /* lookup the variable in question */
2600 if (isdigit(var[0])) {
Mike Frysinger7c3e52c2009-03-28 21:06:22 +00002601 /* handle_dollar() should have vetted var for us */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002602 i = xatoi_u(var);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002603 if (i < G.global_argc)
2604 val = G.global_argv[i];
2605 /* else val remains NULL: $N with too big N */
2606 } else
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00002607 val = get_local_var_value(var);
Mike Frysinger6379bb42009-03-28 18:55:03 +00002608
2609 /* handle any expansions */
2610 if (exp_len) {
2611 debug_printf_expand("expand: length of '%s' = ", val);
2612 val = utoa(val ? strlen(val) : 0);
2613 debug_printf_expand("%s\n", val);
2614 } else if (exp_off) {
Mike Frysingera4f331d2009-04-07 06:03:22 +00002615 if (exp_op == '%' || exp_op == '#') {
Mike Frysinger57e74672009-04-09 23:00:33 +00002616 if (val) {
2617 /* we need to do a pattern match */
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002618 bool match_at_left;
Mike Frysinger57e74672009-04-09 23:00:33 +00002619 char *loc;
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002620 scan_t scan = pick_scan(exp_op, *exp_word, &match_at_left);
Mike Frysinger57e74672009-04-09 23:00:33 +00002621 if (exp_op == *exp_word) /* ## or %% */
2622 ++exp_word;
2623 val = dyn_val = xstrdup(val);
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002624 loc = scan(dyn_val, exp_word, match_at_left);
2625 if (match_at_left) /* # or ## */
Mike Frysinger57e74672009-04-09 23:00:33 +00002626 val = loc;
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002627 else if (loc) /* % or %% and match was found */
Mike Frysinger57e74672009-04-09 23:00:33 +00002628 *loc = '\0';
2629 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002630 } else {
2631 /* we need to do an expansion */
2632 int exp_test = (!val || (exp_null && !val[0]));
2633 if (exp_op == '+')
2634 exp_test = !exp_test;
2635 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
2636 exp_null ? "true" : "false", exp_test);
2637 if (exp_test) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002638 if (exp_op == '?') {
2639//TODO: how interactive bash aborts expansion mid-command?
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002640 /* ${var?[error_msg_if_unset]} */
2641 /* ${var:?[error_msg_if_unset_or_null]} */
2642 /* mimic bash message */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002643 die_if_script("%s: %s",
2644 var,
2645 exp_word[0] ? exp_word : "parameter null or not set"
2646 );
2647 } else {
Mike Frysingera4f331d2009-04-07 06:03:22 +00002648 val = exp_word;
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002649 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002650
Mike Frysingera4f331d2009-04-07 06:03:22 +00002651 if (exp_op == '=') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002652 /* ${var=[word]} or ${var:=[word]} */
Mike Frysingera4f331d2009-04-07 06:03:22 +00002653 if (isdigit(var[0]) || var[0] == '#') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002654 /* mimic bash message */
2655 die_if_script("$%s: cannot assign in this way", var);
Mike Frysingera4f331d2009-04-07 06:03:22 +00002656 val = NULL;
2657 } else {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002658 char *new_var = xasprintf("%s=%s", var, val);
Denys Vlasenko295fef82009-06-03 12:47:26 +02002659 set_local_var(new_var, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
Mike Frysingera4f331d2009-04-07 06:03:22 +00002660 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002661 }
2662 }
2663 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002664
Mike Frysinger6379bb42009-03-28 18:55:03 +00002665 var[exp_off] = exp_save;
2666 }
2667
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002668 arg[0] = first_ch;
2669#if ENABLE_HUSH_TICK
2670 store_val:
2671#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002672 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002673 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002674 if (val) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002675 /* unquoted var's contents should be globbed, so don't escape */
2676 smallint sv = output->o_escape;
2677 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002678 n = expand_on_ifs(output, n, val);
2679 val = NULL;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002680 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002681 }
2682 } else { /* quoted $VAR, val will be appended below */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002683 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002684 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002685 } /* default: */
2686 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002687
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002688 if (val) {
2689 o_addQstr(output, val, strlen(val));
2690 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002691 free(dyn_val);
Mike Frysinger6379bb42009-03-28 18:55:03 +00002692 /* Do the check to avoid writing to a const string */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002693 if (*p != SPECIAL_VAR_SYMBOL)
Mike Frysinger6379bb42009-03-28 18:55:03 +00002694 *p = SPECIAL_VAR_SYMBOL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002695
2696#if ENABLE_HUSH_TICK
2697 o_free(&subst_result);
2698#endif
2699 arg = ++p;
2700 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
2701
2702 if (arg[0]) {
2703 debug_print_list("expand_vars_to_list[a]", output, n);
2704 /* this part is literal, and it was already pre-quoted
2705 * if needed (much earlier), do not use o_addQstr here! */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002706 o_addstr_with_NUL(output, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002707 debug_print_list("expand_vars_to_list[b]", output, n);
2708 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
2709 && !(ored_ch & 0x80) /* and all vars were not quoted. */
2710 ) {
2711 n--;
2712 /* allow to reuse list[n] later without re-growth */
2713 output->has_empty_slot = 1;
2714 } else {
2715 o_addchr(output, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00002716 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002717 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00002718}
2719
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002720static char **expand_variables(char **argv, int or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00002721{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002722 int n;
2723 char **list;
2724 char **v;
2725 o_string output = NULL_O_STRING;
2726
2727 if (or_mask & 0x100) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002728 output.o_escape = 1; /* protect against globbing for "$var" */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002729 /* (unquoted $var will temporarily switch it off) */
2730 output.o_glob = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002731 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002732
2733 n = 0;
2734 v = argv;
2735 while (*v) {
Denys Vlasenko9d617c42009-06-09 18:40:52 +02002736 n = expand_vars_to_list(&output, n, *v, (unsigned char)or_mask);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002737 v++;
2738 }
2739 debug_print_list("expand_variables", &output, n);
2740
2741 /* output.data (malloced in one block) gets returned in "list" */
2742 list = o_finalize_list(&output, n);
2743 debug_print_strings("expand_variables[1]", list);
2744 return list;
Eric Andersen25f27032001-04-26 23:22:31 +00002745}
2746
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002747static char **expand_strvec_to_strvec(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00002748{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002749 return expand_variables(argv, 0x100);
Eric Andersen25f27032001-04-26 23:22:31 +00002750}
2751
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02002752#if ENABLE_HUSH_BASH_COMPAT
Denys Vlasenko9d617c42009-06-09 18:40:52 +02002753static char **expand_strvec_to_strvec_singleword_noglob(char **argv)
2754{
2755 return expand_variables(argv, 0x80);
2756}
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02002757#endif
Denys Vlasenko9d617c42009-06-09 18:40:52 +02002758
2759#ifdef CMD_SINGLEWORD_NOGLOB_COND
2760static char **expand_strvec_to_strvec_singleword_noglob_cond(char **argv)
2761{
2762 int n;
2763 char **list;
2764 char **v;
2765 o_string output = NULL_O_STRING;
2766
2767 n = 0;
2768 v = argv;
2769 while (*v) {
2770 int is_var = is_well_formed_var_name(*v, '=');
2771 /* is_var * 0x80: singleword expansion for vars */
2772 n = expand_vars_to_list(&output, n, *v, is_var * 0x80);
2773
2774 /* Subtle! expand_vars_to_list did not glob last word yet.
2775 * It does this only when fed with further data.
2776 * Therefore we set globbing flags AFTER it, not before:
2777 */
2778
2779 /* if it is not recognizably abc=...; then: */
2780 output.o_escape = !is_var; /* protect against globbing for "$var" */
2781 /* (unquoted $var will temporarily switch it off) */
2782 output.o_glob = !is_var; /* and indeed do globbing */
2783 v++;
2784 }
2785 debug_print_list("expand_cond", &output, n);
2786
2787 /* output.data (malloced in one block) gets returned in "list" */
2788 list = o_finalize_list(&output, n);
2789 debug_print_strings("expand_cond[1]", list);
2790 return list;
2791}
2792#endif
2793
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002794/* Used for expansion of right hand of assignments */
2795/* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs
2796 * "v=/bin/c*" */
2797static char *expand_string_to_string(const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00002798{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002799 char *argv[2], **list;
2800
2801 argv[0] = (char*)str;
2802 argv[1] = NULL;
Denys Vlasenko9d617c42009-06-09 18:40:52 +02002803 list = expand_variables(argv, 0x80); /* 0x80: singleword expansion */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002804 if (HUSH_DEBUG)
2805 if (!list[0] || list[1])
2806 bb_error_msg_and_die("BUG in varexp2");
2807 /* actually, just move string 2*sizeof(char*) bytes back */
2808 overlapping_strcpy((char*)list, list[0]);
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02002809 unbackslash((char*)list);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002810 debug_printf_expand("string_to_string='%s'\n", (char*)list);
2811 return (char*)list;
2812}
2813
2814/* Used for "eval" builtin */
2815static char* expand_strvec_to_string(char **argv)
2816{
2817 char **list;
2818
2819 list = expand_variables(argv, 0x80);
2820 /* Convert all NULs to spaces */
2821 if (list[0]) {
2822 int n = 1;
2823 while (list[n]) {
2824 if (HUSH_DEBUG)
2825 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2826 bb_error_msg_and_die("BUG in varexp3");
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00002827 /* bash uses ' ' regardless of $IFS contents */
2828 list[n][-1] = ' ';
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002829 n++;
2830 }
2831 }
2832 overlapping_strcpy((char*)list, list[0]);
2833 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
2834 return (char*)list;
2835}
2836
2837static char **expand_assignments(char **argv, int count)
2838{
2839 int i;
2840 char **p = NULL;
2841 /* Expand assignments into one string each */
2842 for (i = 0; i < count; i++) {
2843 p = add_string_to_strings(p, expand_string_to_string(argv[i]));
2844 }
2845 return p;
Eric Andersen25f27032001-04-26 23:22:31 +00002846}
2847
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002848
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002849#if BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002850/* never called */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002851void re_execute_shell(char ***to_free, const char *s,
2852 char *g_argv0, char **g_argv,
2853 char **builtin_argv) NORETURN;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002854
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002855static void reset_traps_to_defaults(void)
2856{
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002857 /* This function is always called in a child shell
2858 * after fork (not vfork, NOMMU doesn't use this function).
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002859 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002860 unsigned sig;
2861 unsigned mask;
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002862
Denys Vlasenko67f71862009-09-25 14:21:06 +02002863 /* Child shells are not interactive.
2864 * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
2865 * Testcase: (while :; do :; done) + ^Z should background.
2866 * Same goes for SIGTERM, SIGHUP, SIGINT.
2867 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002868 if (!G.traps && !(G.non_DFL_mask & SPECIAL_INTERACTIVE_SIGS))
Denys Vlasenko67f71862009-09-25 14:21:06 +02002869 return; /* already no traps and no SPECIAL_INTERACTIVE_SIGS */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002870
Denys Vlasenko67f71862009-09-25 14:21:06 +02002871 /* Switching off SPECIAL_INTERACTIVE_SIGS.
2872 * Stupid. It can be done with *single* &= op, but we can't use
2873 * the fact that G.blocked_set is implemented as a bitmask
2874 * in libc... */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002875 mask = (SPECIAL_INTERACTIVE_SIGS >> 1);
2876 sig = 1;
2877 while (1) {
Denys Vlasenko67f71862009-09-25 14:21:06 +02002878 if (mask & 1) {
2879 /* Careful. Only if no trap or trap is not "" */
2880 if (!G.traps || !G.traps[sig] || G.traps[sig][0])
2881 sigdelset(&G.blocked_set, sig);
2882 }
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002883 mask >>= 1;
2884 if (!mask)
2885 break;
2886 sig++;
2887 }
Denys Vlasenko67f71862009-09-25 14:21:06 +02002888 /* Our homegrown sig mask is saner to work with :) */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002889 G.non_DFL_mask &= ~SPECIAL_INTERACTIVE_SIGS;
Denys Vlasenko67f71862009-09-25 14:21:06 +02002890
2891 /* Resetting all traps to default except empty ones */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002892 mask = G.non_DFL_mask;
2893 if (G.traps) for (sig = 0; sig < NSIG; sig++, mask >>= 1) {
Denys Vlasenko67f71862009-09-25 14:21:06 +02002894 if (!G.traps[sig] || !G.traps[sig][0])
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002895 continue;
2896 free(G.traps[sig]);
2897 G.traps[sig] = NULL;
2898 /* There is no signal for 0 (EXIT) */
2899 if (sig == 0)
2900 continue;
Denys Vlasenko67f71862009-09-25 14:21:06 +02002901 /* There was a trap handler, we just removed it.
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002902 * But if sig still has non-DFL handling,
Denys Vlasenko67f71862009-09-25 14:21:06 +02002903 * we should not unblock the sig. */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002904 if (mask & 1)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002905 continue;
2906 sigdelset(&G.blocked_set, sig);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002907 }
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002908 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002909}
2910
2911#else /* !BB_MMU */
2912
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002913static void re_execute_shell(char ***to_free, const char *s,
2914 char *g_argv0, char **g_argv,
2915 char **builtin_argv) NORETURN;
2916static void re_execute_shell(char ***to_free, const char *s,
2917 char *g_argv0, char **g_argv,
2918 char **builtin_argv)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002919{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002920 char param_buf[sizeof("-$%x:%x:%x:%x:%x") + sizeof(unsigned) * 2];
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002921 char *heredoc_argv[4];
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002922 struct variable *cur;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002923# if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkobc569742009-04-12 20:35:19 +00002924 struct function *funcp;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002925# endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002926 char **argv, **pp;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002927 unsigned cnt;
2928
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002929 if (!g_argv0) { /* heredoc */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002930 argv = heredoc_argv;
2931 argv[0] = (char *) G.argv0_for_re_execing;
2932 argv[1] = (char *) "-<";
2933 argv[2] = (char *) s;
2934 argv[3] = NULL;
Denis Vlasenkof50caac2009-04-09 01:40:15 +00002935 pp = &argv[3]; /* used as pointer to empty environment */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002936 goto do_exec;
2937 }
2938
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002939 cnt = 0;
2940 pp = builtin_argv;
2941 if (pp) while (*pp++)
2942 cnt++;
2943
Denys Vlasenkodea47882009-10-09 15:40:49 +02002944 sprintf(param_buf, "-$%x:%x:%x:%x:%x" IF_HUSH_LOOPS(":%x")
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002945 , (unsigned) G.root_pid
Denys Vlasenkodea47882009-10-09 15:40:49 +02002946 , (unsigned) G.root_ppid
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002947 , (unsigned) G.last_bg_pid
2948 , (unsigned) G.last_exitcode
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002949 , cnt
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002950 IF_HUSH_LOOPS(, G.depth_of_loop)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002951 );
Denis Vlasenkobc569742009-04-12 20:35:19 +00002952 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<depth> <vars...> <funcs...>
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002953 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002954 */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002955 cnt += 6;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002956 for (cur = G.top_var; cur; cur = cur->next) {
2957 if (!cur->flg_export || cur->flg_read_only)
2958 cnt += 2;
2959 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002960# if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkobc569742009-04-12 20:35:19 +00002961 for (funcp = G.top_func; funcp; funcp = funcp->next)
2962 cnt += 3;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002963# endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002964 pp = g_argv;
2965 while (*pp++)
2966 cnt++;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002967 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002968 *pp++ = (char *) G.argv0_for_re_execing;
2969 *pp++ = param_buf;
2970 for (cur = G.top_var; cur; cur = cur->next) {
2971 if (cur->varstr == hush_version_str)
2972 continue;
2973 if (cur->flg_read_only) {
2974 *pp++ = (char *) "-R";
2975 *pp++ = cur->varstr;
2976 } else if (!cur->flg_export) {
2977 *pp++ = (char *) "-V";
2978 *pp++ = cur->varstr;
2979 }
2980 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002981# if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkobc569742009-04-12 20:35:19 +00002982 for (funcp = G.top_func; funcp; funcp = funcp->next) {
2983 *pp++ = (char *) "-F";
2984 *pp++ = funcp->name;
2985 *pp++ = funcp->body_as_string;
2986 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002987# endif
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002988 /* We can pass activated traps here. Say, -Tnn:trap_string
2989 *
2990 * However, POSIX says that subshells reset signals with traps
2991 * to SIG_DFL.
2992 * I tested bash-3.2 and it not only does that with true subshells
2993 * of the form ( list ), but with any forked children shells.
2994 * I set trap "echo W" WINCH; and then tried:
2995 *
2996 * { echo 1; sleep 20; echo 2; } &
2997 * while true; do echo 1; sleep 20; echo 2; break; done &
2998 * true | { echo 1; sleep 20; echo 2; } | cat
2999 *
3000 * In all these cases sending SIGWINCH to the child shell
3001 * did not run the trap. If I add trap "echo V" WINCH;
3002 * _inside_ group (just before echo 1), it works.
3003 *
3004 * I conclude it means we don't need to pass active traps here.
3005 * exec syscall below resets them to SIG_DFL for us.
3006 */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00003007 *pp++ = (char *) "-c";
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003008 *pp++ = (char *) s;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003009 if (builtin_argv) {
3010 while (*++builtin_argv)
3011 *pp++ = *builtin_argv;
3012 *pp++ = (char *) "";
3013 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003014 *pp++ = g_argv0;
3015 while (*g_argv)
3016 *pp++ = *g_argv++;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003017 /* *pp = NULL; - is already there */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00003018 pp = environ;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003019
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00003020 do_exec:
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003021 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
3022 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00003023 execve(bb_busybox_exec_path, argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003024 /* Fallback. Useful for init=/bin/hush usage etc */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00003025 if (argv[0][0] == '/')
3026 execve(argv[0], argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003027 xfunc_error_retval = 127;
3028 bb_error_msg_and_die("can't re-execute the shell");
3029}
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003030#endif /* !BB_MMU */
3031
3032
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003033static void setup_heredoc(struct redir_struct *redir)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003034{
3035 struct fd_pair pair;
3036 pid_t pid;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003037 int len, written;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003038 /* the _body_ of heredoc (misleading field name) */
3039 const char *heredoc = redir->rd_filename;
3040 char *expanded;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003041#if !BB_MMU
3042 char **to_free;
3043#endif
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003044
3045 expanded = NULL;
3046 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
3047 expanded = expand_pseudo_dquoted(heredoc);
3048 if (expanded)
3049 heredoc = expanded;
3050 }
3051 len = strlen(heredoc);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003052
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00003053 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003054 xpiped_pair(pair);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003055 xmove_fd(pair.rd, redir->rd_fd);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003056
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003057 /* Try writing without forking. Newer kernels have
3058 * dynamically growing pipes. Must use non-blocking write! */
3059 ndelay_on(pair.wr);
3060 while (1) {
3061 written = write(pair.wr, heredoc, len);
3062 if (written <= 0)
3063 break;
3064 len -= written;
3065 if (len == 0) {
3066 close(pair.wr);
Denis Vlasenko1943aec2009-04-09 14:15:57 +00003067 free(expanded);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003068 return;
3069 }
3070 heredoc += written;
3071 }
3072 ndelay_off(pair.wr);
3073
3074 /* Okay, pipe buffer was not big enough */
3075 /* Note: we must not create a stray child (bastard? :)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003076 * for the unsuspecting parent process. Child creates a grandchild
3077 * and exits before parent execs the process which consumes heredoc
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003078 * (that exec happens after we return from this function) */
Denis Vlasenko41ddecd2009-04-15 21:58:14 +00003079#if !BB_MMU
3080 to_free = NULL;
3081#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003082 pid = vfork();
3083 if (pid < 0)
3084 bb_perror_msg_and_die("vfork");
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003085 if (pid == 0) {
3086 /* child */
Denis Vlasenko41ddecd2009-04-15 21:58:14 +00003087 disable_restore_tty_pgrp_on_exit();
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003088 pid = BB_MMU ? fork() : vfork();
3089 if (pid < 0)
3090 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
3091 if (pid != 0)
3092 _exit(0);
3093 /* grandchild */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003094 close(redir->rd_fd); /* read side of the pipe */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003095#if BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003096 full_write(pair.wr, heredoc, len); /* may loop or block */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003097 _exit(0);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003098#else
3099 /* Delegate blocking writes to another process */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003100 xmove_fd(pair.wr, STDOUT_FILENO);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003101 re_execute_shell(&to_free, heredoc, NULL, NULL, NULL);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003102#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003103 }
3104 /* parent */
Denys Vlasenko8d7be232009-05-25 16:38:32 +02003105#if ENABLE_HUSH_FAST
3106 G.count_SIGCHLD++;
3107//bb_error_msg("[%d] fork in setup_heredoc: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
3108#endif
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003109 enable_restore_tty_pgrp_on_exit();
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003110#if !BB_MMU
3111 free(to_free);
3112#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003113 close(pair.wr);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003114 free(expanded);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003115 wait(NULL); /* wait till child has died */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003116}
3117
Eric Andersen25f27032001-04-26 23:22:31 +00003118/* squirrel != NULL means we squirrel away copies of stdin, stdout,
3119 * and stderr if they are redirected. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003120static int setup_redirects(struct command *prog, int squirrel[])
Eric Andersen25f27032001-04-26 23:22:31 +00003121{
3122 int openfd, mode;
3123 struct redir_struct *redir;
3124
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003125 for (redir = prog->redirects; redir; redir = redir->next) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003126 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003127 /* rd_fd<<HERE case */
Denys Vlasenko1dd6cf82009-05-02 14:17:31 +02003128 if (squirrel && redir->rd_fd < 3
3129 && squirrel[redir->rd_fd] < 0
3130 ) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003131 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003132 }
3133 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
3134 * of the heredoc */
3135 debug_printf_parse("set heredoc '%s'\n",
3136 redir->rd_filename);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003137 setup_heredoc(redir);
Eric Andersen817e73c2001-06-06 17:56:09 +00003138 continue;
3139 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003140
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003141 if (redir->rd_dup == REDIRFD_TO_FILE) {
3142 /* rd_fd<*>file case (<*> is <,>,>>,<>) */
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00003143 char *p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003144 if (redir->rd_filename == NULL) {
3145 /* Something went wrong in the parse.
3146 * Pretend it didn't happen */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003147 bb_error_msg("bug in redirect parse");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003148 continue;
3149 }
Denis Vlasenko55789c62008-06-18 16:30:42 +00003150 mode = redir_table[redir->rd_type].mode;
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003151 p = expand_string_to_string(redir->rd_filename);
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00003152 openfd = open_or_warn(p, mode);
3153 free(p);
Eric Andersen25f27032001-04-26 23:22:31 +00003154 if (openfd < 0) {
3155 /* this could get lost if stderr has been redirected, but
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003156 * bash and ash both lose it as well (though zsh doesn't!) */
3157//what the above comment tries to say?
Eric Andersen25f27032001-04-26 23:22:31 +00003158 return 1;
3159 }
3160 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003161 /* rd_fd<*>rd_dup or rd_fd<*>- cases */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003162 openfd = redir->rd_dup;
Eric Andersen25f27032001-04-26 23:22:31 +00003163 }
3164
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003165 if (openfd != redir->rd_fd) {
Denys Vlasenko1dd6cf82009-05-02 14:17:31 +02003166 if (squirrel && redir->rd_fd < 3
3167 && squirrel[redir->rd_fd] < 0
3168 ) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003169 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Eric Andersen25f27032001-04-26 23:22:31 +00003170 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003171 if (openfd == REDIRFD_CLOSE) {
3172 /* "n>-" means "close me" */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003173 close(redir->rd_fd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00003174 } else {
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003175 xdup2(openfd, redir->rd_fd);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003176 if (redir->rd_dup == REDIRFD_TO_FILE)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003177 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00003178 }
Eric Andersen25f27032001-04-26 23:22:31 +00003179 }
3180 }
3181 return 0;
3182}
3183
3184static void restore_redirects(int squirrel[])
3185{
3186 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003187 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00003188 fd = squirrel[i];
3189 if (fd != -1) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003190 /* We simply die on error */
3191 xmove_fd(fd, i);
Eric Andersen25f27032001-04-26 23:22:31 +00003192 }
3193 }
3194}
3195
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003196
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003197static void free_pipe_list(struct pipe *head);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003198
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003199/* Return code is the exit status of the pipe */
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003200static void free_pipe(struct pipe *pi)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003201{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003202 char **p;
3203 struct command *command;
3204 struct redir_struct *r, *rnext;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003205 int a, i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003206
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003207 if (pi->stopped_cmds > 0) /* why? */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003208 return;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003209 debug_printf_clean("run pipe: (pid %d)\n", getpid());
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003210 for (i = 0; i < pi->num_cmds; i++) {
3211 command = &pi->cmds[i];
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003212 debug_printf_clean(" command %d:\n", i);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003213 if (command->argv) {
3214 for (a = 0, p = command->argv; *p; a++, p++) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003215 debug_printf_clean(" argv[%d] = %s\n", a, *p);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003216 }
3217 free_strings(command->argv);
3218 command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003219 }
3220 /* not "else if": on syntax error, we may have both! */
3221 if (command->group) {
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003222 debug_printf_clean(" begin group (cmd_type:%d)\n",
3223 command->cmd_type);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003224 free_pipe_list(command->group);
3225 debug_printf_clean(" end group\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003226 command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003227 }
Denis Vlasenkoed055212009-04-11 10:37:10 +00003228 /* else is crucial here.
3229 * If group != NULL, child_func is meaningless */
3230#if ENABLE_HUSH_FUNCTIONS
3231 else if (command->child_func) {
3232 debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
3233 command->child_func->parent_cmd = NULL;
3234 }
3235#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003236#if !BB_MMU
3237 free(command->group_as_string);
3238 command->group_as_string = NULL;
3239#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003240 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003241 debug_printf_clean(" redirect %d%s",
3242 r->rd_fd, redir_table[r->rd_type].descrip);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003243 /* guard against the case >$FOO, where foo is unset or blank */
3244 if (r->rd_filename) {
3245 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
3246 free(r->rd_filename);
3247 r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003248 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003249 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003250 rnext = r->next;
3251 free(r);
3252 }
3253 command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003254 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003255 free(pi->cmds); /* children are an array, they get freed all at once */
3256 pi->cmds = NULL;
3257#if ENABLE_HUSH_JOB
3258 free(pi->cmdtext);
3259 pi->cmdtext = NULL;
3260#endif
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003261}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003262
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003263static void free_pipe_list(struct pipe *head)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003264{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003265 struct pipe *pi, *next;
3266
3267 for (pi = head; pi; pi = next) {
3268#if HAS_KEYWORDS
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003269 debug_printf_clean(" pipe reserved word %d\n", pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003270#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003271 free_pipe(pi);
3272 debug_printf_clean("pipe followup code %d\n", pi->followup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003273 next = pi->next;
3274 /*pi->next = NULL;*/
3275 free(pi);
3276 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003277}
3278
3279
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003280static int run_list(struct pipe *pi);
Denis Vlasenkobc569742009-04-12 20:35:19 +00003281#if BB_MMU
3282#define parse_stream(pstring, input, end_trigger) \
3283 parse_stream(input, end_trigger)
3284#endif
3285static struct pipe *parse_stream(char **pstring,
3286 struct in_str *input,
3287 int end_trigger);
3288static void parse_and_run_string(const char *s);
3289
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003290
Mike Frysinger93cadc22009-05-27 17:06:25 -04003291static char *find_in_path(const char *arg)
3292{
3293 char *ret = NULL;
3294 const char *PATH = get_local_var_value("PATH");
3295
3296 if (!PATH)
3297 return NULL;
3298
3299 while (1) {
3300 const char *end = strchrnul(PATH, ':');
3301 int sz = end - PATH; /* must be int! */
3302
3303 free(ret);
3304 if (sz != 0) {
3305 ret = xasprintf("%.*s/%s", sz, PATH, arg);
3306 } else {
3307 /* We have xxx::yyyy in $PATH,
3308 * it means "use current dir" */
3309 ret = xstrdup(arg);
3310 }
3311 if (access(ret, F_OK) == 0)
3312 break;
3313
3314 if (*end == '\0') {
3315 free(ret);
3316 return NULL;
3317 }
3318 PATH = end + 1;
3319 }
3320
3321 return ret;
3322}
3323
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003324static const struct built_in_command* find_builtin_helper(const char *name,
3325 const struct built_in_command *x,
3326 const struct built_in_command *end)
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003327{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003328 while (x != end) {
3329 if (strcmp(name, x->cmd) != 0) {
3330 x++;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003331 continue;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003332 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003333 debug_printf_exec("found builtin '%s'\n", name);
3334 return x;
3335 }
3336 return NULL;
3337}
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003338static const struct built_in_command* find_builtin1(const char *name)
3339{
3340 return find_builtin_helper(name, bltins1, &bltins1[ARRAY_SIZE(bltins1)]);
3341}
3342static const struct built_in_command* find_builtin(const char *name)
3343{
3344 const struct built_in_command *x = find_builtin1(name);
3345 if (x)
3346 return x;
3347 return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]);
3348}
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003349
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003350#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko873273d2009-09-12 14:47:41 +02003351static struct function **find_function_slot(const char *name)
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003352{
Denys Vlasenko873273d2009-09-12 14:47:41 +02003353 struct function **funcpp = &G.top_func;
3354 while (*funcpp) {
3355 if (strcmp(name, (*funcpp)->name) == 0) {
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003356 break;
3357 }
Denys Vlasenko873273d2009-09-12 14:47:41 +02003358 funcpp = &(*funcpp)->next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003359 }
Denys Vlasenko873273d2009-09-12 14:47:41 +02003360 return funcpp;
3361}
3362
3363static const struct function *find_function(const char *name)
3364{
3365 const struct function *funcp = *find_function_slot(name);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003366 if (funcp)
3367 debug_printf_exec("found function '%s'\n", name);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003368 return funcp;
3369}
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00003370
Denis Vlasenkobc569742009-04-12 20:35:19 +00003371/* Note: takes ownership on name ptr */
3372static struct function *new_function(char *name)
3373{
Denys Vlasenko873273d2009-09-12 14:47:41 +02003374 struct function **funcpp = find_function_slot(name);
3375 struct function *funcp = *funcpp;
Denis Vlasenkobc569742009-04-12 20:35:19 +00003376
Denys Vlasenko873273d2009-09-12 14:47:41 +02003377 if (funcp != NULL) {
3378 struct command *cmd = funcp->parent_cmd;
Denis Vlasenkobc569742009-04-12 20:35:19 +00003379 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
3380 if (!cmd) {
3381 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
3382 free(funcp->name);
3383 /* Note: if !funcp->body, do not free body_as_string!
3384 * This is a special case of "-F name body" function:
3385 * body_as_string was not malloced! */
3386 if (funcp->body) {
3387 free_pipe_list(funcp->body);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003388# if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00003389 free(funcp->body_as_string);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003390# endif
Denis Vlasenkobc569742009-04-12 20:35:19 +00003391 }
3392 } else {
3393 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
3394 cmd->argv[0] = funcp->name;
3395 cmd->group = funcp->body;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003396# if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00003397 cmd->group_as_string = funcp->body_as_string;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003398# endif
Denis Vlasenkobc569742009-04-12 20:35:19 +00003399 }
Denys Vlasenko873273d2009-09-12 14:47:41 +02003400 } else {
3401 debug_printf_exec("remembering new function '%s'\n", name);
3402 funcp = *funcpp = xzalloc(sizeof(*funcp));
3403 /*funcp->next = NULL;*/
Denis Vlasenkobc569742009-04-12 20:35:19 +00003404 }
Denys Vlasenko873273d2009-09-12 14:47:41 +02003405
Denis Vlasenkobc569742009-04-12 20:35:19 +00003406 funcp->name = name;
3407 return funcp;
3408}
3409
Denis Vlasenko40e84372009-04-18 11:23:38 +00003410static void unset_func(const char *name)
3411{
Denys Vlasenko873273d2009-09-12 14:47:41 +02003412 struct function **funcpp = find_function_slot(name);
3413 struct function *funcp = *funcpp;
Denis Vlasenko40e84372009-04-18 11:23:38 +00003414
Denys Vlasenko873273d2009-09-12 14:47:41 +02003415 if (funcp != NULL) {
3416 debug_printf_exec("freeing function '%s'\n", funcp->name);
3417 *funcpp = funcp->next;
3418 /* funcp is unlinked now, deleting it.
3419 * Note: if !funcp->body, the function was created by
3420 * "-F name body", do not free ->body_as_string
3421 * and ->name as they were not malloced. */
3422 if (funcp->body) {
3423 free_pipe_list(funcp->body);
3424 free(funcp->name);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003425# if !BB_MMU
Denys Vlasenko873273d2009-09-12 14:47:41 +02003426 free(funcp->body_as_string);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003427# endif
Denis Vlasenko40e84372009-04-18 11:23:38 +00003428 }
Denys Vlasenko873273d2009-09-12 14:47:41 +02003429 free(funcp);
Denis Vlasenko40e84372009-04-18 11:23:38 +00003430 }
3431}
3432
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003433# if BB_MMU
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003434#define exec_function(to_free, funcp, argv) \
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003435 exec_function(funcp, argv)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003436# endif
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003437static void exec_function(char ***to_free,
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003438 const struct function *funcp,
3439 char **argv) NORETURN;
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003440static void exec_function(char ***to_free,
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003441 const struct function *funcp,
3442 char **argv)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003443{
3444# if BB_MMU
3445 int n = 1;
3446
3447 argv[0] = G.global_argv[0];
3448 G.global_argv = argv;
3449 while (*++argv)
3450 n++;
3451 G.global_argc = n;
Denis Vlasenkobc569742009-04-12 20:35:19 +00003452 /* On MMU, funcp->body is always non-NULL */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003453 n = run_list(funcp->body);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01003454 fflush_all();
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003455 _exit(n);
3456# else
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003457 re_execute_shell(to_free,
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003458 funcp->body_as_string,
3459 G.global_argv[0],
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003460 argv + 1,
3461 NULL);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00003462# endif
3463}
3464
3465static int run_function(const struct function *funcp, char **argv)
3466{
Denis Vlasenko270b1c32009-04-17 18:54:50 +00003467 int rc;
3468 save_arg_t sv;
Mike Frysinger885b6f22009-04-18 21:04:25 +00003469 smallint sv_flg;
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00003470
Denis Vlasenko270b1c32009-04-17 18:54:50 +00003471 save_and_replace_G_args(&sv, argv);
Denys Vlasenko295fef82009-06-03 12:47:26 +02003472
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00003473 /* "we are in function, ok to use return" */
3474 sv_flg = G.flag_return_in_progress;
3475 G.flag_return_in_progress = -1;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003476# if ENABLE_HUSH_LOCAL
Denys Vlasenko295fef82009-06-03 12:47:26 +02003477 G.func_nest_level++;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003478# endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00003479
Denis Vlasenkobc569742009-04-12 20:35:19 +00003480 /* On MMU, funcp->body is always non-NULL */
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003481# if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00003482 if (!funcp->body) {
3483 /* Function defined by -F */
3484 parse_and_run_string(funcp->body_as_string);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00003485 rc = G.last_exitcode;
Denis Vlasenkobc569742009-04-12 20:35:19 +00003486 } else
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003487# endif
Denis Vlasenkobc569742009-04-12 20:35:19 +00003488 {
Denis Vlasenko270b1c32009-04-17 18:54:50 +00003489 rc = run_list(funcp->body);
Denis Vlasenkobc569742009-04-12 20:35:19 +00003490 }
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00003491
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003492# if ENABLE_HUSH_LOCAL
Denys Vlasenko295fef82009-06-03 12:47:26 +02003493 {
3494 struct variable *var;
3495 struct variable **var_pp;
3496
3497 var_pp = &G.top_var;
3498 while ((var = *var_pp) != NULL) {
3499 if (var->func_nest_level < G.func_nest_level) {
3500 var_pp = &var->next;
3501 continue;
3502 }
3503 /* Unexport */
3504 if (var->flg_export)
3505 bb_unsetenv(var->varstr);
3506 /* Remove from global list */
3507 *var_pp = var->next;
3508 /* Free */
3509 if (!var->max_len)
3510 free(var->varstr);
3511 free(var);
3512 }
3513 G.func_nest_level--;
3514 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003515# endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00003516 G.flag_return_in_progress = sv_flg;
Denys Vlasenko295fef82009-06-03 12:47:26 +02003517
Denis Vlasenko270b1c32009-04-17 18:54:50 +00003518 restore_G_args(&sv, argv);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00003519
Denis Vlasenko270b1c32009-04-17 18:54:50 +00003520 return rc;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003521}
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003522#endif /* ENABLE_HUSH_FUNCTIONS */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003523
3524
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003525#if BB_MMU
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003526#define exec_builtin(to_free, x, argv) \
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003527 exec_builtin(x, argv)
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003528#else
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003529#define exec_builtin(to_free, x, argv) \
3530 exec_builtin(to_free, argv)
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003531#endif
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003532static void exec_builtin(char ***to_free,
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003533 const struct built_in_command *x,
3534 char **argv) NORETURN;
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003535static void exec_builtin(char ***to_free,
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003536 const struct built_in_command *x,
3537 char **argv)
3538{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003539#if BB_MMU
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003540 int rcode = x->function(argv);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01003541 fflush_all();
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003542 _exit(rcode);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003543#else
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003544 /* On NOMMU, we must never block!
3545 * Example: { sleep 99 | read line; } & echo Ok
3546 */
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003547 re_execute_shell(to_free,
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003548 argv[0],
3549 G.global_argv[0],
3550 G.global_argv + 1,
3551 argv);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003552#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003553}
3554
3555
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02003556static void execvp_or_die(char **argv) NORETURN;
3557static void execvp_or_die(char **argv)
3558{
3559 debug_printf_exec("execing '%s'\n", argv[0]);
3560 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
3561 execvp(argv[0], argv);
3562 bb_perror_msg("can't execute '%s'", argv[0]);
3563 _exit(127); /* bash compat */
3564}
3565
Denis Vlasenkocc90f442009-04-08 16:40:34 +00003566#if BB_MMU
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003567#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
3568 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
3569#define pseudo_exec(nommu_save, command, argv_expanded) \
3570 pseudo_exec(command, argv_expanded)
3571#endif
3572
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003573/* Called after [v]fork() in run_pipe, or from builtin_exec.
Denis Vlasenko8412d792007-10-01 09:59:47 +00003574 * Never returns.
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003575 * Don't exit() here. If you don't exec, use _exit instead.
Eric Andersen94ac2442001-05-22 19:05:18 +00003576 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00003577 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003578static void pseudo_exec_argv(nommu_save_t *nommu_save,
3579 char **argv, int assignment_cnt,
3580 char **argv_expanded) NORETURN;
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02003581static NOINLINE void pseudo_exec_argv(nommu_save_t *nommu_save,
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003582 char **argv, int assignment_cnt,
3583 char **argv_expanded)
Eric Andersen25f27032001-04-26 23:22:31 +00003584{
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003585 char **new_env;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00003586
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003587 /* Case when we are here: ... | var=val | ... */
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003588 if (!argv[assignment_cnt])
Denis Vlasenko1359da62007-04-21 23:27:30 +00003589 _exit(EXIT_SUCCESS);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00003590
Denis Vlasenko9504e442008-10-29 01:19:15 +00003591 new_env = expand_assignments(argv, assignment_cnt);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003592#if BB_MMU
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003593 set_vars_and_save_old(new_env);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003594 free(new_env); /* optional */
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003595 /* we can also destroy set_vars_and_save_old's return value,
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003596 * to save memory */
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003597#else
3598 nommu_save->new_env = new_env;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003599 nommu_save->old_vars = set_vars_and_save_old(new_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003600#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003601 if (argv_expanded) {
3602 argv = argv_expanded;
3603 } else {
Denis Vlasenko37181682009-04-03 03:19:15 +00003604 argv = expand_strvec_to_strvec(argv + assignment_cnt);
Denis Vlasenko76d50412008-06-10 16:19:39 +00003605#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003606 nommu_save->argv = argv;
Denis Vlasenko76d50412008-06-10 16:19:39 +00003607#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003608 }
Denis Vlasenko764d59d2007-05-14 16:23:23 +00003609
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003610#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
3611 if (strchr(argv[0], '/') != NULL)
3612 goto skip;
3613#endif
3614
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003615 /* Check if the command matches any of the builtins.
Denis Vlasenko1359da62007-04-21 23:27:30 +00003616 * Depending on context, this might be redundant. But it's
3617 * easier to waste a few CPU cycles than it is to figure out
3618 * if this is one of those cases.
3619 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003620 {
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003621 /* On NOMMU, it is more expensive to re-execute shell
3622 * just in order to run echo or test builtin.
3623 * It's better to skip it here and run corresponding
3624 * non-builtin later. */
3625 const struct built_in_command *x;
3626 x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003627 if (x) {
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003628 exec_builtin(&nommu_save->argv_from_re_execing, x, argv);
Eric Andersen94ac2442001-05-22 19:05:18 +00003629 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00003630 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003631#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003632 /* Check if the command matches any functions */
3633 {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003634 const struct function *funcp = find_function(argv[0]);
3635 if (funcp) {
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003636 exec_function(&nommu_save->argv_from_re_execing, funcp, argv);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003637 }
3638 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003639#endif
Eric Andersen78a7c992001-05-15 16:30:25 +00003640
Denis Vlasenko80d14be2007-04-10 23:03:30 +00003641#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003642 /* Check if the command matches any busybox applets */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003643 {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00003644 int a = find_applet_by_name(argv[0]);
3645 if (a >= 0) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003646# if BB_MMU /* see above why on NOMMU it is not allowed */
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00003647 if (APPLET_IS_NOEXEC(a)) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003648 debug_printf_exec("running applet '%s'\n", argv[0]);
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00003649 run_applet_no_and_exit(a, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003650 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003651# endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003652 /* Re-exec ourselves */
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003653 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003654 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
3655 execv(bb_busybox_exec_path, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003656 /* If they called chroot or otherwise made the binary no longer
3657 * executable, fall through */
3658 }
3659 }
Eric Andersenaac75e52001-04-30 18:18:45 +00003660#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003661
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003662#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003663 skip:
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003664#endif
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02003665 execvp_or_die(argv);
Denis Vlasenko1359da62007-04-21 23:27:30 +00003666}
3667
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003668/* Called after [v]fork() in run_pipe
Denis Vlasenko8412d792007-10-01 09:59:47 +00003669 */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003670static void pseudo_exec(nommu_save_t *nommu_save,
3671 struct command *command,
3672 char **argv_expanded) NORETURN;
3673static void pseudo_exec(nommu_save_t *nommu_save,
3674 struct command *command,
3675 char **argv_expanded)
Denis Vlasenko1359da62007-04-21 23:27:30 +00003676{
Denis Vlasenko552433b2009-04-04 19:29:21 +00003677 if (command->argv) {
3678 pseudo_exec_argv(nommu_save, command->argv,
3679 command->assignment_cnt, argv_expanded);
3680 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003681
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003682 if (command->group) {
Denis Vlasenko552433b2009-04-04 19:29:21 +00003683 /* Cases when we are here:
3684 * ( list )
3685 * { list } &
3686 * ... | ( list ) | ...
3687 * ... | { list } | ...
3688 */
3689#if BB_MMU
Denis Vlasenko3b492162007-12-24 14:26:57 +00003690 int rcode;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003691 debug_printf_exec("pseudo_exec: run_list\n");
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00003692 reset_traps_to_defaults();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003693 rcode = run_list(command->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00003694 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00003695 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00003696 _exit(rcode);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003697#else
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003698 re_execute_shell(&nommu_save->argv_from_re_execing,
3699 command->group_as_string,
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003700 G.global_argv[0],
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003701 G.global_argv + 1,
3702 NULL);
Denis Vlasenko8412d792007-10-01 09:59:47 +00003703#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003704 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003705
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003706 /* Case when we are here: ... | >file */
3707 debug_printf_exec("pseudo_exec'ed null command\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003708 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00003709}
3710
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003711#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003712static const char *get_cmdtext(struct pipe *pi)
3713{
3714 char **argv;
3715 char *p;
3716 int len;
3717
3718 /* This is subtle. ->cmdtext is created only on first backgrounding.
3719 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003720 * On subsequent bg argv is trashed, but we won't use it */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003721 if (pi->cmdtext)
3722 return pi->cmdtext;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003723 argv = pi->cmds[0].argv;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003724 if (!argv || !argv[0]) {
3725 pi->cmdtext = xzalloc(1);
3726 return pi->cmdtext;
3727 }
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003728
3729 len = 0;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003730 do {
3731 len += strlen(*argv) + 1;
3732 } while (*++argv);
3733 p = xmalloc(len);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00003734 pi->cmdtext = p;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003735 argv = pi->cmds[0].argv;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003736 do {
3737 len = strlen(*argv);
3738 memcpy(p, *argv, len);
3739 p += len;
3740 *p++ = ' ';
3741 } while (*++argv);
3742 p[-1] = '\0';
3743 return pi->cmdtext;
3744}
3745
Eric Andersenbafd94f2001-05-02 16:11:59 +00003746static void insert_bg_job(struct pipe *pi)
3747{
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003748 struct pipe *job, **jobp;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003749 int i;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003750
3751 /* Linear search for the ID of the job to use */
3752 pi->jobid = 1;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003753 for (job = G.job_list; job; job = job->next)
3754 if (job->jobid >= pi->jobid)
3755 pi->jobid = job->jobid + 1;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003756
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003757 /* Add job to the list of running jobs */
3758 jobp = &G.job_list;
3759 while ((job = *jobp) != NULL)
3760 jobp = &job->next;
3761 job = *jobp = xmalloc(sizeof(*job));
Eric Andersenbafd94f2001-05-02 16:11:59 +00003762
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003763 *job = *pi; /* physical copy */
3764 job->next = NULL;
3765 job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
3766 /* Cannot copy entire pi->cmds[] vector! This causes double frees */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003767 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003768 job->cmds[i].pid = pi->cmds[i].pid;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003769 /* all other fields are not used and stay zero */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003770 }
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003771 job->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00003772
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003773 if (G_interactive_fd)
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003774 printf("[%d] %d %s\n", job->jobid, job->cmds[0].pid, job->cmdtext);
3775 /* Last command's pid goes to $! */
3776 G.last_bg_pid = job->cmds[job->num_cmds - 1].pid;
3777 G.last_jobid = job->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003778}
3779
Eric Andersenbafd94f2001-05-02 16:11:59 +00003780static void remove_bg_job(struct pipe *pi)
3781{
3782 struct pipe *prev_pipe;
3783
Denis Vlasenko87a86552008-07-29 19:43:10 +00003784 if (pi == G.job_list) {
3785 G.job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003786 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003787 prev_pipe = G.job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003788 while (prev_pipe->next != pi)
3789 prev_pipe = prev_pipe->next;
3790 prev_pipe->next = pi->next;
3791 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00003792 if (G.job_list)
3793 G.last_jobid = G.job_list->jobid;
Eric Andersen028b65b2001-06-28 01:10:11 +00003794 else
Denis Vlasenko87a86552008-07-29 19:43:10 +00003795 G.last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00003796}
Eric Andersen028b65b2001-06-28 01:10:11 +00003797
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003798/* Remove a backgrounded job */
Denis Vlasenko1359da62007-04-21 23:27:30 +00003799static void delete_finished_bg_job(struct pipe *pi)
3800{
3801 remove_bg_job(pi);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003802 pi->stopped_cmds = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003803 free_pipe(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00003804 free(pi);
3805}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003806#endif /* JOB */
Eric Andersenbafd94f2001-05-02 16:11:59 +00003807
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003808/* Check to see if any processes have exited -- if they
3809 * have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00003810static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00003811{
Eric Andersenc798b072001-06-22 06:23:03 +00003812 int attributes;
3813 int status;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003814#if ENABLE_HUSH_JOB
Eric Andersenbafd94f2001-05-02 16:11:59 +00003815 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003816#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00003817 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003818 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003819
Denis Vlasenkod5762932009-03-31 11:22:57 +00003820 debug_printf_jobs("checkjobs %p\n", fg_pipe);
3821
Eric Andersenc798b072001-06-22 06:23:03 +00003822 attributes = WUNTRACED;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003823 if (fg_pipe == NULL)
Eric Andersenc798b072001-06-22 06:23:03 +00003824 attributes |= WNOHANG;
Eric Andersenc798b072001-06-22 06:23:03 +00003825
Denys Vlasenkoe2df5f42009-05-26 14:34:10 +02003826 errno = 0;
3827#if ENABLE_HUSH_FAST
3828 if (G.handled_SIGCHLD == G.count_SIGCHLD) {
3829//bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p",
3830//getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe);
Denys Vlasenko68759ed2009-05-26 14:39:41 +02003831 /* There was neither fork nor SIGCHLD since last waitpid */
3832 /* Avoid doing waitpid syscall if possible */
Denys Vlasenkoe2df5f42009-05-26 14:34:10 +02003833 if (!G.we_have_children) {
3834 errno = ECHILD;
3835 return -1;
3836 }
3837 if (fg_pipe == NULL) { /* is WNOHANG set? */
3838 /* We have children, but they did not exit
3839 * or stop yet (we saw no SIGCHLD) */
3840 return 0;
3841 }
3842 /* else: !WNOHANG, waitpid will block, can't short-circuit */
3843 }
3844#endif
3845
Denis Vlasenko1359da62007-04-21 23:27:30 +00003846/* Do we do this right?
3847 * bash-3.00# sleep 20 | false
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003848 * <ctrl-Z pressed>
Denis Vlasenko1359da62007-04-21 23:27:30 +00003849 * [3]+ Stopped sleep 20 | false
3850 * bash-3.00# echo $?
3851 * 1 <========== bg pipe is not fully done, but exitcode is already known!
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003852 * [hush 1.14.0: yes we do it right]
Denis Vlasenko1359da62007-04-21 23:27:30 +00003853 */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003854 wait_more:
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003855 while (1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003856 int i;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003857 int dead;
3858
Denys Vlasenko8d7be232009-05-25 16:38:32 +02003859#if ENABLE_HUSH_FAST
3860 i = G.count_SIGCHLD;
3861#endif
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003862 childpid = waitpid(-1, &status, attributes);
3863 if (childpid <= 0) {
3864 if (childpid && errno != ECHILD)
3865 bb_perror_msg("waitpid");
Denys Vlasenko8d7be232009-05-25 16:38:32 +02003866#if ENABLE_HUSH_FAST
3867 else { /* Until next SIGCHLD, waitpid's are useless */
Denys Vlasenkoe2df5f42009-05-26 14:34:10 +02003868 G.we_have_children = (childpid == 0);
Denys Vlasenko8d7be232009-05-25 16:38:32 +02003869 G.handled_SIGCHLD = i;
3870//bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
3871 }
3872#endif
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003873 break;
3874 }
3875 dead = WIFEXITED(status) || WIFSIGNALED(status);
3876
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003877#if DEBUG_JOBS
Denis Vlasenko1359da62007-04-21 23:27:30 +00003878 if (WIFSTOPPED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003879 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003880 childpid, WSTOPSIG(status), WEXITSTATUS(status));
3881 if (WIFSIGNALED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003882 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003883 childpid, WTERMSIG(status), WEXITSTATUS(status));
3884 if (WIFEXITED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003885 debug_printf_jobs("pid %d exited, exitcode %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003886 childpid, WEXITSTATUS(status));
3887#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003888 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00003889 if (fg_pipe) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003890 for (i = 0; i < fg_pipe->num_cmds; i++) {
3891 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
3892 if (fg_pipe->cmds[i].pid != childpid)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003893 continue;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003894 if (dead) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003895 fg_pipe->cmds[i].pid = 0;
3896 fg_pipe->alive_cmds--;
3897 if (i == fg_pipe->num_cmds - 1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003898 /* last process gives overall exitstatus */
3899 rcode = WEXITSTATUS(status);
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02003900 /* bash prints killer signal's name for *last*
Denis Vlasenko40e84372009-04-18 11:23:38 +00003901 * process in pipe (prints just newline for SIGINT).
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02003902 * Mimic this. Example: "sleep 5" + (^\ or kill -QUIT)
Denis Vlasenko40e84372009-04-18 11:23:38 +00003903 */
3904 if (WIFSIGNALED(status)) {
Denis Vlasenko38e626d2009-04-18 12:58:19 +00003905 int sig = WTERMSIG(status);
3906 printf("%s\n", sig == SIGINT ? "" : get_signame(sig));
Denys Vlasenkoa4899ef2010-01-04 11:37:09 +01003907 /* TODO: MIPS has 128 sigs (1..128), what if sig==128 here?
3908 * Maybe we need to use sig | 128? */
3909 rcode = sig + 128;
Denis Vlasenko40e84372009-04-18 11:23:38 +00003910 }
Denys Vlasenkoa4899ef2010-01-04 11:37:09 +01003911 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
Denis Vlasenko1359da62007-04-21 23:27:30 +00003912 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003913 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003914 fg_pipe->cmds[i].is_stopped = 1;
3915 fg_pipe->stopped_cmds++;
Eric Andersenc798b072001-06-22 06:23:03 +00003916 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003917 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
3918 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
3919 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003920 /* All processes in fg pipe have exited or stopped */
3921/* Note: *non-interactive* bash does not continue if all processes in fg pipe
3922 * are stopped. Testcase: "cat | cat" in a script (not on command line!)
3923 * and "killall -STOP cat" */
3924 if (G_interactive_fd) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003925#if ENABLE_HUSH_JOB
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003926 if (fg_pipe->alive_cmds)
3927 insert_bg_job(fg_pipe);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003928#endif
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003929 return rcode;
3930 }
Denys Vlasenko6f226242009-06-03 14:37:30 +02003931 if (!fg_pipe->alive_cmds)
3932 return rcode;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003933 }
3934 /* There are still running processes in the fg pipe */
3935 goto wait_more; /* do waitpid again */
Eric Andersenc798b072001-06-22 06:23:03 +00003936 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003937 /* it wasnt fg_pipe, look for process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00003938 }
3939
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003940#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003941 /* We asked to wait for bg or orphaned children */
3942 /* No need to remember exitcode in this case */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003943 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003944 for (i = 0; i < pi->num_cmds; i++) {
3945 if (pi->cmds[i].pid == childpid)
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003946 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00003947 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00003948 }
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003949 /* Happens when shell is used as init process (init=/bin/sh) */
3950 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003951 continue; /* do waitpid again */
Eric Andersenaeb44c42001-05-22 20:29:00 +00003952
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003953 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00003954 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00003955 /* child exited */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003956 pi->cmds[i].pid = 0;
3957 pi->alive_cmds--;
3958 if (!pi->alive_cmds) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003959 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00003960 printf(JOB_STATUS_FORMAT, pi->jobid,
3961 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00003962 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00003963 }
3964 } else {
3965 /* child stopped */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003966 pi->cmds[i].is_stopped = 1;
3967 pi->stopped_cmds++;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003968 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003969#endif
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003970 } /* while (waitpid succeeds)... */
Eric Andersenbafd94f2001-05-02 16:11:59 +00003971
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003972 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00003973}
3974
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003975#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +00003976static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
3977{
3978 pid_t p;
3979 int rcode = checkjobs(fg_pipe);
Mike Frysinger38478a62009-05-20 04:48:06 -04003980 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00003981 /* Job finished, move the shell to the foreground */
3982 p = getpgrp(); /* our process group id */
3983 debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p);
3984 tcsetpgrp(G_interactive_fd, p);
3985 }
Denis Vlasenko52881e92007-04-21 13:42:52 +00003986 return rcode;
3987}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003988#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00003989
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003990/* Start all the jobs, but don't wait for anything to finish.
3991 * See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00003992 *
Denis Vlasenko552433b2009-04-04 19:29:21 +00003993 * Return code is normally -1, when the caller has to wait for children
Eric Andersen25f27032001-04-26 23:22:31 +00003994 * to finish to determine the exit status of the pipe. If the pipe
3995 * is a simple builtin command, however, the action is done by the
Denis Vlasenko05743d72008-02-10 12:10:08 +00003996 * time run_pipe returns, and the exit code is provided as the
Eric Andersen25f27032001-04-26 23:22:31 +00003997 * return value.
3998 *
Denis Vlasenko170435c2007-05-23 13:01:10 +00003999 * Returns -1 only if started some children. IOW: we have to
4000 * mask out retvals of builtins etc with 0xff!
Denis Vlasenko552433b2009-04-04 19:29:21 +00004001 *
4002 * The only case when we do not need to [v]fork is when the pipe
4003 * is single, non-backgrounded, non-subshell command. Examples:
4004 * cmd ; ... { list } ; ...
4005 * cmd && ... { list } && ...
4006 * cmd || ... { list } || ...
4007 * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
4008 * or (if SH_STANDALONE) an applet, and we can run the { list }
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00004009 * with run_list. If it isn't one of these, we fork and exec cmd.
Denis Vlasenko552433b2009-04-04 19:29:21 +00004010 *
4011 * Cases when we must fork:
4012 * non-single: cmd | cmd
4013 * backgrounded: cmd & { list } &
4014 * subshell: ( list ) [&]
Eric Andersen25f27032001-04-26 23:22:31 +00004015 */
Denys Vlasenkoa7bb3c12009-10-08 12:28:08 +02004016static NOINLINE int run_pipe(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00004017{
Denis Vlasenko552433b2009-04-04 19:29:21 +00004018 static const char *const null_ptr = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00004019 int i;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00004020 int nextin;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004021 struct command *command;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004022 char **argv_expanded;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00004023 char **argv;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00004024 char *p;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00004025 /* it is not always needed, but we aim to smaller code */
4026 int squirrel[] = { -1, -1, -1 };
4027 int rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00004028
Denis Vlasenko552433b2009-04-04 19:29:21 +00004029 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004030 debug_enter();
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00004031
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00004032 IF_HUSH_JOB(pi->pgrp = -1;)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004033 pi->stopped_cmds = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004034 command = &(pi->cmds[0]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00004035 argv_expanded = NULL;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004036
Denis Vlasenko552433b2009-04-04 19:29:21 +00004037 if (pi->num_cmds != 1
4038 || pi->followup == PIPE_BG
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004039 || command->cmd_type == CMD_SUBSHELL
Denis Vlasenko552433b2009-04-04 19:29:21 +00004040 ) {
4041 goto must_fork;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004042 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004043
Denis Vlasenko552433b2009-04-04 19:29:21 +00004044 pi->alive_cmds = 1;
4045
4046 debug_printf_exec(": group:%p argv:'%s'\n",
4047 command->group, command->argv ? command->argv[0] : "NONE");
4048
4049 if (command->group) {
4050#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004051 if (command->cmd_type == CMD_FUNCDEF) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004052 /* "executing" func () { list } */
4053 struct function *funcp;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004054
Denis Vlasenkobc569742009-04-12 20:35:19 +00004055 funcp = new_function(command->argv[0]);
4056 /* funcp->name is already set to argv[0] */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004057 funcp->body = command->group;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02004058# if !BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004059 funcp->body_as_string = command->group_as_string;
4060 command->group_as_string = NULL;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02004061# endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004062 command->group = NULL;
4063 command->argv[0] = NULL;
Denis Vlasenkoed055212009-04-11 10:37:10 +00004064 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
4065 funcp->parent_cmd = command;
4066 command->child_func = funcp;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004067
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004068 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
4069 debug_leave();
Denis Vlasenko552433b2009-04-04 19:29:21 +00004070 return EXIT_SUCCESS;
4071 }
4072#endif
4073 /* { list } */
4074 debug_printf("non-subshell group\n");
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00004075 rcode = 1; /* exitcode if redir failed */
4076 if (setup_redirects(command, squirrel) == 0) {
4077 debug_printf_exec(": run_list\n");
4078 rcode = run_list(command->group) & 0xff;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00004079 }
Eric Andersen04407e52001-06-07 16:42:05 +00004080 restore_redirects(squirrel);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004081 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004082 debug_leave();
4083 debug_printf_exec("run_pipe: return %d\n", rcode);
Denis Vlasenko05743d72008-02-10 12:10:08 +00004084 return rcode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00004085 }
4086
Denis Vlasenko552433b2009-04-04 19:29:21 +00004087 argv = command->argv ? command->argv : (char **) &null_ptr;
4088 {
4089 const struct built_in_command *x;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004090#if ENABLE_HUSH_FUNCTIONS
4091 const struct function *funcp;
4092#else
4093 enum { funcp = 0 };
4094#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004095 char **new_env = NULL;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02004096 struct variable *old_vars = NULL;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004097
Denis Vlasenko552433b2009-04-04 19:29:21 +00004098 if (argv[command->assignment_cnt] == NULL) {
4099 /* Assignments, but no command */
4100 /* Ensure redirects take effect. Try "a=t >file" */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00004101 rcode = setup_redirects(command, squirrel);
Denis Vlasenko552433b2009-04-04 19:29:21 +00004102 restore_redirects(squirrel);
4103 /* Set shell variables */
4104 while (*argv) {
4105 p = expand_string_to_string(*argv);
4106 debug_printf_exec("set shell var:'%s'->'%s'\n",
4107 *argv, p);
Denys Vlasenko295fef82009-06-03 12:47:26 +02004108 set_local_var(p, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
Denis Vlasenko552433b2009-04-04 19:29:21 +00004109 argv++;
Eric Andersen78a7c992001-05-15 16:30:25 +00004110 }
Denis Vlasenko552433b2009-04-04 19:29:21 +00004111 /* Do we need to flag set_local_var() errors?
4112 * "assignment to readonly var" and "putenv error"
4113 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00004114 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004115 debug_leave();
4116 debug_printf_exec("run_pipe: return %d\n", rcode);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00004117 return rcode;
Eric Andersen78a7c992001-05-15 16:30:25 +00004118 }
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00004119
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00004120 /* Expand the rest into (possibly) many strings each */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02004121 if (0) {}
4122#if ENABLE_HUSH_BASH_COMPAT
4123 else if (command->cmd_type == CMD_SINGLEWORD_NOGLOB) {
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004124 argv_expanded = expand_strvec_to_strvec_singleword_noglob(argv + command->assignment_cnt);
4125 }
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02004126#endif
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004127#ifdef CMD_SINGLEWORD_NOGLOB_COND
4128 else if (command->cmd_type == CMD_SINGLEWORD_NOGLOB_COND) {
4129 argv_expanded = expand_strvec_to_strvec_singleword_noglob_cond(argv + command->assignment_cnt);
4130
4131 }
4132#endif
4133 else {
4134 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
4135 }
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00004136
Denys Vlasenkof37eb392009-10-18 11:46:35 +02004137 /* if someone gives us an empty string: `cmd with empty output` */
Mike Frysinger28736c32009-10-18 01:11:45 -04004138 if (!argv_expanded[0]) {
Denys Vlasenko385cc592010-01-12 06:47:39 +01004139 free(argv_expanded);
Mike Frysinger28736c32009-10-18 01:11:45 -04004140 debug_leave();
Denys Vlasenko00243b02009-11-16 02:00:03 +01004141 return G.last_exitcode;
Mike Frysinger28736c32009-10-18 01:11:45 -04004142 }
4143
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004144 x = find_builtin(argv_expanded[0]);
4145#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004146 funcp = NULL;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004147 if (!x)
4148 funcp = find_function(argv_expanded[0]);
4149#endif
4150 if (x || funcp) {
4151 if (!funcp) {
4152 if (x->function == builtin_exec && argv_expanded[1] == NULL) {
4153 debug_printf("exec with redirects only\n");
4154 rcode = setup_redirects(command, NULL);
4155 goto clean_up_and_ret1;
4156 }
Eric Andersen25f27032001-04-26 23:22:31 +00004157 }
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00004158 /* setup_redirects acts on file descriptors, not FILEs.
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004159 * This is perfect for work that comes after exec().
4160 * Is it really safe for inline use? Experimentally,
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00004161 * things seem to work. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00004162 rcode = setup_redirects(command, squirrel);
4163 if (rcode == 0) {
4164 new_env = expand_assignments(argv, command->assignment_cnt);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02004165 old_vars = set_vars_and_save_old(new_env);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004166 if (!funcp) {
4167 debug_printf_exec(": builtin '%s' '%s'...\n",
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00004168 x->cmd, argv_expanded[1]);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004169 rcode = x->function(argv_expanded) & 0xff;
Denys Vlasenko8131eea2009-11-02 14:19:51 +01004170 fflush_all();
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004171 }
4172#if ENABLE_HUSH_FUNCTIONS
4173 else {
Denys Vlasenko295fef82009-06-03 12:47:26 +02004174# if ENABLE_HUSH_LOCAL
4175 struct variable **sv;
4176 sv = G.shadowed_vars_pp;
4177 G.shadowed_vars_pp = &old_vars;
4178# endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004179 debug_printf_exec(": function '%s' '%s'...\n",
4180 funcp->name, argv_expanded[1]);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00004181 rcode = run_function(funcp, argv_expanded) & 0xff;
Denys Vlasenko295fef82009-06-03 12:47:26 +02004182# if ENABLE_HUSH_LOCAL
4183 G.shadowed_vars_pp = sv;
4184# endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004185 }
4186#endif
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00004187 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00004188#if ENABLE_FEATURE_SH_STANDALONE
4189 clean_up_and_ret:
4190#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004191 restore_redirects(squirrel);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02004192 unset_vars(new_env);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02004193 add_vars(old_vars);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004194 clean_up_and_ret1:
4195 free(argv_expanded);
4196 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004197 debug_leave();
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004198 debug_printf_exec("run_pipe return %d\n", rcode);
4199 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00004200 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004201
Denis Vlasenkof5294e12007-04-14 10:09:57 +00004202#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004203 i = find_applet_by_name(argv_expanded[0]);
4204 if (i >= 0 && APPLET_IS_NOFORK(i)) {
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00004205 rcode = setup_redirects(command, squirrel);
4206 if (rcode == 0) {
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00004207 new_env = expand_assignments(argv, command->assignment_cnt);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02004208 old_vars = set_vars_and_save_old(new_env);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00004209 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004210 argv_expanded[0], argv_expanded[1]);
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00004211 rcode = run_nofork_applet(i, argv_expanded);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00004212 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004213 goto clean_up_and_ret;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00004214 }
4215#endif
Denis Vlasenko552433b2009-04-04 19:29:21 +00004216 /* It is neither builtin nor applet. We must fork. */
Eric Andersen25f27032001-04-26 23:22:31 +00004217 }
4218
Denis Vlasenko552433b2009-04-04 19:29:21 +00004219 must_fork:
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00004220 /* NB: argv_expanded may already be created, and that
4221 * might include `cmd` runs! Do not rerun it! We *must*
4222 * use argv_expanded if it's non-NULL */
4223
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00004224 /* Going to fork a child per each pipe member */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004225 pi->alive_cmds = 0;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00004226 nextin = 0;
4227
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004228 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko8c64e032009-04-20 00:34:01 +00004229 struct fd_pair pipefds;
Denis Vlasenko76d50412008-06-10 16:19:39 +00004230#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00004231 volatile nommu_save_t nommu_save;
4232 nommu_save.new_env = NULL;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02004233 nommu_save.old_vars = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00004234 nommu_save.argv = NULL;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004235 nommu_save.argv_from_re_execing = NULL;
Denis Vlasenko76d50412008-06-10 16:19:39 +00004236#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004237 command = &(pi->cmds[i]);
4238 if (command->argv) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004239 debug_printf_exec(": pipe member '%s' '%s'...\n",
4240 command->argv[0], command->argv[1]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00004241 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004242 debug_printf_exec(": pipe member with no argv\n");
Denis Vlasenko552433b2009-04-04 19:29:21 +00004243 }
Eric Andersen25f27032001-04-26 23:22:31 +00004244
4245 /* pipes are inserted between pairs of commands */
Denis Vlasenko8c64e032009-04-20 00:34:01 +00004246 pipefds.rd = 0;
4247 pipefds.wr = 1;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004248 if ((i + 1) < pi->num_cmds)
Denis Vlasenko8c64e032009-04-20 00:34:01 +00004249 xpiped_pair(pipefds);
Eric Andersen25f27032001-04-26 23:22:31 +00004250
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004251 command->pid = BB_MMU ? fork() : vfork();
4252 if (!command->pid) { /* child */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00004253#if ENABLE_HUSH_JOB
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004254 disable_restore_tty_pgrp_on_exit();
Denys Vlasenko76ace252009-10-12 15:25:01 +02004255 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
Denis Vlasenkod5762932009-03-31 11:22:57 +00004256
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004257 /* Every child adds itself to new process group
Denis Vlasenko05743d72008-02-10 12:10:08 +00004258 * with pgid == pid_of_first_child_in_pipe */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004259 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00004260 pid_t pgrp;
Denis Vlasenko05743d72008-02-10 12:10:08 +00004261 pgrp = pi->pgrp;
4262 if (pgrp < 0) /* true for 1st process only */
4263 pgrp = getpid();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00004264 if (setpgid(0, pgrp) == 0
4265 && pi->followup != PIPE_BG
Mike Frysinger38478a62009-05-20 04:48:06 -04004266 && G_saved_tty_pgrp /* we have ctty */
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00004267 ) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004268 /* We do it in *every* child, not just first,
4269 * to avoid races */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004270 tcsetpgrp(G_interactive_fd, pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004271 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004272 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00004273#endif
Denis Vlasenko8c64e032009-04-20 00:34:01 +00004274 if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
4275 /* 1st cmd in backgrounded pipe
4276 * should have its stdin /dev/null'ed */
4277 close(0);
4278 if (open(bb_dev_null, O_RDONLY))
4279 xopen("/", O_RDONLY);
4280 } else {
4281 xmove_fd(nextin, 0);
4282 }
4283 xmove_fd(pipefds.wr, 1);
4284 if (pipefds.rd > 1)
4285 close(pipefds.rd);
Eric Andersen25f27032001-04-26 23:22:31 +00004286 /* Like bash, explicit redirects override pipes,
4287 * and the pipe fd is available for dup'ing. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00004288 if (setup_redirects(command, NULL))
4289 _exit(1);
Eric Andersen52a97ca2001-06-22 06:49:26 +00004290
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004291 /* Restore default handlers just prior to exec */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00004292 /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
4293
Denis Vlasenkof886fd22008-10-13 12:36:05 +00004294 /* Stores to nommu_save list of env vars putenv'ed
4295 * (NOMMU, on MMU we don't need that) */
4296 /* cast away volatility... */
4297 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00004298 /* pseudo_exec() does not return */
Eric Andersen25f27032001-04-26 23:22:31 +00004299 }
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00004300
Denis Vlasenkof9375282009-04-05 19:13:39 +00004301 /* parent or error */
Denys Vlasenko8d7be232009-05-25 16:38:32 +02004302#if ENABLE_HUSH_FAST
4303 G.count_SIGCHLD++;
4304//bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
4305#endif
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004306 enable_restore_tty_pgrp_on_exit();
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00004307#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00004308 /* Clean up after vforked child */
4309 free(nommu_save.argv);
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004310 free(nommu_save.argv_from_re_execing);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02004311 unset_vars(nommu_save.new_env);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02004312 add_vars(nommu_save.old_vars);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00004313#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00004314 free(argv_expanded);
4315 argv_expanded = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004316 if (command->pid < 0) { /* [v]fork failed */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00004317 /* Clearly indicate, was it fork or vfork */
Denis Vlasenko82604e92008-07-01 15:59:42 +00004318 bb_perror_msg(BB_MMU ? "fork" : "vfork");
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00004319 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004320 pi->alive_cmds++;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004321#if ENABLE_HUSH_JOB
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00004322 /* Second and next children need to know pid of first one */
4323 if (pi->pgrp < 0)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004324 pi->pgrp = command->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00004325#endif
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00004326 }
Eric Andersen25f27032001-04-26 23:22:31 +00004327
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00004328 if (i)
4329 close(nextin);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004330 if ((i + 1) < pi->num_cmds)
Denis Vlasenko8c64e032009-04-20 00:34:01 +00004331 close(pipefds.wr);
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00004332 /* Pass read (output) pipe end to next iteration */
Denis Vlasenko8c64e032009-04-20 00:34:01 +00004333 nextin = pipefds.rd;
Eric Andersen25f27032001-04-26 23:22:31 +00004334 }
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00004335
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004336 if (!pi->alive_cmds) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004337 debug_leave();
Denis Vlasenko05743d72008-02-10 12:10:08 +00004338 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
4339 return 1;
4340 }
4341
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004342 debug_leave();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004343 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
Eric Andersen25f27032001-04-26 23:22:31 +00004344 return -1;
4345}
4346
Denis Vlasenko4b924f32007-05-30 00:29:55 +00004347#ifndef debug_print_tree
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004348static void debug_print_tree(struct pipe *pi, int lvl)
4349{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004350 static const char *const PIPE[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004351 [PIPE_SEQ] = "SEQ",
4352 [PIPE_AND] = "AND",
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004353 [PIPE_OR ] = "OR" ,
4354 [PIPE_BG ] = "BG" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004355 };
4356 static const char *RES[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004357 [RES_NONE ] = "NONE" ,
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004358# if ENABLE_HUSH_IF
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004359 [RES_IF ] = "IF" ,
4360 [RES_THEN ] = "THEN" ,
4361 [RES_ELIF ] = "ELIF" ,
4362 [RES_ELSE ] = "ELSE" ,
4363 [RES_FI ] = "FI" ,
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004364# endif
4365# if ENABLE_HUSH_LOOPS
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004366 [RES_FOR ] = "FOR" ,
4367 [RES_WHILE] = "WHILE",
4368 [RES_UNTIL] = "UNTIL",
4369 [RES_DO ] = "DO" ,
4370 [RES_DONE ] = "DONE" ,
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004371# endif
4372# if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004373 [RES_IN ] = "IN" ,
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004374# endif
4375# if ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004376 [RES_CASE ] = "CASE" ,
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004377 [RES_CASE_IN ] = "CASE_IN" ,
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004378 [RES_MATCH] = "MATCH",
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004379 [RES_CASE_BODY] = "CASE_BODY",
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004380 [RES_ESAC ] = "ESAC" ,
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004381# endif
Denis Vlasenko06810332007-05-21 23:30:54 +00004382 [RES_XXXX ] = "XXXX" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004383 [RES_SNTX ] = "SNTX" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004384 };
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004385 static const char *const CMDTYPE[] = {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004386 "{}",
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00004387 "()",
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02004388 "[noglob]",
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004389# if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004390 "func()",
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004391# endif
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004392 };
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004393
4394 int pin, prn;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00004395
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004396 pin = 0;
4397 while (pi) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00004398 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
4399 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004400 prn = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004401 while (prn < pi->num_cmds) {
4402 struct command *command = &pi->cmds[prn];
4403 char **argv = command->argv;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00004404
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004405 fprintf(stderr, "%*s cmd %d assignment_cnt:%d",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004406 lvl*2, "", prn,
4407 command->assignment_cnt);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004408 if (command->group) {
Denys Vlasenkob70cef72010-01-12 13:45:45 +01004409 fprintf(stderr, " group %s: (argv=%p)%s%s\n",
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004410 CMDTYPE[command->cmd_type],
Denys Vlasenkob70cef72010-01-12 13:45:45 +01004411 argv
4412#if !BB_MMU
4413 , " group_as_string:", command->group_as_string
4414#else
4415 , "", ""
4416#endif
4417 );
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004418 debug_print_tree(command->group, lvl+1);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004419 prn++;
4420 continue;
4421 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004422 if (argv) while (*argv) {
4423 fprintf(stderr, " '%s'", *argv);
4424 argv++;
Denis Vlasenko4b924f32007-05-30 00:29:55 +00004425 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004426 fprintf(stderr, "\n");
4427 prn++;
4428 }
4429 pi = pi->next;
4430 pin++;
4431 }
4432}
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004433#endif /* debug_print_tree */
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004434
Denis Vlasenkoc666f712007-05-16 22:18:54 +00004435/* NB: called by pseudo_exec, and therefore must not modify any
4436 * global data until exec/_exit (we can be a child after vfork!) */
Denis Vlasenko05743d72008-02-10 12:10:08 +00004437static int run_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00004438{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004439#if ENABLE_HUSH_CASE
4440 char *case_word = NULL;
4441#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004442#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004443 struct pipe *loop_top = NULL;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004444 char **for_lcur = NULL;
4445 char **for_list = NULL;
Denis Vlasenko06810332007-05-21 23:30:54 +00004446#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004447 smallint last_followup;
4448 smalluint rcode;
Denis Vlasenkod91afa32008-07-29 11:10:01 +00004449#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004450 smalluint cond_code = 0;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004451#else
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004452 enum { cond_code = 0 };
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004453#endif
Denis Vlasenko0e151382009-04-06 18:40:31 +00004454#if HAS_KEYWORDS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004455 smallint rword; /* enum reserved_style */
4456 smallint last_rword; /* ditto */
Denis Vlasenko0e151382009-04-06 18:40:31 +00004457#endif
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00004458
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00004459 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004460 debug_enter();
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00004461
Denis Vlasenko06810332007-05-21 23:30:54 +00004462#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004463 /* Check syntax for "for" */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00004464 for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
4465 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004466 continue;
4467 /* current word is FOR or IN (BOLD in comments below) */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00004468 if (cpipe->next == NULL) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004469 syntax_error("malformed for");
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004470 debug_leave();
Denis Vlasenko87a86552008-07-29 19:43:10 +00004471 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004472 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004473 }
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004474 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00004475 if (cpipe->next->res_word == RES_DO)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004476 continue;
4477 /* next word is not "do". It must be "in" then ("FOR v in ...") */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00004478 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
4479 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004480 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004481 syntax_error("malformed for");
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004482 debug_leave();
Denis Vlasenko87a86552008-07-29 19:43:10 +00004483 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004484 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00004485 }
4486 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004487#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004488
Denis Vlasenkobe709c22008-07-28 00:01:16 +00004489 /* Past this point, all code paths should jump to ret: label
Denis Vlasenko12acec52008-07-28 15:15:59 +00004490 * in order to return, no direct "return" statements please.
4491 * This helps to ensure that no memory is leaked. */
Denis Vlasenkobe709c22008-07-28 00:01:16 +00004492
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004493#if ENABLE_HUSH_JOB
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00004494 G.run_list_level++;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004495#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004496
Denis Vlasenko0e151382009-04-06 18:40:31 +00004497#if HAS_KEYWORDS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004498 rword = RES_NONE;
4499 last_rword = RES_XXXX;
Denis Vlasenko0e151382009-04-06 18:40:31 +00004500#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004501 last_followup = PIPE_SEQ;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004502 rcode = G.last_exitcode;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004503
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004504 /* Go through list of pipes, (maybe) executing them. */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00004505 for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00004506 if (G.flag_SIGINT)
4507 break;
4508
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004509 IF_HAS_KEYWORDS(rword = pi->res_word;)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004510 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
4511 rword, cond_code, last_rword);
Denis Vlasenko06810332007-05-21 23:30:54 +00004512#if ENABLE_HUSH_LOOPS
Denis Vlasenko4554b722008-07-29 13:36:09 +00004513 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
Denis Vlasenko87a86552008-07-29 19:43:10 +00004514 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
Denis Vlasenko4554b722008-07-29 13:36:09 +00004515 ) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004516 /* start of a loop: remember where loop starts */
4517 loop_top = pi;
Denis Vlasenko87a86552008-07-29 19:43:10 +00004518 G.depth_of_loop++;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00004519 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004520#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004521 /* Still in the same "if...", "then..." or "do..." branch? */
Denis Vlasenko0e151382009-04-06 18:40:31 +00004522 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004523 if ((rcode == 0 && last_followup == PIPE_OR)
4524 || (rcode != 0 && last_followup == PIPE_AND)
4525 ) {
4526 /* It is "<true> || CMD" or "<false> && CMD"
4527 * and we should not execute CMD */
4528 debug_printf_exec("skipped cmd because of || or &&\n");
4529 last_followup = pi->followup;
4530 continue;
4531 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00004532 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004533 last_followup = pi->followup;
Denis Vlasenko0e151382009-04-06 18:40:31 +00004534 IF_HAS_KEYWORDS(last_rword = rword;)
Denis Vlasenko06810332007-05-21 23:30:54 +00004535#if ENABLE_HUSH_IF
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004536 if (cond_code) {
4537 if (rword == RES_THEN) {
Denis Vlasenko0e151382009-04-06 18:40:31 +00004538 /* if false; then ... fi has exitcode 0! */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004539 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004540 /* "if <false> THEN cmd": skip cmd */
4541 continue;
4542 }
4543 } else {
4544 if (rword == RES_ELSE || rword == RES_ELIF) {
4545 /* "if <true> then ... ELSE/ELIF cmd":
4546 * skip cmd and all following ones */
4547 break;
4548 }
4549 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004550#endif
4551#if ENABLE_HUSH_LOOPS
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004552 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00004553 if (!for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00004554 /* first loop through for */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00004555
4556 static const char encoded_dollar_at[] ALIGN1 = {
4557 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
4558 }; /* encoded representation of "$@" */
4559 static const char *const encoded_dollar_at_argv[] = {
4560 encoded_dollar_at, NULL
4561 }; /* argv list with one element: "$@" */
4562 char **vals;
4563
4564 vals = (char**)encoded_dollar_at_argv;
Denis Vlasenkocf22c892008-07-28 15:17:44 +00004565 if (pi->next->res_word == RES_IN) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00004566 /* if no variable values after "in" we skip "for" */
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004567 if (!pi->next->cmds[0].argv) {
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004568 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004569 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004570 break;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004571 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004572 vals = pi->next->cmds[0].argv;
Denis Vlasenkoff182a32008-07-05 20:29:59 +00004573 } /* else: "for var; do..." -> assume "$@" list */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00004574 /* create list of variable values */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00004575 debug_print_strings("for_list made from", vals);
4576 for_list = expand_strvec_to_strvec(vals);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00004577 for_lcur = for_list;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004578 debug_print_strings("for_list", for_list);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004579 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00004580 if (!*for_lcur) {
Denis Vlasenko12acec52008-07-28 15:15:59 +00004581 /* "for" loop is over, clean up */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00004582 free(for_list);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00004583 for_list = NULL;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00004584 for_lcur = NULL;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004585 break;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00004586 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004587 /* Insert next value from for_lcur */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004588 /* note: *for_lcur already has quotes removed, $var expanded, etc */
Denys Vlasenko295fef82009-06-03 12:47:26 +02004589 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 +02004590 continue;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004591 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004592 if (rword == RES_IN) {
4593 continue; /* "for v IN list;..." - "in" has no cmds anyway */
4594 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004595 if (rword == RES_DONE) {
4596 continue; /* "done" has no cmds too */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004597 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004598#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004599#if ENABLE_HUSH_CASE
4600 if (rword == RES_CASE) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004601 case_word = expand_strvec_to_string(pi->cmds->argv);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004602 continue;
4603 }
4604 if (rword == RES_MATCH) {
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004605 char **argv;
4606
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004607 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
4608 break;
4609 /* all prev words didn't match, does this one match? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004610 argv = pi->cmds->argv;
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004611 while (*argv) {
4612 char *pattern = expand_string_to_string(*argv);
4613 /* TODO: which FNM_xxx flags to use? */
4614 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
4615 free(pattern);
4616 if (cond_code == 0) { /* match! we will execute this branch */
4617 free(case_word); /* make future "word)" stop */
4618 case_word = NULL;
4619 break;
4620 }
4621 argv++;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004622 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004623 continue;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004624 }
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004625 if (rword == RES_CASE_BODY) { /* inside of a case branch */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004626 if (cond_code != 0)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004627 continue; /* not matched yet, skip this pipe */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004628 }
4629#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00004630 /* Just pressing <enter> in shell should check for jobs.
4631 * OTOH, in non-interactive shell this is useless
4632 * and only leads to extra job checks */
4633 if (pi->num_cmds == 0) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004634 if (G_interactive_fd)
Denis Vlasenkod5762932009-03-31 11:22:57 +00004635 goto check_jobs_and_continue;
4636 continue;
4637 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004638
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004639 /* After analyzing all keywords and conditions, we decided
Denis Vlasenkod5762932009-03-31 11:22:57 +00004640 * to execute this pipe. NB: have to do checkjobs(NULL)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004641 * after run_pipe to collect any background children,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004642 * even if list execution is to be stopped. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004643 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004644 {
4645 int r;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00004646#if ENABLE_HUSH_LOOPS
Denis Vlasenko87a86552008-07-29 19:43:10 +00004647 G.flag_break_continue = 0;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00004648#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004649 rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
4650 if (r != -1) {
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00004651 /* We ran a builtin, function, or group.
4652 * rcode is already known
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004653 * and we don't need to wait for anything. */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004654 G.last_exitcode = rcode;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004655 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004656 check_and_run_traps(0);
Denis Vlasenkodadfb492008-07-29 10:16:05 +00004657#if ENABLE_HUSH_LOOPS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004658 /* Was it "break" or "continue"? */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004659 if (G.flag_break_continue) {
4660 smallint fbc = G.flag_break_continue;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004661 /* We might fall into outer *loop*,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004662 * don't want to break it too */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004663 if (loop_top) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00004664 G.depth_break_continue--;
4665 if (G.depth_break_continue == 0)
4666 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00004667 /* else: e.g. "continue 2" should *break* once, *then* continue */
4668 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004669 if (G.depth_break_continue != 0 || fbc == BC_BREAK)
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00004670 goto check_jobs_and_break;
4671 /* "continue": simulate end of loop */
4672 rword = RES_DONE;
4673 continue;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004674 }
Denis Vlasenkodadfb492008-07-29 10:16:05 +00004675#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00004676#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko673e9452009-05-27 14:39:35 +02004677 if (G.flag_return_in_progress == 1) {
4678 /* same as "goto check_jobs_and_break" */
4679 checkjobs(NULL);
4680 break;
4681 }
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00004682#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004683 } else if (pi->followup == PIPE_BG) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004684 /* What does bash do with attempts to background builtins? */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004685 /* even bash 3.2 doesn't do that well with nested bg:
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004686 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
4687 * I'm NOT treating inner &'s as jobs */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004688 check_and_run_traps(0);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004689#if ENABLE_HUSH_JOB
Denis Vlasenko87a86552008-07-29 19:43:10 +00004690 if (G.run_list_level == 1)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004691 insert_bg_job(pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00004692#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004693 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004694 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004695 } else {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004696#if ENABLE_HUSH_JOB
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004697 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004698 /* Waits for completion, then fg's main shell */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004699 rcode = checkjobs_and_fg_shell(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004700 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004701 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004702 } else
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004703#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004704 { /* This one just waits for completion */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004705 rcode = checkjobs(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004706 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004707 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004708 }
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004709 G.last_exitcode = rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00004710 }
4711 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004712
4713 /* Analyze how result affects subsequent commands */
Denis Vlasenko06810332007-05-21 23:30:54 +00004714#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00004715 if (rword == RES_IF || rword == RES_ELIF)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004716 cond_code = rcode;
Denis Vlasenko06810332007-05-21 23:30:54 +00004717#endif
4718#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004719 /* Beware of "while false; true; do ..."! */
4720 if (pi->next && pi->next->res_word == RES_DO) {
4721 if (rword == RES_WHILE) {
4722 if (rcode) {
4723 /* "while false; do...done" - exitcode 0 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004724 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004725 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
4726 goto check_jobs_and_break;
4727 }
Denis Vlasenko918a34b2008-07-28 23:17:31 +00004728 }
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004729 if (rword == RES_UNTIL) {
4730 if (!rcode) {
4731 debug_printf_exec(": until expr is true: breaking\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004732 check_jobs_and_break:
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004733 checkjobs(NULL);
4734 break;
4735 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004736 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004737 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004738#endif
Mike Frysinger8ec1c9d2009-03-29 00:45:26 +00004739
4740 check_jobs_and_continue:
Eric Andersen028b65b2001-06-28 01:10:11 +00004741 checkjobs(NULL);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004742 } /* for (pi) */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004743
4744#if ENABLE_HUSH_JOB
Denis Vlasenkod5762932009-03-31 11:22:57 +00004745 G.run_list_level--;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004746#endif
Denis Vlasenkobe709c22008-07-28 00:01:16 +00004747#if ENABLE_HUSH_LOOPS
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00004748 if (loop_top)
Denis Vlasenko87a86552008-07-29 19:43:10 +00004749 G.depth_of_loop--;
Denis Vlasenkobe709c22008-07-28 00:01:16 +00004750 free(for_list);
4751#endif
4752#if ENABLE_HUSH_CASE
4753 free(case_word);
4754#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004755 debug_leave();
4756 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00004757 return rcode;
4758}
4759
Eric Andersen25f27032001-04-26 23:22:31 +00004760/* Select which version we will use */
Denis Vlasenko05743d72008-02-10 12:10:08 +00004761static int run_and_free_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00004762{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004763 int rcode = 0;
Denis Vlasenko05743d72008-02-10 12:10:08 +00004764 debug_printf_exec("run_and_free_list entered\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00004765 if (!G.fake_mode) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004766 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
Denis Vlasenko05743d72008-02-10 12:10:08 +00004767 rcode = run_list(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004768 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004769 /* free_pipe_list has the side effect of clearing memory.
Denis Vlasenko05743d72008-02-10 12:10:08 +00004770 * In the long run that function can be merged with run_list,
Eric Andersen25f27032001-04-26 23:22:31 +00004771 * but doing that now would hobble the debugging effort. */
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004772 free_pipe_list(pi);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00004773 debug_printf_exec("run_and_free_list return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00004774 return rcode;
4775}
4776
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004777
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00004778static struct pipe *new_pipe(void)
4779{
Eric Andersen25f27032001-04-26 23:22:31 +00004780 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00004781 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004782 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004783 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00004784 return pi;
4785}
4786
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004787/* Command (member of a pipe) is complete, or we start a new pipe
4788 * if ctx->command is NULL.
4789 * No errors possible here.
4790 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004791static int done_command(struct parse_context *ctx)
4792{
4793 /* The command is really already in the pipe structure, so
4794 * advance the pipe counter and make a new, null command. */
4795 struct pipe *pi = ctx->pipe;
4796 struct command *command = ctx->command;
4797
4798 if (command) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004799 if (IS_NULL_CMD(command)) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004800 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004801 goto clear_and_ret;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004802 }
4803 pi->num_cmds++;
4804 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004805 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004806 } else {
4807 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
4808 }
4809
4810 /* Only real trickiness here is that the uncommitted
4811 * command structure is not counted in pi->num_cmds. */
4812 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004813 ctx->command = command = &pi->cmds[pi->num_cmds];
4814 clear_and_ret:
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004815 memset(command, 0, sizeof(*command));
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004816 return pi->num_cmds; /* used only for 0/nonzero check */
4817}
4818
4819static void done_pipe(struct parse_context *ctx, pipe_style type)
4820{
4821 int not_null;
4822
4823 debug_printf_parse("done_pipe entered, followup %d\n", type);
4824 /* Close previous command */
4825 not_null = done_command(ctx);
4826 ctx->pipe->followup = type;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004827#if HAS_KEYWORDS
4828 ctx->pipe->pi_inverted = ctx->ctx_inverted;
4829 ctx->ctx_inverted = 0;
4830 ctx->pipe->res_word = ctx->ctx_res_w;
4831#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004832
4833 /* Without this check, even just <enter> on command line generates
4834 * tree of three NOPs (!). Which is harmless but annoying.
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004835 * IOW: it is safe to do it unconditionally. */
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004836 if (not_null
Denis Vlasenko7f959372009-04-14 08:06:59 +00004837#if ENABLE_HUSH_IF
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004838 || ctx->ctx_res_w == RES_FI
Denis Vlasenko7f959372009-04-14 08:06:59 +00004839#endif
4840#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004841 || ctx->ctx_res_w == RES_DONE
4842 || ctx->ctx_res_w == RES_FOR
4843 || ctx->ctx_res_w == RES_IN
Denis Vlasenko7f959372009-04-14 08:06:59 +00004844#endif
4845#if ENABLE_HUSH_CASE
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004846 || ctx->ctx_res_w == RES_ESAC
4847#endif
4848 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004849 struct pipe *new_p;
4850 debug_printf_parse("done_pipe: adding new pipe: "
4851 "not_null:%d ctx->ctx_res_w:%d\n",
4852 not_null, ctx->ctx_res_w);
4853 new_p = new_pipe();
4854 ctx->pipe->next = new_p;
4855 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004856 /* RES_THEN, RES_DO etc are "sticky" -
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004857 * they remain set for pipes inside if/while.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004858 * This is used to control execution.
4859 * RES_FOR and RES_IN are NOT sticky (needed to support
4860 * cases where variable or value happens to match a keyword):
4861 */
4862#if ENABLE_HUSH_LOOPS
4863 if (ctx->ctx_res_w == RES_FOR
4864 || ctx->ctx_res_w == RES_IN)
4865 ctx->ctx_res_w = RES_NONE;
4866#endif
4867#if ENABLE_HUSH_CASE
4868 if (ctx->ctx_res_w == RES_MATCH)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004869 ctx->ctx_res_w = RES_CASE_BODY;
4870 if (ctx->ctx_res_w == RES_CASE)
4871 ctx->ctx_res_w = RES_CASE_IN;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004872#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004873 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004874 /* Create the memory for command, roughly:
4875 * ctx->pipe->cmds = new struct command;
4876 * ctx->command = &ctx->pipe->cmds[0];
4877 */
4878 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004879 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004880 }
4881 debug_printf_parse("done_pipe return\n");
4882}
4883
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004884static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00004885{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004886 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00004887 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004888 /* Create the memory for command, roughly:
4889 * ctx->pipe->cmds = new struct command;
4890 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004891 */
4892 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00004893}
4894
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004895/* If a reserved word is found and processed, parse context is modified
4896 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00004897 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004898#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004899struct reserved_combo {
4900 char literal[6];
4901 unsigned char res;
4902 unsigned char assignment_flag;
4903 int flag;
4904};
4905enum {
4906 FLAG_END = (1 << RES_NONE ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004907# if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004908 FLAG_IF = (1 << RES_IF ),
4909 FLAG_THEN = (1 << RES_THEN ),
4910 FLAG_ELIF = (1 << RES_ELIF ),
4911 FLAG_ELSE = (1 << RES_ELSE ),
4912 FLAG_FI = (1 << RES_FI ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004913# endif
4914# if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004915 FLAG_FOR = (1 << RES_FOR ),
4916 FLAG_WHILE = (1 << RES_WHILE),
4917 FLAG_UNTIL = (1 << RES_UNTIL),
4918 FLAG_DO = (1 << RES_DO ),
4919 FLAG_DONE = (1 << RES_DONE ),
4920 FLAG_IN = (1 << RES_IN ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004921# endif
4922# if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004923 FLAG_MATCH = (1 << RES_MATCH),
4924 FLAG_ESAC = (1 << RES_ESAC ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004925# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004926 FLAG_START = (1 << RES_XXXX ),
4927};
4928
4929static const struct reserved_combo* match_reserved_word(o_string *word)
4930{
Eric Andersen25f27032001-04-26 23:22:31 +00004931 /* Mostly a list of accepted follow-up reserved words.
4932 * FLAG_END means we are done with the sequence, and are ready
4933 * to turn the compound list into a command.
4934 * FLAG_START means the word must start a new compound list.
4935 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004936 static const struct reserved_combo reserved_list[] = {
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004937# if ENABLE_HUSH_IF
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004938 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
4939 { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
4940 { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
4941 { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN },
4942 { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI },
4943 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004944# endif
4945# if ENABLE_HUSH_LOOPS
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004946 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
4947 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
4948 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
4949 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
4950 { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE },
4951 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004952# endif
4953# if ENABLE_HUSH_CASE
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004954 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
4955 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004956# endif
Eric Andersen25f27032001-04-26 23:22:31 +00004957 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004958 const struct reserved_combo *r;
4959
4960 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
4961 if (strcmp(word->data, r->literal) == 0)
4962 return r;
4963 }
4964 return NULL;
4965}
Denis Vlasenkobb929512009-04-16 10:59:40 +00004966/* Return 0: not a keyword, 1: keyword
4967 */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004968static int reserved_word(o_string *word, struct parse_context *ctx)
4969{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004970# if ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004971 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004972 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004973 };
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004974# endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004975 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004976
Denis Vlasenkobb929512009-04-16 10:59:40 +00004977 if (word->o_quoted)
4978 return 0;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004979 r = match_reserved_word(word);
4980 if (!r)
4981 return 0;
4982
4983 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004984# if ENABLE_HUSH_CASE
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004985 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE_IN) {
4986 /* "case word IN ..." - IN part starts first MATCH part */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004987 r = &reserved_match;
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004988 } else
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004989# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004990 if (r->flag == 0) { /* '!' */
4991 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004992 syntax_error("! ! command");
Denis Vlasenkobb929512009-04-16 10:59:40 +00004993 ctx->ctx_res_w = RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00004994 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004995 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004996 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004997 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004998 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004999 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00005000
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005001 old = xmalloc(sizeof(*old));
5002 debug_printf_parse("push stack %p\n", old);
5003 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005004 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005005 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005006 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005007 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005008 ctx->ctx_res_w = RES_SNTX;
5009 return 1;
Denis Vlasenkobb929512009-04-16 10:59:40 +00005010 } else {
5011 /* "{...} fi" is ok. "{...} if" is not
5012 * Example:
5013 * if { echo foo; } then { echo bar; } fi */
5014 if (ctx->command->group)
5015 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005016 }
Denis Vlasenkobb929512009-04-16 10:59:40 +00005017
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005018 ctx->ctx_res_w = r->res;
5019 ctx->old_flag = r->flag;
Denis Vlasenkobb929512009-04-16 10:59:40 +00005020 word->o_assignment = r->assignment_flag;
5021
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005022 if (ctx->old_flag & FLAG_END) {
5023 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00005024
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005025 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005026 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005027 old = ctx->stack;
5028 old->command->group = ctx->list_head;
Denys Vlasenko9d617c42009-06-09 18:40:52 +02005029 old->command->cmd_type = CMD_NORMAL;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005030# if !BB_MMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005031 o_addstr(&old->as_string, ctx->as_string.data);
5032 o_free_unsafe(&ctx->as_string);
5033 old->command->group_as_string = xstrdup(old->as_string.data);
5034 debug_printf_parse("pop, remembering as:'%s'\n",
5035 old->command->group_as_string);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005036# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005037 *ctx = *old; /* physical copy */
5038 free(old);
5039 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005040 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005041}
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005042#endif /* HAS_KEYWORDS */
Eric Andersen25f27032001-04-26 23:22:31 +00005043
Denis Vlasenkoa8442002008-06-14 11:00:17 +00005044/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005045 * Normal return is 0. Syntax errors return 1.
5046 * Note: on return, word is reset, but not o_free'd!
5047 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005048static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00005049{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005050 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00005051
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005052 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005053 if (word->length == 0 && word->o_quoted == 0) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00005054 debug_printf_parse("done_word return 0: true null, ignored\n");
5055 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00005056 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005057
Eric Andersen25f27032001-04-26 23:22:31 +00005058 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00005059 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
5060 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005061 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
5062 * "2.7 Redirection
5063 * ...the word that follows the redirection operator
5064 * shall be subjected to tilde expansion, parameter expansion,
5065 * command substitution, arithmetic expansion, and quote
5066 * removal. Pathname expansion shall not be performed
5067 * on the word by a non-interactive shell; an interactive
5068 * shell may perform it, but shall do so only when
5069 * the expansion would result in one word."
5070 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00005071 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005072 /* Cater for >\file case:
5073 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
5074 * Same with heredocs:
5075 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
5076 */
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02005077 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC) {
5078 unbackslash(ctx->pending_redirect->rd_filename);
5079 /* Is it <<"HEREDOC"? */
5080 if (word->o_quoted) {
5081 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
5082 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005083 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005084 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00005085 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00005086 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005087 /* If this word wasn't an assignment, next ones definitely
5088 * can't be assignments. Even if they look like ones. */
5089 if (word->o_assignment != DEFINITELY_ASSIGNMENT
5090 && word->o_assignment != WORD_IS_KEYWORD
5091 ) {
5092 word->o_assignment = NOT_ASSIGNMENT;
5093 } else {
5094 if (word->o_assignment == DEFINITELY_ASSIGNMENT)
5095 command->assignment_cnt++;
5096 word->o_assignment = MAYBE_ASSIGNMENT;
5097 }
5098
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005099#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005100# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00005101 if (ctx->ctx_dsemicolon
5102 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
5103 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00005104 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005105 /* ctx->ctx_res_w = RES_MATCH; */
5106 ctx->ctx_dsemicolon = 0;
5107 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005108# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005109 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005110# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00005111 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
5112 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005113# endif
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02005114# if ENABLE_HUSH_CASE
5115 && ctx->ctx_res_w != RES_CASE
5116# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00005117 ) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00005118 debug_printf_parse("checking '%s' for reserved-ness\n", word->data);
Denis Vlasenkoa8442002008-06-14 11:00:17 +00005119 if (reserved_word(word, ctx)) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005120 o_reset_to_empty_unquoted(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005121 debug_printf_parse("done_word return %d\n",
5122 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005123 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005124 }
Denys Vlasenko9d617c42009-06-09 18:40:52 +02005125# ifdef CMD_SINGLEWORD_NOGLOB_COND
5126 if (strcmp(word->data, "export") == 0
5127# if ENABLE_HUSH_LOCAL
5128 || strcmp(word->data, "local") == 0
5129# endif
5130 ) {
5131 command->cmd_type = CMD_SINGLEWORD_NOGLOB_COND;
5132 } else
5133# endif
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02005134# if ENABLE_HUSH_BASH_COMPAT
Denys Vlasenko9d617c42009-06-09 18:40:52 +02005135 if (strcmp(word->data, "[[") == 0) {
5136 command->cmd_type = CMD_SINGLEWORD_NOGLOB;
5137 }
5138 /* fall through */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02005139# endif
Eric Andersen25f27032001-04-26 23:22:31 +00005140 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005141#endif
Denis Vlasenkobb929512009-04-16 10:59:40 +00005142 if (command->group) {
5143 /* "{ echo foo; } echo bar" - bad */
5144 syntax_error_at(word->data);
5145 debug_printf_parse("done_word return 1: syntax error, "
5146 "groups and arglists don't mix\n");
5147 return 1;
5148 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005149 if (word->o_quoted /* word had "xx" or 'xx' at least as part of it. */
Denis Vlasenko55789c62008-06-18 16:30:42 +00005150 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
5151 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00005152 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00005153 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00005154 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00005155 char *p = word->data;
5156 while (p[0] == SPECIAL_VAR_SYMBOL
5157 && (p[1] & 0x7f) == '@'
5158 && p[2] == SPECIAL_VAR_SYMBOL
5159 ) {
5160 p += 3;
5161 }
5162 if (p == word->data || p[0] != '\0') {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00005163 /* saw no "$@", or not only "$@" but some
5164 * real text is there too */
5165 /* insert "empty variable" reference, this makes
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00005166 * e.g. "", $empty"" etc to not disappear */
5167 o_addchr(word, SPECIAL_VAR_SYMBOL);
5168 o_addchr(word, SPECIAL_VAR_SYMBOL);
5169 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00005170 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00005171 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005172 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005173 }
Eric Andersen25f27032001-04-26 23:22:31 +00005174
Denis Vlasenko06810332007-05-21 23:30:54 +00005175#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00005176 if (ctx->ctx_res_w == RES_FOR) {
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00005177 if (word->o_quoted
5178 || !is_well_formed_var_name(command->argv[0], '\0')
5179 ) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00005180 /* bash says just "not a valid identifier" */
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00005181 syntax_error("not a valid identifier in for");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005182 return 1;
5183 }
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00005184 /* Force FOR to have just one word (variable name) */
5185 /* NB: basically, this makes hush see "for v in ..."
5186 * syntax as if it is "for v; in ...". FOR and IN become
5187 * two pipe structs in parse tree. */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005188 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00005189 }
Denis Vlasenko06810332007-05-21 23:30:54 +00005190#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005191#if ENABLE_HUSH_CASE
5192 /* Force CASE to have just one word */
5193 if (ctx->ctx_res_w == RES_CASE) {
5194 done_pipe(ctx, PIPE_SEQ);
5195 }
5196#endif
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00005197
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005198 o_reset_to_empty_unquoted(word);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00005199
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005200 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00005201 return 0;
5202}
5203
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005204
5205/* Peek ahead in the input to find out if we have a "&n" construct,
5206 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005207 * Return:
5208 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
5209 * REDIRFD_SYNTAX_ERR if syntax error,
5210 * REDIRFD_TO_FILE if no & was seen,
5211 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005212 */
5213#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005214#define parse_redir_right_fd(as_string, input) \
5215 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005216#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005217static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005218{
5219 int ch, d, ok;
5220
5221 ch = i_peek(input);
5222 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005223 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005224
5225 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005226 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005227 ch = i_peek(input);
5228 if (ch == '-') {
5229 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005230 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005231 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005232 }
5233 d = 0;
5234 ok = 0;
5235 while (ch != EOF && isdigit(ch)) {
5236 d = d*10 + (ch-'0');
5237 ok = 1;
5238 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005239 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005240 ch = i_peek(input);
5241 }
5242 if (ok) return d;
5243
5244//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
5245
5246 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005247 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005248}
5249
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005250/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005251 */
5252static int parse_redirect(struct parse_context *ctx,
5253 int fd,
5254 redir_type style,
5255 struct in_str *input)
5256{
5257 struct command *command = ctx->command;
5258 struct redir_struct *redir;
5259 struct redir_struct **redirp;
5260 int dup_num;
5261
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005262 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005263 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005264 /* Check for a '>&1' type redirect */
5265 dup_num = parse_redir_right_fd(&ctx->as_string, input);
5266 if (dup_num == REDIRFD_SYNTAX_ERR)
5267 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005268 } else {
5269 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005270 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005271 if (dup_num) { /* <<-... */
5272 ch = i_getch(input);
5273 nommu_addchr(&ctx->as_string, ch);
5274 ch = i_peek(input);
5275 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005276 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005277
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005278 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005279 int ch = i_peek(input);
5280 if (ch == '|') {
5281 /* >|FILE redirect ("clobbering" >).
5282 * Since we do not support "set -o noclobber" yet,
5283 * >| and > are the same for now. Just eat |.
5284 */
5285 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005286 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005287 }
5288 }
5289
5290 /* Create a new redir_struct and append it to the linked list */
5291 redirp = &command->redirects;
5292 while ((redir = *redirp) != NULL) {
5293 redirp = &(redir->next);
5294 }
5295 *redirp = redir = xzalloc(sizeof(*redir));
5296 /* redir->next = NULL; */
5297 /* redir->rd_filename = NULL; */
5298 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005299 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005300
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005301 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
5302 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005303
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005304 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005305 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005306 /* Erik had a check here that the file descriptor in question
5307 * is legit; I postpone that to "run time"
5308 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005309 debug_printf_parse("duplicating redirect '%d>&%d'\n",
5310 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005311 } else {
5312 /* Set ctx->pending_redirect, so we know what to do at the
5313 * end of the next parsed word. */
5314 ctx->pending_redirect = redir;
5315 }
5316 return 0;
5317}
5318
Eric Andersen25f27032001-04-26 23:22:31 +00005319/* If a redirect is immediately preceded by a number, that number is
5320 * supposed to tell which file descriptor to redirect. This routine
5321 * looks for such preceding numbers. In an ideal world this routine
5322 * needs to handle all the following classes of redirects...
5323 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
5324 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
5325 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
5326 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005327 *
5328 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
5329 * "2.7 Redirection
5330 * ... If n is quoted, the number shall not be recognized as part of
5331 * the redirection expression. For example:
5332 * echo \2>a
5333 * writes the character 2 into file a"
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005334 * We are getting it right by setting ->o_quoted on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005335 *
5336 * A -1 return means no valid number was found,
5337 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00005338 */
5339static int redirect_opt_num(o_string *o)
5340{
5341 int num;
5342
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005343 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005344 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005345 num = bb_strtou(o->data, NULL, 10);
5346 if (errno || num < 0)
5347 return -1;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005348 o_reset_to_empty_unquoted(o);
Eric Andersen25f27032001-04-26 23:22:31 +00005349 return num;
5350}
5351
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005352#if BB_MMU
5353#define fetch_till_str(as_string, input, word, skip_tabs) \
5354 fetch_till_str(input, word, skip_tabs)
5355#endif
5356static char *fetch_till_str(o_string *as_string,
5357 struct in_str *input,
5358 const char *word,
5359 int skip_tabs)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005360{
5361 o_string heredoc = NULL_O_STRING;
5362 int past_EOL = 0;
5363 int ch;
5364
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005365 goto jump_in;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005366 while (1) {
5367 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005368 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005369 if (ch == '\n') {
5370 if (strcmp(heredoc.data + past_EOL, word) == 0) {
5371 heredoc.data[past_EOL] = '\0';
5372 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
5373 return heredoc.data;
5374 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005375 do {
5376 o_addchr(&heredoc, ch);
5377 past_EOL = heredoc.length;
5378 jump_in:
5379 do {
5380 ch = i_getch(input);
5381 nommu_addchr(as_string, ch);
5382 } while (skip_tabs && ch == '\t');
5383 } while (ch == '\n');
5384 }
5385 if (ch == EOF) {
5386 o_free_unsafe(&heredoc);
5387 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005388 }
5389 o_addchr(&heredoc, ch);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005390 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005391 }
5392}
5393
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005394/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
5395 * and load them all. There should be exactly heredoc_cnt of them.
5396 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005397static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
5398{
5399 struct pipe *pi = ctx->list_head;
5400
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005401 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005402 int i;
5403 struct command *cmd = pi->cmds;
5404
5405 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
5406 pi->num_cmds,
5407 cmd->argv ? cmd->argv[0] : "NONE");
5408 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005409 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005410
5411 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
5412 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005413 while (redir) {
5414 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005415 char *p;
5416
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005417 redir->rd_type = REDIRECT_HEREDOC2;
Denys Vlasenko764b2f02009-06-07 16:05:04 +02005418 /* redir->rd_dup is (ab)used to indicate <<- */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005419 p = fetch_till_str(&ctx->as_string, input,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005420 redir->rd_filename, redir->rd_dup & HEREDOC_SKIPTABS);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005421 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005422 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005423 return 1;
5424 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005425 free(redir->rd_filename);
5426 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005427 heredoc_cnt--;
5428 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005429 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005430 }
5431 cmd++;
5432 }
5433 pi = pi->next;
5434 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005435#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005436 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005437 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005438 bb_error_msg_and_die("heredoc BUG 2");
5439#endif
5440 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005441}
5442
5443
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005444#if ENABLE_HUSH_TICK
Denys Vlasenko647553a2009-11-15 19:58:19 +01005445static FILE *generate_stream_from_string(const char *s, pid_t *pid_p)
Eric Andersen25f27032001-04-26 23:22:31 +00005446{
Denys Vlasenko647553a2009-11-15 19:58:19 +01005447 pid_t pid;
5448 int channel[2];
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005449# if !BB_MMU
Denis Vlasenko27014ed2009-04-15 21:48:23 +00005450 char **to_free;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005451# endif
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00005452
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +00005453 xpipe(channel);
Denis Vlasenko82604e92008-07-01 15:59:42 +00005454 pid = BB_MMU ? fork() : vfork();
5455 if (pid < 0)
5456 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005457
Denis Vlasenko05743d72008-02-10 12:10:08 +00005458 if (pid == 0) { /* child */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005459 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00005460 /* Process substitution is not considered to be usual
5461 * 'command execution'.
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00005462 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
5463 */
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00005464 bb_signals(0
5465 + (1 << SIGTSTP)
5466 + (1 << SIGTTIN)
5467 + (1 << SIGTTOU)
5468 , SIG_IGN);
Denys Vlasenko76ace252009-10-12 15:25:01 +02005469 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005470 close(channel[0]); /* NB: close _first_, then move fd! */
5471 xmove_fd(channel[1], 1);
5472 /* Prevent it from trying to handle ctrl-z etc */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00005473 IF_HUSH_JOB(G.run_list_level = 1;)
Denys Vlasenko91836ba2009-09-23 01:46:19 +02005474 /* Awful hack for `trap` or $(trap).
5475 *
5476 * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html
5477 * contains an example where "trap" is executed in a subshell:
5478 *
5479 * save_traps=$(trap)
5480 * ...
5481 * eval "$save_traps"
5482 *
5483 * Standard does not say that "trap" in subshell shall print
5484 * parent shell's traps. It only says that its output
5485 * must have suitable form, but then, in the above example
5486 * (which is not supposed to be normative), it implies that.
5487 *
5488 * bash (and probably other shell) does implement it
5489 * (traps are reset to defaults, but "trap" still shows them),
5490 * but as a result, "trap" logic is hopelessly messed up:
5491 *
5492 * # trap
5493 * trap -- 'echo Ho' SIGWINCH <--- we have a handler
5494 * # (trap) <--- trap is in subshell - no output (correct, traps are reset)
5495 * # true | trap <--- trap is in subshell - no output (ditto)
5496 * # echo `true | trap` <--- in subshell - output (but traps are reset!)
5497 * trap -- 'echo Ho' SIGWINCH
5498 * # echo `(trap)` <--- in subshell in subshell - output
5499 * trap -- 'echo Ho' SIGWINCH
5500 * # echo `true | (trap)` <--- in subshell in subshell in subshell - output!
5501 * trap -- 'echo Ho' SIGWINCH
5502 *
5503 * The rules when to forget and when to not forget traps
5504 * get really complex and nonsensical.
5505 *
5506 * Our solution: ONLY bare $(trap) or `trap` is special.
5507 */
5508 s = skip_whitespace(s);
5509 if (strncmp(s, "trap", 4) == 0 && (*skip_whitespace(s + 4) == '\0'))
5510 {
5511 static const char *const argv[] = { NULL, NULL };
5512 builtin_trap((char**)argv);
5513 exit(0); /* not _exit() - we need to fflush */
5514 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005515# if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005516 reset_traps_to_defaults();
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005517 parse_and_run_string(s);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005518 _exit(G.last_exitcode);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005519# else
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005520 /* We re-execute after vfork on NOMMU. This makes this script safe:
Denis Vlasenkof9375282009-04-05 19:13:39 +00005521 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
5522 * huge=`cat BIG` # was blocking here forever
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005523 * echo OK
5524 */
Denis Vlasenko27014ed2009-04-15 21:48:23 +00005525 re_execute_shell(&to_free,
5526 s,
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005527 G.global_argv[0],
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02005528 G.global_argv + 1,
5529 NULL);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005530# endif
Eric Andersen25f27032001-04-26 23:22:31 +00005531 }
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005532
5533 /* parent */
Denys Vlasenko647553a2009-11-15 19:58:19 +01005534 *pid_p = pid;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005535# if ENABLE_HUSH_FAST
Denys Vlasenko8d7be232009-05-25 16:38:32 +02005536 G.count_SIGCHLD++;
5537//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);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005538# endif
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005539 enable_restore_tty_pgrp_on_exit();
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005540# if !BB_MMU
Denis Vlasenko27014ed2009-04-15 21:48:23 +00005541 free(to_free);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005542# endif
Eric Andersen25f27032001-04-26 23:22:31 +00005543 close(channel[1]);
Denys Vlasenkoa7ccdee2009-11-15 23:28:11 +01005544 close_on_exec_on(channel[0]);
5545 return xfdopen_for_read(channel[0]);
Eric Andersen25f27032001-04-26 23:22:31 +00005546}
5547
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00005548/* Return code is exit status of the process that is run. */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005549static int process_command_subs(o_string *dest, const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00005550{
Denys Vlasenkoa7ccdee2009-11-15 23:28:11 +01005551 FILE *fp;
Eric Andersen25f27032001-04-26 23:22:31 +00005552 struct in_str pipe_str;
Denys Vlasenko647553a2009-11-15 19:58:19 +01005553 pid_t pid;
5554 int status, ch, eol_cnt;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00005555
Denys Vlasenkoa7ccdee2009-11-15 23:28:11 +01005556 fp = generate_stream_from_string(s, &pid);
Eric Andersen25f27032001-04-26 23:22:31 +00005557
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005558 /* Now send results of command back into original context */
Denys Vlasenkoa7ccdee2009-11-15 23:28:11 +01005559 setup_file_in_str(&pipe_str, fp);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00005560 eol_cnt = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005561 while ((ch = i_getch(&pipe_str)) != EOF) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00005562 if (ch == '\n') {
5563 eol_cnt++;
5564 continue;
5565 }
5566 while (eol_cnt) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00005567 o_addchr(dest, '\n');
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00005568 eol_cnt--;
5569 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00005570 o_addQchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005571 }
5572
Denys Vlasenko647553a2009-11-15 19:58:19 +01005573 debug_printf("done reading from `cmd` pipe, closing it\n");
Denys Vlasenkoa7ccdee2009-11-15 23:28:11 +01005574 fclose(fp);
Denys Vlasenko647553a2009-11-15 19:58:19 +01005575 /* We need to extract exitcode. Test case
5576 * "true; echo `sleep 1; false` $?"
5577 * should print 1 */
5578 safe_waitpid(pid, &status, 0);
5579 debug_printf("child exited. returning its exitcode:%d\n", WEXITSTATUS(status));
5580 return WEXITSTATUS(status);
Eric Andersen25f27032001-04-26 23:22:31 +00005581}
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005582#endif /* ENABLE_HUSH_TICK */
Eric Andersen25f27032001-04-26 23:22:31 +00005583
Denys Vlasenkoc2704542009-11-20 19:14:19 +01005584#if !ENABLE_HUSH_FUNCTIONS
5585#define parse_group(dest, ctx, input, ch) \
5586 parse_group(ctx, input, ch)
5587#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005588static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00005589 struct in_str *input, int ch)
5590{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005591 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005592 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005593 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005594 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005595 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005596 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005597
5598 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005599#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005600 if (ch == '(' && !dest->o_quoted) {
5601 if (dest->length)
Denis Vlasenkobb929512009-04-16 10:59:40 +00005602 if (done_word(dest, ctx))
5603 return 1;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005604 if (!command->argv)
5605 goto skip; /* (... */
5606 if (command->argv[1]) { /* word word ... (... */
5607 syntax_error_unexpected_ch('(');
5608 return 1;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00005609 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005610 /* it is "word(..." or "word (..." */
5611 do
5612 ch = i_getch(input);
5613 while (ch == ' ' || ch == '\t');
5614 if (ch != ')') {
5615 syntax_error_unexpected_ch(ch);
5616 return 1;
5617 }
5618 nommu_addchr(&ctx->as_string, ch);
5619 do
5620 ch = i_getch(input);
5621 while (ch == ' ' || ch == '\t' || ch == '\n');
5622 if (ch != '{') {
5623 syntax_error_unexpected_ch(ch);
5624 return 1;
5625 }
5626 nommu_addchr(&ctx->as_string, ch);
Denys Vlasenko9d617c42009-06-09 18:40:52 +02005627 command->cmd_type = CMD_FUNCDEF;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005628 goto skip;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005629 }
5630#endif
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01005631
5632#if 0 /* Prevented by caller */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00005633 if (command->argv /* word [word]{... */
5634 || dest->length /* word{... */
5635 || dest->o_quoted /* ""{... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005636 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005637 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005638 debug_printf_parse("parse_group return 1: "
5639 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005640 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005641 }
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01005642#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00005643
5644#if ENABLE_HUSH_FUNCTIONS
5645 skip:
5646#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00005647 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005648 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00005649 endch = ')';
Denys Vlasenko9d617c42009-06-09 18:40:52 +02005650 command->cmd_type = CMD_SUBSHELL;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00005651 } else {
5652 /* bash does not allow "{echo...", requires whitespace */
5653 ch = i_getch(input);
5654 if (ch != ' ' && ch != '\t' && ch != '\n') {
5655 syntax_error_unexpected_ch(ch);
5656 return 1;
5657 }
5658 nommu_addchr(&ctx->as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005659 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00005660
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005661 {
5662#if !BB_MMU
5663 char *as_string = NULL;
5664#endif
5665 pipe_list = parse_stream(&as_string, input, endch);
5666#if !BB_MMU
5667 if (as_string)
5668 o_addstr(&ctx->as_string, as_string);
5669#endif
5670 /* empty ()/{} or parse error? */
5671 if (!pipe_list || pipe_list == ERR_PTR) {
Denis Vlasenkobb929512009-04-16 10:59:40 +00005672 /* parse_stream already emitted error msg */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005673#if !BB_MMU
5674 free(as_string);
5675#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005676 debug_printf_parse("parse_group return 1: "
5677 "parse_stream returned %p\n", pipe_list);
5678 return 1;
5679 }
5680 command->group = pipe_list;
5681#if !BB_MMU
5682 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
5683 command->group_as_string = as_string;
5684 debug_printf_parse("end of group, remembering as:'%s'\n",
5685 command->group_as_string);
5686#endif
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005687 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005688 debug_printf_parse("parse_group return 0\n");
5689 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005690 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00005691}
5692
Mike Frysinger98c52642009-04-02 10:02:37 +00005693#if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005694/* Subroutines for copying $(...) and `...` things */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005695static void add_till_backquote(o_string *dest, struct in_str *input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005696/* '...' */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005697static void add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005698{
5699 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005700 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005701 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005702 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005703 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005704 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005705 if (ch == '\'')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005706 return;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005707 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005708 }
5709}
5710/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005711static void add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005712{
5713 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005714 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005715 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005716 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005717 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005718 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005719 if (ch == '"')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005720 return;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005721 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005722 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005723 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005724 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005725 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005726 if (ch == '`') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005727 add_till_backquote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005728 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005729 continue;
5730 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00005731 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005732 }
5733}
5734/* Process `cmd` - copy contents until "`" is seen. Complicated by
5735 * \` quoting.
5736 * "Within the backquoted style of command substitution, backslash
5737 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
5738 * The search for the matching backquote shall be satisfied by the first
5739 * backquote found without a preceding backslash; during this search,
5740 * if a non-escaped backquote is encountered within a shell comment,
5741 * a here-document, an embedded command substitution of the $(command)
5742 * form, or a quoted string, undefined results occur. A single-quoted
5743 * or double-quoted string that begins, but does not end, within the
5744 * "`...`" sequence produces undefined results."
5745 * Example Output
5746 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
5747 */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005748static void add_till_backquote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005749{
5750 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005751 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005752 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005753 syntax_error_unterm_ch('`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005754 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005755 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005756 if (ch == '`')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005757 return;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005758 if (ch == '\\') {
5759 /* \x. Copy both chars unless it is \` */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005760 int ch2 = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005761 if (ch2 == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005762 syntax_error_unterm_ch('`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005763 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005764 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005765 if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005766 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005767 ch = ch2;
5768 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005769 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005770 }
5771}
5772/* Process $(cmd) - copy contents until ")" is seen. Complicated by
5773 * quoting and nested ()s.
5774 * "With the $(command) style of command substitution, all characters
5775 * following the open parenthesis to the matching closing parenthesis
5776 * constitute the command. Any valid shell script can be used for command,
5777 * except a script consisting solely of redirections which produces
5778 * unspecified results."
5779 * Example Output
5780 * echo $(echo '(TEST)' BEST) (TEST) BEST
5781 * echo $(echo 'TEST)' BEST) TEST) BEST
5782 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
5783 */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005784static void add_till_closing_paren(o_string *dest, struct in_str *input, bool dbl)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005785{
5786 int count = 0;
5787 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005788 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005789 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005790 syntax_error_unterm_ch(')');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005791 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005792 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005793 if (ch == '(')
5794 count++;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005795 if (ch == ')') {
Mike Frysinger98c52642009-04-02 10:02:37 +00005796 if (--count < 0) {
5797 if (!dbl)
5798 break;
5799 if (i_peek(input) == ')') {
5800 i_getch(input);
5801 break;
5802 }
5803 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005804 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005805 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005806 if (ch == '\'') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005807 add_till_single_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005808 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005809 continue;
5810 }
5811 if (ch == '"') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005812 add_till_double_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005813 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005814 continue;
5815 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005816 if (ch == '\\') {
5817 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00005818 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005819 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005820 syntax_error_unterm_ch(')');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005821 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005822 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005823 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00005824 continue;
5825 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005826 }
5827}
Mike Frysinger98c52642009-04-02 10:02:37 +00005828#endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005829
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005830/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005831#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005832#define handle_dollar(as_string, dest, input) \
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005833 handle_dollar(dest, input)
5834#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005835static int handle_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005836 o_string *dest,
5837 struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00005838{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005839 int ch = i_peek(input); /* first character after the $ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00005840 unsigned char quote_mask = dest->o_escape ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005841
5842 debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00005843 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005844 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005845 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00005846 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005847 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005848 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005849 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005850 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00005851 quote_mask = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005852 ch = i_peek(input);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00005853 if (!isalnum(ch) && ch != '_')
5854 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005855 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005856 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005857 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005858 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005859 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00005860 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005861 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005862 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005863 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00005864 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005865 o_addchr(dest, ch | quote_mask);
5866 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005867 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005868 case '$': /* pid */
5869 case '!': /* last bg pid */
5870 case '?': /* last exit code */
5871 case '#': /* number of args */
5872 case '*': /* args */
5873 case '@': /* args */
5874 goto make_one_char_var;
5875 case '{': {
5876 bool first_char, all_digits;
Mike Frysingeref3e7fd2009-06-01 14:13:39 -04005877 int expansion;
Mike Frysinger6379bb42009-03-28 18:55:03 +00005878
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005879 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005880 nommu_addchr(as_string, ch);
Mike Frysingeref3e7fd2009-06-01 14:13:39 -04005881 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5882
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00005883 /* TODO: maybe someone will try to escape the '}' */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005884 expansion = 0;
5885 first_char = true;
5886 all_digits = false;
5887 while (1) {
5888 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005889 nommu_addchr(as_string, ch);
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005890 if (ch == '}') {
Mike Frysinger98c52642009-04-02 10:02:37 +00005891 break;
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005892 }
Mike Frysinger98c52642009-04-02 10:02:37 +00005893
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005894 if (first_char) {
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005895 if (ch == '#') {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005896 /* ${#var}: length of var contents */
5897 goto char_ok;
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005898 }
5899 if (isdigit(ch)) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005900 all_digits = true;
5901 goto char_ok;
5902 }
Mike Frysingerdc3bc402009-06-01 14:09:09 -04005903 /* They're being verbose and doing ${?} */
5904 if (i_peek(input) == '}' && strchr("$!?#*@_", ch))
5905 goto char_ok;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005906 }
5907
5908 if (expansion < 2
5909 && ( (all_digits && !isdigit(ch))
5910 || (!all_digits && !isalnum(ch) && ch != '_')
5911 )
5912 ) {
5913 /* handle parameter expansions
5914 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
5915 */
5916 if (first_char)
5917 goto case_default;
5918 switch (ch) {
5919 case ':': /* null modifier */
5920 if (expansion == 0) {
5921 debug_printf_parse(": null modifier\n");
5922 ++expansion;
5923 break;
5924 }
5925 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005926 case '#': /* remove prefix */
5927 case '%': /* remove suffix */
5928 if (expansion == 0) {
5929 debug_printf_parse(": remove suffix/prefix\n");
5930 expansion = 2;
5931 break;
5932 }
5933 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005934 case '-': /* default value */
5935 case '=': /* assign default */
5936 case '+': /* alternative */
5937 case '?': /* error indicate */
5938 debug_printf_parse(": parameter expansion\n");
5939 expansion = 2;
5940 break;
5941 default:
5942 case_default:
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005943 syntax_error_unterm_str("${name}");
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005944 debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
5945 return 1;
5946 }
5947 }
5948 char_ok:
5949 debug_printf_parse(": '%c'\n", ch);
5950 o_addchr(dest, ch | quote_mask);
5951 quote_mask = 0;
5952 first_char = false;
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005953 } /* while (1) */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005954 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5955 break;
5956 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005957#if ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005958 case '(': {
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005959# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005960 int pos;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005961# endif
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005962 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005963 nommu_addchr(as_string, ch);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005964# if ENABLE_SH_MATH_SUPPORT
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005965 if (i_peek(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005966 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005967 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005968 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5969 o_addchr(dest, /*quote_mask |*/ '+');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005970# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005971 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005972# endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005973 add_till_closing_paren(dest, input, true);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005974# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005975 if (as_string) {
5976 o_addstr(as_string, dest->data + pos);
5977 o_addchr(as_string, ')');
5978 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005979 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005980# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005981 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005982 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00005983 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005984# endif
5985# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005986 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5987 o_addchr(dest, quote_mask | '`');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005988# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005989 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005990# endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005991 add_till_closing_paren(dest, input, false);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005992# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005993 if (as_string) {
5994 o_addstr(as_string, dest->data + pos);
Denys Vlasenkob70cef72010-01-12 13:45:45 +01005995 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005996 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005997# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005998 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005999# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006000 break;
6001 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00006002#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006003 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00006004 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006005 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006006 ch = i_peek(input);
6007 if (isalnum(ch)) { /* it's $_name or $_123 */
6008 ch = '_';
6009 goto make_var;
6010 }
6011 /* else: it's $_ */
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02006012 /* TODO: $_ and $-: */
6013 /* $_ Shell or shell script name; or last argument of last command
6014 * (if last command wasn't a pipe; if it was, bash sets $_ to "");
6015 * but in command's env, set to full pathname used to invoke it */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006016 /* $- Option flags set by set builtin or shell options (-i etc) */
6017 default:
6018 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00006019 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00006020 debug_printf_parse("handle_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00006021 return 0;
6022}
6023
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006024#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006025#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006026 parse_stream_dquoted(dest, input, dquote_end)
6027#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006028static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006029 o_string *dest,
6030 struct in_str *input,
6031 int dquote_end)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006032{
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006033 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006034 int next;
6035
6036 again:
6037 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006038 if (ch != EOF)
6039 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006040 if (ch == dquote_end) { /* may be only '"' or EOF */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006041 if (dest->o_assignment == NOT_ASSIGNMENT)
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00006042 dest->o_escape ^= 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006043 debug_printf_parse("parse_stream_dquoted return 0\n");
6044 return 0;
6045 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00006046 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006047 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00006048 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006049 /*xfunc_die(); - redundant */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006050 }
6051 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006052 if (ch != '\n') {
6053 next = i_peek(input);
6054 }
Denys Vlasenkof37eb392009-10-18 11:46:35 +02006055 debug_printf_parse("\" ch=%c (%d) escape=%d\n",
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006056 ch, ch, dest->o_escape);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006057 if (ch == '\\') {
6058 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006059 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006060 xfunc_die();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006061 }
6062 /* bash:
6063 * "The backslash retains its special meaning [in "..."]
6064 * only when followed by one of the following characters:
6065 * $, `, ", \, or <newline>. A double quote may be quoted
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02006066 * within double quotes by preceding it with a backslash."
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006067 */
Denys Vlasenkoe19e1932009-05-03 02:15:18 +02006068 if (strchr("$`\"\\\n", next) != NULL) {
Denis Vlasenko57293002009-04-26 20:06:14 +00006069 ch = i_getch(input);
Denys Vlasenkoe19e1932009-05-03 02:15:18 +02006070 if (ch != '\n') {
6071 o_addqchr(dest, ch);
6072 nommu_addchr(as_string, ch);
6073 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006074 } else {
6075 o_addqchr(dest, '\\');
Denis Vlasenko57293002009-04-26 20:06:14 +00006076 nommu_addchr(as_string, '\\');
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006077 }
6078 goto again;
6079 }
6080 if (ch == '$') {
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006081 if (handle_dollar(as_string, dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006082 debug_printf_parse("parse_stream_dquoted return 1: "
6083 "handle_dollar returned non-0\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006084 return 1;
6085 }
6086 goto again;
6087 }
6088#if ENABLE_HUSH_TICK
6089 if (ch == '`') {
6090 //int pos = dest->length;
6091 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6092 o_addchr(dest, 0x80 | '`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006093 add_till_backquote(dest, input);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006094 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6095 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00006096 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006097 }
6098#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00006099 o_addQchr(dest, ch);
6100 if (ch == '='
6101 && (dest->o_assignment == MAYBE_ASSIGNMENT
6102 || dest->o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006103 && is_well_formed_var_name(dest->data, '=')
Denis Vlasenkof328e002009-04-02 16:55:38 +00006104 ) {
6105 dest->o_assignment = DEFINITELY_ASSIGNMENT;
6106 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006107 goto again;
6108}
6109
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006110/*
6111 * Scan input until EOF or end_trigger char.
6112 * Return a list of pipes to execute, or NULL on EOF
6113 * or if end_trigger character is met.
6114 * On syntax error, exit is shell is not interactive,
6115 * reset parsing machinery and start parsing anew,
6116 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00006117 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006118static struct pipe *parse_stream(char **pstring,
6119 struct in_str *input,
6120 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00006121{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006122 struct parse_context ctx;
6123 o_string dest = NULL_O_STRING;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006124 int is_in_dquote;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00006125 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00006126
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00006127 /* Double-quote state is handled in the state variable is_in_dquote.
Eric Andersen25f27032001-04-26 23:22:31 +00006128 * A single-quote triggers a bypass of the main loop until its mate is
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006129 * found. When recursing, quote state is passed in via dest->o_escape.
6130 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006131 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
Denys Vlasenko90a99042009-09-06 02:36:23 +02006132 end_trigger ? end_trigger : 'X');
Denis Vlasenko0701dca2009-04-11 10:38:47 +00006133 debug_enter();
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00006134
Denys Vlasenkof37eb392009-10-18 11:46:35 +02006135 /* If very first arg is "" or '', dest.data may end up NULL.
6136 * Preventing this: */
6137 o_addchr(&dest, '\0');
6138 dest.length = 0;
6139
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006140 G.ifs = get_local_var_value("IFS");
6141 if (G.ifs == NULL)
6142 G.ifs = " \t\n";
6143
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006144 reset:
6145#if ENABLE_HUSH_INTERACTIVE
6146 input->promptmode = 0; /* PS1 */
6147#endif
6148 /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */
6149 initialize_context(&ctx);
6150 is_in_dquote = 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00006151 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00006152 while (1) {
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006153 const char *is_ifs;
6154 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006155 int ch;
6156 int next;
6157 int redir_fd;
6158 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006159
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006160 if (is_in_dquote) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00006161 /* dest.o_quoted = 1; - already is (see below) */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006162 if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006163 goto parse_error;
6164 }
6165 /* We reached closing '"' */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006166 is_in_dquote = 0;
6167 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00006168 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006169 debug_printf_parse(": ch=%c (%d) escape=%d\n",
6170 ch, ch, dest.o_escape);
6171 if (ch == EOF) {
6172 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00006173
6174 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00006175 syntax_error_unterm_str("here document");
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02006176 goto parse_error;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00006177 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02006178 /* end_trigger == '}' case errors out earlier,
6179 * checking only ')' */
6180 if (end_trigger == ')') {
6181 syntax_error_unterm_ch('('); /* exits */
6182 /* goto parse_error; */
6183 }
6184
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006185 if (done_word(&dest, &ctx)) {
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02006186 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00006187 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006188 o_free(&dest);
6189 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006190 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006191 /* If we got nothing... */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006192 /* (this makes bare "&" cmd a no-op.
6193 * bash says: "syntax error near unexpected token '&'") */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006194 if (pi->num_cmds == 0
6195 IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
6196 ) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00006197 free_pipe_list(pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006198 pi = NULL;
6199 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006200#if !BB_MMU
6201 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
6202 if (pstring)
6203 *pstring = ctx.as_string.data;
6204 else
6205 o_free_unsafe(&ctx.as_string);
6206#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00006207 debug_leave();
6208 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006209 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00006210 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006211 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01006212
6213 next = '\0';
6214 if (ch != '\n')
6215 next = i_peek(input);
6216
6217 is_special = "{}<>;&|()#'" /* special outside of "str" */
6218 "\\$\"" IF_HUSH_TICK("`"); /* always special */
6219 /* Are { and } special here? */
6220 if (ctx.command->argv /* word [word]{... */
6221 || dest.length /* word{... */
6222 || dest.o_quoted /* ""{... */
6223 || (next != ';' && next != ')' && !strchr(G.ifs, next)) /* {word */
6224 ) {
6225 /* They are not special, skip "{}" */
6226 is_special += 2;
6227 }
6228 is_special = strchr(is_special, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006229 is_ifs = strchr(G.ifs, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006230
6231 if (!is_special && !is_ifs) { /* ordinary char */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00006232 ordinary_char:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006233 o_addQchr(&dest, ch);
6234 if ((dest.o_assignment == MAYBE_ASSIGNMENT
6235 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00006236 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006237 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00006238 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006239 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00006240 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00006241 continue;
6242 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00006243
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006244 if (is_ifs) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006245 if (done_word(&dest, &ctx)) {
6246 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00006247 }
Denis Vlasenko37181682009-04-03 03:19:15 +00006248 if (ch == '\n') {
Denis Vlasenkof1736072008-07-31 10:09:26 +00006249#if ENABLE_HUSH_CASE
6250 /* "case ... in <newline> word) ..." -
6251 * newlines are ignored (but ';' wouldn't be) */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006252 if (ctx.command->argv == NULL
6253 && ctx.ctx_res_w == RES_MATCH
Denis Vlasenkof1736072008-07-31 10:09:26 +00006254 ) {
6255 continue;
6256 }
6257#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00006258 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006259 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00006260 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
6261 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00006262 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00006263 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00006264 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00006265 heredoc_cnt = 0;
6266 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006267 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00006268 ch = ';';
Denis Vlasenko7c986122009-04-04 12:15:42 +00006269 /* note: if (is_ifs) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00006270 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00006271 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00006272 }
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00006273
6274 /* "cmd}" or "cmd }..." without semicolon or &:
6275 * } is an ordinary char in this case, even inside { cmd; }
6276 * Pathological example: { ""}; } should exec "}" cmd
6277 */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00006278 if (ch == '}') {
6279 if (!IS_NULL_CMD(ctx.command) /* cmd } */
6280 || dest.length != 0 /* word} */
6281 || dest.o_quoted /* ""} */
6282 ) {
6283 goto ordinary_char;
6284 }
6285 if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */
6286 goto skip_end_trigger;
6287 /* else: } does terminate a group */
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00006288 }
6289
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00006290 if (end_trigger && end_trigger == ch
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02006291 && (ch != ';' || heredoc_cnt == 0)
6292#if ENABLE_HUSH_CASE
6293 && (ch != ')'
6294 || ctx.ctx_res_w != RES_MATCH
6295 || (!dest.o_quoted && strcmp(dest.data, "esac") == 0)
6296 )
6297#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00006298 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00006299 if (heredoc_cnt) {
6300 /* This is technically valid:
6301 * { cat <<HERE; }; echo Ok
6302 * heredoc
6303 * heredoc
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00006304 * HERE
6305 * but we don't support this.
6306 * We require heredoc to be in enclosing {}/(),
6307 * if any.
6308 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00006309 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00006310 goto parse_error;
6311 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006312 if (done_word(&dest, &ctx)) {
6313 goto parse_error;
6314 }
6315 done_pipe(&ctx, PIPE_SEQ);
6316 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00006317 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00006318 if (!HAS_KEYWORDS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006319 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00006320 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006321 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006322#if !BB_MMU
6323 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
6324 if (pstring)
6325 *pstring = ctx.as_string.data;
6326 else
6327 o_free_unsafe(&ctx.as_string);
6328#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00006329 debug_leave();
6330 debug_printf_parse("parse_stream return %p: "
6331 "end_trigger char found\n",
6332 ctx.list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006333 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006334 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00006335 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00006336 skip_end_trigger:
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006337 if (is_ifs)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00006338 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00006339
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00006340 /* Catch <, > before deciding whether this word is
6341 * an assignment. a=1 2>z b=2: b=2 is still assignment */
6342 switch (ch) {
6343 case '>':
6344 redir_fd = redirect_opt_num(&dest);
6345 if (done_word(&dest, &ctx)) {
6346 goto parse_error;
6347 }
6348 redir_style = REDIRECT_OVERWRITE;
6349 if (next == '>') {
6350 redir_style = REDIRECT_APPEND;
6351 ch = i_getch(input);
6352 nommu_addchr(&ctx.as_string, ch);
6353 }
6354#if 0
6355 else if (next == '(') {
6356 syntax_error(">(process) not supported");
6357 goto parse_error;
6358 }
6359#endif
6360 if (parse_redirect(&ctx, redir_fd, redir_style, input))
6361 goto parse_error;
6362 continue; /* back to top of while (1) */
6363 case '<':
6364 redir_fd = redirect_opt_num(&dest);
6365 if (done_word(&dest, &ctx)) {
6366 goto parse_error;
6367 }
6368 redir_style = REDIRECT_INPUT;
6369 if (next == '<') {
6370 redir_style = REDIRECT_HEREDOC;
6371 heredoc_cnt++;
6372 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
6373 ch = i_getch(input);
6374 nommu_addchr(&ctx.as_string, ch);
6375 } else if (next == '>') {
6376 redir_style = REDIRECT_IO;
6377 ch = i_getch(input);
6378 nommu_addchr(&ctx.as_string, ch);
6379 }
6380#if 0
6381 else if (next == '(') {
6382 syntax_error("<(process) not supported");
6383 goto parse_error;
6384 }
6385#endif
6386 if (parse_redirect(&ctx, redir_fd, redir_style, input))
6387 goto parse_error;
6388 continue; /* back to top of while (1) */
6389 }
6390
6391 if (dest.o_assignment == MAYBE_ASSIGNMENT
6392 /* check that we are not in word in "a=1 2>word b=1": */
6393 && !ctx.pending_redirect
6394 ) {
6395 /* ch is a special char and thus this word
6396 * cannot be an assignment */
6397 dest.o_assignment = NOT_ASSIGNMENT;
6398 }
6399
Denys Vlasenkocbfe6ad2009-08-12 19:47:44 +02006400 /* Note: nommu_addchr(&ctx.as_string, ch) is already done */
6401
Denis Vlasenkobb81c582007-01-30 22:32:09 +00006402 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00006403 case '#':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006404 if (dest.length == 0) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00006405 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00006406 ch = i_peek(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00006407 if (ch == EOF || ch == '\n')
6408 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00006409 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00006410 /* note: we do not add it to &ctx.as_string */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00006411 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006412 nommu_addchr(&ctx.as_string, '\n');
Eric Andersen25f27032001-04-26 23:22:31 +00006413 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006414 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00006415 }
6416 break;
6417 case '\\':
6418 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006419 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006420 xfunc_die();
Eric Andersen25f27032001-04-26 23:22:31 +00006421 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00006422 ch = i_getch(input);
Denys Vlasenkoe19e1932009-05-03 02:15:18 +02006423 if (ch != '\n') {
6424 o_addchr(&dest, '\\');
Denys Vlasenkocbfe6ad2009-08-12 19:47:44 +02006425 /*nommu_addchr(&ctx.as_string, '\\'); - already done */
Denys Vlasenkoe19e1932009-05-03 02:15:18 +02006426 o_addchr(&dest, ch);
6427 nommu_addchr(&ctx.as_string, ch);
6428 /* Example: echo Hello \2>file
6429 * we need to know that word 2 is quoted */
6430 dest.o_quoted = 1;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02006431 }
Denys Vlasenkocbfe6ad2009-08-12 19:47:44 +02006432#if !BB_MMU
Denys Vlasenkoc0836532009-10-19 13:13:06 +02006433 else {
Denys Vlasenkocbfe6ad2009-08-12 19:47:44 +02006434 /* It's "\<newline>". Remove trailing '\' from ctx.as_string */
6435 ctx.as_string.data[--ctx.as_string.length] = '\0';
Denys Vlasenkoe19e1932009-05-03 02:15:18 +02006436 }
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02006437#endif
Eric Andersen25f27032001-04-26 23:22:31 +00006438 break;
6439 case '$':
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006440 if (handle_dollar(&ctx.as_string, &dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006441 debug_printf_parse("parse_stream parse error: "
6442 "handle_dollar returned non-0\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006443 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00006444 }
Eric Andersen25f27032001-04-26 23:22:31 +00006445 break;
6446 case '\'':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00006447 dest.o_quoted = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00006448 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00006449 ch = i_getch(input);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006450 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00006451 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006452 /*xfunc_die(); - redundant */
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006453 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006454 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006455 if (ch == '\'')
Denis Vlasenko0c886c62007-01-30 22:30:09 +00006456 break;
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02006457 o_addqchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00006458 }
Eric Andersen25f27032001-04-26 23:22:31 +00006459 break;
6460 case '"':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00006461 dest.o_quoted = 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006462 is_in_dquote ^= 1; /* invert */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006463 if (dest.o_assignment == NOT_ASSIGNMENT)
6464 dest.o_escape ^= 1;
Eric Andersen25f27032001-04-26 23:22:31 +00006465 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00006466#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006467 case '`': {
Denis Vlasenko5c090a92009-04-08 21:51:33 +00006468#if !BB_MMU
6469 int pos;
6470#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006471 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
6472 o_addchr(&dest, '`');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00006473#if !BB_MMU
6474 pos = dest.length;
6475#endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006476 add_till_backquote(&dest, input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00006477#if !BB_MMU
6478 o_addstr(&ctx.as_string, dest.data + pos);
6479 o_addchr(&ctx.as_string, '`');
6480#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006481 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
6482 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00006483 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006484 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00006485#endif
Eric Andersen25f27032001-04-26 23:22:31 +00006486 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00006487#if ENABLE_HUSH_CASE
6488 case_semi:
6489#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006490 if (done_word(&dest, &ctx)) {
6491 goto parse_error;
6492 }
6493 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00006494#if ENABLE_HUSH_CASE
6495 /* Eat multiple semicolons, detect
6496 * whether it means something special */
6497 while (1) {
6498 ch = i_peek(input);
6499 if (ch != ';')
6500 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00006501 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006502 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02006503 if (ctx.ctx_res_w == RES_CASE_BODY) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006504 ctx.ctx_dsemicolon = 1;
6505 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00006506 break;
6507 }
6508 }
6509#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00006510 new_cmd:
6511 /* We just finished a cmd. New one may start
6512 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006513 dest.o_assignment = MAYBE_ASSIGNMENT;
Eric Andersen25f27032001-04-26 23:22:31 +00006514 break;
6515 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006516 if (done_word(&dest, &ctx)) {
6517 goto parse_error;
6518 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00006519 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00006520 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006521 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006522 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00006523 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006524 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00006525 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00006526 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00006527 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006528 if (done_word(&dest, &ctx)) {
6529 goto parse_error;
6530 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00006531#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006532 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00006533 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00006534#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00006535 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00006536 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006537 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006538 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00006539 } else {
6540 /* we could pick up a file descriptor choice here
6541 * with redirect_opt_num(), but bash doesn't do it.
6542 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006543 done_command(&ctx);
Denys Vlasenkob70cef72010-01-12 13:45:45 +01006544#if !BB_MMU
6545 o_reset_to_empty_unquoted(&ctx.as_string);
6546#endif
Eric Andersen25f27032001-04-26 23:22:31 +00006547 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00006548 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00006549 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00006550#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00006551 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006552 if (ctx.ctx_res_w == RES_MATCH
6553 && ctx.command->argv == NULL /* not (word|(... */
6554 && dest.length == 0 /* not word(... */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00006555 && dest.o_quoted == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00006556 ) {
6557 continue;
6558 }
6559#endif
Eric Andersen25f27032001-04-26 23:22:31 +00006560 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006561 if (parse_group(&dest, &ctx, input, ch) != 0) {
6562 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00006563 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00006564 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00006565 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00006566#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006567 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00006568 goto case_semi;
6569#endif
Eric Andersen25f27032001-04-26 23:22:31 +00006570 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00006571 /* proper use of this character is caught by end_trigger:
6572 * if we see {, we call parse_group(..., end_trigger='}')
6573 * and it will match } earlier (not here). */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00006574 syntax_error_unexpected_ch(ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006575 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00006576 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00006577 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00006578 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00006579 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006580 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00006581
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006582 parse_error:
6583 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006584 struct parse_context *pctx;
6585 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006586
6587 /* Clean up allocated tree.
Denys Vlasenko764b2f02009-06-07 16:05:04 +02006588 * Sample for finding leaks on syntax error recovery path.
6589 * Run it from interactive shell, watch pmap `pidof hush`.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006590 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00006591 * Samples to catch leaks at execution:
6592 * while if (true | {true;}); then echo ok; fi; do break; done
6593 * 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 +00006594 */
6595 pctx = &ctx;
6596 do {
6597 /* Update pipe/command counts,
6598 * otherwise freeing may miss some */
6599 done_pipe(pctx, PIPE_SEQ);
6600 debug_printf_clean("freeing list %p from ctx %p\n",
6601 pctx->list_head, pctx);
6602 debug_print_tree(pctx->list_head, 0);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00006603 free_pipe_list(pctx->list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006604 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006605#if !BB_MMU
6606 o_free_unsafe(&pctx->as_string);
6607#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006608 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006609 if (pctx != &ctx) {
6610 free(pctx);
6611 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006612 IF_HAS_KEYWORDS(pctx = p2;)
6613 } while (HAS_KEYWORDS && pctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006614 /* Free text, clear all dest fields */
6615 o_free(&dest);
6616 /* If we are not in top-level parse, we return,
6617 * our caller will propagate error.
6618 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006619 if (end_trigger != ';') {
6620#if !BB_MMU
6621 if (pstring)
6622 *pstring = NULL;
6623#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00006624 debug_leave();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006625 return ERR_PTR;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006626 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006627 /* Discard cached input, force prompt */
6628 input->p = NULL;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00006629 IF_HUSH_INTERACTIVE(input->promptme = 1;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006630 goto reset;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00006631 }
Eric Andersen25f27032001-04-26 23:22:31 +00006632}
6633
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006634/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006635 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
6636 * end_trigger controls how often we stop parsing
6637 * NUL: parse all, execute, return
6638 * ';': parse till ';' or newline, execute, repeat till EOF
6639 */
6640static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00006641{
Denys Vlasenko00243b02009-11-16 02:00:03 +01006642 /* Why we need empty flag?
6643 * An obscure corner case "false; ``; echo $?":
6644 * empty command in `` should still set $? to 0.
6645 * But we can't just set $? to 0 at the start,
6646 * this breaks "false; echo `echo $?`" case.
6647 */
6648 bool empty = 1;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006649 while (1) {
6650 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006651
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006652 pipe_list = parse_stream(NULL, inp, end_trigger);
Denys Vlasenko00243b02009-11-16 02:00:03 +01006653 if (!pipe_list) { /* EOF */
6654 if (empty)
6655 G.last_exitcode = 0;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006656 break;
Denys Vlasenko00243b02009-11-16 02:00:03 +01006657 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006658 debug_print_tree(pipe_list, 0);
6659 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
6660 run_and_free_list(pipe_list);
Denys Vlasenko00243b02009-11-16 02:00:03 +01006661 empty = 0;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006662 }
Eric Andersen25f27032001-04-26 23:22:31 +00006663}
6664
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006665static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00006666{
6667 struct in_str input;
6668 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006669 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00006670}
6671
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006672static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00006673{
Eric Andersen25f27032001-04-26 23:22:31 +00006674 struct in_str input;
6675 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006676 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00006677}
6678
Denis Vlasenkof9375282009-04-05 19:13:39 +00006679/* Called a few times only (or even once if "sh -c") */
6680static void block_signals(int second_time)
Eric Andersen52a97ca2001-06-22 06:49:26 +00006681{
Denis Vlasenkof9375282009-04-05 19:13:39 +00006682 unsigned sig;
6683 unsigned mask;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006684
Denis Vlasenkof9375282009-04-05 19:13:39 +00006685 mask = (1 << SIGQUIT);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006686 if (G_interactive_fd) {
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00006687 mask = (1 << SIGQUIT) | SPECIAL_INTERACTIVE_SIGS;
Mike Frysinger38478a62009-05-20 04:48:06 -04006688 if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006689 mask |= SPECIAL_JOB_SIGS;
6690 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006691 G.non_DFL_mask = mask;
Eric Andersen52a97ca2001-06-22 06:49:26 +00006692
Denis Vlasenkof9375282009-04-05 19:13:39 +00006693 if (!second_time)
6694 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
6695 sig = 0;
6696 while (mask) {
6697 if (mask & 1)
6698 sigaddset(&G.blocked_set, sig);
6699 mask >>= 1;
6700 sig++;
6701 }
6702 sigdelset(&G.blocked_set, SIGCHLD);
6703
6704 sigprocmask(SIG_SETMASK, &G.blocked_set,
6705 second_time ? NULL : &G.inherited_set);
6706 /* POSIX allows shell to re-enable SIGCHLD
6707 * even if it was SIG_IGN on entry */
Denys Vlasenko8d7be232009-05-25 16:38:32 +02006708#if ENABLE_HUSH_FAST
6709 G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006710 if (!second_time)
Denys Vlasenko8d7be232009-05-25 16:38:32 +02006711 signal(SIGCHLD, SIGCHLD_handler);
6712#else
6713 if (!second_time)
6714 signal(SIGCHLD, SIG_DFL);
6715#endif
Denis Vlasenkof9375282009-04-05 19:13:39 +00006716}
6717
6718#if ENABLE_HUSH_JOB
6719/* helper */
6720static void maybe_set_to_sigexit(int sig)
6721{
6722 void (*handler)(int);
6723 /* non_DFL_mask'ed signals are, well, masked,
6724 * no need to set handler for them.
6725 */
6726 if (!((G.non_DFL_mask >> sig) & 1)) {
6727 handler = signal(sig, sigexit);
6728 if (handler == SIG_IGN) /* oops... restore back to IGN! */
6729 signal(sig, handler);
6730 }
6731}
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006732/* Set handlers to restore tty pgrp and exit */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006733static void set_fatal_handlers(void)
6734{
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00006735 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006736 if (HUSH_DEBUG) {
6737 maybe_set_to_sigexit(SIGILL );
6738 maybe_set_to_sigexit(SIGFPE );
6739 maybe_set_to_sigexit(SIGBUS );
6740 maybe_set_to_sigexit(SIGSEGV);
6741 maybe_set_to_sigexit(SIGTRAP);
6742 } /* else: hush is perfect. what SEGV? */
6743 maybe_set_to_sigexit(SIGABRT);
6744 /* bash 3.2 seems to handle these just like 'fatal' ones */
6745 maybe_set_to_sigexit(SIGPIPE);
6746 maybe_set_to_sigexit(SIGALRM);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00006747 /* if we are interactive, SIGHUP, SIGTERM and SIGINT are masked.
Denis Vlasenkof9375282009-04-05 19:13:39 +00006748 * if we aren't interactive... but in this case
6749 * we never want to restore pgrp on exit, and this fn is not called */
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00006750 /*maybe_set_to_sigexit(SIGHUP );*/
Denis Vlasenkof9375282009-04-05 19:13:39 +00006751 /*maybe_set_to_sigexit(SIGTERM);*/
6752 /*maybe_set_to_sigexit(SIGINT );*/
Eric Andersen6c947d22001-06-25 22:24:38 +00006753}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00006754#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00006755
Denis Vlasenkod5762932009-03-31 11:22:57 +00006756static int set_mode(const char cstate, const char mode)
6757{
6758 int state = (cstate == '-' ? 1 : 0);
6759 switch (mode) {
6760 case 'n': G.fake_mode = state; break;
6761 case 'x': /*G.debug_mode = state;*/ break;
6762 default: return EXIT_FAILURE;
6763 }
6764 return EXIT_SUCCESS;
6765}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006766
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00006767int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00006768int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00006769{
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00006770 static const struct variable const_shell_ver = {
6771 .next = NULL,
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00006772 .varstr = (char*)hush_version_str,
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00006773 .max_len = 1, /* 0 can provoke free(name) */
6774 .flg_export = 1,
6775 .flg_read_only = 1,
6776 };
Denis Vlasenkof9375282009-04-05 19:13:39 +00006777 int signal_mask_is_inited = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00006778 int opt;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02006779 unsigned builtin_argc;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006780 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006781 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00006782
Denis Vlasenko574f2f42008-02-27 18:41:59 +00006783 INIT_G();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006784 if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006785 G.last_exitcode = EXIT_SUCCESS;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006786#if !BB_MMU
6787 G.argv0_for_re_execing = argv[0];
6788#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00006789 /* Deal with HUSH_VERSION */
Denis Vlasenko87a86552008-07-29 19:43:10 +00006790 G.shell_ver = const_shell_ver; /* copying struct here */
6791 G.top_var = &G.shell_ver;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00006792 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00006793 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
6794 /* Initialize our shell local variables with the values
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006795 * currently living in the environment */
Denis Vlasenko87a86552008-07-29 19:43:10 +00006796 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00006797 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006798 if (e) while (*e) {
6799 char *value = strchr(*e, '=');
6800 if (value) { /* paranoia */
6801 cur_var->next = xzalloc(sizeof(*cur_var));
6802 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00006803 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006804 cur_var->max_len = strlen(*e);
6805 cur_var->flg_export = 1;
6806 }
6807 e++;
6808 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02006809 /* reinstate HUSH_VERSION */
Denis Vlasenkof886fd22008-10-13 12:36:05 +00006810 debug_printf_env("putenv '%s'\n", hush_version_str);
Denys Vlasenko6db47842009-09-05 20:15:17 +02006811 putenv((char *)hush_version_str);
6812
6813 /* Export PWD */
6814 set_pwd_var(/*exp:*/ 1);
6815 /* bash also exports SHLVL and _,
6816 * and sets (but doesn't export) the following variables:
6817 * BASH=/bin/bash
6818 * BASH_VERSINFO=([0]="3" [1]="2" [2]="0" [3]="1" [4]="release" [5]="i386-pc-linux-gnu")
6819 * BASH_VERSION='3.2.0(1)-release'
6820 * HOSTTYPE=i386
6821 * MACHTYPE=i386-pc-linux-gnu
6822 * OSTYPE=linux-gnu
6823 * HOSTNAME=<xxxxxxxxxx>
Denys Vlasenkodea47882009-10-09 15:40:49 +02006824 * PPID=<NNNNN> - we also do it elsewhere
Denys Vlasenko6db47842009-09-05 20:15:17 +02006825 * EUID=<NNNNN>
6826 * UID=<NNNNN>
6827 * GROUPS=()
6828 * LINES=<NNN>
6829 * COLUMNS=<NNN>
6830 * BASH_ARGC=()
6831 * BASH_ARGV=()
6832 * BASH_LINENO=()
6833 * BASH_SOURCE=()
6834 * DIRSTACK=()
6835 * PIPESTATUS=([0]="0")
6836 * HISTFILE=/<xxx>/.bash_history
6837 * HISTFILESIZE=500
6838 * HISTSIZE=500
6839 * MAILCHECK=60
6840 * PATH=/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:.
6841 * SHELL=/bin/bash
6842 * SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor
6843 * TERM=dumb
6844 * OPTERR=1
6845 * OPTIND=1
6846 * IFS=$' \t\n'
6847 * PS1='\s-\v\$ '
6848 * PS2='> '
6849 * PS4='+ '
6850 */
6851
Denis Vlasenko38f63192007-01-22 09:03:07 +00006852#if ENABLE_FEATURE_EDITING
Denis Vlasenko87a86552008-07-29 19:43:10 +00006853 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00006854#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00006855 G.global_argc = argc;
6856 G.global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00006857 /* Initialize some more globals to non-zero values */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00006858 cmdedit_update_prompt();
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00006859
Denis Vlasenkoed782372009-04-10 00:45:02 +00006860 if (setjmp(die_jmp)) {
6861 /* xfunc has failed! die die die */
6862 /* no EXIT traps, this is an escape hatch! */
6863 G.exiting = 1;
6864 hush_exit(xfunc_error_retval);
6865 }
6866
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006867 /* Shell is non-interactive at first. We need to call
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006868 * block_signals(0) if we are going to execute "sh <script>",
6869 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006870 * If we later decide that we are interactive, we run block_signals(0)
6871 * (or re-run block_signals(1) if we ran block_signals(0) before)
6872 * in order to intercept (more) signals.
6873 */
6874
6875 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00006876 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02006877 builtin_argc = 0;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006878 while (1) {
Denys Vlasenkoa67a9622009-08-20 03:38:58 +02006879 opt = getopt(argc, argv, "+c:xins"
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006880#if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00006881 "<:$:R:V:"
6882# if ENABLE_HUSH_FUNCTIONS
6883 "F:"
6884# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006885#endif
6886 );
6887 if (opt <= 0)
6888 break;
Eric Andersen25f27032001-04-26 23:22:31 +00006889 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006890 case 'c':
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02006891 /* Possibilities:
6892 * sh ... -c 'script'
6893 * sh ... -c 'script' ARG0 [ARG1...]
6894 * On NOMMU, if builtin_argc != 0,
6895 * sh ... -c 'builtin' [BARGV...] "" ARG0 [ARG1...]
6896 * "" needs to be replaced with NULL
6897 * and BARGV vector fed to builtin function.
6898 * Note: this form never happens:
6899 * sh ... -c 'builtin' [BARGV...] ""
6900 */
Denys Vlasenkodea47882009-10-09 15:40:49 +02006901 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006902 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02006903 G.root_ppid = getppid();
6904 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006905 G.global_argv = argv + optind;
6906 G.global_argc = argc - optind;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02006907 if (builtin_argc) {
6908 /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */
6909 const struct built_in_command *x;
6910
6911 block_signals(0); /* 0: called 1st time */
6912 x = find_builtin(optarg);
6913 if (x) { /* paranoia */
6914 G.global_argc -= builtin_argc; /* skip [BARGV...] "" */
6915 G.global_argv += builtin_argc;
6916 G.global_argv[-1] = NULL; /* replace "" */
6917 G.last_exitcode = x->function(argv + optind - 1);
6918 }
6919 goto final_return;
6920 }
6921 if (!G.global_argv[0]) {
6922 /* -c 'script' (no params): prevent empty $0 */
6923 G.global_argv--; /* points to argv[i] of 'script' */
6924 G.global_argv[0] = argv[0];
6925 G.global_argc--;
6926 } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006927 block_signals(0); /* 0: called 1st time */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006928 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006929 goto final_return;
6930 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00006931 /* Well, we cannot just declare interactiveness,
6932 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006933 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006934 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00006935 case 's':
6936 /* "-s" means "read from stdin", but this is how we always
6937 * operate, so simply do nothing here. */
6938 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006939#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00006940 case '<': /* "big heredoc" support */
6941 full_write(STDOUT_FILENO, optarg, strlen(optarg));
6942 _exit(0);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006943 case '$':
Denis Vlasenko34e573d2009-04-06 12:56:28 +00006944 G.root_pid = bb_strtou(optarg, &optarg, 16);
6945 optarg++;
Denys Vlasenkodea47882009-10-09 15:40:49 +02006946 G.root_ppid = bb_strtou(optarg, &optarg, 16);
6947 optarg++;
Denis Vlasenko34e573d2009-04-06 12:56:28 +00006948 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
6949 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006950 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02006951 optarg++;
6952 builtin_argc = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006953# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00006954 optarg++;
6955 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006956# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00006957 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006958 case 'R':
6959 case 'V':
Denys Vlasenko295fef82009-06-03 12:47:26 +02006960 set_local_var(xstrdup(optarg), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ opt == 'R');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006961 break;
Denis Vlasenkobc569742009-04-12 20:35:19 +00006962# if ENABLE_HUSH_FUNCTIONS
6963 case 'F': {
6964 struct function *funcp = new_function(optarg);
6965 /* funcp->name is already set to optarg */
6966 /* funcp->body is set to NULL. It's a special case. */
6967 funcp->body_as_string = argv[optind];
6968 optind++;
6969 break;
6970 }
6971# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006972#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006973 case 'n':
6974 case 'x':
Denis Vlasenkod5762932009-03-31 11:22:57 +00006975 if (!set_mode('-', opt))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006976 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006977 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00006978#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006979 fprintf(stderr, "Usage: sh [FILE]...\n"
6980 " or: sh -c command [args]...\n\n");
6981 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00006982#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006983 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00006984#endif
Eric Andersen25f27032001-04-26 23:22:31 +00006985 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006986 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006987
Denys Vlasenkodea47882009-10-09 15:40:49 +02006988 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006989 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02006990 G.root_ppid = getppid();
6991 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006992
6993 /* If we are login shell... */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006994 if (argv[0] && argv[0][0] == '-') {
6995 FILE *input;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006996 debug_printf("sourcing /etc/profile\n");
6997 input = fopen_for_read("/etc/profile");
6998 if (input != NULL) {
6999 close_on_exec_on(fileno(input));
Denis Vlasenkof9375282009-04-05 19:13:39 +00007000 block_signals(0); /* 0: called 1st time */
7001 signal_mask_is_inited = 1;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007002 parse_and_run_file(input);
7003 fclose(input);
7004 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007005 /* bash: after sourcing /etc/profile,
7006 * tries to source (in the given order):
7007 * ~/.bash_profile, ~/.bash_login, ~/.profile,
Denys Vlasenko28a105d2009-06-01 11:26:30 +02007008 * stopping on first found. --noprofile turns this off.
Denis Vlasenkof9375282009-04-05 19:13:39 +00007009 * bash also sources ~/.bash_logout on exit.
7010 * If called as sh, skips .bash_XXX files.
7011 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007012 }
7013
Denis Vlasenkof9375282009-04-05 19:13:39 +00007014 if (argv[optind]) {
7015 FILE *input;
7016 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00007017 * "bash <script>" (which is never interactive (unless -i?))
7018 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00007019 * If called as sh, does the same but with $ENV.
7020 */
7021 debug_printf("running script '%s'\n", argv[optind]);
7022 G.global_argv = argv + optind;
7023 G.global_argc = argc - optind;
7024 input = xfopen_for_read(argv[optind]);
7025 close_on_exec_on(fileno(input));
7026 if (!signal_mask_is_inited)
7027 block_signals(0); /* 0: called 1st time */
7028 parse_and_run_file(input);
7029#if ENABLE_FEATURE_CLEAN_UP
7030 fclose(input);
7031#endif
7032 goto final_return;
7033 }
7034
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00007035 /* Up to here, shell was non-interactive. Now it may become one.
7036 * NB: don't forget to (re)run block_signals(0/1) as needed.
7037 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00007038
Denys Vlasenko28a105d2009-06-01 11:26:30 +02007039 /* A shell is interactive if the '-i' flag was given,
7040 * or if all of the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00007041 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00007042 * no arguments remaining or the -s flag given
7043 * standard input is a terminal
7044 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00007045 * Refer to Posix.2, the description of the 'sh' utility.
7046 */
7047#if ENABLE_HUSH_JOB
7048 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Mike Frysinger38478a62009-05-20 04:48:06 -04007049 G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
7050 debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp);
7051 if (G_saved_tty_pgrp < 0)
7052 G_saved_tty_pgrp = 0;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007053
7054 /* try to dup stdin to high fd#, >= 255 */
7055 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
7056 if (G_interactive_fd < 0) {
7057 /* try to dup to any fd */
7058 G_interactive_fd = dup(STDIN_FILENO);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007059 if (G_interactive_fd < 0) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007060 /* give up */
7061 G_interactive_fd = 0;
Mike Frysinger38478a62009-05-20 04:48:06 -04007062 G_saved_tty_pgrp = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00007063 }
7064 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007065// TODO: track & disallow any attempts of user
7066// to (inadvertently) close/redirect G_interactive_fd
Eric Andersen25f27032001-04-26 23:22:31 +00007067 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007068 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007069 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00007070 close_on_exec_on(G_interactive_fd);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007071
Mike Frysinger38478a62009-05-20 04:48:06 -04007072 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007073 /* If we were run as 'hush &', sleep until we are
7074 * in the foreground (tty pgrp == our pgrp).
7075 * If we get started under a job aware app (like bash),
7076 * make sure we are now in charge so we don't fight over
7077 * who gets the foreground */
7078 while (1) {
7079 pid_t shell_pgrp = getpgrp();
Mike Frysinger38478a62009-05-20 04:48:06 -04007080 G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
7081 if (G_saved_tty_pgrp == shell_pgrp)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007082 break;
7083 /* send TTIN to ourself (should stop us) */
7084 kill(- shell_pgrp, SIGTTIN);
7085 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007086 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007087
Denis Vlasenkof9375282009-04-05 19:13:39 +00007088 /* Block some signals */
7089 block_signals(signal_mask_is_inited);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007090
Mike Frysinger38478a62009-05-20 04:48:06 -04007091 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007092 /* Set other signals to restore saved_tty_pgrp */
7093 set_fatal_handlers();
7094 /* Put ourselves in our own process group
7095 * (bash, too, does this only if ctty is available) */
7096 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
7097 /* Grab control of the terminal */
7098 tcsetpgrp(G_interactive_fd, getpid());
7099 }
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00007100 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00007101 * (we reset die_sleep = 0 whereever we [v]fork) */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00007102 enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00007103 } else if (!signal_mask_is_inited) {
7104 block_signals(0); /* 0: called 1st time */
7105 } /* else: block_signals(0) was done before */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00007106#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00007107 /* No job control compiled in, only prompt/line editing */
7108 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007109 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
7110 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00007111 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007112 G_interactive_fd = dup(STDIN_FILENO);
7113 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00007114 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007115 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00007116 }
7117 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007118 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00007119 close_on_exec_on(G_interactive_fd);
7120 block_signals(signal_mask_is_inited);
7121 } else if (!signal_mask_is_inited) {
7122 block_signals(0);
7123 }
7124#else
7125 /* We have interactiveness code disabled */
7126 if (!signal_mask_is_inited) {
7127 block_signals(0);
7128 }
7129#endif
7130 /* bash:
7131 * if interactive but not a login shell, sources ~/.bashrc
7132 * (--norc turns this off, --rcfile <file> overrides)
7133 */
7134
7135 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Denys Vlasenkoc34c0332009-09-29 12:25:30 +02007136 /* note: ash and hush share this string */
7137 printf("\n\n%s %s\n"
7138 IF_HUSH_HELP("Enter 'help' for a list of built-in commands.\n")
7139 "\n",
7140 bb_banner,
7141 "hush - the humble shell"
7142 );
Mike Frysingerb2705e12009-03-23 08:44:02 +00007143 }
7144
Denis Vlasenkof9375282009-04-05 19:13:39 +00007145 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00007146
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007147 final_return:
Denis Vlasenko38f63192007-01-22 09:03:07 +00007148#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko87a86552008-07-29 19:43:10 +00007149 if (G.cwd != bb_msg_unknown)
7150 free((char*)G.cwd);
7151 cur_var = G.top_var->next;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007152 while (cur_var) {
7153 struct variable *tmp = cur_var;
7154 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00007155 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007156 cur_var = cur_var->next;
7157 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00007158 }
Eric Andersen25f27032001-04-26 23:22:31 +00007159#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00007160 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00007161}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00007162
7163
7164#if ENABLE_LASH
7165int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
7166int lash_main(int argc, char **argv)
7167{
Denys Vlasenko07934912009-08-20 03:40:04 +02007168 bb_error_msg("lash is deprecated, please use hush instead");
Denis Vlasenko96702ca2007-11-23 23:28:55 +00007169 return hush_main(argc, argv);
7170}
7171#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007172
Denys Vlasenko1cc4b132009-08-21 00:05:51 +02007173#if ENABLE_MSH
7174int msh_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
7175int msh_main(int argc, char **argv)
7176{
7177 //bb_error_msg("msh is deprecated, please use hush instead");
7178 return hush_main(argc, argv);
7179}
7180#endif
7181
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007182
7183/*
7184 * Built-ins
7185 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007186static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007187{
7188 return 0;
7189}
7190
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02007191static int run_applet_main(char **argv, int (*applet_main_func)(int argc, char **argv))
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007192{
7193 int argc = 0;
7194 while (*argv) {
7195 argc++;
7196 argv++;
7197 }
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02007198 return applet_main_func(argc, argv - argc);
Mike Frysingerccb19592009-10-15 03:31:15 -04007199}
7200
7201static int FAST_FUNC builtin_test(char **argv)
7202{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02007203 return run_applet_main(argv, test_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007204}
7205
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007206static int FAST_FUNC builtin_echo(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007207{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02007208 return run_applet_main(argv, echo_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007209}
7210
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04007211#if ENABLE_PRINTF
7212static int FAST_FUNC builtin_printf(char **argv)
7213{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02007214 return run_applet_main(argv, printf_main);
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04007215}
7216#endif
7217
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007218static int FAST_FUNC builtin_eval(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007219{
7220 int rcode = EXIT_SUCCESS;
7221
Denis Vlasenkob0a64782009-04-06 11:33:07 +00007222 if (*++argv) {
7223 char *str = expand_strvec_to_string(argv);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007224 /* bash:
7225 * eval "echo Hi; done" ("done" is syntax error):
7226 * "echo Hi" will not execute too.
7227 */
7228 parse_and_run_string(str);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007229 free(str);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00007230 rcode = G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007231 }
7232 return rcode;
7233}
7234
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007235static int FAST_FUNC builtin_cd(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007236{
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007237 const char *newdir = argv[1];
7238 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007239 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00007240 * bash says "bash: cd: HOME not set" and does nothing
7241 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007242 */
Denys Vlasenko90a99042009-09-06 02:36:23 +02007243 const char *home = get_local_var_value("HOME");
7244 newdir = home ? home : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00007245 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007246 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007247 /* Mimic bash message exactly */
7248 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007249 return EXIT_FAILURE;
7250 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02007251 /* Read current dir (get_cwd(1) is inside) and set PWD.
7252 * Note: do not enforce exporting. If PWD was unset or unexported,
7253 * set it again, but do not export. bash does the same.
7254 */
7255 set_pwd_var(/*exp:*/ 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007256 return EXIT_SUCCESS;
7257}
7258
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007259static int FAST_FUNC builtin_exec(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007260{
Denis Vlasenkob0a64782009-04-06 11:33:07 +00007261 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007262 return EXIT_SUCCESS; /* bash does this */
Denys Vlasenkof37eb392009-10-18 11:46:35 +02007263
Denys Vlasenkof37eb392009-10-18 11:46:35 +02007264 /* Careful: we can end up here after [v]fork. Do not restore
7265 * tty pgrp then, only top-level shell process does that */
7266 if (G_saved_tty_pgrp && getpid() == G.root_pid)
7267 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
7268
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02007269 /* TODO: if exec fails, bash does NOT exit! We do.
7270 * We'll need to undo sigprocmask (it's inside execvp_or_die)
7271 * and tcsetpgrp, and this is inherently racy.
7272 */
7273 execvp_or_die(argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007274}
7275
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007276static int FAST_FUNC builtin_exit(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007277{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00007278 debug_printf_exec("%s()\n", __func__);
Denis Vlasenko40e84372009-04-18 11:23:38 +00007279
7280 /* interactive bash:
7281 * # trap "echo EEE" EXIT
7282 * # exit
7283 * exit
7284 * There are stopped jobs.
7285 * (if there are _stopped_ jobs, running ones don't count)
7286 * # exit
7287 * exit
7288 # EEE (then bash exits)
7289 *
7290 * we can use G.exiting = -1 as indicator "last cmd was exit"
7291 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00007292
7293 /* note: EXIT trap is run by hush_exit */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00007294 if (*++argv == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00007295 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007296 /* mimic bash: exit 123abc == exit 255 + error msg */
7297 xfunc_error_retval = 255;
7298 /* bash: exit -2 == exit 254, no error msg */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00007299 hush_exit(xatoi(*argv) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007300}
7301
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007302static void print_escaped(const char *s)
7303{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007304 if (*s == '\'')
7305 goto squote;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007306 do {
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007307 const char *p = strchrnul(s, '\'');
7308 /* print 'xxxx', possibly just '' */
7309 printf("'%.*s'", (int)(p - s), s);
7310 if (*p == '\0')
7311 break;
7312 s = p;
7313 squote:
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007314 /* s points to '; print "'''...'''" */
7315 putchar('"');
7316 do putchar('\''); while (*++s == '\'');
7317 putchar('"');
7318 } while (*s);
7319}
7320
Denys Vlasenko295fef82009-06-03 12:47:26 +02007321#if !ENABLE_HUSH_LOCAL
7322#define helper_export_local(argv, exp, lvl) \
7323 helper_export_local(argv, exp)
7324#endif
7325static void helper_export_local(char **argv, int exp, int lvl)
7326{
7327 do {
7328 char *name = *argv;
7329
7330 /* So far we do not check that name is valid (TODO?) */
7331
7332 if (strchr(name, '=') == NULL) {
7333 struct variable *var;
7334
7335 var = get_local_var(name);
7336 if (exp == -1) { /* unexporting? */
7337 /* export -n NAME (without =VALUE) */
7338 if (var) {
7339 var->flg_export = 0;
7340 debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
7341 unsetenv(name);
7342 } /* else: export -n NOT_EXISTING_VAR: no-op */
7343 continue;
7344 }
7345 if (exp == 1) { /* exporting? */
7346 /* export NAME (without =VALUE) */
7347 if (var) {
7348 var->flg_export = 1;
7349 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
7350 putenv(var->varstr);
7351 continue;
7352 }
7353 }
7354 /* Exporting non-existing variable.
7355 * bash does not put it in environment,
7356 * but remembers that it is exported,
7357 * and does put it in env when it is set later.
7358 * We just set it to "" and export. */
7359 /* Or, it's "local NAME" (without =VALUE).
7360 * bash sets the value to "". */
7361 name = xasprintf("%s=", name);
7362 } else {
7363 /* (Un)exporting/making local NAME=VALUE */
7364 name = xstrdup(name);
7365 }
7366 set_local_var(name, /*exp:*/ exp, /*lvl:*/ lvl, /*ro:*/ 0);
7367 } while (*++argv);
7368}
7369
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007370static int FAST_FUNC builtin_export(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007371{
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00007372 unsigned opt_unexport;
7373
Denys Vlasenkodf5131c2009-06-07 16:04:17 +02007374#if ENABLE_HUSH_EXPORT_N
7375 /* "!": do not abort on errors */
7376 opt_unexport = getopt32(argv, "!n");
7377 if (opt_unexport == (uint32_t)-1)
7378 return EXIT_FAILURE;
7379 argv += optind;
7380#else
7381 opt_unexport = 0;
7382 argv++;
7383#endif
7384
7385 if (argv[0] == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007386 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00007387 if (e) {
7388 while (*e) {
7389#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007390 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00007391#else
7392 /* ash emits: export VAR='VAL'
7393 * bash: declare -x VAR="VAL"
7394 * we follow ash example */
7395 const char *s = *e++;
7396 const char *p = strchr(s, '=');
7397
7398 if (!p) /* wtf? take next variable */
7399 continue;
7400 /* export var= */
7401 printf("export %.*s", (int)(p - s) + 1, s);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007402 print_escaped(p + 1);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00007403 putchar('\n');
7404#endif
7405 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01007406 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00007407 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007408 return EXIT_SUCCESS;
7409 }
7410
Denys Vlasenko295fef82009-06-03 12:47:26 +02007411 helper_export_local(argv, (opt_unexport ? -1 : 1), 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007412
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007413 return EXIT_SUCCESS;
7414}
7415
Denys Vlasenko295fef82009-06-03 12:47:26 +02007416#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007417static int FAST_FUNC builtin_local(char **argv)
Denys Vlasenko295fef82009-06-03 12:47:26 +02007418{
7419 if (G.func_nest_level == 0) {
7420 bb_error_msg("%s: not in a function", argv[0]);
7421 return EXIT_FAILURE; /* bash compat */
7422 }
7423 helper_export_local(argv, 0, G.func_nest_level);
7424 return EXIT_SUCCESS;
7425}
7426#endif
7427
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007428static int FAST_FUNC builtin_trap(char **argv)
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007429{
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007430 int sig;
7431 char *new_cmd;
7432
7433 if (!G.traps)
7434 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
7435
7436 argv++;
7437 if (!*argv) {
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00007438 int i;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007439 /* No args: print all trapped */
7440 for (i = 0; i < NSIG; ++i) {
7441 if (G.traps[i]) {
7442 printf("trap -- ");
7443 print_escaped(G.traps[i]);
Denys Vlasenkoe74aaf92009-09-27 02:05:45 +02007444 /* note: bash adds "SIG", but only if invoked
7445 * as "bash". If called as "sh", or if set -o posix,
7446 * then it prints short signal names.
7447 * We are printing short names: */
7448 printf(" %s\n", get_signame(i));
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007449 }
7450 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01007451 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007452 return EXIT_SUCCESS;
7453 }
7454
7455 new_cmd = NULL;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007456 /* If first arg is a number: reset all specified signals */
7457 sig = bb_strtou(*argv, NULL, 10);
7458 if (errno == 0) {
7459 int ret;
7460 process_sig_list:
7461 ret = EXIT_SUCCESS;
7462 while (*argv) {
7463 sig = get_signum(*argv++);
7464 if (sig < 0 || sig >= NSIG) {
7465 ret = EXIT_FAILURE;
7466 /* Mimic bash message exactly */
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00007467 bb_perror_msg("trap: %s: invalid signal specification", argv[-1]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007468 continue;
7469 }
7470
7471 free(G.traps[sig]);
7472 G.traps[sig] = xstrdup(new_cmd);
7473
7474 debug_printf("trap: setting SIG%s (%i) to '%s'",
7475 get_signame(sig), sig, G.traps[sig]);
7476
7477 /* There is no signal for 0 (EXIT) */
7478 if (sig == 0)
7479 continue;
7480
7481 if (new_cmd) {
7482 sigaddset(&G.blocked_set, sig);
7483 } else {
7484 /* There was a trap handler, we are removing it
7485 * (if sig has non-DFL handling,
7486 * we don't need to do anything) */
7487 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
7488 continue;
7489 sigdelset(&G.blocked_set, sig);
7490 }
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007491 }
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00007492 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007493 return ret;
7494 }
7495
7496 if (!argv[1]) { /* no second arg */
7497 bb_error_msg("trap: invalid arguments");
7498 return EXIT_FAILURE;
7499 }
7500
7501 /* First arg is "-": reset all specified to default */
7502 /* First arg is "--": skip it, the rest is "handler SIGs..." */
7503 /* Everything else: set arg as signal handler
7504 * (includes "" case, which ignores signal) */
7505 if (argv[0][0] == '-') {
7506 if (argv[0][1] == '\0') { /* "-" */
7507 /* new_cmd remains NULL: "reset these sigs" */
7508 goto reset_traps;
7509 }
7510 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
7511 argv++;
7512 }
7513 /* else: "-something", no special meaning */
7514 }
7515 new_cmd = *argv;
7516 reset_traps:
7517 argv++;
7518 goto process_sig_list;
7519}
7520
Mike Frysinger93cadc22009-05-27 17:06:25 -04007521/* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007522static int FAST_FUNC builtin_type(char **argv)
Mike Frysinger93cadc22009-05-27 17:06:25 -04007523{
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02007524 int ret = EXIT_SUCCESS;
Mike Frysinger93cadc22009-05-27 17:06:25 -04007525
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02007526 while (*++argv) {
Mike Frysinger93cadc22009-05-27 17:06:25 -04007527 const char *type;
Denys Vlasenko171932d2009-05-28 17:07:22 +02007528 char *path = NULL;
Mike Frysinger93cadc22009-05-27 17:06:25 -04007529
7530 if (0) {} /* make conditional compile easier below */
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02007531 /*else if (find_alias(*argv))
Mike Frysinger93cadc22009-05-27 17:06:25 -04007532 type = "an alias";*/
7533#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02007534 else if (find_function(*argv))
Mike Frysinger93cadc22009-05-27 17:06:25 -04007535 type = "a function";
7536#endif
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02007537 else if (find_builtin(*argv))
Mike Frysinger93cadc22009-05-27 17:06:25 -04007538 type = "a shell builtin";
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02007539 else if ((path = find_in_path(*argv)) != NULL)
7540 type = path;
Denys Vlasenko5d7cca22009-05-28 09:58:43 +02007541 else {
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02007542 bb_error_msg("type: %s: not found", *argv);
Mike Frysinger93cadc22009-05-27 17:06:25 -04007543 ret = EXIT_FAILURE;
Denys Vlasenko5d7cca22009-05-28 09:58:43 +02007544 continue;
7545 }
Mike Frysinger93cadc22009-05-27 17:06:25 -04007546
Denys Vlasenko5d7cca22009-05-28 09:58:43 +02007547 printf("%s is %s\n", *argv, type);
7548 free(path);
Mike Frysinger93cadc22009-05-27 17:06:25 -04007549 }
7550
7551 return ret;
7552}
7553
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007554#if ENABLE_HUSH_JOB
7555/* built-in 'fg' and 'bg' handler */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007556static int FAST_FUNC builtin_fg_bg(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007557{
7558 int i, jobnum;
7559 struct pipe *pi;
7560
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007561 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007562 return EXIT_FAILURE;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007563
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007564 /* If they gave us no args, assume they want the last backgrounded task */
7565 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00007566 for (pi = G.job_list; pi; pi = pi->next) {
7567 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007568 goto found;
7569 }
7570 }
7571 bb_error_msg("%s: no current job", argv[0]);
7572 return EXIT_FAILURE;
7573 }
7574 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
7575 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
7576 return EXIT_FAILURE;
7577 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00007578 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007579 if (pi->jobid == jobnum) {
7580 goto found;
7581 }
7582 }
7583 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
7584 return EXIT_FAILURE;
7585 found:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00007586 /* TODO: bash prints a string representation
7587 * of job being foregrounded (like "sleep 1 | cat") */
Mike Frysinger38478a62009-05-20 04:48:06 -04007588 if (argv[0][0] == 'f' && G_saved_tty_pgrp) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007589 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007590 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007591 }
7592
7593 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00007594 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
7595 for (i = 0; i < pi->num_cmds; i++) {
7596 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
7597 pi->cmds[i].is_stopped = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007598 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00007599 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007600
7601 i = kill(- pi->pgrp, SIGCONT);
7602 if (i < 0) {
7603 if (errno == ESRCH) {
7604 delete_finished_bg_job(pi);
7605 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007606 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00007607 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007608 }
7609
Denis Vlasenko34d4d892009-04-04 20:24:37 +00007610 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007611 remove_bg_job(pi);
7612 return checkjobs_and_fg_shell(pi);
7613 }
7614 return EXIT_SUCCESS;
7615}
7616#endif
7617
7618#if ENABLE_HUSH_HELP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007619static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007620{
7621 const struct built_in_command *x;
7622
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007623 printf(
Denis Vlasenko34d4d892009-04-04 20:24:37 +00007624 "Built-in commands:\n"
7625 "------------------\n");
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007626 for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) {
7627 if (x->descr)
7628 printf("%s\t%s\n", x->cmd, x->descr);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007629 }
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007630 bb_putchar('\n');
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007631 return EXIT_SUCCESS;
7632}
7633#endif
7634
7635#if ENABLE_HUSH_JOB
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007636static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007637{
7638 struct pipe *job;
7639 const char *status_string;
7640
Denis Vlasenko87a86552008-07-29 19:43:10 +00007641 for (job = G.job_list; job; job = job->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00007642 if (job->alive_cmds == job->stopped_cmds)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007643 status_string = "Stopped";
7644 else
7645 status_string = "Running";
7646
7647 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
7648 }
7649 return EXIT_SUCCESS;
7650}
7651#endif
7652
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00007653#if HUSH_DEBUG
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007654static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM)
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00007655{
7656 void *p;
7657 unsigned long l;
7658
Denys Vlasenkoc0836532009-10-19 13:13:06 +02007659# ifdef M_TRIM_THRESHOLD
Denys Vlasenko27726cb2009-09-12 14:48:33 +02007660 /* Optional. Reduces probability of false positives */
7661 malloc_trim(0);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02007662# endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00007663 /* Crude attempt to find where "free memory" starts,
7664 * sans fragmentation. */
7665 p = malloc(240);
7666 l = (unsigned long)p;
7667 free(p);
7668 p = malloc(3400);
7669 if (l < (unsigned long)p) l = (unsigned long)p;
7670 free(p);
7671
7672 if (!G.memleak_value)
7673 G.memleak_value = l;
Denys Vlasenko9038d6f2009-07-15 20:02:19 +02007674
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00007675 l -= G.memleak_value;
7676 if ((long)l < 0)
7677 l = 0;
7678 l /= 1024;
7679 if (l > 127)
7680 l = 127;
7681
7682 /* Exitcode is "how many kilobytes we leaked since 1st call" */
7683 return l;
7684}
7685#endif
7686
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007687static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007688{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007689 puts(get_cwd(0));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007690 return EXIT_SUCCESS;
7691}
7692
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007693static int FAST_FUNC builtin_read(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007694{
7695 char *string;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00007696 const char *name = "REPLY";
7697
7698 if (argv[1]) {
7699 name = argv[1];
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00007700 /* bash (3.2.33(1)) bug: "read 0abcd" will execute,
7701 * and _after_ that_ it will complain */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00007702 if (!is_well_formed_var_name(name, '\0')) {
7703 /* Mimic bash message */
7704 bb_error_msg("read: '%s': not a valid identifier", name);
7705 return 1;
7706 }
7707 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007708
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00007709//TODO: bash unbackslashes input, splits words and puts them in argv[i]
7710
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007711 string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
Denys Vlasenko295fef82009-06-03 12:47:26 +02007712 return set_local_var(string, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007713}
7714
Mike Frysingerad88d5a2009-03-28 13:44:51 +00007715/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
7716 * built-in 'set' handler
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00007717 * SUSv3 says:
Mike Frysingerad88d5a2009-03-28 13:44:51 +00007718 * set [-abCefhmnuvx] [-o option] [argument...]
7719 * set [+abCefhmnuvx] [+o option] [argument...]
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00007720 * set -- [argument...]
7721 * set -o
7722 * set +o
7723 * Implementations shall support the options in both their hyphen and
7724 * plus-sign forms. These options can also be specified as options to sh.
7725 * Examples:
7726 * Write out all variables and their values: set
7727 * Set $1, $2, and $3 and set "$#" to 3: set c a b
7728 * Turn on the -x and -v options: set -xv
7729 * Unset all positional parameters: set --
7730 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
7731 * Set the positional parameters to the expansion of x, even if x expands
7732 * with a leading '-' or '+': set -- $x
7733 *
Mike Frysingerad88d5a2009-03-28 13:44:51 +00007734 * So far, we only support "set -- [argument...]" and some of the short names.
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00007735 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007736static int FAST_FUNC builtin_set(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007737{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00007738 int n;
7739 char **pp, **g_argv;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00007740 char *arg = *++argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007741
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00007742 if (arg == NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00007743 struct variable *e;
Denis Vlasenko87a86552008-07-29 19:43:10 +00007744 for (e = G.top_var; e; e = e->next)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007745 puts(e->varstr);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00007746 return EXIT_SUCCESS;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00007747 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007748
Mike Frysingerad88d5a2009-03-28 13:44:51 +00007749 do {
7750 if (!strcmp(arg, "--")) {
7751 ++argv;
7752 goto set_argv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00007753 }
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00007754 if (arg[0] != '+' && arg[0] != '-')
7755 break;
7756 for (n = 1; arg[n]; ++n)
7757 if (set_mode(arg[0], arg[n]))
7758 goto error;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00007759 } while ((arg = *++argv) != NULL);
7760 /* Now argv[0] is 1st argument */
7761
Mike Frysingerad88d5a2009-03-28 13:44:51 +00007762 if (arg == NULL)
7763 return EXIT_SUCCESS;
7764 set_argv:
7765
Denis Vlasenko424f79b2009-03-22 14:23:34 +00007766 /* NB: G.global_argv[0] ($0) is never freed/changed */
7767 g_argv = G.global_argv;
7768 if (G.global_args_malloced) {
7769 pp = g_argv;
7770 while (*++pp)
7771 free(*pp);
7772 g_argv[1] = NULL;
7773 } else {
7774 G.global_args_malloced = 1;
7775 pp = xzalloc(sizeof(pp[0]) * 2);
7776 pp[0] = g_argv[0]; /* retain $0 */
7777 g_argv = pp;
7778 }
7779 /* This realloc's G.global_argv */
7780 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
7781
7782 n = 1;
7783 while (*++pp)
7784 n++;
7785 G.global_argc = n;
7786
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007787 return EXIT_SUCCESS;
Mike Frysingerad88d5a2009-03-28 13:44:51 +00007788
7789 /* Nothing known, so abort */
7790 error:
7791 bb_error_msg("set: %s: invalid option", arg);
7792 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007793}
7794
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007795static int FAST_FUNC builtin_shift(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007796{
7797 int n = 1;
7798 if (argv[1]) {
7799 n = atoi(argv[1]);
7800 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00007801 if (n >= 0 && n < G.global_argc) {
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00007802 if (G.global_args_malloced) {
7803 int m = 1;
7804 while (m <= n)
7805 free(G.global_argv[m++]);
7806 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00007807 G.global_argc -= n;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00007808 memmove(&G.global_argv[1], &G.global_argv[n+1],
7809 G.global_argc * sizeof(G.global_argv[0]));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007810 return EXIT_SUCCESS;
7811 }
7812 return EXIT_FAILURE;
7813}
7814
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007815static int FAST_FUNC builtin_source(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007816{
Mike Frysinger93cadc22009-05-27 17:06:25 -04007817 char *arg_path;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007818 FILE *input;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00007819 save_arg_t sv;
Mike Frysinger885b6f22009-04-18 21:04:25 +00007820#if ENABLE_HUSH_FUNCTIONS
7821 smallint sv_flg;
7822#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007823
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007824 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007825 return EXIT_FAILURE;
7826
Mike Frysinger93cadc22009-05-27 17:06:25 -04007827 if (strchr(*argv, '/') == NULL && (arg_path = find_in_path(*argv)) != NULL) {
7828 input = fopen_for_read(arg_path);
7829 free(arg_path);
7830 } else
7831 input = fopen_or_warn(*argv, "r");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007832 if (!input) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007833 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007834 return EXIT_FAILURE;
7835 }
7836 close_on_exec_on(fileno(input));
7837
Mike Frysinger885b6f22009-04-18 21:04:25 +00007838#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007839 sv_flg = G.flag_return_in_progress;
7840 /* "we are inside sourced file, ok to use return" */
7841 G.flag_return_in_progress = -1;
Mike Frysinger885b6f22009-04-18 21:04:25 +00007842#endif
Denis Vlasenko270b1c32009-04-17 18:54:50 +00007843 save_and_replace_G_args(&sv, argv);
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007844
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007845 parse_and_run_file(input);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007846 fclose(input);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00007847
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007848 restore_G_args(&sv, argv);
Mike Frysinger885b6f22009-04-18 21:04:25 +00007849#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007850 G.flag_return_in_progress = sv_flg;
Mike Frysinger885b6f22009-04-18 21:04:25 +00007851#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007852
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00007853 return G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007854}
7855
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007856static int FAST_FUNC builtin_umask(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007857{
Denis Vlasenkoeb858492009-04-18 02:06:54 +00007858 int rc;
7859 mode_t mask;
7860
7861 mask = umask(0);
7862 if (argv[1]) {
7863 mode_t old_mask = mask;
7864
7865 mask ^= 0777;
7866 rc = bb_parse_mode(argv[1], &mask);
7867 mask ^= 0777;
7868 if (rc == 0) {
7869 mask = old_mask;
7870 /* bash messages:
7871 * bash: umask: 'q': invalid symbolic mode operator
7872 * bash: umask: 999: octal number out of range
7873 */
7874 bb_error_msg("%s: '%s' invalid mode", argv[0], argv[1]);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007875 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007876 } else {
Denis Vlasenkoeb858492009-04-18 02:06:54 +00007877 rc = 1;
7878 /* Mimic bash */
7879 printf("%04o\n", (unsigned) mask);
7880 /* fall through and restore mask which we set to 0 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007881 }
Denis Vlasenkoeb858492009-04-18 02:06:54 +00007882 umask(mask);
7883
7884 return !rc; /* rc != 0 - success */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007885}
7886
Mike Frysingerd690f682009-03-30 06:50:54 +00007887/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007888static int FAST_FUNC builtin_unset(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007889{
Mike Frysingerd690f682009-03-30 06:50:54 +00007890 int ret;
Denis Vlasenko28e67962009-04-26 23:22:40 +00007891 unsigned opts;
Mike Frysingerd690f682009-03-30 06:50:54 +00007892
Denis Vlasenko28e67962009-04-26 23:22:40 +00007893 /* "!": do not abort on errors */
7894 /* "+": stop at 1st non-option */
7895 opts = getopt32(argv, "!+vf");
7896 if (opts == (unsigned)-1)
7897 return EXIT_FAILURE;
7898 if (opts == 3) {
7899 bb_error_msg("unset: -v and -f are exclusive");
7900 return EXIT_FAILURE;
Mike Frysingerd690f682009-03-30 06:50:54 +00007901 }
Denis Vlasenko28e67962009-04-26 23:22:40 +00007902 argv += optind;
Mike Frysingerd690f682009-03-30 06:50:54 +00007903
7904 ret = EXIT_SUCCESS;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007905 while (*argv) {
Denis Vlasenko28e67962009-04-26 23:22:40 +00007906 if (!(opts & 2)) { /* not -f */
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007907 if (unset_local_var(*argv)) {
7908 /* unset <nonexistent_var> doesn't fail.
7909 * Error is when one tries to unset RO var.
7910 * Message was printed by unset_local_var. */
Mike Frysingerd690f682009-03-30 06:50:54 +00007911 ret = EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007912 }
Mike Frysingerd690f682009-03-30 06:50:54 +00007913 }
Denis Vlasenko40e84372009-04-18 11:23:38 +00007914#if ENABLE_HUSH_FUNCTIONS
7915 else {
7916 unset_func(*argv);
7917 }
7918#endif
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007919 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00007920 }
7921 return ret;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007922}
Denis Vlasenkobcb25532008-07-28 23:04:34 +00007923
Mike Frysinger56bdea12009-03-28 20:01:58 +00007924/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007925static int FAST_FUNC builtin_wait(char **argv)
Mike Frysinger56bdea12009-03-28 20:01:58 +00007926{
7927 int ret = EXIT_SUCCESS;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00007928 int status, sig;
Mike Frysinger56bdea12009-03-28 20:01:58 +00007929
Denis Vlasenko7566bae2009-03-31 17:24:49 +00007930 if (*++argv == NULL) {
7931 /* Don't care about wait results */
7932 /* Note 1: must wait until there are no more children */
7933 /* Note 2: must be interruptible */
7934 /* Examples:
7935 * $ sleep 3 & sleep 6 & wait
7936 * [1] 30934 sleep 3
7937 * [2] 30935 sleep 6
7938 * [1] Done sleep 3
7939 * [2] Done sleep 6
7940 * $ sleep 3 & sleep 6 & wait
7941 * [1] 30936 sleep 3
7942 * [2] 30937 sleep 6
7943 * [1] Done sleep 3
7944 * ^C <-- after ~4 sec from keyboard
7945 * $
7946 */
7947 sigaddset(&G.blocked_set, SIGCHLD);
7948 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7949 while (1) {
7950 checkjobs(NULL);
7951 if (errno == ECHILD)
7952 break;
7953 /* Wait for SIGCHLD or any other signal of interest */
7954 /* sigtimedwait with infinite timeout: */
7955 sig = sigwaitinfo(&G.blocked_set, NULL);
7956 if (sig > 0) {
7957 sig = check_and_run_traps(sig);
7958 if (sig && sig != SIGCHLD) { /* see note 2 */
7959 ret = 128 + sig;
7960 break;
7961 }
7962 }
7963 }
7964 sigdelset(&G.blocked_set, SIGCHLD);
7965 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7966 return ret;
7967 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00007968
Denis Vlasenko7566bae2009-03-31 17:24:49 +00007969 /* This is probably buggy wrt interruptible-ness */
Denis Vlasenkod5762932009-03-31 11:22:57 +00007970 while (*argv) {
7971 pid_t pid = bb_strtou(*argv, NULL, 10);
Mike Frysinger40b8dc42009-03-29 00:50:30 +00007972 if (errno) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00007973 /* mimic bash message */
7974 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00007975 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00007976 }
7977 if (waitpid(pid, &status, 0) == pid) {
Mike Frysinger56bdea12009-03-28 20:01:58 +00007978 if (WIFSIGNALED(status))
7979 ret = 128 + WTERMSIG(status);
7980 else if (WIFEXITED(status))
7981 ret = WEXITSTATUS(status);
Denis Vlasenkod5762932009-03-31 11:22:57 +00007982 else /* wtf? */
Mike Frysinger56bdea12009-03-28 20:01:58 +00007983 ret = EXIT_FAILURE;
7984 } else {
Denis Vlasenkod5762932009-03-31 11:22:57 +00007985 bb_perror_msg("wait %s", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00007986 ret = 127;
7987 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00007988 argv++;
Mike Frysinger56bdea12009-03-28 20:01:58 +00007989 }
7990
7991 return ret;
7992}
7993
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007994#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
7995static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
7996{
7997 if (argv[1]) {
7998 def = bb_strtou(argv[1], NULL, 10);
7999 if (errno || def < def_min || argv[2]) {
8000 bb_error_msg("%s: bad arguments", argv[0]);
8001 def = UINT_MAX;
8002 }
8003 }
8004 return def;
8005}
8006#endif
8007
Denis Vlasenkodadfb492008-07-29 10:16:05 +00008008#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008009static int FAST_FUNC builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00008010{
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008011 unsigned depth;
Denis Vlasenko87a86552008-07-29 19:43:10 +00008012 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00008013 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00008014 return EXIT_SUCCESS; /* bash compat */
8015 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008016 G.flag_break_continue++; /* BC_BREAK = 1 */
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008017
8018 G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
8019 if (depth == UINT_MAX)
8020 G.flag_break_continue = BC_BREAK;
8021 if (G.depth_of_loop < depth)
Denis Vlasenko87a86552008-07-29 19:43:10 +00008022 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008023
Denis Vlasenkobcb25532008-07-28 23:04:34 +00008024 return EXIT_SUCCESS;
8025}
8026
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008027static int FAST_FUNC builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00008028{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00008029 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
8030 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00008031}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00008032#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008033
8034#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008035static int FAST_FUNC builtin_return(char **argv)
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008036{
8037 int rc;
8038
8039 if (G.flag_return_in_progress != -1) {
8040 bb_error_msg("%s: not in a function or sourced script", argv[0]);
8041 return EXIT_FAILURE; /* bash compat */
8042 }
8043
8044 G.flag_return_in_progress = 1;
8045
8046 /* bash:
8047 * out of range: wraps around at 256, does not error out
8048 * non-numeric param:
8049 * f() { false; return qwe; }; f; echo $?
8050 * bash: return: qwe: numeric argument required <== we do this
8051 * 255 <== we also do this
8052 */
8053 rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
8054 return rc;
8055}
8056#endif