blob: 9208ec4974eb4e68bd8276b8797897445304509d [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 *
Denys Vlasenko349ef962010-05-21 15:46:24 +020040 * TODOs:
41 * grep for "TODO" and fix (some of them are easy)
42 * special variables (done: PWD, PPID, RANDOM)
43 * tilde expansion
Eric Andersen78a7c992001-05-15 16:30:25 +000044 * aliases
Denys Vlasenko349ef962010-05-21 15:46:24 +020045 * follow IFS rules more precisely, including update semantics
46 * builtins mandated by standards we don't support:
47 * [un]alias, command, fc, getopts, newgrp, readonly, times
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +020048 * make complex ${var%...} constructs support optional
49 * make here documents optional
Mike Frysinger25a6ca02009-03-28 13:59:26 +000050 *
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020051 * Bash compat TODO:
52 * redirection of stdout+stderr: &> and >&
Denys Vlasenko2e48d532010-05-22 17:30:39 +020053 * subst operator: ${var/[/]expr/expr}
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020054 * brace expansion: one/{two,three,four}
55 * reserved words: function select
56 * advanced test: [[ ]]
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020057 * process substitution: <(list) and >(list)
58 * =~: regex operator
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020059 * let EXPR [EXPR...]
Denys Vlasenko349ef962010-05-21 15:46:24 +020060 * Each EXPR is an arithmetic expression (ARITHMETIC EVALUATION)
61 * If the last arg evaluates to 0, let returns 1; 0 otherwise.
62 * NB: let `echo 'a=a + 1'` - error (IOW: multi-word expansion is used)
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020063 * ((EXPR))
Denys Vlasenko349ef962010-05-21 15:46:24 +020064 * The EXPR is evaluated according to ARITHMETIC EVALUATION.
65 * This is exactly equivalent to let "EXPR".
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020066 * $[EXPR]: synonym for $((EXPR))
Denys Vlasenko08218012009-06-03 14:43:56 +020067 * export builtin should be special, its arguments are assignments
68 * and therefore expansion of them should be "one-word" expansion:
69 * $ export i=`echo 'a b'` # export has one arg: "i=a b"
70 * compare with:
71 * $ ls i=`echo 'a b'` # ls has two args: "i=a" and "b"
72 * ls: cannot access i=a: No such file or directory
73 * ls: cannot access b: No such file or directory
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020074 * Note1: same applies to local builtin.
Denys Vlasenko08218012009-06-03 14:43:56 +020075 * Note2: bash 3.2.33(1) does this only if export word itself
76 * is not quoted:
77 * $ export i=`echo 'aaa bbb'`; echo "$i"
78 * aaa bbb
79 * $ "export" i=`echo 'aaa bbb'`; echo "$i"
80 * aaa
Eric Andersen25f27032001-04-26 23:22:31 +000081 *
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000082 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersen25f27032001-04-26 23:22:31 +000083 */
Denys Vlasenkocb6ff252009-05-04 00:14:30 +020084#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
Denys Vlasenko27726cb2009-09-12 14:48:33 +020085#include <malloc.h> /* for malloc_trim */
Denis Vlasenkobe709c22008-07-28 00:01:16 +000086#include <glob.h>
87/* #include <dmalloc.h> */
88#if ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +000089# include <fnmatch.h>
Denis Vlasenkobe709c22008-07-28 00:01:16 +000090#endif
Denys Vlasenko03dad222010-01-12 23:29:57 +010091
92#include "shell_common.h"
Mike Frysinger98c52642009-04-02 10:02:37 +000093#include "math.h"
Mike Frysingera4f331d2009-04-07 06:03:22 +000094#include "match.h"
Denys Vlasenkocbe0b7f2009-10-09 22:00:58 +020095#if ENABLE_HUSH_RANDOM_SUPPORT
Denys Vlasenko20b3d142009-10-09 20:59:39 +020096# include "random.h"
Denys Vlasenko76ace252009-10-12 15:25:01 +020097#else
98# define CLEAR_RANDOM_T(rnd) ((void)0)
Denys Vlasenko20b3d142009-10-09 20:59:39 +020099#endif
Denis Vlasenko50f3aa42009-04-07 10:52:40 +0000100#ifndef PIPE_BUF
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200101# define PIPE_BUF 4096 /* amount of buffering in a pipe */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +0000102#endif
Mike Frysinger98c52642009-04-02 10:02:37 +0000103
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200104//applet:IF_HUSH(APPLET(hush, _BB_DIR_BIN, _BB_SUID_DROP))
105//applet:IF_MSH(APPLET(msh, _BB_DIR_BIN, _BB_SUID_DROP))
106//applet:IF_LASH(APPLET(lash, _BB_DIR_BIN, _BB_SUID_DROP))
107//applet:IF_FEATURE_SH_IS_HUSH(APPLET_ODDNAME(sh, hush, _BB_DIR_BIN, _BB_SUID_DROP, sh))
108//applet:IF_FEATURE_BASH_IS_HUSH(APPLET_ODDNAME(bash, hush, _BB_DIR_BIN, _BB_SUID_DROP, bash))
109
110//kbuild:lib-$(CONFIG_HUSH) += hush.o match.o shell_common.o
111//kbuild:lib-$(CONFIG_HUSH_RANDOM_SUPPORT) += random.o
112
113//config:config HUSH
114//config: bool "hush"
115//config: default y
116//config: help
Denys Vlasenko771f1992010-07-16 14:31:34 +0200117//config: hush is a small shell (25k). It handles the normal flow control
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200118//config: constructs such as if/then/elif/else/fi, for/in/do/done, while loops,
119//config: case/esac. Redirections, here documents, $((arithmetic))
120//config: and functions are supported.
121//config:
122//config: It will compile and work on no-mmu systems.
123//config:
124//config: It does not handle select, aliases, brace expansion,
125//config: tilde expansion, &>file and >&file redirection of stdout+stderr.
126//config:
127//config:config HUSH_BASH_COMPAT
128//config: bool "bash-compatible extensions"
129//config: default y
130//config: depends on HUSH
131//config: help
132//config: Enable bash-compatible extensions.
133//config:
134//config:config HUSH_HELP
135//config: bool "help builtin"
136//config: default y
137//config: depends on HUSH
138//config: help
139//config: Enable help builtin in hush. Code size + ~1 kbyte.
140//config:
141//config:config HUSH_INTERACTIVE
142//config: bool "Interactive mode"
143//config: default y
144//config: depends on HUSH
145//config: help
146//config: Enable interactive mode (prompt and command editing).
147//config: Without this, hush simply reads and executes commands
148//config: from stdin just like a shell script from a file.
149//config: No prompt, no PS1/PS2 magic shell variables.
150//config:
151//config:config HUSH_JOB
152//config: bool "Job control"
153//config: default y
154//config: depends on HUSH_INTERACTIVE
155//config: help
156//config: Enable job control: Ctrl-Z backgrounds, Ctrl-C interrupts current
157//config: command (not entire shell), fg/bg builtins work. Without this option,
158//config: "cmd &" still works by simply spawning a process and immediately
159//config: prompting for next command (or executing next command in a script),
160//config: but no separate process group is formed.
161//config:
162//config:config HUSH_TICK
163//config: bool "Process substitution"
164//config: default y
165//config: depends on HUSH
166//config: help
167//config: Enable process substitution `command` and $(command) in hush.
168//config:
169//config:config HUSH_IF
170//config: bool "Support if/then/elif/else/fi"
171//config: default y
172//config: depends on HUSH
173//config: help
174//config: Enable if/then/elif/else/fi in hush.
175//config:
176//config:config HUSH_LOOPS
177//config: bool "Support for, while and until loops"
178//config: default y
179//config: depends on HUSH
180//config: help
181//config: Enable for, while and until loops in hush.
182//config:
183//config:config HUSH_CASE
184//config: bool "Support case ... esac statement"
185//config: default y
186//config: depends on HUSH
187//config: help
188//config: Enable case ... esac statement in hush. +400 bytes.
189//config:
190//config:config HUSH_FUNCTIONS
191//config: bool "Support funcname() { commands; } syntax"
192//config: default y
193//config: depends on HUSH
194//config: help
195//config: Enable support for shell functions in hush. +800 bytes.
196//config:
197//config:config HUSH_LOCAL
198//config: bool "Support local builtin"
199//config: default y
200//config: depends on HUSH_FUNCTIONS
201//config: help
202//config: Enable support for local variables in functions.
203//config:
204//config:config HUSH_RANDOM_SUPPORT
205//config: bool "Pseudorandom generator and $RANDOM variable"
206//config: default y
207//config: depends on HUSH
208//config: help
209//config: Enable pseudorandom generator and dynamic variable "$RANDOM".
210//config: Each read of "$RANDOM" will generate a new pseudorandom value.
211//config:
212//config:config HUSH_EXPORT_N
213//config: bool "Support 'export -n' option"
214//config: default y
215//config: depends on HUSH
216//config: help
217//config: export -n unexports variables. It is a bash extension.
218//config:
219//config:config HUSH_MODE_X
220//config: bool "Support 'hush -x' option and 'set -x' command"
221//config: default y
222//config: depends on HUSH
223//config: help
Denys Vlasenko29082232010-07-16 13:52:32 +0200224//config: This instructs hush to print commands before execution.
225//config: Adds ~300 bytes.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200226//config:
Denys Vlasenko6adf2aa2010-07-16 19:26:38 +0200227//config:config LASH
228//config: bool "lash (deprecated: aliased to hush)"
229//config: default n
230//config: select HUSH
231//config: help
232//config: lash is deprecated and will be removed, please migrate to hush.
233//config:
234//config:config MSH
235//config: bool "msh (deprecated: aliased to hush)"
236//config: default n
237//config: select HUSH
238//config: help
239//config: msh is deprecated and will be removed, please migrate to hush.
240//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200241
242//usage:#define hush_trivial_usage NOUSAGE_STR
243//usage:#define hush_full_usage ""
244//usage:#define lash_trivial_usage NOUSAGE_STR
245//usage:#define lash_full_usage ""
246//usage:#define msh_trivial_usage NOUSAGE_STR
247//usage:#define msh_full_usage ""
248
Denis Vlasenko1943aec2009-04-09 14:15:57 +0000249
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200250/* Build knobs */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000251#define LEAK_HUNTING 0
252#define BUILD_AS_NOMMU 0
253/* Enable/disable sanity checks. Ok to enable in production,
254 * only adds a bit of bloat. Set to >1 to get non-production level verbosity.
255 * Keeping 1 for now even in released versions.
256 */
257#define HUSH_DEBUG 1
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200258/* Slightly bigger (+200 bytes), but faster hush.
259 * So far it only enables a trick with counting SIGCHLDs and forks,
260 * which allows us to do fewer waitpid's.
261 * (we can detect a case where neither forks were done nor SIGCHLDs happened
262 * and therefore waitpid will return the same result as last time)
263 */
264#define ENABLE_HUSH_FAST 0
Denys Vlasenko9297dbc2010-07-05 21:37:12 +0200265/* TODO: implement simplified code for users which do not need ${var%...} ops
266 * So far ${var%...} ops are always enabled:
267 */
268#define ENABLE_HUSH_DOLLAR_OPS 1
Denis Vlasenko1943aec2009-04-09 14:15:57 +0000269
270
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000271#if BUILD_AS_NOMMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000272# undef BB_MMU
273# undef USE_FOR_NOMMU
274# undef USE_FOR_MMU
275# define BB_MMU 0
276# define USE_FOR_NOMMU(...) __VA_ARGS__
277# define USE_FOR_MMU(...)
278#endif
279
Denys Vlasenko1fcbff22010-06-26 02:40:08 +0200280#include "NUM_APPLETS.h"
Denys Vlasenko14974842010-03-23 01:08:26 +0100281#if NUM_APPLETS == 1
Denis Vlasenko61befda2008-11-25 01:36:03 +0000282/* STANDALONE does not make sense, and won't compile */
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000283# undef CONFIG_FEATURE_SH_STANDALONE
284# undef ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000285# undef IF_FEATURE_SH_STANDALONE
Denys Vlasenko14974842010-03-23 01:08:26 +0100286# undef IF_NOT_FEATURE_SH_STANDALONE
287# define ENABLE_FEATURE_SH_STANDALONE 0
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000288# define IF_FEATURE_SH_STANDALONE(...)
289# define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__
Denis Vlasenko61befda2008-11-25 01:36:03 +0000290#endif
291
Denis Vlasenko05743d72008-02-10 12:10:08 +0000292#if !ENABLE_HUSH_INTERACTIVE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000293# undef ENABLE_FEATURE_EDITING
294# define ENABLE_FEATURE_EDITING 0
295# undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
296# define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000297#endif
298
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000299/* Do we support ANY keywords? */
300#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000301# define HAS_KEYWORDS 1
302# define IF_HAS_KEYWORDS(...) __VA_ARGS__
303# define IF_HAS_NO_KEYWORDS(...)
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000304#else
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000305# define HAS_KEYWORDS 0
306# define IF_HAS_KEYWORDS(...)
307# define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000308#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000309
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000310/* If you comment out one of these below, it will be #defined later
311 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000312#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000313/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000314#define debug_printf_parse(...) do {} while (0)
315#define debug_print_tree(a, b) do {} while (0)
316#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000317#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000318#define debug_printf_jobs(...) do {} while (0)
319#define debug_printf_expand(...) do {} while (0)
Denys Vlasenko1e811b12010-05-22 03:12:29 +0200320#define debug_printf_varexp(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000321#define debug_printf_glob(...) do {} while (0)
322#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000323#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000324#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000325
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000326#define ERR_PTR ((void*)(long)1)
327
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200328#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000329
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200330#define _SPECIAL_VARS_STR "_*@$!?#"
331#define SPECIAL_VARS_STR ("_*@$!?#" + 1)
332#define NUMERIC_SPECVARS_STR ("_*@$!?#" + 3)
333
334#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000335
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200336struct variable;
337
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000338static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
339
340/* This supports saving pointers malloced in vfork child,
Denis Vlasenkoc376db32009-04-15 21:49:48 +0000341 * to be freed in the parent.
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000342 */
343#if !BB_MMU
344typedef struct nommu_save_t {
345 char **new_env;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200346 struct variable *old_vars;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000347 char **argv;
Denis Vlasenko27014ed2009-04-15 21:48:23 +0000348 char **argv_from_re_execing;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000349} nommu_save_t;
350#endif
351
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000352typedef enum reserved_style {
Eric Andersen25f27032001-04-26 23:22:31 +0000353 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000354#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000355 RES_IF ,
356 RES_THEN ,
357 RES_ELIF ,
358 RES_ELSE ,
359 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000360#endif
361#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000362 RES_FOR ,
363 RES_WHILE ,
364 RES_UNTIL ,
365 RES_DO ,
366 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000367#endif
368#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000369 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000370#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000371#if ENABLE_HUSH_CASE
372 RES_CASE ,
Denys Vlasenkoe9bda902009-05-23 16:50:07 +0200373 /* three pseudo-keywords support contrived "case" syntax: */
374 RES_CASE_IN, /* "case ... IN", turns into RES_MATCH when IN is observed */
375 RES_MATCH , /* "word)" */
376 RES_CASE_BODY, /* "this command is inside CASE" */
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000377 RES_ESAC ,
378#endif
379 RES_XXXX ,
380 RES_SNTX
Eric Andersen25f27032001-04-26 23:22:31 +0000381} reserved_style;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000382
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000383typedef struct o_string {
384 char *data;
385 int length; /* position where data is appended */
386 int maxlen;
387 /* Protect newly added chars against globbing
388 * (by prepending \ to *, ?, [, \) */
389 smallint o_escape;
390 smallint o_glob;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000391 /* At least some part of the string was inside '' or "",
392 * possibly empty one: word"", wo''rd etc. */
393 smallint o_quoted;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000394 smallint has_empty_slot;
395 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
396} o_string;
397enum {
398 MAYBE_ASSIGNMENT = 0,
399 DEFINITELY_ASSIGNMENT = 1,
400 NOT_ASSIGNMENT = 2,
401 WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */
402};
403/* Used for initialization: o_string foo = NULL_O_STRING; */
404#define NULL_O_STRING { NULL }
405
406/* I can almost use ordinary FILE*. Is open_memstream() universally
407 * available? Where is it documented? */
408typedef struct in_str {
409 const char *p;
410 /* eof_flag=1: last char in ->p is really an EOF */
411 char eof_flag; /* meaningless if ->p == NULL */
412 char peek_buf[2];
413#if ENABLE_HUSH_INTERACTIVE
414 smallint promptme;
415 smallint promptmode; /* 0: PS1, 1: PS2 */
416#endif
417 FILE *file;
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200418 int (*get) (struct in_str *) FAST_FUNC;
419 int (*peek) (struct in_str *) FAST_FUNC;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000420} in_str;
421#define i_getch(input) ((input)->get(input))
422#define i_peek(input) ((input)->peek(input))
423
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200424/* The descrip member of this structure is only used to make
425 * debugging output pretty */
426static const struct {
427 int mode;
428 signed char default_fd;
429 char descrip[3];
430} redir_table[] = {
431 { O_RDONLY, 0, "<" },
432 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
433 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
434 { O_CREAT|O_RDWR, 1, "<>" },
435 { O_RDONLY, 0, "<<" },
436/* Should not be needed. Bogus default_fd helps in debugging */
437/* { O_RDONLY, 77, "<<" }, */
438};
439
Eric Andersen25f27032001-04-26 23:22:31 +0000440struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000441 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000442 char *rd_filename; /* filename */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000443 int rd_fd; /* fd to redirect */
444 /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
445 int rd_dup;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000446 smallint rd_type; /* (enum redir_type) */
447 /* note: for heredocs, rd_filename contains heredoc delimiter,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000448 * and subsequently heredoc itself; and rd_dup is a bitmask:
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200449 * bit 0: do we need to trim leading tabs?
450 * bit 1: is heredoc quoted (<<'delim' syntax) ?
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000451 */
Eric Andersen25f27032001-04-26 23:22:31 +0000452};
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000453typedef enum redir_type {
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200454 REDIRECT_INPUT = 0,
455 REDIRECT_OVERWRITE = 1,
456 REDIRECT_APPEND = 2,
457 REDIRECT_IO = 3,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000458 REDIRECT_HEREDOC = 4,
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200459 REDIRECT_HEREDOC2 = 5, /* REDIRECT_HEREDOC after heredoc is loaded */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000460
461 REDIRFD_CLOSE = -3,
462 REDIRFD_SYNTAX_ERR = -2,
Denis Vlasenko835fcfd2009-04-10 13:51:56 +0000463 REDIRFD_TO_FILE = -1,
464 /* otherwise, rd_fd is redirected to rd_dup */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000465
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000466 HEREDOC_SKIPTABS = 1,
467 HEREDOC_QUOTED = 2,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000468} redir_type;
469
Eric Andersen25f27032001-04-26 23:22:31 +0000470
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000471struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000472 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000473 int assignment_cnt; /* how many argv[i] are assignments? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000474 smallint is_stopped; /* is the command currently running? */
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200475 smallint cmd_type; /* CMD_xxx */
476#define CMD_NORMAL 0
477#define CMD_SUBSHELL 1
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200478
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200479/* used for "[[ EXPR ]]" */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200480#if ENABLE_HUSH_BASH_COMPAT
481# define CMD_SINGLEWORD_NOGLOB 2
Denis Vlasenkoed055212009-04-11 10:37:10 +0000482#endif
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200483
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200484/* used for "export noglob=* glob* a=`echo a b`" */
Denys Vlasenko82a6fb32009-06-14 19:42:12 +0200485//#define CMD_SINGLEWORD_NOGLOB_COND 3
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200486// It is hard to implement correctly, it adds significant amounts of tricky code,
487// and all this is only useful for really obscure export statements
488// almost nobody would use anyway. #ifdef CMD_SINGLEWORD_NOGLOB_COND
489// guards the code which implements it, but I have doubts it works
490// in all cases (especially with mixed globbed/non-globbed arguments)
491
492#if ENABLE_HUSH_FUNCTIONS
493# define CMD_FUNCDEF 3
494#endif
495
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200496 /* if non-NULL, this "command" is { list }, ( list ), or a compound statement */
497 struct pipe *group;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000498#if !BB_MMU
499 char *group_as_string;
500#endif
Denis Vlasenkoed055212009-04-11 10:37:10 +0000501#if ENABLE_HUSH_FUNCTIONS
502 struct function *child_func;
503/* This field is used to prevent a bug here:
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200504 * while...do f1() {a;}; f1; f1() {b;}; f1; done
Denis Vlasenkoed055212009-04-11 10:37:10 +0000505 * When we execute "f1() {a;}" cmd, we create new function and clear
506 * cmd->group, cmd->group_as_string, cmd->argv[0].
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200507 * When we execute "f1() {b;}", we notice that f1 exists,
508 * and that its "parent cmd" struct is still "alive",
Denis Vlasenkoed055212009-04-11 10:37:10 +0000509 * we put those fields back into cmd->xxx
510 * (struct function has ->parent_cmd ptr to facilitate that).
511 * When we loop back, we can execute "f1() {a;}" again and set f1 correctly.
512 * Without this trick, loop would execute a;b;b;b;...
513 * instead of correct sequence a;b;a;b;...
514 * When command is freed, it severs the link
515 * (sets ->child_func->parent_cmd to NULL).
516 */
517#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000518 char **argv; /* command name and arguments */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000519/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
520 * and on execution these are substituted with their values.
521 * Substitution can make _several_ words out of one argv[n]!
522 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000523 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000524 */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000525 struct redir_struct *redirects; /* I/O redirections */
526};
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000527/* Is there anything in this command at all? */
528#define IS_NULL_CMD(cmd) \
529 (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects)
530
Eric Andersen25f27032001-04-26 23:22:31 +0000531
532struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000533 struct pipe *next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000534 int num_cmds; /* total number of commands in pipe */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000535 int alive_cmds; /* number of commands running (not exited) */
536 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000537#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000538 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000539 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000540 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000541#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000542 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000543 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000544 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
545 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000546};
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000547typedef enum pipe_style {
548 PIPE_SEQ = 1,
549 PIPE_AND = 2,
550 PIPE_OR = 3,
551 PIPE_BG = 4,
552} pipe_style;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000553/* Is there anything in this pipe at all? */
554#define IS_NULL_PIPE(pi) \
555 ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE))
Eric Andersen25f27032001-04-26 23:22:31 +0000556
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000557/* This holds pointers to the various results of parsing */
558struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000559 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000560 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000561 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000562 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000563 /* last command in pipe (being constructed right now) */
564 struct command *command;
565 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000566 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000567#if !BB_MMU
568 o_string as_string;
569#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000570#if HAS_KEYWORDS
571 smallint ctx_res_w;
572 smallint ctx_inverted; /* "! cmd | cmd" */
573#if ENABLE_HUSH_CASE
574 smallint ctx_dsemicolon; /* ";;" seen */
575#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000576 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
577 int old_flag;
578 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000579 * example: "if pipe1; pipe2; then pipe3; fi"
580 * when we see "if" or "then", we malloc and copy current context,
581 * and make ->stack point to it. then we parse pipeN.
582 * when closing "then" / fi" / whatever is found,
583 * we move list_head into ->stack->command->group,
584 * copy ->stack into current context, and delete ->stack.
585 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000586 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000587 struct parse_context *stack;
588#endif
589};
590
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000591/* On program start, environ points to initial environment.
592 * putenv adds new pointers into it, unsetenv removes them.
593 * Neither of these (de)allocates the strings.
594 * setenv allocates new strings in malloc space and does putenv,
595 * and thus setenv is unusable (leaky) for shell's purposes */
596#define setenv(...) setenv_is_leaky_dont_use()
597struct variable {
598 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000599 char *varstr; /* points to "name=" portion */
Denys Vlasenko295fef82009-06-03 12:47:26 +0200600#if ENABLE_HUSH_LOCAL
601 unsigned func_nest_level;
602#endif
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000603 int max_len; /* if > 0, name is part of initial env; else name is malloced */
604 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000605 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000606};
607
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000608enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000609 BC_BREAK = 1,
610 BC_CONTINUE = 2,
611};
612
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000613#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000614struct function {
615 struct function *next;
616 char *name;
Denis Vlasenkoed055212009-04-11 10:37:10 +0000617 struct command *parent_cmd;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000618 struct pipe *body;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200619# if !BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000620 char *body_as_string;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200621# endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000622};
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000623#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000624
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000625
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000626/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000627/* Sorted roughly by size (smaller offsets == smaller code) */
628struct globals {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000629 /* interactive_fd != 0 means we are an interactive shell.
630 * If we are, then saved_tty_pgrp can also be != 0, meaning
631 * that controlling tty is available. With saved_tty_pgrp == 0,
632 * job control still works, but terminal signals
633 * (^C, ^Z, ^Y, ^\) won't work at all, and background
634 * process groups can only be created with "cmd &".
635 * With saved_tty_pgrp != 0, hush will use tcsetpgrp()
636 * to give tty to the foreground process group,
637 * and will take it back when the group is stopped (^Z)
638 * or killed (^C).
639 */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000640#if ENABLE_HUSH_INTERACTIVE
641 /* 'interactive_fd' is a fd# open to ctty, if we have one
642 * _AND_ if we decided to act interactively */
643 int interactive_fd;
644 const char *PS1;
645 const char *PS2;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000646# define G_interactive_fd (G.interactive_fd)
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000647#else
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000648# define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000649#endif
650#if ENABLE_FEATURE_EDITING
651 line_input_t *line_input_state;
652#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000653 pid_t root_pid;
Denys Vlasenkodea47882009-10-09 15:40:49 +0200654 pid_t root_ppid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000655 pid_t last_bg_pid;
Denys Vlasenko20b3d142009-10-09 20:59:39 +0200656#if ENABLE_HUSH_RANDOM_SUPPORT
657 random_t random_gen;
658#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000659#if ENABLE_HUSH_JOB
660 int run_list_level;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000661 int last_jobid;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000662 pid_t saved_tty_pgrp;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000663 struct pipe *job_list;
Mike Frysinger38478a62009-05-20 04:48:06 -0400664# define G_saved_tty_pgrp (G.saved_tty_pgrp)
665#else
666# define G_saved_tty_pgrp 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000667#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000668 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000669#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000670 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000671#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000672#if ENABLE_HUSH_FUNCTIONS
673 /* 0: outside of a function (or sourced file)
674 * -1: inside of a function, ok to use return builtin
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000675 * 1: return is invoked, skip all till end of func
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000676 */
677 smallint flag_return_in_progress;
678#endif
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200679 smallint n_mode;
680#if ENABLE_HUSH_MODE_X
Denys Vlasenko3f5fae02010-07-16 12:35:35 +0200681 smallint x_mode;
Denys Vlasenko29082232010-07-16 13:52:32 +0200682# define G_x_mode (G.x_mode)
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200683#else
684# define G_x_mode 0
685#endif
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000686 smallint exiting; /* used to prevent EXIT trap recursion */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000687 /* These four support $?, $#, and $1 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000688 smalluint last_exitcode;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000689 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000690 smalluint global_args_malloced;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +0100691 smalluint inherited_set_is_saved;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000692 /* how many non-NULL argv's we have. NB: $# + 1 */
693 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000694 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000695#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000696 char *argv0_for_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000697#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000698#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000699 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000700 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000701#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000702 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000703 const char *cwd;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000704 struct variable *top_var; /* = &G.shell_ver (set in main()) */
Denis Vlasenko0a83fc32007-05-25 11:12:32 +0000705 struct variable shell_ver;
Denys Vlasenko29082232010-07-16 13:52:32 +0200706 char **expanded_assignments;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000707#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000708 struct function *top_func;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200709# if ENABLE_HUSH_LOCAL
710 struct variable **shadowed_vars_pp;
711 unsigned func_nest_level;
712# endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000713#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000714 /* Signal and trap handling */
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200715#if ENABLE_HUSH_FAST
716 unsigned count_SIGCHLD;
717 unsigned handled_SIGCHLD;
Denys Vlasenkoe2df5f42009-05-26 14:34:10 +0200718 smallint we_have_children;
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200719#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000720 /* which signals have non-DFL handler (even with no traps set)? */
721 unsigned non_DFL_mask;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000722 char **traps; /* char *traps[NSIG] */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000723 sigset_t blocked_set;
724 sigset_t inherited_set;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000725#if HUSH_DEBUG
726 unsigned long memleak_value;
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000727 int debug_indent;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000728#endif
Denys Vlasenkoaaa22d22009-10-19 16:34:39 +0200729 char user_input_buf[ENABLE_FEATURE_EDITING ? CONFIG_FEATURE_EDITING_MAX_LEN : 2];
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000730};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000731#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000732/* Not #defining name to G.name - this quickly gets unwieldy
733 * (too many defines). Also, I actually prefer to see when a variable
734 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000735#define INIT_G() do { \
736 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
737} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000738
739
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000740/* Function prototypes for builtins */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200741static int builtin_cd(char **argv) FAST_FUNC;
742static int builtin_echo(char **argv) FAST_FUNC;
743static int builtin_eval(char **argv) FAST_FUNC;
744static int builtin_exec(char **argv) FAST_FUNC;
745static int builtin_exit(char **argv) FAST_FUNC;
746static int builtin_export(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000747#if ENABLE_HUSH_JOB
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200748static int builtin_fg_bg(char **argv) FAST_FUNC;
749static int builtin_jobs(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000750#endif
751#if ENABLE_HUSH_HELP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200752static int builtin_help(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000753#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +0200754#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200755static int builtin_local(char **argv) FAST_FUNC;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200756#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000757#if HUSH_DEBUG
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200758static int builtin_memleak(char **argv) FAST_FUNC;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000759#endif
Mike Frysinger4ebc76c2009-10-15 03:32:39 -0400760#if ENABLE_PRINTF
761static int builtin_printf(char **argv) FAST_FUNC;
762#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200763static int builtin_pwd(char **argv) FAST_FUNC;
764static int builtin_read(char **argv) FAST_FUNC;
765static int builtin_set(char **argv) FAST_FUNC;
766static int builtin_shift(char **argv) FAST_FUNC;
767static int builtin_source(char **argv) FAST_FUNC;
768static int builtin_test(char **argv) FAST_FUNC;
769static int builtin_trap(char **argv) FAST_FUNC;
770static int builtin_type(char **argv) FAST_FUNC;
771static int builtin_true(char **argv) FAST_FUNC;
772static int builtin_umask(char **argv) FAST_FUNC;
773static int builtin_unset(char **argv) FAST_FUNC;
774static int builtin_wait(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000775#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200776static int builtin_break(char **argv) FAST_FUNC;
777static int builtin_continue(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000778#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000779#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200780static int builtin_return(char **argv) FAST_FUNC;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000781#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000782
783/* Table of built-in functions. They can be forked or not, depending on
784 * context: within pipes, they fork. As simple commands, they do not.
785 * When used in non-forking context, they can change global variables
786 * in the parent shell process. If forked, of course they cannot.
787 * For example, 'unset foo | whatever' will parse and run, but foo will
788 * still be set at the end. */
789struct built_in_command {
Denys Vlasenko17323a62010-01-28 01:57:05 +0100790 const char *b_cmd;
791 int (*b_function)(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000792#if ENABLE_HUSH_HELP
Denys Vlasenko17323a62010-01-28 01:57:05 +0100793 const char *b_descr;
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200794# define BLTIN(cmd, func, help) { cmd, func, help }
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000795#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200796# define BLTIN(cmd, func, help) { cmd, func }
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000797#endif
798};
799
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200800static const struct built_in_command bltins1[] = {
801 BLTIN("." , builtin_source , "Run commands in a file"),
802 BLTIN(":" , builtin_true , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000803#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200804 BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000805#endif
806#if ENABLE_HUSH_LOOPS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200807 BLTIN("break" , builtin_break , "Exit from a loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000808#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200809 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000810#if ENABLE_HUSH_LOOPS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200811 BLTIN("continue" , builtin_continue, "Start new loop iteration"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000812#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200813 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
814 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
815 BLTIN("exit" , builtin_exit , "Exit"),
816 BLTIN("export" , builtin_export , "Set environment variables"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000817#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200818 BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000819#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000820#if ENABLE_HUSH_HELP
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200821 BLTIN("help" , builtin_help , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000822#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000823#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200824 BLTIN("jobs" , builtin_jobs , "List jobs"),
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000825#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +0200826#if ENABLE_HUSH_LOCAL
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200827 BLTIN("local" , builtin_local , "Set local variables"),
Denys Vlasenko295fef82009-06-03 12:47:26 +0200828#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000829#if HUSH_DEBUG
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200830 BLTIN("memleak" , builtin_memleak , NULL),
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000831#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200832 BLTIN("read" , builtin_read , "Input into variable"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000833#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200834 BLTIN("return" , builtin_return , "Return from a function"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000835#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200836 BLTIN("set" , builtin_set , "Set/unset positional parameters"),
837 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
Denys Vlasenko82731b42010-05-17 17:49:52 +0200838#if ENABLE_HUSH_BASH_COMPAT
839 BLTIN("source" , builtin_source , "Run commands in a file"),
840#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200841 BLTIN("trap" , builtin_trap , "Trap signals"),
Denys Vlasenko651a2692010-03-23 16:25:17 +0100842 BLTIN("type" , builtin_type , "Show command type"),
Denys Vlasenkof3c742f2010-03-06 20:12:00 +0100843 BLTIN("ulimit" , shell_builtin_ulimit , "Control resource limits"),
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200844 BLTIN("umask" , builtin_umask , "Set file creation mask"),
845 BLTIN("unset" , builtin_unset , "Unset variables"),
846 BLTIN("wait" , builtin_wait , "Wait for process"),
847};
848/* For now, echo and test are unconditionally enabled.
849 * Maybe make it configurable? */
850static const struct built_in_command bltins2[] = {
851 BLTIN("[" , builtin_test , NULL),
852 BLTIN("echo" , builtin_echo , NULL),
Mike Frysinger4ebc76c2009-10-15 03:32:39 -0400853#if ENABLE_PRINTF
854 BLTIN("printf" , builtin_printf , NULL),
855#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200856 BLTIN("pwd" , builtin_pwd , NULL),
857 BLTIN("test" , builtin_test , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000858};
859
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000860
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000861/* Debug printouts.
862 */
863#if HUSH_DEBUG
864/* prevent disasters with G.debug_indent < 0 */
865# define indent() fprintf(stderr, "%*s", (G.debug_indent * 2) & 0xff, "")
866# define debug_enter() (G.debug_indent++)
867# define debug_leave() (G.debug_indent--)
868#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200869# define indent() ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000870# define debug_enter() ((void)0)
871# define debug_leave() ((void)0)
872#endif
873
874#ifndef debug_printf
875# define debug_printf(...) (indent(), fprintf(stderr, __VA_ARGS__))
876#endif
877
878#ifndef debug_printf_parse
879# define debug_printf_parse(...) (indent(), fprintf(stderr, __VA_ARGS__))
880#endif
881
882#ifndef debug_printf_exec
883#define debug_printf_exec(...) (indent(), fprintf(stderr, __VA_ARGS__))
884#endif
885
886#ifndef debug_printf_env
887# define debug_printf_env(...) (indent(), fprintf(stderr, __VA_ARGS__))
888#endif
889
890#ifndef debug_printf_jobs
891# define debug_printf_jobs(...) (indent(), fprintf(stderr, __VA_ARGS__))
892# define DEBUG_JOBS 1
893#else
894# define DEBUG_JOBS 0
895#endif
896
897#ifndef debug_printf_expand
898# define debug_printf_expand(...) (indent(), fprintf(stderr, __VA_ARGS__))
899# define DEBUG_EXPAND 1
900#else
901# define DEBUG_EXPAND 0
902#endif
903
Denys Vlasenko1e811b12010-05-22 03:12:29 +0200904#ifndef debug_printf_varexp
905# define debug_printf_varexp(...) (indent(), fprintf(stderr, __VA_ARGS__))
906#endif
907
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000908#ifndef debug_printf_glob
909# define debug_printf_glob(...) (indent(), fprintf(stderr, __VA_ARGS__))
910# define DEBUG_GLOB 1
911#else
912# define DEBUG_GLOB 0
913#endif
914
915#ifndef debug_printf_list
916# define debug_printf_list(...) (indent(), fprintf(stderr, __VA_ARGS__))
917#endif
918
919#ifndef debug_printf_subst
920# define debug_printf_subst(...) (indent(), fprintf(stderr, __VA_ARGS__))
921#endif
922
923#ifndef debug_printf_clean
924# define debug_printf_clean(...) (indent(), fprintf(stderr, __VA_ARGS__))
925# define DEBUG_CLEAN 1
926#else
927# define DEBUG_CLEAN 0
928#endif
929
930#if DEBUG_EXPAND
931static void debug_print_strings(const char *prefix, char **vv)
932{
933 indent();
934 fprintf(stderr, "%s:\n", prefix);
935 while (*vv)
936 fprintf(stderr, " '%s'\n", *vv++);
937}
938#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200939# define debug_print_strings(prefix, vv) ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000940#endif
941
942
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000943/* Leak hunting. Use hush_leaktool.sh for post-processing.
944 */
945#if LEAK_HUNTING
946static void *xxmalloc(int lineno, size_t size)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000947{
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000948 void *ptr = xmalloc((size + 0xff) & ~0xff);
949 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
950 return ptr;
951}
952static void *xxrealloc(int lineno, void *ptr, size_t size)
953{
954 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
955 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
956 return ptr;
957}
958static char *xxstrdup(int lineno, const char *str)
959{
960 char *ptr = xstrdup(str);
961 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
962 return ptr;
963}
964static void xxfree(void *ptr)
965{
966 fdprintf(2, "free %p\n", ptr);
967 free(ptr);
968}
Denys Vlasenko8391c482010-05-22 17:50:43 +0200969# define xmalloc(s) xxmalloc(__LINE__, s)
970# define xrealloc(p, s) xxrealloc(__LINE__, p, s)
971# define xstrdup(s) xxstrdup(__LINE__, s)
972# define free(p) xxfree(p)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000973#endif
974
975
976/* Syntax and runtime errors. They always abort scripts.
977 * In interactive use they usually discard unparsed and/or unexecuted commands
978 * and return to the prompt.
979 * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
980 */
981#if HUSH_DEBUG < 2
Denys Vlasenko606291b2009-09-23 23:15:43 +0200982# define die_if_script(lineno, ...) die_if_script(__VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000983# define syntax_error(lineno, msg) syntax_error(msg)
984# define syntax_error_at(lineno, msg) syntax_error_at(msg)
985# define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch)
986# define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s)
987# define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000988#endif
989
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000990static void die_if_script(unsigned lineno, const char *fmt, ...)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000991{
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000992 va_list p;
993
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000994#if HUSH_DEBUG >= 2
995 bb_error_msg("hush.c:%u", lineno);
996#endif
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000997 va_start(p, fmt);
998 bb_verror_msg(fmt, p, NULL);
999 va_end(p);
1000 if (!G_interactive_fd)
1001 xfunc_die();
Mike Frysinger6379bb42009-03-28 18:55:03 +00001002}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001003
1004static void syntax_error(unsigned lineno, const char *msg)
1005{
1006 if (msg)
1007 die_if_script(lineno, "syntax error: %s", msg);
1008 else
1009 die_if_script(lineno, "syntax error", NULL);
1010}
1011
1012static void syntax_error_at(unsigned lineno, const char *msg)
1013{
1014 die_if_script(lineno, "syntax error at '%s'", msg);
1015}
1016
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001017static void syntax_error_unterm_str(unsigned lineno, const char *s)
1018{
1019 die_if_script(lineno, "syntax error: unterminated %s", s);
1020}
1021
Denis Vlasenko0b677d82009-04-10 13:49:10 +00001022/* It so happens that all such cases are totally fatal
1023 * even if shell is interactive: EOF while looking for closing
1024 * delimiter. There is nowhere to read stuff from after that,
1025 * it's EOF! The only choice is to terminate.
1026 */
1027static void syntax_error_unterm_ch(unsigned lineno, char ch) NORETURN;
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001028static void syntax_error_unterm_ch(unsigned lineno, char ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001029{
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001030 char msg[2] = { ch, '\0' };
1031 syntax_error_unterm_str(lineno, msg);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00001032 xfunc_die();
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001033}
1034
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02001035static void syntax_error_unexpected_ch(unsigned lineno, int ch)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001036{
1037 char msg[2];
1038 msg[0] = ch;
1039 msg[1] = '\0';
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02001040 die_if_script(lineno, "syntax error: unexpected %s", ch == EOF ? "EOF" : msg);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001041}
1042
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001043#if HUSH_DEBUG < 2
1044# undef die_if_script
1045# undef syntax_error
1046# undef syntax_error_at
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001047# undef syntax_error_unterm_ch
1048# undef syntax_error_unterm_str
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001049# undef syntax_error_unexpected_ch
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001050#else
Denys Vlasenko606291b2009-09-23 23:15:43 +02001051# define die_if_script(...) die_if_script(__LINE__, __VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001052# define syntax_error(msg) syntax_error(__LINE__, msg)
1053# define syntax_error_at(msg) syntax_error_at(__LINE__, msg)
1054# define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch)
1055# define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s)
1056# define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001057#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001058
Denis Vlasenko552433b2009-04-04 19:29:21 +00001059
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001060#if ENABLE_HUSH_INTERACTIVE
1061static void cmdedit_update_prompt(void);
1062#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001063# define cmdedit_update_prompt() ((void)0)
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001064#endif
1065
1066
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001067/* Utility functions
1068 */
Denis Vlasenko55789c62008-06-18 16:30:42 +00001069/* Replace each \x with x in place, return ptr past NUL. */
1070static char *unbackslash(char *src)
1071{
Denys Vlasenko71885402009-09-24 01:44:13 +02001072 char *dst = src = strchrnul(src, '\\');
Denis Vlasenko55789c62008-06-18 16:30:42 +00001073 while (1) {
1074 if (*src == '\\')
1075 src++;
1076 if ((*dst++ = *src++) == '\0')
1077 break;
1078 }
1079 return dst;
1080}
1081
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001082static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001083{
1084 int i;
1085 unsigned count1;
1086 unsigned count2;
1087 char **v;
1088
1089 v = strings;
1090 count1 = 0;
1091 if (v) {
1092 while (*v) {
1093 count1++;
1094 v++;
1095 }
1096 }
1097 count2 = 0;
1098 v = add;
1099 while (*v) {
1100 count2++;
1101 v++;
1102 }
1103 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
1104 v[count1 + count2] = NULL;
1105 i = count2;
1106 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001107 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001108 return v;
1109}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001110#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001111static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
1112{
1113 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
1114 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
1115 return ptr;
1116}
1117#define add_strings_to_strings(strings, add, need_to_dup) \
1118 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
1119#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001120
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001121/* Note: takes ownership of "add" ptr (it is not strdup'ed) */
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001122static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001123{
1124 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001125 v[0] = add;
1126 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001127 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001128}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001129#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001130static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
1131{
1132 char **ptr = add_string_to_strings(strings, add);
1133 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
1134 return ptr;
1135}
1136#define add_string_to_strings(strings, add) \
1137 xx_add_string_to_strings(__LINE__, strings, add)
1138#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001139
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001140static void free_strings(char **strings)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001141{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001142 char **v;
1143
1144 if (!strings)
1145 return;
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001146 v = strings;
1147 while (*v) {
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001148 free(*v);
1149 v++;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001150 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001151 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001152}
1153
Denis Vlasenko76d50412008-06-10 16:19:39 +00001154
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001155/* Helpers for setting new $n and restoring them back
1156 */
1157typedef struct save_arg_t {
1158 char *sv_argv0;
1159 char **sv_g_argv;
1160 int sv_g_argc;
1161 smallint sv_g_malloced;
1162} save_arg_t;
1163
1164static void save_and_replace_G_args(save_arg_t *sv, char **argv)
1165{
1166 int n;
1167
1168 sv->sv_argv0 = argv[0];
1169 sv->sv_g_argv = G.global_argv;
1170 sv->sv_g_argc = G.global_argc;
1171 sv->sv_g_malloced = G.global_args_malloced;
1172
1173 argv[0] = G.global_argv[0]; /* retain $0 */
1174 G.global_argv = argv;
1175 G.global_args_malloced = 0;
1176
1177 n = 1;
1178 while (*++argv)
1179 n++;
1180 G.global_argc = n;
1181}
1182
1183static void restore_G_args(save_arg_t *sv, char **argv)
1184{
1185 char **pp;
1186
1187 if (G.global_args_malloced) {
1188 /* someone ran "set -- arg1 arg2 ...", undo */
1189 pp = G.global_argv;
1190 while (*++pp) /* note: does not free $0 */
1191 free(*pp);
1192 free(G.global_argv);
1193 }
1194 argv[0] = sv->sv_argv0;
1195 G.global_argv = sv->sv_g_argv;
1196 G.global_argc = sv->sv_g_argc;
1197 G.global_args_malloced = sv->sv_g_malloced;
1198}
1199
1200
Denis Vlasenkod5762932009-03-31 11:22:57 +00001201/* Basic theory of signal handling in shell
1202 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001203 * This does not describe what hush does, rather, it is current understanding
1204 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001205 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
1206 *
1207 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
1208 * is finished or backgrounded. It is the same in interactive and
1209 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001210 * a user trap handler is installed or a shell special one is in effect.
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001211 * ^C or ^Z from keyboard seems to execute "at once" because it usually
Denis Vlasenkod5762932009-03-31 11:22:57 +00001212 * backgrounds (i.e. stops) or kills all members of currently running
1213 * pipe.
1214 *
1215 * Wait builtin in interruptible by signals for which user trap is set
1216 * or by SIGINT in interactive shell.
1217 *
1218 * Trap handlers will execute even within trap handlers. (right?)
1219 *
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001220 * User trap handlers are forgotten when subshell ("(cmd)") is entered,
1221 * except for handlers set to '' (empty string).
Denis Vlasenkod5762932009-03-31 11:22:57 +00001222 *
1223 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001224 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001225 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001226 * Commands which are run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001227 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001228 *
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001229 * Ordinary commands have signals set to SIG_IGN/DFL as inherited
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001230 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001231 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001232 * Signals which differ from SIG_DFL action
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001233 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +00001234 *
1235 * SIGQUIT: ignore
1236 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001237 * SIGHUP (interactive):
1238 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +00001239 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00001240 * Note that ^Z is handled not by trapping SIGTSTP, but by seeing
1241 * that all pipe members are stopped. Try this in bash:
1242 * while :; do :; done - ^Z does not background it
1243 * (while :; do :; done) - ^Z backgrounds it
Denis Vlasenkod5762932009-03-31 11:22:57 +00001244 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001245 * of the command line, show prompt. NB: ^C does not send SIGINT
1246 * to interactive shell while shell is waiting for a pipe,
1247 * since shell is bg'ed (is not in foreground process group).
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001248 * Example 1: this waits 5 sec, but does not execute ls:
1249 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
1250 * Example 2: this does not wait and does not execute ls:
1251 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
1252 * Example 3: this does not wait 5 sec, but executes ls:
1253 * "sleep 5; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +00001254 *
1255 * (What happens to signals which are IGN on shell start?)
1256 * (What happens with signal mask on shell start?)
1257 *
1258 * Implementation in hush
1259 * ======================
1260 * We use in-kernel pending signal mask to determine which signals were sent.
1261 * We block all signals which we don't want to take action immediately,
1262 * i.e. we block all signals which need to have special handling as described
1263 * above, and all signals which have traps set.
1264 * After each pipe execution, we extract any pending signals via sigtimedwait()
1265 * and act on them.
1266 *
1267 * unsigned non_DFL_mask: a mask of such "special" signals
1268 * sigset_t blocked_set: current blocked signal set
1269 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001270 * "trap - SIGxxx":
Denis Vlasenko552433b2009-04-04 19:29:21 +00001271 * clear bit in blocked_set unless it is also in non_DFL_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001272 * "trap 'cmd' SIGxxx":
1273 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +00001274 * after [v]fork, if we plan to be a shell:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001275 * unblock signals with special interactive handling
1276 * (child shell is not interactive),
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001277 * unset all traps except '' (note: regardless of child shell's type - {}, (), etc)
Denis Vlasenkod5762932009-03-31 11:22:57 +00001278 * after [v]fork, if we plan to exec:
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001279 * POSIX says fork clears pending signal mask in child - no need to clear it.
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001280 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001281 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001282 * Note: as a result, we do not use signal handlers much. The only uses
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001283 * are to count SIGCHLDs
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001284 * and to restore tty pgrp on signal-induced exit.
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001285 *
Denys Vlasenko67f71862009-09-25 14:21:06 +02001286 * Note 2 (compat):
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001287 * Standard says "When a subshell is entered, traps that are not being ignored
1288 * are set to the default actions". bash interprets it so that traps which
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001289 * are set to '' (ignore) are NOT reset to defaults. We do the same.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001290 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001291enum {
1292 SPECIAL_INTERACTIVE_SIGS = 0
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001293 | (1 << SIGTERM)
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001294 | (1 << SIGINT)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001295 | (1 << SIGHUP)
1296 ,
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001297 SPECIAL_JOB_SIGS = 0
Mike Frysinger38478a62009-05-20 04:48:06 -04001298#if ENABLE_HUSH_JOB
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001299 | (1 << SIGTTIN)
1300 | (1 << SIGTTOU)
1301 | (1 << SIGTSTP)
1302#endif
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001303};
Denis Vlasenkod5762932009-03-31 11:22:57 +00001304
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001305#if ENABLE_HUSH_FAST
1306static void SIGCHLD_handler(int sig UNUSED_PARAM)
1307{
1308 G.count_SIGCHLD++;
1309//bb_error_msg("[%d] SIGCHLD_handler: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
1310}
1311#endif
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001312
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001313#if ENABLE_HUSH_JOB
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001314
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001315/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
Denys Vlasenko8391c482010-05-22 17:50:43 +02001316# define disable_restore_tty_pgrp_on_exit() (die_sleep = 0)
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001317/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denys Vlasenko8391c482010-05-22 17:50:43 +02001318# define enable_restore_tty_pgrp_on_exit() (die_sleep = -1)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001319
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001320/* Restores tty foreground process group, and exits.
1321 * May be called as signal handler for fatal signal
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001322 * (will resend signal to itself, producing correct exit state)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001323 * or called directly with -EXITCODE.
1324 * We also call it if xfunc is exiting. */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001325static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001326static void sigexit(int sig)
1327{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001328 /* Disable all signals: job control, SIGPIPE, etc. */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001329 sigprocmask_allsigs(SIG_BLOCK);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001330
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001331 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001332 * tty pgrp then, only top-level shell process does that */
Mike Frysinger38478a62009-05-20 04:48:06 -04001333 if (G_saved_tty_pgrp && getpid() == G.root_pid)
1334 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001335
1336 /* Not a signal, just exit */
1337 if (sig <= 0)
1338 _exit(- sig);
1339
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001340 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001341}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001342#else
1343
Denys Vlasenko8391c482010-05-22 17:50:43 +02001344# define disable_restore_tty_pgrp_on_exit() ((void)0)
1345# define enable_restore_tty_pgrp_on_exit() ((void)0)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001346
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001347#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001348
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001349/* Restores tty foreground process group, and exits. */
1350static void hush_exit(int exitcode) NORETURN;
1351static void hush_exit(int exitcode)
1352{
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001353 if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) {
1354 /* Prevent recursion:
1355 * trap "echo Hi; exit" EXIT; exit
1356 */
1357 char *argv[] = { NULL, G.traps[0], NULL };
1358 G.traps[0] = NULL;
1359 G.exiting = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001360 builtin_eval(argv);
1361 free(argv[1]);
1362 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001363
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001364#if ENABLE_HUSH_JOB
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001365 fflush_all();
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001366 sigexit(- (exitcode & 0xff));
1367#else
1368 exit(exitcode);
1369#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001370}
1371
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001372static int check_and_run_traps(int sig)
1373{
Dan Fandrichfdd7b562010-06-18 22:37:42 -07001374 static const struct timespec zero_timespec;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001375 smalluint save_rcode;
1376 int last_sig = 0;
1377
1378 if (sig)
1379 goto jump_in;
1380 while (1) {
1381 sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec);
1382 if (sig <= 0)
1383 break;
1384 jump_in:
1385 last_sig = sig;
1386 if (G.traps && G.traps[sig]) {
1387 if (G.traps[sig][0]) {
1388 /* We have user-defined handler */
1389 char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL };
1390 save_rcode = G.last_exitcode;
1391 builtin_eval(argv);
1392 free(argv[1]);
1393 G.last_exitcode = save_rcode;
1394 } /* else: "" trap, ignoring signal */
1395 continue;
1396 }
1397 /* not a trap: special action */
1398 switch (sig) {
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001399#if ENABLE_HUSH_FAST
1400 case SIGCHLD:
1401 G.count_SIGCHLD++;
1402//bb_error_msg("[%d] check_and_run_traps: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
1403 break;
1404#endif
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001405 case SIGINT:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001406 /* Builtin was ^C'ed, make it look prettier: */
1407 bb_putchar('\n');
1408 G.flag_SIGINT = 1;
1409 break;
1410#if ENABLE_HUSH_JOB
1411 case SIGHUP: {
1412 struct pipe *job;
1413 /* bash is observed to signal whole process groups,
1414 * not individual processes */
1415 for (job = G.job_list; job; job = job->next) {
1416 if (job->pgrp <= 0)
1417 continue;
1418 debug_printf_exec("HUPing pgrp %d\n", job->pgrp);
1419 if (kill(- job->pgrp, SIGHUP) == 0)
1420 kill(- job->pgrp, SIGCONT);
1421 }
1422 sigexit(SIGHUP);
1423 }
1424#endif
1425 default: /* ignored: */
1426 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
1427 break;
1428 }
1429 }
1430 return last_sig;
1431}
1432
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001433
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001434static const char *get_cwd(int force)
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001435{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001436 if (force || G.cwd == NULL) {
1437 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1438 * we must not try to free(bb_msg_unknown) */
1439 if (G.cwd == bb_msg_unknown)
1440 G.cwd = NULL;
1441 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1442 if (!G.cwd)
1443 G.cwd = bb_msg_unknown;
1444 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00001445 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001446}
1447
Denis Vlasenko83506862007-11-23 13:11:42 +00001448
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001449/*
1450 * Shell and environment variable support
1451 */
1452static struct variable **get_ptr_to_local_var(const char *name)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001453{
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001454 struct variable **pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001455 struct variable *cur;
1456 int len;
1457
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001458 len = strlen(name);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001459 pp = &G.top_var;
1460 while ((cur = *pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001461 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001462 return pp;
1463 pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001464 }
1465 return NULL;
1466}
1467
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001468static struct variable *get_local_var(const char *name)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001469{
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001470 struct variable **pp = get_ptr_to_local_var(name);
1471 if (pp)
1472 return *pp;
1473 return NULL;
1474}
1475
Denys Vlasenko03dad222010-01-12 23:29:57 +01001476static const char* FAST_FUNC get_local_var_value(const char *name)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001477{
Denys Vlasenko29082232010-07-16 13:52:32 +02001478 struct variable **vpp;
1479
1480 if (G.expanded_assignments) {
1481 char **cpp = G.expanded_assignments;
1482 int len = strlen(name);
1483 while (*cpp) {
1484 char *cp = *cpp;
1485 if (strncmp(cp, name, len) == 0 && cp[len] == '=')
1486 return cp + len + 1;
1487 cpp++;
1488 }
1489 }
1490
1491 vpp = get_ptr_to_local_var(name);
1492 if (vpp)
1493 return strchr((*vpp)->varstr, '=') + 1;
1494
Denys Vlasenkodea47882009-10-09 15:40:49 +02001495 if (strcmp(name, "PPID") == 0)
1496 return utoa(G.root_ppid);
1497 // bash compat: UID? EUID?
Denys Vlasenko20b3d142009-10-09 20:59:39 +02001498#if ENABLE_HUSH_RANDOM_SUPPORT
Denys Vlasenko8c66a9d2009-10-11 02:15:49 +02001499 if (strcmp(name, "RANDOM") == 0) {
Denys Vlasenko20b3d142009-10-09 20:59:39 +02001500 return utoa(next_random(&G.random_gen));
Denys Vlasenko8c66a9d2009-10-11 02:15:49 +02001501 }
Denys Vlasenko20b3d142009-10-09 20:59:39 +02001502#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001503 return NULL;
1504}
1505
1506/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001507 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001508 * flg_export:
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001509 * 0: do not change export flag
1510 * (if creating new variable, flag will be 0)
1511 * 1: set export flag and putenv the variable
1512 * -1: clear export flag and unsetenv the variable
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001513 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00001514 */
Denys Vlasenko295fef82009-06-03 12:47:26 +02001515#if !BB_MMU && ENABLE_HUSH_LOCAL
1516/* all params are used */
1517#elif BB_MMU && ENABLE_HUSH_LOCAL
1518#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
1519 set_local_var(str, flg_export, local_lvl)
1520#elif BB_MMU && !ENABLE_HUSH_LOCAL
1521#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001522 set_local_var(str, flg_export)
Denys Vlasenko295fef82009-06-03 12:47:26 +02001523#elif !BB_MMU && !ENABLE_HUSH_LOCAL
1524#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
1525 set_local_var(str, flg_export, flg_read_only)
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001526#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02001527static int set_local_var(char *str, int flg_export, int local_lvl, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001528{
Denys Vlasenko295fef82009-06-03 12:47:26 +02001529 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001530 struct variable *cur;
Denis Vlasenko950bd722009-04-21 11:23:56 +00001531 char *eq_sign;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001532 int name_len;
1533
Denis Vlasenko950bd722009-04-21 11:23:56 +00001534 eq_sign = strchr(str, '=');
1535 if (!eq_sign) { /* not expected to ever happen? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001536 free(str);
1537 return -1;
1538 }
1539
Denis Vlasenko950bd722009-04-21 11:23:56 +00001540 name_len = eq_sign - str + 1; /* including '=' */
Denys Vlasenko295fef82009-06-03 12:47:26 +02001541 var_pp = &G.top_var;
1542 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001543 if (strncmp(cur->varstr, str, name_len) != 0) {
Denys Vlasenko295fef82009-06-03 12:47:26 +02001544 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001545 continue;
1546 }
1547 /* We found an existing var with this name */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001548 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001549#if !BB_MMU
1550 if (!flg_read_only)
1551#endif
1552 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001553 free(str);
1554 return -1;
1555 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001556 if (flg_export == -1) { // "&& cur->flg_export" ?
Denis Vlasenko950bd722009-04-21 11:23:56 +00001557 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1558 *eq_sign = '\0';
1559 unsetenv(str);
1560 *eq_sign = '=';
1561 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001562#if ENABLE_HUSH_LOCAL
1563 if (cur->func_nest_level < local_lvl) {
1564 /* New variable is declared as local,
1565 * and existing one is global, or local
1566 * from enclosing function.
1567 * Remove and save old one: */
1568 *var_pp = cur->next;
1569 cur->next = *G.shadowed_vars_pp;
1570 *G.shadowed_vars_pp = cur;
1571 /* bash 3.2.33(1) and exported vars:
1572 * # export z=z
1573 * # f() { local z=a; env | grep ^z; }
1574 * # f
1575 * z=a
1576 * # env | grep ^z
1577 * z=z
1578 */
1579 if (cur->flg_export)
1580 flg_export = 1;
1581 break;
1582 }
1583#endif
Denis Vlasenko950bd722009-04-21 11:23:56 +00001584 if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001585 free_and_exp:
1586 free(str);
1587 goto exp;
1588 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001589 if (cur->max_len != 0) {
1590 if (cur->max_len >= strlen(str)) {
1591 /* This one is from startup env, reuse space */
1592 strcpy(cur->varstr, str);
1593 goto free_and_exp;
1594 }
1595 } else {
1596 /* max_len == 0 signifies "malloced" var, which we can
1597 * (and has to) free */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001598 free(cur->varstr);
Denys Vlasenko295fef82009-06-03 12:47:26 +02001599 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001600 cur->max_len = 0;
1601 goto set_str_and_exp;
1602 }
1603
Denys Vlasenko295fef82009-06-03 12:47:26 +02001604 /* Not found - create new variable struct */
1605 cur = xzalloc(sizeof(*cur));
1606#if ENABLE_HUSH_LOCAL
1607 cur->func_nest_level = local_lvl;
1608#endif
1609 cur->next = *var_pp;
1610 *var_pp = cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001611
1612 set_str_and_exp:
1613 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001614#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001615 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001616#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001617 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001618 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001619 cur->flg_export = 1;
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001620 if (name_len == 4 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
1621 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001622 if (cur->flg_export) {
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001623 if (flg_export == -1) {
1624 cur->flg_export = 0;
1625 /* unsetenv was already done */
1626 } else {
1627 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1628 return putenv(cur->varstr);
1629 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001630 }
1631 return 0;
1632}
1633
Denys Vlasenko6db47842009-09-05 20:15:17 +02001634/* Used at startup and after each cd */
1635static void set_pwd_var(int exp)
1636{
1637 set_local_var(xasprintf("PWD=%s", get_cwd(/*force:*/ 1)),
1638 /*exp:*/ exp, /*lvl:*/ 0, /*ro:*/ 0);
1639}
1640
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001641static int unset_local_var_len(const char *name, int name_len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001642{
1643 struct variable *cur;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001644 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001645
1646 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00001647 return EXIT_SUCCESS;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001648 var_pp = &G.top_var;
1649 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001650 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1651 if (cur->flg_read_only) {
1652 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00001653 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001654 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001655 *var_pp = cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001656 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1657 bb_unsetenv(cur->varstr);
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001658 if (name_len == 3 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
1659 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001660 if (!cur->max_len)
1661 free(cur->varstr);
1662 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00001663 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001664 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001665 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001666 }
Mike Frysingerd690f682009-03-30 06:50:54 +00001667 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001668}
1669
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001670static int unset_local_var(const char *name)
1671{
1672 return unset_local_var_len(name, strlen(name));
1673}
1674
1675static void unset_vars(char **strings)
1676{
1677 char **v;
1678
1679 if (!strings)
1680 return;
1681 v = strings;
1682 while (*v) {
1683 const char *eq = strchrnul(*v, '=');
1684 unset_local_var_len(*v, (int)(eq - *v));
1685 v++;
1686 }
1687 free(strings);
1688}
1689
Mike Frysinger98c52642009-04-02 10:02:37 +00001690#if ENABLE_SH_MATH_SUPPORT
Denys Vlasenko8391c482010-05-22 17:50:43 +02001691# define is_name(c) ((c) == '_' || isalpha((unsigned char)(c)))
1692# define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c)))
Denys Vlasenko03dad222010-01-12 23:29:57 +01001693static char* FAST_FUNC endofname(const char *name)
Mike Frysinger98c52642009-04-02 10:02:37 +00001694{
1695 char *p;
1696
1697 p = (char *) name;
1698 if (!is_name(*p))
1699 return p;
1700 while (*++p) {
1701 if (!is_in_name(*p))
1702 break;
1703 }
1704 return p;
1705}
Denys Vlasenko6b01b712010-01-24 22:52:21 +01001706#endif
Mike Frysinger98c52642009-04-02 10:02:37 +00001707
Denys Vlasenko03dad222010-01-12 23:29:57 +01001708static void FAST_FUNC set_local_var_from_halves(const char *name, const char *val)
Mike Frysinger98c52642009-04-02 10:02:37 +00001709{
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001710 char *var = xasprintf("%s=%s", name, val);
Denys Vlasenko03dad222010-01-12 23:29:57 +01001711 set_local_var(var, /*flags:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00001712}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001713
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001714
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001715/*
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001716 * Helpers for "var1=val1 var2=val2 cmd" feature
1717 */
1718static void add_vars(struct variable *var)
1719{
1720 struct variable *next;
1721
1722 while (var) {
1723 next = var->next;
1724 var->next = G.top_var;
1725 G.top_var = var;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001726 if (var->flg_export) {
1727 debug_printf_env("%s: restoring exported '%s'\n", __func__, var->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001728 putenv(var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001729 } else {
Denys Vlasenko295fef82009-06-03 12:47:26 +02001730 debug_printf_env("%s: restoring variable '%s'\n", __func__, var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001731 }
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001732 var = next;
1733 }
1734}
1735
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001736static struct variable *set_vars_and_save_old(char **strings)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001737{
1738 char **s;
1739 struct variable *old = NULL;
1740
1741 if (!strings)
1742 return old;
1743 s = strings;
1744 while (*s) {
1745 struct variable *var_p;
1746 struct variable **var_pp;
1747 char *eq;
1748
1749 eq = strchr(*s, '=');
1750 if (eq) {
1751 *eq = '\0';
1752 var_pp = get_ptr_to_local_var(*s);
1753 *eq = '=';
1754 if (var_pp) {
1755 /* Remove variable from global linked list */
1756 var_p = *var_pp;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001757 debug_printf_env("%s: removing '%s'\n", __func__, var_p->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001758 *var_pp = var_p->next;
1759 /* Add it to returned list */
1760 var_p->next = old;
1761 old = var_p;
1762 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001763 set_local_var(*s, /*exp:*/ 1, /*lvl:*/ 0, /*ro:*/ 0);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001764 }
1765 s++;
1766 }
1767 return old;
1768}
1769
1770
1771/*
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001772 * in_str support
1773 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001774static int FAST_FUNC static_get(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001775{
Denys Vlasenko8391c482010-05-22 17:50:43 +02001776 int ch = *i->p;
1777 if (ch != '\0') {
1778 i->p++;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001779 return ch;
Denys Vlasenko8391c482010-05-22 17:50:43 +02001780 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001781 return EOF;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001782}
1783
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001784static int FAST_FUNC static_peek(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001785{
1786 return *i->p;
1787}
1788
1789#if ENABLE_HUSH_INTERACTIVE
1790
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001791static void cmdedit_update_prompt(void)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001792{
Mike Frysingerec2c6552009-03-28 12:24:44 +00001793 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001794 G.PS1 = get_local_var_value("PS1");
Mike Frysingerec2c6552009-03-28 12:24:44 +00001795 if (G.PS1 == NULL)
1796 G.PS1 = "\\w \\$ ";
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001797 G.PS2 = get_local_var_value("PS2");
Denys Vlasenko690ad242009-04-30 21:24:24 +02001798 } else {
Mike Frysingerec2c6552009-03-28 12:24:44 +00001799 G.PS1 = NULL;
Denys Vlasenko690ad242009-04-30 21:24:24 +02001800 }
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001801 if (G.PS2 == NULL)
1802 G.PS2 = "> ";
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001803}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001804
1805static const char* setup_prompt_string(int promptmode)
1806{
1807 const char *prompt_str;
1808 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00001809 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1810 /* Set up the prompt */
1811 if (promptmode == 0) { /* PS1 */
1812 free((char*)G.PS1);
Denys Vlasenko6db47842009-09-05 20:15:17 +02001813 /* bash uses $PWD value, even if it is set by user.
1814 * It uses current dir only if PWD is unset.
1815 * We always use current dir. */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001816 G.PS1 = xasprintf("%s %c ", get_cwd(0), (geteuid() != 0) ? '$' : '#');
Mike Frysingerec2c6552009-03-28 12:24:44 +00001817 prompt_str = G.PS1;
1818 } else
1819 prompt_str = G.PS2;
1820 } else
1821 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001822 debug_printf("result '%s'\n", prompt_str);
1823 return prompt_str;
1824}
1825
1826static void get_user_input(struct in_str *i)
1827{
1828 int r;
1829 const char *prompt_str;
1830
1831 prompt_str = setup_prompt_string(i->promptmode);
Denys Vlasenko8391c482010-05-22 17:50:43 +02001832# if ENABLE_FEATURE_EDITING
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001833 /* Enable command line editing only while a command line
1834 * is actually being read */
1835 do {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001836 G.flag_SIGINT = 0;
1837 /* buglet: SIGINT will not make new prompt to appear _at once_,
1838 * only after <Enter>. (^C will work) */
Denys Vlasenkoaaa22d22009-10-19 16:34:39 +02001839 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 +00001840 /* catch *SIGINT* etc (^C is handled by read_line_input) */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001841 check_and_run_traps(0);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001842 } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001843 i->eof_flag = (r < 0);
1844 if (i->eof_flag) { /* EOF/error detected */
1845 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1846 G.user_input_buf[1] = '\0';
1847 }
Denys Vlasenko8391c482010-05-22 17:50:43 +02001848# else
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001849 do {
1850 G.flag_SIGINT = 0;
1851 fputs(prompt_str, stdout);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001852 fflush_all();
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001853 G.user_input_buf[0] = r = fgetc(i->file);
1854 /*G.user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001855//do we need check_and_run_traps(0)? (maybe only if stdin)
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001856 } while (G.flag_SIGINT);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001857 i->eof_flag = (r == EOF);
Denys Vlasenko8391c482010-05-22 17:50:43 +02001858# endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001859 i->p = G.user_input_buf;
1860}
1861
1862#endif /* INTERACTIVE */
1863
1864/* This is the magic location that prints prompts
1865 * and gets data back from the user */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001866static int FAST_FUNC file_get(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001867{
1868 int ch;
1869
1870 /* If there is data waiting, eat it up */
1871 if (i->p && *i->p) {
1872#if ENABLE_HUSH_INTERACTIVE
1873 take_cached:
1874#endif
1875 ch = *i->p++;
1876 if (i->eof_flag && !*i->p)
1877 ch = EOF;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001878 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001879 } else {
1880 /* need to double check i->file because we might be doing something
1881 * more complicated by now, like sourcing or substituting. */
1882#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001883 if (G_interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001884 do {
1885 get_user_input(i);
1886 } while (!*i->p); /* need non-empty line */
1887 i->promptmode = 1; /* PS2 */
1888 i->promptme = 0;
1889 goto take_cached;
1890 }
1891#endif
Denis Vlasenko913a2012009-04-05 22:17:04 +00001892 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001893 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001894 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001895#if ENABLE_HUSH_INTERACTIVE
1896 if (ch == '\n')
1897 i->promptme = 1;
1898#endif
1899 return ch;
1900}
1901
Denis Vlasenko913a2012009-04-05 22:17:04 +00001902/* All callers guarantee this routine will never
1903 * be used right after a newline, so prompting is not needed.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001904 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001905static int FAST_FUNC file_peek(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001906{
1907 int ch;
1908 if (i->p && *i->p) {
1909 if (i->eof_flag && !i->p[1])
1910 return EOF;
1911 return *i->p;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001912 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001913 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001914 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001915 i->eof_flag = (ch == EOF);
1916 i->peek_buf[0] = ch;
1917 i->peek_buf[1] = '\0';
1918 i->p = i->peek_buf;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001919 debug_printf("file_peek: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001920 return ch;
1921}
1922
1923static void setup_file_in_str(struct in_str *i, FILE *f)
1924{
1925 i->peek = file_peek;
1926 i->get = file_get;
1927#if ENABLE_HUSH_INTERACTIVE
1928 i->promptme = 1;
1929 i->promptmode = 0; /* PS1 */
1930#endif
1931 i->file = f;
1932 i->p = NULL;
1933}
1934
1935static void setup_string_in_str(struct in_str *i, const char *s)
1936{
1937 i->peek = static_peek;
1938 i->get = static_get;
1939#if ENABLE_HUSH_INTERACTIVE
1940 i->promptme = 1;
1941 i->promptmode = 0; /* PS1 */
1942#endif
1943 i->p = s;
1944 i->eof_flag = 0;
1945}
1946
1947
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001948/*
1949 * o_string support
1950 */
1951#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00001952
Denis Vlasenko0b677d82009-04-10 13:49:10 +00001953static void o_reset_to_empty_unquoted(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001954{
1955 o->length = 0;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001956 o->o_quoted = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001957 if (o->data)
1958 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001959}
1960
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001961static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001962{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001963 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001964 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00001965}
1966
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001967static ALWAYS_INLINE void o_free_unsafe(o_string *o)
1968{
1969 free(o->data);
1970}
1971
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001972static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001973{
1974 if (o->length + len > o->maxlen) {
1975 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1976 o->data = xrealloc(o->data, 1 + o->maxlen);
1977 }
1978}
1979
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001980static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001981{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001982 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1983 o_grow_by(o, 1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001984 o->data[o->length] = ch;
1985 o->length++;
1986 o->data[o->length] = '\0';
1987}
1988
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001989static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001990{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001991 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001992 memcpy(&o->data[o->length], str, len);
1993 o->length += len;
1994 o->data[o->length] = '\0';
1995}
1996
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001997static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00001998{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001999 o_addblock(o, str, strlen(str));
2000}
Denys Vlasenko2e48d532010-05-22 17:30:39 +02002001
Denys Vlasenko1e811b12010-05-22 03:12:29 +02002002#if !BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002003static void nommu_addchr(o_string *o, int ch)
2004{
2005 if (o)
2006 o_addchr(o, ch);
2007}
2008#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002009# define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002010#endif
2011
2012static void o_addstr_with_NUL(o_string *o, const char *str)
2013{
2014 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00002015}
2016
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002017static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
Denis Vlasenko55789c62008-06-18 16:30:42 +00002018{
2019 while (len) {
2020 o_addchr(o, *str);
2021 if (*str++ == '\\'
2022 && (*str != '*' && *str != '?' && *str != '[')
2023 ) {
2024 o_addchr(o, '\\');
2025 }
2026 len--;
2027 }
2028}
2029
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002030#undef HUSH_BRACE_EXP
2031/*
2032 * HUSH_BRACE_EXP code needs corresponding quoting on variable expansion side.
2033 * Currently, "v='{q,w}'; echo $v" erroneously expands braces in $v.
2034 * Apparently, on unquoted $v bash still does globbing
2035 * ("v='*.txt'; echo $v" prints all .txt files),
2036 * but NOT brace expansion! Thus, there should be TWO independent
2037 * quoting mechanisms on $v expansion side: one protects
2038 * $v from brace expansion, and other additionally protects "$v" against globbing.
2039 * We have only second one.
2040 */
2041
2042#ifdef HUSH_BRACE_EXP
2043# define MAYBE_BRACES "{}"
2044#else
2045# define MAYBE_BRACES ""
2046#endif
2047
Eric Andersen25f27032001-04-26 23:22:31 +00002048/* My analysis of quoting semantics tells me that state information
2049 * is associated with a destination, not a source.
2050 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002051static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00002052{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002053 int sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002054 char *found = strchr("*?[\\" MAYBE_BRACES, ch);
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002055 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002056 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002057 o_grow_by(o, sz);
2058 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002059 o->data[o->length] = '\\';
2060 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00002061 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002062 o->data[o->length] = ch;
2063 o->length++;
2064 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002065}
2066
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002067static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002068{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002069 int sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002070 if (o->o_escape && strchr("*?[\\" MAYBE_BRACES, ch)) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002071 sz++;
2072 o->data[o->length] = '\\';
2073 o->length++;
2074 }
2075 o_grow_by(o, sz);
2076 o->data[o->length] = ch;
2077 o->length++;
2078 o->data[o->length] = '\0';
2079}
2080
2081static void o_addQstr(o_string *o, const char *str, int len)
2082{
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002083 if (!o->o_escape) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002084 o_addblock(o, str, len);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002085 return;
2086 }
2087 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002088 char ch;
2089 int sz;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002090 int ordinary_cnt = strcspn(str, "*?[\\" MAYBE_BRACES);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002091 if (ordinary_cnt > len) /* paranoia */
2092 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002093 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002094 if (ordinary_cnt == len)
2095 return;
2096 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002097 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002098
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002099 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002100 sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002101 if (ch) { /* it is necessarily one of "*?[\\" MAYBE_BRACES */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002102 sz++;
2103 o->data[o->length] = '\\';
2104 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002105 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002106 o_grow_by(o, sz);
2107 o->data[o->length] = ch;
2108 o->length++;
2109 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002110 }
2111}
2112
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002113/* A special kind of o_string for $VAR and `cmd` expansion.
2114 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002115 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002116 * list[i] contains an INDEX (int!) into this string data.
2117 * It means that if list[] needs to grow, data needs to be moved higher up
2118 * but list[i]'s need not be modified.
2119 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002120 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002121 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
2122 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002123#if DEBUG_EXPAND || DEBUG_GLOB
2124static void debug_print_list(const char *prefix, o_string *o, int n)
2125{
2126 char **list = (char**)o->data;
2127 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2128 int i = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002129
2130 indent();
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002131 fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n",
2132 prefix, list, n, string_start, o->length, o->maxlen);
2133 while (i < n) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002134 indent();
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002135 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
2136 o->data + (int)list[i] + string_start,
2137 o->data + (int)list[i] + string_start);
2138 i++;
2139 }
2140 if (n) {
2141 const char *p = o->data + (int)list[n - 1] + string_start;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002142 indent();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002143 fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002144 }
2145}
2146#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002147# define debug_print_list(prefix, o, n) ((void)0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002148#endif
2149
2150/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
2151 * in list[n] so that it points past last stored byte so far.
2152 * It returns n+1. */
2153static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002154{
2155 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00002156 int string_start;
2157 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002158
2159 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00002160 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2161 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002162 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002163 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002164 /* list[n] points to string_start, make space for 16 more pointers */
2165 o->maxlen += 0x10 * sizeof(list[0]);
2166 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00002167 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002168 memmove(list + n + 0x10, list + n, string_len);
2169 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002170 } else {
2171 debug_printf_list("list[%d]=%d string_start=%d\n",
2172 n, string_len, string_start);
2173 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002174 } else {
2175 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00002176 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
2177 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002178 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
2179 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002180 o->has_empty_slot = 0;
2181 }
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00002182 list[n] = (char*)(ptrdiff_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002183 return n + 1;
2184}
2185
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002186/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002187static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002188{
2189 char **list = (char**)o->data;
2190 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2191
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00002192 return ((int)(ptrdiff_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002193}
2194
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002195#ifdef HUSH_BRACE_EXP
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002196/* There in a GNU extension, GLOB_BRACE, but it is not usable:
2197 * first, it processes even {a} (no commas), second,
2198 * I didn't manage to make it return strings when they don't match
Denys Vlasenko160746b2009-11-16 05:51:18 +01002199 * existing files. Need to re-implement it.
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002200 */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002201
2202/* Helper */
2203static int glob_needed(const char *s)
2204{
2205 while (*s) {
2206 if (*s == '\\') {
2207 if (!s[1])
2208 return 0;
2209 s += 2;
2210 continue;
2211 }
2212 if (*s == '*' || *s == '[' || *s == '?' || *s == '{')
2213 return 1;
2214 s++;
2215 }
2216 return 0;
2217}
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002218/* Return pointer to next closing brace or to comma */
2219static const char *next_brace_sub(const char *cp)
2220{
2221 unsigned depth = 0;
2222 cp++;
2223 while (*cp != '\0') {
2224 if (*cp == '\\') {
2225 if (*++cp == '\0')
2226 break;
2227 cp++;
2228 continue;
Denys Vlasenko3581c622010-01-25 13:39:24 +01002229 }
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002230 /*{*/ if ((*cp == '}' && depth-- == 0) || (*cp == ',' && depth == 0))
2231 break;
2232 if (*cp++ == '{') /*}*/
2233 depth++;
2234 }
2235
2236 return *cp != '\0' ? cp : NULL;
2237}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002238/* Recursive brace globber. Note: may garble pattern[]. */
2239static int glob_brace(char *pattern, o_string *o, int n)
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002240{
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002241 char *new_pattern_buf;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002242 const char *begin;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002243 const char *next;
2244 const char *rest;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002245 const char *p;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002246 size_t rest_len;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002247
2248 debug_printf_glob("glob_brace('%s')\n", pattern);
2249
2250 begin = pattern;
2251 while (1) {
2252 if (*begin == '\0')
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002253 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002254 if (*begin == '{') /*}*/ {
2255 /* Find the first sub-pattern and at the same time
2256 * find the rest after the closing brace */
2257 next = next_brace_sub(begin);
2258 if (next == NULL) {
2259 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002260 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002261 }
2262 /*{*/ if (*next == '}') {
2263 /* "{abc}" with no commas - illegal
2264 * brace expr, disregard and skip it */
2265 begin = next + 1;
2266 continue;
2267 }
2268 break;
2269 }
2270 if (*begin == '\\' && begin[1] != '\0')
2271 begin++;
2272 begin++;
2273 }
2274 debug_printf_glob("begin:%s\n", begin);
2275 debug_printf_glob("next:%s\n", next);
2276
2277 /* Now find the end of the whole brace expression */
2278 rest = next;
2279 /*{*/ while (*rest != '}') {
2280 rest = next_brace_sub(rest);
2281 if (rest == NULL) {
2282 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002283 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002284 }
2285 debug_printf_glob("rest:%s\n", rest);
2286 }
2287 rest_len = strlen(++rest) + 1;
2288
2289 /* We are sure the brace expression is well-formed */
2290
2291 /* Allocate working buffer large enough for our work */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002292 new_pattern_buf = xmalloc(strlen(pattern));
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002293
2294 /* We have a brace expression. BEGIN points to the opening {,
2295 * NEXT points past the terminator of the first element, and REST
2296 * points past the final }. We will accumulate result names from
2297 * recursive runs for each brace alternative in the buffer using
2298 * GLOB_APPEND. */
2299
2300 p = begin + 1;
2301 while (1) {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002302 /* Construct the new glob expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002303 memcpy(
2304 mempcpy(
2305 mempcpy(new_pattern_buf,
2306 /* We know the prefix for all sub-patterns */
2307 pattern, begin - pattern),
2308 p, next - p),
2309 rest, rest_len);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002310
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002311 /* Note: glob_brace() may garble new_pattern_buf[].
2312 * That's why we re-copy prefix every time (1st memcpy above).
2313 */
2314 n = glob_brace(new_pattern_buf, o, n);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002315 /*{*/ if (*next == '}') {
2316 /* We saw the last entry */
2317 break;
2318 }
2319 p = next + 1;
2320 next = next_brace_sub(next);
2321 }
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002322 free(new_pattern_buf);
2323 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002324
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002325 simple_glob:
2326 {
2327 int gr;
2328 glob_t globdata;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002329
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002330 memset(&globdata, 0, sizeof(globdata));
2331 gr = glob(pattern, 0, NULL, &globdata);
2332 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
2333 if (gr != 0) {
2334 if (gr == GLOB_NOMATCH) {
2335 globfree(&globdata);
2336 /* NB: garbles parameter */
2337 unbackslash(pattern);
2338 o_addstr_with_NUL(o, pattern);
2339 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2340 return o_save_ptr_helper(o, n);
2341 }
2342 if (gr == GLOB_NOSPACE)
2343 bb_error_msg_and_die(bb_msg_memory_exhausted);
2344 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
2345 * but we didn't specify it. Paranoia again. */
2346 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
2347 }
2348 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
2349 char **argv = globdata.gl_pathv;
2350 while (1) {
2351 o_addstr_with_NUL(o, *argv);
2352 n = o_save_ptr_helper(o, n);
2353 argv++;
2354 if (!*argv)
2355 break;
2356 }
2357 }
2358 globfree(&globdata);
2359 }
2360 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002361}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002362/* Performs globbing on last list[],
2363 * saving each result as a new list[].
2364 */
2365static int o_glob(o_string *o, int n)
2366{
2367 char *pattern, *copy;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002368
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002369 debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
2370 if (!o->data)
2371 return o_save_ptr_helper(o, n);
2372 pattern = o->data + o_get_last_ptr(o, n);
2373 debug_printf_glob("glob pattern '%s'\n", pattern);
2374 if (!glob_needed(pattern)) {
2375 /* unbackslash last string in o in place, fix length */
2376 o->length = unbackslash(pattern) - o->data;
2377 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2378 return o_save_ptr_helper(o, n);
2379 }
2380
2381 copy = xstrdup(pattern);
2382 /* "forget" pattern in o */
2383 o->length = pattern - o->data;
2384 n = glob_brace(copy, o, n);
2385 free(copy);
2386 if (DEBUG_GLOB)
2387 debug_print_list("o_glob returning", o, n);
2388 return n;
2389}
2390
Denys Vlasenko8391c482010-05-22 17:50:43 +02002391#else /* !HUSH_BRACE_EXP */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002392
2393/* Helper */
2394static int glob_needed(const char *s)
2395{
2396 while (*s) {
2397 if (*s == '\\') {
2398 if (!s[1])
2399 return 0;
2400 s += 2;
2401 continue;
2402 }
2403 if (*s == '*' || *s == '[' || *s == '?')
2404 return 1;
2405 s++;
2406 }
2407 return 0;
2408}
2409/* Performs globbing on last list[],
2410 * saving each result as a new list[].
2411 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002412static int o_glob(o_string *o, int n)
2413{
2414 glob_t globdata;
2415 int gr;
2416 char *pattern;
2417
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002418 debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002419 if (!o->data)
2420 return o_save_ptr_helper(o, n);
2421 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002422 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002423 if (!glob_needed(pattern)) {
2424 literal:
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002425 /* unbackslash last string in o in place, fix length */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002426 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002427 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002428 return o_save_ptr_helper(o, n);
2429 }
2430
2431 memset(&globdata, 0, sizeof(globdata));
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002432 /* Can't use GLOB_NOCHECK: it does not unescape the string.
2433 * If we glob "*.\*" and don't find anything, we need
2434 * to fall back to using literal "*.*", but GLOB_NOCHECK
2435 * will return "*.\*"!
2436 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002437 gr = glob(pattern, 0, NULL, &globdata);
2438 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002439 if (gr != 0) {
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002440 if (gr == GLOB_NOMATCH) {
2441 globfree(&globdata);
2442 goto literal;
2443 }
2444 if (gr == GLOB_NOSPACE)
2445 bb_error_msg_and_die(bb_msg_memory_exhausted);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002446 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
2447 * but we didn't specify it. Paranoia again. */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002448 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002449 }
2450 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
2451 char **argv = globdata.gl_pathv;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002452 /* "forget" pattern in o */
2453 o->length = pattern - o->data;
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002454 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002455 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002456 n = o_save_ptr_helper(o, n);
2457 argv++;
2458 if (!*argv)
2459 break;
2460 }
2461 }
2462 globfree(&globdata);
2463 if (DEBUG_GLOB)
2464 debug_print_list("o_glob returning", o, n);
2465 return n;
2466}
2467
Denys Vlasenko8391c482010-05-22 17:50:43 +02002468#endif /* !HUSH_BRACE_EXP */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002469
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002470/* If o->o_glob == 1, glob the string so far remembered.
2471 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002472static int o_save_ptr(o_string *o, int n)
2473{
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00002474 if (o->o_glob) { /* if globbing is requested */
2475 /* If o->has_empty_slot, list[n] was already globbed
2476 * (if it was requested back then when it was filled)
2477 * so don't do that again! */
2478 if (!o->has_empty_slot)
2479 return o_glob(o, n); /* o_save_ptr_helper is inside */
2480 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002481 return o_save_ptr_helper(o, n);
2482}
2483
2484/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002485static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002486{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002487 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002488 int string_start;
2489
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002490 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
2491 if (DEBUG_EXPAND)
2492 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002493 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002494 list = (char**)o->data;
2495 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2496 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002497 while (n) {
2498 n--;
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00002499 list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002500 }
2501 return list;
2502}
2503
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002504
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002505/* Expansion can recurse */
2506#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00002507static int process_command_subs(o_string *dest, const char *s);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002508#endif
2509static char *expand_string_to_string(const char *str);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002510#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00002511#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002512 parse_stream_dquoted(dest, input, dquote_end)
2513#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00002514static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002515 o_string *dest,
2516 struct in_str *input,
2517 int dquote_end);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002518
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002519/* expand_strvec_to_strvec() takes a list of strings, expands
2520 * all variable references within and returns a pointer to
2521 * a list of expanded strings, possibly with larger number
2522 * of strings. (Think VAR="a b"; echo $VAR).
2523 * This new list is allocated as a single malloc block.
2524 * NULL-terminated list of char* pointers is at the beginning of it,
2525 * followed by strings themself.
2526 * Caller can deallocate entire list by single free(list). */
Eric Andersen25f27032001-04-26 23:22:31 +00002527
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002528/* Store given string, finalizing the word and starting new one whenever
2529 * we encounter IFS char(s). This is used for expanding variable values.
2530 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
2531static int expand_on_ifs(o_string *output, int n, const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00002532{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002533 while (1) {
2534 int word_len = strcspn(str, G.ifs);
2535 if (word_len) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002536 if (output->o_escape || !output->o_glob)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002537 o_addQstr(output, str, word_len);
2538 else /* protect backslashes against globbing up :) */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002539 o_addblock_duplicate_backslash(output, str, word_len);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002540 str += word_len;
2541 }
2542 if (!*str) /* EOL - do not finalize word */
2543 break;
2544 o_addchr(output, '\0');
2545 debug_print_list("expand_on_ifs", output, n);
2546 n = o_save_ptr(output, n);
2547 str += strspn(str, G.ifs); /* skip ifs chars */
Eric Andersen25f27032001-04-26 23:22:31 +00002548 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002549 debug_print_list("expand_on_ifs[1]", output, n);
2550 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00002551}
2552
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002553/* Helper to expand $((...)) and heredoc body. These act as if
2554 * they are in double quotes, with the exception that they are not :).
2555 * Just the rules are similar: "expand only $var and `cmd`"
2556 *
2557 * Returns malloced string.
2558 * As an optimization, we return NULL if expansion is not needed.
2559 */
2560static char *expand_pseudo_dquoted(const char *str)
2561{
2562 char *exp_str;
2563 struct in_str input;
2564 o_string dest = NULL_O_STRING;
2565
2566 if (strchr(str, '$') == NULL
2567#if ENABLE_HUSH_TICK
2568 && strchr(str, '`') == NULL
2569#endif
2570 ) {
2571 return NULL;
2572 }
2573
2574 /* We need to expand. Example:
2575 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
2576 */
2577 setup_string_in_str(&input, str);
2578 parse_stream_dquoted(NULL, &dest, &input, EOF);
2579 //bb_error_msg("'%s' -> '%s'", str, dest.data);
2580 exp_str = expand_string_to_string(dest.data);
2581 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
2582 o_free_unsafe(&dest);
2583 return exp_str;
2584}
2585
Denys Vlasenko3f78cec2010-05-21 17:54:46 +02002586#if ENABLE_SH_MATH_SUPPORT
2587static arith_t expand_and_evaluate_arith(const char *arg, int *errcode_p)
2588{
2589 arith_eval_hooks_t hooks;
2590 arith_t res;
2591 char *exp_str;
2592
2593 hooks.lookupvar = get_local_var_value;
2594 hooks.setvar = set_local_var_from_halves;
2595 hooks.endofname = endofname;
2596 exp_str = expand_pseudo_dquoted(arg);
2597 res = arith(exp_str ? exp_str : arg, errcode_p, &hooks);
2598 free(exp_str);
2599 return res;
2600}
2601#endif
2602
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002603/* Expand all variable references in given string, adding words to list[]
2604 * at n, n+1,... positions. Return updated n (so that list[n] is next one
2605 * to be filled). This routine is extremely tricky: has to deal with
2606 * variables/parameters with whitespace, $* and $@, and constructs like
2607 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
Denys Vlasenkoa7bb3c12009-10-08 12:28:08 +02002608static NOINLINE int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00002609{
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02002610 /* or_mask is either 0 (normal case) or 0x80 -
2611 * expansion of right-hand side of assignment == 1-element expand.
2612 * It will also do no globbing, and thus we must not backslash-quote!
2613 */
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002614 char ored_ch;
2615 char *p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002616
2617 ored_ch = 0;
2618
Denys Vlasenkof37eb392009-10-18 11:46:35 +02002619 debug_printf_expand("expand_vars_to_list: arg:'%s' or_mask:%x\n", arg, or_mask);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002620 debug_print_list("expand_vars_to_list", output, n);
2621 n = o_save_ptr(output, n);
2622 debug_print_list("expand_vars_to_list[0]", output, n);
2623
2624 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002625 char first_ch;
2626 int i;
Denys Vlasenko3f78cec2010-05-21 17:54:46 +02002627 char *to_be_freed = NULL;
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002628 const char *val = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002629#if ENABLE_HUSH_TICK
2630 o_string subst_result = NULL_O_STRING;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00002631#endif
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002632#if ENABLE_SH_MATH_SUPPORT
2633 char arith_buf[sizeof(arith_t)*3 + 2];
2634#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002635 o_addblock(output, arg, p - arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002636 debug_print_list("expand_vars_to_list[1]", output, n);
2637 arg = ++p;
2638 p = strchr(p, SPECIAL_VAR_SYMBOL);
2639
2640 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
2641 /* "$@" is special. Even if quoted, it can still
2642 * expand to nothing (not even an empty string) */
2643 if ((first_ch & 0x7f) != '@')
2644 ored_ch |= first_ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002645
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002646 switch (first_ch & 0x7f) {
2647 /* Highest bit in first_ch indicates that var is double-quoted */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002648 case '*':
2649 case '@':
2650 i = 1;
2651 if (!G.global_argv[i])
2652 break;
2653 ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
2654 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002655 smallint sv = output->o_escape;
2656 /* unquoted var's contents should be globbed, so don't escape */
2657 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002658 while (G.global_argv[i]) {
2659 n = expand_on_ifs(output, n, G.global_argv[i]);
2660 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
2661 if (G.global_argv[i++][0] && G.global_argv[i]) {
2662 /* this argv[] is not empty and not last:
2663 * put terminating NUL, start new word */
2664 o_addchr(output, '\0');
2665 debug_print_list("expand_vars_to_list[2]", output, n);
2666 n = o_save_ptr(output, n);
2667 debug_print_list("expand_vars_to_list[3]", output, n);
2668 }
2669 }
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002670 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002671 } else
2672 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
2673 * and in this case should treat it like '$*' - see 'else...' below */
2674 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
2675 while (1) {
2676 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
2677 if (++i >= G.global_argc)
2678 break;
2679 o_addchr(output, '\0');
2680 debug_print_list("expand_vars_to_list[4]", output, n);
2681 n = o_save_ptr(output, n);
2682 }
2683 } else { /* quoted $*: add as one word */
2684 while (1) {
2685 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
2686 if (!G.global_argv[++i])
2687 break;
2688 if (G.ifs[0])
2689 o_addchr(output, G.ifs[0]);
2690 }
2691 }
2692 break;
2693 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
2694 /* "Empty variable", used to make "" etc to not disappear */
2695 arg++;
2696 ored_ch = 0x80;
2697 break;
2698#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00002699 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002700 *p = '\0';
2701 arg++;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002702 /* Can't just stuff it into output o_string,
2703 * expanded result may need to be globbed
2704 * and $IFS-splitted */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002705 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
Denys Vlasenko647553a2009-11-15 19:58:19 +01002706 G.last_exitcode = process_command_subs(&subst_result, arg);
Denys Vlasenkocddbb612010-05-20 14:27:09 +02002707 debug_printf_subst("SUBST RES:%d '%s'\n", G.last_exitcode, subst_result.data);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002708 val = subst_result.data;
2709 goto store_val;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00002710#endif
Mike Frysinger98c52642009-04-02 10:02:37 +00002711#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002712 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
Mike Frysinger98c52642009-04-02 10:02:37 +00002713 arith_t res;
Mike Frysinger98c52642009-04-02 10:02:37 +00002714 int errcode;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002715
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002716 arg++; /* skip '+' */
2717 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Mike Frysinger98c52642009-04-02 10:02:37 +00002718 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denys Vlasenko3f78cec2010-05-21 17:54:46 +02002719 res = expand_and_evaluate_arith(arg, &errcode);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002720
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002721 if (errcode < 0) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002722 const char *msg = "error in arithmetic";
Mike Frysinger98c52642009-04-02 10:02:37 +00002723 switch (errcode) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002724 case -3:
2725 msg = "exponent less than 0";
2726 break;
2727 case -2:
2728 msg = "divide by 0";
2729 break;
2730 case -5:
2731 msg = "expression recursion loop detected";
2732 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00002733 }
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002734 die_if_script(msg);
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002735 }
Mike Frysinger98c52642009-04-02 10:02:37 +00002736 debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002737 sprintf(arith_buf, arith_t_fmt, res);
2738 val = arith_buf;
Mike Frysinger98c52642009-04-02 10:02:37 +00002739 break;
2740 }
2741#endif
Denys Vlasenkoe85248a2010-05-22 06:20:26 +02002742 default: { /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */
2743 char *var;
2744 char first_char;
Denys Vlasenkoe3be7842010-05-20 16:27:42 +02002745 char exp_op;
Denis Vlasenko232be3e2009-04-05 09:16:00 +00002746 char exp_save = exp_save; /* for compiler */
Denys Vlasenkoe85248a2010-05-22 06:20:26 +02002747 char *exp_saveptr; /* points to expansion operator */
Denis Vlasenko232be3e2009-04-05 09:16:00 +00002748 char *exp_word = exp_word; /* for compiler */
Denis Vlasenko232be3e2009-04-05 09:16:00 +00002749
Denys Vlasenkoe85248a2010-05-22 06:20:26 +02002750 var = arg;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002751 *p = '\0';
Denys Vlasenkoe85248a2010-05-22 06:20:26 +02002752 exp_saveptr = arg[1] ? strchr("%#:-=+?", arg[1]) : NULL;
2753 first_char = arg[0] = first_ch & 0x7f;
Denys Vlasenkoe3be7842010-05-20 16:27:42 +02002754 exp_op = 0;
Denys Vlasenkoe85248a2010-05-22 06:20:26 +02002755
2756 if (first_char == '#' && arg[1] && !exp_saveptr) {
Mike Frysinger6379bb42009-03-28 18:55:03 +00002757 /* handle length expansion ${#var} */
Denys Vlasenkoee0775d2010-05-20 16:37:53 +02002758 var++;
Denys Vlasenkoe85248a2010-05-22 06:20:26 +02002759 exp_op = 'L';
Mike Frysinger6379bb42009-03-28 18:55:03 +00002760 } else {
2761 /* maybe handle parameter expansion */
Denys Vlasenkoe85248a2010-05-22 06:20:26 +02002762 if (exp_saveptr /* if 2nd char is one of expansion operators */
2763 && strchr(NUMERIC_SPECVARS_STR, first_char) /* 1st char is special variable */
2764 ) {
2765 /* ${?:0}, ${#[:]%0} etc */
2766 exp_saveptr = var + 1;
2767 } else {
2768 /* ${?}, ${var}, ${var:0}, ${var[:]%0} etc */
2769 exp_saveptr = var+1 + strcspn(var+1, "%#:-=+?");
2770 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02002771 exp_op = exp_save = *exp_saveptr;
2772 if (exp_op) {
2773 exp_word = exp_saveptr + 1;
2774 if (exp_op == ':') {
2775 exp_op = *exp_word++;
2776 if (ENABLE_HUSH_BASH_COMPAT
2777 && (exp_op == '\0' || !strchr("%#:-=+?"+3, exp_op))
2778 ) {
2779 /* oops... it's ${var:N[:M]}, not ${var:?xxx} or some such */
2780 exp_op = ':';
2781 exp_word--;
2782 }
2783 }
Denys Vlasenkoe3be7842010-05-20 16:27:42 +02002784 *exp_saveptr = '\0';
Denys Vlasenkoe85248a2010-05-22 06:20:26 +02002785 } /* else: it's not an expansion op, but bare ${var} */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002786 }
2787
2788 /* lookup the variable in question */
2789 if (isdigit(var[0])) {
Denys Vlasenko2e48d532010-05-22 17:30:39 +02002790 /* parse_dollar() should have vetted var for us */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002791 i = xatoi_u(var);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002792 if (i < G.global_argc)
2793 val = G.global_argv[i];
2794 /* else val remains NULL: $N with too big N */
Denys Vlasenkoe85248a2010-05-22 06:20:26 +02002795 } else {
2796 switch (var[0]) {
2797 case '$': /* pid */
2798 val = utoa(G.root_pid);
2799 break;
2800 case '!': /* bg pid */
2801 val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)"";
2802 break;
2803 case '?': /* exitcode */
2804 val = utoa(G.last_exitcode);
2805 break;
2806 case '#': /* argc */
2807 val = utoa(G.global_argc ? G.global_argc-1 : 0);
2808 break;
2809 default:
2810 val = get_local_var_value(var);
2811 }
2812 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002813
2814 /* handle any expansions */
Denys Vlasenkoe85248a2010-05-22 06:20:26 +02002815 if (exp_op == 'L') {
Denys Vlasenkoee0775d2010-05-20 16:37:53 +02002816 debug_printf_expand("expand: length(%s)=", val);
Mike Frysinger6379bb42009-03-28 18:55:03 +00002817 val = utoa(val ? strlen(val) : 0);
2818 debug_printf_expand("%s\n", val);
Denys Vlasenkoe3be7842010-05-20 16:27:42 +02002819 } else if (exp_op) {
Mike Frysingera4f331d2009-04-07 06:03:22 +00002820 if (exp_op == '%' || exp_op == '#') {
Denys Vlasenko53b51332010-05-20 21:46:45 +02002821 /* Standard-mandated substring removal ops:
2822 * ${parameter%word} - remove smallest suffix pattern
2823 * ${parameter%%word} - remove largest suffix pattern
2824 * ${parameter#word} - remove smallest prefix pattern
2825 * ${parameter##word} - remove largest prefix pattern
2826 *
2827 * Word is expanded to produce a glob pattern.
2828 * Then var's value is matched to it and matching part removed.
2829 */
Mike Frysinger57e74672009-04-09 23:00:33 +00002830 if (val) {
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002831 bool match_at_left;
Mike Frysinger57e74672009-04-09 23:00:33 +00002832 char *loc;
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002833 scan_t scan = pick_scan(exp_op, *exp_word, &match_at_left);
Mike Frysinger57e74672009-04-09 23:00:33 +00002834 if (exp_op == *exp_word) /* ## or %% */
Denys Vlasenkoe3be7842010-05-20 16:27:42 +02002835 exp_word++;
Denys Vlasenko3f78cec2010-05-21 17:54:46 +02002836 val = to_be_freed = xstrdup(val);
Denys Vlasenko74369502010-05-21 19:52:01 +02002837 {
2838 char *exp_exp_word = expand_pseudo_dquoted(exp_word);
2839 if (exp_exp_word)
2840 exp_word = exp_exp_word;
2841 loc = scan(to_be_freed, exp_word, match_at_left);
2842 //bb_error_msg("op:%c str:'%s' pat:'%s' res:'%s'",
2843 // exp_op, to_be_freed, exp_word, loc);
2844 free(exp_exp_word);
2845 }
2846 if (loc) { /* match was found */
2847 if (match_at_left) /* # or ## */
2848 val = loc;
2849 else /* % or %% */
2850 *loc = '\0';
2851 }
Mike Frysinger57e74672009-04-09 23:00:33 +00002852 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02002853 } else if (exp_op == ':') {
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02002854#if ENABLE_HUSH_BASH_COMPAT && ENABLE_SH_MATH_SUPPORT
Denys Vlasenko1e811b12010-05-22 03:12:29 +02002855 /* It's ${var:N[:M]} bashism.
2856 * Note that in encoded form it has TWO parts:
2857 * var:N<SPECIAL_VAR_SYMBOL>M<SPECIAL_VAR_SYMBOL>
Denys Vlasenko4d8e5fd2010-05-21 01:15:42 +02002858 */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02002859 arith_t beg, len;
2860 int errcode = 0;
2861
2862 beg = expand_and_evaluate_arith(exp_word, &errcode);
2863 debug_printf_varexp("beg:'%s'=%lld\n", exp_word, (long long)beg);
2864 *p++ = SPECIAL_VAR_SYMBOL;
2865 exp_word = p;
2866 p = strchr(p, SPECIAL_VAR_SYMBOL);
2867 *p = '\0';
2868 len = expand_and_evaluate_arith(exp_word, &errcode);
2869 debug_printf_varexp("len:'%s'=%lld\n", exp_word, (long long)len);
2870
2871 if (errcode >= 0 && len >= 0) { /* bash compat: len < 0 is illegal */
2872 if (beg < 0) /* bash compat */
2873 beg = 0;
2874 debug_printf_varexp("from val:'%s'\n", val);
Denys Vlasenko73e013f2010-05-21 15:24:12 +02002875 if (len == 0 || !val || beg >= strlen(val))
Denys Vlasenko4d8e5fd2010-05-21 01:15:42 +02002876 val = "";
Denys Vlasenko1e811b12010-05-22 03:12:29 +02002877 else {
2878 /* Paranoia. What if user entered 9999999999999
2879 * which fits in arith_t but not int? */
2880 if (len >= INT_MAX)
2881 len = INT_MAX;
Denys Vlasenko3f78cec2010-05-21 17:54:46 +02002882 val = to_be_freed = xstrndup(val + beg, len);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02002883 }
2884 debug_printf_varexp("val:'%s'\n", val);
Denys Vlasenko4d8e5fd2010-05-21 01:15:42 +02002885 } else
2886#endif
2887 {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02002888 die_if_script("malformed ${%s:...}", var);
Denys Vlasenko73e013f2010-05-21 15:24:12 +02002889 val = "";
Denys Vlasenko4d8e5fd2010-05-21 01:15:42 +02002890 }
2891 } else { /* one of "-=+?" */
Denys Vlasenko53b51332010-05-20 21:46:45 +02002892 /* Standard-mandated substitution ops:
2893 * ${var?word} - indicate error if unset
2894 * If var is unset, word (or a message indicating it is unset
2895 * if word is null) is written to standard error
2896 * and the shell exits with a non-zero exit status.
2897 * Otherwise, the value of var is substituted.
2898 * ${var-word} - use default value
2899 * If var is unset, word is substituted.
2900 * ${var=word} - assign and use default value
2901 * If var is unset, word is assigned to var.
2902 * In all cases, final value of var is substituted.
2903 * ${var+word} - use alternative value
2904 * If var is unset, null is substituted.
2905 * Otherwise, word is substituted.
2906 *
2907 * Word is subjected to tilde expansion, parameter expansion,
2908 * command substitution, and arithmetic expansion.
2909 * If word is not needed, it is not expanded.
2910 *
2911 * Colon forms (${var:-word}, ${var:=word} etc) do the same,
2912 * but also treat null var as if it is unset.
2913 */
2914 int use_word = (!val || ((exp_save == ':') && !val[0]));
Mike Frysingera4f331d2009-04-07 06:03:22 +00002915 if (exp_op == '+')
Denys Vlasenko53b51332010-05-20 21:46:45 +02002916 use_word = !use_word;
Mike Frysingera4f331d2009-04-07 06:03:22 +00002917 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
Denys Vlasenko53b51332010-05-20 21:46:45 +02002918 (exp_save == ':') ? "true" : "false", use_word);
2919 if (use_word) {
Denys Vlasenko3f78cec2010-05-21 17:54:46 +02002920 to_be_freed = expand_pseudo_dquoted(exp_word);
2921 if (to_be_freed)
2922 exp_word = to_be_freed;
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002923 if (exp_op == '?') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002924 /* mimic bash message */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002925 die_if_script("%s: %s",
2926 var,
2927 exp_word[0] ? exp_word : "parameter null or not set"
2928 );
Denys Vlasenko3f78cec2010-05-21 17:54:46 +02002929//TODO: how interactive bash aborts expansion mid-command?
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002930 } else {
Mike Frysingera4f331d2009-04-07 06:03:22 +00002931 val = exp_word;
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002932 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002933
Mike Frysingera4f331d2009-04-07 06:03:22 +00002934 if (exp_op == '=') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002935 /* ${var=[word]} or ${var:=[word]} */
Mike Frysingera4f331d2009-04-07 06:03:22 +00002936 if (isdigit(var[0]) || var[0] == '#') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002937 /* mimic bash message */
2938 die_if_script("$%s: cannot assign in this way", var);
Mike Frysingera4f331d2009-04-07 06:03:22 +00002939 val = NULL;
2940 } else {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002941 char *new_var = xasprintf("%s=%s", var, val);
Denys Vlasenko295fef82009-06-03 12:47:26 +02002942 set_local_var(new_var, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
Mike Frysingera4f331d2009-04-07 06:03:22 +00002943 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002944 }
2945 }
Denys Vlasenkoe85248a2010-05-22 06:20:26 +02002946 } /* one of "-=+?" */
Mike Frysingera4f331d2009-04-07 06:03:22 +00002947
Denys Vlasenkoe3be7842010-05-20 16:27:42 +02002948 *exp_saveptr = exp_save;
Denys Vlasenko4d8e5fd2010-05-21 01:15:42 +02002949 } /* if (exp_op) */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002950
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002951 arg[0] = first_ch;
2952#if ENABLE_HUSH_TICK
2953 store_val:
2954#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002955 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002956 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002957 if (val) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002958 /* unquoted var's contents should be globbed, so don't escape */
2959 smallint sv = output->o_escape;
2960 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002961 n = expand_on_ifs(output, n, val);
2962 val = NULL;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002963 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002964 }
2965 } else { /* quoted $VAR, val will be appended below */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002966 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002967 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002968 } /* default: */
2969 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002970
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002971 if (val) {
2972 o_addQstr(output, val, strlen(val));
2973 }
Denys Vlasenko3f78cec2010-05-21 17:54:46 +02002974 free(to_be_freed);
Mike Frysinger6379bb42009-03-28 18:55:03 +00002975 /* Do the check to avoid writing to a const string */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002976 if (*p != SPECIAL_VAR_SYMBOL)
Mike Frysinger6379bb42009-03-28 18:55:03 +00002977 *p = SPECIAL_VAR_SYMBOL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002978
2979#if ENABLE_HUSH_TICK
2980 o_free(&subst_result);
2981#endif
2982 arg = ++p;
2983 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
2984
2985 if (arg[0]) {
2986 debug_print_list("expand_vars_to_list[a]", output, n);
2987 /* this part is literal, and it was already pre-quoted
2988 * if needed (much earlier), do not use o_addQstr here! */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002989 o_addstr_with_NUL(output, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002990 debug_print_list("expand_vars_to_list[b]", output, n);
2991 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
2992 && !(ored_ch & 0x80) /* and all vars were not quoted. */
2993 ) {
2994 n--;
2995 /* allow to reuse list[n] later without re-growth */
2996 output->has_empty_slot = 1;
2997 } else {
2998 o_addchr(output, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00002999 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003000 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00003001}
3002
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003003static char **expand_variables(char **argv, int or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00003004{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003005 int n;
3006 char **list;
3007 char **v;
3008 o_string output = NULL_O_STRING;
3009
3010 if (or_mask & 0x100) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00003011 output.o_escape = 1; /* protect against globbing for "$var" */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003012 /* (unquoted $var will temporarily switch it off) */
3013 output.o_glob = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003014 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003015
3016 n = 0;
3017 v = argv;
3018 while (*v) {
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003019 n = expand_vars_to_list(&output, n, *v, (unsigned char)or_mask);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003020 v++;
3021 }
3022 debug_print_list("expand_variables", &output, n);
3023
3024 /* output.data (malloced in one block) gets returned in "list" */
3025 list = o_finalize_list(&output, n);
3026 debug_print_strings("expand_variables[1]", list);
3027 return list;
Eric Andersen25f27032001-04-26 23:22:31 +00003028}
3029
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003030static char **expand_strvec_to_strvec(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00003031{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003032 return expand_variables(argv, 0x100);
Eric Andersen25f27032001-04-26 23:22:31 +00003033}
3034
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02003035#if ENABLE_HUSH_BASH_COMPAT
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003036static char **expand_strvec_to_strvec_singleword_noglob(char **argv)
3037{
3038 return expand_variables(argv, 0x80);
3039}
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02003040#endif
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003041
3042#ifdef CMD_SINGLEWORD_NOGLOB_COND
3043static char **expand_strvec_to_strvec_singleword_noglob_cond(char **argv)
3044{
3045 int n;
3046 char **list;
3047 char **v;
3048 o_string output = NULL_O_STRING;
3049
3050 n = 0;
3051 v = argv;
3052 while (*v) {
3053 int is_var = is_well_formed_var_name(*v, '=');
3054 /* is_var * 0x80: singleword expansion for vars */
3055 n = expand_vars_to_list(&output, n, *v, is_var * 0x80);
3056
3057 /* Subtle! expand_vars_to_list did not glob last word yet.
3058 * It does this only when fed with further data.
3059 * Therefore we set globbing flags AFTER it, not before:
3060 */
3061
3062 /* if it is not recognizably abc=...; then: */
3063 output.o_escape = !is_var; /* protect against globbing for "$var" */
3064 /* (unquoted $var will temporarily switch it off) */
3065 output.o_glob = !is_var; /* and indeed do globbing */
3066 v++;
3067 }
3068 debug_print_list("expand_cond", &output, n);
3069
3070 /* output.data (malloced in one block) gets returned in "list" */
3071 list = o_finalize_list(&output, n);
3072 debug_print_strings("expand_cond[1]", list);
3073 return list;
3074}
3075#endif
3076
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003077/* Used for expansion of right hand of assignments */
3078/* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs
3079 * "v=/bin/c*" */
3080static char *expand_string_to_string(const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00003081{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003082 char *argv[2], **list;
3083
3084 argv[0] = (char*)str;
3085 argv[1] = NULL;
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003086 list = expand_variables(argv, 0x80); /* 0x80: singleword expansion */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003087 if (HUSH_DEBUG)
3088 if (!list[0] || list[1])
3089 bb_error_msg_and_die("BUG in varexp2");
3090 /* actually, just move string 2*sizeof(char*) bytes back */
3091 overlapping_strcpy((char*)list, list[0]);
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003092 unbackslash((char*)list);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003093 debug_printf_expand("string_to_string='%s'\n", (char*)list);
3094 return (char*)list;
3095}
3096
3097/* Used for "eval" builtin */
3098static char* expand_strvec_to_string(char **argv)
3099{
3100 char **list;
3101
3102 list = expand_variables(argv, 0x80);
3103 /* Convert all NULs to spaces */
3104 if (list[0]) {
3105 int n = 1;
3106 while (list[n]) {
3107 if (HUSH_DEBUG)
3108 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
3109 bb_error_msg_and_die("BUG in varexp3");
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00003110 /* bash uses ' ' regardless of $IFS contents */
3111 list[n][-1] = ' ';
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003112 n++;
3113 }
3114 }
3115 overlapping_strcpy((char*)list, list[0]);
3116 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
3117 return (char*)list;
3118}
3119
3120static char **expand_assignments(char **argv, int count)
3121{
3122 int i;
Denys Vlasenko29082232010-07-16 13:52:32 +02003123 char **p;
3124
3125 G.expanded_assignments = p = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003126 /* Expand assignments into one string each */
3127 for (i = 0; i < count; i++) {
Denys Vlasenko29082232010-07-16 13:52:32 +02003128 G.expanded_assignments = p = add_string_to_strings(p, expand_string_to_string(argv[i]));
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003129 }
Denys Vlasenko29082232010-07-16 13:52:32 +02003130 G.expanded_assignments = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003131 return p;
Eric Andersen25f27032001-04-26 23:22:31 +00003132}
3133
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003134
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003135#if BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003136/* never called */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003137void re_execute_shell(char ***to_free, const char *s,
3138 char *g_argv0, char **g_argv,
3139 char **builtin_argv) NORETURN;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003140
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003141static void reset_traps_to_defaults(void)
3142{
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00003143 /* This function is always called in a child shell
3144 * after fork (not vfork, NOMMU doesn't use this function).
Denis Vlasenko74a931a2009-04-15 23:29:44 +00003145 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00003146 unsigned sig;
3147 unsigned mask;
Denis Vlasenko74a931a2009-04-15 23:29:44 +00003148
Denys Vlasenko67f71862009-09-25 14:21:06 +02003149 /* Child shells are not interactive.
3150 * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
3151 * Testcase: (while :; do :; done) + ^Z should background.
3152 * Same goes for SIGTERM, SIGHUP, SIGINT.
3153 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00003154 if (!G.traps && !(G.non_DFL_mask & SPECIAL_INTERACTIVE_SIGS))
Denys Vlasenko67f71862009-09-25 14:21:06 +02003155 return; /* already no traps and no SPECIAL_INTERACTIVE_SIGS */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00003156
Denys Vlasenko67f71862009-09-25 14:21:06 +02003157 /* Switching off SPECIAL_INTERACTIVE_SIGS.
3158 * Stupid. It can be done with *single* &= op, but we can't use
3159 * the fact that G.blocked_set is implemented as a bitmask
3160 * in libc... */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00003161 mask = (SPECIAL_INTERACTIVE_SIGS >> 1);
3162 sig = 1;
3163 while (1) {
Denys Vlasenko67f71862009-09-25 14:21:06 +02003164 if (mask & 1) {
3165 /* Careful. Only if no trap or trap is not "" */
3166 if (!G.traps || !G.traps[sig] || G.traps[sig][0])
3167 sigdelset(&G.blocked_set, sig);
3168 }
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00003169 mask >>= 1;
3170 if (!mask)
3171 break;
3172 sig++;
3173 }
Denys Vlasenko67f71862009-09-25 14:21:06 +02003174 /* Our homegrown sig mask is saner to work with :) */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00003175 G.non_DFL_mask &= ~SPECIAL_INTERACTIVE_SIGS;
Denys Vlasenko67f71862009-09-25 14:21:06 +02003176
3177 /* Resetting all traps to default except empty ones */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00003178 mask = G.non_DFL_mask;
3179 if (G.traps) for (sig = 0; sig < NSIG; sig++, mask >>= 1) {
Denys Vlasenko67f71862009-09-25 14:21:06 +02003180 if (!G.traps[sig] || !G.traps[sig][0])
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003181 continue;
3182 free(G.traps[sig]);
3183 G.traps[sig] = NULL;
3184 /* There is no signal for 0 (EXIT) */
3185 if (sig == 0)
3186 continue;
Denys Vlasenko67f71862009-09-25 14:21:06 +02003187 /* There was a trap handler, we just removed it.
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00003188 * But if sig still has non-DFL handling,
Denys Vlasenko67f71862009-09-25 14:21:06 +02003189 * we should not unblock the sig. */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00003190 if (mask & 1)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003191 continue;
3192 sigdelset(&G.blocked_set, sig);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003193 }
Denis Vlasenko74a931a2009-04-15 23:29:44 +00003194 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003195}
3196
3197#else /* !BB_MMU */
3198
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003199static void re_execute_shell(char ***to_free, const char *s,
3200 char *g_argv0, char **g_argv,
3201 char **builtin_argv) NORETURN;
3202static void re_execute_shell(char ***to_free, const char *s,
3203 char *g_argv0, char **g_argv,
3204 char **builtin_argv)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003205{
Denys Vlasenko8391c482010-05-22 17:50:43 +02003206# define NOMMU_HACK_FMT ("-$%x:%x:%x:%x:%x:%llx" IF_HUSH_LOOPS(":%x"))
Denys Vlasenko6c93b242010-01-12 19:28:10 +01003207 /* delims + 2 * (number of bytes in printed hex numbers) */
3208 char param_buf[sizeof(NOMMU_HACK_FMT) + 2 * (sizeof(int)*6 + sizeof(long long)*1)];
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00003209 char *heredoc_argv[4];
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003210 struct variable *cur;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003211# if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkobc569742009-04-12 20:35:19 +00003212 struct function *funcp;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003213# endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003214 char **argv, **pp;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003215 unsigned cnt;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01003216 unsigned long long empty_trap_mask;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003217
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003218 if (!g_argv0) { /* heredoc */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00003219 argv = heredoc_argv;
3220 argv[0] = (char *) G.argv0_for_re_execing;
3221 argv[1] = (char *) "-<";
3222 argv[2] = (char *) s;
3223 argv[3] = NULL;
Denis Vlasenkof50caac2009-04-09 01:40:15 +00003224 pp = &argv[3]; /* used as pointer to empty environment */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00003225 goto do_exec;
3226 }
3227
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003228 cnt = 0;
3229 pp = builtin_argv;
3230 if (pp) while (*pp++)
3231 cnt++;
3232
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01003233 empty_trap_mask = 0;
3234 if (G.traps) {
3235 int sig;
3236 for (sig = 1; sig < NSIG; sig++) {
3237 if (G.traps[sig] && !G.traps[sig][0])
3238 empty_trap_mask |= 1LL << sig;
3239 }
3240 }
3241
Denys Vlasenko6c93b242010-01-12 19:28:10 +01003242 sprintf(param_buf, NOMMU_HACK_FMT
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003243 , (unsigned) G.root_pid
Denys Vlasenkodea47882009-10-09 15:40:49 +02003244 , (unsigned) G.root_ppid
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003245 , (unsigned) G.last_bg_pid
3246 , (unsigned) G.last_exitcode
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003247 , cnt
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01003248 , empty_trap_mask
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00003249 IF_HUSH_LOOPS(, G.depth_of_loop)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003250 );
Denys Vlasenko8391c482010-05-22 17:50:43 +02003251# undef NOMMU_HACK_FMT
Denys Vlasenko6c93b242010-01-12 19:28:10 +01003252 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<etc...> <vars...> <funcs...>
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003253 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003254 */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003255 cnt += 6;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003256 for (cur = G.top_var; cur; cur = cur->next) {
3257 if (!cur->flg_export || cur->flg_read_only)
3258 cnt += 2;
3259 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003260# if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkobc569742009-04-12 20:35:19 +00003261 for (funcp = G.top_func; funcp; funcp = funcp->next)
3262 cnt += 3;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003263# endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003264 pp = g_argv;
3265 while (*pp++)
3266 cnt++;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003267 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003268 *pp++ = (char *) G.argv0_for_re_execing;
3269 *pp++ = param_buf;
3270 for (cur = G.top_var; cur; cur = cur->next) {
3271 if (cur->varstr == hush_version_str)
3272 continue;
3273 if (cur->flg_read_only) {
3274 *pp++ = (char *) "-R";
3275 *pp++ = cur->varstr;
3276 } else if (!cur->flg_export) {
3277 *pp++ = (char *) "-V";
3278 *pp++ = cur->varstr;
3279 }
3280 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003281# if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkobc569742009-04-12 20:35:19 +00003282 for (funcp = G.top_func; funcp; funcp = funcp->next) {
3283 *pp++ = (char *) "-F";
3284 *pp++ = funcp->name;
3285 *pp++ = funcp->body_as_string;
3286 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003287# endif
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003288 /* We can pass activated traps here. Say, -Tnn:trap_string
3289 *
3290 * However, POSIX says that subshells reset signals with traps
3291 * to SIG_DFL.
3292 * I tested bash-3.2 and it not only does that with true subshells
3293 * of the form ( list ), but with any forked children shells.
3294 * I set trap "echo W" WINCH; and then tried:
3295 *
3296 * { echo 1; sleep 20; echo 2; } &
3297 * while true; do echo 1; sleep 20; echo 2; break; done &
3298 * true | { echo 1; sleep 20; echo 2; } | cat
3299 *
3300 * In all these cases sending SIGWINCH to the child shell
3301 * did not run the trap. If I add trap "echo V" WINCH;
3302 * _inside_ group (just before echo 1), it works.
3303 *
3304 * I conclude it means we don't need to pass active traps here.
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01003305 * Even if we would use signal handlers instead of signal masking
3306 * in order to implement trap handling,
3307 * exec syscall below resets signals to SIG_DFL for us.
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003308 */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00003309 *pp++ = (char *) "-c";
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003310 *pp++ = (char *) s;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003311 if (builtin_argv) {
3312 while (*++builtin_argv)
3313 *pp++ = *builtin_argv;
3314 *pp++ = (char *) "";
3315 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003316 *pp++ = g_argv0;
3317 while (*g_argv)
3318 *pp++ = *g_argv++;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003319 /* *pp = NULL; - is already there */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00003320 pp = environ;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003321
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00003322 do_exec:
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003323 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
3324 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00003325 execve(bb_busybox_exec_path, argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003326 /* Fallback. Useful for init=/bin/hush usage etc */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00003327 if (argv[0][0] == '/')
3328 execve(argv[0], argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003329 xfunc_error_retval = 127;
3330 bb_error_msg_and_die("can't re-execute the shell");
3331}
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003332#endif /* !BB_MMU */
3333
3334
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003335static void setup_heredoc(struct redir_struct *redir)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003336{
3337 struct fd_pair pair;
3338 pid_t pid;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003339 int len, written;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003340 /* the _body_ of heredoc (misleading field name) */
3341 const char *heredoc = redir->rd_filename;
3342 char *expanded;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003343#if !BB_MMU
3344 char **to_free;
3345#endif
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003346
3347 expanded = NULL;
3348 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
3349 expanded = expand_pseudo_dquoted(heredoc);
3350 if (expanded)
3351 heredoc = expanded;
3352 }
3353 len = strlen(heredoc);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003354
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00003355 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003356 xpiped_pair(pair);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003357 xmove_fd(pair.rd, redir->rd_fd);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003358
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003359 /* Try writing without forking. Newer kernels have
3360 * dynamically growing pipes. Must use non-blocking write! */
3361 ndelay_on(pair.wr);
3362 while (1) {
3363 written = write(pair.wr, heredoc, len);
3364 if (written <= 0)
3365 break;
3366 len -= written;
3367 if (len == 0) {
3368 close(pair.wr);
Denis Vlasenko1943aec2009-04-09 14:15:57 +00003369 free(expanded);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003370 return;
3371 }
3372 heredoc += written;
3373 }
3374 ndelay_off(pair.wr);
3375
3376 /* Okay, pipe buffer was not big enough */
3377 /* Note: we must not create a stray child (bastard? :)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003378 * for the unsuspecting parent process. Child creates a grandchild
3379 * and exits before parent execs the process which consumes heredoc
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003380 * (that exec happens after we return from this function) */
Denis Vlasenko41ddecd2009-04-15 21:58:14 +00003381#if !BB_MMU
3382 to_free = NULL;
3383#endif
Pascal Bellard926031b2010-07-04 15:32:38 +02003384 pid = xvfork();
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003385 if (pid == 0) {
3386 /* child */
Denis Vlasenko41ddecd2009-04-15 21:58:14 +00003387 disable_restore_tty_pgrp_on_exit();
Pascal Bellard926031b2010-07-04 15:32:38 +02003388 pid = BB_MMU ? xfork() : xvfork();
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003389 if (pid != 0)
3390 _exit(0);
3391 /* grandchild */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003392 close(redir->rd_fd); /* read side of the pipe */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003393#if BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003394 full_write(pair.wr, heredoc, len); /* may loop or block */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003395 _exit(0);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003396#else
3397 /* Delegate blocking writes to another process */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003398 xmove_fd(pair.wr, STDOUT_FILENO);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003399 re_execute_shell(&to_free, heredoc, NULL, NULL, NULL);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00003400#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003401 }
3402 /* parent */
Denys Vlasenko8d7be232009-05-25 16:38:32 +02003403#if ENABLE_HUSH_FAST
3404 G.count_SIGCHLD++;
3405//bb_error_msg("[%d] fork in setup_heredoc: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
3406#endif
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003407 enable_restore_tty_pgrp_on_exit();
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003408#if !BB_MMU
3409 free(to_free);
3410#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003411 close(pair.wr);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003412 free(expanded);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003413 wait(NULL); /* wait till child has died */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003414}
3415
Eric Andersen25f27032001-04-26 23:22:31 +00003416/* squirrel != NULL means we squirrel away copies of stdin, stdout,
3417 * and stderr if they are redirected. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003418static int setup_redirects(struct command *prog, int squirrel[])
Eric Andersen25f27032001-04-26 23:22:31 +00003419{
3420 int openfd, mode;
3421 struct redir_struct *redir;
3422
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003423 for (redir = prog->redirects; redir; redir = redir->next) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003424 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003425 /* rd_fd<<HERE case */
Denys Vlasenko1dd6cf82009-05-02 14:17:31 +02003426 if (squirrel && redir->rd_fd < 3
3427 && squirrel[redir->rd_fd] < 0
3428 ) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003429 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003430 }
3431 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
3432 * of the heredoc */
3433 debug_printf_parse("set heredoc '%s'\n",
3434 redir->rd_filename);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003435 setup_heredoc(redir);
Eric Andersen817e73c2001-06-06 17:56:09 +00003436 continue;
3437 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003438
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003439 if (redir->rd_dup == REDIRFD_TO_FILE) {
3440 /* rd_fd<*>file case (<*> is <,>,>>,<>) */
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00003441 char *p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003442 if (redir->rd_filename == NULL) {
3443 /* Something went wrong in the parse.
3444 * Pretend it didn't happen */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003445 bb_error_msg("bug in redirect parse");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003446 continue;
3447 }
Denis Vlasenko55789c62008-06-18 16:30:42 +00003448 mode = redir_table[redir->rd_type].mode;
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003449 p = expand_string_to_string(redir->rd_filename);
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00003450 openfd = open_or_warn(p, mode);
3451 free(p);
Eric Andersen25f27032001-04-26 23:22:31 +00003452 if (openfd < 0) {
3453 /* this could get lost if stderr has been redirected, but
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003454 * bash and ash both lose it as well (though zsh doesn't!) */
3455//what the above comment tries to say?
Eric Andersen25f27032001-04-26 23:22:31 +00003456 return 1;
3457 }
3458 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003459 /* rd_fd<*>rd_dup or rd_fd<*>- cases */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003460 openfd = redir->rd_dup;
Eric Andersen25f27032001-04-26 23:22:31 +00003461 }
3462
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003463 if (openfd != redir->rd_fd) {
Denys Vlasenko1dd6cf82009-05-02 14:17:31 +02003464 if (squirrel && redir->rd_fd < 3
3465 && squirrel[redir->rd_fd] < 0
3466 ) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003467 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Eric Andersen25f27032001-04-26 23:22:31 +00003468 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003469 if (openfd == REDIRFD_CLOSE) {
3470 /* "n>-" means "close me" */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003471 close(redir->rd_fd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00003472 } else {
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003473 xdup2(openfd, redir->rd_fd);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003474 if (redir->rd_dup == REDIRFD_TO_FILE)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003475 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00003476 }
Eric Andersen25f27032001-04-26 23:22:31 +00003477 }
3478 }
3479 return 0;
3480}
3481
3482static void restore_redirects(int squirrel[])
3483{
3484 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003485 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00003486 fd = squirrel[i];
3487 if (fd != -1) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003488 /* We simply die on error */
3489 xmove_fd(fd, i);
Eric Andersen25f27032001-04-26 23:22:31 +00003490 }
3491 }
3492}
3493
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003494
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003495static void free_pipe_list(struct pipe *head);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003496
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003497/* Return code is the exit status of the pipe */
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003498static void free_pipe(struct pipe *pi)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003499{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003500 char **p;
3501 struct command *command;
3502 struct redir_struct *r, *rnext;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003503 int a, i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003504
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003505 if (pi->stopped_cmds > 0) /* why? */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003506 return;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003507 debug_printf_clean("run pipe: (pid %d)\n", getpid());
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003508 for (i = 0; i < pi->num_cmds; i++) {
3509 command = &pi->cmds[i];
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003510 debug_printf_clean(" command %d:\n", i);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003511 if (command->argv) {
3512 for (a = 0, p = command->argv; *p; a++, p++) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003513 debug_printf_clean(" argv[%d] = %s\n", a, *p);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003514 }
3515 free_strings(command->argv);
3516 command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003517 }
3518 /* not "else if": on syntax error, we may have both! */
3519 if (command->group) {
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003520 debug_printf_clean(" begin group (cmd_type:%d)\n",
3521 command->cmd_type);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003522 free_pipe_list(command->group);
3523 debug_printf_clean(" end group\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003524 command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003525 }
Denis Vlasenkoed055212009-04-11 10:37:10 +00003526 /* else is crucial here.
3527 * If group != NULL, child_func is meaningless */
3528#if ENABLE_HUSH_FUNCTIONS
3529 else if (command->child_func) {
3530 debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
3531 command->child_func->parent_cmd = NULL;
3532 }
3533#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003534#if !BB_MMU
3535 free(command->group_as_string);
3536 command->group_as_string = NULL;
3537#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003538 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003539 debug_printf_clean(" redirect %d%s",
3540 r->rd_fd, redir_table[r->rd_type].descrip);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003541 /* guard against the case >$FOO, where foo is unset or blank */
3542 if (r->rd_filename) {
3543 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
3544 free(r->rd_filename);
3545 r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003546 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003547 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003548 rnext = r->next;
3549 free(r);
3550 }
3551 command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003552 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003553 free(pi->cmds); /* children are an array, they get freed all at once */
3554 pi->cmds = NULL;
3555#if ENABLE_HUSH_JOB
3556 free(pi->cmdtext);
3557 pi->cmdtext = NULL;
3558#endif
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003559}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003560
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003561static void free_pipe_list(struct pipe *head)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003562{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003563 struct pipe *pi, *next;
3564
3565 for (pi = head; pi; pi = next) {
3566#if HAS_KEYWORDS
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003567 debug_printf_clean(" pipe reserved word %d\n", pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003568#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003569 free_pipe(pi);
3570 debug_printf_clean("pipe followup code %d\n", pi->followup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003571 next = pi->next;
3572 /*pi->next = NULL;*/
3573 free(pi);
3574 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003575}
3576
3577
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003578static int run_list(struct pipe *pi);
Denis Vlasenkobc569742009-04-12 20:35:19 +00003579#if BB_MMU
3580#define parse_stream(pstring, input, end_trigger) \
3581 parse_stream(input, end_trigger)
3582#endif
3583static struct pipe *parse_stream(char **pstring,
3584 struct in_str *input,
3585 int end_trigger);
3586static void parse_and_run_string(const char *s);
3587
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003588
Mike Frysinger93cadc22009-05-27 17:06:25 -04003589static char *find_in_path(const char *arg)
3590{
3591 char *ret = NULL;
3592 const char *PATH = get_local_var_value("PATH");
3593
3594 if (!PATH)
3595 return NULL;
3596
3597 while (1) {
3598 const char *end = strchrnul(PATH, ':');
3599 int sz = end - PATH; /* must be int! */
3600
3601 free(ret);
3602 if (sz != 0) {
3603 ret = xasprintf("%.*s/%s", sz, PATH, arg);
3604 } else {
3605 /* We have xxx::yyyy in $PATH,
3606 * it means "use current dir" */
3607 ret = xstrdup(arg);
3608 }
3609 if (access(ret, F_OK) == 0)
3610 break;
3611
3612 if (*end == '\0') {
3613 free(ret);
3614 return NULL;
3615 }
3616 PATH = end + 1;
3617 }
3618
3619 return ret;
3620}
3621
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003622static const struct built_in_command* find_builtin_helper(const char *name,
3623 const struct built_in_command *x,
3624 const struct built_in_command *end)
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003625{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003626 while (x != end) {
Denys Vlasenko17323a62010-01-28 01:57:05 +01003627 if (strcmp(name, x->b_cmd) != 0) {
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003628 x++;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003629 continue;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003630 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003631 debug_printf_exec("found builtin '%s'\n", name);
3632 return x;
3633 }
3634 return NULL;
3635}
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003636static const struct built_in_command* find_builtin1(const char *name)
3637{
3638 return find_builtin_helper(name, bltins1, &bltins1[ARRAY_SIZE(bltins1)]);
3639}
3640static const struct built_in_command* find_builtin(const char *name)
3641{
3642 const struct built_in_command *x = find_builtin1(name);
3643 if (x)
3644 return x;
3645 return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]);
3646}
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003647
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003648#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko873273d2009-09-12 14:47:41 +02003649static struct function **find_function_slot(const char *name)
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003650{
Denys Vlasenko873273d2009-09-12 14:47:41 +02003651 struct function **funcpp = &G.top_func;
3652 while (*funcpp) {
3653 if (strcmp(name, (*funcpp)->name) == 0) {
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003654 break;
3655 }
Denys Vlasenko873273d2009-09-12 14:47:41 +02003656 funcpp = &(*funcpp)->next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003657 }
Denys Vlasenko873273d2009-09-12 14:47:41 +02003658 return funcpp;
3659}
3660
3661static const struct function *find_function(const char *name)
3662{
3663 const struct function *funcp = *find_function_slot(name);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003664 if (funcp)
3665 debug_printf_exec("found function '%s'\n", name);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003666 return funcp;
3667}
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00003668
Denis Vlasenkobc569742009-04-12 20:35:19 +00003669/* Note: takes ownership on name ptr */
3670static struct function *new_function(char *name)
3671{
Denys Vlasenko873273d2009-09-12 14:47:41 +02003672 struct function **funcpp = find_function_slot(name);
3673 struct function *funcp = *funcpp;
Denis Vlasenkobc569742009-04-12 20:35:19 +00003674
Denys Vlasenko873273d2009-09-12 14:47:41 +02003675 if (funcp != NULL) {
3676 struct command *cmd = funcp->parent_cmd;
Denis Vlasenkobc569742009-04-12 20:35:19 +00003677 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
3678 if (!cmd) {
3679 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
3680 free(funcp->name);
3681 /* Note: if !funcp->body, do not free body_as_string!
3682 * This is a special case of "-F name body" function:
3683 * body_as_string was not malloced! */
3684 if (funcp->body) {
3685 free_pipe_list(funcp->body);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003686# if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00003687 free(funcp->body_as_string);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003688# endif
Denis Vlasenkobc569742009-04-12 20:35:19 +00003689 }
3690 } else {
3691 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
3692 cmd->argv[0] = funcp->name;
3693 cmd->group = funcp->body;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003694# if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00003695 cmd->group_as_string = funcp->body_as_string;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003696# endif
Denis Vlasenkobc569742009-04-12 20:35:19 +00003697 }
Denys Vlasenko873273d2009-09-12 14:47:41 +02003698 } else {
3699 debug_printf_exec("remembering new function '%s'\n", name);
3700 funcp = *funcpp = xzalloc(sizeof(*funcp));
3701 /*funcp->next = NULL;*/
Denis Vlasenkobc569742009-04-12 20:35:19 +00003702 }
Denys Vlasenko873273d2009-09-12 14:47:41 +02003703
Denis Vlasenkobc569742009-04-12 20:35:19 +00003704 funcp->name = name;
3705 return funcp;
3706}
3707
Denis Vlasenko40e84372009-04-18 11:23:38 +00003708static void unset_func(const char *name)
3709{
Denys Vlasenko873273d2009-09-12 14:47:41 +02003710 struct function **funcpp = find_function_slot(name);
3711 struct function *funcp = *funcpp;
Denis Vlasenko40e84372009-04-18 11:23:38 +00003712
Denys Vlasenko873273d2009-09-12 14:47:41 +02003713 if (funcp != NULL) {
3714 debug_printf_exec("freeing function '%s'\n", funcp->name);
3715 *funcpp = funcp->next;
3716 /* funcp is unlinked now, deleting it.
3717 * Note: if !funcp->body, the function was created by
3718 * "-F name body", do not free ->body_as_string
3719 * and ->name as they were not malloced. */
3720 if (funcp->body) {
3721 free_pipe_list(funcp->body);
3722 free(funcp->name);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003723# if !BB_MMU
Denys Vlasenko873273d2009-09-12 14:47:41 +02003724 free(funcp->body_as_string);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003725# endif
Denis Vlasenko40e84372009-04-18 11:23:38 +00003726 }
Denys Vlasenko873273d2009-09-12 14:47:41 +02003727 free(funcp);
Denis Vlasenko40e84372009-04-18 11:23:38 +00003728 }
3729}
3730
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003731# if BB_MMU
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003732#define exec_function(to_free, funcp, argv) \
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003733 exec_function(funcp, argv)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003734# endif
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003735static void exec_function(char ***to_free,
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003736 const struct function *funcp,
3737 char **argv) NORETURN;
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003738static void exec_function(char ***to_free,
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003739 const struct function *funcp,
3740 char **argv)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003741{
3742# if BB_MMU
3743 int n = 1;
3744
3745 argv[0] = G.global_argv[0];
3746 G.global_argv = argv;
3747 while (*++argv)
3748 n++;
3749 G.global_argc = n;
Denis Vlasenkobc569742009-04-12 20:35:19 +00003750 /* On MMU, funcp->body is always non-NULL */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003751 n = run_list(funcp->body);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01003752 fflush_all();
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003753 _exit(n);
3754# else
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003755 re_execute_shell(to_free,
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003756 funcp->body_as_string,
3757 G.global_argv[0],
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003758 argv + 1,
3759 NULL);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00003760# endif
3761}
3762
3763static int run_function(const struct function *funcp, char **argv)
3764{
Denis Vlasenko270b1c32009-04-17 18:54:50 +00003765 int rc;
3766 save_arg_t sv;
Mike Frysinger885b6f22009-04-18 21:04:25 +00003767 smallint sv_flg;
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00003768
Denis Vlasenko270b1c32009-04-17 18:54:50 +00003769 save_and_replace_G_args(&sv, argv);
Denys Vlasenko295fef82009-06-03 12:47:26 +02003770
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00003771 /* "we are in function, ok to use return" */
3772 sv_flg = G.flag_return_in_progress;
3773 G.flag_return_in_progress = -1;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003774# if ENABLE_HUSH_LOCAL
Denys Vlasenko295fef82009-06-03 12:47:26 +02003775 G.func_nest_level++;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003776# endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00003777
Denis Vlasenkobc569742009-04-12 20:35:19 +00003778 /* On MMU, funcp->body is always non-NULL */
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003779# if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00003780 if (!funcp->body) {
3781 /* Function defined by -F */
3782 parse_and_run_string(funcp->body_as_string);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00003783 rc = G.last_exitcode;
Denis Vlasenkobc569742009-04-12 20:35:19 +00003784 } else
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003785# endif
Denis Vlasenkobc569742009-04-12 20:35:19 +00003786 {
Denis Vlasenko270b1c32009-04-17 18:54:50 +00003787 rc = run_list(funcp->body);
Denis Vlasenkobc569742009-04-12 20:35:19 +00003788 }
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00003789
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003790# if ENABLE_HUSH_LOCAL
Denys Vlasenko295fef82009-06-03 12:47:26 +02003791 {
3792 struct variable *var;
3793 struct variable **var_pp;
3794
3795 var_pp = &G.top_var;
3796 while ((var = *var_pp) != NULL) {
3797 if (var->func_nest_level < G.func_nest_level) {
3798 var_pp = &var->next;
3799 continue;
3800 }
3801 /* Unexport */
3802 if (var->flg_export)
3803 bb_unsetenv(var->varstr);
3804 /* Remove from global list */
3805 *var_pp = var->next;
3806 /* Free */
3807 if (!var->max_len)
3808 free(var->varstr);
3809 free(var);
3810 }
3811 G.func_nest_level--;
3812 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003813# endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00003814 G.flag_return_in_progress = sv_flg;
Denys Vlasenko295fef82009-06-03 12:47:26 +02003815
Denis Vlasenko270b1c32009-04-17 18:54:50 +00003816 restore_G_args(&sv, argv);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00003817
Denis Vlasenko270b1c32009-04-17 18:54:50 +00003818 return rc;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003819}
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003820#endif /* ENABLE_HUSH_FUNCTIONS */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003821
3822
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003823#if BB_MMU
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003824#define exec_builtin(to_free, x, argv) \
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003825 exec_builtin(x, argv)
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003826#else
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003827#define exec_builtin(to_free, x, argv) \
3828 exec_builtin(to_free, argv)
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003829#endif
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003830static void exec_builtin(char ***to_free,
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003831 const struct built_in_command *x,
3832 char **argv) NORETURN;
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003833static void exec_builtin(char ***to_free,
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003834 const struct built_in_command *x,
3835 char **argv)
3836{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003837#if BB_MMU
Denys Vlasenko17323a62010-01-28 01:57:05 +01003838 int rcode = x->b_function(argv);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01003839 fflush_all();
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003840 _exit(rcode);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003841#else
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003842 /* On NOMMU, we must never block!
3843 * Example: { sleep 99 | read line; } & echo Ok
3844 */
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003845 re_execute_shell(to_free,
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003846 argv[0],
3847 G.global_argv[0],
3848 G.global_argv + 1,
3849 argv);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003850#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003851}
3852
3853
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02003854static void execvp_or_die(char **argv) NORETURN;
3855static void execvp_or_die(char **argv)
3856{
3857 debug_printf_exec("execing '%s'\n", argv[0]);
3858 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
3859 execvp(argv[0], argv);
3860 bb_perror_msg("can't execute '%s'", argv[0]);
3861 _exit(127); /* bash compat */
3862}
3863
Denys Vlasenko202a2d12010-07-16 12:36:14 +02003864#if ENABLE_HUSH_MODE_X
Denys Vlasenko3f5fae02010-07-16 12:35:35 +02003865static void dump_cmd_in_x_mode(char **argv)
3866{
Denys Vlasenko202a2d12010-07-16 12:36:14 +02003867 if (G_x_mode && argv) {
Denys Vlasenko3f5fae02010-07-16 12:35:35 +02003868 /* We want to output the line in one write op */
3869 char *buf, *p;
3870 int len;
3871 int n;
3872
3873 len = 3;
3874 n = 0;
3875 while (argv[n])
3876 len += strlen(argv[n++]) + 1;
3877 buf = xmalloc(len);
3878 buf[0] = '+';
3879 p = buf + 1;
3880 n = 0;
3881 while (argv[n])
3882 p += sprintf(p, " %s", argv[n++]);
3883 *p++ = '\n';
3884 *p = '\0';
3885 fputs(buf, stderr);
3886 free(buf);
3887 }
3888}
Denys Vlasenko202a2d12010-07-16 12:36:14 +02003889#else
3890# define dump_cmd_in_x_mode(argv) ((void)0)
3891#endif
Denys Vlasenko3f5fae02010-07-16 12:35:35 +02003892
Denis Vlasenkocc90f442009-04-08 16:40:34 +00003893#if BB_MMU
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003894#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
3895 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
3896#define pseudo_exec(nommu_save, command, argv_expanded) \
3897 pseudo_exec(command, argv_expanded)
3898#endif
3899
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003900/* Called after [v]fork() in run_pipe, or from builtin_exec.
Denis Vlasenko8412d792007-10-01 09:59:47 +00003901 * Never returns.
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003902 * Don't exit() here. If you don't exec, use _exit instead.
Eric Andersen94ac2442001-05-22 19:05:18 +00003903 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00003904 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003905static void pseudo_exec_argv(nommu_save_t *nommu_save,
3906 char **argv, int assignment_cnt,
3907 char **argv_expanded) NORETURN;
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02003908static NOINLINE void pseudo_exec_argv(nommu_save_t *nommu_save,
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003909 char **argv, int assignment_cnt,
3910 char **argv_expanded)
Eric Andersen25f27032001-04-26 23:22:31 +00003911{
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003912 char **new_env;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00003913
Denis Vlasenko9504e442008-10-29 01:19:15 +00003914 new_env = expand_assignments(argv, assignment_cnt);
Denys Vlasenko3f5fae02010-07-16 12:35:35 +02003915 dump_cmd_in_x_mode(new_env);
Denys Vlasenko889550b2010-07-14 19:01:25 +02003916
3917 if (!argv[assignment_cnt]) {
3918 /* Case when we are here: ... | var=val | ...
3919 * (note that we do not exit early, i.e., do not optimize out
3920 * expand_assignments(): think about ... | var=`sleep 1` | ...
3921 */
3922 free_strings(new_env);
3923 _exit(EXIT_SUCCESS);
3924 }
3925
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003926#if BB_MMU
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003927 set_vars_and_save_old(new_env);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003928 free(new_env); /* optional */
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003929 /* we can also destroy set_vars_and_save_old's return value,
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003930 * to save memory */
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003931#else
3932 nommu_save->new_env = new_env;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003933 nommu_save->old_vars = set_vars_and_save_old(new_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003934#endif
Denys Vlasenko889550b2010-07-14 19:01:25 +02003935
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003936 if (argv_expanded) {
3937 argv = argv_expanded;
3938 } else {
Denis Vlasenko37181682009-04-03 03:19:15 +00003939 argv = expand_strvec_to_strvec(argv + assignment_cnt);
Denis Vlasenko76d50412008-06-10 16:19:39 +00003940#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003941 nommu_save->argv = argv;
Denis Vlasenko76d50412008-06-10 16:19:39 +00003942#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003943 }
Denys Vlasenko3f5fae02010-07-16 12:35:35 +02003944 dump_cmd_in_x_mode(argv);
Denis Vlasenko764d59d2007-05-14 16:23:23 +00003945
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003946#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
3947 if (strchr(argv[0], '/') != NULL)
3948 goto skip;
3949#endif
3950
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003951 /* Check if the command matches any of the builtins.
Denis Vlasenko1359da62007-04-21 23:27:30 +00003952 * Depending on context, this might be redundant. But it's
3953 * easier to waste a few CPU cycles than it is to figure out
3954 * if this is one of those cases.
3955 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003956 {
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02003957 /* On NOMMU, it is more expensive to re-execute shell
3958 * just in order to run echo or test builtin.
3959 * It's better to skip it here and run corresponding
3960 * non-builtin later. */
3961 const struct built_in_command *x;
3962 x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003963 if (x) {
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003964 exec_builtin(&nommu_save->argv_from_re_execing, x, argv);
Eric Andersen94ac2442001-05-22 19:05:18 +00003965 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00003966 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003967#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003968 /* Check if the command matches any functions */
3969 {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003970 const struct function *funcp = find_function(argv[0]);
3971 if (funcp) {
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003972 exec_function(&nommu_save->argv_from_re_execing, funcp, argv);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003973 }
3974 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003975#endif
Eric Andersen78a7c992001-05-15 16:30:25 +00003976
Denis Vlasenko80d14be2007-04-10 23:03:30 +00003977#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003978 /* Check if the command matches any busybox applets */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003979 {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00003980 int a = find_applet_by_name(argv[0]);
3981 if (a >= 0) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003982# if BB_MMU /* see above why on NOMMU it is not allowed */
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00003983 if (APPLET_IS_NOEXEC(a)) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003984 debug_printf_exec("running applet '%s'\n", argv[0]);
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00003985 run_applet_no_and_exit(a, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003986 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003987# endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003988 /* Re-exec ourselves */
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003989 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003990 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
3991 execv(bb_busybox_exec_path, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003992 /* If they called chroot or otherwise made the binary no longer
3993 * executable, fall through */
3994 }
3995 }
Eric Andersenaac75e52001-04-30 18:18:45 +00003996#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003997
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003998#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003999 skip:
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004000#endif
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02004001 execvp_or_die(argv);
Denis Vlasenko1359da62007-04-21 23:27:30 +00004002}
4003
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004004/* Called after [v]fork() in run_pipe
Denis Vlasenko8412d792007-10-01 09:59:47 +00004005 */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004006static void pseudo_exec(nommu_save_t *nommu_save,
4007 struct command *command,
4008 char **argv_expanded) NORETURN;
4009static void pseudo_exec(nommu_save_t *nommu_save,
4010 struct command *command,
4011 char **argv_expanded)
Denis Vlasenko1359da62007-04-21 23:27:30 +00004012{
Denis Vlasenko552433b2009-04-04 19:29:21 +00004013 if (command->argv) {
4014 pseudo_exec_argv(nommu_save, command->argv,
4015 command->assignment_cnt, argv_expanded);
4016 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00004017
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004018 if (command->group) {
Denis Vlasenko552433b2009-04-04 19:29:21 +00004019 /* Cases when we are here:
4020 * ( list )
4021 * { list } &
4022 * ... | ( list ) | ...
4023 * ... | { list } | ...
4024 */
4025#if BB_MMU
Denis Vlasenko3b492162007-12-24 14:26:57 +00004026 int rcode;
Denis Vlasenko05743d72008-02-10 12:10:08 +00004027 debug_printf_exec("pseudo_exec: run_list\n");
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004028 reset_traps_to_defaults();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004029 rcode = run_list(command->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00004030 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00004031 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00004032 _exit(rcode);
Denis Vlasenko552433b2009-04-04 19:29:21 +00004033#else
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004034 re_execute_shell(&nommu_save->argv_from_re_execing,
4035 command->group_as_string,
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004036 G.global_argv[0],
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02004037 G.global_argv + 1,
4038 NULL);
Denis Vlasenko8412d792007-10-01 09:59:47 +00004039#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004040 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00004041
Denis Vlasenko34d4d892009-04-04 20:24:37 +00004042 /* Case when we are here: ... | >file */
4043 debug_printf_exec("pseudo_exec'ed null command\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00004044 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00004045}
4046
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004047#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00004048static const char *get_cmdtext(struct pipe *pi)
4049{
4050 char **argv;
4051 char *p;
4052 int len;
4053
4054 /* This is subtle. ->cmdtext is created only on first backgrounding.
4055 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004056 * On subsequent bg argv is trashed, but we won't use it */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00004057 if (pi->cmdtext)
4058 return pi->cmdtext;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004059 argv = pi->cmds[0].argv;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004060 if (!argv || !argv[0]) {
4061 pi->cmdtext = xzalloc(1);
4062 return pi->cmdtext;
4063 }
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00004064
4065 len = 0;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00004066 do {
4067 len += strlen(*argv) + 1;
4068 } while (*++argv);
4069 p = xmalloc(len);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00004070 pi->cmdtext = p;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004071 argv = pi->cmds[0].argv;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00004072 do {
4073 len = strlen(*argv);
4074 memcpy(p, *argv, len);
4075 p += len;
4076 *p++ = ' ';
4077 } while (*++argv);
4078 p[-1] = '\0';
4079 return pi->cmdtext;
4080}
4081
Eric Andersenbafd94f2001-05-02 16:11:59 +00004082static void insert_bg_job(struct pipe *pi)
4083{
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00004084 struct pipe *job, **jobp;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004085 int i;
Eric Andersenbafd94f2001-05-02 16:11:59 +00004086
4087 /* Linear search for the ID of the job to use */
4088 pi->jobid = 1;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00004089 for (job = G.job_list; job; job = job->next)
4090 if (job->jobid >= pi->jobid)
4091 pi->jobid = job->jobid + 1;
Eric Andersenbafd94f2001-05-02 16:11:59 +00004092
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00004093 /* Add job to the list of running jobs */
4094 jobp = &G.job_list;
4095 while ((job = *jobp) != NULL)
4096 jobp = &job->next;
4097 job = *jobp = xmalloc(sizeof(*job));
Eric Andersenbafd94f2001-05-02 16:11:59 +00004098
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00004099 *job = *pi; /* physical copy */
4100 job->next = NULL;
4101 job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
4102 /* Cannot copy entire pi->cmds[] vector! This causes double frees */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004103 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00004104 job->cmds[i].pid = pi->cmds[i].pid;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00004105 /* all other fields are not used and stay zero */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004106 }
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00004107 job->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00004108
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004109 if (G_interactive_fd)
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00004110 printf("[%d] %d %s\n", job->jobid, job->cmds[0].pid, job->cmdtext);
4111 /* Last command's pid goes to $! */
4112 G.last_bg_pid = job->cmds[job->num_cmds - 1].pid;
4113 G.last_jobid = job->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00004114}
4115
Eric Andersenbafd94f2001-05-02 16:11:59 +00004116static void remove_bg_job(struct pipe *pi)
4117{
4118 struct pipe *prev_pipe;
4119
Denis Vlasenko87a86552008-07-29 19:43:10 +00004120 if (pi == G.job_list) {
4121 G.job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00004122 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00004123 prev_pipe = G.job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00004124 while (prev_pipe->next != pi)
4125 prev_pipe = prev_pipe->next;
4126 prev_pipe->next = pi->next;
4127 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00004128 if (G.job_list)
4129 G.last_jobid = G.job_list->jobid;
Eric Andersen028b65b2001-06-28 01:10:11 +00004130 else
Denis Vlasenko87a86552008-07-29 19:43:10 +00004131 G.last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00004132}
Eric Andersen028b65b2001-06-28 01:10:11 +00004133
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00004134/* Remove a backgrounded job */
Denis Vlasenko1359da62007-04-21 23:27:30 +00004135static void delete_finished_bg_job(struct pipe *pi)
4136{
4137 remove_bg_job(pi);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004138 pi->stopped_cmds = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004139 free_pipe(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00004140 free(pi);
4141}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004142#endif /* JOB */
Eric Andersenbafd94f2001-05-02 16:11:59 +00004143
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00004144/* Check to see if any processes have exited -- if they
4145 * have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00004146static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00004147{
Eric Andersenc798b072001-06-22 06:23:03 +00004148 int attributes;
4149 int status;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004150#if ENABLE_HUSH_JOB
Eric Andersenbafd94f2001-05-02 16:11:59 +00004151 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00004152#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00004153 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004154 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00004155
Denis Vlasenkod5762932009-03-31 11:22:57 +00004156 debug_printf_jobs("checkjobs %p\n", fg_pipe);
4157
Eric Andersenc798b072001-06-22 06:23:03 +00004158 attributes = WUNTRACED;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00004159 if (fg_pipe == NULL)
Eric Andersenc798b072001-06-22 06:23:03 +00004160 attributes |= WNOHANG;
Eric Andersenc798b072001-06-22 06:23:03 +00004161
Denys Vlasenkoe2df5f42009-05-26 14:34:10 +02004162 errno = 0;
4163#if ENABLE_HUSH_FAST
4164 if (G.handled_SIGCHLD == G.count_SIGCHLD) {
4165//bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p",
4166//getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe);
Denys Vlasenko68759ed2009-05-26 14:39:41 +02004167 /* There was neither fork nor SIGCHLD since last waitpid */
4168 /* Avoid doing waitpid syscall if possible */
Denys Vlasenkoe2df5f42009-05-26 14:34:10 +02004169 if (!G.we_have_children) {
4170 errno = ECHILD;
4171 return -1;
4172 }
4173 if (fg_pipe == NULL) { /* is WNOHANG set? */
4174 /* We have children, but they did not exit
4175 * or stop yet (we saw no SIGCHLD) */
4176 return 0;
4177 }
4178 /* else: !WNOHANG, waitpid will block, can't short-circuit */
4179 }
4180#endif
4181
Denis Vlasenko1359da62007-04-21 23:27:30 +00004182/* Do we do this right?
4183 * bash-3.00# sleep 20 | false
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004184 * <ctrl-Z pressed>
Denis Vlasenko1359da62007-04-21 23:27:30 +00004185 * [3]+ Stopped sleep 20 | false
4186 * bash-3.00# echo $?
4187 * 1 <========== bg pipe is not fully done, but exitcode is already known!
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00004188 * [hush 1.14.0: yes we do it right]
Denis Vlasenko1359da62007-04-21 23:27:30 +00004189 */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004190 wait_more:
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004191 while (1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00004192 int i;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004193 int dead;
4194
Denys Vlasenko8d7be232009-05-25 16:38:32 +02004195#if ENABLE_HUSH_FAST
4196 i = G.count_SIGCHLD;
4197#endif
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004198 childpid = waitpid(-1, &status, attributes);
4199 if (childpid <= 0) {
4200 if (childpid && errno != ECHILD)
4201 bb_perror_msg("waitpid");
Denys Vlasenko8d7be232009-05-25 16:38:32 +02004202#if ENABLE_HUSH_FAST
4203 else { /* Until next SIGCHLD, waitpid's are useless */
Denys Vlasenkoe2df5f42009-05-26 14:34:10 +02004204 G.we_have_children = (childpid == 0);
Denys Vlasenko8d7be232009-05-25 16:38:32 +02004205 G.handled_SIGCHLD = i;
4206//bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
4207 }
4208#endif
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004209 break;
4210 }
4211 dead = WIFEXITED(status) || WIFSIGNALED(status);
4212
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00004213#if DEBUG_JOBS
Denis Vlasenko1359da62007-04-21 23:27:30 +00004214 if (WIFSTOPPED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00004215 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00004216 childpid, WSTOPSIG(status), WEXITSTATUS(status));
4217 if (WIFSIGNALED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00004218 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00004219 childpid, WTERMSIG(status), WEXITSTATUS(status));
4220 if (WIFEXITED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00004221 debug_printf_jobs("pid %d exited, exitcode %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00004222 childpid, WEXITSTATUS(status));
4223#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004224 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00004225 if (fg_pipe) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004226 for (i = 0; i < fg_pipe->num_cmds; i++) {
4227 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
4228 if (fg_pipe->cmds[i].pid != childpid)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00004229 continue;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00004230 if (dead) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004231 fg_pipe->cmds[i].pid = 0;
4232 fg_pipe->alive_cmds--;
4233 if (i == fg_pipe->num_cmds - 1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00004234 /* last process gives overall exitstatus */
4235 rcode = WEXITSTATUS(status);
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02004236 /* bash prints killer signal's name for *last*
Denis Vlasenko40e84372009-04-18 11:23:38 +00004237 * process in pipe (prints just newline for SIGINT).
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02004238 * Mimic this. Example: "sleep 5" + (^\ or kill -QUIT)
Denis Vlasenko40e84372009-04-18 11:23:38 +00004239 */
4240 if (WIFSIGNALED(status)) {
Denis Vlasenko38e626d2009-04-18 12:58:19 +00004241 int sig = WTERMSIG(status);
4242 printf("%s\n", sig == SIGINT ? "" : get_signame(sig));
Denys Vlasenkoa4899ef2010-01-04 11:37:09 +01004243 /* TODO: MIPS has 128 sigs (1..128), what if sig==128 here?
4244 * Maybe we need to use sig | 128? */
4245 rcode = sig + 128;
Denis Vlasenko40e84372009-04-18 11:23:38 +00004246 }
Denys Vlasenkoa4899ef2010-01-04 11:37:09 +01004247 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
Denis Vlasenko1359da62007-04-21 23:27:30 +00004248 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00004249 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004250 fg_pipe->cmds[i].is_stopped = 1;
4251 fg_pipe->stopped_cmds++;
Eric Andersenc798b072001-06-22 06:23:03 +00004252 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004253 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
4254 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
4255 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00004256 /* All processes in fg pipe have exited or stopped */
4257/* Note: *non-interactive* bash does not continue if all processes in fg pipe
4258 * are stopped. Testcase: "cat | cat" in a script (not on command line!)
4259 * and "killall -STOP cat" */
4260 if (G_interactive_fd) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00004261#if ENABLE_HUSH_JOB
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00004262 if (fg_pipe->alive_cmds)
4263 insert_bg_job(fg_pipe);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00004264#endif
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00004265 return rcode;
4266 }
Denys Vlasenko6f226242009-06-03 14:37:30 +02004267 if (!fg_pipe->alive_cmds)
4268 return rcode;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00004269 }
4270 /* There are still running processes in the fg pipe */
4271 goto wait_more; /* do waitpid again */
Eric Andersenc798b072001-06-22 06:23:03 +00004272 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00004273 /* it wasnt fg_pipe, look for process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00004274 }
4275
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004276#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004277 /* We asked to wait for bg or orphaned children */
4278 /* No need to remember exitcode in this case */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004279 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004280 for (i = 0; i < pi->num_cmds; i++) {
4281 if (pi->cmds[i].pid == childpid)
Denis Vlasenko5f786c22007-04-20 08:35:45 +00004282 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00004283 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00004284 }
Denis Vlasenko5f786c22007-04-20 08:35:45 +00004285 /* Happens when shell is used as init process (init=/bin/sh) */
4286 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00004287 continue; /* do waitpid again */
Eric Andersenaeb44c42001-05-22 20:29:00 +00004288
Denis Vlasenko5f786c22007-04-20 08:35:45 +00004289 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00004290 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00004291 /* child exited */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004292 pi->cmds[i].pid = 0;
4293 pi->alive_cmds--;
4294 if (!pi->alive_cmds) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004295 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00004296 printf(JOB_STATUS_FORMAT, pi->jobid,
4297 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00004298 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00004299 }
4300 } else {
4301 /* child stopped */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004302 pi->cmds[i].is_stopped = 1;
4303 pi->stopped_cmds++;
Eric Andersenbafd94f2001-05-02 16:11:59 +00004304 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00004305#endif
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00004306 } /* while (waitpid succeeds)... */
Eric Andersenbafd94f2001-05-02 16:11:59 +00004307
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004308 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00004309}
4310
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004311#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +00004312static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
4313{
4314 pid_t p;
4315 int rcode = checkjobs(fg_pipe);
Mike Frysinger38478a62009-05-20 04:48:06 -04004316 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00004317 /* Job finished, move the shell to the foreground */
4318 p = getpgrp(); /* our process group id */
4319 debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p);
4320 tcsetpgrp(G_interactive_fd, p);
4321 }
Denis Vlasenko52881e92007-04-21 13:42:52 +00004322 return rcode;
4323}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00004324#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00004325
Denis Vlasenko34d4d892009-04-04 20:24:37 +00004326/* Start all the jobs, but don't wait for anything to finish.
4327 * See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00004328 *
Denis Vlasenko552433b2009-04-04 19:29:21 +00004329 * Return code is normally -1, when the caller has to wait for children
Eric Andersen25f27032001-04-26 23:22:31 +00004330 * to finish to determine the exit status of the pipe. If the pipe
4331 * is a simple builtin command, however, the action is done by the
Denis Vlasenko05743d72008-02-10 12:10:08 +00004332 * time run_pipe returns, and the exit code is provided as the
Eric Andersen25f27032001-04-26 23:22:31 +00004333 * return value.
4334 *
Denis Vlasenko170435c2007-05-23 13:01:10 +00004335 * Returns -1 only if started some children. IOW: we have to
4336 * mask out retvals of builtins etc with 0xff!
Denis Vlasenko552433b2009-04-04 19:29:21 +00004337 *
4338 * The only case when we do not need to [v]fork is when the pipe
4339 * is single, non-backgrounded, non-subshell command. Examples:
4340 * cmd ; ... { list } ; ...
4341 * cmd && ... { list } && ...
4342 * cmd || ... { list } || ...
4343 * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
4344 * or (if SH_STANDALONE) an applet, and we can run the { list }
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00004345 * with run_list. If it isn't one of these, we fork and exec cmd.
Denis Vlasenko552433b2009-04-04 19:29:21 +00004346 *
4347 * Cases when we must fork:
4348 * non-single: cmd | cmd
4349 * backgrounded: cmd & { list } &
4350 * subshell: ( list ) [&]
Eric Andersen25f27032001-04-26 23:22:31 +00004351 */
Denys Vlasenko29082232010-07-16 13:52:32 +02004352#if !ENABLE_HUSH_MODE_X
4353#define redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel, char argv_expanded) \
4354 redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel)
4355#endif
4356static int redirect_and_varexp_helper(char ***new_env_p, struct variable **old_vars_p, struct command *command, int squirrel[3], char **argv_expanded)
4357{
4358 /* setup_redirects acts on file descriptors, not FILEs.
4359 * This is perfect for work that comes after exec().
4360 * Is it really safe for inline use? Experimentally,
4361 * things seem to work. */
4362 int rcode = setup_redirects(command, squirrel);
4363 if (rcode == 0) {
4364 char **new_env = expand_assignments(command->argv, command->assignment_cnt);
4365 *new_env_p = new_env;
4366 dump_cmd_in_x_mode(new_env);
4367 dump_cmd_in_x_mode(argv_expanded);
4368 if (old_vars_p)
4369 *old_vars_p = set_vars_and_save_old(new_env);
4370 }
4371 return rcode;
4372}
Denys Vlasenkoa7bb3c12009-10-08 12:28:08 +02004373static NOINLINE int run_pipe(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00004374{
Denis Vlasenko552433b2009-04-04 19:29:21 +00004375 static const char *const null_ptr = NULL;
Denys Vlasenko889550b2010-07-14 19:01:25 +02004376
4377 int cmd_no;
4378 int next_infd;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004379 struct command *command;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004380 char **argv_expanded;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00004381 char **argv;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00004382 /* it is not always needed, but we aim to smaller code */
4383 int squirrel[] = { -1, -1, -1 };
4384 int rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00004385
Denis Vlasenko552433b2009-04-04 19:29:21 +00004386 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004387 debug_enter();
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00004388
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00004389 IF_HUSH_JOB(pi->pgrp = -1;)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004390 pi->stopped_cmds = 0;
Denys Vlasenko889550b2010-07-14 19:01:25 +02004391 command = &pi->cmds[0];
Denis Vlasenko552433b2009-04-04 19:29:21 +00004392 argv_expanded = NULL;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004393
Denis Vlasenko552433b2009-04-04 19:29:21 +00004394 if (pi->num_cmds != 1
4395 || pi->followup == PIPE_BG
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004396 || command->cmd_type == CMD_SUBSHELL
Denis Vlasenko552433b2009-04-04 19:29:21 +00004397 ) {
4398 goto must_fork;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004399 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004400
Denis Vlasenko552433b2009-04-04 19:29:21 +00004401 pi->alive_cmds = 1;
4402
4403 debug_printf_exec(": group:%p argv:'%s'\n",
4404 command->group, command->argv ? command->argv[0] : "NONE");
4405
4406 if (command->group) {
4407#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004408 if (command->cmd_type == CMD_FUNCDEF) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004409 /* "executing" func () { list } */
4410 struct function *funcp;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004411
Denis Vlasenkobc569742009-04-12 20:35:19 +00004412 funcp = new_function(command->argv[0]);
4413 /* funcp->name is already set to argv[0] */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004414 funcp->body = command->group;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02004415# if !BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004416 funcp->body_as_string = command->group_as_string;
4417 command->group_as_string = NULL;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02004418# endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004419 command->group = NULL;
4420 command->argv[0] = NULL;
Denis Vlasenkoed055212009-04-11 10:37:10 +00004421 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
4422 funcp->parent_cmd = command;
4423 command->child_func = funcp;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004424
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004425 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
4426 debug_leave();
Denis Vlasenko552433b2009-04-04 19:29:21 +00004427 return EXIT_SUCCESS;
4428 }
4429#endif
4430 /* { list } */
4431 debug_printf("non-subshell group\n");
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00004432 rcode = 1; /* exitcode if redir failed */
4433 if (setup_redirects(command, squirrel) == 0) {
4434 debug_printf_exec(": run_list\n");
4435 rcode = run_list(command->group) & 0xff;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00004436 }
Eric Andersen04407e52001-06-07 16:42:05 +00004437 restore_redirects(squirrel);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004438 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004439 debug_leave();
4440 debug_printf_exec("run_pipe: return %d\n", rcode);
Denis Vlasenko05743d72008-02-10 12:10:08 +00004441 return rcode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00004442 }
4443
Denis Vlasenko552433b2009-04-04 19:29:21 +00004444 argv = command->argv ? command->argv : (char **) &null_ptr;
4445 {
4446 const struct built_in_command *x;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004447#if ENABLE_HUSH_FUNCTIONS
4448 const struct function *funcp;
4449#else
4450 enum { funcp = 0 };
4451#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004452 char **new_env = NULL;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02004453 struct variable *old_vars = NULL;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004454
Denis Vlasenko552433b2009-04-04 19:29:21 +00004455 if (argv[command->assignment_cnt] == NULL) {
4456 /* Assignments, but no command */
Denys Vlasenkocddbb612010-05-20 14:27:09 +02004457 /* Ensure redirects take effect (that is, create files).
Denys Vlasenko29082232010-07-16 13:52:32 +02004458 * Try "a=t >file" */
4459#if 0 /* A few cases in testsuite fail with this code. FIXME */
4460 rcode = redirect_and_varexp_helper(&new_env, /*old_vars:*/ NULL, command, squirrel, /*argv_expanded:*/ NULL);
4461 /* Set shell variables */
4462 if (new_env) {
4463 argv = new_env;
4464 while (*argv) {
4465 set_local_var(*argv, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
4466 /* Do we need to flag set_local_var() errors?
4467 * "assignment to readonly var" and "putenv error"
4468 */
4469 argv++;
4470 }
4471 }
4472 /* Redirect error sets $? to 1. Otherwise,
4473 * if evaluating assignment value set $?, retain it.
4474 * Try "false; q=`exit 2`; echo $?" - should print 2: */
4475 if (rcode == 0)
4476 rcode = G.last_exitcode;
4477 /* Exit, _skipping_ variable restoring code: */
4478 goto clean_up_and_ret0;
4479
4480#else /* Older, bigger, but more correct code */
4481
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00004482 rcode = setup_redirects(command, squirrel);
Denis Vlasenko552433b2009-04-04 19:29:21 +00004483 restore_redirects(squirrel);
4484 /* Set shell variables */
Denys Vlasenko202a2d12010-07-16 12:36:14 +02004485 if (G_x_mode)
Denys Vlasenko3f5fae02010-07-16 12:35:35 +02004486 bb_putchar_stderr('+');
Denis Vlasenko552433b2009-04-04 19:29:21 +00004487 while (*argv) {
Denys Vlasenko29082232010-07-16 13:52:32 +02004488 char *p = expand_string_to_string(*argv);
Denys Vlasenko202a2d12010-07-16 12:36:14 +02004489 if (G_x_mode)
Denys Vlasenko3f5fae02010-07-16 12:35:35 +02004490 fprintf(stderr, " %s", p);
Denis Vlasenko552433b2009-04-04 19:29:21 +00004491 debug_printf_exec("set shell var:'%s'->'%s'\n",
4492 *argv, p);
Denys Vlasenko295fef82009-06-03 12:47:26 +02004493 set_local_var(p, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
Denys Vlasenko29082232010-07-16 13:52:32 +02004494 /* Do we need to flag set_local_var() errors?
4495 * "assignment to readonly var" and "putenv error"
4496 */
Denis Vlasenko552433b2009-04-04 19:29:21 +00004497 argv++;
Eric Andersen78a7c992001-05-15 16:30:25 +00004498 }
Denys Vlasenko202a2d12010-07-16 12:36:14 +02004499 if (G_x_mode)
Denys Vlasenko3f5fae02010-07-16 12:35:35 +02004500 bb_putchar_stderr('\n');
Denys Vlasenkob3389de2010-07-15 12:33:37 +02004501 /* Redirect error sets $? to 1. Otherwise,
Denys Vlasenkocddbb612010-05-20 14:27:09 +02004502 * if evaluating assignment value set $?, retain it.
4503 * Try "false; q=`exit 2`; echo $?" - should print 2: */
4504 if (rcode == 0)
4505 rcode = G.last_exitcode;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00004506 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004507 debug_leave();
4508 debug_printf_exec("run_pipe: return %d\n", rcode);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00004509 return rcode;
Denys Vlasenko29082232010-07-16 13:52:32 +02004510#endif
Eric Andersen78a7c992001-05-15 16:30:25 +00004511 }
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00004512
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00004513 /* Expand the rest into (possibly) many strings each */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02004514 if (0) {}
4515#if ENABLE_HUSH_BASH_COMPAT
4516 else if (command->cmd_type == CMD_SINGLEWORD_NOGLOB) {
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004517 argv_expanded = expand_strvec_to_strvec_singleword_noglob(argv + command->assignment_cnt);
4518 }
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02004519#endif
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004520#ifdef CMD_SINGLEWORD_NOGLOB_COND
4521 else if (command->cmd_type == CMD_SINGLEWORD_NOGLOB_COND) {
4522 argv_expanded = expand_strvec_to_strvec_singleword_noglob_cond(argv + command->assignment_cnt);
4523
4524 }
4525#endif
4526 else {
4527 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
4528 }
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00004529
Denys Vlasenkof37eb392009-10-18 11:46:35 +02004530 /* if someone gives us an empty string: `cmd with empty output` */
Mike Frysinger28736c32009-10-18 01:11:45 -04004531 if (!argv_expanded[0]) {
Denys Vlasenko385cc592010-01-12 06:47:39 +01004532 free(argv_expanded);
Mike Frysinger28736c32009-10-18 01:11:45 -04004533 debug_leave();
Denys Vlasenko00243b02009-11-16 02:00:03 +01004534 return G.last_exitcode;
Mike Frysinger28736c32009-10-18 01:11:45 -04004535 }
4536
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004537 x = find_builtin(argv_expanded[0]);
4538#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004539 funcp = NULL;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004540 if (!x)
4541 funcp = find_function(argv_expanded[0]);
4542#endif
4543 if (x || funcp) {
4544 if (!funcp) {
Denys Vlasenko17323a62010-01-28 01:57:05 +01004545 if (x->b_function == builtin_exec && argv_expanded[1] == NULL) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004546 debug_printf("exec with redirects only\n");
4547 rcode = setup_redirects(command, NULL);
4548 goto clean_up_and_ret1;
4549 }
Eric Andersen25f27032001-04-26 23:22:31 +00004550 }
Denys Vlasenko29082232010-07-16 13:52:32 +02004551 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, squirrel, argv_expanded);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00004552 if (rcode == 0) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004553 if (!funcp) {
4554 debug_printf_exec(": builtin '%s' '%s'...\n",
Denys Vlasenkocddbb612010-05-20 14:27:09 +02004555 x->b_cmd, argv_expanded[1]);
Denys Vlasenko17323a62010-01-28 01:57:05 +01004556 rcode = x->b_function(argv_expanded) & 0xff;
Denys Vlasenko8131eea2009-11-02 14:19:51 +01004557 fflush_all();
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004558 }
4559#if ENABLE_HUSH_FUNCTIONS
4560 else {
Denys Vlasenko295fef82009-06-03 12:47:26 +02004561# if ENABLE_HUSH_LOCAL
4562 struct variable **sv;
4563 sv = G.shadowed_vars_pp;
4564 G.shadowed_vars_pp = &old_vars;
4565# endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004566 debug_printf_exec(": function '%s' '%s'...\n",
4567 funcp->name, argv_expanded[1]);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00004568 rcode = run_function(funcp, argv_expanded) & 0xff;
Denys Vlasenko295fef82009-06-03 12:47:26 +02004569# if ENABLE_HUSH_LOCAL
4570 G.shadowed_vars_pp = sv;
4571# endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004572 }
4573#endif
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00004574 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00004575 clean_up_and_ret:
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02004576 unset_vars(new_env);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02004577 add_vars(old_vars);
Denys Vlasenko29082232010-07-16 13:52:32 +02004578/* clean_up_and_ret0: */
4579 restore_redirects(squirrel);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004580 clean_up_and_ret1:
4581 free(argv_expanded);
4582 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004583 debug_leave();
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004584 debug_printf_exec("run_pipe return %d\n", rcode);
4585 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00004586 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004587
Denys Vlasenko8fa1f5d2010-07-15 08:18:46 +02004588 if (ENABLE_FEATURE_SH_STANDALONE) {
4589 int n = find_applet_by_name(argv_expanded[0]);
4590 if (n >= 0 && APPLET_IS_NOFORK(n)) {
Denys Vlasenko29082232010-07-16 13:52:32 +02004591 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, squirrel, argv_expanded);
Denys Vlasenko8fa1f5d2010-07-15 08:18:46 +02004592 if (rcode == 0) {
Denys Vlasenko8fa1f5d2010-07-15 08:18:46 +02004593 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
4594 argv_expanded[0], argv_expanded[1]);
4595 rcode = run_nofork_applet(n, argv_expanded);
4596 }
4597 goto clean_up_and_ret;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00004598 }
Denis Vlasenkof5294e12007-04-14 10:09:57 +00004599 }
Denis Vlasenko552433b2009-04-04 19:29:21 +00004600 /* It is neither builtin nor applet. We must fork. */
Eric Andersen25f27032001-04-26 23:22:31 +00004601 }
4602
Denis Vlasenko552433b2009-04-04 19:29:21 +00004603 must_fork:
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00004604 /* NB: argv_expanded may already be created, and that
4605 * might include `cmd` runs! Do not rerun it! We *must*
4606 * use argv_expanded if it's non-NULL */
4607
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00004608 /* Going to fork a child per each pipe member */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004609 pi->alive_cmds = 0;
Denys Vlasenko889550b2010-07-14 19:01:25 +02004610 next_infd = 0;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00004611
Denys Vlasenko889550b2010-07-14 19:01:25 +02004612 cmd_no = 0;
4613 while (cmd_no < pi->num_cmds) {
Denis Vlasenko8c64e032009-04-20 00:34:01 +00004614 struct fd_pair pipefds;
Denis Vlasenko76d50412008-06-10 16:19:39 +00004615#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00004616 volatile nommu_save_t nommu_save;
4617 nommu_save.new_env = NULL;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02004618 nommu_save.old_vars = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00004619 nommu_save.argv = NULL;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004620 nommu_save.argv_from_re_execing = NULL;
Denis Vlasenko76d50412008-06-10 16:19:39 +00004621#endif
Denys Vlasenko889550b2010-07-14 19:01:25 +02004622 command = &pi->cmds[cmd_no];
4623 cmd_no++;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004624 if (command->argv) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004625 debug_printf_exec(": pipe member '%s' '%s'...\n",
4626 command->argv[0], command->argv[1]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00004627 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004628 debug_printf_exec(": pipe member with no argv\n");
Denis Vlasenko552433b2009-04-04 19:29:21 +00004629 }
Eric Andersen25f27032001-04-26 23:22:31 +00004630
4631 /* pipes are inserted between pairs of commands */
Denis Vlasenko8c64e032009-04-20 00:34:01 +00004632 pipefds.rd = 0;
4633 pipefds.wr = 1;
Denys Vlasenko889550b2010-07-14 19:01:25 +02004634 if (cmd_no < pi->num_cmds)
Denis Vlasenko8c64e032009-04-20 00:34:01 +00004635 xpiped_pair(pipefds);
Eric Andersen25f27032001-04-26 23:22:31 +00004636
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004637 command->pid = BB_MMU ? fork() : vfork();
4638 if (!command->pid) { /* child */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00004639#if ENABLE_HUSH_JOB
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004640 disable_restore_tty_pgrp_on_exit();
Denys Vlasenko76ace252009-10-12 15:25:01 +02004641 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
Denis Vlasenkod5762932009-03-31 11:22:57 +00004642
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004643 /* Every child adds itself to new process group
Denis Vlasenko05743d72008-02-10 12:10:08 +00004644 * with pgid == pid_of_first_child_in_pipe */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004645 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00004646 pid_t pgrp;
Denis Vlasenko05743d72008-02-10 12:10:08 +00004647 pgrp = pi->pgrp;
4648 if (pgrp < 0) /* true for 1st process only */
4649 pgrp = getpid();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00004650 if (setpgid(0, pgrp) == 0
4651 && pi->followup != PIPE_BG
Mike Frysinger38478a62009-05-20 04:48:06 -04004652 && G_saved_tty_pgrp /* we have ctty */
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00004653 ) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004654 /* We do it in *every* child, not just first,
4655 * to avoid races */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004656 tcsetpgrp(G_interactive_fd, pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004657 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004658 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00004659#endif
Denis Vlasenko8c64e032009-04-20 00:34:01 +00004660 if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
4661 /* 1st cmd in backgrounded pipe
4662 * should have its stdin /dev/null'ed */
4663 close(0);
4664 if (open(bb_dev_null, O_RDONLY))
4665 xopen("/", O_RDONLY);
4666 } else {
Denys Vlasenko889550b2010-07-14 19:01:25 +02004667 xmove_fd(next_infd, 0);
Denis Vlasenko8c64e032009-04-20 00:34:01 +00004668 }
4669 xmove_fd(pipefds.wr, 1);
4670 if (pipefds.rd > 1)
4671 close(pipefds.rd);
Eric Andersen25f27032001-04-26 23:22:31 +00004672 /* Like bash, explicit redirects override pipes,
4673 * and the pipe fd is available for dup'ing. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00004674 if (setup_redirects(command, NULL))
4675 _exit(1);
Eric Andersen52a97ca2001-06-22 06:49:26 +00004676
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004677 /* Restore default handlers just prior to exec */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00004678 /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
4679
Denis Vlasenkof886fd22008-10-13 12:36:05 +00004680 /* Stores to nommu_save list of env vars putenv'ed
4681 * (NOMMU, on MMU we don't need that) */
4682 /* cast away volatility... */
4683 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00004684 /* pseudo_exec() does not return */
Eric Andersen25f27032001-04-26 23:22:31 +00004685 }
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00004686
Denis Vlasenkof9375282009-04-05 19:13:39 +00004687 /* parent or error */
Denys Vlasenko8d7be232009-05-25 16:38:32 +02004688#if ENABLE_HUSH_FAST
4689 G.count_SIGCHLD++;
4690//bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
4691#endif
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004692 enable_restore_tty_pgrp_on_exit();
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00004693#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00004694 /* Clean up after vforked child */
4695 free(nommu_save.argv);
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004696 free(nommu_save.argv_from_re_execing);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02004697 unset_vars(nommu_save.new_env);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02004698 add_vars(nommu_save.old_vars);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00004699#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00004700 free(argv_expanded);
4701 argv_expanded = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004702 if (command->pid < 0) { /* [v]fork failed */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00004703 /* Clearly indicate, was it fork or vfork */
Pascal Bellard926031b2010-07-04 15:32:38 +02004704 bb_perror_msg(BB_MMU ? "vfork"+1 : "vfork");
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00004705 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004706 pi->alive_cmds++;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004707#if ENABLE_HUSH_JOB
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00004708 /* Second and next children need to know pid of first one */
4709 if (pi->pgrp < 0)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004710 pi->pgrp = command->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00004711#endif
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00004712 }
Eric Andersen25f27032001-04-26 23:22:31 +00004713
Denys Vlasenko889550b2010-07-14 19:01:25 +02004714 if (cmd_no > 1)
4715 close(next_infd);
4716 if (cmd_no < pi->num_cmds)
Denis Vlasenko8c64e032009-04-20 00:34:01 +00004717 close(pipefds.wr);
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00004718 /* Pass read (output) pipe end to next iteration */
Denys Vlasenko889550b2010-07-14 19:01:25 +02004719 next_infd = pipefds.rd;
Eric Andersen25f27032001-04-26 23:22:31 +00004720 }
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00004721
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004722 if (!pi->alive_cmds) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004723 debug_leave();
Denis Vlasenko05743d72008-02-10 12:10:08 +00004724 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
4725 return 1;
4726 }
4727
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004728 debug_leave();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004729 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
Eric Andersen25f27032001-04-26 23:22:31 +00004730 return -1;
4731}
4732
Denis Vlasenko4b924f32007-05-30 00:29:55 +00004733#ifndef debug_print_tree
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004734static void debug_print_tree(struct pipe *pi, int lvl)
4735{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004736 static const char *const PIPE[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004737 [PIPE_SEQ] = "SEQ",
4738 [PIPE_AND] = "AND",
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004739 [PIPE_OR ] = "OR" ,
4740 [PIPE_BG ] = "BG" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004741 };
4742 static const char *RES[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004743 [RES_NONE ] = "NONE" ,
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004744# if ENABLE_HUSH_IF
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004745 [RES_IF ] = "IF" ,
4746 [RES_THEN ] = "THEN" ,
4747 [RES_ELIF ] = "ELIF" ,
4748 [RES_ELSE ] = "ELSE" ,
4749 [RES_FI ] = "FI" ,
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004750# endif
4751# if ENABLE_HUSH_LOOPS
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004752 [RES_FOR ] = "FOR" ,
4753 [RES_WHILE] = "WHILE",
4754 [RES_UNTIL] = "UNTIL",
4755 [RES_DO ] = "DO" ,
4756 [RES_DONE ] = "DONE" ,
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004757# endif
4758# if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004759 [RES_IN ] = "IN" ,
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004760# endif
4761# if ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004762 [RES_CASE ] = "CASE" ,
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004763 [RES_CASE_IN ] = "CASE_IN" ,
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004764 [RES_MATCH] = "MATCH",
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004765 [RES_CASE_BODY] = "CASE_BODY",
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004766 [RES_ESAC ] = "ESAC" ,
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004767# endif
Denis Vlasenko06810332007-05-21 23:30:54 +00004768 [RES_XXXX ] = "XXXX" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004769 [RES_SNTX ] = "SNTX" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004770 };
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004771 static const char *const CMDTYPE[] = {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004772 "{}",
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00004773 "()",
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02004774 "[noglob]",
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004775# if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004776 "func()",
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004777# endif
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004778 };
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004779
4780 int pin, prn;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00004781
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004782 pin = 0;
4783 while (pi) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00004784 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
4785 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004786 prn = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004787 while (prn < pi->num_cmds) {
4788 struct command *command = &pi->cmds[prn];
4789 char **argv = command->argv;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00004790
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004791 fprintf(stderr, "%*s cmd %d assignment_cnt:%d",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004792 lvl*2, "", prn,
4793 command->assignment_cnt);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004794 if (command->group) {
Denys Vlasenkob70cef72010-01-12 13:45:45 +01004795 fprintf(stderr, " group %s: (argv=%p)%s%s\n",
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004796 CMDTYPE[command->cmd_type],
Denys Vlasenkob70cef72010-01-12 13:45:45 +01004797 argv
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004798# if !BB_MMU
Denys Vlasenkob70cef72010-01-12 13:45:45 +01004799 , " group_as_string:", command->group_as_string
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004800# else
Denys Vlasenkob70cef72010-01-12 13:45:45 +01004801 , "", ""
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004802# endif
Denys Vlasenkob70cef72010-01-12 13:45:45 +01004803 );
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004804 debug_print_tree(command->group, lvl+1);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004805 prn++;
4806 continue;
4807 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004808 if (argv) while (*argv) {
4809 fprintf(stderr, " '%s'", *argv);
4810 argv++;
Denis Vlasenko4b924f32007-05-30 00:29:55 +00004811 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004812 fprintf(stderr, "\n");
4813 prn++;
4814 }
4815 pi = pi->next;
4816 pin++;
4817 }
4818}
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004819#endif /* debug_print_tree */
Denis Vlasenko400c5b62007-05-04 13:07:27 +00004820
Denis Vlasenkoc666f712007-05-16 22:18:54 +00004821/* NB: called by pseudo_exec, and therefore must not modify any
4822 * global data until exec/_exit (we can be a child after vfork!) */
Denis Vlasenko05743d72008-02-10 12:10:08 +00004823static int run_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00004824{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004825#if ENABLE_HUSH_CASE
4826 char *case_word = NULL;
4827#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004828#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004829 struct pipe *loop_top = NULL;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004830 char **for_lcur = NULL;
4831 char **for_list = NULL;
Denis Vlasenko06810332007-05-21 23:30:54 +00004832#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004833 smallint last_followup;
4834 smalluint rcode;
Denis Vlasenkod91afa32008-07-29 11:10:01 +00004835#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004836 smalluint cond_code = 0;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004837#else
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004838 enum { cond_code = 0 };
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004839#endif
Denis Vlasenko0e151382009-04-06 18:40:31 +00004840#if HAS_KEYWORDS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004841 smallint rword; /* enum reserved_style */
4842 smallint last_rword; /* ditto */
Denis Vlasenko0e151382009-04-06 18:40:31 +00004843#endif
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00004844
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00004845 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004846 debug_enter();
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00004847
Denis Vlasenko06810332007-05-21 23:30:54 +00004848#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004849 /* Check syntax for "for" */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00004850 for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
4851 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004852 continue;
4853 /* current word is FOR or IN (BOLD in comments below) */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00004854 if (cpipe->next == NULL) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004855 syntax_error("malformed for");
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004856 debug_leave();
Denis Vlasenko87a86552008-07-29 19:43:10 +00004857 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004858 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004859 }
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004860 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00004861 if (cpipe->next->res_word == RES_DO)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004862 continue;
4863 /* next word is not "do". It must be "in" then ("FOR v in ...") */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00004864 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
4865 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004866 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004867 syntax_error("malformed for");
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004868 debug_leave();
Denis Vlasenko87a86552008-07-29 19:43:10 +00004869 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004870 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00004871 }
4872 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004873#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004874
Denis Vlasenkobe709c22008-07-28 00:01:16 +00004875 /* Past this point, all code paths should jump to ret: label
Denis Vlasenko12acec52008-07-28 15:15:59 +00004876 * in order to return, no direct "return" statements please.
4877 * This helps to ensure that no memory is leaked. */
Denis Vlasenkobe709c22008-07-28 00:01:16 +00004878
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004879#if ENABLE_HUSH_JOB
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00004880 G.run_list_level++;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004881#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004882
Denis Vlasenko0e151382009-04-06 18:40:31 +00004883#if HAS_KEYWORDS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004884 rword = RES_NONE;
4885 last_rword = RES_XXXX;
Denis Vlasenko0e151382009-04-06 18:40:31 +00004886#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004887 last_followup = PIPE_SEQ;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004888 rcode = G.last_exitcode;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004889
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004890 /* Go through list of pipes, (maybe) executing them. */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00004891 for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00004892 if (G.flag_SIGINT)
4893 break;
4894
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004895 IF_HAS_KEYWORDS(rword = pi->res_word;)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004896 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
4897 rword, cond_code, last_rword);
Denis Vlasenko06810332007-05-21 23:30:54 +00004898#if ENABLE_HUSH_LOOPS
Denis Vlasenko4554b722008-07-29 13:36:09 +00004899 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
Denis Vlasenko87a86552008-07-29 19:43:10 +00004900 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
Denis Vlasenko4554b722008-07-29 13:36:09 +00004901 ) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004902 /* start of a loop: remember where loop starts */
4903 loop_top = pi;
Denis Vlasenko87a86552008-07-29 19:43:10 +00004904 G.depth_of_loop++;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00004905 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004906#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004907 /* Still in the same "if...", "then..." or "do..." branch? */
Denis Vlasenko0e151382009-04-06 18:40:31 +00004908 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004909 if ((rcode == 0 && last_followup == PIPE_OR)
4910 || (rcode != 0 && last_followup == PIPE_AND)
4911 ) {
4912 /* It is "<true> || CMD" or "<false> && CMD"
4913 * and we should not execute CMD */
4914 debug_printf_exec("skipped cmd because of || or &&\n");
4915 last_followup = pi->followup;
4916 continue;
4917 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00004918 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004919 last_followup = pi->followup;
Denis Vlasenko0e151382009-04-06 18:40:31 +00004920 IF_HAS_KEYWORDS(last_rword = rword;)
Denis Vlasenko06810332007-05-21 23:30:54 +00004921#if ENABLE_HUSH_IF
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004922 if (cond_code) {
4923 if (rword == RES_THEN) {
Denis Vlasenko0e151382009-04-06 18:40:31 +00004924 /* if false; then ... fi has exitcode 0! */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004925 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004926 /* "if <false> THEN cmd": skip cmd */
4927 continue;
4928 }
4929 } else {
4930 if (rword == RES_ELSE || rword == RES_ELIF) {
4931 /* "if <true> then ... ELSE/ELIF cmd":
4932 * skip cmd and all following ones */
4933 break;
4934 }
4935 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004936#endif
4937#if ENABLE_HUSH_LOOPS
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004938 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00004939 if (!for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00004940 /* first loop through for */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00004941
4942 static const char encoded_dollar_at[] ALIGN1 = {
4943 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
4944 }; /* encoded representation of "$@" */
4945 static const char *const encoded_dollar_at_argv[] = {
4946 encoded_dollar_at, NULL
4947 }; /* argv list with one element: "$@" */
4948 char **vals;
4949
4950 vals = (char**)encoded_dollar_at_argv;
Denis Vlasenkocf22c892008-07-28 15:17:44 +00004951 if (pi->next->res_word == RES_IN) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00004952 /* if no variable values after "in" we skip "for" */
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004953 if (!pi->next->cmds[0].argv) {
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004954 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004955 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004956 break;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004957 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004958 vals = pi->next->cmds[0].argv;
Denis Vlasenkoff182a32008-07-05 20:29:59 +00004959 } /* else: "for var; do..." -> assume "$@" list */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00004960 /* create list of variable values */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00004961 debug_print_strings("for_list made from", vals);
4962 for_list = expand_strvec_to_strvec(vals);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00004963 for_lcur = for_list;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004964 debug_print_strings("for_list", for_list);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004965 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00004966 if (!*for_lcur) {
Denis Vlasenko12acec52008-07-28 15:15:59 +00004967 /* "for" loop is over, clean up */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00004968 free(for_list);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00004969 for_list = NULL;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00004970 for_lcur = NULL;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004971 break;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00004972 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004973 /* Insert next value from for_lcur */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004974 /* note: *for_lcur already has quotes removed, $var expanded, etc */
Denys Vlasenko295fef82009-06-03 12:47:26 +02004975 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 +02004976 continue;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004977 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004978 if (rword == RES_IN) {
4979 continue; /* "for v IN list;..." - "in" has no cmds anyway */
4980 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004981 if (rword == RES_DONE) {
4982 continue; /* "done" has no cmds too */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004983 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004984#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004985#if ENABLE_HUSH_CASE
4986 if (rword == RES_CASE) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004987 case_word = expand_strvec_to_string(pi->cmds->argv);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004988 continue;
4989 }
4990 if (rword == RES_MATCH) {
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004991 char **argv;
4992
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004993 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
4994 break;
4995 /* all prev words didn't match, does this one match? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004996 argv = pi->cmds->argv;
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004997 while (*argv) {
4998 char *pattern = expand_string_to_string(*argv);
4999 /* TODO: which FNM_xxx flags to use? */
5000 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
5001 free(pattern);
5002 if (cond_code == 0) { /* match! we will execute this branch */
5003 free(case_word); /* make future "word)" stop */
5004 case_word = NULL;
5005 break;
5006 }
5007 argv++;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005008 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00005009 continue;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005010 }
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02005011 if (rword == RES_CASE_BODY) { /* inside of a case branch */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005012 if (cond_code != 0)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00005013 continue; /* not matched yet, skip this pipe */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005014 }
5015#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00005016 /* Just pressing <enter> in shell should check for jobs.
5017 * OTOH, in non-interactive shell this is useless
5018 * and only leads to extra job checks */
5019 if (pi->num_cmds == 0) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005020 if (G_interactive_fd)
Denis Vlasenkod5762932009-03-31 11:22:57 +00005021 goto check_jobs_and_continue;
5022 continue;
5023 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00005024
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005025 /* After analyzing all keywords and conditions, we decided
Denis Vlasenkod5762932009-03-31 11:22:57 +00005026 * to execute this pipe. NB: have to do checkjobs(NULL)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00005027 * after run_pipe to collect any background children,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005028 * even if list execution is to be stopped. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005029 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00005030 {
5031 int r;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00005032#if ENABLE_HUSH_LOOPS
Denis Vlasenko87a86552008-07-29 19:43:10 +00005033 G.flag_break_continue = 0;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00005034#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00005035 rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
5036 if (r != -1) {
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00005037 /* We ran a builtin, function, or group.
5038 * rcode is already known
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005039 * and we don't need to wait for anything. */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005040 G.last_exitcode = rcode;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005041 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00005042 check_and_run_traps(0);
Denis Vlasenkodadfb492008-07-29 10:16:05 +00005043#if ENABLE_HUSH_LOOPS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00005044 /* Was it "break" or "continue"? */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005045 if (G.flag_break_continue) {
5046 smallint fbc = G.flag_break_continue;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00005047 /* We might fall into outer *loop*,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005048 * don't want to break it too */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005049 if (loop_top) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00005050 G.depth_break_continue--;
5051 if (G.depth_break_continue == 0)
5052 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00005053 /* else: e.g. "continue 2" should *break* once, *then* continue */
5054 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005055 if (G.depth_break_continue != 0 || fbc == BC_BREAK)
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00005056 goto check_jobs_and_break;
5057 /* "continue": simulate end of loop */
5058 rword = RES_DONE;
5059 continue;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005060 }
Denis Vlasenkodadfb492008-07-29 10:16:05 +00005061#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00005062#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko673e9452009-05-27 14:39:35 +02005063 if (G.flag_return_in_progress == 1) {
5064 /* same as "goto check_jobs_and_break" */
5065 checkjobs(NULL);
5066 break;
5067 }
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00005068#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00005069 } else if (pi->followup == PIPE_BG) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00005070 /* What does bash do with attempts to background builtins? */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005071 /* even bash 3.2 doesn't do that well with nested bg:
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00005072 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
5073 * I'm NOT treating inner &'s as jobs */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00005074 check_and_run_traps(0);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005075#if ENABLE_HUSH_JOB
Denis Vlasenko87a86552008-07-29 19:43:10 +00005076 if (G.run_list_level == 1)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00005077 insert_bg_job(pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00005078#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005079 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00005080 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00005081 } else {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005082#if ENABLE_HUSH_JOB
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005083 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00005084 /* Waits for completion, then fg's main shell */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00005085 rcode = checkjobs_and_fg_shell(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00005086 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00005087 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00005088 } else
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005089#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00005090 { /* This one just waits for completion */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00005091 rcode = checkjobs(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00005092 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00005093 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00005094 }
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005095 G.last_exitcode = rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00005096 }
5097 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00005098
5099 /* Analyze how result affects subsequent commands */
Denis Vlasenko06810332007-05-21 23:30:54 +00005100#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00005101 if (rword == RES_IF || rword == RES_ELIF)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005102 cond_code = rcode;
Denis Vlasenko06810332007-05-21 23:30:54 +00005103#endif
5104#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00005105 /* Beware of "while false; true; do ..."! */
5106 if (pi->next && pi->next->res_word == RES_DO) {
5107 if (rword == RES_WHILE) {
5108 if (rcode) {
5109 /* "while false; do...done" - exitcode 0 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005110 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00005111 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
5112 goto check_jobs_and_break;
5113 }
Denis Vlasenko918a34b2008-07-28 23:17:31 +00005114 }
Denis Vlasenkocd418a22009-04-06 18:08:35 +00005115 if (rword == RES_UNTIL) {
5116 if (!rcode) {
5117 debug_printf_exec(": until expr is true: breaking\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005118 check_jobs_and_break:
Denis Vlasenkocd418a22009-04-06 18:08:35 +00005119 checkjobs(NULL);
5120 break;
5121 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005122 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00005123 }
Denis Vlasenko06810332007-05-21 23:30:54 +00005124#endif
Mike Frysinger8ec1c9d2009-03-29 00:45:26 +00005125
5126 check_jobs_and_continue:
Eric Andersen028b65b2001-06-28 01:10:11 +00005127 checkjobs(NULL);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005128 } /* for (pi) */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00005129
5130#if ENABLE_HUSH_JOB
Denis Vlasenkod5762932009-03-31 11:22:57 +00005131 G.run_list_level--;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00005132#endif
Denis Vlasenkobe709c22008-07-28 00:01:16 +00005133#if ENABLE_HUSH_LOOPS
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00005134 if (loop_top)
Denis Vlasenko87a86552008-07-29 19:43:10 +00005135 G.depth_of_loop--;
Denis Vlasenkobe709c22008-07-28 00:01:16 +00005136 free(for_list);
5137#endif
5138#if ENABLE_HUSH_CASE
5139 free(case_word);
5140#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005141 debug_leave();
5142 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00005143 return rcode;
5144}
5145
Eric Andersen25f27032001-04-26 23:22:31 +00005146/* Select which version we will use */
Denis Vlasenko05743d72008-02-10 12:10:08 +00005147static int run_and_free_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00005148{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005149 int rcode = 0;
Denis Vlasenko05743d72008-02-10 12:10:08 +00005150 debug_printf_exec("run_and_free_list entered\n");
Denys Vlasenko202a2d12010-07-16 12:36:14 +02005151 if (!G.n_mode) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00005152 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
Denis Vlasenko05743d72008-02-10 12:10:08 +00005153 rcode = run_list(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005154 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00005155 /* free_pipe_list has the side effect of clearing memory.
Denis Vlasenko05743d72008-02-10 12:10:08 +00005156 * In the long run that function can be merged with run_list,
Eric Andersen25f27032001-04-26 23:22:31 +00005157 * but doing that now would hobble the debugging effort. */
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005158 free_pipe_list(pi);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00005159 debug_printf_exec("run_and_free_list return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00005160 return rcode;
5161}
5162
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005163
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00005164static struct pipe *new_pipe(void)
5165{
Eric Andersen25f27032001-04-26 23:22:31 +00005166 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00005167 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00005168 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005169 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00005170 return pi;
5171}
5172
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00005173/* Command (member of a pipe) is complete, or we start a new pipe
5174 * if ctx->command is NULL.
5175 * No errors possible here.
5176 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005177static int done_command(struct parse_context *ctx)
5178{
5179 /* The command is really already in the pipe structure, so
5180 * advance the pipe counter and make a new, null command. */
5181 struct pipe *pi = ctx->pipe;
5182 struct command *command = ctx->command;
5183
5184 if (command) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00005185 if (IS_NULL_CMD(command)) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005186 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00005187 goto clear_and_ret;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005188 }
5189 pi->num_cmds++;
5190 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00005191 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005192 } else {
5193 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
5194 }
5195
5196 /* Only real trickiness here is that the uncommitted
5197 * command structure is not counted in pi->num_cmds. */
5198 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00005199 ctx->command = command = &pi->cmds[pi->num_cmds];
5200 clear_and_ret:
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005201 memset(command, 0, sizeof(*command));
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005202 return pi->num_cmds; /* used only for 0/nonzero check */
5203}
5204
5205static void done_pipe(struct parse_context *ctx, pipe_style type)
5206{
5207 int not_null;
5208
5209 debug_printf_parse("done_pipe entered, followup %d\n", type);
5210 /* Close previous command */
5211 not_null = done_command(ctx);
5212 ctx->pipe->followup = type;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00005213#if HAS_KEYWORDS
5214 ctx->pipe->pi_inverted = ctx->ctx_inverted;
5215 ctx->ctx_inverted = 0;
5216 ctx->pipe->res_word = ctx->ctx_res_w;
5217#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005218
5219 /* Without this check, even just <enter> on command line generates
5220 * tree of three NOPs (!). Which is harmless but annoying.
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00005221 * IOW: it is safe to do it unconditionally. */
Denis Vlasenkocd418a22009-04-06 18:08:35 +00005222 if (not_null
Denis Vlasenko7f959372009-04-14 08:06:59 +00005223#if ENABLE_HUSH_IF
Denis Vlasenkocd418a22009-04-06 18:08:35 +00005224 || ctx->ctx_res_w == RES_FI
Denis Vlasenko7f959372009-04-14 08:06:59 +00005225#endif
5226#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00005227 || ctx->ctx_res_w == RES_DONE
5228 || ctx->ctx_res_w == RES_FOR
5229 || ctx->ctx_res_w == RES_IN
Denis Vlasenko7f959372009-04-14 08:06:59 +00005230#endif
5231#if ENABLE_HUSH_CASE
Denis Vlasenkocd418a22009-04-06 18:08:35 +00005232 || ctx->ctx_res_w == RES_ESAC
5233#endif
5234 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005235 struct pipe *new_p;
5236 debug_printf_parse("done_pipe: adding new pipe: "
5237 "not_null:%d ctx->ctx_res_w:%d\n",
5238 not_null, ctx->ctx_res_w);
5239 new_p = new_pipe();
5240 ctx->pipe->next = new_p;
5241 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005242 /* RES_THEN, RES_DO etc are "sticky" -
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00005243 * they remain set for pipes inside if/while.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005244 * This is used to control execution.
5245 * RES_FOR and RES_IN are NOT sticky (needed to support
5246 * cases where variable or value happens to match a keyword):
5247 */
5248#if ENABLE_HUSH_LOOPS
5249 if (ctx->ctx_res_w == RES_FOR
5250 || ctx->ctx_res_w == RES_IN)
5251 ctx->ctx_res_w = RES_NONE;
5252#endif
5253#if ENABLE_HUSH_CASE
5254 if (ctx->ctx_res_w == RES_MATCH)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02005255 ctx->ctx_res_w = RES_CASE_BODY;
5256 if (ctx->ctx_res_w == RES_CASE)
5257 ctx->ctx_res_w = RES_CASE_IN;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005258#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005259 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005260 /* Create the memory for command, roughly:
5261 * ctx->pipe->cmds = new struct command;
5262 * ctx->command = &ctx->pipe->cmds[0];
5263 */
5264 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00005265 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005266 }
5267 debug_printf_parse("done_pipe return\n");
5268}
5269
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005270static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00005271{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00005272 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00005273 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005274 /* Create the memory for command, roughly:
5275 * ctx->pipe->cmds = new struct command;
5276 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00005277 */
5278 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00005279}
5280
Denis Vlasenkoa8442002008-06-14 11:00:17 +00005281/* If a reserved word is found and processed, parse context is modified
5282 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00005283 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005284#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005285struct reserved_combo {
5286 char literal[6];
5287 unsigned char res;
5288 unsigned char assignment_flag;
5289 int flag;
5290};
5291enum {
5292 FLAG_END = (1 << RES_NONE ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005293# if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005294 FLAG_IF = (1 << RES_IF ),
5295 FLAG_THEN = (1 << RES_THEN ),
5296 FLAG_ELIF = (1 << RES_ELIF ),
5297 FLAG_ELSE = (1 << RES_ELSE ),
5298 FLAG_FI = (1 << RES_FI ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005299# endif
5300# if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005301 FLAG_FOR = (1 << RES_FOR ),
5302 FLAG_WHILE = (1 << RES_WHILE),
5303 FLAG_UNTIL = (1 << RES_UNTIL),
5304 FLAG_DO = (1 << RES_DO ),
5305 FLAG_DONE = (1 << RES_DONE ),
5306 FLAG_IN = (1 << RES_IN ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005307# endif
5308# if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005309 FLAG_MATCH = (1 << RES_MATCH),
5310 FLAG_ESAC = (1 << RES_ESAC ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005311# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005312 FLAG_START = (1 << RES_XXXX ),
5313};
5314
5315static const struct reserved_combo* match_reserved_word(o_string *word)
5316{
Eric Andersen25f27032001-04-26 23:22:31 +00005317 /* Mostly a list of accepted follow-up reserved words.
5318 * FLAG_END means we are done with the sequence, and are ready
5319 * to turn the compound list into a command.
5320 * FLAG_START means the word must start a new compound list.
5321 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00005322 static const struct reserved_combo reserved_list[] = {
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005323# if ENABLE_HUSH_IF
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005324 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
5325 { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
5326 { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
5327 { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN },
5328 { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI },
5329 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005330# endif
5331# if ENABLE_HUSH_LOOPS
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005332 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
5333 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
5334 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
5335 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
5336 { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE },
5337 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005338# endif
5339# if ENABLE_HUSH_CASE
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005340 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
5341 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005342# endif
Eric Andersen25f27032001-04-26 23:22:31 +00005343 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005344 const struct reserved_combo *r;
5345
5346 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
5347 if (strcmp(word->data, r->literal) == 0)
5348 return r;
5349 }
5350 return NULL;
5351}
Denis Vlasenkobb929512009-04-16 10:59:40 +00005352/* Return 0: not a keyword, 1: keyword
5353 */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005354static int reserved_word(o_string *word, struct parse_context *ctx)
5355{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005356# if ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005357 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005358 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005359 };
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005360# endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00005361 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00005362
Denis Vlasenkobb929512009-04-16 10:59:40 +00005363 if (word->o_quoted)
5364 return 0;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005365 r = match_reserved_word(word);
5366 if (!r)
5367 return 0;
5368
5369 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005370# if ENABLE_HUSH_CASE
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02005371 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE_IN) {
5372 /* "case word IN ..." - IN part starts first MATCH part */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005373 r = &reserved_match;
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02005374 } else
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005375# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005376 if (r->flag == 0) { /* '!' */
5377 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005378 syntax_error("! ! command");
Denis Vlasenkobb929512009-04-16 10:59:40 +00005379 ctx->ctx_res_w = RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00005380 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005381 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00005382 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005383 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005384 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005385 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00005386
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005387 old = xmalloc(sizeof(*old));
5388 debug_printf_parse("push stack %p\n", old);
5389 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005390 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005391 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005392 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005393 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005394 ctx->ctx_res_w = RES_SNTX;
5395 return 1;
Denis Vlasenkobb929512009-04-16 10:59:40 +00005396 } else {
5397 /* "{...} fi" is ok. "{...} if" is not
5398 * Example:
5399 * if { echo foo; } then { echo bar; } fi */
5400 if (ctx->command->group)
5401 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005402 }
Denis Vlasenkobb929512009-04-16 10:59:40 +00005403
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005404 ctx->ctx_res_w = r->res;
5405 ctx->old_flag = r->flag;
Denis Vlasenkobb929512009-04-16 10:59:40 +00005406 word->o_assignment = r->assignment_flag;
5407
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005408 if (ctx->old_flag & FLAG_END) {
5409 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00005410
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005411 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005412 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005413 old = ctx->stack;
5414 old->command->group = ctx->list_head;
Denys Vlasenko9d617c42009-06-09 18:40:52 +02005415 old->command->cmd_type = CMD_NORMAL;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005416# if !BB_MMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005417 o_addstr(&old->as_string, ctx->as_string.data);
5418 o_free_unsafe(&ctx->as_string);
5419 old->command->group_as_string = xstrdup(old->as_string.data);
5420 debug_printf_parse("pop, remembering as:'%s'\n",
5421 old->command->group_as_string);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005422# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005423 *ctx = *old; /* physical copy */
5424 free(old);
5425 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005426 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005427}
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005428#endif /* HAS_KEYWORDS */
Eric Andersen25f27032001-04-26 23:22:31 +00005429
Denis Vlasenkoa8442002008-06-14 11:00:17 +00005430/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005431 * Normal return is 0. Syntax errors return 1.
5432 * Note: on return, word is reset, but not o_free'd!
5433 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005434static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00005435{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005436 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00005437
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005438 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005439 if (word->length == 0 && word->o_quoted == 0) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00005440 debug_printf_parse("done_word return 0: true null, ignored\n");
5441 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00005442 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005443
Eric Andersen25f27032001-04-26 23:22:31 +00005444 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00005445 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
5446 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005447 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
5448 * "2.7 Redirection
5449 * ...the word that follows the redirection operator
5450 * shall be subjected to tilde expansion, parameter expansion,
5451 * command substitution, arithmetic expansion, and quote
5452 * removal. Pathname expansion shall not be performed
5453 * on the word by a non-interactive shell; an interactive
5454 * shell may perform it, but shall do so only when
5455 * the expansion would result in one word."
5456 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00005457 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005458 /* Cater for >\file case:
5459 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
5460 * Same with heredocs:
5461 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
5462 */
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02005463 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC) {
5464 unbackslash(ctx->pending_redirect->rd_filename);
5465 /* Is it <<"HEREDOC"? */
5466 if (word->o_quoted) {
5467 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
5468 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005469 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005470 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00005471 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00005472 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005473 /* If this word wasn't an assignment, next ones definitely
5474 * can't be assignments. Even if they look like ones. */
5475 if (word->o_assignment != DEFINITELY_ASSIGNMENT
5476 && word->o_assignment != WORD_IS_KEYWORD
5477 ) {
5478 word->o_assignment = NOT_ASSIGNMENT;
5479 } else {
5480 if (word->o_assignment == DEFINITELY_ASSIGNMENT)
5481 command->assignment_cnt++;
5482 word->o_assignment = MAYBE_ASSIGNMENT;
5483 }
5484
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005485#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005486# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00005487 if (ctx->ctx_dsemicolon
5488 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
5489 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00005490 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005491 /* ctx->ctx_res_w = RES_MATCH; */
5492 ctx->ctx_dsemicolon = 0;
5493 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005494# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005495 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005496# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00005497 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
5498 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005499# endif
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02005500# if ENABLE_HUSH_CASE
5501 && ctx->ctx_res_w != RES_CASE
5502# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00005503 ) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00005504 debug_printf_parse("checking '%s' for reserved-ness\n", word->data);
Denis Vlasenkoa8442002008-06-14 11:00:17 +00005505 if (reserved_word(word, ctx)) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005506 o_reset_to_empty_unquoted(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005507 debug_printf_parse("done_word return %d\n",
5508 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005509 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005510 }
Denys Vlasenko9d617c42009-06-09 18:40:52 +02005511# ifdef CMD_SINGLEWORD_NOGLOB_COND
5512 if (strcmp(word->data, "export") == 0
5513# if ENABLE_HUSH_LOCAL
5514 || strcmp(word->data, "local") == 0
5515# endif
5516 ) {
5517 command->cmd_type = CMD_SINGLEWORD_NOGLOB_COND;
5518 } else
5519# endif
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02005520# if ENABLE_HUSH_BASH_COMPAT
Denys Vlasenko9d617c42009-06-09 18:40:52 +02005521 if (strcmp(word->data, "[[") == 0) {
5522 command->cmd_type = CMD_SINGLEWORD_NOGLOB;
5523 }
5524 /* fall through */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02005525# endif
Eric Andersen25f27032001-04-26 23:22:31 +00005526 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005527#endif
Denis Vlasenkobb929512009-04-16 10:59:40 +00005528 if (command->group) {
5529 /* "{ echo foo; } echo bar" - bad */
5530 syntax_error_at(word->data);
5531 debug_printf_parse("done_word return 1: syntax error, "
5532 "groups and arglists don't mix\n");
5533 return 1;
5534 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005535 if (word->o_quoted /* word had "xx" or 'xx' at least as part of it. */
Denis Vlasenko55789c62008-06-18 16:30:42 +00005536 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
5537 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00005538 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00005539 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00005540 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00005541 char *p = word->data;
5542 while (p[0] == SPECIAL_VAR_SYMBOL
5543 && (p[1] & 0x7f) == '@'
5544 && p[2] == SPECIAL_VAR_SYMBOL
5545 ) {
5546 p += 3;
5547 }
5548 if (p == word->data || p[0] != '\0') {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00005549 /* saw no "$@", or not only "$@" but some
5550 * real text is there too */
5551 /* insert "empty variable" reference, this makes
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00005552 * e.g. "", $empty"" etc to not disappear */
5553 o_addchr(word, SPECIAL_VAR_SYMBOL);
5554 o_addchr(word, SPECIAL_VAR_SYMBOL);
5555 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00005556 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00005557 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005558 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005559 }
Eric Andersen25f27032001-04-26 23:22:31 +00005560
Denis Vlasenko06810332007-05-21 23:30:54 +00005561#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00005562 if (ctx->ctx_res_w == RES_FOR) {
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00005563 if (word->o_quoted
5564 || !is_well_formed_var_name(command->argv[0], '\0')
5565 ) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00005566 /* bash says just "not a valid identifier" */
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00005567 syntax_error("not a valid identifier in for");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005568 return 1;
5569 }
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00005570 /* Force FOR to have just one word (variable name) */
5571 /* NB: basically, this makes hush see "for v in ..."
5572 * syntax as if it is "for v; in ...". FOR and IN become
5573 * two pipe structs in parse tree. */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005574 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00005575 }
Denis Vlasenko06810332007-05-21 23:30:54 +00005576#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005577#if ENABLE_HUSH_CASE
5578 /* Force CASE to have just one word */
5579 if (ctx->ctx_res_w == RES_CASE) {
5580 done_pipe(ctx, PIPE_SEQ);
5581 }
5582#endif
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00005583
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005584 o_reset_to_empty_unquoted(word);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00005585
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005586 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00005587 return 0;
5588}
5589
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005590
5591/* Peek ahead in the input to find out if we have a "&n" construct,
5592 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005593 * Return:
5594 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
5595 * REDIRFD_SYNTAX_ERR if syntax error,
5596 * REDIRFD_TO_FILE if no & was seen,
5597 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005598 */
5599#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005600#define parse_redir_right_fd(as_string, input) \
5601 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005602#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005603static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005604{
5605 int ch, d, ok;
5606
5607 ch = i_peek(input);
5608 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005609 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005610
5611 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005612 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005613 ch = i_peek(input);
5614 if (ch == '-') {
5615 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005616 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005617 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005618 }
5619 d = 0;
5620 ok = 0;
5621 while (ch != EOF && isdigit(ch)) {
5622 d = d*10 + (ch-'0');
5623 ok = 1;
5624 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005625 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005626 ch = i_peek(input);
5627 }
5628 if (ok) return d;
5629
5630//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
5631
5632 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005633 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005634}
5635
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005636/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005637 */
5638static int parse_redirect(struct parse_context *ctx,
5639 int fd,
5640 redir_type style,
5641 struct in_str *input)
5642{
5643 struct command *command = ctx->command;
5644 struct redir_struct *redir;
5645 struct redir_struct **redirp;
5646 int dup_num;
5647
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005648 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005649 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005650 /* Check for a '>&1' type redirect */
5651 dup_num = parse_redir_right_fd(&ctx->as_string, input);
5652 if (dup_num == REDIRFD_SYNTAX_ERR)
5653 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005654 } else {
5655 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005656 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005657 if (dup_num) { /* <<-... */
5658 ch = i_getch(input);
5659 nommu_addchr(&ctx->as_string, ch);
5660 ch = i_peek(input);
5661 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005662 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005663
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005664 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005665 int ch = i_peek(input);
5666 if (ch == '|') {
5667 /* >|FILE redirect ("clobbering" >).
5668 * Since we do not support "set -o noclobber" yet,
5669 * >| and > are the same for now. Just eat |.
5670 */
5671 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005672 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005673 }
5674 }
5675
5676 /* Create a new redir_struct and append it to the linked list */
5677 redirp = &command->redirects;
5678 while ((redir = *redirp) != NULL) {
5679 redirp = &(redir->next);
5680 }
5681 *redirp = redir = xzalloc(sizeof(*redir));
5682 /* redir->next = NULL; */
5683 /* redir->rd_filename = NULL; */
5684 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005685 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005686
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005687 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
5688 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005689
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005690 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005691 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005692 /* Erik had a check here that the file descriptor in question
5693 * is legit; I postpone that to "run time"
5694 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005695 debug_printf_parse("duplicating redirect '%d>&%d'\n",
5696 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005697 } else {
5698 /* Set ctx->pending_redirect, so we know what to do at the
5699 * end of the next parsed word. */
5700 ctx->pending_redirect = redir;
5701 }
5702 return 0;
5703}
5704
Eric Andersen25f27032001-04-26 23:22:31 +00005705/* If a redirect is immediately preceded by a number, that number is
5706 * supposed to tell which file descriptor to redirect. This routine
5707 * looks for such preceding numbers. In an ideal world this routine
5708 * needs to handle all the following classes of redirects...
5709 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
5710 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
5711 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
5712 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005713 *
5714 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
5715 * "2.7 Redirection
5716 * ... If n is quoted, the number shall not be recognized as part of
5717 * the redirection expression. For example:
5718 * echo \2>a
5719 * writes the character 2 into file a"
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005720 * We are getting it right by setting ->o_quoted on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005721 *
5722 * A -1 return means no valid number was found,
5723 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00005724 */
5725static int redirect_opt_num(o_string *o)
5726{
5727 int num;
5728
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005729 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005730 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005731 num = bb_strtou(o->data, NULL, 10);
5732 if (errno || num < 0)
5733 return -1;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005734 o_reset_to_empty_unquoted(o);
Eric Andersen25f27032001-04-26 23:22:31 +00005735 return num;
5736}
5737
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005738#if BB_MMU
5739#define fetch_till_str(as_string, input, word, skip_tabs) \
5740 fetch_till_str(input, word, skip_tabs)
5741#endif
5742static char *fetch_till_str(o_string *as_string,
5743 struct in_str *input,
5744 const char *word,
5745 int skip_tabs)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005746{
5747 o_string heredoc = NULL_O_STRING;
5748 int past_EOL = 0;
5749 int ch;
5750
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005751 goto jump_in;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005752 while (1) {
5753 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005754 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005755 if (ch == '\n') {
5756 if (strcmp(heredoc.data + past_EOL, word) == 0) {
5757 heredoc.data[past_EOL] = '\0';
5758 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
5759 return heredoc.data;
5760 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005761 do {
5762 o_addchr(&heredoc, ch);
5763 past_EOL = heredoc.length;
5764 jump_in:
5765 do {
5766 ch = i_getch(input);
5767 nommu_addchr(as_string, ch);
5768 } while (skip_tabs && ch == '\t');
5769 } while (ch == '\n');
5770 }
5771 if (ch == EOF) {
5772 o_free_unsafe(&heredoc);
5773 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005774 }
5775 o_addchr(&heredoc, ch);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005776 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005777 }
5778}
5779
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005780/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
5781 * and load them all. There should be exactly heredoc_cnt of them.
5782 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005783static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
5784{
5785 struct pipe *pi = ctx->list_head;
5786
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005787 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005788 int i;
5789 struct command *cmd = pi->cmds;
5790
5791 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
5792 pi->num_cmds,
5793 cmd->argv ? cmd->argv[0] : "NONE");
5794 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005795 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005796
5797 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
5798 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005799 while (redir) {
5800 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005801 char *p;
5802
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005803 redir->rd_type = REDIRECT_HEREDOC2;
Denys Vlasenko764b2f02009-06-07 16:05:04 +02005804 /* redir->rd_dup is (ab)used to indicate <<- */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005805 p = fetch_till_str(&ctx->as_string, input,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005806 redir->rd_filename, redir->rd_dup & HEREDOC_SKIPTABS);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005807 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005808 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005809 return 1;
5810 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005811 free(redir->rd_filename);
5812 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005813 heredoc_cnt--;
5814 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005815 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005816 }
5817 cmd++;
5818 }
5819 pi = pi->next;
5820 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005821#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005822 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005823 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005824 bb_error_msg_and_die("heredoc BUG 2");
5825#endif
5826 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005827}
5828
5829
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005830#if ENABLE_HUSH_TICK
Denys Vlasenko647553a2009-11-15 19:58:19 +01005831static FILE *generate_stream_from_string(const char *s, pid_t *pid_p)
Eric Andersen25f27032001-04-26 23:22:31 +00005832{
Denys Vlasenko647553a2009-11-15 19:58:19 +01005833 pid_t pid;
5834 int channel[2];
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005835# if !BB_MMU
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01005836 char **to_free = NULL;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005837# endif
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00005838
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +00005839 xpipe(channel);
Pascal Bellard926031b2010-07-04 15:32:38 +02005840 pid = BB_MMU ? xfork() : xvfork();
Denis Vlasenko05743d72008-02-10 12:10:08 +00005841 if (pid == 0) { /* child */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005842 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00005843 /* Process substitution is not considered to be usual
5844 * 'command execution'.
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00005845 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
5846 */
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00005847 bb_signals(0
5848 + (1 << SIGTSTP)
5849 + (1 << SIGTTIN)
5850 + (1 << SIGTTOU)
5851 , SIG_IGN);
Denys Vlasenko76ace252009-10-12 15:25:01 +02005852 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005853 close(channel[0]); /* NB: close _first_, then move fd! */
5854 xmove_fd(channel[1], 1);
5855 /* Prevent it from trying to handle ctrl-z etc */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00005856 IF_HUSH_JOB(G.run_list_level = 1;)
Denys Vlasenko91836ba2009-09-23 01:46:19 +02005857 /* Awful hack for `trap` or $(trap).
5858 *
5859 * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html
5860 * contains an example where "trap" is executed in a subshell:
5861 *
5862 * save_traps=$(trap)
5863 * ...
5864 * eval "$save_traps"
5865 *
5866 * Standard does not say that "trap" in subshell shall print
5867 * parent shell's traps. It only says that its output
5868 * must have suitable form, but then, in the above example
5869 * (which is not supposed to be normative), it implies that.
5870 *
5871 * bash (and probably other shell) does implement it
5872 * (traps are reset to defaults, but "trap" still shows them),
5873 * but as a result, "trap" logic is hopelessly messed up:
5874 *
5875 * # trap
5876 * trap -- 'echo Ho' SIGWINCH <--- we have a handler
5877 * # (trap) <--- trap is in subshell - no output (correct, traps are reset)
5878 * # true | trap <--- trap is in subshell - no output (ditto)
5879 * # echo `true | trap` <--- in subshell - output (but traps are reset!)
5880 * trap -- 'echo Ho' SIGWINCH
5881 * # echo `(trap)` <--- in subshell in subshell - output
5882 * trap -- 'echo Ho' SIGWINCH
5883 * # echo `true | (trap)` <--- in subshell in subshell in subshell - output!
5884 * trap -- 'echo Ho' SIGWINCH
5885 *
5886 * The rules when to forget and when to not forget traps
5887 * get really complex and nonsensical.
5888 *
5889 * Our solution: ONLY bare $(trap) or `trap` is special.
5890 */
5891 s = skip_whitespace(s);
5892 if (strncmp(s, "trap", 4) == 0 && (*skip_whitespace(s + 4) == '\0'))
5893 {
5894 static const char *const argv[] = { NULL, NULL };
5895 builtin_trap((char**)argv);
5896 exit(0); /* not _exit() - we need to fflush */
5897 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005898# if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005899 reset_traps_to_defaults();
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005900 parse_and_run_string(s);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005901 _exit(G.last_exitcode);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005902# else
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005903 /* We re-execute after vfork on NOMMU. This makes this script safe:
Denis Vlasenkof9375282009-04-05 19:13:39 +00005904 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
5905 * huge=`cat BIG` # was blocking here forever
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005906 * echo OK
5907 */
Denis Vlasenko27014ed2009-04-15 21:48:23 +00005908 re_execute_shell(&to_free,
5909 s,
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005910 G.global_argv[0],
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02005911 G.global_argv + 1,
5912 NULL);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005913# endif
Eric Andersen25f27032001-04-26 23:22:31 +00005914 }
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005915
5916 /* parent */
Denys Vlasenko647553a2009-11-15 19:58:19 +01005917 *pid_p = pid;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005918# if ENABLE_HUSH_FAST
Denys Vlasenko8d7be232009-05-25 16:38:32 +02005919 G.count_SIGCHLD++;
5920//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 +02005921# endif
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005922 enable_restore_tty_pgrp_on_exit();
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005923# if !BB_MMU
Denis Vlasenko27014ed2009-04-15 21:48:23 +00005924 free(to_free);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005925# endif
Eric Andersen25f27032001-04-26 23:22:31 +00005926 close(channel[1]);
Denys Vlasenkoa7ccdee2009-11-15 23:28:11 +01005927 close_on_exec_on(channel[0]);
5928 return xfdopen_for_read(channel[0]);
Eric Andersen25f27032001-04-26 23:22:31 +00005929}
5930
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00005931/* Return code is exit status of the process that is run. */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00005932static int process_command_subs(o_string *dest, const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00005933{
Denys Vlasenkoa7ccdee2009-11-15 23:28:11 +01005934 FILE *fp;
Eric Andersen25f27032001-04-26 23:22:31 +00005935 struct in_str pipe_str;
Denys Vlasenko647553a2009-11-15 19:58:19 +01005936 pid_t pid;
5937 int status, ch, eol_cnt;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00005938
Denys Vlasenkoa7ccdee2009-11-15 23:28:11 +01005939 fp = generate_stream_from_string(s, &pid);
Eric Andersen25f27032001-04-26 23:22:31 +00005940
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005941 /* Now send results of command back into original context */
Denys Vlasenkoa7ccdee2009-11-15 23:28:11 +01005942 setup_file_in_str(&pipe_str, fp);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00005943 eol_cnt = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005944 while ((ch = i_getch(&pipe_str)) != EOF) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00005945 if (ch == '\n') {
5946 eol_cnt++;
5947 continue;
5948 }
5949 while (eol_cnt) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00005950 o_addchr(dest, '\n');
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00005951 eol_cnt--;
5952 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00005953 o_addQchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005954 }
5955
Denys Vlasenko647553a2009-11-15 19:58:19 +01005956 debug_printf("done reading from `cmd` pipe, closing it\n");
Denys Vlasenkoa7ccdee2009-11-15 23:28:11 +01005957 fclose(fp);
Denys Vlasenko647553a2009-11-15 19:58:19 +01005958 /* We need to extract exitcode. Test case
5959 * "true; echo `sleep 1; false` $?"
5960 * should print 1 */
5961 safe_waitpid(pid, &status, 0);
5962 debug_printf("child exited. returning its exitcode:%d\n", WEXITSTATUS(status));
5963 return WEXITSTATUS(status);
Eric Andersen25f27032001-04-26 23:22:31 +00005964}
Denys Vlasenkoc0836532009-10-19 13:13:06 +02005965#endif /* ENABLE_HUSH_TICK */
Eric Andersen25f27032001-04-26 23:22:31 +00005966
Denys Vlasenkoc2704542009-11-20 19:14:19 +01005967#if !ENABLE_HUSH_FUNCTIONS
5968#define parse_group(dest, ctx, input, ch) \
5969 parse_group(ctx, input, ch)
5970#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005971static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00005972 struct in_str *input, int ch)
5973{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005974 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005975 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005976 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005977 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005978 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005979 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005980
5981 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005982#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005983 if (ch == '(' && !dest->o_quoted) {
5984 if (dest->length)
Denis Vlasenkobb929512009-04-16 10:59:40 +00005985 if (done_word(dest, ctx))
5986 return 1;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005987 if (!command->argv)
5988 goto skip; /* (... */
5989 if (command->argv[1]) { /* word word ... (... */
5990 syntax_error_unexpected_ch('(');
5991 return 1;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00005992 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005993 /* it is "word(..." or "word (..." */
5994 do
5995 ch = i_getch(input);
5996 while (ch == ' ' || ch == '\t');
5997 if (ch != ')') {
5998 syntax_error_unexpected_ch(ch);
5999 return 1;
6000 }
6001 nommu_addchr(&ctx->as_string, ch);
6002 do
6003 ch = i_getch(input);
6004 while (ch == ' ' || ch == '\t' || ch == '\n');
6005 if (ch != '{') {
6006 syntax_error_unexpected_ch(ch);
6007 return 1;
6008 }
6009 nommu_addchr(&ctx->as_string, ch);
Denys Vlasenko9d617c42009-06-09 18:40:52 +02006010 command->cmd_type = CMD_FUNCDEF;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00006011 goto skip;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00006012 }
6013#endif
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01006014
6015#if 0 /* Prevented by caller */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00006016 if (command->argv /* word [word]{... */
6017 || dest->length /* word{... */
6018 || dest->o_quoted /* ""{... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006019 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006020 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006021 debug_printf_parse("parse_group return 1: "
6022 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00006023 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00006024 }
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01006025#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00006026
6027#if ENABLE_HUSH_FUNCTIONS
6028 skip:
6029#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00006030 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00006031 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00006032 endch = ')';
Denys Vlasenko9d617c42009-06-09 18:40:52 +02006033 command->cmd_type = CMD_SUBSHELL;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00006034 } else {
6035 /* bash does not allow "{echo...", requires whitespace */
6036 ch = i_getch(input);
6037 if (ch != ' ' && ch != '\t' && ch != '\n') {
6038 syntax_error_unexpected_ch(ch);
6039 return 1;
6040 }
6041 nommu_addchr(&ctx->as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00006042 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00006043
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006044 {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02006045#if BB_MMU
6046# define as_string NULL
6047#else
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006048 char *as_string = NULL;
6049#endif
6050 pipe_list = parse_stream(&as_string, input, endch);
6051#if !BB_MMU
6052 if (as_string)
6053 o_addstr(&ctx->as_string, as_string);
6054#endif
6055 /* empty ()/{} or parse error? */
6056 if (!pipe_list || pipe_list == ERR_PTR) {
Denis Vlasenkobb929512009-04-16 10:59:40 +00006057 /* parse_stream already emitted error msg */
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02006058 if (!BB_MMU)
6059 free(as_string);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006060 debug_printf_parse("parse_group return 1: "
6061 "parse_stream returned %p\n", pipe_list);
6062 return 1;
6063 }
6064 command->group = pipe_list;
6065#if !BB_MMU
6066 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
6067 command->group_as_string = as_string;
6068 debug_printf_parse("end of group, remembering as:'%s'\n",
6069 command->group_as_string);
6070#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02006071#undef as_string
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006072 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006073 debug_printf_parse("parse_group return 0\n");
6074 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006075 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00006076}
6077
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02006078#if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_DOLLAR_OPS
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006079/* Subroutines for copying $(...) and `...` things */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006080static void add_till_backquote(o_string *dest, struct in_str *input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006081/* '...' */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006082static void add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006083{
6084 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00006085 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00006086 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00006087 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006088 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00006089 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006090 if (ch == '\'')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006091 return;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00006092 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006093 }
6094}
6095/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006096static void add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006097{
6098 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00006099 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00006100 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00006101 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006102 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00006103 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006104 if (ch == '"')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006105 return;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006106 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00006107 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00006108 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006109 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00006110 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006111 if (ch == '`') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006112 add_till_backquote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00006113 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006114 continue;
6115 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00006116 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006117 }
6118}
6119/* Process `cmd` - copy contents until "`" is seen. Complicated by
6120 * \` quoting.
6121 * "Within the backquoted style of command substitution, backslash
6122 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
6123 * The search for the matching backquote shall be satisfied by the first
6124 * backquote found without a preceding backslash; during this search,
6125 * if a non-escaped backquote is encountered within a shell comment,
6126 * a here-document, an embedded command substitution of the $(command)
6127 * form, or a quoted string, undefined results occur. A single-quoted
6128 * or double-quoted string that begins, but does not end, within the
6129 * "`...`" sequence produces undefined results."
6130 * Example Output
6131 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
6132 */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006133static void add_till_backquote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006134{
6135 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00006136 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00006137 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00006138 syntax_error_unterm_ch('`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006139 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00006140 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006141 if (ch == '`')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006142 return;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00006143 if (ch == '\\') {
6144 /* \x. Copy both chars unless it is \` */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00006145 int ch2 = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00006146 if (ch2 == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00006147 syntax_error_unterm_ch('`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006148 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00006149 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006150 if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
Denis Vlasenko82dfec32008-06-16 12:47:11 +00006151 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006152 ch = ch2;
6153 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00006154 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006155 }
6156}
6157/* Process $(cmd) - copy contents until ")" is seen. Complicated by
6158 * quoting and nested ()s.
6159 * "With the $(command) style of command substitution, all characters
6160 * following the open parenthesis to the matching closing parenthesis
6161 * constitute the command. Any valid shell script can be used for command,
6162 * except a script consisting solely of redirections which produces
6163 * unspecified results."
6164 * Example Output
6165 * echo $(echo '(TEST)' BEST) (TEST) BEST
6166 * echo $(echo 'TEST)' BEST) TEST) BEST
6167 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
Denys Vlasenko74369502010-05-21 19:52:01 +02006168 *
Denys Vlasenko1e811b12010-05-22 03:12:29 +02006169 * Also adapted to eat ${var%...} and $((...)) constructs, since ... part
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02006170 * can contain arbitrary constructs, just like $(cmd).
Denys Vlasenko1e811b12010-05-22 03:12:29 +02006171 * In bash compat mode, it needs to also be able to stop on '}' or ':'
6172 * for ${var:N[:M]} parsing.
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006173 */
Denys Vlasenko74369502010-05-21 19:52:01 +02006174#define DOUBLE_CLOSE_CHAR_FLAG 0x80
Denys Vlasenko1e811b12010-05-22 03:12:29 +02006175static int add_till_closing_bracket(o_string *dest, struct in_str *input, unsigned end_ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006176{
Denys Vlasenko1e811b12010-05-22 03:12:29 +02006177 int ch;
Denys Vlasenko74369502010-05-21 19:52:01 +02006178 char dbl = end_ch & DOUBLE_CLOSE_CHAR_FLAG;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02006179# if ENABLE_HUSH_BASH_COMPAT
Denys Vlasenko1e811b12010-05-22 03:12:29 +02006180 char end_char2 = end_ch >> 8;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02006181# endif
Denys Vlasenko1e811b12010-05-22 03:12:29 +02006182 end_ch &= (DOUBLE_CLOSE_CHAR_FLAG - 1);
6183
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006184 while (1) {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02006185 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00006186 if (ch == EOF) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02006187 syntax_error_unterm_ch(end_ch);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006188 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00006189 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02006190 if (ch == end_ch IF_HUSH_BASH_COMPAT( || ch == end_char2)) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02006191 if (!dbl)
6192 break;
6193 /* we look for closing )) of $((EXPR)) */
6194 if (i_peek(input) == end_ch) {
6195 i_getch(input); /* eat second ')' */
6196 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00006197 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006198 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00006199 o_addchr(dest, ch);
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02006200 if (ch == '(' || ch == '{') {
6201 ch = (ch == '(' ? ')' : '}');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02006202 add_till_closing_bracket(dest, input, ch);
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02006203 o_addchr(dest, ch);
6204 continue;
6205 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006206 if (ch == '\'') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006207 add_till_single_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00006208 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006209 continue;
6210 }
6211 if (ch == '"') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006212 add_till_double_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00006213 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006214 continue;
6215 }
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02006216 if (ch == '`') {
6217 add_till_backquote(dest, input);
6218 o_addchr(dest, ch);
6219 continue;
6220 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00006221 if (ch == '\\') {
6222 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00006223 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00006224 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00006225 syntax_error_unterm_ch(')');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006226 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00006227 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00006228 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00006229 continue;
6230 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006231 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02006232 return ch;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006233}
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02006234#endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_DOLLAR_OPS */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006235
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006236/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00006237#if BB_MMU
Denys Vlasenko2e48d532010-05-22 17:30:39 +02006238#define parse_dollar(as_string, dest, input) \
6239 parse_dollar(dest, input)
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02006240#define as_string NULL
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00006241#endif
Denys Vlasenko2e48d532010-05-22 17:30:39 +02006242static int parse_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00006243 o_string *dest,
6244 struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00006245{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00006246 int ch = i_peek(input); /* first character after the $ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00006247 unsigned char quote_mask = dest->o_escape ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00006248
Denys Vlasenko2e48d532010-05-22 17:30:39 +02006249 debug_printf_parse("parse_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00006250 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00006251 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006252 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00006253 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00006254 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00006255 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00006256 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00006257 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00006258 quote_mask = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00006259 ch = i_peek(input);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00006260 if (!isalnum(ch) && ch != '_')
6261 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00006262 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006263 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00006264 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00006265 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00006266 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00006267 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00006268 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006269 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00006270 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00006271 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00006272 o_addchr(dest, ch | quote_mask);
6273 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00006274 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006275 case '$': /* pid */
6276 case '!': /* last bg pid */
6277 case '?': /* last exit code */
6278 case '#': /* number of args */
6279 case '*': /* args */
6280 case '@': /* args */
6281 goto make_one_char_var;
6282 case '{': {
Mike Frysingeref3e7fd2009-06-01 14:13:39 -04006283 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6284
Denys Vlasenko74369502010-05-21 19:52:01 +02006285 ch = i_getch(input); /* eat '{' */
6286 nommu_addchr(as_string, ch);
6287
6288 ch = i_getch(input); /* first char after '{' */
6289 nommu_addchr(as_string, ch);
6290 /* It should be ${?}, or ${#var},
6291 * or even ${?+subst} - operator acting on a special variable,
6292 * or the beginning of variable name.
6293 */
Denys Vlasenkoe85248a2010-05-22 06:20:26 +02006294 if (!strchr(_SPECIAL_VARS_STR, ch) && !isalnum(ch)) { /* not one of those */
Denys Vlasenko74369502010-05-21 19:52:01 +02006295 bad_dollar_syntax:
6296 syntax_error_unterm_str("${name}");
Denys Vlasenko2e48d532010-05-22 17:30:39 +02006297 debug_printf_parse("parse_dollar return 1: unterminated ${name}\n");
Denys Vlasenko74369502010-05-21 19:52:01 +02006298 return 1;
6299 }
6300 ch |= quote_mask;
6301
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02006302 /* It's possible to just call add_till_closing_bracket() at this point.
Denys Vlasenko74369502010-05-21 19:52:01 +02006303 * However, this regresses some of our testsuite cases
6304 * which check invalid constructs like ${%}.
6305 * Oh well... let's check that the var name part is fine... */
6306
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006307 while (1) {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02006308 unsigned pos;
6309
Denys Vlasenko74369502010-05-21 19:52:01 +02006310 o_addchr(dest, ch);
6311 debug_printf_parse(": '%c'\n", ch);
6312
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006313 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006314 nommu_addchr(as_string, ch);
Denys Vlasenko74369502010-05-21 19:52:01 +02006315 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00006316 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00006317
Denys Vlasenko74369502010-05-21 19:52:01 +02006318 if (!isalnum(ch) && ch != '_') {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02006319 unsigned end_ch;
6320 unsigned char last_ch;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006321 /* handle parameter expansions
6322 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
6323 */
Denys Vlasenko74369502010-05-21 19:52:01 +02006324 if (!strchr("%#:-=+?", ch)) /* ${var<bad_char>... */
6325 goto bad_dollar_syntax;
Denys Vlasenko74369502010-05-21 19:52:01 +02006326 o_addchr(dest, ch);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02006327
6328 /* Eat everything until closing '}' (or ':') */
6329 end_ch = '}';
6330 if (ENABLE_HUSH_BASH_COMPAT
6331 && ch == ':'
6332 && !strchr("%#:-=+?"+3, i_peek(input))
6333 ) {
6334 /* It's ${var:N[:M]} thing */
6335 end_ch = '}' * 0x100 + ':';
6336 }
6337 again:
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02006338 if (!BB_MMU)
6339 pos = dest->length;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02006340#if ENABLE_HUSH_DOLLAR_OPS
Denys Vlasenko1e811b12010-05-22 03:12:29 +02006341 last_ch = add_till_closing_bracket(dest, input, end_ch);
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02006342#else
6343#error Simple code to only allow ${var} is not implemented
6344#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02006345 if (as_string) {
6346 o_addstr(as_string, dest->data + pos);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02006347 o_addchr(as_string, last_ch);
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02006348 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02006349
6350 if (ENABLE_HUSH_BASH_COMPAT && (end_ch & 0xff00)) {
6351 /* close the first block: */
6352 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6353 /* while parsing N from ${var:N[:M]}... */
6354 if ((end_ch & 0xff) == last_ch) {
6355 /* ...got ':' - parse the rest */
6356 end_ch = '}';
6357 goto again;
6358 }
6359 /* ...got '}', not ':' - it's ${var:N}! emulate :999999999 */
6360 o_addstr(dest, "999999999");
6361 }
Denys Vlasenko74369502010-05-21 19:52:01 +02006362 break;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006363 }
Denys Vlasenko74369502010-05-21 19:52:01 +02006364 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006365 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6366 break;
6367 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02006368#if ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006369 case '(': {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02006370 unsigned pos;
6371
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00006372 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006373 nommu_addchr(as_string, ch);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00006374# if ENABLE_SH_MATH_SUPPORT
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006375 if (i_peek(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00006376 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006377 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006378 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6379 o_addchr(dest, /*quote_mask |*/ '+');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02006380 if (!BB_MMU)
6381 pos = dest->length;
6382 add_till_closing_bracket(dest, input, ')' | DOUBLE_CLOSE_CHAR_FLAG);
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006383 if (as_string) {
6384 o_addstr(as_string, dest->data + pos);
6385 o_addchr(as_string, ')');
6386 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006387 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006388 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00006389 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00006390 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00006391# endif
6392# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006393 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6394 o_addchr(dest, quote_mask | '`');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02006395 if (!BB_MMU)
6396 pos = dest->length;
6397 add_till_closing_bracket(dest, input, ')');
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006398 if (as_string) {
6399 o_addstr(as_string, dest->data + pos);
Denys Vlasenkob70cef72010-01-12 13:45:45 +01006400 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006401 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006402 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00006403# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006404 break;
6405 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00006406#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006407 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00006408 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006409 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006410 ch = i_peek(input);
6411 if (isalnum(ch)) { /* it's $_name or $_123 */
6412 ch = '_';
6413 goto make_var;
6414 }
6415 /* else: it's $_ */
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02006416 /* TODO: $_ and $-: */
6417 /* $_ Shell or shell script name; or last argument of last command
6418 * (if last command wasn't a pipe; if it was, bash sets $_ to "");
6419 * but in command's env, set to full pathname used to invoke it */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006420 /* $- Option flags set by set builtin or shell options (-i etc) */
6421 default:
6422 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00006423 }
Denys Vlasenko2e48d532010-05-22 17:30:39 +02006424 debug_printf_parse("parse_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00006425 return 0;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02006426#undef as_string
Eric Andersen25f27032001-04-26 23:22:31 +00006427}
6428
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006429#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006430#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006431 parse_stream_dquoted(dest, input, dquote_end)
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02006432#define as_string NULL
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006433#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006434static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006435 o_string *dest,
6436 struct in_str *input,
6437 int dquote_end)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006438{
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006439 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006440 int next;
6441
6442 again:
6443 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006444 if (ch != EOF)
6445 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006446 if (ch == dquote_end) { /* may be only '"' or EOF */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006447 if (dest->o_assignment == NOT_ASSIGNMENT)
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00006448 dest->o_escape ^= 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006449 debug_printf_parse("parse_stream_dquoted return 0\n");
6450 return 0;
6451 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00006452 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006453 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00006454 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006455 /*xfunc_die(); - redundant */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006456 }
6457 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006458 if (ch != '\n') {
6459 next = i_peek(input);
6460 }
Denys Vlasenkof37eb392009-10-18 11:46:35 +02006461 debug_printf_parse("\" ch=%c (%d) escape=%d\n",
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006462 ch, ch, dest->o_escape);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006463 if (ch == '\\') {
6464 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006465 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006466 xfunc_die();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006467 }
6468 /* bash:
6469 * "The backslash retains its special meaning [in "..."]
6470 * only when followed by one of the following characters:
6471 * $, `, ", \, or <newline>. A double quote may be quoted
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02006472 * within double quotes by preceding it with a backslash."
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006473 */
Denys Vlasenkoe19e1932009-05-03 02:15:18 +02006474 if (strchr("$`\"\\\n", next) != NULL) {
Denis Vlasenko57293002009-04-26 20:06:14 +00006475 ch = i_getch(input);
Denys Vlasenkoe19e1932009-05-03 02:15:18 +02006476 if (ch != '\n') {
6477 o_addqchr(dest, ch);
6478 nommu_addchr(as_string, ch);
6479 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006480 } else {
6481 o_addqchr(dest, '\\');
Denis Vlasenko57293002009-04-26 20:06:14 +00006482 nommu_addchr(as_string, '\\');
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006483 }
6484 goto again;
6485 }
6486 if (ch == '$') {
Denys Vlasenko2e48d532010-05-22 17:30:39 +02006487 if (parse_dollar(as_string, dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006488 debug_printf_parse("parse_stream_dquoted return 1: "
Denys Vlasenko2e48d532010-05-22 17:30:39 +02006489 "parse_dollar returned non-0\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006490 return 1;
6491 }
6492 goto again;
6493 }
6494#if ENABLE_HUSH_TICK
6495 if (ch == '`') {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02006496 //unsigned pos = dest->length;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006497 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6498 o_addchr(dest, 0x80 | '`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006499 add_till_backquote(dest, input);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006500 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6501 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00006502 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006503 }
6504#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00006505 o_addQchr(dest, ch);
6506 if (ch == '='
6507 && (dest->o_assignment == MAYBE_ASSIGNMENT
6508 || dest->o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006509 && is_well_formed_var_name(dest->data, '=')
Denis Vlasenkof328e002009-04-02 16:55:38 +00006510 ) {
6511 dest->o_assignment = DEFINITELY_ASSIGNMENT;
6512 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006513 goto again;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02006514#undef as_string
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006515}
6516
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006517/*
6518 * Scan input until EOF or end_trigger char.
6519 * Return a list of pipes to execute, or NULL on EOF
6520 * or if end_trigger character is met.
6521 * On syntax error, exit is shell is not interactive,
6522 * reset parsing machinery and start parsing anew,
6523 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00006524 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006525static struct pipe *parse_stream(char **pstring,
6526 struct in_str *input,
6527 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00006528{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006529 struct parse_context ctx;
6530 o_string dest = NULL_O_STRING;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006531 int is_in_dquote;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00006532 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00006533
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00006534 /* Double-quote state is handled in the state variable is_in_dquote.
Eric Andersen25f27032001-04-26 23:22:31 +00006535 * A single-quote triggers a bypass of the main loop until its mate is
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006536 * found. When recursing, quote state is passed in via dest->o_escape.
6537 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006538 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
Denys Vlasenko90a99042009-09-06 02:36:23 +02006539 end_trigger ? end_trigger : 'X');
Denis Vlasenko0701dca2009-04-11 10:38:47 +00006540 debug_enter();
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00006541
Denys Vlasenkof37eb392009-10-18 11:46:35 +02006542 /* If very first arg is "" or '', dest.data may end up NULL.
6543 * Preventing this: */
6544 o_addchr(&dest, '\0');
6545 dest.length = 0;
6546
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006547 G.ifs = get_local_var_value("IFS");
6548 if (G.ifs == NULL)
Denys Vlasenko03dad222010-01-12 23:29:57 +01006549 G.ifs = defifs;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006550
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006551 reset:
6552#if ENABLE_HUSH_INTERACTIVE
6553 input->promptmode = 0; /* PS1 */
6554#endif
6555 /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */
6556 initialize_context(&ctx);
6557 is_in_dquote = 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00006558 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00006559 while (1) {
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006560 const char *is_ifs;
6561 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006562 int ch;
6563 int next;
6564 int redir_fd;
6565 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006566
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006567 if (is_in_dquote) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00006568 /* dest.o_quoted = 1; - already is (see below) */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006569 if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006570 goto parse_error;
6571 }
6572 /* We reached closing '"' */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006573 is_in_dquote = 0;
6574 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00006575 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006576 debug_printf_parse(": ch=%c (%d) escape=%d\n",
6577 ch, ch, dest.o_escape);
6578 if (ch == EOF) {
6579 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00006580
6581 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00006582 syntax_error_unterm_str("here document");
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02006583 goto parse_error;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00006584 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02006585 /* end_trigger == '}' case errors out earlier,
6586 * checking only ')' */
6587 if (end_trigger == ')') {
6588 syntax_error_unterm_ch('('); /* exits */
6589 /* goto parse_error; */
6590 }
6591
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006592 if (done_word(&dest, &ctx)) {
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02006593 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00006594 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006595 o_free(&dest);
6596 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006597 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006598 /* If we got nothing... */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006599 /* (this makes bare "&" cmd a no-op.
6600 * bash says: "syntax error near unexpected token '&'") */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006601 if (pi->num_cmds == 0
6602 IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
6603 ) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00006604 free_pipe_list(pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006605 pi = NULL;
6606 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006607#if !BB_MMU
6608 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
6609 if (pstring)
6610 *pstring = ctx.as_string.data;
6611 else
6612 o_free_unsafe(&ctx.as_string);
6613#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00006614 debug_leave();
6615 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006616 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00006617 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006618 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01006619
6620 next = '\0';
6621 if (ch != '\n')
6622 next = i_peek(input);
6623
6624 is_special = "{}<>;&|()#'" /* special outside of "str" */
6625 "\\$\"" IF_HUSH_TICK("`"); /* always special */
6626 /* Are { and } special here? */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02006627 if (ctx.command->argv /* word [word]{... - non-special */
6628 || dest.length /* word{... - non-special */
6629 || dest.o_quoted /* ""{... - non-special */
6630 || (next != ';' /* }; - special */
6631 && next != ')' /* }) - special */
6632 && next != '&' /* }& and }&& ... - special */
6633 && next != '|' /* }|| ... - special */
6634 && !strchr(G.ifs, next) /* {word - non-special */
6635 )
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01006636 ) {
6637 /* They are not special, skip "{}" */
6638 is_special += 2;
6639 }
6640 is_special = strchr(is_special, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006641 is_ifs = strchr(G.ifs, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006642
6643 if (!is_special && !is_ifs) { /* ordinary char */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00006644 ordinary_char:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006645 o_addQchr(&dest, ch);
6646 if ((dest.o_assignment == MAYBE_ASSIGNMENT
6647 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00006648 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006649 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00006650 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006651 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00006652 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00006653 continue;
6654 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00006655
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006656 if (is_ifs) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006657 if (done_word(&dest, &ctx)) {
6658 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00006659 }
Denis Vlasenko37181682009-04-03 03:19:15 +00006660 if (ch == '\n') {
Denis Vlasenkof1736072008-07-31 10:09:26 +00006661#if ENABLE_HUSH_CASE
6662 /* "case ... in <newline> word) ..." -
6663 * newlines are ignored (but ';' wouldn't be) */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006664 if (ctx.command->argv == NULL
6665 && ctx.ctx_res_w == RES_MATCH
Denis Vlasenkof1736072008-07-31 10:09:26 +00006666 ) {
6667 continue;
6668 }
6669#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00006670 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006671 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00006672 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
6673 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00006674 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00006675 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00006676 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00006677 heredoc_cnt = 0;
6678 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006679 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00006680 ch = ';';
Denis Vlasenko7c986122009-04-04 12:15:42 +00006681 /* note: if (is_ifs) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00006682 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00006683 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00006684 }
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00006685
6686 /* "cmd}" or "cmd }..." without semicolon or &:
6687 * } is an ordinary char in this case, even inside { cmd; }
6688 * Pathological example: { ""}; } should exec "}" cmd
6689 */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00006690 if (ch == '}') {
6691 if (!IS_NULL_CMD(ctx.command) /* cmd } */
6692 || dest.length != 0 /* word} */
6693 || dest.o_quoted /* ""} */
6694 ) {
6695 goto ordinary_char;
6696 }
6697 if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */
6698 goto skip_end_trigger;
6699 /* else: } does terminate a group */
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00006700 }
6701
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00006702 if (end_trigger && end_trigger == ch
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02006703 && (ch != ';' || heredoc_cnt == 0)
6704#if ENABLE_HUSH_CASE
6705 && (ch != ')'
6706 || ctx.ctx_res_w != RES_MATCH
6707 || (!dest.o_quoted && strcmp(dest.data, "esac") == 0)
6708 )
6709#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00006710 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00006711 if (heredoc_cnt) {
6712 /* This is technically valid:
6713 * { cat <<HERE; }; echo Ok
6714 * heredoc
6715 * heredoc
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00006716 * HERE
6717 * but we don't support this.
6718 * We require heredoc to be in enclosing {}/(),
6719 * if any.
6720 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00006721 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00006722 goto parse_error;
6723 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006724 if (done_word(&dest, &ctx)) {
6725 goto parse_error;
6726 }
6727 done_pipe(&ctx, PIPE_SEQ);
6728 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00006729 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00006730 if (!HAS_KEYWORDS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006731 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00006732 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006733 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006734#if !BB_MMU
6735 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
6736 if (pstring)
6737 *pstring = ctx.as_string.data;
6738 else
6739 o_free_unsafe(&ctx.as_string);
6740#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00006741 debug_leave();
6742 debug_printf_parse("parse_stream return %p: "
6743 "end_trigger char found\n",
6744 ctx.list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006745 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006746 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00006747 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00006748 skip_end_trigger:
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00006749 if (is_ifs)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00006750 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00006751
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00006752 /* Catch <, > before deciding whether this word is
6753 * an assignment. a=1 2>z b=2: b=2 is still assignment */
6754 switch (ch) {
6755 case '>':
6756 redir_fd = redirect_opt_num(&dest);
6757 if (done_word(&dest, &ctx)) {
6758 goto parse_error;
6759 }
6760 redir_style = REDIRECT_OVERWRITE;
6761 if (next == '>') {
6762 redir_style = REDIRECT_APPEND;
6763 ch = i_getch(input);
6764 nommu_addchr(&ctx.as_string, ch);
6765 }
6766#if 0
6767 else if (next == '(') {
6768 syntax_error(">(process) not supported");
6769 goto parse_error;
6770 }
6771#endif
6772 if (parse_redirect(&ctx, redir_fd, redir_style, input))
6773 goto parse_error;
6774 continue; /* back to top of while (1) */
6775 case '<':
6776 redir_fd = redirect_opt_num(&dest);
6777 if (done_word(&dest, &ctx)) {
6778 goto parse_error;
6779 }
6780 redir_style = REDIRECT_INPUT;
6781 if (next == '<') {
6782 redir_style = REDIRECT_HEREDOC;
6783 heredoc_cnt++;
6784 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
6785 ch = i_getch(input);
6786 nommu_addchr(&ctx.as_string, ch);
6787 } else if (next == '>') {
6788 redir_style = REDIRECT_IO;
6789 ch = i_getch(input);
6790 nommu_addchr(&ctx.as_string, ch);
6791 }
6792#if 0
6793 else if (next == '(') {
6794 syntax_error("<(process) not supported");
6795 goto parse_error;
6796 }
6797#endif
6798 if (parse_redirect(&ctx, redir_fd, redir_style, input))
6799 goto parse_error;
6800 continue; /* back to top of while (1) */
6801 }
6802
6803 if (dest.o_assignment == MAYBE_ASSIGNMENT
6804 /* check that we are not in word in "a=1 2>word b=1": */
6805 && !ctx.pending_redirect
6806 ) {
6807 /* ch is a special char and thus this word
6808 * cannot be an assignment */
6809 dest.o_assignment = NOT_ASSIGNMENT;
6810 }
6811
Denys Vlasenkocbfe6ad2009-08-12 19:47:44 +02006812 /* Note: nommu_addchr(&ctx.as_string, ch) is already done */
6813
Denis Vlasenkobb81c582007-01-30 22:32:09 +00006814 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00006815 case '#':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006816 if (dest.length == 0) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00006817 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00006818 ch = i_peek(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00006819 if (ch == EOF || ch == '\n')
6820 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00006821 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00006822 /* note: we do not add it to &ctx.as_string */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00006823 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006824 nommu_addchr(&ctx.as_string, '\n');
Eric Andersen25f27032001-04-26 23:22:31 +00006825 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006826 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00006827 }
6828 break;
6829 case '\\':
6830 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006831 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006832 xfunc_die();
Eric Andersen25f27032001-04-26 23:22:31 +00006833 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00006834 ch = i_getch(input);
Denys Vlasenkoe19e1932009-05-03 02:15:18 +02006835 if (ch != '\n') {
6836 o_addchr(&dest, '\\');
Denys Vlasenkocbfe6ad2009-08-12 19:47:44 +02006837 /*nommu_addchr(&ctx.as_string, '\\'); - already done */
Denys Vlasenkoe19e1932009-05-03 02:15:18 +02006838 o_addchr(&dest, ch);
6839 nommu_addchr(&ctx.as_string, ch);
6840 /* Example: echo Hello \2>file
6841 * we need to know that word 2 is quoted */
6842 dest.o_quoted = 1;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02006843 }
Denys Vlasenkocbfe6ad2009-08-12 19:47:44 +02006844#if !BB_MMU
Denys Vlasenkoc0836532009-10-19 13:13:06 +02006845 else {
Denys Vlasenkocbfe6ad2009-08-12 19:47:44 +02006846 /* It's "\<newline>". Remove trailing '\' from ctx.as_string */
6847 ctx.as_string.data[--ctx.as_string.length] = '\0';
Denys Vlasenkoe19e1932009-05-03 02:15:18 +02006848 }
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02006849#endif
Eric Andersen25f27032001-04-26 23:22:31 +00006850 break;
6851 case '$':
Denys Vlasenko2e48d532010-05-22 17:30:39 +02006852 if (parse_dollar(&ctx.as_string, &dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00006853 debug_printf_parse("parse_stream parse error: "
Denys Vlasenko2e48d532010-05-22 17:30:39 +02006854 "parse_dollar returned non-0\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006855 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00006856 }
Eric Andersen25f27032001-04-26 23:22:31 +00006857 break;
6858 case '\'':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00006859 dest.o_quoted = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00006860 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00006861 ch = i_getch(input);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006862 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00006863 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006864 /*xfunc_die(); - redundant */
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006865 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006866 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006867 if (ch == '\'')
Denis Vlasenko0c886c62007-01-30 22:30:09 +00006868 break;
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02006869 o_addqchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00006870 }
Eric Andersen25f27032001-04-26 23:22:31 +00006871 break;
6872 case '"':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00006873 dest.o_quoted = 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00006874 is_in_dquote ^= 1; /* invert */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006875 if (dest.o_assignment == NOT_ASSIGNMENT)
6876 dest.o_escape ^= 1;
Eric Andersen25f27032001-04-26 23:22:31 +00006877 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00006878#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006879 case '`': {
Denys Vlasenko2e48d532010-05-22 17:30:39 +02006880 unsigned pos;
6881
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006882 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
6883 o_addchr(&dest, '`');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00006884 pos = dest.length;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006885 add_till_backquote(&dest, input);
Denys Vlasenko2e48d532010-05-22 17:30:39 +02006886# if !BB_MMU
Denis Vlasenko5c090a92009-04-08 21:51:33 +00006887 o_addstr(&ctx.as_string, dest.data + pos);
6888 o_addchr(&ctx.as_string, '`');
Denys Vlasenko2e48d532010-05-22 17:30:39 +02006889# endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006890 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
6891 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00006892 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00006893 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00006894#endif
Eric Andersen25f27032001-04-26 23:22:31 +00006895 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00006896#if ENABLE_HUSH_CASE
6897 case_semi:
6898#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006899 if (done_word(&dest, &ctx)) {
6900 goto parse_error;
6901 }
6902 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00006903#if ENABLE_HUSH_CASE
6904 /* Eat multiple semicolons, detect
6905 * whether it means something special */
6906 while (1) {
6907 ch = i_peek(input);
6908 if (ch != ';')
6909 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00006910 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006911 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02006912 if (ctx.ctx_res_w == RES_CASE_BODY) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006913 ctx.ctx_dsemicolon = 1;
6914 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00006915 break;
6916 }
6917 }
6918#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00006919 new_cmd:
6920 /* We just finished a cmd. New one may start
6921 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006922 dest.o_assignment = MAYBE_ASSIGNMENT;
Eric Andersen25f27032001-04-26 23:22:31 +00006923 break;
6924 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006925 if (done_word(&dest, &ctx)) {
6926 goto parse_error;
6927 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00006928 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00006929 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006930 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006931 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00006932 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006933 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00006934 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00006935 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00006936 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006937 if (done_word(&dest, &ctx)) {
6938 goto parse_error;
6939 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00006940#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006941 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00006942 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00006943#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00006944 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00006945 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006946 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006947 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00006948 } else {
6949 /* we could pick up a file descriptor choice here
6950 * with redirect_opt_num(), but bash doesn't do it.
6951 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006952 done_command(&ctx);
Denys Vlasenkob70cef72010-01-12 13:45:45 +01006953#if !BB_MMU
6954 o_reset_to_empty_unquoted(&ctx.as_string);
6955#endif
Eric Andersen25f27032001-04-26 23:22:31 +00006956 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00006957 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00006958 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00006959#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00006960 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006961 if (ctx.ctx_res_w == RES_MATCH
6962 && ctx.command->argv == NULL /* not (word|(... */
6963 && dest.length == 0 /* not word(... */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00006964 && dest.o_quoted == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00006965 ) {
6966 continue;
6967 }
6968#endif
Eric Andersen25f27032001-04-26 23:22:31 +00006969 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006970 if (parse_group(&dest, &ctx, input, ch) != 0) {
6971 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00006972 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00006973 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00006974 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00006975#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006976 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00006977 goto case_semi;
6978#endif
Eric Andersen25f27032001-04-26 23:22:31 +00006979 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00006980 /* proper use of this character is caught by end_trigger:
6981 * if we see {, we call parse_group(..., end_trigger='}')
6982 * and it will match } earlier (not here). */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00006983 syntax_error_unexpected_ch(ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006984 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00006985 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00006986 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00006987 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00006988 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006989 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00006990
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006991 parse_error:
6992 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006993 struct parse_context *pctx;
6994 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006995
6996 /* Clean up allocated tree.
Denys Vlasenko764b2f02009-06-07 16:05:04 +02006997 * Sample for finding leaks on syntax error recovery path.
6998 * Run it from interactive shell, watch pmap `pidof hush`.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006999 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00007000 * Samples to catch leaks at execution:
7001 * while if (true | {true;}); then echo ok; fi; do break; done
7002 * 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 +00007003 */
7004 pctx = &ctx;
7005 do {
7006 /* Update pipe/command counts,
7007 * otherwise freeing may miss some */
7008 done_pipe(pctx, PIPE_SEQ);
7009 debug_printf_clean("freeing list %p from ctx %p\n",
7010 pctx->list_head, pctx);
7011 debug_print_tree(pctx->list_head, 0);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00007012 free_pipe_list(pctx->list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007013 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00007014#if !BB_MMU
7015 o_free_unsafe(&pctx->as_string);
7016#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007017 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007018 if (pctx != &ctx) {
7019 free(pctx);
7020 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007021 IF_HAS_KEYWORDS(pctx = p2;)
7022 } while (HAS_KEYWORDS && pctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007023 /* Free text, clear all dest fields */
7024 o_free(&dest);
7025 /* If we are not in top-level parse, we return,
7026 * our caller will propagate error.
7027 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00007028 if (end_trigger != ';') {
7029#if !BB_MMU
7030 if (pstring)
7031 *pstring = NULL;
7032#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00007033 debug_leave();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007034 return ERR_PTR;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00007035 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007036 /* Discard cached input, force prompt */
7037 input->p = NULL;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00007038 IF_HUSH_INTERACTIVE(input->promptme = 1;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007039 goto reset;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00007040 }
Eric Andersen25f27032001-04-26 23:22:31 +00007041}
7042
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00007043/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007044 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
7045 * end_trigger controls how often we stop parsing
7046 * NUL: parse all, execute, return
7047 * ';': parse till ';' or newline, execute, repeat till EOF
7048 */
7049static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00007050{
Denys Vlasenko00243b02009-11-16 02:00:03 +01007051 /* Why we need empty flag?
7052 * An obscure corner case "false; ``; echo $?":
7053 * empty command in `` should still set $? to 0.
7054 * But we can't just set $? to 0 at the start,
7055 * this breaks "false; echo `echo $?`" case.
7056 */
7057 bool empty = 1;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007058 while (1) {
7059 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00007060
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00007061 pipe_list = parse_stream(NULL, inp, end_trigger);
Denys Vlasenko00243b02009-11-16 02:00:03 +01007062 if (!pipe_list) { /* EOF */
7063 if (empty)
7064 G.last_exitcode = 0;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007065 break;
Denys Vlasenko00243b02009-11-16 02:00:03 +01007066 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007067 debug_print_tree(pipe_list, 0);
7068 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
7069 run_and_free_list(pipe_list);
Denys Vlasenko00243b02009-11-16 02:00:03 +01007070 empty = 0;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007071 }
Eric Andersen25f27032001-04-26 23:22:31 +00007072}
7073
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007074static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00007075{
7076 struct in_str input;
7077 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007078 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00007079}
7080
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007081static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00007082{
Eric Andersen25f27032001-04-26 23:22:31 +00007083 struct in_str input;
7084 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007085 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00007086}
7087
Denis Vlasenkof9375282009-04-05 19:13:39 +00007088/* Called a few times only (or even once if "sh -c") */
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007089static void init_sigmasks(void)
Eric Andersen52a97ca2001-06-22 06:49:26 +00007090{
Denis Vlasenkof9375282009-04-05 19:13:39 +00007091 unsigned sig;
7092 unsigned mask;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007093 sigset_t old_blocked_set;
7094
7095 if (!G.inherited_set_is_saved) {
7096 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
7097 G.inherited_set = G.blocked_set;
7098 }
7099 old_blocked_set = G.blocked_set;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00007100
Denis Vlasenkof9375282009-04-05 19:13:39 +00007101 mask = (1 << SIGQUIT);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007102 if (G_interactive_fd) {
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00007103 mask = (1 << SIGQUIT) | SPECIAL_INTERACTIVE_SIGS;
Mike Frysinger38478a62009-05-20 04:48:06 -04007104 if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007105 mask |= SPECIAL_JOB_SIGS;
7106 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007107 G.non_DFL_mask = mask;
Eric Andersen52a97ca2001-06-22 06:49:26 +00007108
Denis Vlasenkof9375282009-04-05 19:13:39 +00007109 sig = 0;
7110 while (mask) {
7111 if (mask & 1)
7112 sigaddset(&G.blocked_set, sig);
7113 mask >>= 1;
7114 sig++;
7115 }
7116 sigdelset(&G.blocked_set, SIGCHLD);
7117
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007118 if (memcmp(&old_blocked_set, &G.blocked_set, sizeof(old_blocked_set)) != 0)
7119 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7120
Denis Vlasenkof9375282009-04-05 19:13:39 +00007121 /* POSIX allows shell to re-enable SIGCHLD
7122 * even if it was SIG_IGN on entry */
Denys Vlasenko8d7be232009-05-25 16:38:32 +02007123#if ENABLE_HUSH_FAST
7124 G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007125 if (!G.inherited_set_is_saved)
Denys Vlasenko8d7be232009-05-25 16:38:32 +02007126 signal(SIGCHLD, SIGCHLD_handler);
7127#else
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007128 if (!G.inherited_set_is_saved)
Denys Vlasenko8d7be232009-05-25 16:38:32 +02007129 signal(SIGCHLD, SIG_DFL);
7130#endif
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007131
7132 G.inherited_set_is_saved = 1;
Denis Vlasenkof9375282009-04-05 19:13:39 +00007133}
7134
7135#if ENABLE_HUSH_JOB
7136/* helper */
7137static void maybe_set_to_sigexit(int sig)
7138{
7139 void (*handler)(int);
7140 /* non_DFL_mask'ed signals are, well, masked,
7141 * no need to set handler for them.
7142 */
7143 if (!((G.non_DFL_mask >> sig) & 1)) {
7144 handler = signal(sig, sigexit);
7145 if (handler == SIG_IGN) /* oops... restore back to IGN! */
7146 signal(sig, handler);
7147 }
7148}
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00007149/* Set handlers to restore tty pgrp and exit */
Denis Vlasenkof9375282009-04-05 19:13:39 +00007150static void set_fatal_handlers(void)
7151{
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00007152 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenkof9375282009-04-05 19:13:39 +00007153 if (HUSH_DEBUG) {
7154 maybe_set_to_sigexit(SIGILL );
7155 maybe_set_to_sigexit(SIGFPE );
7156 maybe_set_to_sigexit(SIGBUS );
7157 maybe_set_to_sigexit(SIGSEGV);
7158 maybe_set_to_sigexit(SIGTRAP);
7159 } /* else: hush is perfect. what SEGV? */
7160 maybe_set_to_sigexit(SIGABRT);
7161 /* bash 3.2 seems to handle these just like 'fatal' ones */
7162 maybe_set_to_sigexit(SIGPIPE);
7163 maybe_set_to_sigexit(SIGALRM);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00007164 /* if we are interactive, SIGHUP, SIGTERM and SIGINT are masked.
Denis Vlasenkof9375282009-04-05 19:13:39 +00007165 * if we aren't interactive... but in this case
7166 * we never want to restore pgrp on exit, and this fn is not called */
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00007167 /*maybe_set_to_sigexit(SIGHUP );*/
Denis Vlasenkof9375282009-04-05 19:13:39 +00007168 /*maybe_set_to_sigexit(SIGTERM);*/
7169 /*maybe_set_to_sigexit(SIGINT );*/
Eric Andersen6c947d22001-06-25 22:24:38 +00007170}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00007171#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00007172
Denis Vlasenkod5762932009-03-31 11:22:57 +00007173static int set_mode(const char cstate, const char mode)
7174{
7175 int state = (cstate == '-' ? 1 : 0);
7176 switch (mode) {
Denys Vlasenko202a2d12010-07-16 12:36:14 +02007177 case 'n': G.n_mode = state; break;
7178 case 'x': IF_HUSH_MODE_X(G_x_mode = state;) break;
Denis Vlasenkod5762932009-03-31 11:22:57 +00007179 default: return EXIT_FAILURE;
7180 }
7181 return EXIT_SUCCESS;
7182}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007183
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00007184int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00007185int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00007186{
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00007187 static const struct variable const_shell_ver = {
7188 .next = NULL,
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00007189 .varstr = (char*)hush_version_str,
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00007190 .max_len = 1, /* 0 can provoke free(name) */
7191 .flg_export = 1,
7192 .flg_read_only = 1,
7193 };
Eric Andersen25f27032001-04-26 23:22:31 +00007194 int opt;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007195 unsigned builtin_argc;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007196 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007197 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00007198
Denis Vlasenko574f2f42008-02-27 18:41:59 +00007199 INIT_G();
Denys Vlasenkocddbb612010-05-20 14:27:09 +02007200 if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, it is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00007201 G.last_exitcode = EXIT_SUCCESS;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007202#if !BB_MMU
7203 G.argv0_for_re_execing = argv[0];
7204#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00007205 /* Deal with HUSH_VERSION */
Denis Vlasenko87a86552008-07-29 19:43:10 +00007206 G.shell_ver = const_shell_ver; /* copying struct here */
7207 G.top_var = &G.shell_ver;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00007208 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00007209 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
7210 /* Initialize our shell local variables with the values
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007211 * currently living in the environment */
Denis Vlasenko87a86552008-07-29 19:43:10 +00007212 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00007213 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007214 if (e) while (*e) {
7215 char *value = strchr(*e, '=');
7216 if (value) { /* paranoia */
7217 cur_var->next = xzalloc(sizeof(*cur_var));
7218 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00007219 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007220 cur_var->max_len = strlen(*e);
7221 cur_var->flg_export = 1;
7222 }
7223 e++;
7224 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02007225 /* reinstate HUSH_VERSION */
Denis Vlasenkof886fd22008-10-13 12:36:05 +00007226 debug_printf_env("putenv '%s'\n", hush_version_str);
Denys Vlasenko6db47842009-09-05 20:15:17 +02007227 putenv((char *)hush_version_str);
7228
7229 /* Export PWD */
7230 set_pwd_var(/*exp:*/ 1);
7231 /* bash also exports SHLVL and _,
7232 * and sets (but doesn't export) the following variables:
7233 * BASH=/bin/bash
7234 * BASH_VERSINFO=([0]="3" [1]="2" [2]="0" [3]="1" [4]="release" [5]="i386-pc-linux-gnu")
7235 * BASH_VERSION='3.2.0(1)-release'
7236 * HOSTTYPE=i386
7237 * MACHTYPE=i386-pc-linux-gnu
7238 * OSTYPE=linux-gnu
7239 * HOSTNAME=<xxxxxxxxxx>
Denys Vlasenkodea47882009-10-09 15:40:49 +02007240 * PPID=<NNNNN> - we also do it elsewhere
Denys Vlasenko6db47842009-09-05 20:15:17 +02007241 * EUID=<NNNNN>
7242 * UID=<NNNNN>
7243 * GROUPS=()
7244 * LINES=<NNN>
7245 * COLUMNS=<NNN>
7246 * BASH_ARGC=()
7247 * BASH_ARGV=()
7248 * BASH_LINENO=()
7249 * BASH_SOURCE=()
7250 * DIRSTACK=()
7251 * PIPESTATUS=([0]="0")
7252 * HISTFILE=/<xxx>/.bash_history
7253 * HISTFILESIZE=500
7254 * HISTSIZE=500
7255 * MAILCHECK=60
7256 * PATH=/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:.
7257 * SHELL=/bin/bash
7258 * SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor
7259 * TERM=dumb
7260 * OPTERR=1
7261 * OPTIND=1
7262 * IFS=$' \t\n'
7263 * PS1='\s-\v\$ '
7264 * PS2='> '
7265 * PS4='+ '
7266 */
7267
Denis Vlasenko38f63192007-01-22 09:03:07 +00007268#if ENABLE_FEATURE_EDITING
Denis Vlasenko87a86552008-07-29 19:43:10 +00007269 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00007270#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00007271 G.global_argc = argc;
7272 G.global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00007273 /* Initialize some more globals to non-zero values */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00007274 cmdedit_update_prompt();
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00007275
Denis Vlasenkoed782372009-04-10 00:45:02 +00007276 if (setjmp(die_jmp)) {
7277 /* xfunc has failed! die die die */
7278 /* no EXIT traps, this is an escape hatch! */
7279 G.exiting = 1;
7280 hush_exit(xfunc_error_retval);
7281 }
7282
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00007283 /* Shell is non-interactive at first. We need to call
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007284 * init_sigmasks() if we are going to execute "sh <script>",
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00007285 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007286 * If we later decide that we are interactive, we run init_sigmasks()
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00007287 * in order to intercept (more) signals.
7288 */
7289
7290 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00007291 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007292 builtin_argc = 0;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007293 while (1) {
Denys Vlasenkoa67a9622009-08-20 03:38:58 +02007294 opt = getopt(argc, argv, "+c:xins"
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007295#if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00007296 "<:$:R:V:"
7297# if ENABLE_HUSH_FUNCTIONS
7298 "F:"
7299# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007300#endif
7301 );
7302 if (opt <= 0)
7303 break;
Eric Andersen25f27032001-04-26 23:22:31 +00007304 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007305 case 'c':
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007306 /* Possibilities:
7307 * sh ... -c 'script'
7308 * sh ... -c 'script' ARG0 [ARG1...]
7309 * On NOMMU, if builtin_argc != 0,
Denys Vlasenko17323a62010-01-28 01:57:05 +01007310 * sh ... -c 'builtin' BARGV... "" ARG0 [ARG1...]
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007311 * "" needs to be replaced with NULL
7312 * and BARGV vector fed to builtin function.
Denys Vlasenko17323a62010-01-28 01:57:05 +01007313 * Note: the form without ARG0 never happens:
7314 * sh ... -c 'builtin' BARGV... ""
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007315 */
Denys Vlasenkodea47882009-10-09 15:40:49 +02007316 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007317 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02007318 G.root_ppid = getppid();
7319 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00007320 G.global_argv = argv + optind;
7321 G.global_argc = argc - optind;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007322 if (builtin_argc) {
7323 /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */
7324 const struct built_in_command *x;
7325
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007326 init_sigmasks();
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007327 x = find_builtin(optarg);
7328 if (x) { /* paranoia */
7329 G.global_argc -= builtin_argc; /* skip [BARGV...] "" */
7330 G.global_argv += builtin_argc;
7331 G.global_argv[-1] = NULL; /* replace "" */
Denys Vlasenko17323a62010-01-28 01:57:05 +01007332 G.last_exitcode = x->b_function(argv + optind - 1);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007333 }
7334 goto final_return;
7335 }
7336 if (!G.global_argv[0]) {
7337 /* -c 'script' (no params): prevent empty $0 */
7338 G.global_argv--; /* points to argv[i] of 'script' */
7339 G.global_argv[0] = argv[0];
Denys Vlasenko5ae8f1c2010-05-22 06:32:11 +02007340 G.global_argc++;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007341 } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007342 init_sigmasks();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007343 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007344 goto final_return;
7345 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00007346 /* Well, we cannot just declare interactiveness,
7347 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007348 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007349 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00007350 case 's':
7351 /* "-s" means "read from stdin", but this is how we always
7352 * operate, so simply do nothing here. */
7353 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007354#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00007355 case '<': /* "big heredoc" support */
Denys Vlasenko729ecb82010-06-07 14:14:26 +02007356 full_write1_str(optarg);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00007357 _exit(0);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007358 case '$': {
7359 unsigned long long empty_trap_mask;
7360
Denis Vlasenko34e573d2009-04-06 12:56:28 +00007361 G.root_pid = bb_strtou(optarg, &optarg, 16);
7362 optarg++;
Denys Vlasenkodea47882009-10-09 15:40:49 +02007363 G.root_ppid = bb_strtou(optarg, &optarg, 16);
7364 optarg++;
Denis Vlasenko34e573d2009-04-06 12:56:28 +00007365 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
7366 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00007367 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007368 optarg++;
7369 builtin_argc = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007370 optarg++;
7371 empty_trap_mask = bb_strtoull(optarg, &optarg, 16);
7372 if (empty_trap_mask != 0) {
7373 int sig;
7374 init_sigmasks();
7375 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
7376 for (sig = 1; sig < NSIG; sig++) {
7377 if (empty_trap_mask & (1LL << sig)) {
7378 G.traps[sig] = xzalloc(1); /* == xstrdup(""); */
7379 sigaddset(&G.blocked_set, sig);
7380 }
7381 }
7382 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7383 }
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00007384# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00007385 optarg++;
7386 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00007387# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00007388 break;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007389 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007390 case 'R':
7391 case 'V':
Denys Vlasenko295fef82009-06-03 12:47:26 +02007392 set_local_var(xstrdup(optarg), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ opt == 'R');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007393 break;
Denis Vlasenkobc569742009-04-12 20:35:19 +00007394# if ENABLE_HUSH_FUNCTIONS
7395 case 'F': {
7396 struct function *funcp = new_function(optarg);
7397 /* funcp->name is already set to optarg */
7398 /* funcp->body is set to NULL. It's a special case. */
7399 funcp->body_as_string = argv[optind];
7400 optind++;
7401 break;
7402 }
7403# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007404#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00007405 case 'n':
7406 case 'x':
Denys Vlasenko889550b2010-07-14 19:01:25 +02007407 if (set_mode('-', opt) == 0) /* no error */
Mike Frysingerad88d5a2009-03-28 13:44:51 +00007408 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007409 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00007410#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007411 fprintf(stderr, "Usage: sh [FILE]...\n"
7412 " or: sh -c command [args]...\n\n");
7413 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00007414#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007415 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00007416#endif
Eric Andersen25f27032001-04-26 23:22:31 +00007417 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007418 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007419
Denys Vlasenkodea47882009-10-09 15:40:49 +02007420 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007421 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02007422 G.root_ppid = getppid();
7423 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007424
7425 /* If we are login shell... */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007426 if (argv[0] && argv[0][0] == '-') {
7427 FILE *input;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007428 debug_printf("sourcing /etc/profile\n");
7429 input = fopen_for_read("/etc/profile");
7430 if (input != NULL) {
7431 close_on_exec_on(fileno(input));
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007432 init_sigmasks();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007433 parse_and_run_file(input);
7434 fclose(input);
7435 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007436 /* bash: after sourcing /etc/profile,
7437 * tries to source (in the given order):
7438 * ~/.bash_profile, ~/.bash_login, ~/.profile,
Denys Vlasenko28a105d2009-06-01 11:26:30 +02007439 * stopping on first found. --noprofile turns this off.
Denis Vlasenkof9375282009-04-05 19:13:39 +00007440 * bash also sources ~/.bash_logout on exit.
7441 * If called as sh, skips .bash_XXX files.
7442 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007443 }
7444
Denis Vlasenkof9375282009-04-05 19:13:39 +00007445 if (argv[optind]) {
7446 FILE *input;
7447 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00007448 * "bash <script>" (which is never interactive (unless -i?))
7449 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00007450 * If called as sh, does the same but with $ENV.
7451 */
7452 debug_printf("running script '%s'\n", argv[optind]);
7453 G.global_argv = argv + optind;
7454 G.global_argc = argc - optind;
7455 input = xfopen_for_read(argv[optind]);
7456 close_on_exec_on(fileno(input));
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007457 init_sigmasks();
Denis Vlasenkof9375282009-04-05 19:13:39 +00007458 parse_and_run_file(input);
7459#if ENABLE_FEATURE_CLEAN_UP
7460 fclose(input);
7461#endif
7462 goto final_return;
7463 }
7464
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00007465 /* Up to here, shell was non-interactive. Now it may become one.
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007466 * NB: don't forget to (re)run init_sigmasks() as needed.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00007467 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00007468
Denys Vlasenko28a105d2009-06-01 11:26:30 +02007469 /* A shell is interactive if the '-i' flag was given,
7470 * or if all of the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00007471 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00007472 * no arguments remaining or the -s flag given
7473 * standard input is a terminal
7474 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00007475 * Refer to Posix.2, the description of the 'sh' utility.
7476 */
7477#if ENABLE_HUSH_JOB
7478 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Mike Frysinger38478a62009-05-20 04:48:06 -04007479 G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
7480 debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp);
7481 if (G_saved_tty_pgrp < 0)
7482 G_saved_tty_pgrp = 0;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007483
7484 /* try to dup stdin to high fd#, >= 255 */
7485 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
7486 if (G_interactive_fd < 0) {
7487 /* try to dup to any fd */
7488 G_interactive_fd = dup(STDIN_FILENO);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007489 if (G_interactive_fd < 0) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007490 /* give up */
7491 G_interactive_fd = 0;
Mike Frysinger38478a62009-05-20 04:48:06 -04007492 G_saved_tty_pgrp = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00007493 }
7494 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007495// TODO: track & disallow any attempts of user
7496// to (inadvertently) close/redirect G_interactive_fd
Eric Andersen25f27032001-04-26 23:22:31 +00007497 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007498 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007499 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00007500 close_on_exec_on(G_interactive_fd);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007501
Mike Frysinger38478a62009-05-20 04:48:06 -04007502 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007503 /* If we were run as 'hush &', sleep until we are
7504 * in the foreground (tty pgrp == our pgrp).
7505 * If we get started under a job aware app (like bash),
7506 * make sure we are now in charge so we don't fight over
7507 * who gets the foreground */
7508 while (1) {
7509 pid_t shell_pgrp = getpgrp();
Mike Frysinger38478a62009-05-20 04:48:06 -04007510 G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
7511 if (G_saved_tty_pgrp == shell_pgrp)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007512 break;
7513 /* send TTIN to ourself (should stop us) */
7514 kill(- shell_pgrp, SIGTTIN);
7515 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007516 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007517
Denis Vlasenkof9375282009-04-05 19:13:39 +00007518 /* Block some signals */
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007519 init_sigmasks();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007520
Mike Frysinger38478a62009-05-20 04:48:06 -04007521 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007522 /* Set other signals to restore saved_tty_pgrp */
7523 set_fatal_handlers();
7524 /* Put ourselves in our own process group
7525 * (bash, too, does this only if ctty is available) */
7526 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
7527 /* Grab control of the terminal */
7528 tcsetpgrp(G_interactive_fd, getpid());
7529 }
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00007530 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00007531 * (we reset die_sleep = 0 whereever we [v]fork) */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00007532 enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007533 } else {
7534 init_sigmasks();
7535 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00007536#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00007537 /* No job control compiled in, only prompt/line editing */
7538 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007539 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
7540 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00007541 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007542 G_interactive_fd = dup(STDIN_FILENO);
7543 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00007544 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007545 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00007546 }
7547 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007548 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00007549 close_on_exec_on(G_interactive_fd);
Denis Vlasenkof9375282009-04-05 19:13:39 +00007550 }
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007551 init_sigmasks();
Denis Vlasenkof9375282009-04-05 19:13:39 +00007552#else
7553 /* We have interactiveness code disabled */
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007554 init_sigmasks();
Denis Vlasenkof9375282009-04-05 19:13:39 +00007555#endif
7556 /* bash:
7557 * if interactive but not a login shell, sources ~/.bashrc
7558 * (--norc turns this off, --rcfile <file> overrides)
7559 */
7560
7561 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Denys Vlasenkoc34c0332009-09-29 12:25:30 +02007562 /* note: ash and hush share this string */
7563 printf("\n\n%s %s\n"
7564 IF_HUSH_HELP("Enter 'help' for a list of built-in commands.\n")
7565 "\n",
7566 bb_banner,
7567 "hush - the humble shell"
7568 );
Mike Frysingerb2705e12009-03-23 08:44:02 +00007569 }
7570
Denis Vlasenkof9375282009-04-05 19:13:39 +00007571 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00007572
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007573 final_return:
Denis Vlasenko38f63192007-01-22 09:03:07 +00007574#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko87a86552008-07-29 19:43:10 +00007575 if (G.cwd != bb_msg_unknown)
7576 free((char*)G.cwd);
7577 cur_var = G.top_var->next;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007578 while (cur_var) {
7579 struct variable *tmp = cur_var;
7580 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00007581 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007582 cur_var = cur_var->next;
7583 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00007584 }
Eric Andersen25f27032001-04-26 23:22:31 +00007585#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00007586 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00007587}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00007588
7589
7590#if ENABLE_LASH
7591int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
7592int lash_main(int argc, char **argv)
7593{
Denys Vlasenko07934912009-08-20 03:40:04 +02007594 bb_error_msg("lash is deprecated, please use hush instead");
Denis Vlasenko96702ca2007-11-23 23:28:55 +00007595 return hush_main(argc, argv);
7596}
7597#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007598
Denys Vlasenko1cc4b132009-08-21 00:05:51 +02007599#if ENABLE_MSH
7600int msh_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
7601int msh_main(int argc, char **argv)
7602{
7603 //bb_error_msg("msh is deprecated, please use hush instead");
7604 return hush_main(argc, argv);
7605}
7606#endif
7607
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007608
7609/*
7610 * Built-ins
7611 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007612static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007613{
7614 return 0;
7615}
7616
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02007617static int run_applet_main(char **argv, int (*applet_main_func)(int argc, char **argv))
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007618{
7619 int argc = 0;
7620 while (*argv) {
7621 argc++;
7622 argv++;
7623 }
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02007624 return applet_main_func(argc, argv - argc);
Mike Frysingerccb19592009-10-15 03:31:15 -04007625}
7626
7627static int FAST_FUNC builtin_test(char **argv)
7628{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02007629 return run_applet_main(argv, test_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007630}
7631
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007632static int FAST_FUNC builtin_echo(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007633{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02007634 return run_applet_main(argv, echo_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007635}
7636
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04007637#if ENABLE_PRINTF
7638static int FAST_FUNC builtin_printf(char **argv)
7639{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02007640 return run_applet_main(argv, printf_main);
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04007641}
7642#endif
7643
Denys Vlasenkob131cce2010-05-20 03:39:43 +02007644static char **skip_dash_dash(char **argv)
7645{
7646 argv++;
7647 if (argv[0] && argv[0][0] == '-' && argv[0][1] == '-' && argv[0][2] == '\0')
7648 argv++;
7649 return argv;
7650}
7651
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007652static int FAST_FUNC builtin_eval(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007653{
7654 int rcode = EXIT_SUCCESS;
7655
Denys Vlasenkob131cce2010-05-20 03:39:43 +02007656 argv = skip_dash_dash(argv);
7657 if (*argv) {
Denis Vlasenkob0a64782009-04-06 11:33:07 +00007658 char *str = expand_strvec_to_string(argv);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007659 /* bash:
7660 * eval "echo Hi; done" ("done" is syntax error):
7661 * "echo Hi" will not execute too.
7662 */
7663 parse_and_run_string(str);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007664 free(str);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00007665 rcode = G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007666 }
7667 return rcode;
7668}
7669
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007670static int FAST_FUNC builtin_cd(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007671{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02007672 const char *newdir;
7673
7674 argv = skip_dash_dash(argv);
7675 newdir = argv[0];
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007676 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007677 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00007678 * bash says "bash: cd: HOME not set" and does nothing
7679 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007680 */
Denys Vlasenko90a99042009-09-06 02:36:23 +02007681 const char *home = get_local_var_value("HOME");
7682 newdir = home ? home : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00007683 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007684 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007685 /* Mimic bash message exactly */
7686 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007687 return EXIT_FAILURE;
7688 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02007689 /* Read current dir (get_cwd(1) is inside) and set PWD.
7690 * Note: do not enforce exporting. If PWD was unset or unexported,
7691 * set it again, but do not export. bash does the same.
7692 */
7693 set_pwd_var(/*exp:*/ 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007694 return EXIT_SUCCESS;
7695}
7696
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007697static int FAST_FUNC builtin_exec(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007698{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02007699 argv = skip_dash_dash(argv);
7700 if (argv[0] == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007701 return EXIT_SUCCESS; /* bash does this */
Denys Vlasenkof37eb392009-10-18 11:46:35 +02007702
Denys Vlasenkof37eb392009-10-18 11:46:35 +02007703 /* Careful: we can end up here after [v]fork. Do not restore
7704 * tty pgrp then, only top-level shell process does that */
7705 if (G_saved_tty_pgrp && getpid() == G.root_pid)
7706 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
7707
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02007708 /* TODO: if exec fails, bash does NOT exit! We do.
7709 * We'll need to undo sigprocmask (it's inside execvp_or_die)
7710 * and tcsetpgrp, and this is inherently racy.
7711 */
7712 execvp_or_die(argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007713}
7714
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007715static int FAST_FUNC builtin_exit(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007716{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00007717 debug_printf_exec("%s()\n", __func__);
Denis Vlasenko40e84372009-04-18 11:23:38 +00007718
7719 /* interactive bash:
7720 * # trap "echo EEE" EXIT
7721 * # exit
7722 * exit
7723 * There are stopped jobs.
7724 * (if there are _stopped_ jobs, running ones don't count)
7725 * # exit
7726 * exit
7727 # EEE (then bash exits)
7728 *
7729 * we can use G.exiting = -1 as indicator "last cmd was exit"
7730 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00007731
7732 /* note: EXIT trap is run by hush_exit */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02007733 argv = skip_dash_dash(argv);
7734 if (argv[0] == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00007735 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007736 /* mimic bash: exit 123abc == exit 255 + error msg */
7737 xfunc_error_retval = 255;
7738 /* bash: exit -2 == exit 254, no error msg */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02007739 hush_exit(xatoi(argv[0]) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007740}
7741
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007742static void print_escaped(const char *s)
7743{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007744 if (*s == '\'')
7745 goto squote;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007746 do {
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007747 const char *p = strchrnul(s, '\'');
7748 /* print 'xxxx', possibly just '' */
7749 printf("'%.*s'", (int)(p - s), s);
7750 if (*p == '\0')
7751 break;
7752 s = p;
7753 squote:
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007754 /* s points to '; print "'''...'''" */
7755 putchar('"');
7756 do putchar('\''); while (*++s == '\'');
7757 putchar('"');
7758 } while (*s);
7759}
7760
Denys Vlasenko295fef82009-06-03 12:47:26 +02007761#if !ENABLE_HUSH_LOCAL
7762#define helper_export_local(argv, exp, lvl) \
7763 helper_export_local(argv, exp)
7764#endif
7765static void helper_export_local(char **argv, int exp, int lvl)
7766{
7767 do {
7768 char *name = *argv;
7769
7770 /* So far we do not check that name is valid (TODO?) */
7771
7772 if (strchr(name, '=') == NULL) {
7773 struct variable *var;
7774
7775 var = get_local_var(name);
7776 if (exp == -1) { /* unexporting? */
7777 /* export -n NAME (without =VALUE) */
7778 if (var) {
7779 var->flg_export = 0;
7780 debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
7781 unsetenv(name);
7782 } /* else: export -n NOT_EXISTING_VAR: no-op */
7783 continue;
7784 }
7785 if (exp == 1) { /* exporting? */
7786 /* export NAME (without =VALUE) */
7787 if (var) {
7788 var->flg_export = 1;
7789 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
7790 putenv(var->varstr);
7791 continue;
7792 }
7793 }
7794 /* Exporting non-existing variable.
7795 * bash does not put it in environment,
7796 * but remembers that it is exported,
7797 * and does put it in env when it is set later.
7798 * We just set it to "" and export. */
7799 /* Or, it's "local NAME" (without =VALUE).
7800 * bash sets the value to "". */
7801 name = xasprintf("%s=", name);
7802 } else {
7803 /* (Un)exporting/making local NAME=VALUE */
7804 name = xstrdup(name);
7805 }
7806 set_local_var(name, /*exp:*/ exp, /*lvl:*/ lvl, /*ro:*/ 0);
7807 } while (*++argv);
7808}
7809
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007810static int FAST_FUNC builtin_export(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007811{
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00007812 unsigned opt_unexport;
7813
Denys Vlasenkodf5131c2009-06-07 16:04:17 +02007814#if ENABLE_HUSH_EXPORT_N
7815 /* "!": do not abort on errors */
7816 opt_unexport = getopt32(argv, "!n");
7817 if (opt_unexport == (uint32_t)-1)
7818 return EXIT_FAILURE;
7819 argv += optind;
7820#else
7821 opt_unexport = 0;
7822 argv++;
7823#endif
7824
7825 if (argv[0] == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007826 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00007827 if (e) {
7828 while (*e) {
7829#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007830 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00007831#else
7832 /* ash emits: export VAR='VAL'
7833 * bash: declare -x VAR="VAL"
7834 * we follow ash example */
7835 const char *s = *e++;
7836 const char *p = strchr(s, '=');
7837
7838 if (!p) /* wtf? take next variable */
7839 continue;
7840 /* export var= */
7841 printf("export %.*s", (int)(p - s) + 1, s);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007842 print_escaped(p + 1);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00007843 putchar('\n');
7844#endif
7845 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01007846 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00007847 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007848 return EXIT_SUCCESS;
7849 }
7850
Denys Vlasenko295fef82009-06-03 12:47:26 +02007851 helper_export_local(argv, (opt_unexport ? -1 : 1), 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007852
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007853 return EXIT_SUCCESS;
7854}
7855
Denys Vlasenko295fef82009-06-03 12:47:26 +02007856#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007857static int FAST_FUNC builtin_local(char **argv)
Denys Vlasenko295fef82009-06-03 12:47:26 +02007858{
7859 if (G.func_nest_level == 0) {
7860 bb_error_msg("%s: not in a function", argv[0]);
7861 return EXIT_FAILURE; /* bash compat */
7862 }
7863 helper_export_local(argv, 0, G.func_nest_level);
7864 return EXIT_SUCCESS;
7865}
7866#endif
7867
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007868static int FAST_FUNC builtin_trap(char **argv)
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007869{
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007870 int sig;
7871 char *new_cmd;
7872
7873 if (!G.traps)
7874 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
7875
7876 argv++;
7877 if (!*argv) {
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00007878 int i;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007879 /* No args: print all trapped */
7880 for (i = 0; i < NSIG; ++i) {
7881 if (G.traps[i]) {
7882 printf("trap -- ");
7883 print_escaped(G.traps[i]);
Denys Vlasenkoe74aaf92009-09-27 02:05:45 +02007884 /* note: bash adds "SIG", but only if invoked
7885 * as "bash". If called as "sh", or if set -o posix,
7886 * then it prints short signal names.
7887 * We are printing short names: */
7888 printf(" %s\n", get_signame(i));
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007889 }
7890 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01007891 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007892 return EXIT_SUCCESS;
7893 }
7894
7895 new_cmd = NULL;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007896 /* If first arg is a number: reset all specified signals */
7897 sig = bb_strtou(*argv, NULL, 10);
7898 if (errno == 0) {
7899 int ret;
7900 process_sig_list:
7901 ret = EXIT_SUCCESS;
7902 while (*argv) {
7903 sig = get_signum(*argv++);
7904 if (sig < 0 || sig >= NSIG) {
7905 ret = EXIT_FAILURE;
7906 /* Mimic bash message exactly */
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00007907 bb_perror_msg("trap: %s: invalid signal specification", argv[-1]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007908 continue;
7909 }
7910
7911 free(G.traps[sig]);
7912 G.traps[sig] = xstrdup(new_cmd);
7913
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007914 debug_printf("trap: setting SIG%s (%i) to '%s'\n",
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007915 get_signame(sig), sig, G.traps[sig]);
7916
7917 /* There is no signal for 0 (EXIT) */
7918 if (sig == 0)
7919 continue;
7920
7921 if (new_cmd) {
7922 sigaddset(&G.blocked_set, sig);
7923 } else {
7924 /* There was a trap handler, we are removing it
7925 * (if sig has non-DFL handling,
7926 * we don't need to do anything) */
7927 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
7928 continue;
7929 sigdelset(&G.blocked_set, sig);
7930 }
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007931 }
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00007932 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007933 return ret;
7934 }
7935
7936 if (!argv[1]) { /* no second arg */
7937 bb_error_msg("trap: invalid arguments");
7938 return EXIT_FAILURE;
7939 }
7940
7941 /* First arg is "-": reset all specified to default */
7942 /* First arg is "--": skip it, the rest is "handler SIGs..." */
7943 /* Everything else: set arg as signal handler
7944 * (includes "" case, which ignores signal) */
7945 if (argv[0][0] == '-') {
7946 if (argv[0][1] == '\0') { /* "-" */
7947 /* new_cmd remains NULL: "reset these sigs" */
7948 goto reset_traps;
7949 }
7950 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
7951 argv++;
7952 }
7953 /* else: "-something", no special meaning */
7954 }
7955 new_cmd = *argv;
7956 reset_traps:
7957 argv++;
7958 goto process_sig_list;
7959}
7960
Mike Frysinger93cadc22009-05-27 17:06:25 -04007961/* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007962static int FAST_FUNC builtin_type(char **argv)
Mike Frysinger93cadc22009-05-27 17:06:25 -04007963{
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02007964 int ret = EXIT_SUCCESS;
Mike Frysinger93cadc22009-05-27 17:06:25 -04007965
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02007966 while (*++argv) {
Mike Frysinger93cadc22009-05-27 17:06:25 -04007967 const char *type;
Denys Vlasenko171932d2009-05-28 17:07:22 +02007968 char *path = NULL;
Mike Frysinger93cadc22009-05-27 17:06:25 -04007969
7970 if (0) {} /* make conditional compile easier below */
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02007971 /*else if (find_alias(*argv))
Mike Frysinger93cadc22009-05-27 17:06:25 -04007972 type = "an alias";*/
7973#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02007974 else if (find_function(*argv))
Mike Frysinger93cadc22009-05-27 17:06:25 -04007975 type = "a function";
7976#endif
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02007977 else if (find_builtin(*argv))
Mike Frysinger93cadc22009-05-27 17:06:25 -04007978 type = "a shell builtin";
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02007979 else if ((path = find_in_path(*argv)) != NULL)
7980 type = path;
Denys Vlasenko5d7cca22009-05-28 09:58:43 +02007981 else {
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02007982 bb_error_msg("type: %s: not found", *argv);
Mike Frysinger93cadc22009-05-27 17:06:25 -04007983 ret = EXIT_FAILURE;
Denys Vlasenko5d7cca22009-05-28 09:58:43 +02007984 continue;
7985 }
Mike Frysinger93cadc22009-05-27 17:06:25 -04007986
Denys Vlasenko5d7cca22009-05-28 09:58:43 +02007987 printf("%s is %s\n", *argv, type);
7988 free(path);
Mike Frysinger93cadc22009-05-27 17:06:25 -04007989 }
7990
7991 return ret;
7992}
7993
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007994#if ENABLE_HUSH_JOB
7995/* built-in 'fg' and 'bg' handler */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007996static int FAST_FUNC builtin_fg_bg(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007997{
7998 int i, jobnum;
7999 struct pipe *pi;
8000
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008001 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008002 return EXIT_FAILURE;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008003
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008004 /* If they gave us no args, assume they want the last backgrounded task */
8005 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00008006 for (pi = G.job_list; pi; pi = pi->next) {
8007 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008008 goto found;
8009 }
8010 }
8011 bb_error_msg("%s: no current job", argv[0]);
8012 return EXIT_FAILURE;
8013 }
8014 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
8015 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
8016 return EXIT_FAILURE;
8017 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008018 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008019 if (pi->jobid == jobnum) {
8020 goto found;
8021 }
8022 }
8023 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
8024 return EXIT_FAILURE;
8025 found:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00008026 /* TODO: bash prints a string representation
8027 * of job being foregrounded (like "sleep 1 | cat") */
Mike Frysinger38478a62009-05-20 04:48:06 -04008028 if (argv[0][0] == 'f' && G_saved_tty_pgrp) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008029 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008030 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008031 }
8032
8033 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00008034 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
8035 for (i = 0; i < pi->num_cmds; i++) {
8036 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
8037 pi->cmds[i].is_stopped = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008038 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00008039 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008040
8041 i = kill(- pi->pgrp, SIGCONT);
8042 if (i < 0) {
8043 if (errno == ESRCH) {
8044 delete_finished_bg_job(pi);
8045 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008046 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00008047 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008048 }
8049
Denis Vlasenko34d4d892009-04-04 20:24:37 +00008050 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008051 remove_bg_job(pi);
8052 return checkjobs_and_fg_shell(pi);
8053 }
8054 return EXIT_SUCCESS;
8055}
8056#endif
8057
8058#if ENABLE_HUSH_HELP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008059static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008060{
8061 const struct built_in_command *x;
8062
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008063 printf(
Denis Vlasenko34d4d892009-04-04 20:24:37 +00008064 "Built-in commands:\n"
8065 "------------------\n");
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008066 for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) {
Denys Vlasenko17323a62010-01-28 01:57:05 +01008067 if (x->b_descr)
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008068 printf("%-10s%s\n", x->b_cmd, x->b_descr);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008069 }
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008070 bb_putchar('\n');
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008071 return EXIT_SUCCESS;
8072}
8073#endif
8074
8075#if ENABLE_HUSH_JOB
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008076static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008077{
8078 struct pipe *job;
8079 const char *status_string;
8080
Denis Vlasenko87a86552008-07-29 19:43:10 +00008081 for (job = G.job_list; job; job = job->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00008082 if (job->alive_cmds == job->stopped_cmds)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008083 status_string = "Stopped";
8084 else
8085 status_string = "Running";
8086
8087 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
8088 }
8089 return EXIT_SUCCESS;
8090}
8091#endif
8092
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00008093#if HUSH_DEBUG
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008094static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM)
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00008095{
8096 void *p;
8097 unsigned long l;
8098
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008099# ifdef M_TRIM_THRESHOLD
Denys Vlasenko27726cb2009-09-12 14:48:33 +02008100 /* Optional. Reduces probability of false positives */
8101 malloc_trim(0);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008102# endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00008103 /* Crude attempt to find where "free memory" starts,
8104 * sans fragmentation. */
8105 p = malloc(240);
8106 l = (unsigned long)p;
8107 free(p);
8108 p = malloc(3400);
8109 if (l < (unsigned long)p) l = (unsigned long)p;
8110 free(p);
8111
8112 if (!G.memleak_value)
8113 G.memleak_value = l;
Denys Vlasenko9038d6f2009-07-15 20:02:19 +02008114
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00008115 l -= G.memleak_value;
8116 if ((long)l < 0)
8117 l = 0;
8118 l /= 1024;
8119 if (l > 127)
8120 l = 127;
8121
8122 /* Exitcode is "how many kilobytes we leaked since 1st call" */
8123 return l;
8124}
8125#endif
8126
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008127static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008128{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008129 puts(get_cwd(0));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008130 return EXIT_SUCCESS;
8131}
8132
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008133static int FAST_FUNC builtin_read(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008134{
Denys Vlasenko03dad222010-01-12 23:29:57 +01008135 const char *r;
8136 char *opt_n = NULL;
8137 char *opt_p = NULL;
8138 char *opt_t = NULL;
8139 char *opt_u = NULL;
8140 int read_flags;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00008141
Denys Vlasenko03dad222010-01-12 23:29:57 +01008142 /* "!": do not abort on errors.
8143 * Option string must start with "sr" to match BUILTIN_READ_xxx
8144 */
8145 read_flags = getopt32(argv, "!srn:p:t:u:", &opt_n, &opt_p, &opt_t, &opt_u);
8146 if (read_flags == (uint32_t)-1)
8147 return EXIT_FAILURE;
8148 argv += optind;
8149
8150 r = shell_builtin_read(set_local_var_from_halves,
8151 argv,
8152 get_local_var_value("IFS"), /* can be NULL */
8153 read_flags,
8154 opt_n,
8155 opt_p,
8156 opt_t,
8157 opt_u
8158 );
8159
8160 if ((uintptr_t)r > 1) {
8161 bb_error_msg("%s", r);
8162 r = (char*)(uintptr_t)1;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00008163 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008164
Denys Vlasenko03dad222010-01-12 23:29:57 +01008165 return (uintptr_t)r;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008166}
8167
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008168/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
8169 * built-in 'set' handler
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00008170 * SUSv3 says:
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008171 * set [-abCefhmnuvx] [-o option] [argument...]
8172 * set [+abCefhmnuvx] [+o option] [argument...]
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00008173 * set -- [argument...]
8174 * set -o
8175 * set +o
8176 * Implementations shall support the options in both their hyphen and
8177 * plus-sign forms. These options can also be specified as options to sh.
8178 * Examples:
8179 * Write out all variables and their values: set
8180 * Set $1, $2, and $3 and set "$#" to 3: set c a b
8181 * Turn on the -x and -v options: set -xv
8182 * Unset all positional parameters: set --
8183 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
8184 * Set the positional parameters to the expansion of x, even if x expands
8185 * with a leading '-' or '+': set -- $x
8186 *
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008187 * So far, we only support "set -- [argument...]" and some of the short names.
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00008188 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008189static int FAST_FUNC builtin_set(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008190{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00008191 int n;
8192 char **pp, **g_argv;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00008193 char *arg = *++argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008194
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00008195 if (arg == NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00008196 struct variable *e;
Denis Vlasenko87a86552008-07-29 19:43:10 +00008197 for (e = G.top_var; e; e = e->next)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008198 puts(e->varstr);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00008199 return EXIT_SUCCESS;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00008200 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008201
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008202 do {
8203 if (!strcmp(arg, "--")) {
8204 ++argv;
8205 goto set_argv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00008206 }
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00008207 if (arg[0] != '+' && arg[0] != '-')
8208 break;
8209 for (n = 1; arg[n]; ++n)
8210 if (set_mode(arg[0], arg[n]))
8211 goto error;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00008212 } while ((arg = *++argv) != NULL);
8213 /* Now argv[0] is 1st argument */
8214
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008215 if (arg == NULL)
8216 return EXIT_SUCCESS;
8217 set_argv:
8218
Denis Vlasenko424f79b2009-03-22 14:23:34 +00008219 /* NB: G.global_argv[0] ($0) is never freed/changed */
8220 g_argv = G.global_argv;
8221 if (G.global_args_malloced) {
8222 pp = g_argv;
8223 while (*++pp)
8224 free(*pp);
8225 g_argv[1] = NULL;
8226 } else {
8227 G.global_args_malloced = 1;
8228 pp = xzalloc(sizeof(pp[0]) * 2);
8229 pp[0] = g_argv[0]; /* retain $0 */
8230 g_argv = pp;
8231 }
8232 /* This realloc's G.global_argv */
8233 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
8234
8235 n = 1;
8236 while (*++pp)
8237 n++;
8238 G.global_argc = n;
8239
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008240 return EXIT_SUCCESS;
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008241
8242 /* Nothing known, so abort */
8243 error:
8244 bb_error_msg("set: %s: invalid option", arg);
8245 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008246}
8247
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008248static int FAST_FUNC builtin_shift(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008249{
8250 int n = 1;
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008251 argv = skip_dash_dash(argv);
8252 if (argv[0]) {
8253 n = atoi(argv[0]);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008254 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008255 if (n >= 0 && n < G.global_argc) {
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00008256 if (G.global_args_malloced) {
8257 int m = 1;
8258 while (m <= n)
8259 free(G.global_argv[m++]);
8260 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008261 G.global_argc -= n;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00008262 memmove(&G.global_argv[1], &G.global_argv[n+1],
8263 G.global_argc * sizeof(G.global_argv[0]));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008264 return EXIT_SUCCESS;
8265 }
8266 return EXIT_FAILURE;
8267}
8268
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008269static int FAST_FUNC builtin_source(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008270{
Denys Vlasenkoe66cf822010-05-18 09:12:53 +02008271 char *arg_path, *filename;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008272 FILE *input;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00008273 save_arg_t sv;
Mike Frysinger885b6f22009-04-18 21:04:25 +00008274#if ENABLE_HUSH_FUNCTIONS
8275 smallint sv_flg;
8276#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008277
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008278 argv = skip_dash_dash(argv);
8279 filename = argv[0];
Denys Vlasenkoe66cf822010-05-18 09:12:53 +02008280 if (!filename) {
8281 /* bash says: "bash: .: filename argument required" */
8282 return 2; /* bash compat */
8283 }
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008284 arg_path = NULL;
Denys Vlasenkoe66cf822010-05-18 09:12:53 +02008285 if (!strchr(filename, '/')) {
8286 arg_path = find_in_path(filename);
8287 if (arg_path)
8288 filename = arg_path;
8289 }
8290 input = fopen_or_warn(filename, "r");
8291 free(arg_path);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008292 if (!input) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008293 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008294 return EXIT_FAILURE;
8295 }
8296 close_on_exec_on(fileno(input));
8297
Mike Frysinger885b6f22009-04-18 21:04:25 +00008298#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008299 sv_flg = G.flag_return_in_progress;
8300 /* "we are inside sourced file, ok to use return" */
8301 G.flag_return_in_progress = -1;
Mike Frysinger885b6f22009-04-18 21:04:25 +00008302#endif
Denis Vlasenko270b1c32009-04-17 18:54:50 +00008303 save_and_replace_G_args(&sv, argv);
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008304
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008305 parse_and_run_file(input);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008306 fclose(input);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00008307
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008308 restore_G_args(&sv, argv);
Mike Frysinger885b6f22009-04-18 21:04:25 +00008309#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008310 G.flag_return_in_progress = sv_flg;
Mike Frysinger885b6f22009-04-18 21:04:25 +00008311#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008312
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008313 return G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008314}
8315
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008316static int FAST_FUNC builtin_umask(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008317{
Denis Vlasenkoeb858492009-04-18 02:06:54 +00008318 int rc;
8319 mode_t mask;
8320
8321 mask = umask(0);
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008322 argv = skip_dash_dash(argv);
8323 if (argv[0]) {
Denis Vlasenkoeb858492009-04-18 02:06:54 +00008324 mode_t old_mask = mask;
8325
8326 mask ^= 0777;
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008327 rc = bb_parse_mode(argv[0], &mask);
Denis Vlasenkoeb858492009-04-18 02:06:54 +00008328 mask ^= 0777;
8329 if (rc == 0) {
8330 mask = old_mask;
8331 /* bash messages:
8332 * bash: umask: 'q': invalid symbolic mode operator
8333 * bash: umask: 999: octal number out of range
8334 */
Denys Vlasenko44c86ce2010-05-20 04:22:55 +02008335 bb_error_msg("%s: invalid mode '%s'", "umask", argv[0]);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008336 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008337 } else {
Denis Vlasenkoeb858492009-04-18 02:06:54 +00008338 rc = 1;
8339 /* Mimic bash */
8340 printf("%04o\n", (unsigned) mask);
8341 /* fall through and restore mask which we set to 0 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008342 }
Denis Vlasenkoeb858492009-04-18 02:06:54 +00008343 umask(mask);
8344
8345 return !rc; /* rc != 0 - success */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008346}
8347
Mike Frysingerd690f682009-03-30 06:50:54 +00008348/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008349static int FAST_FUNC builtin_unset(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008350{
Mike Frysingerd690f682009-03-30 06:50:54 +00008351 int ret;
Denis Vlasenko28e67962009-04-26 23:22:40 +00008352 unsigned opts;
Mike Frysingerd690f682009-03-30 06:50:54 +00008353
Denis Vlasenko28e67962009-04-26 23:22:40 +00008354 /* "!": do not abort on errors */
8355 /* "+": stop at 1st non-option */
8356 opts = getopt32(argv, "!+vf");
8357 if (opts == (unsigned)-1)
8358 return EXIT_FAILURE;
8359 if (opts == 3) {
8360 bb_error_msg("unset: -v and -f are exclusive");
8361 return EXIT_FAILURE;
Mike Frysingerd690f682009-03-30 06:50:54 +00008362 }
Denis Vlasenko28e67962009-04-26 23:22:40 +00008363 argv += optind;
Mike Frysingerd690f682009-03-30 06:50:54 +00008364
8365 ret = EXIT_SUCCESS;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008366 while (*argv) {
Denis Vlasenko28e67962009-04-26 23:22:40 +00008367 if (!(opts & 2)) { /* not -f */
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008368 if (unset_local_var(*argv)) {
8369 /* unset <nonexistent_var> doesn't fail.
8370 * Error is when one tries to unset RO var.
8371 * Message was printed by unset_local_var. */
Mike Frysingerd690f682009-03-30 06:50:54 +00008372 ret = EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008373 }
Mike Frysingerd690f682009-03-30 06:50:54 +00008374 }
Denis Vlasenko40e84372009-04-18 11:23:38 +00008375#if ENABLE_HUSH_FUNCTIONS
8376 else {
8377 unset_func(*argv);
8378 }
8379#endif
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008380 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00008381 }
8382 return ret;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008383}
Denis Vlasenkobcb25532008-07-28 23:04:34 +00008384
Mike Frysinger56bdea12009-03-28 20:01:58 +00008385/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008386static int FAST_FUNC builtin_wait(char **argv)
Mike Frysinger56bdea12009-03-28 20:01:58 +00008387{
8388 int ret = EXIT_SUCCESS;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00008389 int status, sig;
Mike Frysinger56bdea12009-03-28 20:01:58 +00008390
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008391 argv = skip_dash_dash(argv);
8392 if (argv[0] == NULL) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +00008393 /* Don't care about wait results */
8394 /* Note 1: must wait until there are no more children */
8395 /* Note 2: must be interruptible */
8396 /* Examples:
8397 * $ sleep 3 & sleep 6 & wait
8398 * [1] 30934 sleep 3
8399 * [2] 30935 sleep 6
8400 * [1] Done sleep 3
8401 * [2] Done sleep 6
8402 * $ sleep 3 & sleep 6 & wait
8403 * [1] 30936 sleep 3
8404 * [2] 30937 sleep 6
8405 * [1] Done sleep 3
8406 * ^C <-- after ~4 sec from keyboard
8407 * $
8408 */
8409 sigaddset(&G.blocked_set, SIGCHLD);
8410 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
8411 while (1) {
8412 checkjobs(NULL);
8413 if (errno == ECHILD)
8414 break;
8415 /* Wait for SIGCHLD or any other signal of interest */
8416 /* sigtimedwait with infinite timeout: */
8417 sig = sigwaitinfo(&G.blocked_set, NULL);
8418 if (sig > 0) {
8419 sig = check_and_run_traps(sig);
8420 if (sig && sig != SIGCHLD) { /* see note 2 */
8421 ret = 128 + sig;
8422 break;
8423 }
8424 }
8425 }
8426 sigdelset(&G.blocked_set, SIGCHLD);
8427 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
8428 return ret;
8429 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00008430
Denis Vlasenko7566bae2009-03-31 17:24:49 +00008431 /* This is probably buggy wrt interruptible-ness */
Denis Vlasenkod5762932009-03-31 11:22:57 +00008432 while (*argv) {
8433 pid_t pid = bb_strtou(*argv, NULL, 10);
Mike Frysinger40b8dc42009-03-29 00:50:30 +00008434 if (errno) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00008435 /* mimic bash message */
8436 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00008437 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008438 }
8439 if (waitpid(pid, &status, 0) == pid) {
Mike Frysinger56bdea12009-03-28 20:01:58 +00008440 if (WIFSIGNALED(status))
8441 ret = 128 + WTERMSIG(status);
8442 else if (WIFEXITED(status))
8443 ret = WEXITSTATUS(status);
Denis Vlasenkod5762932009-03-31 11:22:57 +00008444 else /* wtf? */
Mike Frysinger56bdea12009-03-28 20:01:58 +00008445 ret = EXIT_FAILURE;
8446 } else {
Denis Vlasenkod5762932009-03-31 11:22:57 +00008447 bb_perror_msg("wait %s", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00008448 ret = 127;
8449 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00008450 argv++;
Mike Frysinger56bdea12009-03-28 20:01:58 +00008451 }
8452
8453 return ret;
8454}
8455
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008456#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
8457static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
8458{
8459 if (argv[1]) {
8460 def = bb_strtou(argv[1], NULL, 10);
8461 if (errno || def < def_min || argv[2]) {
8462 bb_error_msg("%s: bad arguments", argv[0]);
8463 def = UINT_MAX;
8464 }
8465 }
8466 return def;
8467}
8468#endif
8469
Denis Vlasenkodadfb492008-07-29 10:16:05 +00008470#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008471static int FAST_FUNC builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00008472{
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008473 unsigned depth;
Denis Vlasenko87a86552008-07-29 19:43:10 +00008474 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00008475 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00008476 return EXIT_SUCCESS; /* bash compat */
8477 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008478 G.flag_break_continue++; /* BC_BREAK = 1 */
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008479
8480 G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
8481 if (depth == UINT_MAX)
8482 G.flag_break_continue = BC_BREAK;
8483 if (G.depth_of_loop < depth)
Denis Vlasenko87a86552008-07-29 19:43:10 +00008484 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008485
Denis Vlasenkobcb25532008-07-28 23:04:34 +00008486 return EXIT_SUCCESS;
8487}
8488
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008489static int FAST_FUNC builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00008490{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00008491 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
8492 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00008493}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00008494#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008495
8496#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008497static int FAST_FUNC builtin_return(char **argv)
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008498{
8499 int rc;
8500
8501 if (G.flag_return_in_progress != -1) {
8502 bb_error_msg("%s: not in a function or sourced script", argv[0]);
8503 return EXIT_FAILURE; /* bash compat */
8504 }
8505
8506 G.flag_return_in_progress = 1;
8507
8508 /* bash:
8509 * out of range: wraps around at 256, does not error out
8510 * non-numeric param:
8511 * f() { false; return qwe; }; f; echo $?
8512 * bash: return: qwe: numeric argument required <== we do this
8513 * 255 <== we also do this
8514 */
8515 rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
8516 return rc;
8517}
8518#endif