blob: 6970c50c46367058b0e4722efc93ce3ca235c3f3 [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 *
Denys Vlasenkobbecd742010-10-03 17:22:52 +020011 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
12 *
Eric Andersen25f27032001-04-26 23:22:31 +000013 * Credits:
14 * The parser routines proper are all original material, first
Eric Andersencb81e642003-07-14 21:21:08 +000015 * written Dec 2000 and Jan 2001 by Larry Doolittle. The
16 * execution engine, the builtins, and much of the underlying
17 * support has been adapted from busybox-0.49pre's lash, which is
Eric Andersenc7bda1c2004-03-15 08:29:22 +000018 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersencb81e642003-07-14 21:21:08 +000019 * written by Erik Andersen <andersen@codepoet.org>. That, in turn,
20 * is based in part on ladsh.c, by Michael K. Johnson and Erik W.
21 * Troan, which they placed in the public domain. I don't know
22 * how much of the Johnson/Troan code has survived the repeated
23 * rewrites.
24 *
Eric Andersen25f27032001-04-26 23:22:31 +000025 * Other credits:
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +000026 * o_addchr derived from similar w_addchar function in glibc-2.2.
Denis Vlasenko50f3aa42009-04-07 10:52:40 +000027 * parse_redirect, redirect_opt_num, and big chunks of main
Denis Vlasenko424f79b2009-03-22 14:23:34 +000028 * and many builtins derived from contributions by Erik Andersen.
29 * Miscellaneous bugfixes from Matt Kraai.
Eric Andersen25f27032001-04-26 23:22:31 +000030 *
31 * There are two big (and related) architecture differences between
32 * this parser and the lash parser. One is that this version is
33 * actually designed from the ground up to understand nearly all
34 * of the Bourne grammar. The second, consequential change is that
35 * the parser and input reader have been turned inside out. Now,
36 * the parser is in control, and asks for input as needed. The old
37 * way had the input reader in control, and it asked for parsing to
38 * take place as needed. The new way makes it much easier to properly
39 * handle the recursion implicit in the various substitutions, especially
40 * across continuation lines.
41 *
Denys Vlasenko349ef962010-05-21 15:46:24 +020042 * TODOs:
43 * grep for "TODO" and fix (some of them are easy)
44 * special variables (done: PWD, PPID, RANDOM)
45 * tilde expansion
Eric Andersen78a7c992001-05-15 16:30:25 +000046 * aliases
Denys Vlasenko349ef962010-05-21 15:46:24 +020047 * follow IFS rules more precisely, including update semantics
48 * builtins mandated by standards we don't support:
49 * [un]alias, command, fc, getopts, newgrp, readonly, times
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +020050 * make complex ${var%...} constructs support optional
51 * make here documents optional
Mike Frysinger25a6ca02009-03-28 13:59:26 +000052 *
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020053 * Bash compat TODO:
54 * redirection of stdout+stderr: &> and >&
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020055 * 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 Vlasenkobbecd742010-10-03 17:22:52 +020067 *
68 * Won't do:
69 * In bash, export builtin is special, its arguments are assignments
Denys Vlasenko08218012009-06-03 14:43:56 +020070 * and therefore expansion of them should be "one-word" expansion:
71 * $ export i=`echo 'a b'` # export has one arg: "i=a b"
72 * compare with:
73 * $ ls i=`echo 'a b'` # ls has two args: "i=a" and "b"
74 * ls: cannot access i=a: No such file or directory
75 * ls: cannot access b: No such file or directory
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020076 * Note1: same applies to local builtin.
Denys Vlasenko08218012009-06-03 14:43:56 +020077 * Note2: bash 3.2.33(1) does this only if export word itself
78 * is not quoted:
79 * $ export i=`echo 'aaa bbb'`; echo "$i"
80 * aaa bbb
81 * $ "export" i=`echo 'aaa bbb'`; echo "$i"
82 * aaa
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 Vlasenko8da415e2010-12-05 01:30:14 +010085#if !(defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) \
86 || defined(__APPLE__) \
87 )
88# include <malloc.h> /* for malloc_trim */
89#endif
Denis Vlasenkobe709c22008-07-28 00:01:16 +000090#include <glob.h>
91/* #include <dmalloc.h> */
92#if ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +000093# include <fnmatch.h>
Denis Vlasenkobe709c22008-07-28 00:01:16 +000094#endif
Denys Vlasenko03dad222010-01-12 23:29:57 +010095
96#include "shell_common.h"
Mike Frysinger98c52642009-04-02 10:02:37 +000097#include "math.h"
Mike Frysingera4f331d2009-04-07 06:03:22 +000098#include "match.h"
Denys Vlasenkocbe0b7f2009-10-09 22:00:58 +020099#if ENABLE_HUSH_RANDOM_SUPPORT
Denys Vlasenko20b3d142009-10-09 20:59:39 +0200100# include "random.h"
Denys Vlasenko76ace252009-10-12 15:25:01 +0200101#else
102# define CLEAR_RANDOM_T(rnd) ((void)0)
Denys Vlasenko20b3d142009-10-09 20:59:39 +0200103#endif
Denis Vlasenko50f3aa42009-04-07 10:52:40 +0000104#ifndef PIPE_BUF
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200105# define PIPE_BUF 4096 /* amount of buffering in a pipe */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +0000106#endif
Mike Frysinger98c52642009-04-02 10:02:37 +0000107
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100108//applet:IF_HUSH(APPLET(hush, BB_DIR_BIN, BB_SUID_DROP))
109//applet:IF_MSH(APPLET(msh, BB_DIR_BIN, BB_SUID_DROP))
110//applet:IF_FEATURE_SH_IS_HUSH(APPLET_ODDNAME(sh, hush, BB_DIR_BIN, BB_SUID_DROP, sh))
111//applet:IF_FEATURE_BASH_IS_HUSH(APPLET_ODDNAME(bash, hush, BB_DIR_BIN, BB_SUID_DROP, bash))
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200112
113//kbuild:lib-$(CONFIG_HUSH) += hush.o match.o shell_common.o
114//kbuild:lib-$(CONFIG_HUSH_RANDOM_SUPPORT) += random.o
115
116//config:config HUSH
117//config: bool "hush"
118//config: default y
119//config: help
Denys Vlasenko771f1992010-07-16 14:31:34 +0200120//config: hush is a small shell (25k). It handles the normal flow control
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200121//config: constructs such as if/then/elif/else/fi, for/in/do/done, while loops,
122//config: case/esac. Redirections, here documents, $((arithmetic))
123//config: and functions are supported.
124//config:
125//config: It will compile and work on no-mmu systems.
126//config:
Denys Vlasenkoe2069fb2010-10-04 00:01:47 +0200127//config: It does not handle select, aliases, tilde expansion,
128//config: &>file and >&file redirection of stdout+stderr.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200129//config:
130//config:config HUSH_BASH_COMPAT
131//config: bool "bash-compatible extensions"
132//config: default y
133//config: depends on HUSH
134//config: help
135//config: Enable bash-compatible extensions.
136//config:
Denys Vlasenko9e800222010-10-03 14:28:04 +0200137//config:config HUSH_BRACE_EXPANSION
138//config: bool "Brace expansion"
139//config: default y
140//config: depends on HUSH_BASH_COMPAT
141//config: help
142//config: Enable {abc,def} extension.
143//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200144//config:config HUSH_HELP
145//config: bool "help builtin"
146//config: default y
147//config: depends on HUSH
148//config: help
149//config: Enable help builtin in hush. Code size + ~1 kbyte.
150//config:
151//config:config HUSH_INTERACTIVE
152//config: bool "Interactive mode"
153//config: default y
154//config: depends on HUSH
155//config: help
156//config: Enable interactive mode (prompt and command editing).
157//config: Without this, hush simply reads and executes commands
158//config: from stdin just like a shell script from a file.
159//config: No prompt, no PS1/PS2 magic shell variables.
160//config:
Denys Vlasenko99862cb2010-09-12 17:34:13 +0200161//config:config HUSH_SAVEHISTORY
162//config: bool "Save command history to .hush_history"
163//config: default y
164//config: depends on HUSH_INTERACTIVE && FEATURE_EDITING_SAVEHISTORY
165//config: help
166//config: Enable history saving in hush.
167//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200168//config:config HUSH_JOB
169//config: bool "Job control"
170//config: default y
171//config: depends on HUSH_INTERACTIVE
172//config: help
173//config: Enable job control: Ctrl-Z backgrounds, Ctrl-C interrupts current
174//config: command (not entire shell), fg/bg builtins work. Without this option,
175//config: "cmd &" still works by simply spawning a process and immediately
176//config: prompting for next command (or executing next command in a script),
177//config: but no separate process group is formed.
178//config:
179//config:config HUSH_TICK
180//config: bool "Process substitution"
181//config: default y
182//config: depends on HUSH
183//config: help
184//config: Enable process substitution `command` and $(command) in hush.
185//config:
186//config:config HUSH_IF
187//config: bool "Support if/then/elif/else/fi"
188//config: default y
189//config: depends on HUSH
190//config: help
191//config: Enable if/then/elif/else/fi in hush.
192//config:
193//config:config HUSH_LOOPS
194//config: bool "Support for, while and until loops"
195//config: default y
196//config: depends on HUSH
197//config: help
198//config: Enable for, while and until loops in hush.
199//config:
200//config:config HUSH_CASE
201//config: bool "Support case ... esac statement"
202//config: default y
203//config: depends on HUSH
204//config: help
205//config: Enable case ... esac statement in hush. +400 bytes.
206//config:
207//config:config HUSH_FUNCTIONS
208//config: bool "Support funcname() { commands; } syntax"
209//config: default y
210//config: depends on HUSH
211//config: help
212//config: Enable support for shell functions in hush. +800 bytes.
213//config:
214//config:config HUSH_LOCAL
215//config: bool "Support local builtin"
216//config: default y
217//config: depends on HUSH_FUNCTIONS
218//config: help
219//config: Enable support for local variables in functions.
220//config:
221//config:config HUSH_RANDOM_SUPPORT
222//config: bool "Pseudorandom generator and $RANDOM variable"
223//config: default y
224//config: depends on HUSH
225//config: help
226//config: Enable pseudorandom generator and dynamic variable "$RANDOM".
227//config: Each read of "$RANDOM" will generate a new pseudorandom value.
228//config:
229//config:config HUSH_EXPORT_N
230//config: bool "Support 'export -n' option"
231//config: default y
232//config: depends on HUSH
233//config: help
234//config: export -n unexports variables. It is a bash extension.
235//config:
236//config:config HUSH_MODE_X
237//config: bool "Support 'hush -x' option and 'set -x' command"
238//config: default y
239//config: depends on HUSH
240//config: help
Denys Vlasenko29082232010-07-16 13:52:32 +0200241//config: This instructs hush to print commands before execution.
242//config: Adds ~300 bytes.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200243//config:
Denys Vlasenko6adf2aa2010-07-16 19:26:38 +0200244//config:config MSH
245//config: bool "msh (deprecated: aliased to hush)"
246//config: default n
247//config: select HUSH
248//config: help
249//config: msh is deprecated and will be removed, please migrate to hush.
250//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200251
Dan Fandrich89ca2f92010-11-28 01:54:39 +0100252/* -i (interactive) and -s (read stdin) are also accepted,
253 * but currently do nothing, therefore aren't shown in help.
254 * NOMMU-specific options are not meant to be used by users,
255 * therefore we don't show them either.
256 */
257//usage:#define hush_trivial_usage
258//usage: "[-nx] [-c SCRIPT]"
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200259//usage:#define hush_full_usage ""
Dan Fandrich89ca2f92010-11-28 01:54:39 +0100260//usage:#define msh_trivial_usage hush_trivial_usage
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200261//usage:#define msh_full_usage ""
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +0200262//usage:#define sh_trivial_usage NOUSAGE_STR
263//usage:#define sh_full_usage ""
264//usage:#define bash_trivial_usage NOUSAGE_STR
265//usage:#define bash_full_usage ""
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200266
Denis Vlasenko1943aec2009-04-09 14:15:57 +0000267
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200268/* Build knobs */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000269#define LEAK_HUNTING 0
270#define BUILD_AS_NOMMU 0
271/* Enable/disable sanity checks. Ok to enable in production,
272 * only adds a bit of bloat. Set to >1 to get non-production level verbosity.
273 * Keeping 1 for now even in released versions.
274 */
275#define HUSH_DEBUG 1
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200276/* Slightly bigger (+200 bytes), but faster hush.
277 * So far it only enables a trick with counting SIGCHLDs and forks,
278 * which allows us to do fewer waitpid's.
279 * (we can detect a case where neither forks were done nor SIGCHLDs happened
280 * and therefore waitpid will return the same result as last time)
281 */
282#define ENABLE_HUSH_FAST 0
Denys Vlasenko9297dbc2010-07-05 21:37:12 +0200283/* TODO: implement simplified code for users which do not need ${var%...} ops
284 * So far ${var%...} ops are always enabled:
285 */
286#define ENABLE_HUSH_DOLLAR_OPS 1
Denis Vlasenko1943aec2009-04-09 14:15:57 +0000287
288
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000289#if BUILD_AS_NOMMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000290# undef BB_MMU
291# undef USE_FOR_NOMMU
292# undef USE_FOR_MMU
293# define BB_MMU 0
294# define USE_FOR_NOMMU(...) __VA_ARGS__
295# define USE_FOR_MMU(...)
296#endif
297
Denys Vlasenko1fcbff22010-06-26 02:40:08 +0200298#include "NUM_APPLETS.h"
Denys Vlasenko14974842010-03-23 01:08:26 +0100299#if NUM_APPLETS == 1
Denis Vlasenko61befda2008-11-25 01:36:03 +0000300/* STANDALONE does not make sense, and won't compile */
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000301# undef CONFIG_FEATURE_SH_STANDALONE
302# undef ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000303# undef IF_FEATURE_SH_STANDALONE
Denys Vlasenko14974842010-03-23 01:08:26 +0100304# undef IF_NOT_FEATURE_SH_STANDALONE
305# define ENABLE_FEATURE_SH_STANDALONE 0
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000306# define IF_FEATURE_SH_STANDALONE(...)
307# define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__
Denis Vlasenko61befda2008-11-25 01:36:03 +0000308#endif
309
Denis Vlasenko05743d72008-02-10 12:10:08 +0000310#if !ENABLE_HUSH_INTERACTIVE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000311# undef ENABLE_FEATURE_EDITING
312# define ENABLE_FEATURE_EDITING 0
313# undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
314# define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000315#endif
316
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000317/* Do we support ANY keywords? */
318#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000319# define HAS_KEYWORDS 1
320# define IF_HAS_KEYWORDS(...) __VA_ARGS__
321# define IF_HAS_NO_KEYWORDS(...)
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000322#else
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000323# define HAS_KEYWORDS 0
324# define IF_HAS_KEYWORDS(...)
325# define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000326#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000327
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000328/* If you comment out one of these below, it will be #defined later
329 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000330#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000331/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000332#define debug_printf_parse(...) do {} while (0)
333#define debug_print_tree(a, b) do {} while (0)
334#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000335#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000336#define debug_printf_jobs(...) do {} while (0)
337#define debug_printf_expand(...) do {} while (0)
Denys Vlasenko1e811b12010-05-22 03:12:29 +0200338#define debug_printf_varexp(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000339#define debug_printf_glob(...) do {} while (0)
340#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000341#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000342#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000343
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000344#define ERR_PTR ((void*)(long)1)
345
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200346#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000347
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200348#define _SPECIAL_VARS_STR "_*@$!?#"
349#define SPECIAL_VARS_STR ("_*@$!?#" + 1)
350#define NUMERIC_SPECVARS_STR ("_*@$!?#" + 3)
Denys Vlasenko36f774a2010-09-05 14:45:38 +0200351#if ENABLE_HUSH_BASH_COMPAT
352/* Support / and // replace ops */
353/* Note that // is stored as \ in "encoded" string representation */
354# define VAR_ENCODED_SUBST_OPS "\\/%#:-=+?"
355# define VAR_SUBST_OPS ("\\/%#:-=+?" + 1)
356# define MINUS_PLUS_EQUAL_QUESTION ("\\/%#:-=+?" + 5)
357#else
358# define VAR_ENCODED_SUBST_OPS "%#:-=+?"
359# define VAR_SUBST_OPS "%#:-=+?"
360# define MINUS_PLUS_EQUAL_QUESTION ("%#:-=+?" + 3)
361#endif
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200362
363#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000364
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200365struct variable;
366
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000367static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
368
369/* This supports saving pointers malloced in vfork child,
Denis Vlasenkoc376db32009-04-15 21:49:48 +0000370 * to be freed in the parent.
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000371 */
372#if !BB_MMU
373typedef struct nommu_save_t {
374 char **new_env;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200375 struct variable *old_vars;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000376 char **argv;
Denis Vlasenko27014ed2009-04-15 21:48:23 +0000377 char **argv_from_re_execing;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000378} nommu_save_t;
379#endif
380
Denys Vlasenko9b782552010-09-08 13:33:26 +0200381enum {
Eric Andersen25f27032001-04-26 23:22:31 +0000382 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000383#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000384 RES_IF ,
385 RES_THEN ,
386 RES_ELIF ,
387 RES_ELSE ,
388 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000389#endif
390#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000391 RES_FOR ,
392 RES_WHILE ,
393 RES_UNTIL ,
394 RES_DO ,
395 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000396#endif
397#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000398 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000399#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000400#if ENABLE_HUSH_CASE
401 RES_CASE ,
Denys Vlasenkoe9bda902009-05-23 16:50:07 +0200402 /* three pseudo-keywords support contrived "case" syntax: */
403 RES_CASE_IN, /* "case ... IN", turns into RES_MATCH when IN is observed */
404 RES_MATCH , /* "word)" */
405 RES_CASE_BODY, /* "this command is inside CASE" */
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000406 RES_ESAC ,
407#endif
408 RES_XXXX ,
409 RES_SNTX
Denys Vlasenko9b782552010-09-08 13:33:26 +0200410};
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000411
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000412typedef struct o_string {
413 char *data;
414 int length; /* position where data is appended */
415 int maxlen;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +0200416 int o_expflags;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000417 /* At least some part of the string was inside '' or "",
418 * possibly empty one: word"", wo''rd etc. */
Denys Vlasenko38292b62010-09-05 14:49:40 +0200419 smallint has_quoted_part;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000420 smallint has_empty_slot;
421 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
422} o_string;
423enum {
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200424 EXP_FLAG_SINGLEWORD = 0x80, /* must be 0x80 */
425 EXP_FLAG_GLOB = 0x2,
426 /* Protect newly added chars against globbing
427 * by prepending \ to *, ?, [, \ */
428 EXP_FLAG_ESC_GLOB_CHARS = 0x1,
429};
430enum {
431 MAYBE_ASSIGNMENT = 0,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000432 DEFINITELY_ASSIGNMENT = 1,
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200433 NOT_ASSIGNMENT = 2,
434 /* Not an assigment, but next word may be: "if v=xyz cmd;" */
435 WORD_IS_KEYWORD = 3,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000436};
437/* Used for initialization: o_string foo = NULL_O_STRING; */
438#define NULL_O_STRING { NULL }
439
440/* I can almost use ordinary FILE*. Is open_memstream() universally
441 * available? Where is it documented? */
442typedef struct in_str {
443 const char *p;
444 /* eof_flag=1: last char in ->p is really an EOF */
445 char eof_flag; /* meaningless if ->p == NULL */
446 char peek_buf[2];
447#if ENABLE_HUSH_INTERACTIVE
448 smallint promptme;
449 smallint promptmode; /* 0: PS1, 1: PS2 */
450#endif
451 FILE *file;
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200452 int (*get) (struct in_str *) FAST_FUNC;
453 int (*peek) (struct in_str *) FAST_FUNC;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000454} in_str;
455#define i_getch(input) ((input)->get(input))
456#define i_peek(input) ((input)->peek(input))
457
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200458/* The descrip member of this structure is only used to make
459 * debugging output pretty */
460static const struct {
461 int mode;
462 signed char default_fd;
463 char descrip[3];
464} redir_table[] = {
465 { O_RDONLY, 0, "<" },
466 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
467 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
468 { O_CREAT|O_RDWR, 1, "<>" },
469 { O_RDONLY, 0, "<<" },
470/* Should not be needed. Bogus default_fd helps in debugging */
471/* { O_RDONLY, 77, "<<" }, */
472};
473
Eric Andersen25f27032001-04-26 23:22:31 +0000474struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000475 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000476 char *rd_filename; /* filename */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000477 int rd_fd; /* fd to redirect */
478 /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
479 int rd_dup;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000480 smallint rd_type; /* (enum redir_type) */
481 /* note: for heredocs, rd_filename contains heredoc delimiter,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000482 * and subsequently heredoc itself; and rd_dup is a bitmask:
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200483 * bit 0: do we need to trim leading tabs?
484 * bit 1: is heredoc quoted (<<'delim' syntax) ?
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000485 */
Eric Andersen25f27032001-04-26 23:22:31 +0000486};
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000487typedef enum redir_type {
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200488 REDIRECT_INPUT = 0,
489 REDIRECT_OVERWRITE = 1,
490 REDIRECT_APPEND = 2,
491 REDIRECT_IO = 3,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000492 REDIRECT_HEREDOC = 4,
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200493 REDIRECT_HEREDOC2 = 5, /* REDIRECT_HEREDOC after heredoc is loaded */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000494
495 REDIRFD_CLOSE = -3,
496 REDIRFD_SYNTAX_ERR = -2,
Denis Vlasenko835fcfd2009-04-10 13:51:56 +0000497 REDIRFD_TO_FILE = -1,
498 /* otherwise, rd_fd is redirected to rd_dup */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000499
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000500 HEREDOC_SKIPTABS = 1,
501 HEREDOC_QUOTED = 2,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000502} redir_type;
503
Eric Andersen25f27032001-04-26 23:22:31 +0000504
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000505struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000506 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000507 int assignment_cnt; /* how many argv[i] are assignments? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000508 smallint is_stopped; /* is the command currently running? */
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200509 smallint cmd_type; /* CMD_xxx */
510#define CMD_NORMAL 0
511#define CMD_SUBSHELL 1
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200512#if ENABLE_HUSH_BASH_COMPAT
Denys Vlasenkod383b492010-09-06 10:22:13 +0200513/* used for "[[ EXPR ]]" */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200514# define CMD_SINGLEWORD_NOGLOB 2
Denis Vlasenkoed055212009-04-11 10:37:10 +0000515#endif
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200516#if ENABLE_HUSH_FUNCTIONS
517# define CMD_FUNCDEF 3
518#endif
519
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100520 smalluint cmd_exitcode;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200521 /* if non-NULL, this "command" is { list }, ( list ), or a compound statement */
522 struct pipe *group;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000523#if !BB_MMU
524 char *group_as_string;
525#endif
Denis Vlasenkoed055212009-04-11 10:37:10 +0000526#if ENABLE_HUSH_FUNCTIONS
527 struct function *child_func;
528/* This field is used to prevent a bug here:
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200529 * while...do f1() {a;}; f1; f1() {b;}; f1; done
Denis Vlasenkoed055212009-04-11 10:37:10 +0000530 * When we execute "f1() {a;}" cmd, we create new function and clear
531 * cmd->group, cmd->group_as_string, cmd->argv[0].
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200532 * When we execute "f1() {b;}", we notice that f1 exists,
533 * and that its "parent cmd" struct is still "alive",
Denis Vlasenkoed055212009-04-11 10:37:10 +0000534 * we put those fields back into cmd->xxx
535 * (struct function has ->parent_cmd ptr to facilitate that).
536 * When we loop back, we can execute "f1() {a;}" again and set f1 correctly.
537 * Without this trick, loop would execute a;b;b;b;...
538 * instead of correct sequence a;b;a;b;...
539 * When command is freed, it severs the link
540 * (sets ->child_func->parent_cmd to NULL).
541 */
542#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000543 char **argv; /* command name and arguments */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000544/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
545 * and on execution these are substituted with their values.
546 * Substitution can make _several_ words out of one argv[n]!
547 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000548 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000549 */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000550 struct redir_struct *redirects; /* I/O redirections */
551};
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000552/* Is there anything in this command at all? */
553#define IS_NULL_CMD(cmd) \
554 (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects)
555
Eric Andersen25f27032001-04-26 23:22:31 +0000556struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000557 struct pipe *next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000558 int num_cmds; /* total number of commands in pipe */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000559 int alive_cmds; /* number of commands running (not exited) */
560 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000561#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000562 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000563 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000564 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000565#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000566 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000567 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000568 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
569 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000570};
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000571typedef enum pipe_style {
572 PIPE_SEQ = 1,
573 PIPE_AND = 2,
574 PIPE_OR = 3,
575 PIPE_BG = 4,
576} pipe_style;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000577/* Is there anything in this pipe at all? */
578#define IS_NULL_PIPE(pi) \
579 ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE))
Eric Andersen25f27032001-04-26 23:22:31 +0000580
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000581/* This holds pointers to the various results of parsing */
582struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000583 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000584 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000585 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000586 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000587 /* last command in pipe (being constructed right now) */
588 struct command *command;
589 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000590 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000591#if !BB_MMU
592 o_string as_string;
593#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000594#if HAS_KEYWORDS
595 smallint ctx_res_w;
596 smallint ctx_inverted; /* "! cmd | cmd" */
597#if ENABLE_HUSH_CASE
598 smallint ctx_dsemicolon; /* ";;" seen */
599#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000600 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
601 int old_flag;
602 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000603 * example: "if pipe1; pipe2; then pipe3; fi"
604 * when we see "if" or "then", we malloc and copy current context,
605 * and make ->stack point to it. then we parse pipeN.
606 * when closing "then" / fi" / whatever is found,
607 * we move list_head into ->stack->command->group,
608 * copy ->stack into current context, and delete ->stack.
609 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000610 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000611 struct parse_context *stack;
612#endif
613};
614
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000615/* On program start, environ points to initial environment.
616 * putenv adds new pointers into it, unsetenv removes them.
617 * Neither of these (de)allocates the strings.
618 * setenv allocates new strings in malloc space and does putenv,
619 * and thus setenv is unusable (leaky) for shell's purposes */
620#define setenv(...) setenv_is_leaky_dont_use()
621struct variable {
622 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000623 char *varstr; /* points to "name=" portion */
Denys Vlasenko295fef82009-06-03 12:47:26 +0200624#if ENABLE_HUSH_LOCAL
625 unsigned func_nest_level;
626#endif
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000627 int max_len; /* if > 0, name is part of initial env; else name is malloced */
628 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000629 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000630};
631
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000632enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000633 BC_BREAK = 1,
634 BC_CONTINUE = 2,
635};
636
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000637#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000638struct function {
639 struct function *next;
640 char *name;
Denis Vlasenkoed055212009-04-11 10:37:10 +0000641 struct command *parent_cmd;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000642 struct pipe *body;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200643# if !BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000644 char *body_as_string;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200645# endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000646};
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000647#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000648
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000649
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100650/* set -/+o OPT support. (TODO: make it optional)
651 * bash supports the following opts:
652 * allexport off
653 * braceexpand on
654 * emacs on
655 * errexit off
656 * errtrace off
657 * functrace off
658 * hashall on
659 * histexpand off
660 * history on
661 * ignoreeof off
662 * interactive-comments on
663 * keyword off
664 * monitor on
665 * noclobber off
666 * noexec off
667 * noglob off
668 * nolog off
669 * notify off
670 * nounset off
671 * onecmd off
672 * physical off
673 * pipefail off
674 * posix off
675 * privileged off
676 * verbose off
677 * vi off
678 * xtrace off
679 */
Dan Fandrich85c62472010-11-20 13:05:17 -0800680static const char o_opt_strings[] ALIGN1 =
681 "pipefail\0"
682 "noexec\0"
683#if ENABLE_HUSH_MODE_X
684 "xtrace\0"
685#endif
686 ;
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100687enum {
688 OPT_O_PIPEFAIL,
Dan Fandrich85c62472010-11-20 13:05:17 -0800689 OPT_O_NOEXEC,
690#if ENABLE_HUSH_MODE_X
691 OPT_O_XTRACE,
692#endif
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100693 NUM_OPT_O
694};
695
696
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000697/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000698/* Sorted roughly by size (smaller offsets == smaller code) */
699struct globals {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000700 /* interactive_fd != 0 means we are an interactive shell.
701 * If we are, then saved_tty_pgrp can also be != 0, meaning
702 * that controlling tty is available. With saved_tty_pgrp == 0,
703 * job control still works, but terminal signals
704 * (^C, ^Z, ^Y, ^\) won't work at all, and background
705 * process groups can only be created with "cmd &".
706 * With saved_tty_pgrp != 0, hush will use tcsetpgrp()
707 * to give tty to the foreground process group,
708 * and will take it back when the group is stopped (^Z)
709 * or killed (^C).
710 */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000711#if ENABLE_HUSH_INTERACTIVE
712 /* 'interactive_fd' is a fd# open to ctty, if we have one
713 * _AND_ if we decided to act interactively */
714 int interactive_fd;
715 const char *PS1;
716 const char *PS2;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000717# define G_interactive_fd (G.interactive_fd)
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000718#else
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000719# define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000720#endif
721#if ENABLE_FEATURE_EDITING
722 line_input_t *line_input_state;
723#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000724 pid_t root_pid;
Denys Vlasenkodea47882009-10-09 15:40:49 +0200725 pid_t root_ppid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000726 pid_t last_bg_pid;
Denys Vlasenko20b3d142009-10-09 20:59:39 +0200727#if ENABLE_HUSH_RANDOM_SUPPORT
728 random_t random_gen;
729#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000730#if ENABLE_HUSH_JOB
731 int run_list_level;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000732 int last_jobid;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000733 pid_t saved_tty_pgrp;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000734 struct pipe *job_list;
Mike Frysinger38478a62009-05-20 04:48:06 -0400735# define G_saved_tty_pgrp (G.saved_tty_pgrp)
736#else
737# define G_saved_tty_pgrp 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000738#endif
Denys Vlasenko26777aa2010-11-22 23:49:10 +0100739 char o_opt[NUM_OPT_O];
Denys Vlasenko57542eb2010-11-28 03:59:30 +0100740#if ENABLE_HUSH_MODE_X
741# define G_x_mode (G.o_opt[OPT_O_XTRACE])
742#else
743# define G_x_mode 0
744#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000745 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000746#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000747 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000748#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000749#if ENABLE_HUSH_FUNCTIONS
750 /* 0: outside of a function (or sourced file)
751 * -1: inside of a function, ok to use return builtin
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000752 * 1: return is invoked, skip all till end of func
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000753 */
754 smallint flag_return_in_progress;
755#endif
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000756 smallint exiting; /* used to prevent EXIT trap recursion */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000757 /* These four support $?, $#, and $1 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000758 smalluint last_exitcode;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000759 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000760 smalluint global_args_malloced;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +0100761 smalluint inherited_set_is_saved;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000762 /* how many non-NULL argv's we have. NB: $# + 1 */
763 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000764 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000765#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000766 char *argv0_for_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000767#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000768#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000769 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000770 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000771#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000772 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000773 const char *cwd;
Denys Vlasenko52e460b2010-09-16 16:12:00 +0200774 struct variable *top_var;
Denys Vlasenko29082232010-07-16 13:52:32 +0200775 char **expanded_assignments;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000776#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000777 struct function *top_func;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200778# if ENABLE_HUSH_LOCAL
779 struct variable **shadowed_vars_pp;
780 unsigned func_nest_level;
781# endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000782#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000783 /* Signal and trap handling */
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200784#if ENABLE_HUSH_FAST
785 unsigned count_SIGCHLD;
786 unsigned handled_SIGCHLD;
Denys Vlasenkoe2df5f42009-05-26 14:34:10 +0200787 smallint we_have_children;
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200788#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000789 /* which signals have non-DFL handler (even with no traps set)? */
790 unsigned non_DFL_mask;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000791 char **traps; /* char *traps[NSIG] */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000792 sigset_t blocked_set;
793 sigset_t inherited_set;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000794#if HUSH_DEBUG
795 unsigned long memleak_value;
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000796 int debug_indent;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000797#endif
Denys Vlasenkoaaa22d22009-10-19 16:34:39 +0200798 char user_input_buf[ENABLE_FEATURE_EDITING ? CONFIG_FEATURE_EDITING_MAX_LEN : 2];
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000799};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000800#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000801/* Not #defining name to G.name - this quickly gets unwieldy
802 * (too many defines). Also, I actually prefer to see when a variable
803 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000804#define INIT_G() do { \
805 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
806} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000807
808
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000809/* Function prototypes for builtins */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200810static int builtin_cd(char **argv) FAST_FUNC;
811static int builtin_echo(char **argv) FAST_FUNC;
812static int builtin_eval(char **argv) FAST_FUNC;
813static int builtin_exec(char **argv) FAST_FUNC;
814static int builtin_exit(char **argv) FAST_FUNC;
815static int builtin_export(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000816#if ENABLE_HUSH_JOB
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200817static int builtin_fg_bg(char **argv) FAST_FUNC;
818static int builtin_jobs(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000819#endif
820#if ENABLE_HUSH_HELP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200821static int builtin_help(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000822#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +0200823#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200824static int builtin_local(char **argv) FAST_FUNC;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200825#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000826#if HUSH_DEBUG
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200827static int builtin_memleak(char **argv) FAST_FUNC;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000828#endif
Mike Frysinger4ebc76c2009-10-15 03:32:39 -0400829#if ENABLE_PRINTF
830static int builtin_printf(char **argv) FAST_FUNC;
831#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200832static int builtin_pwd(char **argv) FAST_FUNC;
833static int builtin_read(char **argv) FAST_FUNC;
834static int builtin_set(char **argv) FAST_FUNC;
835static int builtin_shift(char **argv) FAST_FUNC;
836static int builtin_source(char **argv) FAST_FUNC;
837static int builtin_test(char **argv) FAST_FUNC;
838static int builtin_trap(char **argv) FAST_FUNC;
839static int builtin_type(char **argv) FAST_FUNC;
840static int builtin_true(char **argv) FAST_FUNC;
841static int builtin_umask(char **argv) FAST_FUNC;
842static int builtin_unset(char **argv) FAST_FUNC;
843static int builtin_wait(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000844#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200845static int builtin_break(char **argv) FAST_FUNC;
846static int builtin_continue(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000847#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000848#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200849static int builtin_return(char **argv) FAST_FUNC;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000850#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000851
852/* Table of built-in functions. They can be forked or not, depending on
853 * context: within pipes, they fork. As simple commands, they do not.
854 * When used in non-forking context, they can change global variables
855 * in the parent shell process. If forked, of course they cannot.
856 * For example, 'unset foo | whatever' will parse and run, but foo will
857 * still be set at the end. */
858struct built_in_command {
Denys Vlasenko17323a62010-01-28 01:57:05 +0100859 const char *b_cmd;
860 int (*b_function)(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000861#if ENABLE_HUSH_HELP
Denys Vlasenko17323a62010-01-28 01:57:05 +0100862 const char *b_descr;
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200863# define BLTIN(cmd, func, help) { cmd, func, help }
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000864#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200865# define BLTIN(cmd, func, help) { cmd, func }
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000866#endif
867};
868
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200869static const struct built_in_command bltins1[] = {
870 BLTIN("." , builtin_source , "Run commands in a file"),
871 BLTIN(":" , builtin_true , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000872#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200873 BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000874#endif
875#if ENABLE_HUSH_LOOPS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200876 BLTIN("break" , builtin_break , "Exit from a loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000877#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200878 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000879#if ENABLE_HUSH_LOOPS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200880 BLTIN("continue" , builtin_continue, "Start new loop iteration"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000881#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200882 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
883 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
884 BLTIN("exit" , builtin_exit , "Exit"),
885 BLTIN("export" , builtin_export , "Set environment variables"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000886#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200887 BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000888#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000889#if ENABLE_HUSH_HELP
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200890 BLTIN("help" , builtin_help , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000891#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000892#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200893 BLTIN("jobs" , builtin_jobs , "List jobs"),
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000894#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +0200895#if ENABLE_HUSH_LOCAL
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200896 BLTIN("local" , builtin_local , "Set local variables"),
Denys Vlasenko295fef82009-06-03 12:47:26 +0200897#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000898#if HUSH_DEBUG
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200899 BLTIN("memleak" , builtin_memleak , NULL),
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000900#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200901 BLTIN("read" , builtin_read , "Input into variable"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000902#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200903 BLTIN("return" , builtin_return , "Return from a function"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000904#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200905 BLTIN("set" , builtin_set , "Set/unset positional parameters"),
906 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
Denys Vlasenko82731b42010-05-17 17:49:52 +0200907#if ENABLE_HUSH_BASH_COMPAT
908 BLTIN("source" , builtin_source , "Run commands in a file"),
909#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200910 BLTIN("trap" , builtin_trap , "Trap signals"),
Denys Vlasenko651a2692010-03-23 16:25:17 +0100911 BLTIN("type" , builtin_type , "Show command type"),
Denys Vlasenkof3c742f2010-03-06 20:12:00 +0100912 BLTIN("ulimit" , shell_builtin_ulimit , "Control resource limits"),
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200913 BLTIN("umask" , builtin_umask , "Set file creation mask"),
914 BLTIN("unset" , builtin_unset , "Unset variables"),
915 BLTIN("wait" , builtin_wait , "Wait for process"),
916};
917/* For now, echo and test are unconditionally enabled.
918 * Maybe make it configurable? */
919static const struct built_in_command bltins2[] = {
920 BLTIN("[" , builtin_test , NULL),
921 BLTIN("echo" , builtin_echo , NULL),
Mike Frysinger4ebc76c2009-10-15 03:32:39 -0400922#if ENABLE_PRINTF
923 BLTIN("printf" , builtin_printf , NULL),
924#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200925 BLTIN("pwd" , builtin_pwd , NULL),
926 BLTIN("test" , builtin_test , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000927};
928
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000929
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000930/* Debug printouts.
931 */
932#if HUSH_DEBUG
933/* prevent disasters with G.debug_indent < 0 */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +0100934# define indent() fdprintf(2, "%*s", (G.debug_indent * 2) & 0xff, "")
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000935# define debug_enter() (G.debug_indent++)
936# define debug_leave() (G.debug_indent--)
937#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200938# define indent() ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000939# define debug_enter() ((void)0)
940# define debug_leave() ((void)0)
941#endif
942
943#ifndef debug_printf
Denys Vlasenko75eb9d22010-12-21 21:18:12 +0100944# define debug_printf(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000945#endif
946
947#ifndef debug_printf_parse
Denys Vlasenko75eb9d22010-12-21 21:18:12 +0100948# define debug_printf_parse(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000949#endif
950
951#ifndef debug_printf_exec
Denys Vlasenko75eb9d22010-12-21 21:18:12 +0100952#define debug_printf_exec(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000953#endif
954
955#ifndef debug_printf_env
Denys Vlasenko75eb9d22010-12-21 21:18:12 +0100956# define debug_printf_env(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000957#endif
958
959#ifndef debug_printf_jobs
Denys Vlasenko75eb9d22010-12-21 21:18:12 +0100960# define debug_printf_jobs(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000961# define DEBUG_JOBS 1
962#else
963# define DEBUG_JOBS 0
964#endif
965
966#ifndef debug_printf_expand
Denys Vlasenko75eb9d22010-12-21 21:18:12 +0100967# define debug_printf_expand(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000968# define DEBUG_EXPAND 1
969#else
970# define DEBUG_EXPAND 0
971#endif
972
Denys Vlasenko1e811b12010-05-22 03:12:29 +0200973#ifndef debug_printf_varexp
Denys Vlasenko75eb9d22010-12-21 21:18:12 +0100974# define debug_printf_varexp(...) (indent(), fdprintf(2, __VA_ARGS__))
Denys Vlasenko1e811b12010-05-22 03:12:29 +0200975#endif
976
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000977#ifndef debug_printf_glob
Denys Vlasenko75eb9d22010-12-21 21:18:12 +0100978# define debug_printf_glob(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000979# define DEBUG_GLOB 1
980#else
981# define DEBUG_GLOB 0
982#endif
983
984#ifndef debug_printf_list
Denys Vlasenko75eb9d22010-12-21 21:18:12 +0100985# define debug_printf_list(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000986#endif
987
988#ifndef debug_printf_subst
Denys Vlasenko75eb9d22010-12-21 21:18:12 +0100989# define debug_printf_subst(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000990#endif
991
992#ifndef debug_printf_clean
Denys Vlasenko75eb9d22010-12-21 21:18:12 +0100993# define debug_printf_clean(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000994# define DEBUG_CLEAN 1
995#else
996# define DEBUG_CLEAN 0
997#endif
998
999#if DEBUG_EXPAND
1000static void debug_print_strings(const char *prefix, char **vv)
1001{
1002 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001003 fdprintf(2, "%s:\n", prefix);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001004 while (*vv)
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001005 fdprintf(2, " '%s'\n", *vv++);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001006}
1007#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001008# define debug_print_strings(prefix, vv) ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001009#endif
1010
1011
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001012/* Leak hunting. Use hush_leaktool.sh for post-processing.
1013 */
1014#if LEAK_HUNTING
1015static void *xxmalloc(int lineno, size_t size)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001016{
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001017 void *ptr = xmalloc((size + 0xff) & ~0xff);
1018 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
1019 return ptr;
1020}
1021static void *xxrealloc(int lineno, void *ptr, size_t size)
1022{
1023 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
1024 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
1025 return ptr;
1026}
1027static char *xxstrdup(int lineno, const char *str)
1028{
1029 char *ptr = xstrdup(str);
1030 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
1031 return ptr;
1032}
1033static void xxfree(void *ptr)
1034{
1035 fdprintf(2, "free %p\n", ptr);
1036 free(ptr);
1037}
Denys Vlasenko8391c482010-05-22 17:50:43 +02001038# define xmalloc(s) xxmalloc(__LINE__, s)
1039# define xrealloc(p, s) xxrealloc(__LINE__, p, s)
1040# define xstrdup(s) xxstrdup(__LINE__, s)
1041# define free(p) xxfree(p)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001042#endif
1043
1044
1045/* Syntax and runtime errors. They always abort scripts.
1046 * In interactive use they usually discard unparsed and/or unexecuted commands
1047 * and return to the prompt.
1048 * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
1049 */
1050#if HUSH_DEBUG < 2
Denys Vlasenko606291b2009-09-23 23:15:43 +02001051# define die_if_script(lineno, ...) die_if_script(__VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001052# define syntax_error(lineno, msg) syntax_error(msg)
1053# define syntax_error_at(lineno, msg) syntax_error_at(msg)
1054# define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch)
1055# define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s)
1056# define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001057#endif
1058
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001059static void die_if_script(unsigned lineno, const char *fmt, ...)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001060{
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001061 va_list p;
1062
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001063#if HUSH_DEBUG >= 2
1064 bb_error_msg("hush.c:%u", lineno);
1065#endif
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001066 va_start(p, fmt);
1067 bb_verror_msg(fmt, p, NULL);
1068 va_end(p);
1069 if (!G_interactive_fd)
1070 xfunc_die();
Mike Frysinger6379bb42009-03-28 18:55:03 +00001071}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001072
1073static void syntax_error(unsigned lineno, const char *msg)
1074{
1075 if (msg)
1076 die_if_script(lineno, "syntax error: %s", msg);
1077 else
1078 die_if_script(lineno, "syntax error", NULL);
1079}
1080
1081static void syntax_error_at(unsigned lineno, const char *msg)
1082{
1083 die_if_script(lineno, "syntax error at '%s'", msg);
1084}
1085
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001086static void syntax_error_unterm_str(unsigned lineno, const char *s)
1087{
1088 die_if_script(lineno, "syntax error: unterminated %s", s);
1089}
1090
Denis Vlasenko0b677d82009-04-10 13:49:10 +00001091/* It so happens that all such cases are totally fatal
1092 * even if shell is interactive: EOF while looking for closing
1093 * delimiter. There is nowhere to read stuff from after that,
1094 * it's EOF! The only choice is to terminate.
1095 */
1096static void syntax_error_unterm_ch(unsigned lineno, char ch) NORETURN;
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001097static void syntax_error_unterm_ch(unsigned lineno, char ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001098{
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001099 char msg[2] = { ch, '\0' };
1100 syntax_error_unterm_str(lineno, msg);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00001101 xfunc_die();
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001102}
1103
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02001104static void syntax_error_unexpected_ch(unsigned lineno, int ch)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001105{
1106 char msg[2];
1107 msg[0] = ch;
1108 msg[1] = '\0';
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02001109 die_if_script(lineno, "syntax error: unexpected %s", ch == EOF ? "EOF" : msg);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001110}
1111
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001112#if HUSH_DEBUG < 2
1113# undef die_if_script
1114# undef syntax_error
1115# undef syntax_error_at
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001116# undef syntax_error_unterm_ch
1117# undef syntax_error_unterm_str
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001118# undef syntax_error_unexpected_ch
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001119#else
Denys Vlasenko606291b2009-09-23 23:15:43 +02001120# define die_if_script(...) die_if_script(__LINE__, __VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001121# define syntax_error(msg) syntax_error(__LINE__, msg)
1122# define syntax_error_at(msg) syntax_error_at(__LINE__, msg)
1123# define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch)
1124# define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s)
1125# define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001126#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001127
Denis Vlasenko552433b2009-04-04 19:29:21 +00001128
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001129#if ENABLE_HUSH_INTERACTIVE
1130static void cmdedit_update_prompt(void);
1131#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001132# define cmdedit_update_prompt() ((void)0)
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001133#endif
1134
1135
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001136/* Utility functions
1137 */
Denis Vlasenko55789c62008-06-18 16:30:42 +00001138/* Replace each \x with x in place, return ptr past NUL. */
1139static char *unbackslash(char *src)
1140{
Denys Vlasenko71885402009-09-24 01:44:13 +02001141 char *dst = src = strchrnul(src, '\\');
Denis Vlasenko55789c62008-06-18 16:30:42 +00001142 while (1) {
1143 if (*src == '\\')
1144 src++;
1145 if ((*dst++ = *src++) == '\0')
1146 break;
1147 }
1148 return dst;
1149}
1150
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001151static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001152{
1153 int i;
1154 unsigned count1;
1155 unsigned count2;
1156 char **v;
1157
1158 v = strings;
1159 count1 = 0;
1160 if (v) {
1161 while (*v) {
1162 count1++;
1163 v++;
1164 }
1165 }
1166 count2 = 0;
1167 v = add;
1168 while (*v) {
1169 count2++;
1170 v++;
1171 }
1172 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
1173 v[count1 + count2] = NULL;
1174 i = count2;
1175 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001176 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001177 return v;
1178}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001179#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001180static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
1181{
1182 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
1183 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
1184 return ptr;
1185}
1186#define add_strings_to_strings(strings, add, need_to_dup) \
1187 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
1188#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001189
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001190/* Note: takes ownership of "add" ptr (it is not strdup'ed) */
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001191static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001192{
1193 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001194 v[0] = add;
1195 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001196 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001197}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001198#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001199static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
1200{
1201 char **ptr = add_string_to_strings(strings, add);
1202 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
1203 return ptr;
1204}
1205#define add_string_to_strings(strings, add) \
1206 xx_add_string_to_strings(__LINE__, strings, add)
1207#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001208
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001209static void free_strings(char **strings)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001210{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001211 char **v;
1212
1213 if (!strings)
1214 return;
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001215 v = strings;
1216 while (*v) {
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001217 free(*v);
1218 v++;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001219 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001220 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001221}
1222
Denis Vlasenko76d50412008-06-10 16:19:39 +00001223
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001224/* Helpers for setting new $n and restoring them back
1225 */
1226typedef struct save_arg_t {
1227 char *sv_argv0;
1228 char **sv_g_argv;
1229 int sv_g_argc;
1230 smallint sv_g_malloced;
1231} save_arg_t;
1232
1233static void save_and_replace_G_args(save_arg_t *sv, char **argv)
1234{
1235 int n;
1236
1237 sv->sv_argv0 = argv[0];
1238 sv->sv_g_argv = G.global_argv;
1239 sv->sv_g_argc = G.global_argc;
1240 sv->sv_g_malloced = G.global_args_malloced;
1241
1242 argv[0] = G.global_argv[0]; /* retain $0 */
1243 G.global_argv = argv;
1244 G.global_args_malloced = 0;
1245
1246 n = 1;
1247 while (*++argv)
1248 n++;
1249 G.global_argc = n;
1250}
1251
1252static void restore_G_args(save_arg_t *sv, char **argv)
1253{
1254 char **pp;
1255
1256 if (G.global_args_malloced) {
1257 /* someone ran "set -- arg1 arg2 ...", undo */
1258 pp = G.global_argv;
1259 while (*++pp) /* note: does not free $0 */
1260 free(*pp);
1261 free(G.global_argv);
1262 }
1263 argv[0] = sv->sv_argv0;
1264 G.global_argv = sv->sv_g_argv;
1265 G.global_argc = sv->sv_g_argc;
1266 G.global_args_malloced = sv->sv_g_malloced;
1267}
1268
1269
Denis Vlasenkod5762932009-03-31 11:22:57 +00001270/* Basic theory of signal handling in shell
1271 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001272 * This does not describe what hush does, rather, it is current understanding
1273 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001274 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
1275 *
1276 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
1277 * is finished or backgrounded. It is the same in interactive and
1278 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001279 * a user trap handler is installed or a shell special one is in effect.
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001280 * ^C or ^Z from keyboard seems to execute "at once" because it usually
Denis Vlasenkod5762932009-03-31 11:22:57 +00001281 * backgrounds (i.e. stops) or kills all members of currently running
1282 * pipe.
1283 *
1284 * Wait builtin in interruptible by signals for which user trap is set
1285 * or by SIGINT in interactive shell.
1286 *
1287 * Trap handlers will execute even within trap handlers. (right?)
1288 *
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001289 * User trap handlers are forgotten when subshell ("(cmd)") is entered,
1290 * except for handlers set to '' (empty string).
Denis Vlasenkod5762932009-03-31 11:22:57 +00001291 *
1292 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001293 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001294 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001295 * Commands which are run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001296 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001297 *
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001298 * Ordinary commands have signals set to SIG_IGN/DFL as inherited
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001299 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001300 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001301 * Signals which differ from SIG_DFL action
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001302 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +00001303 *
1304 * SIGQUIT: ignore
1305 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001306 * SIGHUP (interactive):
1307 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +00001308 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00001309 * Note that ^Z is handled not by trapping SIGTSTP, but by seeing
1310 * that all pipe members are stopped. Try this in bash:
1311 * while :; do :; done - ^Z does not background it
1312 * (while :; do :; done) - ^Z backgrounds it
Denis Vlasenkod5762932009-03-31 11:22:57 +00001313 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001314 * of the command line, show prompt. NB: ^C does not send SIGINT
1315 * to interactive shell while shell is waiting for a pipe,
1316 * since shell is bg'ed (is not in foreground process group).
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001317 * Example 1: this waits 5 sec, but does not execute ls:
1318 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
1319 * Example 2: this does not wait and does not execute ls:
1320 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
1321 * Example 3: this does not wait 5 sec, but executes ls:
1322 * "sleep 5; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +00001323 *
1324 * (What happens to signals which are IGN on shell start?)
1325 * (What happens with signal mask on shell start?)
1326 *
1327 * Implementation in hush
1328 * ======================
1329 * We use in-kernel pending signal mask to determine which signals were sent.
1330 * We block all signals which we don't want to take action immediately,
1331 * i.e. we block all signals which need to have special handling as described
1332 * above, and all signals which have traps set.
1333 * After each pipe execution, we extract any pending signals via sigtimedwait()
1334 * and act on them.
1335 *
1336 * unsigned non_DFL_mask: a mask of such "special" signals
1337 * sigset_t blocked_set: current blocked signal set
1338 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001339 * "trap - SIGxxx":
Denis Vlasenko552433b2009-04-04 19:29:21 +00001340 * clear bit in blocked_set unless it is also in non_DFL_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001341 * "trap 'cmd' SIGxxx":
1342 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +00001343 * after [v]fork, if we plan to be a shell:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001344 * unblock signals with special interactive handling
1345 * (child shell is not interactive),
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001346 * unset all traps except '' (note: regardless of child shell's type - {}, (), etc)
Denis Vlasenkod5762932009-03-31 11:22:57 +00001347 * after [v]fork, if we plan to exec:
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001348 * POSIX says fork clears pending signal mask in child - no need to clear it.
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001349 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001350 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001351 * Note: as a result, we do not use signal handlers much. The only uses
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001352 * are to count SIGCHLDs
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001353 * and to restore tty pgrp on signal-induced exit.
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001354 *
Denys Vlasenko67f71862009-09-25 14:21:06 +02001355 * Note 2 (compat):
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001356 * Standard says "When a subshell is entered, traps that are not being ignored
1357 * are set to the default actions". bash interprets it so that traps which
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001358 * are set to '' (ignore) are NOT reset to defaults. We do the same.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001359 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001360enum {
1361 SPECIAL_INTERACTIVE_SIGS = 0
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001362 | (1 << SIGTERM)
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001363 | (1 << SIGINT)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001364 | (1 << SIGHUP)
1365 ,
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001366 SPECIAL_JOB_SIGS = 0
Mike Frysinger38478a62009-05-20 04:48:06 -04001367#if ENABLE_HUSH_JOB
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001368 | (1 << SIGTTIN)
1369 | (1 << SIGTTOU)
1370 | (1 << SIGTSTP)
1371#endif
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001372};
Denis Vlasenkod5762932009-03-31 11:22:57 +00001373
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001374#if ENABLE_HUSH_FAST
1375static void SIGCHLD_handler(int sig UNUSED_PARAM)
1376{
1377 G.count_SIGCHLD++;
1378//bb_error_msg("[%d] SIGCHLD_handler: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
1379}
1380#endif
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001381
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001382#if ENABLE_HUSH_JOB
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001383
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001384/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
Denys Vlasenko8391c482010-05-22 17:50:43 +02001385# define disable_restore_tty_pgrp_on_exit() (die_sleep = 0)
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001386/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denys Vlasenko8391c482010-05-22 17:50:43 +02001387# define enable_restore_tty_pgrp_on_exit() (die_sleep = -1)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001388
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001389/* Restores tty foreground process group, and exits.
1390 * May be called as signal handler for fatal signal
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001391 * (will resend signal to itself, producing correct exit state)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001392 * or called directly with -EXITCODE.
1393 * We also call it if xfunc is exiting. */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001394static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001395static void sigexit(int sig)
1396{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001397 /* Disable all signals: job control, SIGPIPE, etc. */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001398 sigprocmask_allsigs(SIG_BLOCK);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001399
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001400 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001401 * tty pgrp then, only top-level shell process does that */
Mike Frysinger38478a62009-05-20 04:48:06 -04001402 if (G_saved_tty_pgrp && getpid() == G.root_pid)
1403 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001404
1405 /* Not a signal, just exit */
1406 if (sig <= 0)
1407 _exit(- sig);
1408
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001409 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001410}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001411#else
1412
Denys Vlasenko8391c482010-05-22 17:50:43 +02001413# define disable_restore_tty_pgrp_on_exit() ((void)0)
1414# define enable_restore_tty_pgrp_on_exit() ((void)0)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001415
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001416#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001417
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001418/* Restores tty foreground process group, and exits. */
1419static void hush_exit(int exitcode) NORETURN;
1420static void hush_exit(int exitcode)
1421{
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001422 if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) {
1423 /* Prevent recursion:
1424 * trap "echo Hi; exit" EXIT; exit
1425 */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001426 char *argv[3];
1427 /* argv[0] is unused */
1428 argv[1] = G.traps[0];
1429 argv[2] = NULL;
Denys Vlasenkoa110c902010-09-12 15:38:04 +02001430 G.exiting = 1; /* prevent EXIT trap recursion */
Denys Vlasenkoa110c902010-09-12 15:38:04 +02001431 /* Note: G.traps[0] is not cleared!
Denys Vlasenkode8c3f62010-09-12 16:13:44 +02001432 * "trap" will still show it, if executed
1433 * in the handler */
1434 builtin_eval(argv);
Denis Vlasenkod5762932009-03-31 11:22:57 +00001435 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001436
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001437#if ENABLE_FEATURE_CLEAN_UP
1438 {
1439 struct variable *cur_var;
1440 if (G.cwd != bb_msg_unknown)
1441 free((char*)G.cwd);
1442 cur_var = G.top_var;
1443 while (cur_var) {
1444 struct variable *tmp = cur_var;
1445 if (!cur_var->max_len)
1446 free(cur_var->varstr);
1447 cur_var = cur_var->next;
1448 free(tmp);
1449 }
1450 }
1451#endif
1452
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001453#if ENABLE_HUSH_JOB
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001454 fflush_all();
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001455 sigexit(- (exitcode & 0xff));
1456#else
1457 exit(exitcode);
1458#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001459}
1460
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02001461
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001462static int check_and_run_traps(int sig)
1463{
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02001464 /* I want it in rodata, not in bss.
1465 * gcc 4.2.1 puts it in rodata only if it has { 0, 0 }
1466 * initializer. But other compilers may still use bss.
1467 * TODO: find more portable solution.
1468 */
1469 static const struct timespec zero_timespec = { 0, 0 };
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001470 smalluint save_rcode;
1471 int last_sig = 0;
1472
1473 if (sig)
1474 goto jump_in;
1475 while (1) {
1476 sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec);
1477 if (sig <= 0)
1478 break;
1479 jump_in:
1480 last_sig = sig;
1481 if (G.traps && G.traps[sig]) {
1482 if (G.traps[sig][0]) {
1483 /* We have user-defined handler */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001484 char *argv[3];
1485 /* argv[0] is unused */
1486 argv[1] = G.traps[sig];
1487 argv[2] = NULL;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001488 save_rcode = G.last_exitcode;
1489 builtin_eval(argv);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001490 G.last_exitcode = save_rcode;
1491 } /* else: "" trap, ignoring signal */
1492 continue;
1493 }
1494 /* not a trap: special action */
1495 switch (sig) {
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001496#if ENABLE_HUSH_FAST
1497 case SIGCHLD:
1498 G.count_SIGCHLD++;
1499//bb_error_msg("[%d] check_and_run_traps: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
1500 break;
1501#endif
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001502 case SIGINT:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001503 /* Builtin was ^C'ed, make it look prettier: */
1504 bb_putchar('\n');
1505 G.flag_SIGINT = 1;
1506 break;
1507#if ENABLE_HUSH_JOB
1508 case SIGHUP: {
1509 struct pipe *job;
1510 /* bash is observed to signal whole process groups,
1511 * not individual processes */
1512 for (job = G.job_list; job; job = job->next) {
1513 if (job->pgrp <= 0)
1514 continue;
1515 debug_printf_exec("HUPing pgrp %d\n", job->pgrp);
1516 if (kill(- job->pgrp, SIGHUP) == 0)
1517 kill(- job->pgrp, SIGCONT);
1518 }
1519 sigexit(SIGHUP);
1520 }
1521#endif
1522 default: /* ignored: */
1523 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
1524 break;
1525 }
1526 }
1527 return last_sig;
1528}
1529
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001530
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001531static const char *get_cwd(int force)
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001532{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001533 if (force || G.cwd == NULL) {
1534 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1535 * we must not try to free(bb_msg_unknown) */
1536 if (G.cwd == bb_msg_unknown)
1537 G.cwd = NULL;
1538 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1539 if (!G.cwd)
1540 G.cwd = bb_msg_unknown;
1541 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00001542 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001543}
1544
Denis Vlasenko83506862007-11-23 13:11:42 +00001545
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001546/*
1547 * Shell and environment variable support
1548 */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001549static struct variable **get_ptr_to_local_var(const char *name, unsigned len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001550{
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001551 struct variable **pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001552 struct variable *cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001553
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001554 pp = &G.top_var;
1555 while ((cur = *pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001556 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001557 return pp;
1558 pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001559 }
1560 return NULL;
1561}
1562
Denys Vlasenko03dad222010-01-12 23:29:57 +01001563static const char* FAST_FUNC get_local_var_value(const char *name)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001564{
Denys Vlasenko29082232010-07-16 13:52:32 +02001565 struct variable **vpp;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001566 unsigned len = strlen(name);
Denys Vlasenko29082232010-07-16 13:52:32 +02001567
1568 if (G.expanded_assignments) {
1569 char **cpp = G.expanded_assignments;
Denys Vlasenko29082232010-07-16 13:52:32 +02001570 while (*cpp) {
1571 char *cp = *cpp;
1572 if (strncmp(cp, name, len) == 0 && cp[len] == '=')
1573 return cp + len + 1;
1574 cpp++;
1575 }
1576 }
1577
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001578 vpp = get_ptr_to_local_var(name, len);
Denys Vlasenko29082232010-07-16 13:52:32 +02001579 if (vpp)
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001580 return (*vpp)->varstr + len + 1;
Denys Vlasenko29082232010-07-16 13:52:32 +02001581
Denys Vlasenkodea47882009-10-09 15:40:49 +02001582 if (strcmp(name, "PPID") == 0)
1583 return utoa(G.root_ppid);
1584 // bash compat: UID? EUID?
Denys Vlasenko20b3d142009-10-09 20:59:39 +02001585#if ENABLE_HUSH_RANDOM_SUPPORT
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001586 if (strcmp(name, "RANDOM") == 0)
Denys Vlasenko20b3d142009-10-09 20:59:39 +02001587 return utoa(next_random(&G.random_gen));
1588#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001589 return NULL;
1590}
1591
1592/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001593 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001594 * flg_export:
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001595 * 0: do not change export flag
1596 * (if creating new variable, flag will be 0)
1597 * 1: set export flag and putenv the variable
1598 * -1: clear export flag and unsetenv the variable
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001599 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00001600 */
Denys Vlasenko295fef82009-06-03 12:47:26 +02001601#if !BB_MMU && ENABLE_HUSH_LOCAL
1602/* all params are used */
1603#elif BB_MMU && ENABLE_HUSH_LOCAL
1604#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
1605 set_local_var(str, flg_export, local_lvl)
1606#elif BB_MMU && !ENABLE_HUSH_LOCAL
1607#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001608 set_local_var(str, flg_export)
Denys Vlasenko295fef82009-06-03 12:47:26 +02001609#elif !BB_MMU && !ENABLE_HUSH_LOCAL
1610#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
1611 set_local_var(str, flg_export, flg_read_only)
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001612#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02001613static int set_local_var(char *str, int flg_export, int local_lvl, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001614{
Denys Vlasenko295fef82009-06-03 12:47:26 +02001615 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001616 struct variable *cur;
Denis Vlasenko950bd722009-04-21 11:23:56 +00001617 char *eq_sign;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001618 int name_len;
1619
Denis Vlasenko950bd722009-04-21 11:23:56 +00001620 eq_sign = strchr(str, '=');
1621 if (!eq_sign) { /* not expected to ever happen? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001622 free(str);
1623 return -1;
1624 }
1625
Denis Vlasenko950bd722009-04-21 11:23:56 +00001626 name_len = eq_sign - str + 1; /* including '=' */
Denys Vlasenko295fef82009-06-03 12:47:26 +02001627 var_pp = &G.top_var;
1628 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001629 if (strncmp(cur->varstr, str, name_len) != 0) {
Denys Vlasenko295fef82009-06-03 12:47:26 +02001630 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001631 continue;
1632 }
1633 /* We found an existing var with this name */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001634 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001635#if !BB_MMU
1636 if (!flg_read_only)
1637#endif
1638 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001639 free(str);
1640 return -1;
1641 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001642 if (flg_export == -1) { // "&& cur->flg_export" ?
Denis Vlasenko950bd722009-04-21 11:23:56 +00001643 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1644 *eq_sign = '\0';
1645 unsetenv(str);
1646 *eq_sign = '=';
1647 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001648#if ENABLE_HUSH_LOCAL
1649 if (cur->func_nest_level < local_lvl) {
1650 /* New variable is declared as local,
1651 * and existing one is global, or local
1652 * from enclosing function.
1653 * Remove and save old one: */
1654 *var_pp = cur->next;
1655 cur->next = *G.shadowed_vars_pp;
1656 *G.shadowed_vars_pp = cur;
1657 /* bash 3.2.33(1) and exported vars:
1658 * # export z=z
1659 * # f() { local z=a; env | grep ^z; }
1660 * # f
1661 * z=a
1662 * # env | grep ^z
1663 * z=z
1664 */
1665 if (cur->flg_export)
1666 flg_export = 1;
1667 break;
1668 }
1669#endif
Denis Vlasenko950bd722009-04-21 11:23:56 +00001670 if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001671 free_and_exp:
1672 free(str);
1673 goto exp;
1674 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001675 if (cur->max_len != 0) {
1676 if (cur->max_len >= strlen(str)) {
1677 /* This one is from startup env, reuse space */
1678 strcpy(cur->varstr, str);
1679 goto free_and_exp;
1680 }
1681 } else {
1682 /* max_len == 0 signifies "malloced" var, which we can
1683 * (and has to) free */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001684 free(cur->varstr);
Denys Vlasenko295fef82009-06-03 12:47:26 +02001685 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001686 cur->max_len = 0;
1687 goto set_str_and_exp;
1688 }
1689
Denys Vlasenko295fef82009-06-03 12:47:26 +02001690 /* Not found - create new variable struct */
1691 cur = xzalloc(sizeof(*cur));
1692#if ENABLE_HUSH_LOCAL
1693 cur->func_nest_level = local_lvl;
1694#endif
1695 cur->next = *var_pp;
1696 *var_pp = cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001697
1698 set_str_and_exp:
1699 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001700#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001701 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001702#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001703 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001704 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001705 cur->flg_export = 1;
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001706 if (name_len == 4 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
1707 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001708 if (cur->flg_export) {
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001709 if (flg_export == -1) {
1710 cur->flg_export = 0;
1711 /* unsetenv was already done */
1712 } else {
1713 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1714 return putenv(cur->varstr);
1715 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001716 }
1717 return 0;
1718}
1719
Denys Vlasenko6db47842009-09-05 20:15:17 +02001720/* Used at startup and after each cd */
1721static void set_pwd_var(int exp)
1722{
1723 set_local_var(xasprintf("PWD=%s", get_cwd(/*force:*/ 1)),
1724 /*exp:*/ exp, /*lvl:*/ 0, /*ro:*/ 0);
1725}
1726
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001727static int unset_local_var_len(const char *name, int name_len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001728{
1729 struct variable *cur;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001730 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001731
1732 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00001733 return EXIT_SUCCESS;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001734 var_pp = &G.top_var;
1735 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001736 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1737 if (cur->flg_read_only) {
1738 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00001739 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001740 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001741 *var_pp = cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001742 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1743 bb_unsetenv(cur->varstr);
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001744 if (name_len == 3 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
1745 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001746 if (!cur->max_len)
1747 free(cur->varstr);
1748 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00001749 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001750 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001751 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001752 }
Mike Frysingerd690f682009-03-30 06:50:54 +00001753 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001754}
1755
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001756static int unset_local_var(const char *name)
1757{
1758 return unset_local_var_len(name, strlen(name));
1759}
1760
1761static void unset_vars(char **strings)
1762{
1763 char **v;
1764
1765 if (!strings)
1766 return;
1767 v = strings;
1768 while (*v) {
1769 const char *eq = strchrnul(*v, '=');
1770 unset_local_var_len(*v, (int)(eq - *v));
1771 v++;
1772 }
1773 free(strings);
1774}
1775
Denys Vlasenko03dad222010-01-12 23:29:57 +01001776static void FAST_FUNC set_local_var_from_halves(const char *name, const char *val)
Mike Frysinger98c52642009-04-02 10:02:37 +00001777{
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001778 char *var = xasprintf("%s=%s", name, val);
Denys Vlasenko03dad222010-01-12 23:29:57 +01001779 set_local_var(var, /*flags:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00001780}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001781
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001782
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001783/*
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001784 * Helpers for "var1=val1 var2=val2 cmd" feature
1785 */
1786static void add_vars(struct variable *var)
1787{
1788 struct variable *next;
1789
1790 while (var) {
1791 next = var->next;
1792 var->next = G.top_var;
1793 G.top_var = var;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001794 if (var->flg_export) {
1795 debug_printf_env("%s: restoring exported '%s'\n", __func__, var->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001796 putenv(var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001797 } else {
Denys Vlasenko295fef82009-06-03 12:47:26 +02001798 debug_printf_env("%s: restoring variable '%s'\n", __func__, var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001799 }
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001800 var = next;
1801 }
1802}
1803
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001804static struct variable *set_vars_and_save_old(char **strings)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001805{
1806 char **s;
1807 struct variable *old = NULL;
1808
1809 if (!strings)
1810 return old;
1811 s = strings;
1812 while (*s) {
1813 struct variable *var_p;
1814 struct variable **var_pp;
1815 char *eq;
1816
1817 eq = strchr(*s, '=');
1818 if (eq) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001819 var_pp = get_ptr_to_local_var(*s, eq - *s);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001820 if (var_pp) {
1821 /* Remove variable from global linked list */
1822 var_p = *var_pp;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001823 debug_printf_env("%s: removing '%s'\n", __func__, var_p->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001824 *var_pp = var_p->next;
1825 /* Add it to returned list */
1826 var_p->next = old;
1827 old = var_p;
1828 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001829 set_local_var(*s, /*exp:*/ 1, /*lvl:*/ 0, /*ro:*/ 0);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001830 }
1831 s++;
1832 }
1833 return old;
1834}
1835
1836
1837/*
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001838 * in_str support
1839 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001840static int FAST_FUNC static_get(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001841{
Denys Vlasenko8391c482010-05-22 17:50:43 +02001842 int ch = *i->p;
1843 if (ch != '\0') {
1844 i->p++;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001845 return ch;
Denys Vlasenko8391c482010-05-22 17:50:43 +02001846 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001847 return EOF;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001848}
1849
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001850static int FAST_FUNC static_peek(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001851{
1852 return *i->p;
1853}
1854
1855#if ENABLE_HUSH_INTERACTIVE
1856
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001857static void cmdedit_update_prompt(void)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001858{
Mike Frysingerec2c6552009-03-28 12:24:44 +00001859 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001860 G.PS1 = get_local_var_value("PS1");
Mike Frysingerec2c6552009-03-28 12:24:44 +00001861 if (G.PS1 == NULL)
1862 G.PS1 = "\\w \\$ ";
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001863 G.PS2 = get_local_var_value("PS2");
Denys Vlasenko690ad242009-04-30 21:24:24 +02001864 } else {
Mike Frysingerec2c6552009-03-28 12:24:44 +00001865 G.PS1 = NULL;
Denys Vlasenko690ad242009-04-30 21:24:24 +02001866 }
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001867 if (G.PS2 == NULL)
1868 G.PS2 = "> ";
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001869}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001870
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02001871static const char *setup_prompt_string(int promptmode)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001872{
1873 const char *prompt_str;
1874 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00001875 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1876 /* Set up the prompt */
1877 if (promptmode == 0) { /* PS1 */
1878 free((char*)G.PS1);
Denys Vlasenko6db47842009-09-05 20:15:17 +02001879 /* bash uses $PWD value, even if it is set by user.
1880 * It uses current dir only if PWD is unset.
1881 * We always use current dir. */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001882 G.PS1 = xasprintf("%s %c ", get_cwd(0), (geteuid() != 0) ? '$' : '#');
Mike Frysingerec2c6552009-03-28 12:24:44 +00001883 prompt_str = G.PS1;
1884 } else
1885 prompt_str = G.PS2;
1886 } else
1887 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001888 debug_printf("result '%s'\n", prompt_str);
1889 return prompt_str;
1890}
1891
1892static void get_user_input(struct in_str *i)
1893{
1894 int r;
1895 const char *prompt_str;
1896
1897 prompt_str = setup_prompt_string(i->promptmode);
Denys Vlasenko8391c482010-05-22 17:50:43 +02001898# if ENABLE_FEATURE_EDITING
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001899 /* Enable command line editing only while a command line
1900 * is actually being read */
1901 do {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001902 G.flag_SIGINT = 0;
1903 /* buglet: SIGINT will not make new prompt to appear _at once_,
1904 * only after <Enter>. (^C will work) */
Denys Vlasenkoaaa22d22009-10-19 16:34:39 +02001905 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 +00001906 /* catch *SIGINT* etc (^C is handled by read_line_input) */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001907 check_and_run_traps(0);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001908 } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001909 i->eof_flag = (r < 0);
1910 if (i->eof_flag) { /* EOF/error detected */
1911 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1912 G.user_input_buf[1] = '\0';
1913 }
Denys Vlasenko8391c482010-05-22 17:50:43 +02001914# else
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001915 do {
1916 G.flag_SIGINT = 0;
1917 fputs(prompt_str, stdout);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001918 fflush_all();
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001919 G.user_input_buf[0] = r = fgetc(i->file);
1920 /*G.user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001921//do we need check_and_run_traps(0)? (maybe only if stdin)
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001922 } while (G.flag_SIGINT);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001923 i->eof_flag = (r == EOF);
Denys Vlasenko8391c482010-05-22 17:50:43 +02001924# endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001925 i->p = G.user_input_buf;
1926}
1927
1928#endif /* INTERACTIVE */
1929
1930/* This is the magic location that prints prompts
1931 * and gets data back from the user */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001932static int FAST_FUNC file_get(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001933{
1934 int ch;
1935
1936 /* If there is data waiting, eat it up */
1937 if (i->p && *i->p) {
1938#if ENABLE_HUSH_INTERACTIVE
1939 take_cached:
1940#endif
1941 ch = *i->p++;
1942 if (i->eof_flag && !*i->p)
1943 ch = EOF;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001944 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001945 } else {
1946 /* need to double check i->file because we might be doing something
1947 * more complicated by now, like sourcing or substituting. */
1948#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001949 if (G_interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001950 do {
1951 get_user_input(i);
1952 } while (!*i->p); /* need non-empty line */
1953 i->promptmode = 1; /* PS2 */
1954 i->promptme = 0;
1955 goto take_cached;
1956 }
1957#endif
Denis Vlasenko913a2012009-04-05 22:17:04 +00001958 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001959 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001960 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001961#if ENABLE_HUSH_INTERACTIVE
1962 if (ch == '\n')
1963 i->promptme = 1;
1964#endif
1965 return ch;
1966}
1967
Denis Vlasenko913a2012009-04-05 22:17:04 +00001968/* All callers guarantee this routine will never
1969 * be used right after a newline, so prompting is not needed.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001970 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001971static int FAST_FUNC file_peek(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001972{
1973 int ch;
1974 if (i->p && *i->p) {
1975 if (i->eof_flag && !i->p[1])
1976 return EOF;
1977 return *i->p;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001978 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001979 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001980 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001981 i->eof_flag = (ch == EOF);
1982 i->peek_buf[0] = ch;
1983 i->peek_buf[1] = '\0';
1984 i->p = i->peek_buf;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001985 debug_printf("file_peek: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001986 return ch;
1987}
1988
1989static void setup_file_in_str(struct in_str *i, FILE *f)
1990{
1991 i->peek = file_peek;
1992 i->get = file_get;
1993#if ENABLE_HUSH_INTERACTIVE
1994 i->promptme = 1;
1995 i->promptmode = 0; /* PS1 */
1996#endif
1997 i->file = f;
1998 i->p = NULL;
1999}
2000
2001static void setup_string_in_str(struct in_str *i, const char *s)
2002{
2003 i->peek = static_peek;
2004 i->get = static_get;
2005#if ENABLE_HUSH_INTERACTIVE
2006 i->promptme = 1;
2007 i->promptmode = 0; /* PS1 */
2008#endif
2009 i->p = s;
2010 i->eof_flag = 0;
2011}
2012
2013
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002014/*
2015 * o_string support
2016 */
2017#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00002018
Denis Vlasenko0b677d82009-04-10 13:49:10 +00002019static void o_reset_to_empty_unquoted(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00002020{
2021 o->length = 0;
Denys Vlasenko38292b62010-09-05 14:49:40 +02002022 o->has_quoted_part = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002023 if (o->data)
2024 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002025}
2026
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002027static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00002028{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00002029 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002030 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00002031}
2032
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002033static ALWAYS_INLINE void o_free_unsafe(o_string *o)
2034{
2035 free(o->data);
2036}
2037
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002038static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002039{
2040 if (o->length + len > o->maxlen) {
2041 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
2042 o->data = xrealloc(o->data, 1 + o->maxlen);
2043 }
2044}
2045
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002046static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002047{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002048 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
2049 o_grow_by(o, 1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002050 o->data[o->length] = ch;
2051 o->length++;
2052 o->data[o->length] = '\0';
2053}
2054
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002055static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002056{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002057 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002058 memcpy(&o->data[o->length], str, len);
2059 o->length += len;
2060 o->data[o->length] = '\0';
2061}
2062
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002063static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00002064{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002065 o_addblock(o, str, strlen(str));
2066}
Denys Vlasenko2e48d532010-05-22 17:30:39 +02002067
Denys Vlasenko1e811b12010-05-22 03:12:29 +02002068#if !BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002069static void nommu_addchr(o_string *o, int ch)
2070{
2071 if (o)
2072 o_addchr(o, ch);
2073}
2074#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002075# define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002076#endif
2077
2078static void o_addstr_with_NUL(o_string *o, const char *str)
2079{
2080 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00002081}
2082
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002083/*
Denys Vlasenko238081f2010-10-03 14:26:26 +02002084 * HUSH_BRACE_EXPANSION code needs corresponding quoting on variable expansion side.
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002085 * Currently, "v='{q,w}'; echo $v" erroneously expands braces in $v.
2086 * Apparently, on unquoted $v bash still does globbing
2087 * ("v='*.txt'; echo $v" prints all .txt files),
2088 * but NOT brace expansion! Thus, there should be TWO independent
2089 * quoting mechanisms on $v expansion side: one protects
2090 * $v from brace expansion, and other additionally protects "$v" against globbing.
2091 * We have only second one.
2092 */
2093
Denys Vlasenko9e800222010-10-03 14:28:04 +02002094#if ENABLE_HUSH_BRACE_EXPANSION
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002095# define MAYBE_BRACES "{}"
2096#else
2097# define MAYBE_BRACES ""
2098#endif
2099
Eric Andersen25f27032001-04-26 23:22:31 +00002100/* My analysis of quoting semantics tells me that state information
2101 * is associated with a destination, not a source.
2102 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002103static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00002104{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002105 int sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002106 char *found = strchr("*?[\\" MAYBE_BRACES, ch);
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002107 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002108 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002109 o_grow_by(o, sz);
2110 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002111 o->data[o->length] = '\\';
2112 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00002113 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002114 o->data[o->length] = ch;
2115 o->length++;
2116 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002117}
2118
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002119static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002120{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002121 int sz = 1;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002122 if ((o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)
2123 && strchr("*?[\\" MAYBE_BRACES, ch)
2124 ) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002125 sz++;
2126 o->data[o->length] = '\\';
2127 o->length++;
2128 }
2129 o_grow_by(o, sz);
2130 o->data[o->length] = ch;
2131 o->length++;
2132 o->data[o->length] = '\0';
2133}
2134
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002135static void o_addqblock(o_string *o, const char *str, int len)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002136{
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002137 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002138 char ch;
2139 int sz;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002140 int ordinary_cnt = strcspn(str, "*?[\\" MAYBE_BRACES);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002141 if (ordinary_cnt > len) /* paranoia */
2142 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002143 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002144 if (ordinary_cnt == len)
2145 return;
2146 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002147 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002148
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002149 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002150 sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002151 if (ch) { /* it is necessarily one of "*?[\\" MAYBE_BRACES */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002152 sz++;
2153 o->data[o->length] = '\\';
2154 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002155 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002156 o_grow_by(o, sz);
2157 o->data[o->length] = ch;
2158 o->length++;
2159 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002160 }
2161}
2162
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002163static void o_addQblock(o_string *o, const char *str, int len)
2164{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002165 if (!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002166 o_addblock(o, str, len);
2167 return;
2168 }
2169 o_addqblock(o, str, len);
2170}
2171
Denys Vlasenko38292b62010-09-05 14:49:40 +02002172static void o_addQstr(o_string *o, const char *str)
2173{
2174 o_addQblock(o, str, strlen(str));
2175}
2176
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002177/* A special kind of o_string for $VAR and `cmd` expansion.
2178 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002179 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002180 * list[i] contains an INDEX (int!) into this string data.
2181 * It means that if list[] needs to grow, data needs to be moved higher up
2182 * but list[i]'s need not be modified.
2183 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002184 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002185 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
2186 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002187#if DEBUG_EXPAND || DEBUG_GLOB
2188static void debug_print_list(const char *prefix, o_string *o, int n)
2189{
2190 char **list = (char**)o->data;
2191 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2192 int i = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002193
2194 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002195 fdprintf(2, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d glob:%d quoted:%d escape:%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002196 prefix, list, n, string_start, o->length, o->maxlen,
2197 !!(o->o_expflags & EXP_FLAG_GLOB),
2198 o->has_quoted_part,
2199 !!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002200 while (i < n) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002201 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002202 fdprintf(2, " list[%d]=%d '%s' %p\n", i, (int)(uintptr_t)list[i],
2203 o->data + (int)(uintptr_t)list[i] + string_start,
2204 o->data + (int)(uintptr_t)list[i] + string_start);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002205 i++;
2206 }
2207 if (n) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002208 const char *p = o->data + (int)(uintptr_t)list[n - 1] + string_start;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002209 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002210 fdprintf(2, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002211 }
2212}
2213#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002214# define debug_print_list(prefix, o, n) ((void)0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002215#endif
2216
2217/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
2218 * in list[n] so that it points past last stored byte so far.
2219 * It returns n+1. */
2220static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002221{
2222 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00002223 int string_start;
2224 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002225
2226 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00002227 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2228 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002229 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002230 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002231 /* list[n] points to string_start, make space for 16 more pointers */
2232 o->maxlen += 0x10 * sizeof(list[0]);
2233 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00002234 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002235 memmove(list + n + 0x10, list + n, string_len);
2236 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002237 } else {
2238 debug_printf_list("list[%d]=%d string_start=%d\n",
2239 n, string_len, string_start);
2240 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002241 } else {
2242 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00002243 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
2244 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002245 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
2246 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002247 o->has_empty_slot = 0;
2248 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002249 list[n] = (char*)(uintptr_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002250 return n + 1;
2251}
2252
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002253/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002254static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002255{
2256 char **list = (char**)o->data;
2257 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2258
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002259 return ((int)(uintptr_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002260}
2261
Denys Vlasenko9e800222010-10-03 14:28:04 +02002262#if ENABLE_HUSH_BRACE_EXPANSION
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002263/* There in a GNU extension, GLOB_BRACE, but it is not usable:
2264 * first, it processes even {a} (no commas), second,
2265 * I didn't manage to make it return strings when they don't match
Denys Vlasenko160746b2009-11-16 05:51:18 +01002266 * existing files. Need to re-implement it.
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002267 */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002268
2269/* Helper */
2270static int glob_needed(const char *s)
2271{
2272 while (*s) {
2273 if (*s == '\\') {
2274 if (!s[1])
2275 return 0;
2276 s += 2;
2277 continue;
2278 }
2279 if (*s == '*' || *s == '[' || *s == '?' || *s == '{')
2280 return 1;
2281 s++;
2282 }
2283 return 0;
2284}
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002285/* Return pointer to next closing brace or to comma */
2286static const char *next_brace_sub(const char *cp)
2287{
2288 unsigned depth = 0;
2289 cp++;
2290 while (*cp != '\0') {
2291 if (*cp == '\\') {
2292 if (*++cp == '\0')
2293 break;
2294 cp++;
2295 continue;
Denys Vlasenko3581c622010-01-25 13:39:24 +01002296 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002297 if ((*cp == '}' && depth-- == 0) || (*cp == ',' && depth == 0))
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002298 break;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002299 if (*cp++ == '{')
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002300 depth++;
2301 }
2302
2303 return *cp != '\0' ? cp : NULL;
2304}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002305/* Recursive brace globber. Note: may garble pattern[]. */
2306static int glob_brace(char *pattern, o_string *o, int n)
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002307{
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002308 char *new_pattern_buf;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002309 const char *begin;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002310 const char *next;
2311 const char *rest;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002312 const char *p;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002313 size_t rest_len;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002314
2315 debug_printf_glob("glob_brace('%s')\n", pattern);
2316
2317 begin = pattern;
2318 while (1) {
2319 if (*begin == '\0')
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002320 goto simple_glob;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002321 if (*begin == '{') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002322 /* Find the first sub-pattern and at the same time
2323 * find the rest after the closing brace */
2324 next = next_brace_sub(begin);
2325 if (next == NULL) {
2326 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002327 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002328 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002329 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002330 /* "{abc}" with no commas - illegal
2331 * brace expr, disregard and skip it */
2332 begin = next + 1;
2333 continue;
2334 }
2335 break;
2336 }
2337 if (*begin == '\\' && begin[1] != '\0')
2338 begin++;
2339 begin++;
2340 }
2341 debug_printf_glob("begin:%s\n", begin);
2342 debug_printf_glob("next:%s\n", next);
2343
2344 /* Now find the end of the whole brace expression */
2345 rest = next;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002346 while (*rest != '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002347 rest = next_brace_sub(rest);
2348 if (rest == NULL) {
2349 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002350 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002351 }
2352 debug_printf_glob("rest:%s\n", rest);
2353 }
2354 rest_len = strlen(++rest) + 1;
2355
2356 /* We are sure the brace expression is well-formed */
2357
2358 /* Allocate working buffer large enough for our work */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002359 new_pattern_buf = xmalloc(strlen(pattern));
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002360
2361 /* We have a brace expression. BEGIN points to the opening {,
2362 * NEXT points past the terminator of the first element, and REST
2363 * points past the final }. We will accumulate result names from
2364 * recursive runs for each brace alternative in the buffer using
2365 * GLOB_APPEND. */
2366
2367 p = begin + 1;
2368 while (1) {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002369 /* Construct the new glob expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002370 memcpy(
2371 mempcpy(
2372 mempcpy(new_pattern_buf,
2373 /* We know the prefix for all sub-patterns */
2374 pattern, begin - pattern),
2375 p, next - p),
2376 rest, rest_len);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002377
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002378 /* Note: glob_brace() may garble new_pattern_buf[].
2379 * That's why we re-copy prefix every time (1st memcpy above).
2380 */
2381 n = glob_brace(new_pattern_buf, o, n);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002382 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002383 /* We saw the last entry */
2384 break;
2385 }
2386 p = next + 1;
2387 next = next_brace_sub(next);
2388 }
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002389 free(new_pattern_buf);
2390 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002391
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002392 simple_glob:
2393 {
2394 int gr;
2395 glob_t globdata;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002396
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002397 memset(&globdata, 0, sizeof(globdata));
2398 gr = glob(pattern, 0, NULL, &globdata);
2399 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
2400 if (gr != 0) {
2401 if (gr == GLOB_NOMATCH) {
2402 globfree(&globdata);
2403 /* NB: garbles parameter */
2404 unbackslash(pattern);
2405 o_addstr_with_NUL(o, pattern);
2406 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2407 return o_save_ptr_helper(o, n);
2408 }
2409 if (gr == GLOB_NOSPACE)
2410 bb_error_msg_and_die(bb_msg_memory_exhausted);
2411 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
2412 * but we didn't specify it. Paranoia again. */
2413 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
2414 }
2415 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
2416 char **argv = globdata.gl_pathv;
2417 while (1) {
2418 o_addstr_with_NUL(o, *argv);
2419 n = o_save_ptr_helper(o, n);
2420 argv++;
2421 if (!*argv)
2422 break;
2423 }
2424 }
2425 globfree(&globdata);
2426 }
2427 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002428}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002429/* Performs globbing on last list[],
2430 * saving each result as a new list[].
2431 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002432static int perform_glob(o_string *o, int n)
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002433{
2434 char *pattern, *copy;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002435
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002436 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002437 if (!o->data)
2438 return o_save_ptr_helper(o, n);
2439 pattern = o->data + o_get_last_ptr(o, n);
2440 debug_printf_glob("glob pattern '%s'\n", pattern);
2441 if (!glob_needed(pattern)) {
2442 /* unbackslash last string in o in place, fix length */
2443 o->length = unbackslash(pattern) - o->data;
2444 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2445 return o_save_ptr_helper(o, n);
2446 }
2447
2448 copy = xstrdup(pattern);
2449 /* "forget" pattern in o */
2450 o->length = pattern - o->data;
2451 n = glob_brace(copy, o, n);
2452 free(copy);
2453 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002454 debug_print_list("perform_glob returning", o, n);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002455 return n;
2456}
2457
Denys Vlasenko238081f2010-10-03 14:26:26 +02002458#else /* !HUSH_BRACE_EXPANSION */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002459
2460/* Helper */
2461static int glob_needed(const char *s)
2462{
2463 while (*s) {
2464 if (*s == '\\') {
2465 if (!s[1])
2466 return 0;
2467 s += 2;
2468 continue;
2469 }
2470 if (*s == '*' || *s == '[' || *s == '?')
2471 return 1;
2472 s++;
2473 }
2474 return 0;
2475}
2476/* Performs globbing on last list[],
2477 * saving each result as a new list[].
2478 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002479static int perform_glob(o_string *o, int n)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002480{
2481 glob_t globdata;
2482 int gr;
2483 char *pattern;
2484
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002485 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002486 if (!o->data)
2487 return o_save_ptr_helper(o, n);
2488 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002489 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002490 if (!glob_needed(pattern)) {
2491 literal:
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002492 /* unbackslash last string in o in place, fix length */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002493 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002494 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002495 return o_save_ptr_helper(o, n);
2496 }
2497
2498 memset(&globdata, 0, sizeof(globdata));
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002499 /* Can't use GLOB_NOCHECK: it does not unescape the string.
2500 * If we glob "*.\*" and don't find anything, we need
2501 * to fall back to using literal "*.*", but GLOB_NOCHECK
2502 * will return "*.\*"!
2503 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002504 gr = glob(pattern, 0, NULL, &globdata);
2505 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002506 if (gr != 0) {
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002507 if (gr == GLOB_NOMATCH) {
2508 globfree(&globdata);
2509 goto literal;
2510 }
2511 if (gr == GLOB_NOSPACE)
2512 bb_error_msg_and_die(bb_msg_memory_exhausted);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002513 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
2514 * but we didn't specify it. Paranoia again. */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002515 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002516 }
2517 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
2518 char **argv = globdata.gl_pathv;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002519 /* "forget" pattern in o */
2520 o->length = pattern - o->data;
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002521 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002522 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002523 n = o_save_ptr_helper(o, n);
2524 argv++;
2525 if (!*argv)
2526 break;
2527 }
2528 }
2529 globfree(&globdata);
2530 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002531 debug_print_list("perform_glob returning", o, n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002532 return n;
2533}
2534
Denys Vlasenko238081f2010-10-03 14:26:26 +02002535#endif /* !HUSH_BRACE_EXPANSION */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002536
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002537/* If o->o_expflags & EXP_FLAG_GLOB, glob the string so far remembered.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002538 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002539static int o_save_ptr(o_string *o, int n)
2540{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002541 if (o->o_expflags & EXP_FLAG_GLOB) {
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00002542 /* If o->has_empty_slot, list[n] was already globbed
2543 * (if it was requested back then when it was filled)
2544 * so don't do that again! */
2545 if (!o->has_empty_slot)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002546 return perform_glob(o, n); /* o_save_ptr_helper is inside */
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00002547 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002548 return o_save_ptr_helper(o, n);
2549}
2550
2551/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002552static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002553{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002554 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002555 int string_start;
2556
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002557 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
2558 if (DEBUG_EXPAND)
2559 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002560 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002561 list = (char**)o->data;
2562 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2563 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002564 while (n) {
2565 n--;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002566 list[n] = o->data + (int)(uintptr_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002567 }
2568 return list;
2569}
2570
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002571static void free_pipe_list(struct pipe *pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002572
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002573/* Returns pi->next - next pipe in the list */
2574static struct pipe *free_pipe(struct pipe *pi)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002575{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002576 struct pipe *next;
2577 int i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002578
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002579 debug_printf_clean("free_pipe (pid %d)\n", getpid());
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002580 for (i = 0; i < pi->num_cmds; i++) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002581 struct command *command;
2582 struct redir_struct *r, *rnext;
2583
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002584 command = &pi->cmds[i];
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002585 debug_printf_clean(" command %d:\n", i);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002586 if (command->argv) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002587 if (DEBUG_CLEAN) {
2588 int a;
2589 char **p;
2590 for (a = 0, p = command->argv; *p; a++, p++) {
2591 debug_printf_clean(" argv[%d] = %s\n", a, *p);
2592 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002593 }
2594 free_strings(command->argv);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002595 //command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002596 }
2597 /* not "else if": on syntax error, we may have both! */
2598 if (command->group) {
Denys Vlasenko9d617c42009-06-09 18:40:52 +02002599 debug_printf_clean(" begin group (cmd_type:%d)\n",
2600 command->cmd_type);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002601 free_pipe_list(command->group);
2602 debug_printf_clean(" end group\n");
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002603 //command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002604 }
Denis Vlasenkoed055212009-04-11 10:37:10 +00002605 /* else is crucial here.
2606 * If group != NULL, child_func is meaningless */
2607#if ENABLE_HUSH_FUNCTIONS
2608 else if (command->child_func) {
2609 debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
2610 command->child_func->parent_cmd = NULL;
2611 }
2612#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002613#if !BB_MMU
2614 free(command->group_as_string);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002615 //command->group_as_string = NULL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002616#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002617 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002618 debug_printf_clean(" redirect %d%s",
2619 r->rd_fd, redir_table[r->rd_type].descrip);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002620 /* guard against the case >$FOO, where foo is unset or blank */
2621 if (r->rd_filename) {
2622 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
2623 free(r->rd_filename);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002624 //r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002625 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002626 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002627 rnext = r->next;
2628 free(r);
2629 }
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002630 //command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002631 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002632 free(pi->cmds); /* children are an array, they get freed all at once */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002633 //pi->cmds = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002634#if ENABLE_HUSH_JOB
2635 free(pi->cmdtext);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002636 //pi->cmdtext = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002637#endif
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002638
2639 next = pi->next;
2640 free(pi);
2641 return next;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002642}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002643
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002644static void free_pipe_list(struct pipe *pi)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002645{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002646 while (pi) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002647#if HAS_KEYWORDS
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002648 debug_printf_clean("pipe reserved word %d\n", pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002649#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002650 debug_printf_clean("pipe followup code %d\n", pi->followup);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002651 pi = free_pipe(pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002652 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002653}
2654
2655
Denys Vlasenkob36abf22010-09-05 14:50:59 +02002656/*** Parsing routines ***/
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002657
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01002658#ifndef debug_print_tree
2659static void debug_print_tree(struct pipe *pi, int lvl)
2660{
2661 static const char *const PIPE[] = {
2662 [PIPE_SEQ] = "SEQ",
2663 [PIPE_AND] = "AND",
2664 [PIPE_OR ] = "OR" ,
2665 [PIPE_BG ] = "BG" ,
2666 };
2667 static const char *RES[] = {
2668 [RES_NONE ] = "NONE" ,
2669# if ENABLE_HUSH_IF
2670 [RES_IF ] = "IF" ,
2671 [RES_THEN ] = "THEN" ,
2672 [RES_ELIF ] = "ELIF" ,
2673 [RES_ELSE ] = "ELSE" ,
2674 [RES_FI ] = "FI" ,
2675# endif
2676# if ENABLE_HUSH_LOOPS
2677 [RES_FOR ] = "FOR" ,
2678 [RES_WHILE] = "WHILE",
2679 [RES_UNTIL] = "UNTIL",
2680 [RES_DO ] = "DO" ,
2681 [RES_DONE ] = "DONE" ,
2682# endif
2683# if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
2684 [RES_IN ] = "IN" ,
2685# endif
2686# if ENABLE_HUSH_CASE
2687 [RES_CASE ] = "CASE" ,
2688 [RES_CASE_IN ] = "CASE_IN" ,
2689 [RES_MATCH] = "MATCH",
2690 [RES_CASE_BODY] = "CASE_BODY",
2691 [RES_ESAC ] = "ESAC" ,
2692# endif
2693 [RES_XXXX ] = "XXXX" ,
2694 [RES_SNTX ] = "SNTX" ,
2695 };
2696 static const char *const CMDTYPE[] = {
2697 "{}",
2698 "()",
2699 "[noglob]",
2700# if ENABLE_HUSH_FUNCTIONS
2701 "func()",
2702# endif
2703 };
2704
2705 int pin, prn;
2706
2707 pin = 0;
2708 while (pi) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002709 fdprintf(2, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01002710 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
2711 prn = 0;
2712 while (prn < pi->num_cmds) {
2713 struct command *command = &pi->cmds[prn];
2714 char **argv = command->argv;
2715
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002716 fdprintf(2, "%*s cmd %d assignment_cnt:%d",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01002717 lvl*2, "", prn,
2718 command->assignment_cnt);
2719 if (command->group) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002720 fdprintf(2, " group %s: (argv=%p)%s%s\n",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01002721 CMDTYPE[command->cmd_type],
2722 argv
2723# if !BB_MMU
2724 , " group_as_string:", command->group_as_string
2725# else
2726 , "", ""
2727# endif
2728 );
2729 debug_print_tree(command->group, lvl+1);
2730 prn++;
2731 continue;
2732 }
2733 if (argv) while (*argv) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002734 fdprintf(2, " '%s'", *argv);
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01002735 argv++;
2736 }
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002737 fdprintf(2, "\n");
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01002738 prn++;
2739 }
2740 pi = pi->next;
2741 pin++;
2742 }
2743}
2744#endif /* debug_print_tree */
2745
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00002746static struct pipe *new_pipe(void)
2747{
Eric Andersen25f27032001-04-26 23:22:31 +00002748 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002749 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002750 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002751 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00002752 return pi;
2753}
2754
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00002755/* Command (member of a pipe) is complete, or we start a new pipe
2756 * if ctx->command is NULL.
2757 * No errors possible here.
2758 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002759static int done_command(struct parse_context *ctx)
2760{
2761 /* The command is really already in the pipe structure, so
2762 * advance the pipe counter and make a new, null command. */
2763 struct pipe *pi = ctx->pipe;
2764 struct command *command = ctx->command;
2765
2766 if (command) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00002767 if (IS_NULL_CMD(command)) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002768 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00002769 goto clear_and_ret;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002770 }
2771 pi->num_cmds++;
2772 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00002773 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002774 } else {
2775 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
2776 }
2777
2778 /* Only real trickiness here is that the uncommitted
2779 * command structure is not counted in pi->num_cmds. */
2780 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00002781 ctx->command = command = &pi->cmds[pi->num_cmds];
2782 clear_and_ret:
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002783 memset(command, 0, sizeof(*command));
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002784 return pi->num_cmds; /* used only for 0/nonzero check */
2785}
2786
2787static void done_pipe(struct parse_context *ctx, pipe_style type)
2788{
2789 int not_null;
2790
2791 debug_printf_parse("done_pipe entered, followup %d\n", type);
2792 /* Close previous command */
2793 not_null = done_command(ctx);
2794 ctx->pipe->followup = type;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00002795#if HAS_KEYWORDS
2796 ctx->pipe->pi_inverted = ctx->ctx_inverted;
2797 ctx->ctx_inverted = 0;
2798 ctx->pipe->res_word = ctx->ctx_res_w;
2799#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002800
2801 /* Without this check, even just <enter> on command line generates
2802 * tree of three NOPs (!). Which is harmless but annoying.
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00002803 * IOW: it is safe to do it unconditionally. */
Denis Vlasenkocd418a22009-04-06 18:08:35 +00002804 if (not_null
Denis Vlasenko7f959372009-04-14 08:06:59 +00002805#if ENABLE_HUSH_IF
Denis Vlasenkocd418a22009-04-06 18:08:35 +00002806 || ctx->ctx_res_w == RES_FI
Denis Vlasenko7f959372009-04-14 08:06:59 +00002807#endif
2808#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00002809 || ctx->ctx_res_w == RES_DONE
2810 || ctx->ctx_res_w == RES_FOR
2811 || ctx->ctx_res_w == RES_IN
Denis Vlasenko7f959372009-04-14 08:06:59 +00002812#endif
2813#if ENABLE_HUSH_CASE
Denis Vlasenkocd418a22009-04-06 18:08:35 +00002814 || ctx->ctx_res_w == RES_ESAC
2815#endif
2816 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002817 struct pipe *new_p;
2818 debug_printf_parse("done_pipe: adding new pipe: "
2819 "not_null:%d ctx->ctx_res_w:%d\n",
2820 not_null, ctx->ctx_res_w);
2821 new_p = new_pipe();
2822 ctx->pipe->next = new_p;
2823 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002824 /* RES_THEN, RES_DO etc are "sticky" -
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00002825 * they remain set for pipes inside if/while.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002826 * This is used to control execution.
2827 * RES_FOR and RES_IN are NOT sticky (needed to support
2828 * cases where variable or value happens to match a keyword):
2829 */
2830#if ENABLE_HUSH_LOOPS
2831 if (ctx->ctx_res_w == RES_FOR
2832 || ctx->ctx_res_w == RES_IN)
2833 ctx->ctx_res_w = RES_NONE;
2834#endif
2835#if ENABLE_HUSH_CASE
2836 if (ctx->ctx_res_w == RES_MATCH)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02002837 ctx->ctx_res_w = RES_CASE_BODY;
2838 if (ctx->ctx_res_w == RES_CASE)
2839 ctx->ctx_res_w = RES_CASE_IN;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002840#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002841 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002842 /* Create the memory for command, roughly:
2843 * ctx->pipe->cmds = new struct command;
2844 * ctx->command = &ctx->pipe->cmds[0];
2845 */
2846 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00002847 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002848 }
2849 debug_printf_parse("done_pipe return\n");
2850}
2851
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002852static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00002853{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002854 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00002855 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002856 /* Create the memory for command, roughly:
2857 * ctx->pipe->cmds = new struct command;
2858 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002859 */
2860 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00002861}
2862
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002863/* If a reserved word is found and processed, parse context is modified
2864 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00002865 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002866#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002867struct reserved_combo {
2868 char literal[6];
2869 unsigned char res;
2870 unsigned char assignment_flag;
2871 int flag;
2872};
2873enum {
2874 FLAG_END = (1 << RES_NONE ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002875# if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002876 FLAG_IF = (1 << RES_IF ),
2877 FLAG_THEN = (1 << RES_THEN ),
2878 FLAG_ELIF = (1 << RES_ELIF ),
2879 FLAG_ELSE = (1 << RES_ELSE ),
2880 FLAG_FI = (1 << RES_FI ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002881# endif
2882# if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002883 FLAG_FOR = (1 << RES_FOR ),
2884 FLAG_WHILE = (1 << RES_WHILE),
2885 FLAG_UNTIL = (1 << RES_UNTIL),
2886 FLAG_DO = (1 << RES_DO ),
2887 FLAG_DONE = (1 << RES_DONE ),
2888 FLAG_IN = (1 << RES_IN ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002889# endif
2890# if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002891 FLAG_MATCH = (1 << RES_MATCH),
2892 FLAG_ESAC = (1 << RES_ESAC ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002893# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002894 FLAG_START = (1 << RES_XXXX ),
2895};
2896
2897static const struct reserved_combo* match_reserved_word(o_string *word)
2898{
Eric Andersen25f27032001-04-26 23:22:31 +00002899 /* Mostly a list of accepted follow-up reserved words.
2900 * FLAG_END means we are done with the sequence, and are ready
2901 * to turn the compound list into a command.
2902 * FLAG_START means the word must start a new compound list.
2903 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002904 static const struct reserved_combo reserved_list[] = {
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002905# if ENABLE_HUSH_IF
Denis Vlasenko2b576b82008-08-04 00:46:07 +00002906 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
2907 { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
2908 { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
2909 { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN },
2910 { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI },
2911 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002912# endif
2913# if ENABLE_HUSH_LOOPS
Denis Vlasenko2b576b82008-08-04 00:46:07 +00002914 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
2915 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
2916 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
2917 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
2918 { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE },
2919 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002920# endif
2921# if ENABLE_HUSH_CASE
Denis Vlasenko2b576b82008-08-04 00:46:07 +00002922 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
2923 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002924# endif
Eric Andersen25f27032001-04-26 23:22:31 +00002925 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002926 const struct reserved_combo *r;
2927
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02002928 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002929 if (strcmp(word->data, r->literal) == 0)
2930 return r;
2931 }
2932 return NULL;
2933}
Denis Vlasenkobb929512009-04-16 10:59:40 +00002934/* Return 0: not a keyword, 1: keyword
2935 */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002936static int reserved_word(o_string *word, struct parse_context *ctx)
2937{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002938# if ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +00002939 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00002940 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00002941 };
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002942# endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002943 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002944
Denys Vlasenko38292b62010-09-05 14:49:40 +02002945 if (word->has_quoted_part)
Denis Vlasenkobb929512009-04-16 10:59:40 +00002946 return 0;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002947 r = match_reserved_word(word);
2948 if (!r)
2949 return 0;
2950
2951 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002952# if ENABLE_HUSH_CASE
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02002953 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE_IN) {
2954 /* "case word IN ..." - IN part starts first MATCH part */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002955 r = &reserved_match;
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02002956 } else
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002957# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002958 if (r->flag == 0) { /* '!' */
2959 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002960 syntax_error("! ! command");
Denis Vlasenkobb929512009-04-16 10:59:40 +00002961 ctx->ctx_res_w = RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00002962 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002963 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00002964 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002965 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002966 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002967 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00002968
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002969 old = xmalloc(sizeof(*old));
2970 debug_printf_parse("push stack %p\n", old);
2971 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002972 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002973 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002974 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002975 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002976 ctx->ctx_res_w = RES_SNTX;
2977 return 1;
Denis Vlasenkobb929512009-04-16 10:59:40 +00002978 } else {
2979 /* "{...} fi" is ok. "{...} if" is not
2980 * Example:
2981 * if { echo foo; } then { echo bar; } fi */
2982 if (ctx->command->group)
2983 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002984 }
Denis Vlasenkobb929512009-04-16 10:59:40 +00002985
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002986 ctx->ctx_res_w = r->res;
2987 ctx->old_flag = r->flag;
Denis Vlasenkobb929512009-04-16 10:59:40 +00002988 word->o_assignment = r->assignment_flag;
2989
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002990 if (ctx->old_flag & FLAG_END) {
2991 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00002992
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002993 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002994 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002995 old = ctx->stack;
2996 old->command->group = ctx->list_head;
Denys Vlasenko9d617c42009-06-09 18:40:52 +02002997 old->command->cmd_type = CMD_NORMAL;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002998# if !BB_MMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002999 o_addstr(&old->as_string, ctx->as_string.data);
3000 o_free_unsafe(&ctx->as_string);
3001 old->command->group_as_string = xstrdup(old->as_string.data);
3002 debug_printf_parse("pop, remembering as:'%s'\n",
3003 old->command->group_as_string);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003004# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003005 *ctx = *old; /* physical copy */
3006 free(old);
3007 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003008 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003009}
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003010#endif /* HAS_KEYWORDS */
Eric Andersen25f27032001-04-26 23:22:31 +00003011
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003012/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003013 * Normal return is 0. Syntax errors return 1.
3014 * Note: on return, word is reset, but not o_free'd!
3015 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003016static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003017{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003018 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00003019
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003020 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denys Vlasenko38292b62010-09-05 14:49:40 +02003021 if (word->length == 0 && !word->has_quoted_part) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003022 debug_printf_parse("done_word return 0: true null, ignored\n");
3023 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003024 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003025
Eric Andersen25f27032001-04-26 23:22:31 +00003026 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003027 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
3028 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003029 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3030 * "2.7 Redirection
3031 * ...the word that follows the redirection operator
3032 * shall be subjected to tilde expansion, parameter expansion,
3033 * command substitution, arithmetic expansion, and quote
3034 * removal. Pathname expansion shall not be performed
3035 * on the word by a non-interactive shell; an interactive
3036 * shell may perform it, but shall do so only when
3037 * the expansion would result in one word."
3038 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003039 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003040 /* Cater for >\file case:
3041 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
3042 * Same with heredocs:
3043 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
3044 */
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003045 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC) {
3046 unbackslash(ctx->pending_redirect->rd_filename);
3047 /* Is it <<"HEREDOC"? */
Denys Vlasenko38292b62010-09-05 14:49:40 +02003048 if (word->has_quoted_part) {
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003049 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
3050 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003051 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003052 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003053 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003054 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003055 /* If this word wasn't an assignment, next ones definitely
3056 * can't be assignments. Even if they look like ones. */
3057 if (word->o_assignment != DEFINITELY_ASSIGNMENT
3058 && word->o_assignment != WORD_IS_KEYWORD
3059 ) {
3060 word->o_assignment = NOT_ASSIGNMENT;
3061 } else {
3062 if (word->o_assignment == DEFINITELY_ASSIGNMENT)
3063 command->assignment_cnt++;
3064 word->o_assignment = MAYBE_ASSIGNMENT;
3065 }
3066
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003067#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003068# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00003069 if (ctx->ctx_dsemicolon
3070 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
3071 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003072 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003073 /* ctx->ctx_res_w = RES_MATCH; */
3074 ctx->ctx_dsemicolon = 0;
3075 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003076# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003077 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003078# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003079 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
3080 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003081# endif
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003082# if ENABLE_HUSH_CASE
3083 && ctx->ctx_res_w != RES_CASE
3084# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003085 ) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003086 debug_printf_parse("checking '%s' for reserved-ness\n", word->data);
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003087 if (reserved_word(word, ctx)) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003088 o_reset_to_empty_unquoted(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003089 debug_printf_parse("done_word return %d\n",
3090 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003091 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003092 }
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02003093# if ENABLE_HUSH_BASH_COMPAT
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003094 if (strcmp(word->data, "[[") == 0) {
3095 command->cmd_type = CMD_SINGLEWORD_NOGLOB;
3096 }
3097 /* fall through */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02003098# endif
Eric Andersen25f27032001-04-26 23:22:31 +00003099 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003100#endif
Denis Vlasenkobb929512009-04-16 10:59:40 +00003101 if (command->group) {
3102 /* "{ echo foo; } echo bar" - bad */
3103 syntax_error_at(word->data);
3104 debug_printf_parse("done_word return 1: syntax error, "
3105 "groups and arglists don't mix\n");
3106 return 1;
3107 }
Denys Vlasenko38292b62010-09-05 14:49:40 +02003108 if (word->has_quoted_part
Denis Vlasenko55789c62008-06-18 16:30:42 +00003109 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
3110 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003111 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003112 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003113 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003114 char *p = word->data;
3115 while (p[0] == SPECIAL_VAR_SYMBOL
3116 && (p[1] & 0x7f) == '@'
3117 && p[2] == SPECIAL_VAR_SYMBOL
3118 ) {
3119 p += 3;
3120 }
3121 if (p == word->data || p[0] != '\0') {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003122 /* saw no "$@", or not only "$@" but some
3123 * real text is there too */
3124 /* insert "empty variable" reference, this makes
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003125 * e.g. "", $empty"" etc to not disappear */
3126 o_addchr(word, SPECIAL_VAR_SYMBOL);
3127 o_addchr(word, SPECIAL_VAR_SYMBOL);
3128 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00003129 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003130 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003131 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003132 }
Eric Andersen25f27032001-04-26 23:22:31 +00003133
Denis Vlasenko06810332007-05-21 23:30:54 +00003134#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003135 if (ctx->ctx_res_w == RES_FOR) {
Denys Vlasenko38292b62010-09-05 14:49:40 +02003136 if (word->has_quoted_part
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003137 || !is_well_formed_var_name(command->argv[0], '\0')
3138 ) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003139 /* bash says just "not a valid identifier" */
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003140 syntax_error("not a valid identifier in for");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003141 return 1;
3142 }
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003143 /* Force FOR to have just one word (variable name) */
3144 /* NB: basically, this makes hush see "for v in ..."
3145 * syntax as if it is "for v; in ...". FOR and IN become
3146 * two pipe structs in parse tree. */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003147 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003148 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003149#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003150#if ENABLE_HUSH_CASE
3151 /* Force CASE to have just one word */
3152 if (ctx->ctx_res_w == RES_CASE) {
3153 done_pipe(ctx, PIPE_SEQ);
3154 }
3155#endif
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003156
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003157 o_reset_to_empty_unquoted(word);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003158
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003159 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003160 return 0;
3161}
3162
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003163
3164/* Peek ahead in the input to find out if we have a "&n" construct,
3165 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003166 * Return:
3167 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
3168 * REDIRFD_SYNTAX_ERR if syntax error,
3169 * REDIRFD_TO_FILE if no & was seen,
3170 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003171 */
3172#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003173#define parse_redir_right_fd(as_string, input) \
3174 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003175#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003176static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003177{
3178 int ch, d, ok;
3179
3180 ch = i_peek(input);
3181 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003182 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003183
3184 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003185 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003186 ch = i_peek(input);
3187 if (ch == '-') {
3188 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003189 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003190 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003191 }
3192 d = 0;
3193 ok = 0;
3194 while (ch != EOF && isdigit(ch)) {
3195 d = d*10 + (ch-'0');
3196 ok = 1;
3197 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003198 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003199 ch = i_peek(input);
3200 }
3201 if (ok) return d;
3202
3203//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
3204
3205 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003206 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003207}
3208
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003209/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003210 */
3211static int parse_redirect(struct parse_context *ctx,
3212 int fd,
3213 redir_type style,
3214 struct in_str *input)
3215{
3216 struct command *command = ctx->command;
3217 struct redir_struct *redir;
3218 struct redir_struct **redirp;
3219 int dup_num;
3220
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003221 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003222 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003223 /* Check for a '>&1' type redirect */
3224 dup_num = parse_redir_right_fd(&ctx->as_string, input);
3225 if (dup_num == REDIRFD_SYNTAX_ERR)
3226 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003227 } else {
3228 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003229 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003230 if (dup_num) { /* <<-... */
3231 ch = i_getch(input);
3232 nommu_addchr(&ctx->as_string, ch);
3233 ch = i_peek(input);
3234 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003235 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003236
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003237 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003238 int ch = i_peek(input);
3239 if (ch == '|') {
3240 /* >|FILE redirect ("clobbering" >).
3241 * Since we do not support "set -o noclobber" yet,
3242 * >| and > are the same for now. Just eat |.
3243 */
3244 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003245 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003246 }
3247 }
3248
3249 /* Create a new redir_struct and append it to the linked list */
3250 redirp = &command->redirects;
3251 while ((redir = *redirp) != NULL) {
3252 redirp = &(redir->next);
3253 }
3254 *redirp = redir = xzalloc(sizeof(*redir));
3255 /* redir->next = NULL; */
3256 /* redir->rd_filename = NULL; */
3257 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003258 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003259
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003260 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
3261 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003262
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003263 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003264 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003265 /* Erik had a check here that the file descriptor in question
3266 * is legit; I postpone that to "run time"
3267 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003268 debug_printf_parse("duplicating redirect '%d>&%d'\n",
3269 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003270 } else {
3271 /* Set ctx->pending_redirect, so we know what to do at the
3272 * end of the next parsed word. */
3273 ctx->pending_redirect = redir;
3274 }
3275 return 0;
3276}
3277
Eric Andersen25f27032001-04-26 23:22:31 +00003278/* If a redirect is immediately preceded by a number, that number is
3279 * supposed to tell which file descriptor to redirect. This routine
3280 * looks for such preceding numbers. In an ideal world this routine
3281 * needs to handle all the following classes of redirects...
3282 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
3283 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
3284 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
3285 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003286 *
3287 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3288 * "2.7 Redirection
3289 * ... If n is quoted, the number shall not be recognized as part of
3290 * the redirection expression. For example:
3291 * echo \2>a
3292 * writes the character 2 into file a"
Denys Vlasenko38292b62010-09-05 14:49:40 +02003293 * We are getting it right by setting ->has_quoted_part on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003294 *
3295 * A -1 return means no valid number was found,
3296 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00003297 */
3298static int redirect_opt_num(o_string *o)
3299{
3300 int num;
3301
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003302 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003303 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003304 num = bb_strtou(o->data, NULL, 10);
3305 if (errno || num < 0)
3306 return -1;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003307 o_reset_to_empty_unquoted(o);
Eric Andersen25f27032001-04-26 23:22:31 +00003308 return num;
3309}
3310
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003311#if BB_MMU
3312#define fetch_till_str(as_string, input, word, skip_tabs) \
3313 fetch_till_str(input, word, skip_tabs)
3314#endif
3315static char *fetch_till_str(o_string *as_string,
3316 struct in_str *input,
3317 const char *word,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003318 int heredoc_flags)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003319{
3320 o_string heredoc = NULL_O_STRING;
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003321 unsigned past_EOL;
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003322 int prev = 0; /* not \ */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003323 int ch;
3324
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003325 goto jump_in;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003326 while (1) {
3327 ch = i_getch(input);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003328 if (ch != EOF)
3329 nommu_addchr(as_string, ch);
3330 if ((ch == '\n' || ch == EOF)
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003331 && ((heredoc_flags & HEREDOC_QUOTED) || prev != '\\')
3332 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003333 if (strcmp(heredoc.data + past_EOL, word) == 0) {
3334 heredoc.data[past_EOL] = '\0';
3335 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
3336 return heredoc.data;
3337 }
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003338 while (ch == '\n') {
3339 o_addchr(&heredoc, ch);
3340 prev = ch;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003341 jump_in:
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003342 past_EOL = heredoc.length;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003343 do {
3344 ch = i_getch(input);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003345 if (ch != EOF)
3346 nommu_addchr(as_string, ch);
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003347 } while ((heredoc_flags & HEREDOC_SKIPTABS) && ch == '\t');
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003348 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003349 }
3350 if (ch == EOF) {
3351 o_free_unsafe(&heredoc);
3352 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003353 }
3354 o_addchr(&heredoc, ch);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003355 nommu_addchr(as_string, ch);
Denys Vlasenkoc3adfac2010-09-06 11:46:03 +02003356 if (prev == '\\' && ch == '\\')
3357 /* Correctly handle foo\\<eol> (not a line cont.) */
3358 prev = 0; /* not \ */
3359 else
3360 prev = ch;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003361 }
3362}
3363
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003364/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
3365 * and load them all. There should be exactly heredoc_cnt of them.
3366 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003367static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
3368{
3369 struct pipe *pi = ctx->list_head;
3370
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003371 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003372 int i;
3373 struct command *cmd = pi->cmds;
3374
3375 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
3376 pi->num_cmds,
3377 cmd->argv ? cmd->argv[0] : "NONE");
3378 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003379 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003380
3381 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
3382 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003383 while (redir) {
3384 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003385 char *p;
3386
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003387 redir->rd_type = REDIRECT_HEREDOC2;
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003388 /* redir->rd_dup is (ab)used to indicate <<- */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003389 p = fetch_till_str(&ctx->as_string, input,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003390 redir->rd_filename, redir->rd_dup);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003391 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003392 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003393 return 1;
3394 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003395 free(redir->rd_filename);
3396 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003397 heredoc_cnt--;
3398 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003399 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003400 }
3401 cmd++;
3402 }
3403 pi = pi->next;
3404 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003405#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003406 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003407 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003408 bb_error_msg_and_die("heredoc BUG 2");
3409#endif
3410 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003411}
3412
3413
Denys Vlasenkob36abf22010-09-05 14:50:59 +02003414static int run_list(struct pipe *pi);
3415#if BB_MMU
3416#define parse_stream(pstring, input, end_trigger) \
3417 parse_stream(input, end_trigger)
3418#endif
3419static struct pipe *parse_stream(char **pstring,
3420 struct in_str *input,
3421 int end_trigger);
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003422
Eric Andersen25f27032001-04-26 23:22:31 +00003423
Denys Vlasenkoc2704542009-11-20 19:14:19 +01003424#if !ENABLE_HUSH_FUNCTIONS
3425#define parse_group(dest, ctx, input, ch) \
3426 parse_group(ctx, input, ch)
3427#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003428static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00003429 struct in_str *input, int ch)
3430{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003431 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00003432 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003433 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003434 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00003435 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003436 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003437
3438 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003439#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko38292b62010-09-05 14:49:40 +02003440 if (ch == '(' && !dest->has_quoted_part) {
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003441 if (dest->length)
Denis Vlasenkobb929512009-04-16 10:59:40 +00003442 if (done_word(dest, ctx))
3443 return 1;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003444 if (!command->argv)
3445 goto skip; /* (... */
3446 if (command->argv[1]) { /* word word ... (... */
3447 syntax_error_unexpected_ch('(');
3448 return 1;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003449 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003450 /* it is "word(..." or "word (..." */
3451 do
3452 ch = i_getch(input);
3453 while (ch == ' ' || ch == '\t');
3454 if (ch != ')') {
3455 syntax_error_unexpected_ch(ch);
3456 return 1;
3457 }
3458 nommu_addchr(&ctx->as_string, ch);
3459 do
3460 ch = i_getch(input);
3461 while (ch == ' ' || ch == '\t' || ch == '\n');
3462 if (ch != '{') {
3463 syntax_error_unexpected_ch(ch);
3464 return 1;
3465 }
3466 nommu_addchr(&ctx->as_string, ch);
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003467 command->cmd_type = CMD_FUNCDEF;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003468 goto skip;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003469 }
3470#endif
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01003471
3472#if 0 /* Prevented by caller */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003473 if (command->argv /* word [word]{... */
3474 || dest->length /* word{... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02003475 || dest->has_quoted_part /* ""{... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003476 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003477 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003478 debug_printf_parse("parse_group return 1: "
3479 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003480 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003481 }
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01003482#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003483
3484#if ENABLE_HUSH_FUNCTIONS
3485 skip:
3486#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00003487 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003488 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00003489 endch = ')';
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003490 command->cmd_type = CMD_SUBSHELL;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003491 } else {
3492 /* bash does not allow "{echo...", requires whitespace */
3493 ch = i_getch(input);
3494 if (ch != ' ' && ch != '\t' && ch != '\n') {
3495 syntax_error_unexpected_ch(ch);
3496 return 1;
3497 }
3498 nommu_addchr(&ctx->as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003499 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003500
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003501 {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003502#if BB_MMU
3503# define as_string NULL
3504#else
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003505 char *as_string = NULL;
3506#endif
3507 pipe_list = parse_stream(&as_string, input, endch);
3508#if !BB_MMU
3509 if (as_string)
3510 o_addstr(&ctx->as_string, as_string);
3511#endif
3512 /* empty ()/{} or parse error? */
3513 if (!pipe_list || pipe_list == ERR_PTR) {
Denis Vlasenkobb929512009-04-16 10:59:40 +00003514 /* parse_stream already emitted error msg */
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003515 if (!BB_MMU)
3516 free(as_string);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003517 debug_printf_parse("parse_group return 1: "
3518 "parse_stream returned %p\n", pipe_list);
3519 return 1;
3520 }
3521 command->group = pipe_list;
3522#if !BB_MMU
3523 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
3524 command->group_as_string = as_string;
3525 debug_printf_parse("end of group, remembering as:'%s'\n",
3526 command->group_as_string);
3527#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003528#undef as_string
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003529 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003530 debug_printf_parse("parse_group return 0\n");
3531 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003532 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00003533}
3534
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02003535#if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_DOLLAR_OPS
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003536/* Subroutines for copying $(...) and `...` things */
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02003537static void add_till_backquote(o_string *dest, struct in_str *input, int in_dquote);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003538/* '...' */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003539static void add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003540{
3541 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003542 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003543 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00003544 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003545 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003546 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003547 if (ch == '\'')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003548 return;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003549 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003550 }
3551}
3552/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003553static void add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003554{
3555 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003556 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003557 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00003558 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003559 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003560 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003561 if (ch == '"')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003562 return;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003563 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003564 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003565 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003566 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003567 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003568 if (ch == '`') {
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02003569 add_till_backquote(dest, input, /*in_dquote:*/ 1);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003570 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003571 continue;
3572 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00003573 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003574 }
3575}
3576/* Process `cmd` - copy contents until "`" is seen. Complicated by
3577 * \` quoting.
3578 * "Within the backquoted style of command substitution, backslash
3579 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
3580 * The search for the matching backquote shall be satisfied by the first
3581 * backquote found without a preceding backslash; during this search,
3582 * if a non-escaped backquote is encountered within a shell comment,
3583 * a here-document, an embedded command substitution of the $(command)
3584 * form, or a quoted string, undefined results occur. A single-quoted
3585 * or double-quoted string that begins, but does not end, within the
3586 * "`...`" sequence produces undefined results."
3587 * Example Output
3588 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
3589 */
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02003590static void add_till_backquote(o_string *dest, struct in_str *input, int in_dquote)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003591{
3592 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003593 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003594 if (ch == '`')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003595 return;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003596 if (ch == '\\') {
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02003597 /* \x. Copy both unless it is \`, \$, \\ and maybe \" */
3598 ch = i_getch(input);
3599 if (ch != '`'
3600 && ch != '$'
3601 && ch != '\\'
3602 && (!in_dquote || ch != '"')
3603 ) {
3604 o_addchr(dest, '\\');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003605 }
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02003606 }
3607 if (ch == EOF) {
3608 syntax_error_unterm_ch('`');
3609 /*xfunc_die(); - redundant */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003610 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003611 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003612 }
3613}
3614/* Process $(cmd) - copy contents until ")" is seen. Complicated by
3615 * quoting and nested ()s.
3616 * "With the $(command) style of command substitution, all characters
3617 * following the open parenthesis to the matching closing parenthesis
3618 * constitute the command. Any valid shell script can be used for command,
3619 * except a script consisting solely of redirections which produces
3620 * unspecified results."
3621 * Example Output
3622 * echo $(echo '(TEST)' BEST) (TEST) BEST
3623 * echo $(echo 'TEST)' BEST) TEST) BEST
3624 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
Denys Vlasenko74369502010-05-21 19:52:01 +02003625 *
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003626 * Also adapted to eat ${var%...} and $((...)) constructs, since ... part
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02003627 * can contain arbitrary constructs, just like $(cmd).
Denys Vlasenko36f774a2010-09-05 14:45:38 +02003628 * In bash compat mode, it needs to also be able to stop on ':' or '/'
3629 * for ${var:N[:M]} and ${var/P[/R]} parsing.
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003630 */
Denys Vlasenko74369502010-05-21 19:52:01 +02003631#define DOUBLE_CLOSE_CHAR_FLAG 0x80
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003632static int add_till_closing_bracket(o_string *dest, struct in_str *input, unsigned end_ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003633{
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003634 int ch;
Denys Vlasenko74369502010-05-21 19:52:01 +02003635 char dbl = end_ch & DOUBLE_CLOSE_CHAR_FLAG;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02003636# if ENABLE_HUSH_BASH_COMPAT
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003637 char end_char2 = end_ch >> 8;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02003638# endif
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003639 end_ch &= (DOUBLE_CLOSE_CHAR_FLAG - 1);
3640
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003641 while (1) {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003642 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003643 if (ch == EOF) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02003644 syntax_error_unterm_ch(end_ch);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003645 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003646 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003647 if (ch == end_ch IF_HUSH_BASH_COMPAT( || ch == end_char2)) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02003648 if (!dbl)
3649 break;
3650 /* we look for closing )) of $((EXPR)) */
3651 if (i_peek(input) == end_ch) {
3652 i_getch(input); /* eat second ')' */
3653 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00003654 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003655 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003656 o_addchr(dest, ch);
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02003657 if (ch == '(' || ch == '{') {
3658 ch = (ch == '(' ? ')' : '}');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003659 add_till_closing_bracket(dest, input, ch);
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02003660 o_addchr(dest, ch);
3661 continue;
3662 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003663 if (ch == '\'') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003664 add_till_single_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003665 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003666 continue;
3667 }
3668 if (ch == '"') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003669 add_till_double_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003670 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003671 continue;
3672 }
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02003673 if (ch == '`') {
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02003674 add_till_backquote(dest, input, /*in_dquote:*/ 0);
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02003675 o_addchr(dest, ch);
3676 continue;
3677 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003678 if (ch == '\\') {
3679 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00003680 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003681 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00003682 syntax_error_unterm_ch(')');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003683 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003684 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003685 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00003686 continue;
3687 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003688 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003689 return ch;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003690}
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02003691#endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_DOLLAR_OPS */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003692
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003693/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003694#if BB_MMU
Denys Vlasenko101a4e32010-09-09 14:04:57 +02003695#define parse_dollar(as_string, dest, input, quote_mask) \
3696 parse_dollar(dest, input, quote_mask)
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003697#define as_string NULL
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003698#endif
Denys Vlasenko2e48d532010-05-22 17:30:39 +02003699static int parse_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003700 o_string *dest,
Denys Vlasenko101a4e32010-09-09 14:04:57 +02003701 struct in_str *input, unsigned char quote_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00003702{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003703 int ch = i_peek(input); /* first character after the $ */
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003704
Denys Vlasenko2e48d532010-05-22 17:30:39 +02003705 debug_printf_parse("parse_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003706 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003707 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003708 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00003709 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003710 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003711 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003712 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003713 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003714 quote_mask = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003715 ch = i_peek(input);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003716 if (!isalnum(ch) && ch != '_')
3717 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003718 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003719 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003720 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003721 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003722 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003723 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003724 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003725 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003726 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003727 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003728 o_addchr(dest, ch | quote_mask);
3729 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003730 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003731 case '$': /* pid */
3732 case '!': /* last bg pid */
3733 case '?': /* last exit code */
3734 case '#': /* number of args */
3735 case '*': /* args */
3736 case '@': /* args */
3737 goto make_one_char_var;
3738 case '{': {
Mike Frysingeref3e7fd2009-06-01 14:13:39 -04003739 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3740
Denys Vlasenko74369502010-05-21 19:52:01 +02003741 ch = i_getch(input); /* eat '{' */
3742 nommu_addchr(as_string, ch);
3743
3744 ch = i_getch(input); /* first char after '{' */
Denys Vlasenko74369502010-05-21 19:52:01 +02003745 /* It should be ${?}, or ${#var},
3746 * or even ${?+subst} - operator acting on a special variable,
3747 * or the beginning of variable name.
3748 */
Denys Vlasenko101a4e32010-09-09 14:04:57 +02003749 if (ch == EOF
3750 || (!strchr(_SPECIAL_VARS_STR, ch) && !isalnum(ch)) /* not one of those */
3751 ) {
Denys Vlasenko74369502010-05-21 19:52:01 +02003752 bad_dollar_syntax:
3753 syntax_error_unterm_str("${name}");
Denys Vlasenko2e48d532010-05-22 17:30:39 +02003754 debug_printf_parse("parse_dollar return 1: unterminated ${name}\n");
Denys Vlasenko74369502010-05-21 19:52:01 +02003755 return 1;
3756 }
Denys Vlasenko101a4e32010-09-09 14:04:57 +02003757 nommu_addchr(as_string, ch);
Denys Vlasenko74369502010-05-21 19:52:01 +02003758 ch |= quote_mask;
3759
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003760 /* It's possible to just call add_till_closing_bracket() at this point.
Denys Vlasenko74369502010-05-21 19:52:01 +02003761 * However, this regresses some of our testsuite cases
3762 * which check invalid constructs like ${%}.
3763 * Oh well... let's check that the var name part is fine... */
3764
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003765 while (1) {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003766 unsigned pos;
3767
Denys Vlasenko74369502010-05-21 19:52:01 +02003768 o_addchr(dest, ch);
3769 debug_printf_parse(": '%c'\n", ch);
3770
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003771 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003772 nommu_addchr(as_string, ch);
Denys Vlasenko74369502010-05-21 19:52:01 +02003773 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00003774 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00003775
Denys Vlasenko74369502010-05-21 19:52:01 +02003776 if (!isalnum(ch) && ch != '_') {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003777 unsigned end_ch;
3778 unsigned char last_ch;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003779 /* handle parameter expansions
3780 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
3781 */
Denys Vlasenko36f774a2010-09-05 14:45:38 +02003782 if (!strchr(VAR_SUBST_OPS, ch)) /* ${var<bad_char>... */
Denys Vlasenko74369502010-05-21 19:52:01 +02003783 goto bad_dollar_syntax;
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003784
3785 /* Eat everything until closing '}' (or ':') */
3786 end_ch = '}';
3787 if (ENABLE_HUSH_BASH_COMPAT
3788 && ch == ':'
Denys Vlasenko36f774a2010-09-05 14:45:38 +02003789 && !strchr(MINUS_PLUS_EQUAL_QUESTION, i_peek(input))
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003790 ) {
3791 /* It's ${var:N[:M]} thing */
3792 end_ch = '}' * 0x100 + ':';
3793 }
Denys Vlasenko36f774a2010-09-05 14:45:38 +02003794 if (ENABLE_HUSH_BASH_COMPAT
3795 && ch == '/'
3796 ) {
3797 /* It's ${var/[/]pattern[/repl]} thing */
3798 if (i_peek(input) == '/') { /* ${var//pattern[/repl]}? */
3799 i_getch(input);
3800 nommu_addchr(as_string, '/');
3801 ch = '\\';
3802 }
3803 end_ch = '}' * 0x100 + '/';
3804 }
3805 o_addchr(dest, ch);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003806 again:
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003807 if (!BB_MMU)
3808 pos = dest->length;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02003809#if ENABLE_HUSH_DOLLAR_OPS
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003810 last_ch = add_till_closing_bracket(dest, input, end_ch);
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02003811#else
3812#error Simple code to only allow ${var} is not implemented
3813#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003814 if (as_string) {
3815 o_addstr(as_string, dest->data + pos);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003816 o_addchr(as_string, last_ch);
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003817 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003818
3819 if (ENABLE_HUSH_BASH_COMPAT && (end_ch & 0xff00)) {
3820 /* close the first block: */
3821 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denys Vlasenko36f774a2010-09-05 14:45:38 +02003822 /* while parsing N from ${var:N[:M]}
3823 * or pattern from ${var/[/]pattern[/repl]} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003824 if ((end_ch & 0xff) == last_ch) {
Denys Vlasenko36f774a2010-09-05 14:45:38 +02003825 /* got ':' or '/'- parse the rest */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003826 end_ch = '}';
3827 goto again;
3828 }
Denys Vlasenko36f774a2010-09-05 14:45:38 +02003829 /* got '}' */
3830 if (end_ch == '}' * 0x100 + ':') {
3831 /* it's ${var:N} - emulate :999999999 */
3832 o_addstr(dest, "999999999");
3833 } /* else: it's ${var/[/]pattern} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003834 }
Denys Vlasenko74369502010-05-21 19:52:01 +02003835 break;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003836 }
Denys Vlasenko74369502010-05-21 19:52:01 +02003837 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003838 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3839 break;
3840 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003841#if ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003842 case '(': {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003843 unsigned pos;
3844
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003845 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003846 nommu_addchr(as_string, ch);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00003847# if ENABLE_SH_MATH_SUPPORT
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003848 if (i_peek(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003849 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003850 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003851 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3852 o_addchr(dest, /*quote_mask |*/ '+');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003853 if (!BB_MMU)
3854 pos = dest->length;
3855 add_till_closing_bracket(dest, input, ')' | DOUBLE_CLOSE_CHAR_FLAG);
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00003856 if (as_string) {
3857 o_addstr(as_string, dest->data + pos);
3858 o_addchr(as_string, ')');
3859 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00003860 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003861 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003862 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00003863 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00003864# endif
3865# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003866 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3867 o_addchr(dest, quote_mask | '`');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003868 if (!BB_MMU)
3869 pos = dest->length;
3870 add_till_closing_bracket(dest, input, ')');
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00003871 if (as_string) {
3872 o_addstr(as_string, dest->data + pos);
Denys Vlasenkob70cef72010-01-12 13:45:45 +01003873 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00003874 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003875 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00003876# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003877 break;
3878 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00003879#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003880 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003881 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003882 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003883 ch = i_peek(input);
3884 if (isalnum(ch)) { /* it's $_name or $_123 */
3885 ch = '_';
3886 goto make_var;
3887 }
3888 /* else: it's $_ */
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02003889 /* TODO: $_ and $-: */
3890 /* $_ Shell or shell script name; or last argument of last command
3891 * (if last command wasn't a pipe; if it was, bash sets $_ to "");
3892 * but in command's env, set to full pathname used to invoke it */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003893 /* $- Option flags set by set builtin or shell options (-i etc) */
3894 default:
3895 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00003896 }
Denys Vlasenko2e48d532010-05-22 17:30:39 +02003897 debug_printf_parse("parse_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003898 return 0;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003899#undef as_string
Eric Andersen25f27032001-04-26 23:22:31 +00003900}
3901
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003902#if BB_MMU
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02003903# if ENABLE_HUSH_BASH_COMPAT
3904#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
3905 encode_string(dest, input, dquote_end, process_bkslash)
3906# else
3907/* only ${var/pattern/repl} (its pattern part) needs additional mode */
3908#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
3909 encode_string(dest, input, dquote_end)
3910# endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003911#define as_string NULL
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02003912
3913#else /* !MMU */
3914
3915# if ENABLE_HUSH_BASH_COMPAT
3916/* all parameters are needed, no macro tricks */
3917# else
3918#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
3919 encode_string(as_string, dest, input, dquote_end)
3920# endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003921#endif
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02003922static int encode_string(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003923 o_string *dest,
3924 struct in_str *input,
Denys Vlasenko14e289b2010-09-10 10:15:18 +02003925 int dquote_end,
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02003926 int process_bkslash)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003927{
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02003928#if !ENABLE_HUSH_BASH_COMPAT
3929 const int process_bkslash = 1;
3930#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00003931 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003932 int next;
3933
3934 again:
3935 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003936 if (ch != EOF)
3937 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003938 if (ch == dquote_end) { /* may be only '"' or EOF */
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02003939 debug_printf_parse("encode_string return 0\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003940 return 0;
3941 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003942 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003943 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00003944 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003945 /*xfunc_die(); - redundant */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003946 }
3947 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003948 if (ch != '\n') {
3949 next = i_peek(input);
3950 }
Denys Vlasenkof37eb392009-10-18 11:46:35 +02003951 debug_printf_parse("\" ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02003952 ch, ch, !!(dest->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02003953 if (process_bkslash && ch == '\\') {
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003954 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003955 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003956 xfunc_die();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003957 }
3958 /* bash:
3959 * "The backslash retains its special meaning [in "..."]
3960 * only when followed by one of the following characters:
3961 * $, `, ", \, or <newline>. A double quote may be quoted
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003962 * within double quotes by preceding it with a backslash."
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02003963 * NB: in (unquoted) heredoc, above does not apply to ",
3964 * therefore we check for it by "next == dquote_end" cond.
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003965 */
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02003966 if (next == dquote_end || strchr("$`\\\n", next)) {
Denys Vlasenko850b15b2010-09-09 12:58:19 +02003967 ch = i_getch(input); /* eat next */
3968 if (ch == '\n')
3969 goto again; /* skip \<newline> */
Denys Vlasenko4f870492010-09-10 11:06:01 +02003970 } /* else: ch remains == '\\', and we double it below: */
3971 o_addqchr(dest, ch); /* \c if c is a glob char, else just c */
Denys Vlasenko850b15b2010-09-09 12:58:19 +02003972 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003973 goto again;
3974 }
3975 if (ch == '$') {
Denys Vlasenko101a4e32010-09-09 14:04:57 +02003976 if (parse_dollar(as_string, dest, input, /*quote_mask:*/ 0x80) != 0) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02003977 debug_printf_parse("encode_string return 1: "
Denys Vlasenko2e48d532010-05-22 17:30:39 +02003978 "parse_dollar returned non-0\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003979 return 1;
3980 }
3981 goto again;
3982 }
3983#if ENABLE_HUSH_TICK
3984 if (ch == '`') {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003985 //unsigned pos = dest->length;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003986 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3987 o_addchr(dest, 0x80 | '`');
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02003988 add_till_backquote(dest, input, /*in_dquote:*/ dquote_end == '"');
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003989 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3990 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00003991 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003992 }
3993#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00003994 o_addQchr(dest, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003995 goto again;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003996#undef as_string
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003997}
3998
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003999/*
4000 * Scan input until EOF or end_trigger char.
4001 * Return a list of pipes to execute, or NULL on EOF
4002 * or if end_trigger character is met.
4003 * On syntax error, exit is shell is not interactive,
4004 * reset parsing machinery and start parsing anew,
4005 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004006 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004007static struct pipe *parse_stream(char **pstring,
4008 struct in_str *input,
4009 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00004010{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004011 struct parse_context ctx;
4012 o_string dest = NULL_O_STRING;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004013 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00004014
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004015 /* Single-quote triggers a bypass of the main loop until its mate is
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004016 * found. When recursing, quote state is passed in via dest->o_expflags.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004017 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004018 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
Denys Vlasenko90a99042009-09-06 02:36:23 +02004019 end_trigger ? end_trigger : 'X');
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004020 debug_enter();
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004021
Denys Vlasenkof37eb392009-10-18 11:46:35 +02004022 /* If very first arg is "" or '', dest.data may end up NULL.
4023 * Preventing this: */
4024 o_addchr(&dest, '\0');
4025 dest.length = 0;
4026
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004027 /* We used to separate words on $IFS here. This was wrong.
4028 * $IFS is used only for word splitting when $var is expanded,
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004029 * here we should use blank chars as separators, not $IFS
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004030 */
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004031
4032 reset: /* we come back here only on syntax errors in interactive shell */
4033
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004034#if ENABLE_HUSH_INTERACTIVE
4035 input->promptmode = 0; /* PS1 */
4036#endif
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004037 if (MAYBE_ASSIGNMENT != 0)
4038 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004039 initialize_context(&ctx);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004040 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004041 while (1) {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004042 const char *is_blank;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004043 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004044 int ch;
4045 int next;
4046 int redir_fd;
4047 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004048
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004049 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004050 debug_printf_parse(": ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004051 ch, ch, !!(dest.o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004052 if (ch == EOF) {
4053 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004054
4055 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004056 syntax_error_unterm_str("here document");
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004057 goto parse_error;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004058 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004059 /* end_trigger == '}' case errors out earlier,
4060 * checking only ')' */
4061 if (end_trigger == ')') {
4062 syntax_error_unterm_ch('('); /* exits */
4063 /* goto parse_error; */
4064 }
4065
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004066 if (done_word(&dest, &ctx)) {
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004067 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004068 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004069 o_free(&dest);
4070 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004071 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004072 /* If we got nothing... */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004073 /* (this makes bare "&" cmd a no-op.
4074 * bash says: "syntax error near unexpected token '&'") */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004075 if (pi->num_cmds == 0
4076 IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
4077 ) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004078 free_pipe_list(pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004079 pi = NULL;
4080 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004081#if !BB_MMU
4082 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
4083 if (pstring)
4084 *pstring = ctx.as_string.data;
4085 else
4086 o_free_unsafe(&ctx.as_string);
4087#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004088 debug_leave();
4089 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004090 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004091 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004092 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004093
4094 next = '\0';
4095 if (ch != '\n')
4096 next = i_peek(input);
4097
4098 is_special = "{}<>;&|()#'" /* special outside of "str" */
4099 "\\$\"" IF_HUSH_TICK("`"); /* always special */
4100 /* Are { and } special here? */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02004101 if (ctx.command->argv /* word [word]{... - non-special */
4102 || dest.length /* word{... - non-special */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004103 || dest.has_quoted_part /* ""{... - non-special */
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004104 || (next != ';' /* }; - special */
4105 && next != ')' /* }) - special */
4106 && next != '&' /* }& and }&& ... - special */
4107 && next != '|' /* }|| ... - special */
4108 && !strchr(defifs, next) /* {word - non-special */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02004109 )
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004110 ) {
4111 /* They are not special, skip "{}" */
4112 is_special += 2;
4113 }
4114 is_special = strchr(is_special, ch);
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004115 is_blank = strchr(defifs, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004116
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004117 if (!is_special && !is_blank) { /* ordinary char */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00004118 ordinary_char:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004119 o_addQchr(&dest, ch);
4120 if ((dest.o_assignment == MAYBE_ASSIGNMENT
4121 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00004122 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004123 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00004124 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004125 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004126 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004127 continue;
4128 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004129
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004130 if (is_blank) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004131 if (done_word(&dest, &ctx)) {
4132 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00004133 }
Denis Vlasenko37181682009-04-03 03:19:15 +00004134 if (ch == '\n') {
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004135 /* Is this a case when newline is simply ignored?
4136 * Some examples:
4137 * "cmd | <newline> cmd ..."
4138 * "case ... in <newline> word) ..."
4139 */
4140 if (IS_NULL_CMD(ctx.command)
4141 && dest.length == 0 && !dest.has_quoted_part
Denis Vlasenkof1736072008-07-31 10:09:26 +00004142 ) {
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004143 /* This newline can be ignored. But...
4144 * without the below check, interactive shell
4145 * will ignore even lines with bare <newline>,
4146 * and show the continuation prompt:
4147 * ps1_prompt$ <enter>
4148 * ps2> _ <=== wrong prompt, should be ps1
4149 */
4150 struct pipe *pi = ctx.list_head;
4151 if (pi->num_cmds != 0)
4152 continue;
Denis Vlasenkof1736072008-07-31 10:09:26 +00004153 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004154 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004155 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004156 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
4157 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004158 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004159 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004160 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004161 heredoc_cnt = 0;
4162 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004163 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004164 ch = ';';
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004165 /* note: if (is_blank) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004166 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004167 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004168 }
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00004169
4170 /* "cmd}" or "cmd }..." without semicolon or &:
4171 * } is an ordinary char in this case, even inside { cmd; }
4172 * Pathological example: { ""}; } should exec "}" cmd
4173 */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004174 if (ch == '}') {
4175 if (!IS_NULL_CMD(ctx.command) /* cmd } */
4176 || dest.length != 0 /* word} */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004177 || dest.has_quoted_part /* ""} */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004178 ) {
4179 goto ordinary_char;
4180 }
4181 if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */
4182 goto skip_end_trigger;
4183 /* else: } does terminate a group */
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00004184 }
4185
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004186 if (end_trigger && end_trigger == ch
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004187 && (ch != ';' || heredoc_cnt == 0)
4188#if ENABLE_HUSH_CASE
4189 && (ch != ')'
4190 || ctx.ctx_res_w != RES_MATCH
Denys Vlasenko38292b62010-09-05 14:49:40 +02004191 || (!dest.has_quoted_part && strcmp(dest.data, "esac") == 0)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004192 )
4193#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004194 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004195 if (heredoc_cnt) {
4196 /* This is technically valid:
4197 * { cat <<HERE; }; echo Ok
4198 * heredoc
4199 * heredoc
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004200 * HERE
4201 * but we don't support this.
4202 * We require heredoc to be in enclosing {}/(),
4203 * if any.
4204 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004205 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004206 goto parse_error;
4207 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004208 if (done_word(&dest, &ctx)) {
4209 goto parse_error;
4210 }
4211 done_pipe(&ctx, PIPE_SEQ);
4212 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004213 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00004214 if (!HAS_KEYWORDS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004215 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00004216 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004217 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004218#if !BB_MMU
4219 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
4220 if (pstring)
4221 *pstring = ctx.as_string.data;
4222 else
4223 o_free_unsafe(&ctx.as_string);
4224#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004225 debug_leave();
4226 debug_printf_parse("parse_stream return %p: "
4227 "end_trigger char found\n",
4228 ctx.list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004229 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004230 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004231 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004232 skip_end_trigger:
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004233 if (is_blank)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004234 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004235
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004236 /* Catch <, > before deciding whether this word is
4237 * an assignment. a=1 2>z b=2: b=2 is still assignment */
4238 switch (ch) {
4239 case '>':
4240 redir_fd = redirect_opt_num(&dest);
4241 if (done_word(&dest, &ctx)) {
4242 goto parse_error;
4243 }
4244 redir_style = REDIRECT_OVERWRITE;
4245 if (next == '>') {
4246 redir_style = REDIRECT_APPEND;
4247 ch = i_getch(input);
4248 nommu_addchr(&ctx.as_string, ch);
4249 }
4250#if 0
4251 else if (next == '(') {
4252 syntax_error(">(process) not supported");
4253 goto parse_error;
4254 }
4255#endif
4256 if (parse_redirect(&ctx, redir_fd, redir_style, input))
4257 goto parse_error;
4258 continue; /* back to top of while (1) */
4259 case '<':
4260 redir_fd = redirect_opt_num(&dest);
4261 if (done_word(&dest, &ctx)) {
4262 goto parse_error;
4263 }
4264 redir_style = REDIRECT_INPUT;
4265 if (next == '<') {
4266 redir_style = REDIRECT_HEREDOC;
4267 heredoc_cnt++;
4268 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
4269 ch = i_getch(input);
4270 nommu_addchr(&ctx.as_string, ch);
4271 } else if (next == '>') {
4272 redir_style = REDIRECT_IO;
4273 ch = i_getch(input);
4274 nommu_addchr(&ctx.as_string, ch);
4275 }
4276#if 0
4277 else if (next == '(') {
4278 syntax_error("<(process) not supported");
4279 goto parse_error;
4280 }
4281#endif
4282 if (parse_redirect(&ctx, redir_fd, redir_style, input))
4283 goto parse_error;
4284 continue; /* back to top of while (1) */
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004285 case '#':
4286 if (dest.length == 0 && !dest.has_quoted_part) {
4287 /* skip "#comment" */
4288 while (1) {
4289 ch = i_peek(input);
4290 if (ch == EOF || ch == '\n')
4291 break;
4292 i_getch(input);
4293 /* note: we do not add it to &ctx.as_string */
4294 }
4295 nommu_addchr(&ctx.as_string, '\n');
4296 continue; /* back to top of while (1) */
4297 }
4298 break;
4299 case '\\':
4300 if (next == '\n') {
4301 /* It's "\<newline>" */
4302#if !BB_MMU
4303 /* Remove trailing '\' from ctx.as_string */
4304 ctx.as_string.data[--ctx.as_string.length] = '\0';
4305#endif
4306 ch = i_getch(input); /* eat it */
4307 continue; /* back to top of while (1) */
4308 }
4309 break;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004310 }
4311
4312 if (dest.o_assignment == MAYBE_ASSIGNMENT
4313 /* check that we are not in word in "a=1 2>word b=1": */
4314 && !ctx.pending_redirect
4315 ) {
4316 /* ch is a special char and thus this word
4317 * cannot be an assignment */
4318 dest.o_assignment = NOT_ASSIGNMENT;
4319 }
4320
Denys Vlasenkocbfe6ad2009-08-12 19:47:44 +02004321 /* Note: nommu_addchr(&ctx.as_string, ch) is already done */
4322
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004323 switch (ch) {
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004324 case '#': /* non-comment #: "echo a#b" etc */
4325 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004326 break;
4327 case '\\':
4328 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004329 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004330 xfunc_die();
Eric Andersen25f27032001-04-26 23:22:31 +00004331 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004332 ch = i_getch(input);
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004333 /* note: ch != '\n' (that case does not reach this place) */
4334 o_addchr(&dest, '\\');
4335 /*nommu_addchr(&ctx.as_string, '\\'); - already done */
4336 o_addchr(&dest, ch);
4337 nommu_addchr(&ctx.as_string, ch);
4338 /* Example: echo Hello \2>file
4339 * we need to know that word 2 is quoted */
4340 dest.has_quoted_part = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004341 break;
4342 case '$':
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004343 if (parse_dollar(&ctx.as_string, &dest, input, /*quote_mask:*/ 0) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004344 debug_printf_parse("parse_stream parse error: "
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004345 "parse_dollar returned non-0\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004346 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004347 }
Eric Andersen25f27032001-04-26 23:22:31 +00004348 break;
4349 case '\'':
Denys Vlasenko38292b62010-09-05 14:49:40 +02004350 dest.has_quoted_part = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004351 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004352 ch = i_getch(input);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004353 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004354 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004355 /*xfunc_die(); - redundant */
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004356 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004357 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004358 if (ch == '\'')
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004359 break;
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02004360 o_addqchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004361 }
Eric Andersen25f27032001-04-26 23:22:31 +00004362 break;
4363 case '"':
Denys Vlasenko38292b62010-09-05 14:49:40 +02004364 dest.has_quoted_part = 1;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004365 if (dest.o_assignment == NOT_ASSIGNMENT)
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004366 dest.o_expflags |= EXP_FLAG_ESC_GLOB_CHARS;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004367 if (encode_string(&ctx.as_string, &dest, input, '"', /*process_bkslash:*/ 1))
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004368 goto parse_error;
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004369 dest.o_expflags &= ~EXP_FLAG_ESC_GLOB_CHARS;
Eric Andersen25f27032001-04-26 23:22:31 +00004370 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004371#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004372 case '`': {
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004373 unsigned pos;
4374
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004375 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4376 o_addchr(&dest, '`');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004377 pos = dest.length;
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02004378 add_till_backquote(&dest, input, /*in_dquote:*/ 0);
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004379# if !BB_MMU
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004380 o_addstr(&ctx.as_string, dest.data + pos);
4381 o_addchr(&ctx.as_string, '`');
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004382# endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004383 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4384 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00004385 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004386 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004387#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004388 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004389#if ENABLE_HUSH_CASE
4390 case_semi:
4391#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004392 if (done_word(&dest, &ctx)) {
4393 goto parse_error;
4394 }
4395 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004396#if ENABLE_HUSH_CASE
4397 /* Eat multiple semicolons, detect
4398 * whether it means something special */
4399 while (1) {
4400 ch = i_peek(input);
4401 if (ch != ';')
4402 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004403 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004404 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004405 if (ctx.ctx_res_w == RES_CASE_BODY) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004406 ctx.ctx_dsemicolon = 1;
4407 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004408 break;
4409 }
4410 }
4411#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004412 new_cmd:
4413 /* We just finished a cmd. New one may start
4414 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004415 dest.o_assignment = MAYBE_ASSIGNMENT;
Eric Andersen25f27032001-04-26 23:22:31 +00004416 break;
4417 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004418 if (done_word(&dest, &ctx)) {
4419 goto parse_error;
4420 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004421 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004422 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004423 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004424 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00004425 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004426 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00004427 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004428 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004429 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004430 if (done_word(&dest, &ctx)) {
4431 goto parse_error;
4432 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004433#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004434 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00004435 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004436#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004437 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004438 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004439 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004440 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00004441 } else {
4442 /* we could pick up a file descriptor choice here
4443 * with redirect_opt_num(), but bash doesn't do it.
4444 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004445 done_command(&ctx);
Denys Vlasenkob70cef72010-01-12 13:45:45 +01004446#if !BB_MMU
4447 o_reset_to_empty_unquoted(&ctx.as_string);
4448#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004449 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004450 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004451 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004452#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00004453 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004454 if (ctx.ctx_res_w == RES_MATCH
4455 && ctx.command->argv == NULL /* not (word|(... */
4456 && dest.length == 0 /* not word(... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004457 && dest.has_quoted_part == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004458 ) {
4459 continue;
4460 }
4461#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004462 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004463 if (parse_group(&dest, &ctx, input, ch) != 0) {
4464 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004465 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004466 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004467 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004468#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004469 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004470 goto case_semi;
4471#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004472 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004473 /* proper use of this character is caught by end_trigger:
4474 * if we see {, we call parse_group(..., end_trigger='}')
4475 * and it will match } earlier (not here). */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004476 syntax_error_unexpected_ch(ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004477 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00004478 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004479 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004480 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004481 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004482 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004483
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004484 parse_error:
4485 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004486 struct parse_context *pctx;
4487 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004488
4489 /* Clean up allocated tree.
Denys Vlasenko764b2f02009-06-07 16:05:04 +02004490 * Sample for finding leaks on syntax error recovery path.
4491 * Run it from interactive shell, watch pmap `pidof hush`.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004492 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00004493 * Samples to catch leaks at execution:
4494 * while if (true | {true;}); then echo ok; fi; do break; done
4495 * 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 +00004496 */
4497 pctx = &ctx;
4498 do {
4499 /* Update pipe/command counts,
4500 * otherwise freeing may miss some */
4501 done_pipe(pctx, PIPE_SEQ);
4502 debug_printf_clean("freeing list %p from ctx %p\n",
4503 pctx->list_head, pctx);
4504 debug_print_tree(pctx->list_head, 0);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004505 free_pipe_list(pctx->list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004506 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004507#if !BB_MMU
4508 o_free_unsafe(&pctx->as_string);
4509#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004510 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004511 if (pctx != &ctx) {
4512 free(pctx);
4513 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004514 IF_HAS_KEYWORDS(pctx = p2;)
4515 } while (HAS_KEYWORDS && pctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004516 /* Free text, clear all dest fields */
4517 o_free(&dest);
4518 /* If we are not in top-level parse, we return,
4519 * our caller will propagate error.
4520 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004521 if (end_trigger != ';') {
4522#if !BB_MMU
4523 if (pstring)
4524 *pstring = NULL;
4525#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004526 debug_leave();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004527 return ERR_PTR;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004528 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004529 /* Discard cached input, force prompt */
4530 input->p = NULL;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00004531 IF_HUSH_INTERACTIVE(input->promptme = 1;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004532 goto reset;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004533 }
Eric Andersen25f27032001-04-26 23:22:31 +00004534}
4535
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004536
4537/*** Execution routines ***/
4538
4539/* Expansion can recurse, need forward decls: */
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004540#if !ENABLE_HUSH_BASH_COMPAT
4541/* only ${var/pattern/repl} (its pattern part) needs additional mode */
4542#define expand_string_to_string(str, do_unbackslash) \
4543 expand_string_to_string(str)
4544#endif
Denys Vlasenkoebee4102010-09-10 10:17:53 +02004545static char *expand_string_to_string(const char *str, int do_unbackslash);
Denys Vlasenko26777aa2010-11-22 23:49:10 +01004546#if ENABLE_HUSH_TICK
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004547static int process_command_subs(o_string *dest, const char *s);
Denys Vlasenko26777aa2010-11-22 23:49:10 +01004548#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004549
4550/* expand_strvec_to_strvec() takes a list of strings, expands
4551 * all variable references within and returns a pointer to
4552 * a list of expanded strings, possibly with larger number
4553 * of strings. (Think VAR="a b"; echo $VAR).
4554 * This new list is allocated as a single malloc block.
4555 * NULL-terminated list of char* pointers is at the beginning of it,
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004556 * followed by strings themselves.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004557 * Caller can deallocate entire list by single free(list). */
4558
Denys Vlasenko238081f2010-10-03 14:26:26 +02004559/* A horde of its helpers come first: */
4560
4561static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
4562{
4563 while (--len >= 0) {
Denys Vlasenko9e800222010-10-03 14:28:04 +02004564 char c = *str++;
Denys Vlasenko957f79f2010-10-03 17:15:50 +02004565
Denys Vlasenko9e800222010-10-03 14:28:04 +02004566#if ENABLE_HUSH_BRACE_EXPANSION
4567 if (c == '{' || c == '}') {
4568 /* { -> \{, } -> \} */
4569 o_addchr(o, '\\');
Denys Vlasenko957f79f2010-10-03 17:15:50 +02004570 /* And now we want to add { or } and continue:
4571 * o_addchr(o, c);
4572 * continue;
4573 * luckily, just falling throught achieves this.
4574 */
Denys Vlasenko9e800222010-10-03 14:28:04 +02004575 }
4576#endif
4577 o_addchr(o, c);
4578 if (c == '\\') {
Denys Vlasenko238081f2010-10-03 14:26:26 +02004579 /* \z -> \\\z; \<eol> -> \\<eol> */
4580 o_addchr(o, '\\');
4581 if (len) {
4582 len--;
4583 o_addchr(o, '\\');
4584 o_addchr(o, *str++);
4585 }
4586 }
4587 }
4588}
4589
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004590/* Store given string, finalizing the word and starting new one whenever
4591 * we encounter IFS char(s). This is used for expanding variable values.
4592 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
4593static int expand_on_ifs(o_string *output, int n, const char *str)
4594{
4595 while (1) {
4596 int word_len = strcspn(str, G.ifs);
4597 if (word_len) {
Denys Vlasenko238081f2010-10-03 14:26:26 +02004598 if (!(output->o_expflags & EXP_FLAG_GLOB)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004599 o_addblock(output, str, word_len);
Denys Vlasenko238081f2010-10-03 14:26:26 +02004600 } else {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004601 /* Protect backslashes against globbing up :)
Denys Vlasenkoa769e022010-09-10 10:12:34 +02004602 * Example: "v='\*'; echo b$v" prints "b\*"
4603 * (and does not try to glob on "*")
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004604 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004605 o_addblock_duplicate_backslash(output, str, word_len);
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004606 /*/ Why can't we do it easier? */
4607 /*o_addblock(output, str, word_len); - WRONG: "v='\*'; echo Z$v" prints "Z*" instead of "Z\*" */
4608 /*o_addqblock(output, str, word_len); - WRONG: "v='*'; echo Z$v" prints "Z*" instead of Z* files */
4609 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004610 str += word_len;
4611 }
4612 if (!*str) /* EOL - do not finalize word */
4613 break;
4614 o_addchr(output, '\0');
4615 debug_print_list("expand_on_ifs", output, n);
4616 n = o_save_ptr(output, n);
4617 str += strspn(str, G.ifs); /* skip ifs chars */
4618 }
4619 debug_print_list("expand_on_ifs[1]", output, n);
4620 return n;
4621}
4622
4623/* Helper to expand $((...)) and heredoc body. These act as if
4624 * they are in double quotes, with the exception that they are not :).
4625 * Just the rules are similar: "expand only $var and `cmd`"
4626 *
4627 * Returns malloced string.
4628 * As an optimization, we return NULL if expansion is not needed.
4629 */
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004630#if !ENABLE_HUSH_BASH_COMPAT
4631/* only ${var/pattern/repl} (its pattern part) needs additional mode */
4632#define encode_then_expand_string(str, process_bkslash, do_unbackslash) \
4633 encode_then_expand_string(str)
4634#endif
4635static char *encode_then_expand_string(const char *str, int process_bkslash, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004636{
4637 char *exp_str;
4638 struct in_str input;
4639 o_string dest = NULL_O_STRING;
4640
4641 if (!strchr(str, '$')
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02004642 && !strchr(str, '\\')
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004643#if ENABLE_HUSH_TICK
4644 && !strchr(str, '`')
4645#endif
4646 ) {
4647 return NULL;
4648 }
4649
4650 /* We need to expand. Example:
4651 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
4652 */
4653 setup_string_in_str(&input, str);
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004654 encode_string(NULL, &dest, &input, EOF, process_bkslash);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004655 //bb_error_msg("'%s' -> '%s'", str, dest.data);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02004656 exp_str = expand_string_to_string(dest.data, /*unbackslash:*/ do_unbackslash);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004657 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
4658 o_free_unsafe(&dest);
4659 return exp_str;
4660}
4661
4662#if ENABLE_SH_MATH_SUPPORT
Denys Vlasenko063847d2010-09-15 13:33:02 +02004663static arith_t expand_and_evaluate_arith(const char *arg, const char **errmsg_p)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004664{
Denys Vlasenko06d44d72010-09-13 12:49:03 +02004665 arith_state_t math_state;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004666 arith_t res;
4667 char *exp_str;
4668
Denys Vlasenko06d44d72010-09-13 12:49:03 +02004669 math_state.lookupvar = get_local_var_value;
4670 math_state.setvar = set_local_var_from_halves;
4671 //math_state.endofname = endofname;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004672 exp_str = encode_then_expand_string(arg, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenko06d44d72010-09-13 12:49:03 +02004673 res = arith(&math_state, exp_str ? exp_str : arg);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004674 free(exp_str);
Denys Vlasenko063847d2010-09-15 13:33:02 +02004675 if (errmsg_p)
4676 *errmsg_p = math_state.errmsg;
4677 if (math_state.errmsg)
4678 die_if_script(math_state.errmsg);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004679 return res;
4680}
4681#endif
4682
4683#if ENABLE_HUSH_BASH_COMPAT
4684/* ${var/[/]pattern[/repl]} helpers */
4685static char *strstr_pattern(char *val, const char *pattern, int *size)
4686{
4687 while (1) {
4688 char *end = scan_and_match(val, pattern, SCAN_MOVE_FROM_RIGHT + SCAN_MATCH_LEFT_HALF);
4689 debug_printf_varexp("val:'%s' pattern:'%s' end:'%s'\n", val, pattern, end);
4690 if (end) {
4691 *size = end - val;
4692 return val;
4693 }
4694 if (*val == '\0')
4695 return NULL;
4696 /* Optimization: if "*pat" did not match the start of "string",
4697 * we know that "tring", "ring" etc will not match too:
4698 */
4699 if (pattern[0] == '*')
4700 return NULL;
4701 val++;
4702 }
4703}
4704static char *replace_pattern(char *val, const char *pattern, const char *repl, char exp_op)
4705{
4706 char *result = NULL;
4707 unsigned res_len = 0;
4708 unsigned repl_len = strlen(repl);
4709
4710 while (1) {
4711 int size;
4712 char *s = strstr_pattern(val, pattern, &size);
4713 if (!s)
4714 break;
4715
4716 result = xrealloc(result, res_len + (s - val) + repl_len + 1);
4717 memcpy(result + res_len, val, s - val);
4718 res_len += s - val;
4719 strcpy(result + res_len, repl);
4720 res_len += repl_len;
4721 debug_printf_varexp("val:'%s' s:'%s' result:'%s'\n", val, s, result);
4722
4723 val = s + size;
4724 if (exp_op == '/')
4725 break;
4726 }
4727 if (val[0] && result) {
4728 result = xrealloc(result, res_len + strlen(val) + 1);
4729 strcpy(result + res_len, val);
4730 debug_printf_varexp("val:'%s' result:'%s'\n", val, result);
4731 }
4732 debug_printf_varexp("result:'%s'\n", result);
4733 return result;
4734}
4735#endif
4736
4737/* Helper:
4738 * Handles <SPECIAL_VAR_SYMBOL>varname...<SPECIAL_VAR_SYMBOL> construct.
4739 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02004740static NOINLINE const char *expand_one_var(char **to_be_freed_pp, char *arg, char **pp)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004741{
4742 const char *val = NULL;
4743 char *to_be_freed = NULL;
4744 char *p = *pp;
4745 char *var;
4746 char first_char;
4747 char exp_op;
4748 char exp_save = exp_save; /* for compiler */
4749 char *exp_saveptr; /* points to expansion operator */
4750 char *exp_word = exp_word; /* for compiler */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02004751 char arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004752
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004753 *p = '\0'; /* replace trailing SPECIAL_VAR_SYMBOL */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004754 var = arg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004755 exp_saveptr = arg[1] ? strchr(VAR_ENCODED_SUBST_OPS, arg[1]) : NULL;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02004756 arg0 = arg[0];
4757 first_char = arg[0] = arg0 & 0x7f;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004758 exp_op = 0;
4759
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004760 if (first_char == '#' /* ${#... */
4761 && arg[1] && !exp_saveptr /* not ${#} and not ${#<op_char>...} */
4762 ) {
4763 /* It must be length operator: ${#var} */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004764 var++;
4765 exp_op = 'L';
4766 } else {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004767 /* Maybe handle parameter expansion */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004768 if (exp_saveptr /* if 2nd char is one of expansion operators */
4769 && strchr(NUMERIC_SPECVARS_STR, first_char) /* 1st char is special variable */
4770 ) {
4771 /* ${?:0}, ${#[:]%0} etc */
4772 exp_saveptr = var + 1;
4773 } else {
4774 /* ${?}, ${var}, ${var:0}, ${var[:]%0} etc */
4775 exp_saveptr = var+1 + strcspn(var+1, VAR_ENCODED_SUBST_OPS);
4776 }
4777 exp_op = exp_save = *exp_saveptr;
4778 if (exp_op) {
4779 exp_word = exp_saveptr + 1;
4780 if (exp_op == ':') {
4781 exp_op = *exp_word++;
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004782//TODO: try ${var:} and ${var:bogus} in non-bash config
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004783 if (ENABLE_HUSH_BASH_COMPAT
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004784 && (!exp_op || !strchr(MINUS_PLUS_EQUAL_QUESTION, exp_op))
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004785 ) {
4786 /* oops... it's ${var:N[:M]}, not ${var:?xxx} or some such */
4787 exp_op = ':';
4788 exp_word--;
4789 }
4790 }
4791 *exp_saveptr = '\0';
4792 } /* else: it's not an expansion op, but bare ${var} */
4793 }
4794
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004795 /* Look up the variable in question */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004796 if (isdigit(var[0])) {
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004797 /* parse_dollar should have vetted var for us */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004798 int n = xatoi_positive(var);
4799 if (n < G.global_argc)
4800 val = G.global_argv[n];
4801 /* else val remains NULL: $N with too big N */
4802 } else {
4803 switch (var[0]) {
4804 case '$': /* pid */
4805 val = utoa(G.root_pid);
4806 break;
4807 case '!': /* bg pid */
4808 val = G.last_bg_pid ? utoa(G.last_bg_pid) : "";
4809 break;
4810 case '?': /* exitcode */
4811 val = utoa(G.last_exitcode);
4812 break;
4813 case '#': /* argc */
4814 val = utoa(G.global_argc ? G.global_argc-1 : 0);
4815 break;
4816 default:
4817 val = get_local_var_value(var);
4818 }
4819 }
4820
4821 /* Handle any expansions */
4822 if (exp_op == 'L') {
4823 debug_printf_expand("expand: length(%s)=", val);
4824 val = utoa(val ? strlen(val) : 0);
4825 debug_printf_expand("%s\n", val);
4826 } else if (exp_op) {
4827 if (exp_op == '%' || exp_op == '#') {
4828 /* Standard-mandated substring removal ops:
4829 * ${parameter%word} - remove smallest suffix pattern
4830 * ${parameter%%word} - remove largest suffix pattern
4831 * ${parameter#word} - remove smallest prefix pattern
4832 * ${parameter##word} - remove largest prefix pattern
4833 *
4834 * Word is expanded to produce a glob pattern.
4835 * Then var's value is matched to it and matching part removed.
4836 */
4837 if (val && val[0]) {
Denys Vlasenko4f870492010-09-10 11:06:01 +02004838 char *t;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004839 char *exp_exp_word;
4840 char *loc;
4841 unsigned scan_flags = pick_scan(exp_op, *exp_word);
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02004842 if (exp_op == *exp_word) /* ## or %% */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004843 exp_word++;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004844 exp_exp_word = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004845 if (exp_exp_word)
4846 exp_word = exp_exp_word;
Denys Vlasenko4f870492010-09-10 11:06:01 +02004847 /* HACK ALERT. We depend here on the fact that
4848 * G.global_argv and results of utoa and get_local_var_value
4849 * are actually in writable memory:
4850 * scan_and_match momentarily stores NULs there. */
4851 t = (char*)val;
4852 loc = scan_and_match(t, exp_word, scan_flags);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004853 //bb_error_msg("op:%c str:'%s' pat:'%s' res:'%s'",
Denys Vlasenko4f870492010-09-10 11:06:01 +02004854 // exp_op, t, exp_word, loc);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004855 free(exp_exp_word);
4856 if (loc) { /* match was found */
4857 if (scan_flags & SCAN_MATCH_LEFT_HALF) /* #[#] */
Denys Vlasenko4f870492010-09-10 11:06:01 +02004858 val = loc; /* take right part */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004859 else /* %[%] */
Denys Vlasenko4f870492010-09-10 11:06:01 +02004860 val = to_be_freed = xstrndup(val, loc - val); /* left */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004861 }
4862 }
4863 }
4864#if ENABLE_HUSH_BASH_COMPAT
4865 else if (exp_op == '/' || exp_op == '\\') {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004866 /* It's ${var/[/]pattern[/repl]} thing.
4867 * Note that in encoded form it has TWO parts:
4868 * var/pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
Denys Vlasenko4f870492010-09-10 11:06:01 +02004869 * and if // is used, it is encoded as \:
4870 * var\pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004871 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004872 /* Empty variable always gives nothing: */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004873 // "v=''; echo ${v/*/w}" prints "", not "w"
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004874 if (val && val[0]) {
Denys Vlasenko4f870492010-09-10 11:06:01 +02004875 /* pattern uses non-standard expansion.
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004876 * repl should be unbackslashed and globbed
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004877 * by the usual expansion rules:
4878 * >az; >bz;
4879 * v='a bz'; echo "${v/a*z/a*z}" prints "a*z"
4880 * v='a bz'; echo "${v/a*z/\z}" prints "\z"
4881 * v='a bz'; echo ${v/a*z/a*z} prints "az"
4882 * v='a bz'; echo ${v/a*z/\z} prints "z"
4883 * (note that a*z _pattern_ is never globbed!)
4884 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004885 char *pattern, *repl, *t;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004886 pattern = encode_then_expand_string(exp_word, /*process_bkslash:*/ 0, /*unbackslash:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004887 if (!pattern)
4888 pattern = xstrdup(exp_word);
4889 debug_printf_varexp("pattern:'%s'->'%s'\n", exp_word, pattern);
4890 *p++ = SPECIAL_VAR_SYMBOL;
4891 exp_word = p;
4892 p = strchr(p, SPECIAL_VAR_SYMBOL);
4893 *p = '\0';
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004894 repl = encode_then_expand_string(exp_word, /*process_bkslash:*/ arg0 & 0x80, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004895 debug_printf_varexp("repl:'%s'->'%s'\n", exp_word, repl);
4896 /* HACK ALERT. We depend here on the fact that
4897 * G.global_argv and results of utoa and get_local_var_value
4898 * are actually in writable memory:
4899 * replace_pattern momentarily stores NULs there. */
4900 t = (char*)val;
4901 to_be_freed = replace_pattern(t,
4902 pattern,
4903 (repl ? repl : exp_word),
4904 exp_op);
4905 if (to_be_freed) /* at least one replace happened */
4906 val = to_be_freed;
4907 free(pattern);
4908 free(repl);
4909 }
4910 }
4911#endif
4912 else if (exp_op == ':') {
4913#if ENABLE_HUSH_BASH_COMPAT && ENABLE_SH_MATH_SUPPORT
4914 /* It's ${var:N[:M]} bashism.
4915 * Note that in encoded form it has TWO parts:
4916 * var:N<SPECIAL_VAR_SYMBOL>M<SPECIAL_VAR_SYMBOL>
4917 */
4918 arith_t beg, len;
Denys Vlasenko063847d2010-09-15 13:33:02 +02004919 const char *errmsg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004920
Denys Vlasenko063847d2010-09-15 13:33:02 +02004921 beg = expand_and_evaluate_arith(exp_word, &errmsg);
4922 if (errmsg)
4923 goto arith_err;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004924 debug_printf_varexp("beg:'%s'=%lld\n", exp_word, (long long)beg);
4925 *p++ = SPECIAL_VAR_SYMBOL;
4926 exp_word = p;
4927 p = strchr(p, SPECIAL_VAR_SYMBOL);
4928 *p = '\0';
Denys Vlasenko063847d2010-09-15 13:33:02 +02004929 len = expand_and_evaluate_arith(exp_word, &errmsg);
4930 if (errmsg)
4931 goto arith_err;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004932 debug_printf_varexp("len:'%s'=%lld\n", exp_word, (long long)len);
Denys Vlasenko063847d2010-09-15 13:33:02 +02004933 if (len >= 0) { /* bash compat: len < 0 is illegal */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004934 if (beg < 0) /* bash compat */
4935 beg = 0;
4936 debug_printf_varexp("from val:'%s'\n", val);
Denys Vlasenkob771c652010-09-13 00:34:26 +02004937 if (len == 0 || !val || beg >= strlen(val)) {
Denys Vlasenko063847d2010-09-15 13:33:02 +02004938 arith_err:
Denys Vlasenkob771c652010-09-13 00:34:26 +02004939 val = NULL;
4940 } else {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004941 /* Paranoia. What if user entered 9999999999999
4942 * which fits in arith_t but not int? */
4943 if (len >= INT_MAX)
4944 len = INT_MAX;
4945 val = to_be_freed = xstrndup(val + beg, len);
4946 }
4947 debug_printf_varexp("val:'%s'\n", val);
4948 } else
4949#endif
4950 {
4951 die_if_script("malformed ${%s:...}", var);
Denys Vlasenkob771c652010-09-13 00:34:26 +02004952 val = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004953 }
4954 } else { /* one of "-=+?" */
4955 /* Standard-mandated substitution ops:
4956 * ${var?word} - indicate error if unset
4957 * If var is unset, word (or a message indicating it is unset
4958 * if word is null) is written to standard error
4959 * and the shell exits with a non-zero exit status.
4960 * Otherwise, the value of var is substituted.
4961 * ${var-word} - use default value
4962 * If var is unset, word is substituted.
4963 * ${var=word} - assign and use default value
4964 * If var is unset, word is assigned to var.
4965 * In all cases, final value of var is substituted.
4966 * ${var+word} - use alternative value
4967 * If var is unset, null is substituted.
4968 * Otherwise, word is substituted.
4969 *
4970 * Word is subjected to tilde expansion, parameter expansion,
4971 * command substitution, and arithmetic expansion.
4972 * If word is not needed, it is not expanded.
4973 *
4974 * Colon forms (${var:-word}, ${var:=word} etc) do the same,
4975 * but also treat null var as if it is unset.
4976 */
4977 int use_word = (!val || ((exp_save == ':') && !val[0]));
4978 if (exp_op == '+')
4979 use_word = !use_word;
4980 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
4981 (exp_save == ':') ? "true" : "false", use_word);
4982 if (use_word) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004983 to_be_freed = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004984 if (to_be_freed)
4985 exp_word = to_be_freed;
4986 if (exp_op == '?') {
4987 /* mimic bash message */
4988 die_if_script("%s: %s",
4989 var,
4990 exp_word[0] ? exp_word : "parameter null or not set"
4991 );
4992//TODO: how interactive bash aborts expansion mid-command?
4993 } else {
4994 val = exp_word;
4995 }
4996
4997 if (exp_op == '=') {
4998 /* ${var=[word]} or ${var:=[word]} */
4999 if (isdigit(var[0]) || var[0] == '#') {
5000 /* mimic bash message */
5001 die_if_script("$%s: cannot assign in this way", var);
5002 val = NULL;
5003 } else {
5004 char *new_var = xasprintf("%s=%s", var, val);
5005 set_local_var(new_var, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
5006 }
5007 }
5008 }
5009 } /* one of "-=+?" */
5010
5011 *exp_saveptr = exp_save;
5012 } /* if (exp_op) */
5013
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005014 arg[0] = arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005015
5016 *pp = p;
5017 *to_be_freed_pp = to_be_freed;
5018 return val;
5019}
5020
5021/* Expand all variable references in given string, adding words to list[]
5022 * at n, n+1,... positions. Return updated n (so that list[n] is next one
5023 * to be filled). This routine is extremely tricky: has to deal with
5024 * variables/parameters with whitespace, $* and $@, and constructs like
5025 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005026static NOINLINE int expand_vars_to_list(o_string *output, int n, char *arg)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005027{
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005028 /* output->o_expflags & EXP_FLAG_SINGLEWORD (0x80) if we are in
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005029 * expansion of right-hand side of assignment == 1-element expand.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005030 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005031 char cant_be_null = 0; /* only bit 0x80 matters */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005032 char *p;
5033
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005034 debug_printf_expand("expand_vars_to_list: arg:'%s' singleword:%x\n", arg,
5035 !!(output->o_expflags & EXP_FLAG_SINGLEWORD));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005036 debug_print_list("expand_vars_to_list", output, n);
5037 n = o_save_ptr(output, n);
5038 debug_print_list("expand_vars_to_list[0]", output, n);
5039
5040 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
5041 char first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005042 char *to_be_freed = NULL;
5043 const char *val = NULL;
5044#if ENABLE_HUSH_TICK
5045 o_string subst_result = NULL_O_STRING;
5046#endif
5047#if ENABLE_SH_MATH_SUPPORT
5048 char arith_buf[sizeof(arith_t)*3 + 2];
5049#endif
5050 o_addblock(output, arg, p - arg);
5051 debug_print_list("expand_vars_to_list[1]", output, n);
5052 arg = ++p;
5053 p = strchr(p, SPECIAL_VAR_SYMBOL);
5054
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005055 /* Fetch special var name (if it is indeed one of them)
5056 * and quote bit, force the bit on if singleword expansion -
5057 * important for not getting v=$@ expand to many words. */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005058 first_ch = arg[0] | (output->o_expflags & EXP_FLAG_SINGLEWORD);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005059
5060 /* Is this variable quoted and thus expansion can't be null?
5061 * "$@" is special. Even if quoted, it can still
5062 * expand to nothing (not even an empty string),
5063 * thus it is excluded. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005064 if ((first_ch & 0x7f) != '@')
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005065 cant_be_null |= first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005066
5067 switch (first_ch & 0x7f) {
5068 /* Highest bit in first_ch indicates that var is double-quoted */
5069 case '*':
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005070 case '@': {
5071 int i;
5072 if (!G.global_argv[1])
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005073 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005074 i = 1;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005075 cant_be_null |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005076 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005077 while (G.global_argv[i]) {
5078 n = expand_on_ifs(output, n, G.global_argv[i]);
5079 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
5080 if (G.global_argv[i++][0] && G.global_argv[i]) {
5081 /* this argv[] is not empty and not last:
5082 * put terminating NUL, start new word */
5083 o_addchr(output, '\0');
5084 debug_print_list("expand_vars_to_list[2]", output, n);
5085 n = o_save_ptr(output, n);
5086 debug_print_list("expand_vars_to_list[3]", output, n);
5087 }
5088 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005089 } else
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005090 /* If EXP_FLAG_SINGLEWORD, we handle assignment 'a=....$@.....'
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005091 * and in this case should treat it like '$*' - see 'else...' below */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005092 if (first_ch == ('@'|0x80) /* quoted $@ */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005093 && !(output->o_expflags & EXP_FLAG_SINGLEWORD) /* not v="$@" case */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005094 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005095 while (1) {
5096 o_addQstr(output, G.global_argv[i]);
5097 if (++i >= G.global_argc)
5098 break;
5099 o_addchr(output, '\0');
5100 debug_print_list("expand_vars_to_list[4]", output, n);
5101 n = o_save_ptr(output, n);
5102 }
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005103 } else { /* quoted $* (or v="$@" case): add as one word */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005104 while (1) {
5105 o_addQstr(output, G.global_argv[i]);
5106 if (!G.global_argv[++i])
5107 break;
5108 if (G.ifs[0])
5109 o_addchr(output, G.ifs[0]);
5110 }
5111 }
5112 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005113 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005114 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
5115 /* "Empty variable", used to make "" etc to not disappear */
5116 arg++;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005117 cant_be_null = 0x80;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005118 break;
5119#if ENABLE_HUSH_TICK
5120 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005121 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005122 arg++;
5123 /* Can't just stuff it into output o_string,
5124 * expanded result may need to be globbed
5125 * and $IFS-splitted */
5126 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
5127 G.last_exitcode = process_command_subs(&subst_result, arg);
5128 debug_printf_subst("SUBST RES:%d '%s'\n", G.last_exitcode, subst_result.data);
5129 val = subst_result.data;
5130 goto store_val;
5131#endif
5132#if ENABLE_SH_MATH_SUPPORT
5133 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
5134 arith_t res;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005135
5136 arg++; /* skip '+' */
5137 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
5138 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005139 res = expand_and_evaluate_arith(arg, NULL);
Denys Vlasenkobed7c812010-09-16 11:50:46 +02005140 debug_printf_subst("ARITH RES '"ARITH_FMT"'\n", res);
5141 sprintf(arith_buf, ARITH_FMT, res);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005142 val = arith_buf;
5143 break;
5144 }
5145#endif
5146 default:
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005147 val = expand_one_var(&to_be_freed, arg, &p);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005148 IF_HUSH_TICK(store_val:)
5149 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005150 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val,
5151 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005152 if (val && val[0]) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005153 n = expand_on_ifs(output, n, val);
5154 val = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005155 }
5156 } else { /* quoted $VAR, val will be appended below */
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005157 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val,
5158 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005159 }
5160 break;
5161
5162 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
5163
5164 if (val && val[0]) {
5165 o_addQstr(output, val);
5166 }
5167 free(to_be_freed);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005168
5169 /* Restore NULL'ed SPECIAL_VAR_SYMBOL.
5170 * Do the check to avoid writing to a const string. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005171 if (*p != SPECIAL_VAR_SYMBOL)
5172 *p = SPECIAL_VAR_SYMBOL;
5173
5174#if ENABLE_HUSH_TICK
5175 o_free(&subst_result);
5176#endif
5177 arg = ++p;
5178 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
5179
5180 if (arg[0]) {
5181 debug_print_list("expand_vars_to_list[a]", output, n);
5182 /* this part is literal, and it was already pre-quoted
5183 * if needed (much earlier), do not use o_addQstr here! */
5184 o_addstr_with_NUL(output, arg);
5185 debug_print_list("expand_vars_to_list[b]", output, n);
5186 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005187 && !(cant_be_null & 0x80) /* and all vars were not quoted. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005188 ) {
5189 n--;
5190 /* allow to reuse list[n] later without re-growth */
5191 output->has_empty_slot = 1;
5192 } else {
5193 o_addchr(output, '\0');
5194 }
5195
5196 return n;
5197}
5198
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005199static char **expand_variables(char **argv, unsigned expflags)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005200{
5201 int n;
5202 char **list;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005203 o_string output = NULL_O_STRING;
5204
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005205 output.o_expflags = expflags;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005206
5207 n = 0;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005208 while (*argv) {
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005209 n = expand_vars_to_list(&output, n, *argv);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005210 argv++;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005211 }
5212 debug_print_list("expand_variables", &output, n);
5213
5214 /* output.data (malloced in one block) gets returned in "list" */
5215 list = o_finalize_list(&output, n);
5216 debug_print_strings("expand_variables[1]", list);
5217 return list;
5218}
5219
5220static char **expand_strvec_to_strvec(char **argv)
5221{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005222 return expand_variables(argv, EXP_FLAG_GLOB | EXP_FLAG_ESC_GLOB_CHARS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005223}
5224
5225#if ENABLE_HUSH_BASH_COMPAT
5226static char **expand_strvec_to_strvec_singleword_noglob(char **argv)
5227{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005228 return expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005229}
5230#endif
5231
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005232/* Used for expansion of right hand of assignments,
5233 * $((...)), heredocs, variable espansion parts.
5234 *
5235 * NB: should NOT do globbing!
5236 * "export v=/bin/c*; env | grep ^v=" outputs "v=/bin/c*"
5237 */
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005238static char *expand_string_to_string(const char *str, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005239{
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005240#if !ENABLE_HUSH_BASH_COMPAT
5241 const int do_unbackslash = 1;
5242#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005243 char *argv[2], **list;
5244
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005245 debug_printf_expand("string_to_string<='%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005246 /* This is generally an optimization, but it also
5247 * handles "", which otherwise trips over !list[0] check below.
5248 * (is this ever happens that we actually get str="" here?)
5249 */
5250 if (!strchr(str, SPECIAL_VAR_SYMBOL) && !strchr(str, '\\')) {
5251 //TODO: Can use on strings with \ too, just unbackslash() them?
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005252 debug_printf_expand("string_to_string(fast)=>'%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005253 return xstrdup(str);
5254 }
5255
5256 argv[0] = (char*)str;
5257 argv[1] = NULL;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005258 list = expand_variables(argv, do_unbackslash
5259 ? EXP_FLAG_ESC_GLOB_CHARS | EXP_FLAG_SINGLEWORD
5260 : EXP_FLAG_SINGLEWORD
5261 );
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005262 if (HUSH_DEBUG)
5263 if (!list[0] || list[1])
5264 bb_error_msg_and_die("BUG in varexp2");
5265 /* actually, just move string 2*sizeof(char*) bytes back */
5266 overlapping_strcpy((char*)list, list[0]);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005267 if (do_unbackslash)
5268 unbackslash((char*)list);
5269 debug_printf_expand("string_to_string=>'%s'\n", (char*)list);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005270 return (char*)list;
5271}
5272
5273/* Used for "eval" builtin */
5274static char* expand_strvec_to_string(char **argv)
5275{
5276 char **list;
5277
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005278 list = expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005279 /* Convert all NULs to spaces */
5280 if (list[0]) {
5281 int n = 1;
5282 while (list[n]) {
5283 if (HUSH_DEBUG)
5284 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
5285 bb_error_msg_and_die("BUG in varexp3");
5286 /* bash uses ' ' regardless of $IFS contents */
5287 list[n][-1] = ' ';
5288 n++;
5289 }
5290 }
5291 overlapping_strcpy((char*)list, list[0]);
5292 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
5293 return (char*)list;
5294}
5295
5296static char **expand_assignments(char **argv, int count)
5297{
5298 int i;
5299 char **p;
5300
5301 G.expanded_assignments = p = NULL;
5302 /* Expand assignments into one string each */
5303 for (i = 0; i < count; i++) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005304 G.expanded_assignments = p = add_string_to_strings(p, expand_string_to_string(argv[i], /*unbackslash:*/ 1));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005305 }
5306 G.expanded_assignments = NULL;
5307 return p;
5308}
5309
5310
5311#if BB_MMU
5312/* never called */
5313void re_execute_shell(char ***to_free, const char *s,
5314 char *g_argv0, char **g_argv,
5315 char **builtin_argv) NORETURN;
5316
5317static void reset_traps_to_defaults(void)
5318{
5319 /* This function is always called in a child shell
5320 * after fork (not vfork, NOMMU doesn't use this function).
5321 */
5322 unsigned sig;
5323 unsigned mask;
5324
5325 /* Child shells are not interactive.
5326 * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
5327 * Testcase: (while :; do :; done) + ^Z should background.
5328 * Same goes for SIGTERM, SIGHUP, SIGINT.
5329 */
5330 if (!G.traps && !(G.non_DFL_mask & SPECIAL_INTERACTIVE_SIGS))
5331 return; /* already no traps and no SPECIAL_INTERACTIVE_SIGS */
5332
5333 /* Switching off SPECIAL_INTERACTIVE_SIGS.
5334 * Stupid. It can be done with *single* &= op, but we can't use
5335 * the fact that G.blocked_set is implemented as a bitmask
5336 * in libc... */
5337 mask = (SPECIAL_INTERACTIVE_SIGS >> 1);
5338 sig = 1;
5339 while (1) {
5340 if (mask & 1) {
5341 /* Careful. Only if no trap or trap is not "" */
5342 if (!G.traps || !G.traps[sig] || G.traps[sig][0])
5343 sigdelset(&G.blocked_set, sig);
5344 }
5345 mask >>= 1;
5346 if (!mask)
5347 break;
5348 sig++;
5349 }
5350 /* Our homegrown sig mask is saner to work with :) */
5351 G.non_DFL_mask &= ~SPECIAL_INTERACTIVE_SIGS;
5352
5353 /* Resetting all traps to default except empty ones */
5354 mask = G.non_DFL_mask;
5355 if (G.traps) for (sig = 0; sig < NSIG; sig++, mask >>= 1) {
5356 if (!G.traps[sig] || !G.traps[sig][0])
5357 continue;
5358 free(G.traps[sig]);
5359 G.traps[sig] = NULL;
5360 /* There is no signal for 0 (EXIT) */
5361 if (sig == 0)
5362 continue;
5363 /* There was a trap handler, we just removed it.
5364 * But if sig still has non-DFL handling,
5365 * we should not unblock the sig. */
5366 if (mask & 1)
5367 continue;
5368 sigdelset(&G.blocked_set, sig);
5369 }
5370 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
5371}
5372
5373#else /* !BB_MMU */
5374
5375static void re_execute_shell(char ***to_free, const char *s,
5376 char *g_argv0, char **g_argv,
5377 char **builtin_argv) NORETURN;
5378static void re_execute_shell(char ***to_free, const char *s,
5379 char *g_argv0, char **g_argv,
5380 char **builtin_argv)
5381{
5382# define NOMMU_HACK_FMT ("-$%x:%x:%x:%x:%x:%llx" IF_HUSH_LOOPS(":%x"))
5383 /* delims + 2 * (number of bytes in printed hex numbers) */
5384 char param_buf[sizeof(NOMMU_HACK_FMT) + 2 * (sizeof(int)*6 + sizeof(long long)*1)];
5385 char *heredoc_argv[4];
5386 struct variable *cur;
5387# if ENABLE_HUSH_FUNCTIONS
5388 struct function *funcp;
5389# endif
5390 char **argv, **pp;
5391 unsigned cnt;
5392 unsigned long long empty_trap_mask;
5393
5394 if (!g_argv0) { /* heredoc */
5395 argv = heredoc_argv;
5396 argv[0] = (char *) G.argv0_for_re_execing;
5397 argv[1] = (char *) "-<";
5398 argv[2] = (char *) s;
5399 argv[3] = NULL;
5400 pp = &argv[3]; /* used as pointer to empty environment */
5401 goto do_exec;
5402 }
5403
5404 cnt = 0;
5405 pp = builtin_argv;
5406 if (pp) while (*pp++)
5407 cnt++;
5408
5409 empty_trap_mask = 0;
5410 if (G.traps) {
5411 int sig;
5412 for (sig = 1; sig < NSIG; sig++) {
5413 if (G.traps[sig] && !G.traps[sig][0])
5414 empty_trap_mask |= 1LL << sig;
5415 }
5416 }
5417
5418 sprintf(param_buf, NOMMU_HACK_FMT
5419 , (unsigned) G.root_pid
5420 , (unsigned) G.root_ppid
5421 , (unsigned) G.last_bg_pid
5422 , (unsigned) G.last_exitcode
5423 , cnt
5424 , empty_trap_mask
5425 IF_HUSH_LOOPS(, G.depth_of_loop)
5426 );
5427# undef NOMMU_HACK_FMT
5428 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<etc...> <vars...> <funcs...>
5429 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
5430 */
5431 cnt += 6;
5432 for (cur = G.top_var; cur; cur = cur->next) {
5433 if (!cur->flg_export || cur->flg_read_only)
5434 cnt += 2;
5435 }
5436# if ENABLE_HUSH_FUNCTIONS
5437 for (funcp = G.top_func; funcp; funcp = funcp->next)
5438 cnt += 3;
5439# endif
5440 pp = g_argv;
5441 while (*pp++)
5442 cnt++;
5443 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
5444 *pp++ = (char *) G.argv0_for_re_execing;
5445 *pp++ = param_buf;
5446 for (cur = G.top_var; cur; cur = cur->next) {
5447 if (strcmp(cur->varstr, hush_version_str) == 0)
5448 continue;
5449 if (cur->flg_read_only) {
5450 *pp++ = (char *) "-R";
5451 *pp++ = cur->varstr;
5452 } else if (!cur->flg_export) {
5453 *pp++ = (char *) "-V";
5454 *pp++ = cur->varstr;
5455 }
5456 }
5457# if ENABLE_HUSH_FUNCTIONS
5458 for (funcp = G.top_func; funcp; funcp = funcp->next) {
5459 *pp++ = (char *) "-F";
5460 *pp++ = funcp->name;
5461 *pp++ = funcp->body_as_string;
5462 }
5463# endif
5464 /* We can pass activated traps here. Say, -Tnn:trap_string
5465 *
5466 * However, POSIX says that subshells reset signals with traps
5467 * to SIG_DFL.
5468 * I tested bash-3.2 and it not only does that with true subshells
5469 * of the form ( list ), but with any forked children shells.
5470 * I set trap "echo W" WINCH; and then tried:
5471 *
5472 * { echo 1; sleep 20; echo 2; } &
5473 * while true; do echo 1; sleep 20; echo 2; break; done &
5474 * true | { echo 1; sleep 20; echo 2; } | cat
5475 *
5476 * In all these cases sending SIGWINCH to the child shell
5477 * did not run the trap. If I add trap "echo V" WINCH;
5478 * _inside_ group (just before echo 1), it works.
5479 *
5480 * I conclude it means we don't need to pass active traps here.
5481 * Even if we would use signal handlers instead of signal masking
5482 * in order to implement trap handling,
5483 * exec syscall below resets signals to SIG_DFL for us.
5484 */
5485 *pp++ = (char *) "-c";
5486 *pp++ = (char *) s;
5487 if (builtin_argv) {
5488 while (*++builtin_argv)
5489 *pp++ = *builtin_argv;
5490 *pp++ = (char *) "";
5491 }
5492 *pp++ = g_argv0;
5493 while (*g_argv)
5494 *pp++ = *g_argv++;
5495 /* *pp = NULL; - is already there */
5496 pp = environ;
5497
5498 do_exec:
5499 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
5500 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
5501 execve(bb_busybox_exec_path, argv, pp);
5502 /* Fallback. Useful for init=/bin/hush usage etc */
5503 if (argv[0][0] == '/')
5504 execve(argv[0], argv, pp);
5505 xfunc_error_retval = 127;
5506 bb_error_msg_and_die("can't re-execute the shell");
5507}
5508#endif /* !BB_MMU */
5509
5510
5511static int run_and_free_list(struct pipe *pi);
5512
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005513/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005514 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
5515 * end_trigger controls how often we stop parsing
5516 * NUL: parse all, execute, return
5517 * ';': parse till ';' or newline, execute, repeat till EOF
5518 */
5519static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00005520{
Denys Vlasenko00243b02009-11-16 02:00:03 +01005521 /* Why we need empty flag?
5522 * An obscure corner case "false; ``; echo $?":
5523 * empty command in `` should still set $? to 0.
5524 * But we can't just set $? to 0 at the start,
5525 * this breaks "false; echo `echo $?`" case.
5526 */
5527 bool empty = 1;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005528 while (1) {
5529 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005530
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005531 pipe_list = parse_stream(NULL, inp, end_trigger);
Denys Vlasenko00243b02009-11-16 02:00:03 +01005532 if (!pipe_list) { /* EOF */
5533 if (empty)
5534 G.last_exitcode = 0;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005535 break;
Denys Vlasenko00243b02009-11-16 02:00:03 +01005536 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005537 debug_print_tree(pipe_list, 0);
5538 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
5539 run_and_free_list(pipe_list);
Denys Vlasenko00243b02009-11-16 02:00:03 +01005540 empty = 0;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005541 }
Eric Andersen25f27032001-04-26 23:22:31 +00005542}
5543
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005544static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00005545{
5546 struct in_str input;
5547 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005548 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00005549}
5550
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005551static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00005552{
Eric Andersen25f27032001-04-26 23:22:31 +00005553 struct in_str input;
5554 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005555 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00005556}
5557
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005558#if ENABLE_HUSH_TICK
5559static FILE *generate_stream_from_string(const char *s, pid_t *pid_p)
5560{
5561 pid_t pid;
5562 int channel[2];
5563# if !BB_MMU
5564 char **to_free = NULL;
5565# endif
5566
5567 xpipe(channel);
5568 pid = BB_MMU ? xfork() : xvfork();
5569 if (pid == 0) { /* child */
5570 disable_restore_tty_pgrp_on_exit();
5571 /* Process substitution is not considered to be usual
5572 * 'command execution'.
5573 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
5574 */
5575 bb_signals(0
5576 + (1 << SIGTSTP)
5577 + (1 << SIGTTIN)
5578 + (1 << SIGTTOU)
5579 , SIG_IGN);
5580 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
5581 close(channel[0]); /* NB: close _first_, then move fd! */
5582 xmove_fd(channel[1], 1);
5583 /* Prevent it from trying to handle ctrl-z etc */
5584 IF_HUSH_JOB(G.run_list_level = 1;)
5585 /* Awful hack for `trap` or $(trap).
5586 *
5587 * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html
5588 * contains an example where "trap" is executed in a subshell:
5589 *
5590 * save_traps=$(trap)
5591 * ...
5592 * eval "$save_traps"
5593 *
5594 * Standard does not say that "trap" in subshell shall print
5595 * parent shell's traps. It only says that its output
5596 * must have suitable form, but then, in the above example
5597 * (which is not supposed to be normative), it implies that.
5598 *
5599 * bash (and probably other shell) does implement it
5600 * (traps are reset to defaults, but "trap" still shows them),
5601 * but as a result, "trap" logic is hopelessly messed up:
5602 *
5603 * # trap
5604 * trap -- 'echo Ho' SIGWINCH <--- we have a handler
5605 * # (trap) <--- trap is in subshell - no output (correct, traps are reset)
5606 * # true | trap <--- trap is in subshell - no output (ditto)
5607 * # echo `true | trap` <--- in subshell - output (but traps are reset!)
5608 * trap -- 'echo Ho' SIGWINCH
5609 * # echo `(trap)` <--- in subshell in subshell - output
5610 * trap -- 'echo Ho' SIGWINCH
5611 * # echo `true | (trap)` <--- in subshell in subshell in subshell - output!
5612 * trap -- 'echo Ho' SIGWINCH
5613 *
5614 * The rules when to forget and when to not forget traps
5615 * get really complex and nonsensical.
5616 *
5617 * Our solution: ONLY bare $(trap) or `trap` is special.
5618 */
5619 s = skip_whitespace(s);
5620 if (strncmp(s, "trap", 4) == 0
5621 && skip_whitespace(s + 4)[0] == '\0'
5622 ) {
5623 static const char *const argv[] = { NULL, NULL };
5624 builtin_trap((char**)argv);
5625 exit(0); /* not _exit() - we need to fflush */
5626 }
5627# if BB_MMU
5628 reset_traps_to_defaults();
5629 parse_and_run_string(s);
5630 _exit(G.last_exitcode);
5631# else
5632 /* We re-execute after vfork on NOMMU. This makes this script safe:
5633 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
5634 * huge=`cat BIG` # was blocking here forever
5635 * echo OK
5636 */
5637 re_execute_shell(&to_free,
5638 s,
5639 G.global_argv[0],
5640 G.global_argv + 1,
5641 NULL);
5642# endif
5643 }
5644
5645 /* parent */
5646 *pid_p = pid;
5647# if ENABLE_HUSH_FAST
5648 G.count_SIGCHLD++;
5649//bb_error_msg("[%d] fork in generate_stream_from_string:"
5650// " G.count_SIGCHLD:%d G.handled_SIGCHLD:%d",
5651// getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
5652# endif
5653 enable_restore_tty_pgrp_on_exit();
5654# if !BB_MMU
5655 free(to_free);
5656# endif
5657 close(channel[1]);
5658 close_on_exec_on(channel[0]);
5659 return xfdopen_for_read(channel[0]);
5660}
5661
5662/* Return code is exit status of the process that is run. */
5663static int process_command_subs(o_string *dest, const char *s)
5664{
5665 FILE *fp;
5666 struct in_str pipe_str;
5667 pid_t pid;
5668 int status, ch, eol_cnt;
5669
5670 fp = generate_stream_from_string(s, &pid);
5671
5672 /* Now send results of command back into original context */
5673 setup_file_in_str(&pipe_str, fp);
5674 eol_cnt = 0;
5675 while ((ch = i_getch(&pipe_str)) != EOF) {
5676 if (ch == '\n') {
5677 eol_cnt++;
5678 continue;
5679 }
5680 while (eol_cnt) {
5681 o_addchr(dest, '\n');
5682 eol_cnt--;
5683 }
5684 o_addQchr(dest, ch);
5685 }
5686
5687 debug_printf("done reading from `cmd` pipe, closing it\n");
5688 fclose(fp);
5689 /* We need to extract exitcode. Test case
5690 * "true; echo `sleep 1; false` $?"
5691 * should print 1 */
5692 safe_waitpid(pid, &status, 0);
5693 debug_printf("child exited. returning its exitcode:%d\n", WEXITSTATUS(status));
5694 return WEXITSTATUS(status);
5695}
5696#endif /* ENABLE_HUSH_TICK */
5697
5698
5699static void setup_heredoc(struct redir_struct *redir)
5700{
5701 struct fd_pair pair;
5702 pid_t pid;
5703 int len, written;
5704 /* the _body_ of heredoc (misleading field name) */
5705 const char *heredoc = redir->rd_filename;
5706 char *expanded;
5707#if !BB_MMU
5708 char **to_free;
5709#endif
5710
5711 expanded = NULL;
5712 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005713 expanded = encode_then_expand_string(heredoc, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005714 if (expanded)
5715 heredoc = expanded;
5716 }
5717 len = strlen(heredoc);
5718
5719 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
5720 xpiped_pair(pair);
5721 xmove_fd(pair.rd, redir->rd_fd);
5722
5723 /* Try writing without forking. Newer kernels have
5724 * dynamically growing pipes. Must use non-blocking write! */
5725 ndelay_on(pair.wr);
5726 while (1) {
5727 written = write(pair.wr, heredoc, len);
5728 if (written <= 0)
5729 break;
5730 len -= written;
5731 if (len == 0) {
5732 close(pair.wr);
5733 free(expanded);
5734 return;
5735 }
5736 heredoc += written;
5737 }
5738 ndelay_off(pair.wr);
5739
5740 /* Okay, pipe buffer was not big enough */
5741 /* Note: we must not create a stray child (bastard? :)
5742 * for the unsuspecting parent process. Child creates a grandchild
5743 * and exits before parent execs the process which consumes heredoc
5744 * (that exec happens after we return from this function) */
5745#if !BB_MMU
5746 to_free = NULL;
5747#endif
5748 pid = xvfork();
5749 if (pid == 0) {
5750 /* child */
5751 disable_restore_tty_pgrp_on_exit();
5752 pid = BB_MMU ? xfork() : xvfork();
5753 if (pid != 0)
5754 _exit(0);
5755 /* grandchild */
5756 close(redir->rd_fd); /* read side of the pipe */
5757#if BB_MMU
5758 full_write(pair.wr, heredoc, len); /* may loop or block */
5759 _exit(0);
5760#else
5761 /* Delegate blocking writes to another process */
5762 xmove_fd(pair.wr, STDOUT_FILENO);
5763 re_execute_shell(&to_free, heredoc, NULL, NULL, NULL);
5764#endif
5765 }
5766 /* parent */
5767#if ENABLE_HUSH_FAST
5768 G.count_SIGCHLD++;
5769//bb_error_msg("[%d] fork in setup_heredoc: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
5770#endif
5771 enable_restore_tty_pgrp_on_exit();
5772#if !BB_MMU
5773 free(to_free);
5774#endif
5775 close(pair.wr);
5776 free(expanded);
5777 wait(NULL); /* wait till child has died */
5778}
5779
5780/* squirrel != NULL means we squirrel away copies of stdin, stdout,
5781 * and stderr if they are redirected. */
5782static int setup_redirects(struct command *prog, int squirrel[])
5783{
5784 int openfd, mode;
5785 struct redir_struct *redir;
5786
5787 for (redir = prog->redirects; redir; redir = redir->next) {
5788 if (redir->rd_type == REDIRECT_HEREDOC2) {
5789 /* rd_fd<<HERE case */
5790 if (squirrel && redir->rd_fd < 3
5791 && squirrel[redir->rd_fd] < 0
5792 ) {
5793 squirrel[redir->rd_fd] = dup(redir->rd_fd);
5794 }
5795 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
5796 * of the heredoc */
5797 debug_printf_parse("set heredoc '%s'\n",
5798 redir->rd_filename);
5799 setup_heredoc(redir);
5800 continue;
5801 }
5802
5803 if (redir->rd_dup == REDIRFD_TO_FILE) {
5804 /* rd_fd<*>file case (<*> is <,>,>>,<>) */
5805 char *p;
5806 if (redir->rd_filename == NULL) {
5807 /* Something went wrong in the parse.
5808 * Pretend it didn't happen */
5809 bb_error_msg("bug in redirect parse");
5810 continue;
5811 }
5812 mode = redir_table[redir->rd_type].mode;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005813 p = expand_string_to_string(redir->rd_filename, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005814 openfd = open_or_warn(p, mode);
5815 free(p);
5816 if (openfd < 0) {
5817 /* this could get lost if stderr has been redirected, but
5818 * bash and ash both lose it as well (though zsh doesn't!) */
5819//what the above comment tries to say?
5820 return 1;
5821 }
5822 } else {
5823 /* rd_fd<*>rd_dup or rd_fd<*>- cases */
5824 openfd = redir->rd_dup;
5825 }
5826
5827 if (openfd != redir->rd_fd) {
5828 if (squirrel && redir->rd_fd < 3
5829 && squirrel[redir->rd_fd] < 0
5830 ) {
5831 squirrel[redir->rd_fd] = dup(redir->rd_fd);
5832 }
5833 if (openfd == REDIRFD_CLOSE) {
5834 /* "n>-" means "close me" */
5835 close(redir->rd_fd);
5836 } else {
5837 xdup2(openfd, redir->rd_fd);
5838 if (redir->rd_dup == REDIRFD_TO_FILE)
5839 close(openfd);
5840 }
5841 }
5842 }
5843 return 0;
5844}
5845
5846static void restore_redirects(int squirrel[])
5847{
5848 int i, fd;
5849 for (i = 0; i < 3; i++) {
5850 fd = squirrel[i];
5851 if (fd != -1) {
5852 /* We simply die on error */
5853 xmove_fd(fd, i);
5854 }
5855 }
5856}
5857
5858static char *find_in_path(const char *arg)
5859{
5860 char *ret = NULL;
5861 const char *PATH = get_local_var_value("PATH");
5862
5863 if (!PATH)
5864 return NULL;
5865
5866 while (1) {
5867 const char *end = strchrnul(PATH, ':');
5868 int sz = end - PATH; /* must be int! */
5869
5870 free(ret);
5871 if (sz != 0) {
5872 ret = xasprintf("%.*s/%s", sz, PATH, arg);
5873 } else {
5874 /* We have xxx::yyyy in $PATH,
5875 * it means "use current dir" */
5876 ret = xstrdup(arg);
5877 }
5878 if (access(ret, F_OK) == 0)
5879 break;
5880
5881 if (*end == '\0') {
5882 free(ret);
5883 return NULL;
5884 }
5885 PATH = end + 1;
5886 }
5887
5888 return ret;
5889}
5890
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005891static const struct built_in_command *find_builtin_helper(const char *name,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005892 const struct built_in_command *x,
5893 const struct built_in_command *end)
5894{
5895 while (x != end) {
5896 if (strcmp(name, x->b_cmd) != 0) {
5897 x++;
5898 continue;
5899 }
5900 debug_printf_exec("found builtin '%s'\n", name);
5901 return x;
5902 }
5903 return NULL;
5904}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005905static const struct built_in_command *find_builtin1(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005906{
5907 return find_builtin_helper(name, bltins1, &bltins1[ARRAY_SIZE(bltins1)]);
5908}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005909static const struct built_in_command *find_builtin(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005910{
5911 const struct built_in_command *x = find_builtin1(name);
5912 if (x)
5913 return x;
5914 return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]);
5915}
5916
5917#if ENABLE_HUSH_FUNCTIONS
5918static struct function **find_function_slot(const char *name)
5919{
5920 struct function **funcpp = &G.top_func;
5921 while (*funcpp) {
5922 if (strcmp(name, (*funcpp)->name) == 0) {
5923 break;
5924 }
5925 funcpp = &(*funcpp)->next;
5926 }
5927 return funcpp;
5928}
5929
5930static const struct function *find_function(const char *name)
5931{
5932 const struct function *funcp = *find_function_slot(name);
5933 if (funcp)
5934 debug_printf_exec("found function '%s'\n", name);
5935 return funcp;
5936}
5937
5938/* Note: takes ownership on name ptr */
5939static struct function *new_function(char *name)
5940{
5941 struct function **funcpp = find_function_slot(name);
5942 struct function *funcp = *funcpp;
5943
5944 if (funcp != NULL) {
5945 struct command *cmd = funcp->parent_cmd;
5946 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
5947 if (!cmd) {
5948 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
5949 free(funcp->name);
5950 /* Note: if !funcp->body, do not free body_as_string!
5951 * This is a special case of "-F name body" function:
5952 * body_as_string was not malloced! */
5953 if (funcp->body) {
5954 free_pipe_list(funcp->body);
5955# if !BB_MMU
5956 free(funcp->body_as_string);
5957# endif
5958 }
5959 } else {
5960 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
5961 cmd->argv[0] = funcp->name;
5962 cmd->group = funcp->body;
5963# if !BB_MMU
5964 cmd->group_as_string = funcp->body_as_string;
5965# endif
5966 }
5967 } else {
5968 debug_printf_exec("remembering new function '%s'\n", name);
5969 funcp = *funcpp = xzalloc(sizeof(*funcp));
5970 /*funcp->next = NULL;*/
5971 }
5972
5973 funcp->name = name;
5974 return funcp;
5975}
5976
5977static void unset_func(const char *name)
5978{
5979 struct function **funcpp = find_function_slot(name);
5980 struct function *funcp = *funcpp;
5981
5982 if (funcp != NULL) {
5983 debug_printf_exec("freeing function '%s'\n", funcp->name);
5984 *funcpp = funcp->next;
5985 /* funcp is unlinked now, deleting it.
5986 * Note: if !funcp->body, the function was created by
5987 * "-F name body", do not free ->body_as_string
5988 * and ->name as they were not malloced. */
5989 if (funcp->body) {
5990 free_pipe_list(funcp->body);
5991 free(funcp->name);
5992# if !BB_MMU
5993 free(funcp->body_as_string);
5994# endif
5995 }
5996 free(funcp);
5997 }
5998}
5999
6000# if BB_MMU
6001#define exec_function(to_free, funcp, argv) \
6002 exec_function(funcp, argv)
6003# endif
6004static void exec_function(char ***to_free,
6005 const struct function *funcp,
6006 char **argv) NORETURN;
6007static void exec_function(char ***to_free,
6008 const struct function *funcp,
6009 char **argv)
6010{
6011# if BB_MMU
6012 int n = 1;
6013
6014 argv[0] = G.global_argv[0];
6015 G.global_argv = argv;
6016 while (*++argv)
6017 n++;
6018 G.global_argc = n;
6019 /* On MMU, funcp->body is always non-NULL */
6020 n = run_list(funcp->body);
6021 fflush_all();
6022 _exit(n);
6023# else
6024 re_execute_shell(to_free,
6025 funcp->body_as_string,
6026 G.global_argv[0],
6027 argv + 1,
6028 NULL);
6029# endif
6030}
6031
6032static int run_function(const struct function *funcp, char **argv)
6033{
6034 int rc;
6035 save_arg_t sv;
6036 smallint sv_flg;
6037
6038 save_and_replace_G_args(&sv, argv);
6039
6040 /* "we are in function, ok to use return" */
6041 sv_flg = G.flag_return_in_progress;
6042 G.flag_return_in_progress = -1;
6043# if ENABLE_HUSH_LOCAL
6044 G.func_nest_level++;
6045# endif
6046
6047 /* On MMU, funcp->body is always non-NULL */
6048# if !BB_MMU
6049 if (!funcp->body) {
6050 /* Function defined by -F */
6051 parse_and_run_string(funcp->body_as_string);
6052 rc = G.last_exitcode;
6053 } else
6054# endif
6055 {
6056 rc = run_list(funcp->body);
6057 }
6058
6059# if ENABLE_HUSH_LOCAL
6060 {
6061 struct variable *var;
6062 struct variable **var_pp;
6063
6064 var_pp = &G.top_var;
6065 while ((var = *var_pp) != NULL) {
6066 if (var->func_nest_level < G.func_nest_level) {
6067 var_pp = &var->next;
6068 continue;
6069 }
6070 /* Unexport */
6071 if (var->flg_export)
6072 bb_unsetenv(var->varstr);
6073 /* Remove from global list */
6074 *var_pp = var->next;
6075 /* Free */
6076 if (!var->max_len)
6077 free(var->varstr);
6078 free(var);
6079 }
6080 G.func_nest_level--;
6081 }
6082# endif
6083 G.flag_return_in_progress = sv_flg;
6084
6085 restore_G_args(&sv, argv);
6086
6087 return rc;
6088}
6089#endif /* ENABLE_HUSH_FUNCTIONS */
6090
6091
6092#if BB_MMU
6093#define exec_builtin(to_free, x, argv) \
6094 exec_builtin(x, argv)
6095#else
6096#define exec_builtin(to_free, x, argv) \
6097 exec_builtin(to_free, argv)
6098#endif
6099static void exec_builtin(char ***to_free,
6100 const struct built_in_command *x,
6101 char **argv) NORETURN;
6102static void exec_builtin(char ***to_free,
6103 const struct built_in_command *x,
6104 char **argv)
6105{
6106#if BB_MMU
6107 int rcode = x->b_function(argv);
6108 fflush_all();
6109 _exit(rcode);
6110#else
6111 /* On NOMMU, we must never block!
6112 * Example: { sleep 99 | read line; } & echo Ok
6113 */
6114 re_execute_shell(to_free,
6115 argv[0],
6116 G.global_argv[0],
6117 G.global_argv + 1,
6118 argv);
6119#endif
6120}
6121
6122
6123static void execvp_or_die(char **argv) NORETURN;
6124static void execvp_or_die(char **argv)
6125{
6126 debug_printf_exec("execing '%s'\n", argv[0]);
6127 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
6128 execvp(argv[0], argv);
6129 bb_perror_msg("can't execute '%s'", argv[0]);
6130 _exit(127); /* bash compat */
6131}
6132
6133#if ENABLE_HUSH_MODE_X
6134static void dump_cmd_in_x_mode(char **argv)
6135{
6136 if (G_x_mode && argv) {
6137 /* We want to output the line in one write op */
6138 char *buf, *p;
6139 int len;
6140 int n;
6141
6142 len = 3;
6143 n = 0;
6144 while (argv[n])
6145 len += strlen(argv[n++]) + 1;
6146 buf = xmalloc(len);
6147 buf[0] = '+';
6148 p = buf + 1;
6149 n = 0;
6150 while (argv[n])
6151 p += sprintf(p, " %s", argv[n++]);
6152 *p++ = '\n';
6153 *p = '\0';
6154 fputs(buf, stderr);
6155 free(buf);
6156 }
6157}
6158#else
6159# define dump_cmd_in_x_mode(argv) ((void)0)
6160#endif
6161
6162#if BB_MMU
6163#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
6164 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
6165#define pseudo_exec(nommu_save, command, argv_expanded) \
6166 pseudo_exec(command, argv_expanded)
6167#endif
6168
6169/* Called after [v]fork() in run_pipe, or from builtin_exec.
6170 * Never returns.
6171 * Don't exit() here. If you don't exec, use _exit instead.
6172 * The at_exit handlers apparently confuse the calling process,
6173 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
6174static void pseudo_exec_argv(nommu_save_t *nommu_save,
6175 char **argv, int assignment_cnt,
6176 char **argv_expanded) NORETURN;
6177static NOINLINE void pseudo_exec_argv(nommu_save_t *nommu_save,
6178 char **argv, int assignment_cnt,
6179 char **argv_expanded)
6180{
6181 char **new_env;
6182
6183 new_env = expand_assignments(argv, assignment_cnt);
6184 dump_cmd_in_x_mode(new_env);
6185
6186 if (!argv[assignment_cnt]) {
6187 /* Case when we are here: ... | var=val | ...
6188 * (note that we do not exit early, i.e., do not optimize out
6189 * expand_assignments(): think about ... | var=`sleep 1` | ...
6190 */
6191 free_strings(new_env);
6192 _exit(EXIT_SUCCESS);
6193 }
6194
6195#if BB_MMU
6196 set_vars_and_save_old(new_env);
6197 free(new_env); /* optional */
6198 /* we can also destroy set_vars_and_save_old's return value,
6199 * to save memory */
6200#else
6201 nommu_save->new_env = new_env;
6202 nommu_save->old_vars = set_vars_and_save_old(new_env);
6203#endif
6204
6205 if (argv_expanded) {
6206 argv = argv_expanded;
6207 } else {
6208 argv = expand_strvec_to_strvec(argv + assignment_cnt);
6209#if !BB_MMU
6210 nommu_save->argv = argv;
6211#endif
6212 }
6213 dump_cmd_in_x_mode(argv);
6214
6215#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
6216 if (strchr(argv[0], '/') != NULL)
6217 goto skip;
6218#endif
6219
6220 /* Check if the command matches any of the builtins.
6221 * Depending on context, this might be redundant. But it's
6222 * easier to waste a few CPU cycles than it is to figure out
6223 * if this is one of those cases.
6224 */
6225 {
6226 /* On NOMMU, it is more expensive to re-execute shell
6227 * just in order to run echo or test builtin.
6228 * It's better to skip it here and run corresponding
6229 * non-builtin later. */
6230 const struct built_in_command *x;
6231 x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]);
6232 if (x) {
6233 exec_builtin(&nommu_save->argv_from_re_execing, x, argv);
6234 }
6235 }
6236#if ENABLE_HUSH_FUNCTIONS
6237 /* Check if the command matches any functions */
6238 {
6239 const struct function *funcp = find_function(argv[0]);
6240 if (funcp) {
6241 exec_function(&nommu_save->argv_from_re_execing, funcp, argv);
6242 }
6243 }
6244#endif
6245
6246#if ENABLE_FEATURE_SH_STANDALONE
6247 /* Check if the command matches any busybox applets */
6248 {
6249 int a = find_applet_by_name(argv[0]);
6250 if (a >= 0) {
6251# if BB_MMU /* see above why on NOMMU it is not allowed */
6252 if (APPLET_IS_NOEXEC(a)) {
6253 debug_printf_exec("running applet '%s'\n", argv[0]);
6254 run_applet_no_and_exit(a, argv);
6255 }
6256# endif
6257 /* Re-exec ourselves */
6258 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
6259 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
6260 execv(bb_busybox_exec_path, argv);
6261 /* If they called chroot or otherwise made the binary no longer
6262 * executable, fall through */
6263 }
6264 }
6265#endif
6266
6267#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
6268 skip:
6269#endif
6270 execvp_or_die(argv);
6271}
6272
6273/* Called after [v]fork() in run_pipe
6274 */
6275static void pseudo_exec(nommu_save_t *nommu_save,
6276 struct command *command,
6277 char **argv_expanded) NORETURN;
6278static void pseudo_exec(nommu_save_t *nommu_save,
6279 struct command *command,
6280 char **argv_expanded)
6281{
6282 if (command->argv) {
6283 pseudo_exec_argv(nommu_save, command->argv,
6284 command->assignment_cnt, argv_expanded);
6285 }
6286
6287 if (command->group) {
6288 /* Cases when we are here:
6289 * ( list )
6290 * { list } &
6291 * ... | ( list ) | ...
6292 * ... | { list } | ...
6293 */
6294#if BB_MMU
6295 int rcode;
6296 debug_printf_exec("pseudo_exec: run_list\n");
6297 reset_traps_to_defaults();
6298 rcode = run_list(command->group);
6299 /* OK to leak memory by not calling free_pipe_list,
6300 * since this process is about to exit */
6301 _exit(rcode);
6302#else
6303 re_execute_shell(&nommu_save->argv_from_re_execing,
6304 command->group_as_string,
6305 G.global_argv[0],
6306 G.global_argv + 1,
6307 NULL);
6308#endif
6309 }
6310
6311 /* Case when we are here: ... | >file */
6312 debug_printf_exec("pseudo_exec'ed null command\n");
6313 _exit(EXIT_SUCCESS);
6314}
6315
6316#if ENABLE_HUSH_JOB
6317static const char *get_cmdtext(struct pipe *pi)
6318{
6319 char **argv;
6320 char *p;
6321 int len;
6322
6323 /* This is subtle. ->cmdtext is created only on first backgrounding.
6324 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
6325 * On subsequent bg argv is trashed, but we won't use it */
6326 if (pi->cmdtext)
6327 return pi->cmdtext;
6328 argv = pi->cmds[0].argv;
6329 if (!argv || !argv[0]) {
6330 pi->cmdtext = xzalloc(1);
6331 return pi->cmdtext;
6332 }
6333
6334 len = 0;
6335 do {
6336 len += strlen(*argv) + 1;
6337 } while (*++argv);
6338 p = xmalloc(len);
6339 pi->cmdtext = p;
6340 argv = pi->cmds[0].argv;
6341 do {
6342 len = strlen(*argv);
6343 memcpy(p, *argv, len);
6344 p += len;
6345 *p++ = ' ';
6346 } while (*++argv);
6347 p[-1] = '\0';
6348 return pi->cmdtext;
6349}
6350
6351static void insert_bg_job(struct pipe *pi)
6352{
6353 struct pipe *job, **jobp;
6354 int i;
6355
6356 /* Linear search for the ID of the job to use */
6357 pi->jobid = 1;
6358 for (job = G.job_list; job; job = job->next)
6359 if (job->jobid >= pi->jobid)
6360 pi->jobid = job->jobid + 1;
6361
6362 /* Add job to the list of running jobs */
6363 jobp = &G.job_list;
6364 while ((job = *jobp) != NULL)
6365 jobp = &job->next;
6366 job = *jobp = xmalloc(sizeof(*job));
6367
6368 *job = *pi; /* physical copy */
6369 job->next = NULL;
6370 job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
6371 /* Cannot copy entire pi->cmds[] vector! This causes double frees */
6372 for (i = 0; i < pi->num_cmds; i++) {
6373 job->cmds[i].pid = pi->cmds[i].pid;
6374 /* all other fields are not used and stay zero */
6375 }
6376 job->cmdtext = xstrdup(get_cmdtext(pi));
6377
6378 if (G_interactive_fd)
6379 printf("[%d] %d %s\n", job->jobid, job->cmds[0].pid, job->cmdtext);
6380 G.last_jobid = job->jobid;
6381}
6382
6383static void remove_bg_job(struct pipe *pi)
6384{
6385 struct pipe *prev_pipe;
6386
6387 if (pi == G.job_list) {
6388 G.job_list = pi->next;
6389 } else {
6390 prev_pipe = G.job_list;
6391 while (prev_pipe->next != pi)
6392 prev_pipe = prev_pipe->next;
6393 prev_pipe->next = pi->next;
6394 }
6395 if (G.job_list)
6396 G.last_jobid = G.job_list->jobid;
6397 else
6398 G.last_jobid = 0;
6399}
6400
6401/* Remove a backgrounded job */
6402static void delete_finished_bg_job(struct pipe *pi)
6403{
6404 remove_bg_job(pi);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006405 free_pipe(pi);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006406}
6407#endif /* JOB */
6408
6409/* Check to see if any processes have exited -- if they
6410 * have, figure out why and see if a job has completed */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02006411static int checkjobs(struct pipe *fg_pipe)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006412{
6413 int attributes;
6414 int status;
6415#if ENABLE_HUSH_JOB
6416 struct pipe *pi;
6417#endif
6418 pid_t childpid;
6419 int rcode = 0;
6420
6421 debug_printf_jobs("checkjobs %p\n", fg_pipe);
6422
6423 attributes = WUNTRACED;
6424 if (fg_pipe == NULL)
6425 attributes |= WNOHANG;
6426
6427 errno = 0;
6428#if ENABLE_HUSH_FAST
6429 if (G.handled_SIGCHLD == G.count_SIGCHLD) {
6430//bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p",
6431//getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe);
6432 /* There was neither fork nor SIGCHLD since last waitpid */
6433 /* Avoid doing waitpid syscall if possible */
6434 if (!G.we_have_children) {
6435 errno = ECHILD;
6436 return -1;
6437 }
6438 if (fg_pipe == NULL) { /* is WNOHANG set? */
6439 /* We have children, but they did not exit
6440 * or stop yet (we saw no SIGCHLD) */
6441 return 0;
6442 }
6443 /* else: !WNOHANG, waitpid will block, can't short-circuit */
6444 }
6445#endif
6446
6447/* Do we do this right?
6448 * bash-3.00# sleep 20 | false
6449 * <ctrl-Z pressed>
6450 * [3]+ Stopped sleep 20 | false
6451 * bash-3.00# echo $?
6452 * 1 <========== bg pipe is not fully done, but exitcode is already known!
6453 * [hush 1.14.0: yes we do it right]
6454 */
6455 wait_more:
6456 while (1) {
6457 int i;
6458 int dead;
6459
6460#if ENABLE_HUSH_FAST
6461 i = G.count_SIGCHLD;
6462#endif
6463 childpid = waitpid(-1, &status, attributes);
6464 if (childpid <= 0) {
6465 if (childpid && errno != ECHILD)
6466 bb_perror_msg("waitpid");
6467#if ENABLE_HUSH_FAST
6468 else { /* Until next SIGCHLD, waitpid's are useless */
6469 G.we_have_children = (childpid == 0);
6470 G.handled_SIGCHLD = i;
6471//bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6472 }
6473#endif
6474 break;
6475 }
6476 dead = WIFEXITED(status) || WIFSIGNALED(status);
6477
6478#if DEBUG_JOBS
6479 if (WIFSTOPPED(status))
6480 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
6481 childpid, WSTOPSIG(status), WEXITSTATUS(status));
6482 if (WIFSIGNALED(status))
6483 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
6484 childpid, WTERMSIG(status), WEXITSTATUS(status));
6485 if (WIFEXITED(status))
6486 debug_printf_jobs("pid %d exited, exitcode %d\n",
6487 childpid, WEXITSTATUS(status));
6488#endif
6489 /* Were we asked to wait for fg pipe? */
6490 if (fg_pipe) {
Denys Vlasenkoc08c3f52010-11-14 01:59:55 +01006491 i = fg_pipe->num_cmds;
6492 while (--i >= 0) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006493 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
6494 if (fg_pipe->cmds[i].pid != childpid)
6495 continue;
6496 if (dead) {
Denys Vlasenko6696eac2010-11-14 02:01:50 +01006497 int ex;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006498 fg_pipe->cmds[i].pid = 0;
6499 fg_pipe->alive_cmds--;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01006500 ex = WEXITSTATUS(status);
6501 /* bash prints killer signal's name for *last*
6502 * process in pipe (prints just newline for SIGINT).
6503 * Mimic this. Example: "sleep 5" + (^\ or kill -QUIT)
6504 */
6505 if (WIFSIGNALED(status)) {
6506 int sig = WTERMSIG(status);
6507 if (i == fg_pipe->num_cmds-1)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006508 printf("%s\n", sig == SIGINT ? "" : get_signame(sig));
Denys Vlasenko6696eac2010-11-14 02:01:50 +01006509 /* TODO: MIPS has 128 sigs (1..128), what if sig==128 here?
6510 * Maybe we need to use sig | 128? */
6511 ex = sig + 128;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006512 }
Denys Vlasenko6696eac2010-11-14 02:01:50 +01006513 fg_pipe->cmds[i].cmd_exitcode = ex;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006514 } else {
6515 fg_pipe->cmds[i].is_stopped = 1;
6516 fg_pipe->stopped_cmds++;
6517 }
6518 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
6519 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
Denys Vlasenkoc08c3f52010-11-14 01:59:55 +01006520 if (fg_pipe->alive_cmds == fg_pipe->stopped_cmds) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006521 /* All processes in fg pipe have exited or stopped */
Denys Vlasenko6696eac2010-11-14 02:01:50 +01006522 i = fg_pipe->num_cmds;
6523 while (--i >= 0) {
6524 rcode = fg_pipe->cmds[i].cmd_exitcode;
6525 /* usually last process gives overall exitstatus,
6526 * but with "set -o pipefail", last *failed* process does */
6527 if (G.o_opt[OPT_O_PIPEFAIL] == 0 || rcode != 0)
6528 break;
6529 }
6530 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006531/* Note: *non-interactive* bash does not continue if all processes in fg pipe
6532 * are stopped. Testcase: "cat | cat" in a script (not on command line!)
6533 * and "killall -STOP cat" */
6534 if (G_interactive_fd) {
6535#if ENABLE_HUSH_JOB
Denys Vlasenkoc08c3f52010-11-14 01:59:55 +01006536 if (fg_pipe->alive_cmds != 0)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006537 insert_bg_job(fg_pipe);
6538#endif
6539 return rcode;
6540 }
Denys Vlasenkoc08c3f52010-11-14 01:59:55 +01006541 if (fg_pipe->alive_cmds == 0)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006542 return rcode;
6543 }
6544 /* There are still running processes in the fg pipe */
6545 goto wait_more; /* do waitpid again */
6546 }
6547 /* it wasnt fg_pipe, look for process in bg pipes */
6548 }
6549
6550#if ENABLE_HUSH_JOB
6551 /* We asked to wait for bg or orphaned children */
6552 /* No need to remember exitcode in this case */
6553 for (pi = G.job_list; pi; pi = pi->next) {
6554 for (i = 0; i < pi->num_cmds; i++) {
6555 if (pi->cmds[i].pid == childpid)
6556 goto found_pi_and_prognum;
6557 }
6558 }
6559 /* Happens when shell is used as init process (init=/bin/sh) */
6560 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
6561 continue; /* do waitpid again */
6562
6563 found_pi_and_prognum:
6564 if (dead) {
6565 /* child exited */
6566 pi->cmds[i].pid = 0;
6567 pi->alive_cmds--;
6568 if (!pi->alive_cmds) {
6569 if (G_interactive_fd)
6570 printf(JOB_STATUS_FORMAT, pi->jobid,
6571 "Done", pi->cmdtext);
6572 delete_finished_bg_job(pi);
6573 }
6574 } else {
6575 /* child stopped */
6576 pi->cmds[i].is_stopped = 1;
6577 pi->stopped_cmds++;
6578 }
6579#endif
6580 } /* while (waitpid succeeds)... */
6581
6582 return rcode;
6583}
6584
6585#if ENABLE_HUSH_JOB
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006586static int checkjobs_and_fg_shell(struct pipe *fg_pipe)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006587{
6588 pid_t p;
6589 int rcode = checkjobs(fg_pipe);
6590 if (G_saved_tty_pgrp) {
6591 /* Job finished, move the shell to the foreground */
6592 p = getpgrp(); /* our process group id */
6593 debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p);
6594 tcsetpgrp(G_interactive_fd, p);
6595 }
6596 return rcode;
6597}
6598#endif
6599
6600/* Start all the jobs, but don't wait for anything to finish.
6601 * See checkjobs().
6602 *
6603 * Return code is normally -1, when the caller has to wait for children
6604 * to finish to determine the exit status of the pipe. If the pipe
6605 * is a simple builtin command, however, the action is done by the
6606 * time run_pipe returns, and the exit code is provided as the
6607 * return value.
6608 *
6609 * Returns -1 only if started some children. IOW: we have to
6610 * mask out retvals of builtins etc with 0xff!
6611 *
6612 * The only case when we do not need to [v]fork is when the pipe
6613 * is single, non-backgrounded, non-subshell command. Examples:
6614 * cmd ; ... { list } ; ...
6615 * cmd && ... { list } && ...
6616 * cmd || ... { list } || ...
6617 * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
6618 * or (if SH_STANDALONE) an applet, and we can run the { list }
6619 * with run_list. If it isn't one of these, we fork and exec cmd.
6620 *
6621 * Cases when we must fork:
6622 * non-single: cmd | cmd
6623 * backgrounded: cmd & { list } &
6624 * subshell: ( list ) [&]
6625 */
6626#if !ENABLE_HUSH_MODE_X
Denys Vlasenko26777aa2010-11-22 23:49:10 +01006627#define redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel, argv_expanded) \
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006628 redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel)
6629#endif
6630static int redirect_and_varexp_helper(char ***new_env_p,
6631 struct variable **old_vars_p,
6632 struct command *command,
6633 int squirrel[3],
6634 char **argv_expanded)
6635{
6636 /* setup_redirects acts on file descriptors, not FILEs.
6637 * This is perfect for work that comes after exec().
6638 * Is it really safe for inline use? Experimentally,
6639 * things seem to work. */
6640 int rcode = setup_redirects(command, squirrel);
6641 if (rcode == 0) {
6642 char **new_env = expand_assignments(command->argv, command->assignment_cnt);
6643 *new_env_p = new_env;
6644 dump_cmd_in_x_mode(new_env);
6645 dump_cmd_in_x_mode(argv_expanded);
6646 if (old_vars_p)
6647 *old_vars_p = set_vars_and_save_old(new_env);
6648 }
6649 return rcode;
6650}
6651static NOINLINE int run_pipe(struct pipe *pi)
6652{
6653 static const char *const null_ptr = NULL;
6654
6655 int cmd_no;
6656 int next_infd;
6657 struct command *command;
6658 char **argv_expanded;
6659 char **argv;
6660 /* it is not always needed, but we aim to smaller code */
6661 int squirrel[] = { -1, -1, -1 };
6662 int rcode;
6663
6664 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
6665 debug_enter();
6666
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02006667 /* Testcase: set -- q w e; (IFS='' echo "$*"; IFS=''; echo "$*"); echo "$*"
6668 * Result should be 3 lines: q w e, qwe, q w e
6669 */
6670 G.ifs = get_local_var_value("IFS");
6671 if (!G.ifs)
6672 G.ifs = defifs;
6673
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006674 IF_HUSH_JOB(pi->pgrp = -1;)
6675 pi->stopped_cmds = 0;
6676 command = &pi->cmds[0];
6677 argv_expanded = NULL;
6678
6679 if (pi->num_cmds != 1
6680 || pi->followup == PIPE_BG
6681 || command->cmd_type == CMD_SUBSHELL
6682 ) {
6683 goto must_fork;
6684 }
6685
6686 pi->alive_cmds = 1;
6687
6688 debug_printf_exec(": group:%p argv:'%s'\n",
6689 command->group, command->argv ? command->argv[0] : "NONE");
6690
6691 if (command->group) {
6692#if ENABLE_HUSH_FUNCTIONS
6693 if (command->cmd_type == CMD_FUNCDEF) {
6694 /* "executing" func () { list } */
6695 struct function *funcp;
6696
6697 funcp = new_function(command->argv[0]);
6698 /* funcp->name is already set to argv[0] */
6699 funcp->body = command->group;
6700# if !BB_MMU
6701 funcp->body_as_string = command->group_as_string;
6702 command->group_as_string = NULL;
6703# endif
6704 command->group = NULL;
6705 command->argv[0] = NULL;
6706 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
6707 funcp->parent_cmd = command;
6708 command->child_func = funcp;
6709
6710 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
6711 debug_leave();
6712 return EXIT_SUCCESS;
6713 }
6714#endif
6715 /* { list } */
6716 debug_printf("non-subshell group\n");
6717 rcode = 1; /* exitcode if redir failed */
6718 if (setup_redirects(command, squirrel) == 0) {
6719 debug_printf_exec(": run_list\n");
6720 rcode = run_list(command->group) & 0xff;
6721 }
6722 restore_redirects(squirrel);
6723 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
6724 debug_leave();
6725 debug_printf_exec("run_pipe: return %d\n", rcode);
6726 return rcode;
6727 }
6728
6729 argv = command->argv ? command->argv : (char **) &null_ptr;
6730 {
6731 const struct built_in_command *x;
6732#if ENABLE_HUSH_FUNCTIONS
6733 const struct function *funcp;
6734#else
6735 enum { funcp = 0 };
6736#endif
6737 char **new_env = NULL;
6738 struct variable *old_vars = NULL;
6739
6740 if (argv[command->assignment_cnt] == NULL) {
6741 /* Assignments, but no command */
6742 /* Ensure redirects take effect (that is, create files).
6743 * Try "a=t >file" */
6744#if 0 /* A few cases in testsuite fail with this code. FIXME */
6745 rcode = redirect_and_varexp_helper(&new_env, /*old_vars:*/ NULL, command, squirrel, /*argv_expanded:*/ NULL);
6746 /* Set shell variables */
6747 if (new_env) {
6748 argv = new_env;
6749 while (*argv) {
6750 set_local_var(*argv, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
6751 /* Do we need to flag set_local_var() errors?
6752 * "assignment to readonly var" and "putenv error"
6753 */
6754 argv++;
6755 }
6756 }
6757 /* Redirect error sets $? to 1. Otherwise,
6758 * if evaluating assignment value set $?, retain it.
6759 * Try "false; q=`exit 2`; echo $?" - should print 2: */
6760 if (rcode == 0)
6761 rcode = G.last_exitcode;
6762 /* Exit, _skipping_ variable restoring code: */
6763 goto clean_up_and_ret0;
6764
6765#else /* Older, bigger, but more correct code */
6766
6767 rcode = setup_redirects(command, squirrel);
6768 restore_redirects(squirrel);
6769 /* Set shell variables */
6770 if (G_x_mode)
6771 bb_putchar_stderr('+');
6772 while (*argv) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006773 char *p = expand_string_to_string(*argv, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006774 if (G_x_mode)
6775 fprintf(stderr, " %s", p);
6776 debug_printf_exec("set shell var:'%s'->'%s'\n",
6777 *argv, p);
6778 set_local_var(p, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
6779 /* Do we need to flag set_local_var() errors?
6780 * "assignment to readonly var" and "putenv error"
6781 */
6782 argv++;
6783 }
6784 if (G_x_mode)
6785 bb_putchar_stderr('\n');
6786 /* Redirect error sets $? to 1. Otherwise,
6787 * if evaluating assignment value set $?, retain it.
6788 * Try "false; q=`exit 2`; echo $?" - should print 2: */
6789 if (rcode == 0)
6790 rcode = G.last_exitcode;
6791 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
6792 debug_leave();
6793 debug_printf_exec("run_pipe: return %d\n", rcode);
6794 return rcode;
6795#endif
6796 }
6797
6798 /* Expand the rest into (possibly) many strings each */
6799 if (0) {}
6800#if ENABLE_HUSH_BASH_COMPAT
6801 else if (command->cmd_type == CMD_SINGLEWORD_NOGLOB) {
6802 argv_expanded = expand_strvec_to_strvec_singleword_noglob(argv + command->assignment_cnt);
6803 }
6804#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006805 else {
6806 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
6807 }
6808
6809 /* if someone gives us an empty string: `cmd with empty output` */
6810 if (!argv_expanded[0]) {
6811 free(argv_expanded);
6812 debug_leave();
6813 return G.last_exitcode;
6814 }
6815
6816 x = find_builtin(argv_expanded[0]);
6817#if ENABLE_HUSH_FUNCTIONS
6818 funcp = NULL;
6819 if (!x)
6820 funcp = find_function(argv_expanded[0]);
6821#endif
6822 if (x || funcp) {
6823 if (!funcp) {
6824 if (x->b_function == builtin_exec && argv_expanded[1] == NULL) {
6825 debug_printf("exec with redirects only\n");
6826 rcode = setup_redirects(command, NULL);
6827 goto clean_up_and_ret1;
6828 }
6829 }
6830 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, squirrel, argv_expanded);
6831 if (rcode == 0) {
6832 if (!funcp) {
6833 debug_printf_exec(": builtin '%s' '%s'...\n",
6834 x->b_cmd, argv_expanded[1]);
6835 rcode = x->b_function(argv_expanded) & 0xff;
6836 fflush_all();
6837 }
6838#if ENABLE_HUSH_FUNCTIONS
6839 else {
6840# if ENABLE_HUSH_LOCAL
6841 struct variable **sv;
6842 sv = G.shadowed_vars_pp;
6843 G.shadowed_vars_pp = &old_vars;
6844# endif
6845 debug_printf_exec(": function '%s' '%s'...\n",
6846 funcp->name, argv_expanded[1]);
6847 rcode = run_function(funcp, argv_expanded) & 0xff;
6848# if ENABLE_HUSH_LOCAL
6849 G.shadowed_vars_pp = sv;
6850# endif
6851 }
6852#endif
6853 }
6854 clean_up_and_ret:
6855 unset_vars(new_env);
6856 add_vars(old_vars);
6857/* clean_up_and_ret0: */
6858 restore_redirects(squirrel);
6859 clean_up_and_ret1:
6860 free(argv_expanded);
6861 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
6862 debug_leave();
6863 debug_printf_exec("run_pipe return %d\n", rcode);
6864 return rcode;
6865 }
6866
6867 if (ENABLE_FEATURE_SH_STANDALONE) {
6868 int n = find_applet_by_name(argv_expanded[0]);
6869 if (n >= 0 && APPLET_IS_NOFORK(n)) {
6870 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, squirrel, argv_expanded);
6871 if (rcode == 0) {
6872 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
6873 argv_expanded[0], argv_expanded[1]);
6874 rcode = run_nofork_applet(n, argv_expanded);
6875 }
6876 goto clean_up_and_ret;
6877 }
6878 }
6879 /* It is neither builtin nor applet. We must fork. */
6880 }
6881
6882 must_fork:
6883 /* NB: argv_expanded may already be created, and that
6884 * might include `cmd` runs! Do not rerun it! We *must*
6885 * use argv_expanded if it's non-NULL */
6886
6887 /* Going to fork a child per each pipe member */
6888 pi->alive_cmds = 0;
6889 next_infd = 0;
6890
6891 cmd_no = 0;
6892 while (cmd_no < pi->num_cmds) {
6893 struct fd_pair pipefds;
6894#if !BB_MMU
6895 volatile nommu_save_t nommu_save;
6896 nommu_save.new_env = NULL;
6897 nommu_save.old_vars = NULL;
6898 nommu_save.argv = NULL;
6899 nommu_save.argv_from_re_execing = NULL;
6900#endif
6901 command = &pi->cmds[cmd_no];
6902 cmd_no++;
6903 if (command->argv) {
6904 debug_printf_exec(": pipe member '%s' '%s'...\n",
6905 command->argv[0], command->argv[1]);
6906 } else {
6907 debug_printf_exec(": pipe member with no argv\n");
6908 }
6909
6910 /* pipes are inserted between pairs of commands */
6911 pipefds.rd = 0;
6912 pipefds.wr = 1;
6913 if (cmd_no < pi->num_cmds)
6914 xpiped_pair(pipefds);
6915
6916 command->pid = BB_MMU ? fork() : vfork();
6917 if (!command->pid) { /* child */
6918#if ENABLE_HUSH_JOB
6919 disable_restore_tty_pgrp_on_exit();
6920 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
6921
6922 /* Every child adds itself to new process group
6923 * with pgid == pid_of_first_child_in_pipe */
6924 if (G.run_list_level == 1 && G_interactive_fd) {
6925 pid_t pgrp;
6926 pgrp = pi->pgrp;
6927 if (pgrp < 0) /* true for 1st process only */
6928 pgrp = getpid();
6929 if (setpgid(0, pgrp) == 0
6930 && pi->followup != PIPE_BG
6931 && G_saved_tty_pgrp /* we have ctty */
6932 ) {
6933 /* We do it in *every* child, not just first,
6934 * to avoid races */
6935 tcsetpgrp(G_interactive_fd, pgrp);
6936 }
6937 }
6938#endif
6939 if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
6940 /* 1st cmd in backgrounded pipe
6941 * should have its stdin /dev/null'ed */
6942 close(0);
6943 if (open(bb_dev_null, O_RDONLY))
6944 xopen("/", O_RDONLY);
6945 } else {
6946 xmove_fd(next_infd, 0);
6947 }
6948 xmove_fd(pipefds.wr, 1);
6949 if (pipefds.rd > 1)
6950 close(pipefds.rd);
6951 /* Like bash, explicit redirects override pipes,
6952 * and the pipe fd is available for dup'ing. */
6953 if (setup_redirects(command, NULL))
6954 _exit(1);
6955
6956 /* Restore default handlers just prior to exec */
6957 /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
6958
6959 /* Stores to nommu_save list of env vars putenv'ed
6960 * (NOMMU, on MMU we don't need that) */
6961 /* cast away volatility... */
6962 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
6963 /* pseudo_exec() does not return */
6964 }
6965
6966 /* parent or error */
6967#if ENABLE_HUSH_FAST
6968 G.count_SIGCHLD++;
6969//bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6970#endif
6971 enable_restore_tty_pgrp_on_exit();
6972#if !BB_MMU
6973 /* Clean up after vforked child */
6974 free(nommu_save.argv);
6975 free(nommu_save.argv_from_re_execing);
6976 unset_vars(nommu_save.new_env);
6977 add_vars(nommu_save.old_vars);
6978#endif
6979 free(argv_expanded);
6980 argv_expanded = NULL;
6981 if (command->pid < 0) { /* [v]fork failed */
6982 /* Clearly indicate, was it fork or vfork */
6983 bb_perror_msg(BB_MMU ? "vfork"+1 : "vfork");
6984 } else {
6985 pi->alive_cmds++;
6986#if ENABLE_HUSH_JOB
6987 /* Second and next children need to know pid of first one */
6988 if (pi->pgrp < 0)
6989 pi->pgrp = command->pid;
6990#endif
6991 }
6992
6993 if (cmd_no > 1)
6994 close(next_infd);
6995 if (cmd_no < pi->num_cmds)
6996 close(pipefds.wr);
6997 /* Pass read (output) pipe end to next iteration */
6998 next_infd = pipefds.rd;
6999 }
7000
7001 if (!pi->alive_cmds) {
7002 debug_leave();
7003 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
7004 return 1;
7005 }
7006
7007 debug_leave();
7008 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
7009 return -1;
7010}
7011
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007012/* NB: called by pseudo_exec, and therefore must not modify any
7013 * global data until exec/_exit (we can be a child after vfork!) */
7014static int run_list(struct pipe *pi)
7015{
7016#if ENABLE_HUSH_CASE
7017 char *case_word = NULL;
7018#endif
7019#if ENABLE_HUSH_LOOPS
7020 struct pipe *loop_top = NULL;
7021 char **for_lcur = NULL;
7022 char **for_list = NULL;
7023#endif
7024 smallint last_followup;
7025 smalluint rcode;
7026#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
7027 smalluint cond_code = 0;
7028#else
7029 enum { cond_code = 0 };
7030#endif
7031#if HAS_KEYWORDS
Denys Vlasenko9b782552010-09-08 13:33:26 +02007032 smallint rword; /* RES_foo */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007033 smallint last_rword; /* ditto */
7034#endif
7035
7036 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
7037 debug_enter();
7038
7039#if ENABLE_HUSH_LOOPS
7040 /* Check syntax for "for" */
Denys Vlasenko0d6a4ec2010-12-18 01:34:49 +01007041 {
7042 struct pipe *cpipe;
7043 for (cpipe = pi; cpipe; cpipe = cpipe->next) {
7044 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
7045 continue;
7046 /* current word is FOR or IN (BOLD in comments below) */
7047 if (cpipe->next == NULL) {
7048 syntax_error("malformed for");
7049 debug_leave();
7050 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
7051 return 1;
7052 }
7053 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
7054 if (cpipe->next->res_word == RES_DO)
7055 continue;
7056 /* next word is not "do". It must be "in" then ("FOR v in ...") */
7057 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
7058 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
7059 ) {
7060 syntax_error("malformed for");
7061 debug_leave();
7062 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
7063 return 1;
7064 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007065 }
7066 }
7067#endif
7068
7069 /* Past this point, all code paths should jump to ret: label
7070 * in order to return, no direct "return" statements please.
7071 * This helps to ensure that no memory is leaked. */
7072
7073#if ENABLE_HUSH_JOB
7074 G.run_list_level++;
7075#endif
7076
7077#if HAS_KEYWORDS
7078 rword = RES_NONE;
7079 last_rword = RES_XXXX;
7080#endif
7081 last_followup = PIPE_SEQ;
7082 rcode = G.last_exitcode;
7083
7084 /* Go through list of pipes, (maybe) executing them. */
7085 for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
7086 if (G.flag_SIGINT)
7087 break;
7088
7089 IF_HAS_KEYWORDS(rword = pi->res_word;)
7090 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
7091 rword, cond_code, last_rword);
7092#if ENABLE_HUSH_LOOPS
7093 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
7094 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
7095 ) {
7096 /* start of a loop: remember where loop starts */
7097 loop_top = pi;
7098 G.depth_of_loop++;
7099 }
7100#endif
7101 /* Still in the same "if...", "then..." or "do..." branch? */
7102 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
7103 if ((rcode == 0 && last_followup == PIPE_OR)
7104 || (rcode != 0 && last_followup == PIPE_AND)
7105 ) {
7106 /* It is "<true> || CMD" or "<false> && CMD"
7107 * and we should not execute CMD */
7108 debug_printf_exec("skipped cmd because of || or &&\n");
7109 last_followup = pi->followup;
7110 continue;
7111 }
7112 }
7113 last_followup = pi->followup;
7114 IF_HAS_KEYWORDS(last_rword = rword;)
7115#if ENABLE_HUSH_IF
7116 if (cond_code) {
7117 if (rword == RES_THEN) {
7118 /* if false; then ... fi has exitcode 0! */
7119 G.last_exitcode = rcode = EXIT_SUCCESS;
7120 /* "if <false> THEN cmd": skip cmd */
7121 continue;
7122 }
7123 } else {
7124 if (rword == RES_ELSE || rword == RES_ELIF) {
7125 /* "if <true> then ... ELSE/ELIF cmd":
7126 * skip cmd and all following ones */
7127 break;
7128 }
7129 }
7130#endif
7131#if ENABLE_HUSH_LOOPS
7132 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
7133 if (!for_lcur) {
7134 /* first loop through for */
7135
7136 static const char encoded_dollar_at[] ALIGN1 = {
7137 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
7138 }; /* encoded representation of "$@" */
7139 static const char *const encoded_dollar_at_argv[] = {
7140 encoded_dollar_at, NULL
7141 }; /* argv list with one element: "$@" */
7142 char **vals;
7143
7144 vals = (char**)encoded_dollar_at_argv;
7145 if (pi->next->res_word == RES_IN) {
7146 /* if no variable values after "in" we skip "for" */
7147 if (!pi->next->cmds[0].argv) {
7148 G.last_exitcode = rcode = EXIT_SUCCESS;
7149 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
7150 break;
7151 }
7152 vals = pi->next->cmds[0].argv;
7153 } /* else: "for var; do..." -> assume "$@" list */
7154 /* create list of variable values */
7155 debug_print_strings("for_list made from", vals);
7156 for_list = expand_strvec_to_strvec(vals);
7157 for_lcur = for_list;
7158 debug_print_strings("for_list", for_list);
7159 }
7160 if (!*for_lcur) {
7161 /* "for" loop is over, clean up */
7162 free(for_list);
7163 for_list = NULL;
7164 for_lcur = NULL;
7165 break;
7166 }
7167 /* Insert next value from for_lcur */
7168 /* note: *for_lcur already has quotes removed, $var expanded, etc */
7169 set_local_var(xasprintf("%s=%s", pi->cmds[0].argv[0], *for_lcur++), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
7170 continue;
7171 }
7172 if (rword == RES_IN) {
7173 continue; /* "for v IN list;..." - "in" has no cmds anyway */
7174 }
7175 if (rword == RES_DONE) {
7176 continue; /* "done" has no cmds too */
7177 }
7178#endif
7179#if ENABLE_HUSH_CASE
7180 if (rword == RES_CASE) {
7181 case_word = expand_strvec_to_string(pi->cmds->argv);
7182 continue;
7183 }
7184 if (rword == RES_MATCH) {
7185 char **argv;
7186
7187 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
7188 break;
7189 /* all prev words didn't match, does this one match? */
7190 argv = pi->cmds->argv;
7191 while (*argv) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02007192 char *pattern = expand_string_to_string(*argv, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007193 /* TODO: which FNM_xxx flags to use? */
7194 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
7195 free(pattern);
7196 if (cond_code == 0) { /* match! we will execute this branch */
7197 free(case_word); /* make future "word)" stop */
7198 case_word = NULL;
7199 break;
7200 }
7201 argv++;
7202 }
7203 continue;
7204 }
7205 if (rword == RES_CASE_BODY) { /* inside of a case branch */
7206 if (cond_code != 0)
7207 continue; /* not matched yet, skip this pipe */
7208 }
7209#endif
7210 /* Just pressing <enter> in shell should check for jobs.
7211 * OTOH, in non-interactive shell this is useless
7212 * and only leads to extra job checks */
7213 if (pi->num_cmds == 0) {
7214 if (G_interactive_fd)
7215 goto check_jobs_and_continue;
7216 continue;
7217 }
7218
7219 /* After analyzing all keywords and conditions, we decided
7220 * to execute this pipe. NB: have to do checkjobs(NULL)
7221 * after run_pipe to collect any background children,
7222 * even if list execution is to be stopped. */
7223 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
7224 {
7225 int r;
7226#if ENABLE_HUSH_LOOPS
7227 G.flag_break_continue = 0;
7228#endif
7229 rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
7230 if (r != -1) {
7231 /* We ran a builtin, function, or group.
7232 * rcode is already known
7233 * and we don't need to wait for anything. */
7234 G.last_exitcode = rcode;
7235 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
7236 check_and_run_traps(0);
7237#if ENABLE_HUSH_LOOPS
7238 /* Was it "break" or "continue"? */
7239 if (G.flag_break_continue) {
7240 smallint fbc = G.flag_break_continue;
7241 /* We might fall into outer *loop*,
7242 * don't want to break it too */
7243 if (loop_top) {
7244 G.depth_break_continue--;
7245 if (G.depth_break_continue == 0)
7246 G.flag_break_continue = 0;
7247 /* else: e.g. "continue 2" should *break* once, *then* continue */
7248 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
7249 if (G.depth_break_continue != 0 || fbc == BC_BREAK)
7250 goto check_jobs_and_break;
7251 /* "continue": simulate end of loop */
7252 rword = RES_DONE;
7253 continue;
7254 }
7255#endif
7256#if ENABLE_HUSH_FUNCTIONS
7257 if (G.flag_return_in_progress == 1) {
7258 /* same as "goto check_jobs_and_break" */
7259 checkjobs(NULL);
7260 break;
7261 }
7262#endif
7263 } else if (pi->followup == PIPE_BG) {
7264 /* What does bash do with attempts to background builtins? */
7265 /* even bash 3.2 doesn't do that well with nested bg:
7266 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
7267 * I'm NOT treating inner &'s as jobs */
7268 check_and_run_traps(0);
7269#if ENABLE_HUSH_JOB
7270 if (G.run_list_level == 1)
7271 insert_bg_job(pi);
7272#endif
7273 /* Last command's pid goes to $! */
7274 G.last_bg_pid = pi->cmds[pi->num_cmds - 1].pid;
7275 G.last_exitcode = rcode = EXIT_SUCCESS;
7276 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
7277 } else {
7278#if ENABLE_HUSH_JOB
7279 if (G.run_list_level == 1 && G_interactive_fd) {
7280 /* Waits for completion, then fg's main shell */
7281 rcode = checkjobs_and_fg_shell(pi);
7282 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
7283 check_and_run_traps(0);
7284 } else
7285#endif
7286 { /* This one just waits for completion */
7287 rcode = checkjobs(pi);
7288 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
7289 check_and_run_traps(0);
7290 }
7291 G.last_exitcode = rcode;
7292 }
7293 }
7294
7295 /* Analyze how result affects subsequent commands */
7296#if ENABLE_HUSH_IF
7297 if (rword == RES_IF || rword == RES_ELIF)
7298 cond_code = rcode;
7299#endif
7300#if ENABLE_HUSH_LOOPS
7301 /* Beware of "while false; true; do ..."! */
7302 if (pi->next && pi->next->res_word == RES_DO) {
7303 if (rword == RES_WHILE) {
7304 if (rcode) {
7305 /* "while false; do...done" - exitcode 0 */
7306 G.last_exitcode = rcode = EXIT_SUCCESS;
7307 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
7308 goto check_jobs_and_break;
7309 }
7310 }
7311 if (rword == RES_UNTIL) {
7312 if (!rcode) {
7313 debug_printf_exec(": until expr is true: breaking\n");
7314 check_jobs_and_break:
7315 checkjobs(NULL);
7316 break;
7317 }
7318 }
7319 }
7320#endif
7321
7322 check_jobs_and_continue:
7323 checkjobs(NULL);
7324 } /* for (pi) */
7325
7326#if ENABLE_HUSH_JOB
7327 G.run_list_level--;
7328#endif
7329#if ENABLE_HUSH_LOOPS
7330 if (loop_top)
7331 G.depth_of_loop--;
7332 free(for_list);
7333#endif
7334#if ENABLE_HUSH_CASE
7335 free(case_word);
7336#endif
7337 debug_leave();
7338 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
7339 return rcode;
7340}
7341
7342/* Select which version we will use */
7343static int run_and_free_list(struct pipe *pi)
7344{
7345 int rcode = 0;
7346 debug_printf_exec("run_and_free_list entered\n");
Dan Fandrich85c62472010-11-20 13:05:17 -08007347 if (!G.o_opt[OPT_O_NOEXEC]) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007348 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
7349 rcode = run_list(pi);
7350 }
7351 /* free_pipe_list has the side effect of clearing memory.
7352 * In the long run that function can be merged with run_list,
7353 * but doing that now would hobble the debugging effort. */
7354 free_pipe_list(pi);
7355 debug_printf_exec("run_and_free_list return %d\n", rcode);
7356 return rcode;
7357}
7358
7359
Denis Vlasenkof9375282009-04-05 19:13:39 +00007360/* Called a few times only (or even once if "sh -c") */
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007361static void init_sigmasks(void)
Eric Andersen52a97ca2001-06-22 06:49:26 +00007362{
Denis Vlasenkof9375282009-04-05 19:13:39 +00007363 unsigned sig;
7364 unsigned mask;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007365 sigset_t old_blocked_set;
7366
7367 if (!G.inherited_set_is_saved) {
7368 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
7369 G.inherited_set = G.blocked_set;
7370 }
7371 old_blocked_set = G.blocked_set;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00007372
Denis Vlasenkof9375282009-04-05 19:13:39 +00007373 mask = (1 << SIGQUIT);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007374 if (G_interactive_fd) {
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00007375 mask = (1 << SIGQUIT) | SPECIAL_INTERACTIVE_SIGS;
Mike Frysinger38478a62009-05-20 04:48:06 -04007376 if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007377 mask |= SPECIAL_JOB_SIGS;
7378 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007379 G.non_DFL_mask = mask;
Eric Andersen52a97ca2001-06-22 06:49:26 +00007380
Denis Vlasenkof9375282009-04-05 19:13:39 +00007381 sig = 0;
7382 while (mask) {
7383 if (mask & 1)
7384 sigaddset(&G.blocked_set, sig);
7385 mask >>= 1;
7386 sig++;
7387 }
7388 sigdelset(&G.blocked_set, SIGCHLD);
7389
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007390 if (memcmp(&old_blocked_set, &G.blocked_set, sizeof(old_blocked_set)) != 0)
7391 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7392
Denis Vlasenkof9375282009-04-05 19:13:39 +00007393 /* POSIX allows shell to re-enable SIGCHLD
7394 * even if it was SIG_IGN on entry */
Denys Vlasenko8d7be232009-05-25 16:38:32 +02007395#if ENABLE_HUSH_FAST
7396 G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007397 if (!G.inherited_set_is_saved)
Denys Vlasenko8d7be232009-05-25 16:38:32 +02007398 signal(SIGCHLD, SIGCHLD_handler);
7399#else
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007400 if (!G.inherited_set_is_saved)
Denys Vlasenko8d7be232009-05-25 16:38:32 +02007401 signal(SIGCHLD, SIG_DFL);
7402#endif
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007403
7404 G.inherited_set_is_saved = 1;
Denis Vlasenkof9375282009-04-05 19:13:39 +00007405}
7406
7407#if ENABLE_HUSH_JOB
7408/* helper */
7409static void maybe_set_to_sigexit(int sig)
7410{
7411 void (*handler)(int);
7412 /* non_DFL_mask'ed signals are, well, masked,
7413 * no need to set handler for them.
7414 */
7415 if (!((G.non_DFL_mask >> sig) & 1)) {
7416 handler = signal(sig, sigexit);
7417 if (handler == SIG_IGN) /* oops... restore back to IGN! */
7418 signal(sig, handler);
7419 }
7420}
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00007421/* Set handlers to restore tty pgrp and exit */
Denis Vlasenkof9375282009-04-05 19:13:39 +00007422static void set_fatal_handlers(void)
7423{
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00007424 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenkof9375282009-04-05 19:13:39 +00007425 if (HUSH_DEBUG) {
7426 maybe_set_to_sigexit(SIGILL );
7427 maybe_set_to_sigexit(SIGFPE );
7428 maybe_set_to_sigexit(SIGBUS );
7429 maybe_set_to_sigexit(SIGSEGV);
7430 maybe_set_to_sigexit(SIGTRAP);
7431 } /* else: hush is perfect. what SEGV? */
7432 maybe_set_to_sigexit(SIGABRT);
7433 /* bash 3.2 seems to handle these just like 'fatal' ones */
7434 maybe_set_to_sigexit(SIGPIPE);
7435 maybe_set_to_sigexit(SIGALRM);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00007436 /* if we are interactive, SIGHUP, SIGTERM and SIGINT are masked.
Denis Vlasenkof9375282009-04-05 19:13:39 +00007437 * if we aren't interactive... but in this case
7438 * we never want to restore pgrp on exit, and this fn is not called */
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00007439 /*maybe_set_to_sigexit(SIGHUP );*/
Denis Vlasenkof9375282009-04-05 19:13:39 +00007440 /*maybe_set_to_sigexit(SIGTERM);*/
7441 /*maybe_set_to_sigexit(SIGINT );*/
Eric Andersen6c947d22001-06-25 22:24:38 +00007442}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00007443#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00007444
Denys Vlasenko6696eac2010-11-14 02:01:50 +01007445static int set_mode(int state, char mode, const char *o_opt)
Denis Vlasenkod5762932009-03-31 11:22:57 +00007446{
Denys Vlasenko6696eac2010-11-14 02:01:50 +01007447 int idx;
Denis Vlasenkod5762932009-03-31 11:22:57 +00007448 switch (mode) {
Denys Vlasenko6696eac2010-11-14 02:01:50 +01007449 case 'n':
Dan Fandrich85c62472010-11-20 13:05:17 -08007450 G.o_opt[OPT_O_NOEXEC] = state;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01007451 break;
7452 case 'x':
7453 IF_HUSH_MODE_X(G_x_mode = state;)
7454 break;
7455 case 'o':
7456 if (!o_opt) {
7457 /* "set -+o" without parameter.
7458 * in bash, set -o produces this output:
7459 * pipefail off
7460 * and set +o:
7461 * set +o pipefail
7462 * We always use the second form.
7463 */
7464 const char *p = o_opt_strings;
7465 idx = 0;
7466 while (*p) {
7467 printf("set %co %s\n", (G.o_opt[idx] ? '-' : '+'), p);
7468 idx++;
7469 p += strlen(p) + 1;
7470 }
7471 break;
7472 }
7473 idx = index_in_strings(o_opt_strings, o_opt);
7474 if (idx >= 0) {
7475 G.o_opt[idx] = state;
7476 break;
7477 }
7478 default:
7479 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00007480 }
7481 return EXIT_SUCCESS;
7482}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007483
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00007484int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00007485int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00007486{
7487 int opt;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007488 unsigned builtin_argc;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007489 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007490 struct variable *cur_var;
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01007491 struct variable *shell_ver;
Eric Andersenbc604a22001-05-16 05:24:03 +00007492
Denis Vlasenko574f2f42008-02-27 18:41:59 +00007493 INIT_G();
Denys Vlasenkocddbb612010-05-20 14:27:09 +02007494 if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, it is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00007495 G.last_exitcode = EXIT_SUCCESS;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007496#if !BB_MMU
7497 G.argv0_for_re_execing = argv[0];
7498#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00007499 /* Deal with HUSH_VERSION */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01007500 shell_ver = xzalloc(sizeof(*shell_ver));
7501 shell_ver->flg_export = 1;
7502 shell_ver->flg_read_only = 1;
Denys Vlasenko4f870492010-09-10 11:06:01 +02007503 /* Code which handles ${var<op>...} needs writable values for all variables,
Denys Vlasenko36f774a2010-09-05 14:45:38 +02007504 * therefore we xstrdup: */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01007505 shell_ver->varstr = xstrdup(hush_version_str);
Denys Vlasenko605067b2010-09-06 12:10:51 +02007506 /* Create shell local variables from the values
7507 * currently living in the environment */
Denis Vlasenkof886fd22008-10-13 12:36:05 +00007508 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00007509 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01007510 G.top_var = shell_ver;
Denis Vlasenko87a86552008-07-29 19:43:10 +00007511 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00007512 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007513 if (e) while (*e) {
7514 char *value = strchr(*e, '=');
7515 if (value) { /* paranoia */
7516 cur_var->next = xzalloc(sizeof(*cur_var));
7517 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00007518 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007519 cur_var->max_len = strlen(*e);
7520 cur_var->flg_export = 1;
7521 }
7522 e++;
7523 }
Denys Vlasenko605067b2010-09-06 12:10:51 +02007524 /* (Re)insert HUSH_VERSION into env (AFTER we scanned the env!) */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01007525 debug_printf_env("putenv '%s'\n", shell_ver->varstr);
7526 putenv(shell_ver->varstr);
Denys Vlasenko6db47842009-09-05 20:15:17 +02007527
7528 /* Export PWD */
7529 set_pwd_var(/*exp:*/ 1);
7530 /* bash also exports SHLVL and _,
7531 * and sets (but doesn't export) the following variables:
7532 * BASH=/bin/bash
7533 * BASH_VERSINFO=([0]="3" [1]="2" [2]="0" [3]="1" [4]="release" [5]="i386-pc-linux-gnu")
7534 * BASH_VERSION='3.2.0(1)-release'
7535 * HOSTTYPE=i386
7536 * MACHTYPE=i386-pc-linux-gnu
7537 * OSTYPE=linux-gnu
7538 * HOSTNAME=<xxxxxxxxxx>
Denys Vlasenkodea47882009-10-09 15:40:49 +02007539 * PPID=<NNNNN> - we also do it elsewhere
Denys Vlasenko6db47842009-09-05 20:15:17 +02007540 * EUID=<NNNNN>
7541 * UID=<NNNNN>
7542 * GROUPS=()
7543 * LINES=<NNN>
7544 * COLUMNS=<NNN>
7545 * BASH_ARGC=()
7546 * BASH_ARGV=()
7547 * BASH_LINENO=()
7548 * BASH_SOURCE=()
7549 * DIRSTACK=()
7550 * PIPESTATUS=([0]="0")
7551 * HISTFILE=/<xxx>/.bash_history
7552 * HISTFILESIZE=500
7553 * HISTSIZE=500
7554 * MAILCHECK=60
7555 * PATH=/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:.
7556 * SHELL=/bin/bash
7557 * SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor
7558 * TERM=dumb
7559 * OPTERR=1
7560 * OPTIND=1
7561 * IFS=$' \t\n'
7562 * PS1='\s-\v\$ '
7563 * PS2='> '
7564 * PS4='+ '
7565 */
7566
Denis Vlasenko38f63192007-01-22 09:03:07 +00007567#if ENABLE_FEATURE_EDITING
Denis Vlasenko87a86552008-07-29 19:43:10 +00007568 G.line_input_state = new_line_input_t(FOR_SHELL);
Denys Vlasenko99862cb2010-09-12 17:34:13 +02007569# if defined MAX_HISTORY && MAX_HISTORY > 0 && ENABLE_HUSH_SAVEHISTORY
7570 {
7571 const char *hp = get_local_var_value("HISTFILE");
7572 if (!hp) {
7573 hp = get_local_var_value("HOME");
7574 if (hp) {
7575 G.line_input_state->hist_file = concat_path_file(hp, ".hush_history");
7576 //set_local_var(xasprintf("HISTFILE=%s", ...));
7577 }
7578 }
7579 }
7580# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00007581#endif
Denys Vlasenko99862cb2010-09-12 17:34:13 +02007582
Denis Vlasenko87a86552008-07-29 19:43:10 +00007583 G.global_argc = argc;
7584 G.global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00007585 /* Initialize some more globals to non-zero values */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00007586 cmdedit_update_prompt();
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00007587
Denis Vlasenkoed782372009-04-10 00:45:02 +00007588 if (setjmp(die_jmp)) {
7589 /* xfunc has failed! die die die */
7590 /* no EXIT traps, this is an escape hatch! */
7591 G.exiting = 1;
7592 hush_exit(xfunc_error_retval);
7593 }
7594
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00007595 /* Shell is non-interactive at first. We need to call
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007596 * init_sigmasks() if we are going to execute "sh <script>",
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00007597 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007598 * If we later decide that we are interactive, we run init_sigmasks()
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00007599 * in order to intercept (more) signals.
7600 */
7601
7602 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00007603 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007604 builtin_argc = 0;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007605 while (1) {
Denys Vlasenkoa67a9622009-08-20 03:38:58 +02007606 opt = getopt(argc, argv, "+c:xins"
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007607#if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00007608 "<:$:R:V:"
7609# if ENABLE_HUSH_FUNCTIONS
7610 "F:"
7611# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007612#endif
7613 );
7614 if (opt <= 0)
7615 break;
Eric Andersen25f27032001-04-26 23:22:31 +00007616 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007617 case 'c':
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007618 /* Possibilities:
7619 * sh ... -c 'script'
7620 * sh ... -c 'script' ARG0 [ARG1...]
7621 * On NOMMU, if builtin_argc != 0,
Denys Vlasenko17323a62010-01-28 01:57:05 +01007622 * sh ... -c 'builtin' BARGV... "" ARG0 [ARG1...]
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007623 * "" needs to be replaced with NULL
7624 * and BARGV vector fed to builtin function.
Denys Vlasenko17323a62010-01-28 01:57:05 +01007625 * Note: the form without ARG0 never happens:
7626 * sh ... -c 'builtin' BARGV... ""
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007627 */
Denys Vlasenkodea47882009-10-09 15:40:49 +02007628 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007629 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02007630 G.root_ppid = getppid();
7631 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00007632 G.global_argv = argv + optind;
7633 G.global_argc = argc - optind;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007634 if (builtin_argc) {
7635 /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */
7636 const struct built_in_command *x;
7637
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007638 init_sigmasks();
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007639 x = find_builtin(optarg);
7640 if (x) { /* paranoia */
7641 G.global_argc -= builtin_argc; /* skip [BARGV...] "" */
7642 G.global_argv += builtin_argc;
7643 G.global_argv[-1] = NULL; /* replace "" */
Denys Vlasenko17323a62010-01-28 01:57:05 +01007644 G.last_exitcode = x->b_function(argv + optind - 1);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007645 }
7646 goto final_return;
7647 }
7648 if (!G.global_argv[0]) {
7649 /* -c 'script' (no params): prevent empty $0 */
7650 G.global_argv--; /* points to argv[i] of 'script' */
7651 G.global_argv[0] = argv[0];
Denys Vlasenko5ae8f1c2010-05-22 06:32:11 +02007652 G.global_argc++;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007653 } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007654 init_sigmasks();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007655 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007656 goto final_return;
7657 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00007658 /* Well, we cannot just declare interactiveness,
7659 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007660 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007661 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00007662 case 's':
7663 /* "-s" means "read from stdin", but this is how we always
7664 * operate, so simply do nothing here. */
7665 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007666#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00007667 case '<': /* "big heredoc" support */
Denys Vlasenko729ecb82010-06-07 14:14:26 +02007668 full_write1_str(optarg);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00007669 _exit(0);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007670 case '$': {
7671 unsigned long long empty_trap_mask;
7672
Denis Vlasenko34e573d2009-04-06 12:56:28 +00007673 G.root_pid = bb_strtou(optarg, &optarg, 16);
7674 optarg++;
Denys Vlasenkodea47882009-10-09 15:40:49 +02007675 G.root_ppid = bb_strtou(optarg, &optarg, 16);
7676 optarg++;
Denis Vlasenko34e573d2009-04-06 12:56:28 +00007677 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
7678 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00007679 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007680 optarg++;
7681 builtin_argc = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007682 optarg++;
7683 empty_trap_mask = bb_strtoull(optarg, &optarg, 16);
7684 if (empty_trap_mask != 0) {
7685 int sig;
7686 init_sigmasks();
7687 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
7688 for (sig = 1; sig < NSIG; sig++) {
7689 if (empty_trap_mask & (1LL << sig)) {
7690 G.traps[sig] = xzalloc(1); /* == xstrdup(""); */
7691 sigaddset(&G.blocked_set, sig);
7692 }
7693 }
7694 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7695 }
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00007696# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00007697 optarg++;
7698 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00007699# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00007700 break;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007701 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007702 case 'R':
7703 case 'V':
Denys Vlasenko295fef82009-06-03 12:47:26 +02007704 set_local_var(xstrdup(optarg), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ opt == 'R');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007705 break;
Denis Vlasenkobc569742009-04-12 20:35:19 +00007706# if ENABLE_HUSH_FUNCTIONS
7707 case 'F': {
7708 struct function *funcp = new_function(optarg);
7709 /* funcp->name is already set to optarg */
7710 /* funcp->body is set to NULL. It's a special case. */
7711 funcp->body_as_string = argv[optind];
7712 optind++;
7713 break;
7714 }
7715# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007716#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00007717 case 'n':
7718 case 'x':
Denys Vlasenko6696eac2010-11-14 02:01:50 +01007719 if (set_mode(1, opt, NULL) == 0) /* no error */
Mike Frysingerad88d5a2009-03-28 13:44:51 +00007720 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007721 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00007722#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007723 fprintf(stderr, "Usage: sh [FILE]...\n"
7724 " or: sh -c command [args]...\n\n");
7725 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00007726#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007727 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00007728#endif
Eric Andersen25f27032001-04-26 23:22:31 +00007729 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007730 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007731
Denys Vlasenkodea47882009-10-09 15:40:49 +02007732 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007733 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02007734 G.root_ppid = getppid();
7735 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007736
7737 /* If we are login shell... */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007738 if (argv[0] && argv[0][0] == '-') {
7739 FILE *input;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007740 debug_printf("sourcing /etc/profile\n");
7741 input = fopen_for_read("/etc/profile");
7742 if (input != NULL) {
7743 close_on_exec_on(fileno(input));
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007744 init_sigmasks();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007745 parse_and_run_file(input);
7746 fclose(input);
7747 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007748 /* bash: after sourcing /etc/profile,
7749 * tries to source (in the given order):
7750 * ~/.bash_profile, ~/.bash_login, ~/.profile,
Denys Vlasenko28a105d2009-06-01 11:26:30 +02007751 * stopping on first found. --noprofile turns this off.
Denis Vlasenkof9375282009-04-05 19:13:39 +00007752 * bash also sources ~/.bash_logout on exit.
7753 * If called as sh, skips .bash_XXX files.
7754 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007755 }
7756
Denis Vlasenkof9375282009-04-05 19:13:39 +00007757 if (argv[optind]) {
7758 FILE *input;
7759 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00007760 * "bash <script>" (which is never interactive (unless -i?))
7761 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00007762 * If called as sh, does the same but with $ENV.
7763 */
7764 debug_printf("running script '%s'\n", argv[optind]);
7765 G.global_argv = argv + optind;
7766 G.global_argc = argc - optind;
7767 input = xfopen_for_read(argv[optind]);
7768 close_on_exec_on(fileno(input));
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007769 init_sigmasks();
Denis Vlasenkof9375282009-04-05 19:13:39 +00007770 parse_and_run_file(input);
7771#if ENABLE_FEATURE_CLEAN_UP
7772 fclose(input);
7773#endif
7774 goto final_return;
7775 }
7776
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00007777 /* Up to here, shell was non-interactive. Now it may become one.
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007778 * NB: don't forget to (re)run init_sigmasks() as needed.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00007779 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00007780
Denys Vlasenko28a105d2009-06-01 11:26:30 +02007781 /* A shell is interactive if the '-i' flag was given,
7782 * or if all of the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00007783 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00007784 * no arguments remaining or the -s flag given
7785 * standard input is a terminal
7786 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00007787 * Refer to Posix.2, the description of the 'sh' utility.
7788 */
7789#if ENABLE_HUSH_JOB
7790 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Mike Frysinger38478a62009-05-20 04:48:06 -04007791 G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
7792 debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp);
7793 if (G_saved_tty_pgrp < 0)
7794 G_saved_tty_pgrp = 0;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007795
7796 /* try to dup stdin to high fd#, >= 255 */
7797 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
7798 if (G_interactive_fd < 0) {
7799 /* try to dup to any fd */
7800 G_interactive_fd = dup(STDIN_FILENO);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007801 if (G_interactive_fd < 0) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007802 /* give up */
7803 G_interactive_fd = 0;
Mike Frysinger38478a62009-05-20 04:48:06 -04007804 G_saved_tty_pgrp = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00007805 }
7806 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007807// TODO: track & disallow any attempts of user
7808// to (inadvertently) close/redirect G_interactive_fd
Eric Andersen25f27032001-04-26 23:22:31 +00007809 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007810 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007811 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00007812 close_on_exec_on(G_interactive_fd);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007813
Mike Frysinger38478a62009-05-20 04:48:06 -04007814 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007815 /* If we were run as 'hush &', sleep until we are
7816 * in the foreground (tty pgrp == our pgrp).
7817 * If we get started under a job aware app (like bash),
7818 * make sure we are now in charge so we don't fight over
7819 * who gets the foreground */
7820 while (1) {
7821 pid_t shell_pgrp = getpgrp();
Mike Frysinger38478a62009-05-20 04:48:06 -04007822 G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
7823 if (G_saved_tty_pgrp == shell_pgrp)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007824 break;
7825 /* send TTIN to ourself (should stop us) */
7826 kill(- shell_pgrp, SIGTTIN);
7827 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007828 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007829
Denis Vlasenkof9375282009-04-05 19:13:39 +00007830 /* Block some signals */
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007831 init_sigmasks();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007832
Mike Frysinger38478a62009-05-20 04:48:06 -04007833 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007834 /* Set other signals to restore saved_tty_pgrp */
7835 set_fatal_handlers();
7836 /* Put ourselves in our own process group
7837 * (bash, too, does this only if ctty is available) */
7838 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
7839 /* Grab control of the terminal */
7840 tcsetpgrp(G_interactive_fd, getpid());
7841 }
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00007842 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00007843 * (we reset die_sleep = 0 whereever we [v]fork) */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00007844 enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007845 } else {
7846 init_sigmasks();
7847 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00007848#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00007849 /* No job control compiled in, only prompt/line editing */
7850 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007851 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
7852 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00007853 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007854 G_interactive_fd = dup(STDIN_FILENO);
7855 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00007856 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007857 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00007858 }
7859 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007860 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00007861 close_on_exec_on(G_interactive_fd);
Denis Vlasenkof9375282009-04-05 19:13:39 +00007862 }
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007863 init_sigmasks();
Denis Vlasenkof9375282009-04-05 19:13:39 +00007864#else
7865 /* We have interactiveness code disabled */
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007866 init_sigmasks();
Denis Vlasenkof9375282009-04-05 19:13:39 +00007867#endif
7868 /* bash:
7869 * if interactive but not a login shell, sources ~/.bashrc
7870 * (--norc turns this off, --rcfile <file> overrides)
7871 */
7872
7873 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Denys Vlasenkoc34c0332009-09-29 12:25:30 +02007874 /* note: ash and hush share this string */
7875 printf("\n\n%s %s\n"
7876 IF_HUSH_HELP("Enter 'help' for a list of built-in commands.\n")
7877 "\n",
7878 bb_banner,
7879 "hush - the humble shell"
7880 );
Mike Frysingerb2705e12009-03-23 08:44:02 +00007881 }
7882
Denis Vlasenkof9375282009-04-05 19:13:39 +00007883 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00007884
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007885 final_return:
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00007886 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00007887}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00007888
7889
Denys Vlasenko1cc4b132009-08-21 00:05:51 +02007890#if ENABLE_MSH
7891int msh_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
7892int msh_main(int argc, char **argv)
7893{
7894 //bb_error_msg("msh is deprecated, please use hush instead");
7895 return hush_main(argc, argv);
7896}
7897#endif
7898
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007899
7900/*
7901 * Built-ins
7902 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007903static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007904{
7905 return 0;
7906}
7907
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02007908static int run_applet_main(char **argv, int (*applet_main_func)(int argc, char **argv))
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007909{
7910 int argc = 0;
7911 while (*argv) {
7912 argc++;
7913 argv++;
7914 }
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02007915 return applet_main_func(argc, argv - argc);
Mike Frysingerccb19592009-10-15 03:31:15 -04007916}
7917
7918static int FAST_FUNC builtin_test(char **argv)
7919{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02007920 return run_applet_main(argv, test_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007921}
7922
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007923static int FAST_FUNC builtin_echo(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007924{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02007925 return run_applet_main(argv, echo_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007926}
7927
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04007928#if ENABLE_PRINTF
7929static int FAST_FUNC builtin_printf(char **argv)
7930{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02007931 return run_applet_main(argv, printf_main);
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04007932}
7933#endif
7934
Denys Vlasenkob131cce2010-05-20 03:39:43 +02007935static char **skip_dash_dash(char **argv)
7936{
7937 argv++;
7938 if (argv[0] && argv[0][0] == '-' && argv[0][1] == '-' && argv[0][2] == '\0')
7939 argv++;
7940 return argv;
7941}
7942
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007943static int FAST_FUNC builtin_eval(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007944{
7945 int rcode = EXIT_SUCCESS;
7946
Denys Vlasenkob131cce2010-05-20 03:39:43 +02007947 argv = skip_dash_dash(argv);
7948 if (*argv) {
Denis Vlasenkob0a64782009-04-06 11:33:07 +00007949 char *str = expand_strvec_to_string(argv);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007950 /* bash:
7951 * eval "echo Hi; done" ("done" is syntax error):
7952 * "echo Hi" will not execute too.
7953 */
7954 parse_and_run_string(str);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007955 free(str);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00007956 rcode = G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007957 }
7958 return rcode;
7959}
7960
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007961static int FAST_FUNC builtin_cd(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007962{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02007963 const char *newdir;
7964
7965 argv = skip_dash_dash(argv);
7966 newdir = argv[0];
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007967 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007968 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00007969 * bash says "bash: cd: HOME not set" and does nothing
7970 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007971 */
Denys Vlasenko90a99042009-09-06 02:36:23 +02007972 const char *home = get_local_var_value("HOME");
7973 newdir = home ? home : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00007974 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007975 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007976 /* Mimic bash message exactly */
7977 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007978 return EXIT_FAILURE;
7979 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02007980 /* Read current dir (get_cwd(1) is inside) and set PWD.
7981 * Note: do not enforce exporting. If PWD was unset or unexported,
7982 * set it again, but do not export. bash does the same.
7983 */
7984 set_pwd_var(/*exp:*/ 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007985 return EXIT_SUCCESS;
7986}
7987
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007988static int FAST_FUNC builtin_exec(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007989{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02007990 argv = skip_dash_dash(argv);
7991 if (argv[0] == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007992 return EXIT_SUCCESS; /* bash does this */
Denys Vlasenkof37eb392009-10-18 11:46:35 +02007993
Denys Vlasenkof37eb392009-10-18 11:46:35 +02007994 /* Careful: we can end up here after [v]fork. Do not restore
7995 * tty pgrp then, only top-level shell process does that */
7996 if (G_saved_tty_pgrp && getpid() == G.root_pid)
7997 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
7998
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02007999 /* TODO: if exec fails, bash does NOT exit! We do.
8000 * We'll need to undo sigprocmask (it's inside execvp_or_die)
8001 * and tcsetpgrp, and this is inherently racy.
8002 */
8003 execvp_or_die(argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008004}
8005
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008006static int FAST_FUNC builtin_exit(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008007{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00008008 debug_printf_exec("%s()\n", __func__);
Denis Vlasenko40e84372009-04-18 11:23:38 +00008009
8010 /* interactive bash:
8011 * # trap "echo EEE" EXIT
8012 * # exit
8013 * exit
8014 * There are stopped jobs.
8015 * (if there are _stopped_ jobs, running ones don't count)
8016 * # exit
8017 * exit
8018 # EEE (then bash exits)
8019 *
Denys Vlasenkoa110c902010-09-12 15:38:04 +02008020 * TODO: we can use G.exiting = -1 as indicator "last cmd was exit"
Denis Vlasenko40e84372009-04-18 11:23:38 +00008021 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00008022
8023 /* note: EXIT trap is run by hush_exit */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008024 argv = skip_dash_dash(argv);
8025 if (argv[0] == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008026 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008027 /* mimic bash: exit 123abc == exit 255 + error msg */
8028 xfunc_error_retval = 255;
8029 /* bash: exit -2 == exit 254, no error msg */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008030 hush_exit(xatoi(argv[0]) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008031}
8032
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008033static void print_escaped(const char *s)
8034{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008035 if (*s == '\'')
8036 goto squote;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008037 do {
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008038 const char *p = strchrnul(s, '\'');
8039 /* print 'xxxx', possibly just '' */
8040 printf("'%.*s'", (int)(p - s), s);
8041 if (*p == '\0')
8042 break;
8043 s = p;
8044 squote:
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008045 /* s points to '; print "'''...'''" */
8046 putchar('"');
8047 do putchar('\''); while (*++s == '\'');
8048 putchar('"');
8049 } while (*s);
8050}
8051
Denys Vlasenko295fef82009-06-03 12:47:26 +02008052#if !ENABLE_HUSH_LOCAL
8053#define helper_export_local(argv, exp, lvl) \
8054 helper_export_local(argv, exp)
8055#endif
8056static void helper_export_local(char **argv, int exp, int lvl)
8057{
8058 do {
8059 char *name = *argv;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02008060 char *name_end = strchrnul(name, '=');
Denys Vlasenko295fef82009-06-03 12:47:26 +02008061
8062 /* So far we do not check that name is valid (TODO?) */
8063
Denys Vlasenko27c56f12010-09-07 09:56:34 +02008064 if (*name_end == '\0') {
8065 struct variable *var, **vpp;
Denys Vlasenko295fef82009-06-03 12:47:26 +02008066
Denys Vlasenko27c56f12010-09-07 09:56:34 +02008067 vpp = get_ptr_to_local_var(name, name_end - name);
8068 var = vpp ? *vpp : NULL;
8069
Denys Vlasenko295fef82009-06-03 12:47:26 +02008070 if (exp == -1) { /* unexporting? */
8071 /* export -n NAME (without =VALUE) */
8072 if (var) {
8073 var->flg_export = 0;
8074 debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
8075 unsetenv(name);
8076 } /* else: export -n NOT_EXISTING_VAR: no-op */
8077 continue;
8078 }
8079 if (exp == 1) { /* exporting? */
8080 /* export NAME (without =VALUE) */
8081 if (var) {
8082 var->flg_export = 1;
8083 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
8084 putenv(var->varstr);
8085 continue;
8086 }
8087 }
8088 /* Exporting non-existing variable.
8089 * bash does not put it in environment,
8090 * but remembers that it is exported,
8091 * and does put it in env when it is set later.
8092 * We just set it to "" and export. */
8093 /* Or, it's "local NAME" (without =VALUE).
8094 * bash sets the value to "". */
8095 name = xasprintf("%s=", name);
8096 } else {
8097 /* (Un)exporting/making local NAME=VALUE */
8098 name = xstrdup(name);
8099 }
8100 set_local_var(name, /*exp:*/ exp, /*lvl:*/ lvl, /*ro:*/ 0);
8101 } while (*++argv);
8102}
8103
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008104static int FAST_FUNC builtin_export(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008105{
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00008106 unsigned opt_unexport;
8107
Denys Vlasenkodf5131c2009-06-07 16:04:17 +02008108#if ENABLE_HUSH_EXPORT_N
8109 /* "!": do not abort on errors */
8110 opt_unexport = getopt32(argv, "!n");
8111 if (opt_unexport == (uint32_t)-1)
8112 return EXIT_FAILURE;
8113 argv += optind;
8114#else
8115 opt_unexport = 0;
8116 argv++;
8117#endif
8118
8119 if (argv[0] == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008120 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00008121 if (e) {
8122 while (*e) {
8123#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008124 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00008125#else
8126 /* ash emits: export VAR='VAL'
8127 * bash: declare -x VAR="VAL"
8128 * we follow ash example */
8129 const char *s = *e++;
8130 const char *p = strchr(s, '=');
8131
8132 if (!p) /* wtf? take next variable */
8133 continue;
8134 /* export var= */
8135 printf("export %.*s", (int)(p - s) + 1, s);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008136 print_escaped(p + 1);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00008137 putchar('\n');
8138#endif
8139 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01008140 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00008141 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008142 return EXIT_SUCCESS;
8143 }
8144
Denys Vlasenko295fef82009-06-03 12:47:26 +02008145 helper_export_local(argv, (opt_unexport ? -1 : 1), 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008146
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008147 return EXIT_SUCCESS;
8148}
8149
Denys Vlasenko295fef82009-06-03 12:47:26 +02008150#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008151static int FAST_FUNC builtin_local(char **argv)
Denys Vlasenko295fef82009-06-03 12:47:26 +02008152{
8153 if (G.func_nest_level == 0) {
8154 bb_error_msg("%s: not in a function", argv[0]);
8155 return EXIT_FAILURE; /* bash compat */
8156 }
8157 helper_export_local(argv, 0, G.func_nest_level);
8158 return EXIT_SUCCESS;
8159}
8160#endif
8161
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008162static int FAST_FUNC builtin_trap(char **argv)
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008163{
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008164 int sig;
8165 char *new_cmd;
8166
8167 if (!G.traps)
8168 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
8169
8170 argv++;
8171 if (!*argv) {
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00008172 int i;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008173 /* No args: print all trapped */
8174 for (i = 0; i < NSIG; ++i) {
8175 if (G.traps[i]) {
8176 printf("trap -- ");
8177 print_escaped(G.traps[i]);
Denys Vlasenkoe74aaf92009-09-27 02:05:45 +02008178 /* note: bash adds "SIG", but only if invoked
8179 * as "bash". If called as "sh", or if set -o posix,
8180 * then it prints short signal names.
8181 * We are printing short names: */
8182 printf(" %s\n", get_signame(i));
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008183 }
8184 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01008185 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008186 return EXIT_SUCCESS;
8187 }
8188
8189 new_cmd = NULL;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008190 /* If first arg is a number: reset all specified signals */
8191 sig = bb_strtou(*argv, NULL, 10);
8192 if (errno == 0) {
8193 int ret;
8194 process_sig_list:
8195 ret = EXIT_SUCCESS;
8196 while (*argv) {
8197 sig = get_signum(*argv++);
8198 if (sig < 0 || sig >= NSIG) {
8199 ret = EXIT_FAILURE;
8200 /* Mimic bash message exactly */
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00008201 bb_perror_msg("trap: %s: invalid signal specification", argv[-1]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008202 continue;
8203 }
8204
8205 free(G.traps[sig]);
8206 G.traps[sig] = xstrdup(new_cmd);
8207
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008208 debug_printf("trap: setting SIG%s (%i) to '%s'\n",
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008209 get_signame(sig), sig, G.traps[sig]);
8210
8211 /* There is no signal for 0 (EXIT) */
8212 if (sig == 0)
8213 continue;
8214
8215 if (new_cmd) {
8216 sigaddset(&G.blocked_set, sig);
8217 } else {
8218 /* There was a trap handler, we are removing it
8219 * (if sig has non-DFL handling,
8220 * we don't need to do anything) */
8221 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
8222 continue;
8223 sigdelset(&G.blocked_set, sig);
8224 }
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008225 }
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00008226 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008227 return ret;
8228 }
8229
8230 if (!argv[1]) { /* no second arg */
8231 bb_error_msg("trap: invalid arguments");
8232 return EXIT_FAILURE;
8233 }
8234
8235 /* First arg is "-": reset all specified to default */
8236 /* First arg is "--": skip it, the rest is "handler SIGs..." */
8237 /* Everything else: set arg as signal handler
8238 * (includes "" case, which ignores signal) */
8239 if (argv[0][0] == '-') {
8240 if (argv[0][1] == '\0') { /* "-" */
8241 /* new_cmd remains NULL: "reset these sigs" */
8242 goto reset_traps;
8243 }
8244 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
8245 argv++;
8246 }
8247 /* else: "-something", no special meaning */
8248 }
8249 new_cmd = *argv;
8250 reset_traps:
8251 argv++;
8252 goto process_sig_list;
8253}
8254
Mike Frysinger93cadc22009-05-27 17:06:25 -04008255/* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008256static int FAST_FUNC builtin_type(char **argv)
Mike Frysinger93cadc22009-05-27 17:06:25 -04008257{
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02008258 int ret = EXIT_SUCCESS;
Mike Frysinger93cadc22009-05-27 17:06:25 -04008259
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02008260 while (*++argv) {
Mike Frysinger93cadc22009-05-27 17:06:25 -04008261 const char *type;
Denys Vlasenko171932d2009-05-28 17:07:22 +02008262 char *path = NULL;
Mike Frysinger93cadc22009-05-27 17:06:25 -04008263
8264 if (0) {} /* make conditional compile easier below */
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02008265 /*else if (find_alias(*argv))
Mike Frysinger93cadc22009-05-27 17:06:25 -04008266 type = "an alias";*/
8267#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02008268 else if (find_function(*argv))
Mike Frysinger93cadc22009-05-27 17:06:25 -04008269 type = "a function";
8270#endif
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02008271 else if (find_builtin(*argv))
Mike Frysinger93cadc22009-05-27 17:06:25 -04008272 type = "a shell builtin";
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02008273 else if ((path = find_in_path(*argv)) != NULL)
8274 type = path;
Denys Vlasenko5d7cca22009-05-28 09:58:43 +02008275 else {
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02008276 bb_error_msg("type: %s: not found", *argv);
Mike Frysinger93cadc22009-05-27 17:06:25 -04008277 ret = EXIT_FAILURE;
Denys Vlasenko5d7cca22009-05-28 09:58:43 +02008278 continue;
8279 }
Mike Frysinger93cadc22009-05-27 17:06:25 -04008280
Denys Vlasenko5d7cca22009-05-28 09:58:43 +02008281 printf("%s is %s\n", *argv, type);
8282 free(path);
Mike Frysinger93cadc22009-05-27 17:06:25 -04008283 }
8284
8285 return ret;
8286}
8287
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008288#if ENABLE_HUSH_JOB
8289/* built-in 'fg' and 'bg' handler */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008290static int FAST_FUNC builtin_fg_bg(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008291{
8292 int i, jobnum;
8293 struct pipe *pi;
8294
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008295 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008296 return EXIT_FAILURE;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008297
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008298 /* If they gave us no args, assume they want the last backgrounded task */
8299 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00008300 for (pi = G.job_list; pi; pi = pi->next) {
8301 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008302 goto found;
8303 }
8304 }
8305 bb_error_msg("%s: no current job", argv[0]);
8306 return EXIT_FAILURE;
8307 }
8308 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
8309 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
8310 return EXIT_FAILURE;
8311 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008312 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008313 if (pi->jobid == jobnum) {
8314 goto found;
8315 }
8316 }
8317 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
8318 return EXIT_FAILURE;
8319 found:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00008320 /* TODO: bash prints a string representation
8321 * of job being foregrounded (like "sleep 1 | cat") */
Mike Frysinger38478a62009-05-20 04:48:06 -04008322 if (argv[0][0] == 'f' && G_saved_tty_pgrp) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008323 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008324 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008325 }
8326
8327 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00008328 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
8329 for (i = 0; i < pi->num_cmds; i++) {
8330 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
8331 pi->cmds[i].is_stopped = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008332 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00008333 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008334
8335 i = kill(- pi->pgrp, SIGCONT);
8336 if (i < 0) {
8337 if (errno == ESRCH) {
8338 delete_finished_bg_job(pi);
8339 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008340 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00008341 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008342 }
8343
Denis Vlasenko34d4d892009-04-04 20:24:37 +00008344 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008345 remove_bg_job(pi);
8346 return checkjobs_and_fg_shell(pi);
8347 }
8348 return EXIT_SUCCESS;
8349}
8350#endif
8351
8352#if ENABLE_HUSH_HELP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008353static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008354{
8355 const struct built_in_command *x;
8356
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008357 printf(
Denis Vlasenko34d4d892009-04-04 20:24:37 +00008358 "Built-in commands:\n"
8359 "------------------\n");
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008360 for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) {
Denys Vlasenko17323a62010-01-28 01:57:05 +01008361 if (x->b_descr)
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008362 printf("%-10s%s\n", x->b_cmd, x->b_descr);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008363 }
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008364 bb_putchar('\n');
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008365 return EXIT_SUCCESS;
8366}
8367#endif
8368
8369#if ENABLE_HUSH_JOB
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008370static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008371{
8372 struct pipe *job;
8373 const char *status_string;
8374
Denis Vlasenko87a86552008-07-29 19:43:10 +00008375 for (job = G.job_list; job; job = job->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00008376 if (job->alive_cmds == job->stopped_cmds)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008377 status_string = "Stopped";
8378 else
8379 status_string = "Running";
8380
8381 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
8382 }
8383 return EXIT_SUCCESS;
8384}
8385#endif
8386
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00008387#if HUSH_DEBUG
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008388static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM)
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00008389{
8390 void *p;
8391 unsigned long l;
8392
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008393# ifdef M_TRIM_THRESHOLD
Denys Vlasenko27726cb2009-09-12 14:48:33 +02008394 /* Optional. Reduces probability of false positives */
8395 malloc_trim(0);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008396# endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00008397 /* Crude attempt to find where "free memory" starts,
8398 * sans fragmentation. */
8399 p = malloc(240);
8400 l = (unsigned long)p;
8401 free(p);
8402 p = malloc(3400);
8403 if (l < (unsigned long)p) l = (unsigned long)p;
8404 free(p);
8405
8406 if (!G.memleak_value)
8407 G.memleak_value = l;
Denys Vlasenko9038d6f2009-07-15 20:02:19 +02008408
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00008409 l -= G.memleak_value;
8410 if ((long)l < 0)
8411 l = 0;
8412 l /= 1024;
8413 if (l > 127)
8414 l = 127;
8415
8416 /* Exitcode is "how many kilobytes we leaked since 1st call" */
8417 return l;
8418}
8419#endif
8420
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008421static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008422{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008423 puts(get_cwd(0));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008424 return EXIT_SUCCESS;
8425}
8426
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008427static int FAST_FUNC builtin_read(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008428{
Denys Vlasenko03dad222010-01-12 23:29:57 +01008429 const char *r;
8430 char *opt_n = NULL;
8431 char *opt_p = NULL;
8432 char *opt_t = NULL;
8433 char *opt_u = NULL;
8434 int read_flags;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00008435
Denys Vlasenko03dad222010-01-12 23:29:57 +01008436 /* "!": do not abort on errors.
8437 * Option string must start with "sr" to match BUILTIN_READ_xxx
8438 */
8439 read_flags = getopt32(argv, "!srn:p:t:u:", &opt_n, &opt_p, &opt_t, &opt_u);
8440 if (read_flags == (uint32_t)-1)
8441 return EXIT_FAILURE;
8442 argv += optind;
8443
8444 r = shell_builtin_read(set_local_var_from_halves,
8445 argv,
8446 get_local_var_value("IFS"), /* can be NULL */
8447 read_flags,
8448 opt_n,
8449 opt_p,
8450 opt_t,
8451 opt_u
8452 );
8453
8454 if ((uintptr_t)r > 1) {
8455 bb_error_msg("%s", r);
8456 r = (char*)(uintptr_t)1;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00008457 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008458
Denys Vlasenko03dad222010-01-12 23:29:57 +01008459 return (uintptr_t)r;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008460}
8461
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008462/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
8463 * built-in 'set' handler
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00008464 * SUSv3 says:
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008465 * set [-abCefhmnuvx] [-o option] [argument...]
8466 * set [+abCefhmnuvx] [+o option] [argument...]
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00008467 * set -- [argument...]
8468 * set -o
8469 * set +o
8470 * Implementations shall support the options in both their hyphen and
8471 * plus-sign forms. These options can also be specified as options to sh.
8472 * Examples:
8473 * Write out all variables and their values: set
8474 * Set $1, $2, and $3 and set "$#" to 3: set c a b
8475 * Turn on the -x and -v options: set -xv
8476 * Unset all positional parameters: set --
8477 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
8478 * Set the positional parameters to the expansion of x, even if x expands
8479 * with a leading '-' or '+': set -- $x
8480 *
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008481 * So far, we only support "set -- [argument...]" and some of the short names.
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00008482 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008483static int FAST_FUNC builtin_set(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008484{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00008485 int n;
8486 char **pp, **g_argv;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00008487 char *arg = *++argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008488
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00008489 if (arg == NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00008490 struct variable *e;
Denis Vlasenko87a86552008-07-29 19:43:10 +00008491 for (e = G.top_var; e; e = e->next)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008492 puts(e->varstr);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00008493 return EXIT_SUCCESS;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00008494 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008495
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008496 do {
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008497 if (strcmp(arg, "--") == 0) {
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008498 ++argv;
8499 goto set_argv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00008500 }
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00008501 if (arg[0] != '+' && arg[0] != '-')
8502 break;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008503 for (n = 1; arg[n]; ++n) {
8504 if (set_mode((arg[0] == '-'), arg[n], argv[1]))
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00008505 goto error;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008506 if (arg[n] == 'o' && argv[1])
8507 argv++;
8508 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00008509 } while ((arg = *++argv) != NULL);
8510 /* Now argv[0] is 1st argument */
8511
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008512 if (arg == NULL)
8513 return EXIT_SUCCESS;
8514 set_argv:
8515
Denis Vlasenko424f79b2009-03-22 14:23:34 +00008516 /* NB: G.global_argv[0] ($0) is never freed/changed */
8517 g_argv = G.global_argv;
8518 if (G.global_args_malloced) {
8519 pp = g_argv;
8520 while (*++pp)
8521 free(*pp);
8522 g_argv[1] = NULL;
8523 } else {
8524 G.global_args_malloced = 1;
8525 pp = xzalloc(sizeof(pp[0]) * 2);
8526 pp[0] = g_argv[0]; /* retain $0 */
8527 g_argv = pp;
8528 }
8529 /* This realloc's G.global_argv */
8530 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
8531
8532 n = 1;
8533 while (*++pp)
8534 n++;
8535 G.global_argc = n;
8536
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008537 return EXIT_SUCCESS;
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008538
8539 /* Nothing known, so abort */
8540 error:
8541 bb_error_msg("set: %s: invalid option", arg);
8542 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008543}
8544
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008545static int FAST_FUNC builtin_shift(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008546{
8547 int n = 1;
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008548 argv = skip_dash_dash(argv);
8549 if (argv[0]) {
8550 n = atoi(argv[0]);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008551 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008552 if (n >= 0 && n < G.global_argc) {
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00008553 if (G.global_args_malloced) {
8554 int m = 1;
8555 while (m <= n)
8556 free(G.global_argv[m++]);
8557 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008558 G.global_argc -= n;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00008559 memmove(&G.global_argv[1], &G.global_argv[n+1],
8560 G.global_argc * sizeof(G.global_argv[0]));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008561 return EXIT_SUCCESS;
8562 }
8563 return EXIT_FAILURE;
8564}
8565
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008566static int FAST_FUNC builtin_source(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008567{
Denys Vlasenkoe66cf822010-05-18 09:12:53 +02008568 char *arg_path, *filename;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008569 FILE *input;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00008570 save_arg_t sv;
Mike Frysinger885b6f22009-04-18 21:04:25 +00008571#if ENABLE_HUSH_FUNCTIONS
8572 smallint sv_flg;
8573#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008574
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008575 argv = skip_dash_dash(argv);
8576 filename = argv[0];
Denys Vlasenkoe66cf822010-05-18 09:12:53 +02008577 if (!filename) {
8578 /* bash says: "bash: .: filename argument required" */
8579 return 2; /* bash compat */
8580 }
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008581 arg_path = NULL;
Denys Vlasenkoe66cf822010-05-18 09:12:53 +02008582 if (!strchr(filename, '/')) {
8583 arg_path = find_in_path(filename);
8584 if (arg_path)
8585 filename = arg_path;
8586 }
8587 input = fopen_or_warn(filename, "r");
8588 free(arg_path);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008589 if (!input) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008590 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008591 return EXIT_FAILURE;
8592 }
8593 close_on_exec_on(fileno(input));
8594
Mike Frysinger885b6f22009-04-18 21:04:25 +00008595#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008596 sv_flg = G.flag_return_in_progress;
8597 /* "we are inside sourced file, ok to use return" */
8598 G.flag_return_in_progress = -1;
Mike Frysinger885b6f22009-04-18 21:04:25 +00008599#endif
Denis Vlasenko270b1c32009-04-17 18:54:50 +00008600 save_and_replace_G_args(&sv, argv);
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008601
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008602 parse_and_run_file(input);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008603 fclose(input);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00008604
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008605 restore_G_args(&sv, argv);
Mike Frysinger885b6f22009-04-18 21:04:25 +00008606#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008607 G.flag_return_in_progress = sv_flg;
Mike Frysinger885b6f22009-04-18 21:04:25 +00008608#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008609
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008610 return G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008611}
8612
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008613static int FAST_FUNC builtin_umask(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008614{
Denis Vlasenkoeb858492009-04-18 02:06:54 +00008615 int rc;
8616 mode_t mask;
8617
8618 mask = umask(0);
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008619 argv = skip_dash_dash(argv);
8620 if (argv[0]) {
Denis Vlasenkoeb858492009-04-18 02:06:54 +00008621 mode_t old_mask = mask;
8622
8623 mask ^= 0777;
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008624 rc = bb_parse_mode(argv[0], &mask);
Denis Vlasenkoeb858492009-04-18 02:06:54 +00008625 mask ^= 0777;
8626 if (rc == 0) {
8627 mask = old_mask;
8628 /* bash messages:
8629 * bash: umask: 'q': invalid symbolic mode operator
8630 * bash: umask: 999: octal number out of range
8631 */
Denys Vlasenko44c86ce2010-05-20 04:22:55 +02008632 bb_error_msg("%s: invalid mode '%s'", "umask", argv[0]);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008633 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008634 } else {
Denis Vlasenkoeb858492009-04-18 02:06:54 +00008635 rc = 1;
8636 /* Mimic bash */
8637 printf("%04o\n", (unsigned) mask);
8638 /* fall through and restore mask which we set to 0 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008639 }
Denis Vlasenkoeb858492009-04-18 02:06:54 +00008640 umask(mask);
8641
8642 return !rc; /* rc != 0 - success */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008643}
8644
Mike Frysingerd690f682009-03-30 06:50:54 +00008645/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008646static int FAST_FUNC builtin_unset(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008647{
Mike Frysingerd690f682009-03-30 06:50:54 +00008648 int ret;
Denis Vlasenko28e67962009-04-26 23:22:40 +00008649 unsigned opts;
Mike Frysingerd690f682009-03-30 06:50:54 +00008650
Denis Vlasenko28e67962009-04-26 23:22:40 +00008651 /* "!": do not abort on errors */
8652 /* "+": stop at 1st non-option */
8653 opts = getopt32(argv, "!+vf");
8654 if (opts == (unsigned)-1)
8655 return EXIT_FAILURE;
8656 if (opts == 3) {
8657 bb_error_msg("unset: -v and -f are exclusive");
8658 return EXIT_FAILURE;
Mike Frysingerd690f682009-03-30 06:50:54 +00008659 }
Denis Vlasenko28e67962009-04-26 23:22:40 +00008660 argv += optind;
Mike Frysingerd690f682009-03-30 06:50:54 +00008661
8662 ret = EXIT_SUCCESS;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008663 while (*argv) {
Denis Vlasenko28e67962009-04-26 23:22:40 +00008664 if (!(opts & 2)) { /* not -f */
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008665 if (unset_local_var(*argv)) {
8666 /* unset <nonexistent_var> doesn't fail.
8667 * Error is when one tries to unset RO var.
8668 * Message was printed by unset_local_var. */
Mike Frysingerd690f682009-03-30 06:50:54 +00008669 ret = EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008670 }
Mike Frysingerd690f682009-03-30 06:50:54 +00008671 }
Denis Vlasenko40e84372009-04-18 11:23:38 +00008672#if ENABLE_HUSH_FUNCTIONS
8673 else {
8674 unset_func(*argv);
8675 }
8676#endif
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008677 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00008678 }
8679 return ret;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008680}
Denis Vlasenkobcb25532008-07-28 23:04:34 +00008681
Mike Frysinger56bdea12009-03-28 20:01:58 +00008682/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008683static int FAST_FUNC builtin_wait(char **argv)
Mike Frysinger56bdea12009-03-28 20:01:58 +00008684{
8685 int ret = EXIT_SUCCESS;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00008686 int status, sig;
Mike Frysinger56bdea12009-03-28 20:01:58 +00008687
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008688 argv = skip_dash_dash(argv);
8689 if (argv[0] == NULL) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +00008690 /* Don't care about wait results */
8691 /* Note 1: must wait until there are no more children */
8692 /* Note 2: must be interruptible */
8693 /* Examples:
8694 * $ sleep 3 & sleep 6 & wait
8695 * [1] 30934 sleep 3
8696 * [2] 30935 sleep 6
8697 * [1] Done sleep 3
8698 * [2] Done sleep 6
8699 * $ sleep 3 & sleep 6 & wait
8700 * [1] 30936 sleep 3
8701 * [2] 30937 sleep 6
8702 * [1] Done sleep 3
8703 * ^C <-- after ~4 sec from keyboard
8704 * $
8705 */
8706 sigaddset(&G.blocked_set, SIGCHLD);
8707 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
8708 while (1) {
8709 checkjobs(NULL);
8710 if (errno == ECHILD)
8711 break;
8712 /* Wait for SIGCHLD or any other signal of interest */
8713 /* sigtimedwait with infinite timeout: */
8714 sig = sigwaitinfo(&G.blocked_set, NULL);
8715 if (sig > 0) {
8716 sig = check_and_run_traps(sig);
8717 if (sig && sig != SIGCHLD) { /* see note 2 */
8718 ret = 128 + sig;
8719 break;
8720 }
8721 }
8722 }
8723 sigdelset(&G.blocked_set, SIGCHLD);
8724 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
8725 return ret;
8726 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00008727
Denis Vlasenko7566bae2009-03-31 17:24:49 +00008728 /* This is probably buggy wrt interruptible-ness */
Denis Vlasenkod5762932009-03-31 11:22:57 +00008729 while (*argv) {
8730 pid_t pid = bb_strtou(*argv, NULL, 10);
Mike Frysinger40b8dc42009-03-29 00:50:30 +00008731 if (errno) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00008732 /* mimic bash message */
8733 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00008734 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008735 }
8736 if (waitpid(pid, &status, 0) == pid) {
Mike Frysinger56bdea12009-03-28 20:01:58 +00008737 if (WIFSIGNALED(status))
8738 ret = 128 + WTERMSIG(status);
8739 else if (WIFEXITED(status))
8740 ret = WEXITSTATUS(status);
Denis Vlasenkod5762932009-03-31 11:22:57 +00008741 else /* wtf? */
Mike Frysinger56bdea12009-03-28 20:01:58 +00008742 ret = EXIT_FAILURE;
8743 } else {
Denis Vlasenkod5762932009-03-31 11:22:57 +00008744 bb_perror_msg("wait %s", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00008745 ret = 127;
8746 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00008747 argv++;
Mike Frysinger56bdea12009-03-28 20:01:58 +00008748 }
8749
8750 return ret;
8751}
8752
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008753#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
8754static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
8755{
8756 if (argv[1]) {
8757 def = bb_strtou(argv[1], NULL, 10);
8758 if (errno || def < def_min || argv[2]) {
8759 bb_error_msg("%s: bad arguments", argv[0]);
8760 def = UINT_MAX;
8761 }
8762 }
8763 return def;
8764}
8765#endif
8766
Denis Vlasenkodadfb492008-07-29 10:16:05 +00008767#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008768static int FAST_FUNC builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00008769{
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008770 unsigned depth;
Denis Vlasenko87a86552008-07-29 19:43:10 +00008771 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00008772 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00008773 return EXIT_SUCCESS; /* bash compat */
8774 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008775 G.flag_break_continue++; /* BC_BREAK = 1 */
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008776
8777 G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
8778 if (depth == UINT_MAX)
8779 G.flag_break_continue = BC_BREAK;
8780 if (G.depth_of_loop < depth)
Denis Vlasenko87a86552008-07-29 19:43:10 +00008781 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008782
Denis Vlasenkobcb25532008-07-28 23:04:34 +00008783 return EXIT_SUCCESS;
8784}
8785
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008786static int FAST_FUNC builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00008787{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00008788 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
8789 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00008790}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00008791#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008792
8793#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008794static int FAST_FUNC builtin_return(char **argv)
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008795{
8796 int rc;
8797
8798 if (G.flag_return_in_progress != -1) {
8799 bb_error_msg("%s: not in a function or sourced script", argv[0]);
8800 return EXIT_FAILURE; /* bash compat */
8801 }
8802
8803 G.flag_return_in_progress = 1;
8804
8805 /* bash:
8806 * out of range: wraps around at 256, does not error out
8807 * non-numeric param:
8808 * f() { false; return qwe; }; f; echo $?
8809 * bash: return: qwe: numeric argument required <== we do this
8810 * 255 <== we also do this
8811 */
8812 rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
8813 return rc;
8814}
8815#endif