blob: 9b51f389e385b7bcd9776788bec4fc40cd179ce1 [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 Vlasenko8da415e2010-12-05 01:30:14 +010084#if !(defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) \
85 || defined(__APPLE__) \
86 )
87# include <malloc.h> /* for malloc_trim */
88#endif
Denis Vlasenkobe709c22008-07-28 00:01:16 +000089#include <glob.h>
90/* #include <dmalloc.h> */
91#if ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +000092# include <fnmatch.h>
Denis Vlasenkobe709c22008-07-28 00:01:16 +000093#endif
Denys Vlasenko3fa97af2014-04-15 11:43:29 +020094#include <sys/utsname.h> /* for setting $HOSTNAME */
Denys Vlasenko03dad222010-01-12 23:29:57 +010095
Denys Vlasenko20704f02011-03-23 17:59:27 +010096#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
97#include "unicode.h"
Denys Vlasenko03dad222010-01-12 23:29:57 +010098#include "shell_common.h"
Mike Frysinger98c52642009-04-02 10:02:37 +000099#include "math.h"
Mike Frysingera4f331d2009-04-07 06:03:22 +0000100#include "match.h"
Denys Vlasenkocbe0b7f2009-10-09 22:00:58 +0200101#if ENABLE_HUSH_RANDOM_SUPPORT
Denys Vlasenko20b3d142009-10-09 20:59:39 +0200102# include "random.h"
Denys Vlasenko76ace252009-10-12 15:25:01 +0200103#else
104# define CLEAR_RANDOM_T(rnd) ((void)0)
Denys Vlasenko20b3d142009-10-09 20:59:39 +0200105#endif
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +0200106#ifndef F_DUPFD_CLOEXEC
107# define F_DUPFD_CLOEXEC F_DUPFD
108#endif
Denis Vlasenko50f3aa42009-04-07 10:52:40 +0000109#ifndef PIPE_BUF
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200110# define PIPE_BUF 4096 /* amount of buffering in a pipe */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +0000111#endif
Mike Frysinger98c52642009-04-02 10:02:37 +0000112
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200113//config:config HUSH
114//config: bool "hush"
115//config: default y
116//config: help
Denys Vlasenko771f1992010-07-16 14:31:34 +0200117//config: hush is a small shell (25k). It handles the normal flow control
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200118//config: constructs such as if/then/elif/else/fi, for/in/do/done, while loops,
119//config: case/esac. Redirections, here documents, $((arithmetic))
120//config: and functions are supported.
121//config:
122//config: It will compile and work on no-mmu systems.
123//config:
Denys Vlasenkoe2069fb2010-10-04 00:01:47 +0200124//config: It does not handle select, aliases, tilde expansion,
125//config: &>file and >&file redirection of stdout+stderr.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200126//config:
127//config:config HUSH_BASH_COMPAT
128//config: bool "bash-compatible extensions"
129//config: default y
130//config: depends on HUSH
131//config: help
132//config: Enable bash-compatible extensions.
133//config:
Denys Vlasenko9e800222010-10-03 14:28:04 +0200134//config:config HUSH_BRACE_EXPANSION
135//config: bool "Brace expansion"
136//config: default y
137//config: depends on HUSH_BASH_COMPAT
138//config: help
139//config: Enable {abc,def} extension.
140//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200141//config:config HUSH_HELP
142//config: bool "help builtin"
143//config: default y
144//config: depends on HUSH
145//config: help
146//config: Enable help builtin in hush. Code size + ~1 kbyte.
147//config:
148//config:config HUSH_INTERACTIVE
149//config: bool "Interactive mode"
150//config: default y
151//config: depends on HUSH
152//config: help
153//config: Enable interactive mode (prompt and command editing).
154//config: Without this, hush simply reads and executes commands
155//config: from stdin just like a shell script from a file.
156//config: No prompt, no PS1/PS2 magic shell variables.
157//config:
Denys Vlasenko99862cb2010-09-12 17:34:13 +0200158//config:config HUSH_SAVEHISTORY
159//config: bool "Save command history to .hush_history"
160//config: default y
161//config: depends on HUSH_INTERACTIVE && FEATURE_EDITING_SAVEHISTORY
162//config: help
163//config: Enable history saving in hush.
164//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200165//config:config HUSH_JOB
166//config: bool "Job control"
167//config: default y
168//config: depends on HUSH_INTERACTIVE
169//config: help
170//config: Enable job control: Ctrl-Z backgrounds, Ctrl-C interrupts current
171//config: command (not entire shell), fg/bg builtins work. Without this option,
172//config: "cmd &" still works by simply spawning a process and immediately
173//config: prompting for next command (or executing next command in a script),
174//config: but no separate process group is formed.
175//config:
176//config:config HUSH_TICK
177//config: bool "Process substitution"
178//config: default y
179//config: depends on HUSH
180//config: help
181//config: Enable process substitution `command` and $(command) in hush.
182//config:
183//config:config HUSH_IF
184//config: bool "Support if/then/elif/else/fi"
185//config: default y
186//config: depends on HUSH
187//config: help
188//config: Enable if/then/elif/else/fi in hush.
189//config:
190//config:config HUSH_LOOPS
191//config: bool "Support for, while and until loops"
192//config: default y
193//config: depends on HUSH
194//config: help
195//config: Enable for, while and until loops in hush.
196//config:
197//config:config HUSH_CASE
198//config: bool "Support case ... esac statement"
199//config: default y
200//config: depends on HUSH
201//config: help
202//config: Enable case ... esac statement in hush. +400 bytes.
203//config:
204//config:config HUSH_FUNCTIONS
205//config: bool "Support funcname() { commands; } syntax"
206//config: default y
207//config: depends on HUSH
208//config: help
209//config: Enable support for shell functions in hush. +800 bytes.
210//config:
211//config:config HUSH_LOCAL
212//config: bool "Support local builtin"
213//config: default y
214//config: depends on HUSH_FUNCTIONS
215//config: help
216//config: Enable support for local variables in functions.
217//config:
218//config:config HUSH_RANDOM_SUPPORT
219//config: bool "Pseudorandom generator and $RANDOM variable"
220//config: default y
221//config: depends on HUSH
222//config: help
223//config: Enable pseudorandom generator and dynamic variable "$RANDOM".
224//config: Each read of "$RANDOM" will generate a new pseudorandom value.
225//config:
226//config:config HUSH_EXPORT_N
227//config: bool "Support 'export -n' option"
228//config: default y
229//config: depends on HUSH
230//config: help
231//config: export -n unexports variables. It is a bash extension.
232//config:
233//config:config HUSH_MODE_X
234//config: bool "Support 'hush -x' option and 'set -x' command"
235//config: default y
236//config: depends on HUSH
237//config: help
Denys Vlasenko29082232010-07-16 13:52:32 +0200238//config: This instructs hush to print commands before execution.
239//config: Adds ~300 bytes.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200240//config:
Denys Vlasenko6adf2aa2010-07-16 19:26:38 +0200241//config:config MSH
242//config: bool "msh (deprecated: aliased to hush)"
243//config: default n
244//config: select HUSH
245//config: help
246//config: msh is deprecated and will be removed, please migrate to hush.
247//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200248
Denys Vlasenko20704f02011-03-23 17:59:27 +0100249//applet:IF_HUSH(APPLET(hush, BB_DIR_BIN, BB_SUID_DROP))
250//applet:IF_MSH(APPLET(msh, BB_DIR_BIN, BB_SUID_DROP))
251//applet:IF_FEATURE_SH_IS_HUSH(APPLET_ODDNAME(sh, hush, BB_DIR_BIN, BB_SUID_DROP, sh))
252//applet:IF_FEATURE_BASH_IS_HUSH(APPLET_ODDNAME(bash, hush, BB_DIR_BIN, BB_SUID_DROP, bash))
253
254//kbuild:lib-$(CONFIG_HUSH) += hush.o match.o shell_common.o
255//kbuild:lib-$(CONFIG_HUSH_RANDOM_SUPPORT) += random.o
256
Dan Fandrich89ca2f92010-11-28 01:54:39 +0100257/* -i (interactive) and -s (read stdin) are also accepted,
258 * but currently do nothing, therefore aren't shown in help.
259 * NOMMU-specific options are not meant to be used by users,
260 * therefore we don't show them either.
261 */
262//usage:#define hush_trivial_usage
Denys Vlasenkof58f7052011-05-12 02:10:33 +0200263//usage: "[-nxl] [-c 'SCRIPT' [ARG0 [ARGS]] / FILE [ARGS]]"
Denys Vlasenkob0b83432011-03-07 12:34:59 +0100264//usage:#define hush_full_usage "\n\n"
265//usage: "Unix shell interpreter"
266
Dan Fandrich89ca2f92010-11-28 01:54:39 +0100267//usage:#define msh_trivial_usage hush_trivial_usage
Denys Vlasenkob0b83432011-03-07 12:34:59 +0100268//usage:#define msh_full_usage hush_full_usage
269
270//usage:#if ENABLE_FEATURE_SH_IS_HUSH
271//usage:# define sh_trivial_usage hush_trivial_usage
272//usage:# define sh_full_usage hush_full_usage
273//usage:#endif
274//usage:#if ENABLE_FEATURE_BASH_IS_HUSH
275//usage:# define bash_trivial_usage hush_trivial_usage
276//usage:# define bash_full_usage hush_full_usage
277//usage:#endif
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200278
Denis Vlasenko1943aec2009-04-09 14:15:57 +0000279
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200280/* Build knobs */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000281#define LEAK_HUNTING 0
282#define BUILD_AS_NOMMU 0
283/* Enable/disable sanity checks. Ok to enable in production,
284 * only adds a bit of bloat. Set to >1 to get non-production level verbosity.
285 * Keeping 1 for now even in released versions.
286 */
287#define HUSH_DEBUG 1
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200288/* Slightly bigger (+200 bytes), but faster hush.
289 * So far it only enables a trick with counting SIGCHLDs and forks,
290 * which allows us to do fewer waitpid's.
291 * (we can detect a case where neither forks were done nor SIGCHLDs happened
292 * and therefore waitpid will return the same result as last time)
293 */
294#define ENABLE_HUSH_FAST 0
Denys Vlasenko9297dbc2010-07-05 21:37:12 +0200295/* TODO: implement simplified code for users which do not need ${var%...} ops
296 * So far ${var%...} ops are always enabled:
297 */
298#define ENABLE_HUSH_DOLLAR_OPS 1
Denis Vlasenko1943aec2009-04-09 14:15:57 +0000299
300
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000301#if BUILD_AS_NOMMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000302# undef BB_MMU
303# undef USE_FOR_NOMMU
304# undef USE_FOR_MMU
305# define BB_MMU 0
306# define USE_FOR_NOMMU(...) __VA_ARGS__
307# define USE_FOR_MMU(...)
308#endif
309
Denys Vlasenko1fcbff22010-06-26 02:40:08 +0200310#include "NUM_APPLETS.h"
Denys Vlasenko14974842010-03-23 01:08:26 +0100311#if NUM_APPLETS == 1
Denis Vlasenko61befda2008-11-25 01:36:03 +0000312/* STANDALONE does not make sense, and won't compile */
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000313# undef CONFIG_FEATURE_SH_STANDALONE
314# undef ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000315# undef IF_FEATURE_SH_STANDALONE
Denys Vlasenko14974842010-03-23 01:08:26 +0100316# undef IF_NOT_FEATURE_SH_STANDALONE
317# define ENABLE_FEATURE_SH_STANDALONE 0
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000318# define IF_FEATURE_SH_STANDALONE(...)
319# define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__
Denis Vlasenko61befda2008-11-25 01:36:03 +0000320#endif
321
Denis Vlasenko05743d72008-02-10 12:10:08 +0000322#if !ENABLE_HUSH_INTERACTIVE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000323# undef ENABLE_FEATURE_EDITING
324# define ENABLE_FEATURE_EDITING 0
325# undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
326# define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denys Vlasenko8cab6672012-04-20 14:48:00 +0200327# undef ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
328# define ENABLE_FEATURE_EDITING_SAVE_ON_EXIT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000329#endif
330
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000331/* Do we support ANY keywords? */
332#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000333# define HAS_KEYWORDS 1
334# define IF_HAS_KEYWORDS(...) __VA_ARGS__
335# define IF_HAS_NO_KEYWORDS(...)
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000336#else
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000337# define HAS_KEYWORDS 0
338# define IF_HAS_KEYWORDS(...)
339# define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000340#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000341
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000342/* If you comment out one of these below, it will be #defined later
343 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000344#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000345/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000346#define debug_printf_parse(...) do {} while (0)
347#define debug_print_tree(a, b) do {} while (0)
348#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000349#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000350#define debug_printf_jobs(...) do {} while (0)
351#define debug_printf_expand(...) do {} while (0)
Denys Vlasenko1e811b12010-05-22 03:12:29 +0200352#define debug_printf_varexp(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000353#define debug_printf_glob(...) do {} while (0)
354#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000355#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000356#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000357
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000358#define ERR_PTR ((void*)(long)1)
359
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200360#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000361
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200362#define _SPECIAL_VARS_STR "_*@$!?#"
363#define SPECIAL_VARS_STR ("_*@$!?#" + 1)
364#define NUMERIC_SPECVARS_STR ("_*@$!?#" + 3)
Denys Vlasenko36f774a2010-09-05 14:45:38 +0200365#if ENABLE_HUSH_BASH_COMPAT
366/* Support / and // replace ops */
367/* Note that // is stored as \ in "encoded" string representation */
368# define VAR_ENCODED_SUBST_OPS "\\/%#:-=+?"
369# define VAR_SUBST_OPS ("\\/%#:-=+?" + 1)
370# define MINUS_PLUS_EQUAL_QUESTION ("\\/%#:-=+?" + 5)
371#else
372# define VAR_ENCODED_SUBST_OPS "%#:-=+?"
373# define VAR_SUBST_OPS "%#:-=+?"
374# define MINUS_PLUS_EQUAL_QUESTION ("%#:-=+?" + 3)
375#endif
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200376
377#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000378
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200379struct variable;
380
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000381static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
382
383/* This supports saving pointers malloced in vfork child,
Denis Vlasenkoc376db32009-04-15 21:49:48 +0000384 * to be freed in the parent.
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000385 */
386#if !BB_MMU
387typedef struct nommu_save_t {
388 char **new_env;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200389 struct variable *old_vars;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000390 char **argv;
Denis Vlasenko27014ed2009-04-15 21:48:23 +0000391 char **argv_from_re_execing;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000392} nommu_save_t;
393#endif
394
Denys Vlasenko9b782552010-09-08 13:33:26 +0200395enum {
Eric Andersen25f27032001-04-26 23:22:31 +0000396 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000397#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000398 RES_IF ,
399 RES_THEN ,
400 RES_ELIF ,
401 RES_ELSE ,
402 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000403#endif
404#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000405 RES_FOR ,
406 RES_WHILE ,
407 RES_UNTIL ,
408 RES_DO ,
409 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000410#endif
411#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000412 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000413#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000414#if ENABLE_HUSH_CASE
415 RES_CASE ,
Denys Vlasenkoe9bda902009-05-23 16:50:07 +0200416 /* three pseudo-keywords support contrived "case" syntax: */
417 RES_CASE_IN, /* "case ... IN", turns into RES_MATCH when IN is observed */
418 RES_MATCH , /* "word)" */
419 RES_CASE_BODY, /* "this command is inside CASE" */
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000420 RES_ESAC ,
421#endif
422 RES_XXXX ,
423 RES_SNTX
Denys Vlasenko9b782552010-09-08 13:33:26 +0200424};
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000425
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000426typedef struct o_string {
427 char *data;
428 int length; /* position where data is appended */
429 int maxlen;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +0200430 int o_expflags;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000431 /* At least some part of the string was inside '' or "",
432 * possibly empty one: word"", wo''rd etc. */
Denys Vlasenko38292b62010-09-05 14:49:40 +0200433 smallint has_quoted_part;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000434 smallint has_empty_slot;
435 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
436} o_string;
437enum {
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200438 EXP_FLAG_SINGLEWORD = 0x80, /* must be 0x80 */
439 EXP_FLAG_GLOB = 0x2,
440 /* Protect newly added chars against globbing
441 * by prepending \ to *, ?, [, \ */
442 EXP_FLAG_ESC_GLOB_CHARS = 0x1,
443};
444enum {
445 MAYBE_ASSIGNMENT = 0,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000446 DEFINITELY_ASSIGNMENT = 1,
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200447 NOT_ASSIGNMENT = 2,
Maninder Singh97c64912015-05-25 13:46:36 +0200448 /* Not an assignment, but next word may be: "if v=xyz cmd;" */
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200449 WORD_IS_KEYWORD = 3,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000450};
451/* Used for initialization: o_string foo = NULL_O_STRING; */
452#define NULL_O_STRING { NULL }
453
Denys Vlasenko29f9b722011-05-14 11:27:36 +0200454#ifndef debug_printf_parse
455static const char *const assignment_flag[] = {
456 "MAYBE_ASSIGNMENT",
457 "DEFINITELY_ASSIGNMENT",
458 "NOT_ASSIGNMENT",
459 "WORD_IS_KEYWORD",
460};
461#endif
462
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000463typedef struct in_str {
464 const char *p;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000465#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000466 smallint promptmode; /* 0: PS1, 1: PS2 */
467#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +0200468 int peek_buf[2];
Denys Vlasenkocecbc982011-03-30 18:54:52 +0200469 int last_char;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000470 FILE *file;
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200471 int (*get) (struct in_str *) FAST_FUNC;
472 int (*peek) (struct in_str *) FAST_FUNC;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000473} in_str;
474#define i_getch(input) ((input)->get(input))
Denys Vlasenkod17a91d2016-09-29 18:02:37 +0200475#define i_peek(input) ((input)->peek(input))
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000476
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200477/* The descrip member of this structure is only used to make
478 * debugging output pretty */
479static const struct {
480 int mode;
481 signed char default_fd;
482 char descrip[3];
483} redir_table[] = {
484 { O_RDONLY, 0, "<" },
485 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
486 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
487 { O_CREAT|O_RDWR, 1, "<>" },
488 { O_RDONLY, 0, "<<" },
489/* Should not be needed. Bogus default_fd helps in debugging */
490/* { O_RDONLY, 77, "<<" }, */
491};
492
Eric Andersen25f27032001-04-26 23:22:31 +0000493struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000494 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000495 char *rd_filename; /* filename */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000496 int rd_fd; /* fd to redirect */
497 /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
498 int rd_dup;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000499 smallint rd_type; /* (enum redir_type) */
500 /* note: for heredocs, rd_filename contains heredoc delimiter,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000501 * and subsequently heredoc itself; and rd_dup is a bitmask:
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200502 * bit 0: do we need to trim leading tabs?
503 * bit 1: is heredoc quoted (<<'delim' syntax) ?
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000504 */
Eric Andersen25f27032001-04-26 23:22:31 +0000505};
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000506typedef enum redir_type {
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200507 REDIRECT_INPUT = 0,
508 REDIRECT_OVERWRITE = 1,
509 REDIRECT_APPEND = 2,
510 REDIRECT_IO = 3,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000511 REDIRECT_HEREDOC = 4,
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200512 REDIRECT_HEREDOC2 = 5, /* REDIRECT_HEREDOC after heredoc is loaded */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000513
514 REDIRFD_CLOSE = -3,
515 REDIRFD_SYNTAX_ERR = -2,
Denis Vlasenko835fcfd2009-04-10 13:51:56 +0000516 REDIRFD_TO_FILE = -1,
517 /* otherwise, rd_fd is redirected to rd_dup */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000518
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000519 HEREDOC_SKIPTABS = 1,
520 HEREDOC_QUOTED = 2,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000521} redir_type;
522
Eric Andersen25f27032001-04-26 23:22:31 +0000523
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000524struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000525 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000526 int assignment_cnt; /* how many argv[i] are assignments? */
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200527 smallint cmd_type; /* CMD_xxx */
528#define CMD_NORMAL 0
529#define CMD_SUBSHELL 1
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200530#if ENABLE_HUSH_BASH_COMPAT
Denys Vlasenkod383b492010-09-06 10:22:13 +0200531/* used for "[[ EXPR ]]" */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200532# define CMD_SINGLEWORD_NOGLOB 2
Denis Vlasenkoed055212009-04-11 10:37:10 +0000533#endif
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200534#if ENABLE_HUSH_FUNCTIONS
535# define CMD_FUNCDEF 3
536#endif
537
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100538 smalluint cmd_exitcode;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200539 /* if non-NULL, this "command" is { list }, ( list ), or a compound statement */
540 struct pipe *group;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000541#if !BB_MMU
542 char *group_as_string;
543#endif
Denis Vlasenkoed055212009-04-11 10:37:10 +0000544#if ENABLE_HUSH_FUNCTIONS
545 struct function *child_func;
546/* This field is used to prevent a bug here:
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200547 * while...do f1() {a;}; f1; f1() {b;}; f1; done
Denis Vlasenkoed055212009-04-11 10:37:10 +0000548 * When we execute "f1() {a;}" cmd, we create new function and clear
549 * cmd->group, cmd->group_as_string, cmd->argv[0].
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200550 * When we execute "f1() {b;}", we notice that f1 exists,
551 * and that its "parent cmd" struct is still "alive",
Denis Vlasenkoed055212009-04-11 10:37:10 +0000552 * we put those fields back into cmd->xxx
553 * (struct function has ->parent_cmd ptr to facilitate that).
554 * When we loop back, we can execute "f1() {a;}" again and set f1 correctly.
555 * Without this trick, loop would execute a;b;b;b;...
556 * instead of correct sequence a;b;a;b;...
557 * When command is freed, it severs the link
558 * (sets ->child_func->parent_cmd to NULL).
559 */
560#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000561 char **argv; /* command name and arguments */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000562/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
563 * and on execution these are substituted with their values.
564 * Substitution can make _several_ words out of one argv[n]!
565 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000566 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000567 */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000568 struct redir_struct *redirects; /* I/O redirections */
569};
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000570/* Is there anything in this command at all? */
571#define IS_NULL_CMD(cmd) \
572 (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects)
573
Eric Andersen25f27032001-04-26 23:22:31 +0000574struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000575 struct pipe *next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000576 int num_cmds; /* total number of commands in pipe */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000577 int alive_cmds; /* number of commands running (not exited) */
578 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000579#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000580 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000581 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000582 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000583#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000584 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000585 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000586 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
587 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000588};
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000589typedef enum pipe_style {
590 PIPE_SEQ = 1,
591 PIPE_AND = 2,
592 PIPE_OR = 3,
593 PIPE_BG = 4,
594} pipe_style;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000595/* Is there anything in this pipe at all? */
596#define IS_NULL_PIPE(pi) \
597 ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE))
Eric Andersen25f27032001-04-26 23:22:31 +0000598
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000599/* This holds pointers to the various results of parsing */
600struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000601 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000602 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000603 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000604 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000605 /* last command in pipe (being constructed right now) */
606 struct command *command;
607 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000608 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000609#if !BB_MMU
610 o_string as_string;
611#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000612#if HAS_KEYWORDS
613 smallint ctx_res_w;
614 smallint ctx_inverted; /* "! cmd | cmd" */
615#if ENABLE_HUSH_CASE
616 smallint ctx_dsemicolon; /* ";;" seen */
617#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000618 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
619 int old_flag;
620 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000621 * example: "if pipe1; pipe2; then pipe3; fi"
622 * when we see "if" or "then", we malloc and copy current context,
623 * and make ->stack point to it. then we parse pipeN.
624 * when closing "then" / fi" / whatever is found,
625 * we move list_head into ->stack->command->group,
626 * copy ->stack into current context, and delete ->stack.
627 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000628 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000629 struct parse_context *stack;
630#endif
631};
632
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000633/* On program start, environ points to initial environment.
634 * putenv adds new pointers into it, unsetenv removes them.
635 * Neither of these (de)allocates the strings.
636 * setenv allocates new strings in malloc space and does putenv,
637 * and thus setenv is unusable (leaky) for shell's purposes */
638#define setenv(...) setenv_is_leaky_dont_use()
639struct variable {
640 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000641 char *varstr; /* points to "name=" portion */
Denys Vlasenko295fef82009-06-03 12:47:26 +0200642#if ENABLE_HUSH_LOCAL
643 unsigned func_nest_level;
644#endif
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000645 int max_len; /* if > 0, name is part of initial env; else name is malloced */
646 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000647 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000648};
649
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000650enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000651 BC_BREAK = 1,
652 BC_CONTINUE = 2,
653};
654
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000655#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000656struct function {
657 struct function *next;
658 char *name;
Denis Vlasenkoed055212009-04-11 10:37:10 +0000659 struct command *parent_cmd;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000660 struct pipe *body;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200661# if !BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000662 char *body_as_string;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200663# endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000664};
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000665#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000666
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000667
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100668/* set -/+o OPT support. (TODO: make it optional)
669 * bash supports the following opts:
670 * allexport off
671 * braceexpand on
672 * emacs on
673 * errexit off
674 * errtrace off
675 * functrace off
676 * hashall on
677 * histexpand off
678 * history on
679 * ignoreeof off
680 * interactive-comments on
681 * keyword off
682 * monitor on
683 * noclobber off
684 * noexec off
685 * noglob off
686 * nolog off
687 * notify off
688 * nounset off
689 * onecmd off
690 * physical off
691 * pipefail off
692 * posix off
693 * privileged off
694 * verbose off
695 * vi off
696 * xtrace off
697 */
Dan Fandrich85c62472010-11-20 13:05:17 -0800698static const char o_opt_strings[] ALIGN1 =
699 "pipefail\0"
700 "noexec\0"
701#if ENABLE_HUSH_MODE_X
702 "xtrace\0"
703#endif
704 ;
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100705enum {
706 OPT_O_PIPEFAIL,
Dan Fandrich85c62472010-11-20 13:05:17 -0800707 OPT_O_NOEXEC,
708#if ENABLE_HUSH_MODE_X
709 OPT_O_XTRACE,
710#endif
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100711 NUM_OPT_O
712};
713
714
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +0200715struct FILE_list {
716 struct FILE_list *next;
717 FILE *fp;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +0200718 int fd;
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +0200719};
720
721
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000722/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000723/* Sorted roughly by size (smaller offsets == smaller code) */
724struct globals {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000725 /* interactive_fd != 0 means we are an interactive shell.
726 * If we are, then saved_tty_pgrp can also be != 0, meaning
727 * that controlling tty is available. With saved_tty_pgrp == 0,
728 * job control still works, but terminal signals
729 * (^C, ^Z, ^Y, ^\) won't work at all, and background
730 * process groups can only be created with "cmd &".
731 * With saved_tty_pgrp != 0, hush will use tcsetpgrp()
732 * to give tty to the foreground process group,
733 * and will take it back when the group is stopped (^Z)
734 * or killed (^C).
735 */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000736#if ENABLE_HUSH_INTERACTIVE
737 /* 'interactive_fd' is a fd# open to ctty, if we have one
738 * _AND_ if we decided to act interactively */
739 int interactive_fd;
740 const char *PS1;
741 const char *PS2;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000742# define G_interactive_fd (G.interactive_fd)
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000743#else
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000744# define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000745#endif
746#if ENABLE_FEATURE_EDITING
747 line_input_t *line_input_state;
748#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000749 pid_t root_pid;
Denys Vlasenkodea47882009-10-09 15:40:49 +0200750 pid_t root_ppid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000751 pid_t last_bg_pid;
Denys Vlasenko20b3d142009-10-09 20:59:39 +0200752#if ENABLE_HUSH_RANDOM_SUPPORT
753 random_t random_gen;
754#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000755#if ENABLE_HUSH_JOB
756 int run_list_level;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000757 int last_jobid;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000758 pid_t saved_tty_pgrp;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000759 struct pipe *job_list;
Mike Frysinger38478a62009-05-20 04:48:06 -0400760# define G_saved_tty_pgrp (G.saved_tty_pgrp)
761#else
762# define G_saved_tty_pgrp 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000763#endif
Denys Vlasenko26777aa2010-11-22 23:49:10 +0100764 char o_opt[NUM_OPT_O];
Denys Vlasenko57542eb2010-11-28 03:59:30 +0100765#if ENABLE_HUSH_MODE_X
766# define G_x_mode (G.o_opt[OPT_O_XTRACE])
767#else
768# define G_x_mode 0
769#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000770 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000771#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000772 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000773#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000774#if ENABLE_HUSH_FUNCTIONS
775 /* 0: outside of a function (or sourced file)
776 * -1: inside of a function, ok to use return builtin
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000777 * 1: return is invoked, skip all till end of func
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000778 */
779 smallint flag_return_in_progress;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +0200780# define G_flag_return_in_progress (G.flag_return_in_progress)
781#else
782# define G_flag_return_in_progress 0
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000783#endif
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000784 smallint exiting; /* used to prevent EXIT trap recursion */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000785 /* These four support $?, $#, and $1 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000786 smalluint last_exitcode;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000787 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000788 smalluint global_args_malloced;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000789 /* how many non-NULL argv's we have. NB: $# + 1 */
790 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000791 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000792#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000793 char *argv0_for_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000794#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000795#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000796 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000797 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000798#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000799 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000800 const char *cwd;
Denys Vlasenko52e460b2010-09-16 16:12:00 +0200801 struct variable *top_var;
Denys Vlasenko29082232010-07-16 13:52:32 +0200802 char **expanded_assignments;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000803#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000804 struct function *top_func;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200805# if ENABLE_HUSH_LOCAL
806 struct variable **shadowed_vars_pp;
807 unsigned func_nest_level;
808# endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000809#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000810 /* Signal and trap handling */
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200811#if ENABLE_HUSH_FAST
812 unsigned count_SIGCHLD;
813 unsigned handled_SIGCHLD;
Denys Vlasenkoe2df5f42009-05-26 14:34:10 +0200814 smallint we_have_children;
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200815#endif
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +0200816 struct FILE_list *FILE_list;
Denys Vlasenko10c01312011-05-11 11:49:21 +0200817 /* Which signals have non-DFL handler (even with no traps set)?
818 * Set at the start to:
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200819 * (SIGQUIT + maybe SPECIAL_INTERACTIVE_SIGS + maybe SPECIAL_JOBSTOP_SIGS)
Denys Vlasenko10c01312011-05-11 11:49:21 +0200820 * SPECIAL_INTERACTIVE_SIGS are cleared after fork.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200821 * The rest is cleared right before execv syscalls.
Denys Vlasenko10c01312011-05-11 11:49:21 +0200822 * Other than these two times, never modified.
823 */
824 unsigned special_sig_mask;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200825#if ENABLE_HUSH_JOB
826 unsigned fatal_sig_mask;
Denys Vlasenko75e77de2011-05-12 13:12:47 +0200827# define G_fatal_sig_mask G.fatal_sig_mask
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200828#else
Denys Vlasenko75e77de2011-05-12 13:12:47 +0200829# define G_fatal_sig_mask 0
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200830#endif
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000831 char **traps; /* char *traps[NSIG] */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200832 sigset_t pending_set;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000833#if HUSH_DEBUG
834 unsigned long memleak_value;
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000835 int debug_indent;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000836#endif
Denys Vlasenko0806e402011-05-12 23:06:20 +0200837 struct sigaction sa;
Denys Vlasenko0448c552016-09-29 20:25:44 +0200838#if ENABLE_FEATURE_EDITING
839 char user_input_buf[CONFIG_FEATURE_EDITING_MAX_LEN];
840#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000841};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000842#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000843/* Not #defining name to G.name - this quickly gets unwieldy
844 * (too many defines). Also, I actually prefer to see when a variable
845 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000846#define INIT_G() do { \
847 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denys Vlasenko0806e402011-05-12 23:06:20 +0200848 /* memset(&G.sa, 0, sizeof(G.sa)); */ \
849 sigfillset(&G.sa.sa_mask); \
850 G.sa.sa_flags = SA_RESTART; \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000851} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000852
853
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000854/* Function prototypes for builtins */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200855static int builtin_cd(char **argv) FAST_FUNC;
856static int builtin_echo(char **argv) FAST_FUNC;
857static int builtin_eval(char **argv) FAST_FUNC;
858static int builtin_exec(char **argv) FAST_FUNC;
859static int builtin_exit(char **argv) FAST_FUNC;
860static int builtin_export(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000861#if ENABLE_HUSH_JOB
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200862static int builtin_fg_bg(char **argv) FAST_FUNC;
863static int builtin_jobs(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000864#endif
865#if ENABLE_HUSH_HELP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200866static int builtin_help(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000867#endif
Denys Vlasenkoff463a82013-05-12 02:45:23 +0200868#if MAX_HISTORY && ENABLE_FEATURE_EDITING
Flemming Madsend96ffda2013-04-07 18:47:24 +0200869static int builtin_history(char **argv) FAST_FUNC;
870#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +0200871#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200872static int builtin_local(char **argv) FAST_FUNC;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200873#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000874#if HUSH_DEBUG
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200875static int builtin_memleak(char **argv) FAST_FUNC;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000876#endif
Mike Frysinger4ebc76c2009-10-15 03:32:39 -0400877#if ENABLE_PRINTF
878static int builtin_printf(char **argv) FAST_FUNC;
879#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200880static int builtin_pwd(char **argv) FAST_FUNC;
881static int builtin_read(char **argv) FAST_FUNC;
882static int builtin_set(char **argv) FAST_FUNC;
883static int builtin_shift(char **argv) FAST_FUNC;
884static int builtin_source(char **argv) FAST_FUNC;
885static int builtin_test(char **argv) FAST_FUNC;
886static int builtin_trap(char **argv) FAST_FUNC;
887static int builtin_type(char **argv) FAST_FUNC;
888static int builtin_true(char **argv) FAST_FUNC;
889static int builtin_umask(char **argv) FAST_FUNC;
890static int builtin_unset(char **argv) FAST_FUNC;
891static int builtin_wait(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000892#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200893static int builtin_break(char **argv) FAST_FUNC;
894static int builtin_continue(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000895#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000896#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200897static int builtin_return(char **argv) FAST_FUNC;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000898#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000899
900/* Table of built-in functions. They can be forked or not, depending on
901 * context: within pipes, they fork. As simple commands, they do not.
902 * When used in non-forking context, they can change global variables
903 * in the parent shell process. If forked, of course they cannot.
904 * For example, 'unset foo | whatever' will parse and run, but foo will
905 * still be set at the end. */
906struct built_in_command {
Denys Vlasenko17323a62010-01-28 01:57:05 +0100907 const char *b_cmd;
908 int (*b_function)(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000909#if ENABLE_HUSH_HELP
Denys Vlasenko17323a62010-01-28 01:57:05 +0100910 const char *b_descr;
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200911# define BLTIN(cmd, func, help) { cmd, func, help }
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000912#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200913# define BLTIN(cmd, func, help) { cmd, func }
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000914#endif
915};
916
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200917static const struct built_in_command bltins1[] = {
918 BLTIN("." , builtin_source , "Run commands in a file"),
919 BLTIN(":" , builtin_true , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000920#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200921 BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000922#endif
923#if ENABLE_HUSH_LOOPS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200924 BLTIN("break" , builtin_break , "Exit from a loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000925#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200926 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000927#if ENABLE_HUSH_LOOPS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200928 BLTIN("continue" , builtin_continue, "Start new loop iteration"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000929#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200930 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
931 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
932 BLTIN("exit" , builtin_exit , "Exit"),
933 BLTIN("export" , builtin_export , "Set environment variables"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000934#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200935 BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000936#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000937#if ENABLE_HUSH_HELP
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200938 BLTIN("help" , builtin_help , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000939#endif
Denys Vlasenkoff463a82013-05-12 02:45:23 +0200940#if MAX_HISTORY && ENABLE_FEATURE_EDITING
Flemming Madsend96ffda2013-04-07 18:47:24 +0200941 BLTIN("history" , builtin_history , "Show command history"),
942#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000943#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200944 BLTIN("jobs" , builtin_jobs , "List jobs"),
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000945#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +0200946#if ENABLE_HUSH_LOCAL
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200947 BLTIN("local" , builtin_local , "Set local variables"),
Denys Vlasenko295fef82009-06-03 12:47:26 +0200948#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000949#if HUSH_DEBUG
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200950 BLTIN("memleak" , builtin_memleak , NULL),
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000951#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200952 BLTIN("read" , builtin_read , "Input into variable"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000953#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200954 BLTIN("return" , builtin_return , "Return from a function"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000955#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200956 BLTIN("set" , builtin_set , "Set/unset positional parameters"),
957 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
Denys Vlasenko82731b42010-05-17 17:49:52 +0200958#if ENABLE_HUSH_BASH_COMPAT
959 BLTIN("source" , builtin_source , "Run commands in a file"),
960#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200961 BLTIN("trap" , builtin_trap , "Trap signals"),
Denys Vlasenko2bba5912014-03-14 12:43:57 +0100962 BLTIN("true" , builtin_true , NULL),
Denys Vlasenko651a2692010-03-23 16:25:17 +0100963 BLTIN("type" , builtin_type , "Show command type"),
Denys Vlasenkof3c742f2010-03-06 20:12:00 +0100964 BLTIN("ulimit" , shell_builtin_ulimit , "Control resource limits"),
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200965 BLTIN("umask" , builtin_umask , "Set file creation mask"),
966 BLTIN("unset" , builtin_unset , "Unset variables"),
967 BLTIN("wait" , builtin_wait , "Wait for process"),
968};
969/* For now, echo and test are unconditionally enabled.
970 * Maybe make it configurable? */
971static const struct built_in_command bltins2[] = {
972 BLTIN("[" , builtin_test , NULL),
973 BLTIN("echo" , builtin_echo , NULL),
Mike Frysinger4ebc76c2009-10-15 03:32:39 -0400974#if ENABLE_PRINTF
975 BLTIN("printf" , builtin_printf , NULL),
976#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200977 BLTIN("pwd" , builtin_pwd , NULL),
978 BLTIN("test" , builtin_test , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000979};
980
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000981
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000982/* Debug printouts.
983 */
984#if HUSH_DEBUG
985/* prevent disasters with G.debug_indent < 0 */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +0100986# define indent() fdprintf(2, "%*s", (G.debug_indent * 2) & 0xff, "")
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000987# define debug_enter() (G.debug_indent++)
988# define debug_leave() (G.debug_indent--)
989#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200990# define indent() ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000991# define debug_enter() ((void)0)
992# define debug_leave() ((void)0)
993#endif
994
995#ifndef debug_printf
Denys Vlasenko75eb9d22010-12-21 21:18:12 +0100996# define debug_printf(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000997#endif
998
999#ifndef debug_printf_parse
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001000# define debug_printf_parse(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001001#endif
1002
1003#ifndef debug_printf_exec
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001004#define debug_printf_exec(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001005#endif
1006
1007#ifndef debug_printf_env
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001008# define debug_printf_env(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001009#endif
1010
1011#ifndef debug_printf_jobs
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001012# define debug_printf_jobs(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001013# define DEBUG_JOBS 1
1014#else
1015# define DEBUG_JOBS 0
1016#endif
1017
1018#ifndef debug_printf_expand
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001019# define debug_printf_expand(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001020# define DEBUG_EXPAND 1
1021#else
1022# define DEBUG_EXPAND 0
1023#endif
1024
Denys Vlasenko1e811b12010-05-22 03:12:29 +02001025#ifndef debug_printf_varexp
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001026# define debug_printf_varexp(...) (indent(), fdprintf(2, __VA_ARGS__))
Denys Vlasenko1e811b12010-05-22 03:12:29 +02001027#endif
1028
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001029#ifndef debug_printf_glob
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001030# define debug_printf_glob(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001031# define DEBUG_GLOB 1
1032#else
1033# define DEBUG_GLOB 0
1034#endif
1035
1036#ifndef debug_printf_list
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001037# define debug_printf_list(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001038#endif
1039
1040#ifndef debug_printf_subst
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001041# define debug_printf_subst(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001042#endif
1043
1044#ifndef debug_printf_clean
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001045# define debug_printf_clean(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001046# define DEBUG_CLEAN 1
1047#else
1048# define DEBUG_CLEAN 0
1049#endif
1050
1051#if DEBUG_EXPAND
1052static void debug_print_strings(const char *prefix, char **vv)
1053{
1054 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001055 fdprintf(2, "%s:\n", prefix);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001056 while (*vv)
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001057 fdprintf(2, " '%s'\n", *vv++);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001058}
1059#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001060# define debug_print_strings(prefix, vv) ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001061#endif
1062
1063
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001064/* Leak hunting. Use hush_leaktool.sh for post-processing.
1065 */
1066#if LEAK_HUNTING
1067static void *xxmalloc(int lineno, size_t size)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001068{
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001069 void *ptr = xmalloc((size + 0xff) & ~0xff);
1070 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
1071 return ptr;
1072}
1073static void *xxrealloc(int lineno, void *ptr, size_t size)
1074{
1075 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
1076 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
1077 return ptr;
1078}
1079static char *xxstrdup(int lineno, const char *str)
1080{
1081 char *ptr = xstrdup(str);
1082 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
1083 return ptr;
1084}
1085static void xxfree(void *ptr)
1086{
1087 fdprintf(2, "free %p\n", ptr);
1088 free(ptr);
1089}
Denys Vlasenko8391c482010-05-22 17:50:43 +02001090# define xmalloc(s) xxmalloc(__LINE__, s)
1091# define xrealloc(p, s) xxrealloc(__LINE__, p, s)
1092# define xstrdup(s) xxstrdup(__LINE__, s)
1093# define free(p) xxfree(p)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001094#endif
1095
1096
1097/* Syntax and runtime errors. They always abort scripts.
1098 * In interactive use they usually discard unparsed and/or unexecuted commands
1099 * and return to the prompt.
1100 * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
1101 */
1102#if HUSH_DEBUG < 2
Denys Vlasenko606291b2009-09-23 23:15:43 +02001103# define die_if_script(lineno, ...) die_if_script(__VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001104# define syntax_error(lineno, msg) syntax_error(msg)
1105# define syntax_error_at(lineno, msg) syntax_error_at(msg)
1106# define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch)
1107# define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s)
1108# define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001109#endif
1110
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001111static void die_if_script(unsigned lineno, const char *fmt, ...)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001112{
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001113 va_list p;
1114
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001115#if HUSH_DEBUG >= 2
1116 bb_error_msg("hush.c:%u", lineno);
1117#endif
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001118 va_start(p, fmt);
1119 bb_verror_msg(fmt, p, NULL);
1120 va_end(p);
1121 if (!G_interactive_fd)
1122 xfunc_die();
Mike Frysinger6379bb42009-03-28 18:55:03 +00001123}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001124
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001125static void syntax_error(unsigned lineno UNUSED_PARAM, const char *msg)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001126{
1127 if (msg)
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001128 bb_error_msg("syntax error: %s", msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001129 else
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001130 bb_error_msg("syntax error");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001131}
1132
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001133static void syntax_error_at(unsigned lineno UNUSED_PARAM, const char *msg)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001134{
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001135 bb_error_msg("syntax error at '%s'", msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001136}
1137
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001138static void syntax_error_unterm_str(unsigned lineno UNUSED_PARAM, const char *s)
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001139{
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001140 bb_error_msg("syntax error: unterminated %s", s);
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001141}
1142
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001143static void syntax_error_unterm_ch(unsigned lineno, char ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001144{
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001145 char msg[2] = { ch, '\0' };
1146 syntax_error_unterm_str(lineno, msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001147}
1148
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001149static void syntax_error_unexpected_ch(unsigned lineno UNUSED_PARAM, int ch)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001150{
1151 char msg[2];
1152 msg[0] = ch;
1153 msg[1] = '\0';
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001154 bb_error_msg("syntax error: unexpected %s", ch == EOF ? "EOF" : msg);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001155}
1156
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001157#if HUSH_DEBUG < 2
1158# undef die_if_script
1159# undef syntax_error
1160# undef syntax_error_at
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001161# undef syntax_error_unterm_ch
1162# undef syntax_error_unterm_str
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001163# undef syntax_error_unexpected_ch
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001164#else
Denys Vlasenko606291b2009-09-23 23:15:43 +02001165# define die_if_script(...) die_if_script(__LINE__, __VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001166# define syntax_error(msg) syntax_error(__LINE__, msg)
1167# define syntax_error_at(msg) syntax_error_at(__LINE__, msg)
1168# define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch)
1169# define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s)
1170# define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001171#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001172
Denis Vlasenko552433b2009-04-04 19:29:21 +00001173
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001174#if ENABLE_HUSH_INTERACTIVE
1175static void cmdedit_update_prompt(void);
1176#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001177# define cmdedit_update_prompt() ((void)0)
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001178#endif
1179
1180
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001181/* Utility functions
1182 */
Denis Vlasenko55789c62008-06-18 16:30:42 +00001183/* Replace each \x with x in place, return ptr past NUL. */
1184static char *unbackslash(char *src)
1185{
Denys Vlasenko71885402009-09-24 01:44:13 +02001186 char *dst = src = strchrnul(src, '\\');
Denis Vlasenko55789c62008-06-18 16:30:42 +00001187 while (1) {
1188 if (*src == '\\')
1189 src++;
1190 if ((*dst++ = *src++) == '\0')
1191 break;
1192 }
1193 return dst;
1194}
1195
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001196static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001197{
1198 int i;
1199 unsigned count1;
1200 unsigned count2;
1201 char **v;
1202
1203 v = strings;
1204 count1 = 0;
1205 if (v) {
1206 while (*v) {
1207 count1++;
1208 v++;
1209 }
1210 }
1211 count2 = 0;
1212 v = add;
1213 while (*v) {
1214 count2++;
1215 v++;
1216 }
1217 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
1218 v[count1 + count2] = NULL;
1219 i = count2;
1220 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001221 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001222 return v;
1223}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001224#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001225static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
1226{
1227 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
1228 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
1229 return ptr;
1230}
1231#define add_strings_to_strings(strings, add, need_to_dup) \
1232 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
1233#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001234
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001235/* Note: takes ownership of "add" ptr (it is not strdup'ed) */
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001236static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001237{
1238 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001239 v[0] = add;
1240 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001241 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001242}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001243#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001244static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
1245{
1246 char **ptr = add_string_to_strings(strings, add);
1247 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
1248 return ptr;
1249}
1250#define add_string_to_strings(strings, add) \
1251 xx_add_string_to_strings(__LINE__, strings, add)
1252#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001253
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001254static void free_strings(char **strings)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001255{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001256 char **v;
1257
1258 if (!strings)
1259 return;
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001260 v = strings;
1261 while (*v) {
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001262 free(*v);
1263 v++;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001264 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001265 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001266}
1267
Denis Vlasenko76d50412008-06-10 16:19:39 +00001268
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001269static int xdup_and_close(int fd, int F_DUPFD_maybe_CLOEXEC)
1270{
1271 /* We avoid taking stdio fds. Mimicking ash: use fds above 9 */
1272 int newfd = fcntl(fd, F_DUPFD_maybe_CLOEXEC, 10);
1273 if (newfd < 0) {
1274 /* fd was not open? */
1275 if (errno == EBADF)
1276 return fd;
1277 xfunc_die();
1278 }
1279 close(fd);
1280 return newfd;
1281}
1282
1283
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001284/* Manipulating the list of open FILEs */
1285static FILE *remember_FILE(FILE *fp)
1286{
1287 if (fp) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001288 struct FILE_list *n = xmalloc(sizeof(*n));
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001289 n->next = G.FILE_list;
1290 G.FILE_list = n;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001291 n->fp = fp;
1292 n->fd = fileno(fp);
1293 close_on_exec_on(n->fd);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001294 }
1295 return fp;
1296}
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001297static void fclose_and_forget(FILE *fp)
1298{
1299 struct FILE_list **pp = &G.FILE_list;
1300 while (*pp) {
1301 struct FILE_list *cur = *pp;
1302 if (cur->fp == fp) {
1303 *pp = cur->next;
1304 free(cur);
1305 break;
1306 }
1307 pp = &cur->next;
1308 }
1309 fclose(fp);
1310}
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001311static int save_FILEs_on_redirect(int fd)
1312{
1313 struct FILE_list *fl = G.FILE_list;
1314 while (fl) {
1315 if (fd == fl->fd) {
1316 /* We use it only on script files, they are all CLOEXEC */
1317 fl->fd = xdup_and_close(fd, F_DUPFD_CLOEXEC);
1318 return 1;
1319 }
1320 fl = fl->next;
1321 }
1322 return 0;
1323}
1324static void restore_redirected_FILEs(void)
1325{
1326 struct FILE_list *fl = G.FILE_list;
1327 while (fl) {
1328 int should_be = fileno(fl->fp);
1329 if (fl->fd != should_be) {
1330 xmove_fd(fl->fd, should_be);
1331 fl->fd = should_be;
1332 }
1333 fl = fl->next;
1334 }
1335}
1336#if ENABLE_FEATURE_SH_STANDALONE
1337static void close_all_FILE_list(void)
1338{
1339 struct FILE_list *fl = G.FILE_list;
1340 while (fl) {
1341 /* fclose would also free FILE object.
1342 * It is disastrous if we share memory with a vforked parent.
1343 * I'm not sure we never come here after vfork.
1344 * Therefore just close fd, nothing more.
1345 */
1346 /*fclose(fl->fp); - unsafe */
1347 close(fl->fd);
1348 fl = fl->next;
1349 }
1350}
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001351#endif
1352
1353
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001354/* Helpers for setting new $n and restoring them back
1355 */
1356typedef struct save_arg_t {
1357 char *sv_argv0;
1358 char **sv_g_argv;
1359 int sv_g_argc;
1360 smallint sv_g_malloced;
1361} save_arg_t;
1362
1363static void save_and_replace_G_args(save_arg_t *sv, char **argv)
1364{
1365 int n;
1366
1367 sv->sv_argv0 = argv[0];
1368 sv->sv_g_argv = G.global_argv;
1369 sv->sv_g_argc = G.global_argc;
1370 sv->sv_g_malloced = G.global_args_malloced;
1371
1372 argv[0] = G.global_argv[0]; /* retain $0 */
1373 G.global_argv = argv;
1374 G.global_args_malloced = 0;
1375
1376 n = 1;
1377 while (*++argv)
1378 n++;
1379 G.global_argc = n;
1380}
1381
1382static void restore_G_args(save_arg_t *sv, char **argv)
1383{
1384 char **pp;
1385
1386 if (G.global_args_malloced) {
1387 /* someone ran "set -- arg1 arg2 ...", undo */
1388 pp = G.global_argv;
1389 while (*++pp) /* note: does not free $0 */
1390 free(*pp);
1391 free(G.global_argv);
1392 }
1393 argv[0] = sv->sv_argv0;
1394 G.global_argv = sv->sv_g_argv;
1395 G.global_argc = sv->sv_g_argc;
1396 G.global_args_malloced = sv->sv_g_malloced;
1397}
1398
1399
Denis Vlasenkod5762932009-03-31 11:22:57 +00001400/* Basic theory of signal handling in shell
1401 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001402 * This does not describe what hush does, rather, it is current understanding
1403 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001404 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
1405 *
1406 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
1407 * is finished or backgrounded. It is the same in interactive and
1408 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001409 * a user trap handler is installed or a shell special one is in effect.
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001410 * ^C or ^Z from keyboard seems to execute "at once" because it usually
Denis Vlasenkod5762932009-03-31 11:22:57 +00001411 * backgrounds (i.e. stops) or kills all members of currently running
1412 * pipe.
1413 *
Denys Vlasenko8bd810b2013-11-28 01:50:01 +01001414 * Wait builtin is interruptible by signals for which user trap is set
Denis Vlasenkod5762932009-03-31 11:22:57 +00001415 * or by SIGINT in interactive shell.
1416 *
1417 * Trap handlers will execute even within trap handlers. (right?)
1418 *
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001419 * User trap handlers are forgotten when subshell ("(cmd)") is entered,
1420 * except for handlers set to '' (empty string).
Denis Vlasenkod5762932009-03-31 11:22:57 +00001421 *
1422 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001423 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001424 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001425 * Commands which are run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001426 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001427 *
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001428 * Ordinary commands have signals set to SIG_IGN/DFL as inherited
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001429 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001430 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001431 * Signals which differ from SIG_DFL action
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001432 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +00001433 *
1434 * SIGQUIT: ignore
1435 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001436 * SIGHUP (interactive):
1437 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +00001438 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00001439 * Note that ^Z is handled not by trapping SIGTSTP, but by seeing
1440 * that all pipe members are stopped. Try this in bash:
1441 * while :; do :; done - ^Z does not background it
1442 * (while :; do :; done) - ^Z backgrounds it
Denis Vlasenkod5762932009-03-31 11:22:57 +00001443 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001444 * of the command line, show prompt. NB: ^C does not send SIGINT
1445 * to interactive shell while shell is waiting for a pipe,
1446 * since shell is bg'ed (is not in foreground process group).
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001447 * Example 1: this waits 5 sec, but does not execute ls:
1448 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
1449 * Example 2: this does not wait and does not execute ls:
1450 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
1451 * Example 3: this does not wait 5 sec, but executes ls:
1452 * "sleep 5; ls -l" + press ^C
Denys Vlasenkob8709032011-05-08 21:20:01 +02001453 * Example 4: this does not wait and does not execute ls:
1454 * "sleep 5 & wait; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +00001455 *
1456 * (What happens to signals which are IGN on shell start?)
1457 * (What happens with signal mask on shell start?)
1458 *
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001459 * Old implementation
1460 * ==================
Denis Vlasenkod5762932009-03-31 11:22:57 +00001461 * We use in-kernel pending signal mask to determine which signals were sent.
1462 * We block all signals which we don't want to take action immediately,
1463 * i.e. we block all signals which need to have special handling as described
1464 * above, and all signals which have traps set.
1465 * After each pipe execution, we extract any pending signals via sigtimedwait()
1466 * and act on them.
1467 *
Denys Vlasenko10c01312011-05-11 11:49:21 +02001468 * unsigned special_sig_mask: a mask of such "special" signals
Denis Vlasenkod5762932009-03-31 11:22:57 +00001469 * sigset_t blocked_set: current blocked signal set
1470 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001471 * "trap - SIGxxx":
Denys Vlasenko10c01312011-05-11 11:49:21 +02001472 * clear bit in blocked_set unless it is also in special_sig_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001473 * "trap 'cmd' SIGxxx":
1474 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +00001475 * after [v]fork, if we plan to be a shell:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001476 * unblock signals with special interactive handling
1477 * (child shell is not interactive),
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001478 * unset all traps except '' (note: regardless of child shell's type - {}, (), etc)
Denis Vlasenkod5762932009-03-31 11:22:57 +00001479 * after [v]fork, if we plan to exec:
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001480 * POSIX says fork clears pending signal mask in child - no need to clear it.
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001481 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001482 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001483 * Note: as a result, we do not use signal handlers much. The only uses
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001484 * are to count SIGCHLDs
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001485 * and to restore tty pgrp on signal-induced exit.
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001486 *
Denys Vlasenko67f71862009-09-25 14:21:06 +02001487 * Note 2 (compat):
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001488 * Standard says "When a subshell is entered, traps that are not being ignored
1489 * are set to the default actions". bash interprets it so that traps which
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001490 * are set to '' (ignore) are NOT reset to defaults. We do the same.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001491 *
1492 * Problem: the above approach makes it unwieldy to catch signals while
Denys Vlasenkoe95738f2013-07-08 03:13:08 +02001493 * we are in read builtin, or while we read commands from stdin:
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001494 * masked signals are not visible!
1495 *
1496 * New implementation
1497 * ==================
1498 * We record each signal we are interested in by installing signal handler
1499 * for them - a bit like emulating kernel pending signal mask in userspace.
1500 * We are interested in: signals which need to have special handling
1501 * as described above, and all signals which have traps set.
Denys Vlasenko8bd810b2013-11-28 01:50:01 +01001502 * Signals are recorded in pending_set.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001503 * After each pipe execution, we extract any pending signals
1504 * and act on them.
1505 *
1506 * unsigned special_sig_mask: a mask of shell-special signals.
1507 * unsigned fatal_sig_mask: a mask of signals on which we restore tty pgrp.
1508 * char *traps[sig] if trap for sig is set (even if it's '').
1509 * sigset_t pending_set: set of sigs we received.
1510 *
1511 * "trap - SIGxxx":
1512 * if sig is in special_sig_mask, set handler back to:
1513 * record_pending_signo, or to IGN if it's a tty stop signal
1514 * if sig is in fatal_sig_mask, set handler back to sigexit.
1515 * else: set handler back to SIG_DFL
1516 * "trap 'cmd' SIGxxx":
1517 * set handler to record_pending_signo.
1518 * "trap '' SIGxxx":
1519 * set handler to SIG_IGN.
1520 * after [v]fork, if we plan to be a shell:
1521 * set signals with special interactive handling to SIG_DFL
1522 * (because child shell is not interactive),
1523 * unset all traps except '' (note: regardless of child shell's type - {}, (), etc)
1524 * after [v]fork, if we plan to exec:
1525 * POSIX says fork clears pending signal mask in child - no need to clear it.
1526 *
1527 * To make wait builtin interruptible, we handle SIGCHLD as special signal,
1528 * otherwise (if we leave it SIG_DFL) sigsuspend in wait builtin will not wake up on it.
1529 *
1530 * Note (compat):
1531 * Standard says "When a subshell is entered, traps that are not being ignored
1532 * are set to the default actions". bash interprets it so that traps which
1533 * are set to '' (ignore) are NOT reset to defaults. We do the same.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001534 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001535enum {
1536 SPECIAL_INTERACTIVE_SIGS = 0
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001537 | (1 << SIGTERM)
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001538 | (1 << SIGINT)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001539 | (1 << SIGHUP)
1540 ,
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001541 SPECIAL_JOBSTOP_SIGS = 0
Mike Frysinger38478a62009-05-20 04:48:06 -04001542#if ENABLE_HUSH_JOB
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001543 | (1 << SIGTTIN)
1544 | (1 << SIGTTOU)
1545 | (1 << SIGTSTP)
1546#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001547 ,
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001548};
Denis Vlasenkod5762932009-03-31 11:22:57 +00001549
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001550static void record_pending_signo(int sig)
Denys Vlasenko54e9e122011-05-09 00:52:15 +02001551{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001552 sigaddset(&G.pending_set, sig);
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001553#if ENABLE_HUSH_FAST
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001554 if (sig == SIGCHLD) {
1555 G.count_SIGCHLD++;
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001556//bb_error_msg("[%d] SIGCHLD_handler: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001557 }
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001558#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001559}
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001560
Denys Vlasenko0806e402011-05-12 23:06:20 +02001561static sighandler_t install_sighandler(int sig, sighandler_t handler)
1562{
1563 struct sigaction old_sa;
1564
1565 /* We could use signal() to install handlers... almost:
1566 * except that we need to mask ALL signals while handlers run.
1567 * I saw signal nesting in strace, race window isn't small.
1568 * SA_RESTART is also needed, but in Linux, signal()
1569 * sets SA_RESTART too.
1570 */
1571 /* memset(&G.sa, 0, sizeof(G.sa)); - already done */
1572 /* sigfillset(&G.sa.sa_mask); - already done */
1573 /* G.sa.sa_flags = SA_RESTART; - already done */
1574 G.sa.sa_handler = handler;
1575 sigaction(sig, &G.sa, &old_sa);
1576 return old_sa.sa_handler;
1577}
1578
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001579static void hush_exit(int exitcode) NORETURN;
1580static void fflush_and__exit(void) NORETURN;
1581static void restore_ttypgrp_and__exit(void) NORETURN;
1582
1583static void restore_ttypgrp_and__exit(void)
1584{
1585 /* xfunc has failed! die die die */
1586 /* no EXIT traps, this is an escape hatch! */
1587 G.exiting = 1;
1588 hush_exit(xfunc_error_retval);
1589}
1590
1591/* Needed only on some libc:
1592 * It was observed that on exit(), fgetc'ed buffered data
1593 * gets "unwound" via lseek(fd, -NUM, SEEK_CUR).
1594 * With the net effect that even after fork(), not vfork(),
1595 * exit() in NOEXECed applet in "sh SCRIPT":
1596 * noexec_applet_here
1597 * echo END_OF_SCRIPT
1598 * lseeks fd in input FILE object from EOF to "e" in "echo END_OF_SCRIPT".
1599 * This makes "echo END_OF_SCRIPT" executed twice.
1600 * Similar problems can be seen with die_if_script() -> xfunc_die()
1601 * and in `cmd` handling.
1602 * If set as die_func(), this makes xfunc_die() exit via _exit(), not exit():
1603 */
1604static void fflush_and__exit(void)
1605{
1606 fflush_all();
1607 _exit(xfunc_error_retval);
1608}
1609
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001610#if ENABLE_HUSH_JOB
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001611
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001612/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001613# define disable_restore_tty_pgrp_on_exit() (die_func = fflush_and__exit)
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001614/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001615# define enable_restore_tty_pgrp_on_exit() (die_func = restore_ttypgrp_and__exit)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001616
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001617/* Restores tty foreground process group, and exits.
1618 * May be called as signal handler for fatal signal
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001619 * (will resend signal to itself, producing correct exit state)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001620 * or called directly with -EXITCODE.
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001621 * We also call it if xfunc is exiting.
1622 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001623static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001624static void sigexit(int sig)
1625{
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001626 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001627 * tty pgrp then, only top-level shell process does that */
Denys Vlasenkoebc1ee22011-05-12 10:59:18 +02001628 if (G_saved_tty_pgrp && getpid() == G.root_pid) {
1629 /* Disable all signals: job control, SIGPIPE, etc.
1630 * Mostly paranoid measure, to prevent infinite SIGTTOU.
1631 */
1632 sigprocmask_allsigs(SIG_BLOCK);
Mike Frysinger38478a62009-05-20 04:48:06 -04001633 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
Denys Vlasenkoebc1ee22011-05-12 10:59:18 +02001634 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001635
1636 /* Not a signal, just exit */
1637 if (sig <= 0)
1638 _exit(- sig);
1639
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001640 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001641}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001642#else
1643
Denys Vlasenko8391c482010-05-22 17:50:43 +02001644# define disable_restore_tty_pgrp_on_exit() ((void)0)
1645# define enable_restore_tty_pgrp_on_exit() ((void)0)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001646
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001647#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001648
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001649static sighandler_t pick_sighandler(unsigned sig)
1650{
1651 sighandler_t handler = SIG_DFL;
1652 if (sig < sizeof(unsigned)*8) {
1653 unsigned sigmask = (1 << sig);
1654
1655#if ENABLE_HUSH_JOB
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001656 /* is sig fatal? */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001657 if (G_fatal_sig_mask & sigmask)
1658 handler = sigexit;
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001659 else
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001660#endif
1661 /* sig has special handling? */
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001662 if (G.special_sig_mask & sigmask) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001663 handler = record_pending_signo;
Denys Vlasenko0c40a732011-05-12 09:50:12 +02001664 /* TTIN/TTOU/TSTP can't be set to record_pending_signo
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001665 * in order to ignore them: they will be raised
Denys Vlasenkof58f7052011-05-12 02:10:33 +02001666 * in an endless loop when we try to do some
1667 * terminal ioctls! We do have to _ignore_ these.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001668 */
1669 if (SPECIAL_JOBSTOP_SIGS & sigmask)
1670 handler = SIG_IGN;
Denys Vlasenko0c40a732011-05-12 09:50:12 +02001671 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001672 }
1673 return handler;
1674}
1675
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001676/* Restores tty foreground process group, and exits. */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001677static void hush_exit(int exitcode)
1678{
Denys Vlasenkobede2152011-09-04 16:12:33 +02001679#if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1680 save_history(G.line_input_state);
1681#endif
1682
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01001683 fflush_all();
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001684 if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001685 char *argv[3];
1686 /* argv[0] is unused */
1687 argv[1] = G.traps[0];
1688 argv[2] = NULL;
Denys Vlasenkoa110c902010-09-12 15:38:04 +02001689 G.exiting = 1; /* prevent EXIT trap recursion */
Denys Vlasenkoa110c902010-09-12 15:38:04 +02001690 /* Note: G.traps[0] is not cleared!
Denys Vlasenkode8c3f62010-09-12 16:13:44 +02001691 * "trap" will still show it, if executed
1692 * in the handler */
1693 builtin_eval(argv);
Denis Vlasenkod5762932009-03-31 11:22:57 +00001694 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001695
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001696#if ENABLE_FEATURE_CLEAN_UP
1697 {
1698 struct variable *cur_var;
1699 if (G.cwd != bb_msg_unknown)
1700 free((char*)G.cwd);
1701 cur_var = G.top_var;
1702 while (cur_var) {
1703 struct variable *tmp = cur_var;
1704 if (!cur_var->max_len)
1705 free(cur_var->varstr);
1706 cur_var = cur_var->next;
1707 free(tmp);
1708 }
1709 }
1710#endif
1711
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001712 fflush_all();
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02001713#if ENABLE_HUSH_JOB
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001714 sigexit(- (exitcode & 0xff));
1715#else
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02001716 _exit(exitcode);
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001717#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001718}
1719
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02001720
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001721//TODO: return a mask of ALL handled sigs?
1722static int check_and_run_traps(void)
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001723{
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001724 int last_sig = 0;
1725
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001726 while (1) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001727 int sig;
Denys Vlasenko80542ba2011-05-08 21:23:43 +02001728
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001729 if (sigisemptyset(&G.pending_set))
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001730 break;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001731 sig = 0;
1732 do {
1733 sig++;
1734 if (sigismember(&G.pending_set, sig)) {
1735 sigdelset(&G.pending_set, sig);
1736 goto got_sig;
1737 }
1738 } while (sig < NSIG);
1739 break;
Denys Vlasenkob8709032011-05-08 21:20:01 +02001740 got_sig:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001741 if (G.traps && G.traps[sig]) {
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001742 debug_printf_exec("%s: sig:%d handler:'%s'\n", __func__, sig, G.traps[sig]);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001743 if (G.traps[sig][0]) {
1744 /* We have user-defined handler */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001745 smalluint save_rcode;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001746 char *argv[3];
1747 /* argv[0] is unused */
1748 argv[1] = G.traps[sig];
1749 argv[2] = NULL;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001750 save_rcode = G.last_exitcode;
1751 builtin_eval(argv);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001752 G.last_exitcode = save_rcode;
Denys Vlasenkob8709032011-05-08 21:20:01 +02001753 last_sig = sig;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001754 } /* else: "" trap, ignoring signal */
1755 continue;
1756 }
1757 /* not a trap: special action */
1758 switch (sig) {
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001759 case SIGINT:
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001760 debug_printf_exec("%s: sig:%d default SIGINT handler\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001761 /* Builtin was ^C'ed, make it look prettier: */
1762 bb_putchar('\n');
1763 G.flag_SIGINT = 1;
Denys Vlasenkob8709032011-05-08 21:20:01 +02001764 last_sig = sig;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001765 break;
1766#if ENABLE_HUSH_JOB
1767 case SIGHUP: {
1768 struct pipe *job;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001769 debug_printf_exec("%s: sig:%d default SIGHUP handler\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001770 /* bash is observed to signal whole process groups,
1771 * not individual processes */
1772 for (job = G.job_list; job; job = job->next) {
1773 if (job->pgrp <= 0)
1774 continue;
1775 debug_printf_exec("HUPing pgrp %d\n", job->pgrp);
1776 if (kill(- job->pgrp, SIGHUP) == 0)
1777 kill(- job->pgrp, SIGCONT);
1778 }
1779 sigexit(SIGHUP);
1780 }
1781#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001782#if ENABLE_HUSH_FAST
1783 case SIGCHLD:
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001784 debug_printf_exec("%s: sig:%d default SIGCHLD handler\n", __func__, sig);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001785 G.count_SIGCHLD++;
1786//bb_error_msg("[%d] check_and_run_traps: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
1787 /* Note:
1788 * We dont do 'last_sig = sig' here -> NOT returning this sig.
1789 * This simplifies wait builtin a bit.
1790 */
1791 break;
1792#endif
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001793 default: /* ignored: */
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001794 debug_printf_exec("%s: sig:%d default handling is to ignore\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001795 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001796 /* Note:
1797 * We dont do 'last_sig = sig' here -> NOT returning this sig.
1798 * Example: wait is not interrupted by TERM
Denys Vlasenkob8709032011-05-08 21:20:01 +02001799 * in interactive shell, because TERM is ignored.
1800 */
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001801 break;
1802 }
1803 }
1804 return last_sig;
1805}
1806
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001807
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001808static const char *get_cwd(int force)
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001809{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001810 if (force || G.cwd == NULL) {
1811 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1812 * we must not try to free(bb_msg_unknown) */
1813 if (G.cwd == bb_msg_unknown)
1814 G.cwd = NULL;
1815 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1816 if (!G.cwd)
1817 G.cwd = bb_msg_unknown;
1818 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00001819 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001820}
1821
Denis Vlasenko83506862007-11-23 13:11:42 +00001822
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001823/*
1824 * Shell and environment variable support
1825 */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001826static struct variable **get_ptr_to_local_var(const char *name, unsigned len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001827{
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001828 struct variable **pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001829 struct variable *cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001830
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001831 pp = &G.top_var;
1832 while ((cur = *pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001833 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001834 return pp;
1835 pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001836 }
1837 return NULL;
1838}
1839
Denys Vlasenko03dad222010-01-12 23:29:57 +01001840static const char* FAST_FUNC get_local_var_value(const char *name)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001841{
Denys Vlasenko29082232010-07-16 13:52:32 +02001842 struct variable **vpp;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001843 unsigned len = strlen(name);
Denys Vlasenko29082232010-07-16 13:52:32 +02001844
1845 if (G.expanded_assignments) {
1846 char **cpp = G.expanded_assignments;
Denys Vlasenko29082232010-07-16 13:52:32 +02001847 while (*cpp) {
1848 char *cp = *cpp;
1849 if (strncmp(cp, name, len) == 0 && cp[len] == '=')
1850 return cp + len + 1;
1851 cpp++;
1852 }
1853 }
1854
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001855 vpp = get_ptr_to_local_var(name, len);
Denys Vlasenko29082232010-07-16 13:52:32 +02001856 if (vpp)
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001857 return (*vpp)->varstr + len + 1;
Denys Vlasenko29082232010-07-16 13:52:32 +02001858
Denys Vlasenkodea47882009-10-09 15:40:49 +02001859 if (strcmp(name, "PPID") == 0)
1860 return utoa(G.root_ppid);
1861 // bash compat: UID? EUID?
Denys Vlasenko20b3d142009-10-09 20:59:39 +02001862#if ENABLE_HUSH_RANDOM_SUPPORT
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001863 if (strcmp(name, "RANDOM") == 0)
Denys Vlasenko20b3d142009-10-09 20:59:39 +02001864 return utoa(next_random(&G.random_gen));
1865#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001866 return NULL;
1867}
1868
1869/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001870 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001871 * flg_export:
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001872 * 0: do not change export flag
1873 * (if creating new variable, flag will be 0)
1874 * 1: set export flag and putenv the variable
1875 * -1: clear export flag and unsetenv the variable
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001876 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00001877 */
Denys Vlasenko295fef82009-06-03 12:47:26 +02001878#if !BB_MMU && ENABLE_HUSH_LOCAL
1879/* all params are used */
1880#elif BB_MMU && ENABLE_HUSH_LOCAL
1881#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
1882 set_local_var(str, flg_export, local_lvl)
1883#elif BB_MMU && !ENABLE_HUSH_LOCAL
1884#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001885 set_local_var(str, flg_export)
Denys Vlasenko295fef82009-06-03 12:47:26 +02001886#elif !BB_MMU && !ENABLE_HUSH_LOCAL
1887#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
1888 set_local_var(str, flg_export, flg_read_only)
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001889#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02001890static int set_local_var(char *str, int flg_export, int local_lvl, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001891{
Denys Vlasenko295fef82009-06-03 12:47:26 +02001892 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001893 struct variable *cur;
Denys Vlasenkoa7693902016-10-03 15:01:06 +02001894 char *free_me = NULL;
Denis Vlasenko950bd722009-04-21 11:23:56 +00001895 char *eq_sign;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001896 int name_len;
1897
Denis Vlasenko950bd722009-04-21 11:23:56 +00001898 eq_sign = strchr(str, '=');
1899 if (!eq_sign) { /* not expected to ever happen? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001900 free(str);
1901 return -1;
1902 }
1903
Denis Vlasenko950bd722009-04-21 11:23:56 +00001904 name_len = eq_sign - str + 1; /* including '=' */
Denys Vlasenko295fef82009-06-03 12:47:26 +02001905 var_pp = &G.top_var;
1906 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001907 if (strncmp(cur->varstr, str, name_len) != 0) {
Denys Vlasenko295fef82009-06-03 12:47:26 +02001908 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001909 continue;
1910 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02001911
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001912 /* We found an existing var with this name */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001913 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001914#if !BB_MMU
1915 if (!flg_read_only)
1916#endif
1917 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001918 free(str);
1919 return -1;
1920 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001921 if (flg_export == -1) { // "&& cur->flg_export" ?
Denis Vlasenko950bd722009-04-21 11:23:56 +00001922 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1923 *eq_sign = '\0';
1924 unsetenv(str);
1925 *eq_sign = '=';
1926 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001927#if ENABLE_HUSH_LOCAL
1928 if (cur->func_nest_level < local_lvl) {
1929 /* New variable is declared as local,
1930 * and existing one is global, or local
1931 * from enclosing function.
1932 * Remove and save old one: */
1933 *var_pp = cur->next;
1934 cur->next = *G.shadowed_vars_pp;
1935 *G.shadowed_vars_pp = cur;
1936 /* bash 3.2.33(1) and exported vars:
1937 * # export z=z
1938 * # f() { local z=a; env | grep ^z; }
1939 * # f
1940 * z=a
1941 * # env | grep ^z
1942 * z=z
1943 */
1944 if (cur->flg_export)
1945 flg_export = 1;
1946 break;
1947 }
1948#endif
Denis Vlasenko950bd722009-04-21 11:23:56 +00001949 if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001950 free_and_exp:
1951 free(str);
1952 goto exp;
1953 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001954 if (cur->max_len != 0) {
1955 if (cur->max_len >= strlen(str)) {
1956 /* This one is from startup env, reuse space */
1957 strcpy(cur->varstr, str);
1958 goto free_and_exp;
1959 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02001960 /* Can't reuse */
1961 cur->max_len = 0;
1962 goto set_str_and_exp;
Denys Vlasenko295fef82009-06-03 12:47:26 +02001963 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02001964 /* max_len == 0 signifies "malloced" var, which we can
1965 * (and have to) free. But we can't free(cur->varstr) here:
1966 * if cur->flg_export is 1, it is in the environment.
1967 * We should either unsetenv+free, or wait until putenv,
1968 * then putenv(new)+free(old).
1969 */
1970 free_me = cur->varstr;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001971 goto set_str_and_exp;
1972 }
1973
Denys Vlasenko295fef82009-06-03 12:47:26 +02001974 /* Not found - create new variable struct */
1975 cur = xzalloc(sizeof(*cur));
1976#if ENABLE_HUSH_LOCAL
1977 cur->func_nest_level = local_lvl;
1978#endif
1979 cur->next = *var_pp;
1980 *var_pp = cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001981
1982 set_str_and_exp:
1983 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001984#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001985 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001986#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001987 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001988 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001989 cur->flg_export = 1;
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001990 if (name_len == 4 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
1991 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001992 if (cur->flg_export) {
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001993 if (flg_export == -1) {
1994 cur->flg_export = 0;
1995 /* unsetenv was already done */
1996 } else {
Denys Vlasenkoa7693902016-10-03 15:01:06 +02001997 int i;
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001998 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
Denys Vlasenkoa7693902016-10-03 15:01:06 +02001999 i = putenv(cur->varstr);
2000 /* only now we can free old exported malloced string */
2001 free(free_me);
2002 return i;
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002003 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002004 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002005 free(free_me);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002006 return 0;
2007}
2008
Denys Vlasenko6db47842009-09-05 20:15:17 +02002009/* Used at startup and after each cd */
2010static void set_pwd_var(int exp)
2011{
2012 set_local_var(xasprintf("PWD=%s", get_cwd(/*force:*/ 1)),
2013 /*exp:*/ exp, /*lvl:*/ 0, /*ro:*/ 0);
2014}
2015
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002016static int unset_local_var_len(const char *name, int name_len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002017{
2018 struct variable *cur;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002019 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002020
2021 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00002022 return EXIT_SUCCESS;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002023 var_pp = &G.top_var;
2024 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002025 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
2026 if (cur->flg_read_only) {
2027 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00002028 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002029 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002030 *var_pp = cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002031 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
2032 bb_unsetenv(cur->varstr);
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002033 if (name_len == 3 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
2034 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002035 if (!cur->max_len)
2036 free(cur->varstr);
2037 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00002038 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002039 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002040 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002041 }
Mike Frysingerd690f682009-03-30 06:50:54 +00002042 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002043}
2044
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002045static int unset_local_var(const char *name)
2046{
2047 return unset_local_var_len(name, strlen(name));
2048}
2049
2050static void unset_vars(char **strings)
2051{
2052 char **v;
2053
2054 if (!strings)
2055 return;
2056 v = strings;
2057 while (*v) {
2058 const char *eq = strchrnul(*v, '=');
2059 unset_local_var_len(*v, (int)(eq - *v));
2060 v++;
2061 }
2062 free(strings);
2063}
2064
Denys Vlasenko03dad222010-01-12 23:29:57 +01002065static void FAST_FUNC set_local_var_from_halves(const char *name, const char *val)
Mike Frysinger98c52642009-04-02 10:02:37 +00002066{
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002067 char *var = xasprintf("%s=%s", name, val);
Denys Vlasenko03dad222010-01-12 23:29:57 +01002068 set_local_var(var, /*flags:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00002069}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002070
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002071
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002072/*
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002073 * Helpers for "var1=val1 var2=val2 cmd" feature
2074 */
2075static void add_vars(struct variable *var)
2076{
2077 struct variable *next;
2078
2079 while (var) {
2080 next = var->next;
2081 var->next = G.top_var;
2082 G.top_var = var;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002083 if (var->flg_export) {
2084 debug_printf_env("%s: restoring exported '%s'\n", __func__, var->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002085 putenv(var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002086 } else {
Denys Vlasenko295fef82009-06-03 12:47:26 +02002087 debug_printf_env("%s: restoring variable '%s'\n", __func__, var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002088 }
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002089 var = next;
2090 }
2091}
2092
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002093static struct variable *set_vars_and_save_old(char **strings)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002094{
2095 char **s;
2096 struct variable *old = NULL;
2097
2098 if (!strings)
2099 return old;
2100 s = strings;
2101 while (*s) {
2102 struct variable *var_p;
2103 struct variable **var_pp;
2104 char *eq;
2105
2106 eq = strchr(*s, '=');
2107 if (eq) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002108 var_pp = get_ptr_to_local_var(*s, eq - *s);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002109 if (var_pp) {
2110 /* Remove variable from global linked list */
2111 var_p = *var_pp;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002112 debug_printf_env("%s: removing '%s'\n", __func__, var_p->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002113 *var_pp = var_p->next;
2114 /* Add it to returned list */
2115 var_p->next = old;
2116 old = var_p;
2117 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02002118 set_local_var(*s, /*exp:*/ 1, /*lvl:*/ 0, /*ro:*/ 0);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002119 }
2120 s++;
2121 }
2122 return old;
2123}
2124
2125
2126/*
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002127 * Unicode helper
2128 */
2129static void reinit_unicode_for_hush(void)
2130{
2131 /* Unicode support should be activated even if LANG is set
2132 * _during_ shell execution, not only if it was set when
2133 * shell was started. Therefore, re-check LANG every time:
2134 */
Denys Vlasenko841f8332014-08-13 10:09:49 +02002135 if (ENABLE_FEATURE_CHECK_UNICODE_IN_ENV
2136 || ENABLE_UNICODE_USING_LOCALE
2137 ) {
2138 const char *s = get_local_var_value("LC_ALL");
2139 if (!s) s = get_local_var_value("LC_CTYPE");
2140 if (!s) s = get_local_var_value("LANG");
2141 reinit_unicode(s);
2142 }
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002143}
2144
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002145/*
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002146 * in_str support (strings, and "strings" read from files).
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002147 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002148
2149#if ENABLE_HUSH_INTERACTIVE
Denys Vlasenko4074d492016-09-30 01:49:53 +02002150/* To test correct lineedit/interactive behavior, type from command line:
2151 * echo $P\
2152 * \
2153 * AT\
2154 * H\
2155 * \
2156 * It excercises a lot of corner cases.
2157 */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002158static void cmdedit_update_prompt(void)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002159{
Mike Frysingerec2c6552009-03-28 12:24:44 +00002160 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002161 G.PS1 = get_local_var_value("PS1");
Mike Frysingerec2c6552009-03-28 12:24:44 +00002162 if (G.PS1 == NULL)
2163 G.PS1 = "\\w \\$ ";
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002164 G.PS2 = get_local_var_value("PS2");
Denys Vlasenko690ad242009-04-30 21:24:24 +02002165 } else {
Mike Frysingerec2c6552009-03-28 12:24:44 +00002166 G.PS1 = NULL;
Denys Vlasenko690ad242009-04-30 21:24:24 +02002167 }
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002168 if (G.PS2 == NULL)
2169 G.PS2 = "> ";
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002170}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002171static const char *setup_prompt_string(int promptmode)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002172{
2173 const char *prompt_str;
2174 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00002175 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
2176 /* Set up the prompt */
2177 if (promptmode == 0) { /* PS1 */
2178 free((char*)G.PS1);
Denys Vlasenko6db47842009-09-05 20:15:17 +02002179 /* bash uses $PWD value, even if it is set by user.
2180 * It uses current dir only if PWD is unset.
2181 * We always use current dir. */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002182 G.PS1 = xasprintf("%s %c ", get_cwd(0), (geteuid() != 0) ? '$' : '#');
Mike Frysingerec2c6552009-03-28 12:24:44 +00002183 prompt_str = G.PS1;
2184 } else
2185 prompt_str = G.PS2;
2186 } else
2187 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denys Vlasenko4074d492016-09-30 01:49:53 +02002188 debug_printf("prompt_str '%s'\n", prompt_str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002189 return prompt_str;
2190}
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002191static int get_user_input(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002192{
2193 int r;
2194 const char *prompt_str;
2195
2196 prompt_str = setup_prompt_string(i->promptmode);
Denys Vlasenko8391c482010-05-22 17:50:43 +02002197# if ENABLE_FEATURE_EDITING
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002198 do {
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002199 reinit_unicode_for_hush();
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00002200 G.flag_SIGINT = 0;
2201 /* buglet: SIGINT will not make new prompt to appear _at once_,
2202 * only after <Enter>. (^C will work) */
Denys Vlasenko0448c552016-09-29 20:25:44 +02002203 r = read_line_input(G.line_input_state, prompt_str,
2204 G.user_input_buf, CONFIG_FEATURE_EDITING_MAX_LEN-1,
2205 /*timeout*/ -1
2206 );
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00002207 /* catch *SIGINT* etc (^C is handled by read_line_input) */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002208 check_and_run_traps();
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00002209 } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002210 if (r < 0) {
2211 /* EOF/error detected */
Denys Vlasenko4074d492016-09-30 01:49:53 +02002212 i->p = NULL;
2213 i->peek_buf[0] = r = EOF;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002214 return r;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002215 }
Denys Vlasenko4074d492016-09-30 01:49:53 +02002216 i->p = G.user_input_buf;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002217 return (unsigned char)*i->p++;
Denys Vlasenko8391c482010-05-22 17:50:43 +02002218# else
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00002219 do {
2220 G.flag_SIGINT = 0;
Denys Vlasenkob8709032011-05-08 21:20:01 +02002221 if (i->last_char == '\0' || i->last_char == '\n') {
2222 /* Why check_and_run_traps here? Try this interactively:
2223 * $ trap 'echo INT' INT; (sleep 2; kill -INT $$) &
2224 * $ <[enter], repeatedly...>
2225 * Without check_and_run_traps, handler never runs.
2226 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002227 check_and_run_traps();
Denys Vlasenkob8709032011-05-08 21:20:01 +02002228 fputs(prompt_str, stdout);
2229 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002230 fflush_all();
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002231 r = fgetc(i->file);
2232 } while (G.flag_SIGINT || r == '\0');
2233 return r;
Denys Vlasenko8391c482010-05-22 17:50:43 +02002234# endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002235}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002236/* This is the magic location that prints prompts
2237 * and gets data back from the user */
Denys Vlasenko4074d492016-09-30 01:49:53 +02002238static int fgetc_interactive(struct in_str *i)
2239{
2240 int ch;
2241 /* If it's interactive stdin, get new line. */
2242 if (G_interactive_fd && i->file == stdin) {
2243 /* Returns first char (or EOF), the rest is in i->p[] */
2244 ch = get_user_input(i);
2245 i->promptmode = 1; /* PS2 */
2246 } else {
2247 /* Not stdin: script file, sourced file, etc */
2248 do ch = fgetc(i->file); while (ch == '\0');
2249 }
2250 return ch;
2251}
2252#else
2253static inline int fgetc_interactive(struct in_str *i)
2254{
2255 int ch;
2256 do ch = fgetc(i->file); while (ch == '\0');
2257 return ch;
2258}
2259#endif /* INTERACTIVE */
2260
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02002261static int FAST_FUNC file_get(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002262{
2263 int ch;
2264
Denys Vlasenko4074d492016-09-30 01:49:53 +02002265#if ENABLE_FEATURE_EDITING
2266 /* This can be stdin, check line editing char[] buffer */
2267 if (i->p && *i->p != '\0') {
2268 ch = (unsigned char)*i->p++;
2269 goto out;
2270 }
2271#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002272 /* peek_buf[] is an int array, not char. Can contain EOF. */
2273 ch = i->peek_buf[0];
Denys Vlasenko4074d492016-09-30 01:49:53 +02002274 if (ch != 0) {
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002275 int ch2 = i->peek_buf[1];
2276 i->peek_buf[0] = ch2;
2277 if (ch2 == 0) /* very likely, avoid redundant write */
2278 goto out;
2279 i->peek_buf[1] = 0;
2280 goto out;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002281 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002282
Denys Vlasenko4074d492016-09-30 01:49:53 +02002283 ch = fgetc_interactive(i);
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002284 out:
Denis Vlasenko913a2012009-04-05 22:17:04 +00002285 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02002286 i->last_char = ch;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002287 return ch;
2288}
2289
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02002290static int FAST_FUNC file_peek(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002291{
2292 int ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002293
Denys Vlasenko4074d492016-09-30 01:49:53 +02002294#if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002295 /* This can be stdin, check line editing char[] buffer */
2296 if (i->p && *i->p != '\0')
2297 return (unsigned char)*i->p;
2298#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002299 /* peek_buf[] is an int array, not char. Can contain EOF. */
2300 ch = i->peek_buf[0];
Denys Vlasenko4074d492016-09-30 01:49:53 +02002301 if (ch != 0)
2302 return ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002303
Denys Vlasenko4074d492016-09-30 01:49:53 +02002304 /* Need to get a new char */
2305 ch = fgetc_interactive(i);
2306 debug_printf("file_peek: got '%c' %d\n", ch, ch);
2307
2308 /* Save it by either rolling back line editing buffer, or in i->peek_buf[0] */
2309#if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE
2310 if (i->p) {
2311 i->p -= 1;
2312 return ch;
2313 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002314#endif
Denys Vlasenko4074d492016-09-30 01:49:53 +02002315 i->peek_buf[0] = ch;
2316 /*i->peek_buf[1] = 0; - already is */
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002317 return ch;
2318}
2319
2320static int FAST_FUNC static_get(struct in_str *i)
2321{
Denys Vlasenko4074d492016-09-30 01:49:53 +02002322 int ch = (unsigned char)*i->p;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002323 if (ch != '\0') {
2324 i->p++;
2325 i->last_char = ch;
2326 return ch;
2327 }
2328 return EOF;
2329}
2330
2331static int FAST_FUNC static_peek(struct in_str *i)
2332{
2333 /* Doesn't report EOF on NUL. None of the callers care. */
Denys Vlasenko4074d492016-09-30 01:49:53 +02002334 return (unsigned char)*i->p;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002335}
2336
Denys Vlasenko4074d492016-09-30 01:49:53 +02002337/* Only ever called if i_peek() was called, and did not return EOF.
2338 * IOW: we know the previous peek saw an ordinary char, not EOF, not NUL,
2339 * not end-of-line. Therefore we never need to read a new editing line here.
2340 */
2341static int i_peek2(struct in_str *i)
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002342{
Denys Vlasenko4074d492016-09-30 01:49:53 +02002343 int ch;
2344
2345 /* There are two cases when i->p[] buffer exists.
2346 * (1) it's a string in_str.
Denys Vlasenko08755f92016-09-30 02:02:25 +02002347 * (2) It's a file, and we have a saved line editing buffer.
Denys Vlasenko4074d492016-09-30 01:49:53 +02002348 * In both cases, we know that i->p[0] exists and not NUL, and
2349 * the peek2 result is in i->p[1].
2350 */
2351 if (i->p)
2352 return (unsigned char)i->p[1];
2353
2354 /* Now we know it is a file-based in_str. */
2355
2356 /* peek_buf[] is an int array, not char. Can contain EOF. */
2357 /* Is there 2nd char? */
2358 ch = i->peek_buf[1];
2359 if (ch == 0) {
2360 /* We did not read it yet, get it now */
2361 do ch = fgetc(i->file); while (ch == '\0');
2362 i->peek_buf[1] = ch;
2363 }
2364
2365 debug_printf("file_peek2: got '%c' %d\n", ch, ch);
2366 return ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002367}
2368
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002369static void setup_file_in_str(struct in_str *i, FILE *f)
2370{
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002371 memset(i, 0, sizeof(*i));
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002372 i->get = file_get;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002373 i->peek = file_peek;
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002374 /* i->promptmode = 0; - PS1 (memset did it) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002375 i->file = f;
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002376 /* i->p = NULL; */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002377}
2378
2379static void setup_string_in_str(struct in_str *i, const char *s)
2380{
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002381 memset(i, 0, sizeof(*i));
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002382 i->get = static_get;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002383 i->peek = static_peek;
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002384 /* i->promptmode = 0; - PS1 (memset did it) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002385 i->p = s;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002386}
2387
2388
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002389/*
2390 * o_string support
2391 */
2392#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00002393
Denis Vlasenko0b677d82009-04-10 13:49:10 +00002394static void o_reset_to_empty_unquoted(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00002395{
2396 o->length = 0;
Denys Vlasenko38292b62010-09-05 14:49:40 +02002397 o->has_quoted_part = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002398 if (o->data)
2399 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002400}
2401
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002402static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00002403{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00002404 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002405 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00002406}
2407
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002408static ALWAYS_INLINE void o_free_unsafe(o_string *o)
2409{
2410 free(o->data);
2411}
2412
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002413static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002414{
2415 if (o->length + len > o->maxlen) {
Denys Vlasenko46e64982016-09-29 19:50:55 +02002416 o->maxlen += (2 * len) | (B_CHUNK-1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002417 o->data = xrealloc(o->data, 1 + o->maxlen);
2418 }
2419}
2420
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002421static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002422{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002423 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
Denys Vlasenko46e64982016-09-29 19:50:55 +02002424 if (o->length < o->maxlen) {
2425 /* likely. avoid o_grow_by() call */
2426 add:
2427 o->data[o->length] = ch;
2428 o->length++;
2429 o->data[o->length] = '\0';
2430 return;
2431 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002432 o_grow_by(o, 1);
Denys Vlasenko46e64982016-09-29 19:50:55 +02002433 goto add;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002434}
2435
Denys Vlasenko657086a2016-09-29 18:07:42 +02002436#if 0
2437/* Valid only if we know o_string is not empty */
2438static void o_delchr(o_string *o)
2439{
2440 o->length--;
2441 o->data[o->length] = '\0';
2442}
2443#endif
2444
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002445static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002446{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002447 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002448 memcpy(&o->data[o->length], str, len);
2449 o->length += len;
2450 o->data[o->length] = '\0';
2451}
2452
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002453static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00002454{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002455 o_addblock(o, str, strlen(str));
2456}
Denys Vlasenko2e48d532010-05-22 17:30:39 +02002457
Denys Vlasenko1e811b12010-05-22 03:12:29 +02002458#if !BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002459static void nommu_addchr(o_string *o, int ch)
2460{
2461 if (o)
2462 o_addchr(o, ch);
2463}
2464#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002465# define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002466#endif
2467
2468static void o_addstr_with_NUL(o_string *o, const char *str)
2469{
2470 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00002471}
2472
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002473/*
Denys Vlasenko238081f2010-10-03 14:26:26 +02002474 * HUSH_BRACE_EXPANSION code needs corresponding quoting on variable expansion side.
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002475 * Currently, "v='{q,w}'; echo $v" erroneously expands braces in $v.
2476 * Apparently, on unquoted $v bash still does globbing
2477 * ("v='*.txt'; echo $v" prints all .txt files),
2478 * but NOT brace expansion! Thus, there should be TWO independent
2479 * quoting mechanisms on $v expansion side: one protects
2480 * $v from brace expansion, and other additionally protects "$v" against globbing.
2481 * We have only second one.
2482 */
2483
Denys Vlasenko9e800222010-10-03 14:28:04 +02002484#if ENABLE_HUSH_BRACE_EXPANSION
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002485# define MAYBE_BRACES "{}"
2486#else
2487# define MAYBE_BRACES ""
2488#endif
2489
Eric Andersen25f27032001-04-26 23:22:31 +00002490/* My analysis of quoting semantics tells me that state information
2491 * is associated with a destination, not a source.
2492 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002493static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00002494{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002495 int sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002496 char *found = strchr("*?[\\" MAYBE_BRACES, ch);
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002497 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002498 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002499 o_grow_by(o, sz);
2500 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002501 o->data[o->length] = '\\';
2502 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00002503 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002504 o->data[o->length] = ch;
2505 o->length++;
2506 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002507}
2508
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002509static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002510{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002511 int sz = 1;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002512 if ((o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)
2513 && strchr("*?[\\" MAYBE_BRACES, ch)
2514 ) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002515 sz++;
2516 o->data[o->length] = '\\';
2517 o->length++;
2518 }
2519 o_grow_by(o, sz);
2520 o->data[o->length] = ch;
2521 o->length++;
2522 o->data[o->length] = '\0';
2523}
2524
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002525static void o_addqblock(o_string *o, const char *str, int len)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002526{
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002527 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002528 char ch;
2529 int sz;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002530 int ordinary_cnt = strcspn(str, "*?[\\" MAYBE_BRACES);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002531 if (ordinary_cnt > len) /* paranoia */
2532 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002533 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002534 if (ordinary_cnt == len)
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002535 return; /* NUL is already added by o_addblock */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002536 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002537 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002538
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002539 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002540 sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002541 if (ch) { /* it is necessarily one of "*?[\\" MAYBE_BRACES */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002542 sz++;
2543 o->data[o->length] = '\\';
2544 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002545 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002546 o_grow_by(o, sz);
2547 o->data[o->length] = ch;
2548 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002549 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002550 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002551}
2552
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002553static void o_addQblock(o_string *o, const char *str, int len)
2554{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002555 if (!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002556 o_addblock(o, str, len);
2557 return;
2558 }
2559 o_addqblock(o, str, len);
2560}
2561
Denys Vlasenko38292b62010-09-05 14:49:40 +02002562static void o_addQstr(o_string *o, const char *str)
2563{
2564 o_addQblock(o, str, strlen(str));
2565}
2566
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002567/* A special kind of o_string for $VAR and `cmd` expansion.
2568 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002569 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002570 * list[i] contains an INDEX (int!) into this string data.
2571 * It means that if list[] needs to grow, data needs to be moved higher up
2572 * but list[i]'s need not be modified.
2573 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002574 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002575 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
2576 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002577#if DEBUG_EXPAND || DEBUG_GLOB
2578static void debug_print_list(const char *prefix, o_string *o, int n)
2579{
2580 char **list = (char**)o->data;
2581 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2582 int i = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002583
2584 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002585 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 +02002586 prefix, list, n, string_start, o->length, o->maxlen,
2587 !!(o->o_expflags & EXP_FLAG_GLOB),
2588 o->has_quoted_part,
2589 !!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002590 while (i < n) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002591 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002592 fdprintf(2, " list[%d]=%d '%s' %p\n", i, (int)(uintptr_t)list[i],
2593 o->data + (int)(uintptr_t)list[i] + string_start,
2594 o->data + (int)(uintptr_t)list[i] + string_start);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002595 i++;
2596 }
2597 if (n) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002598 const char *p = o->data + (int)(uintptr_t)list[n - 1] + string_start;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002599 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002600 fdprintf(2, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002601 }
2602}
2603#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002604# define debug_print_list(prefix, o, n) ((void)0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002605#endif
2606
2607/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
2608 * in list[n] so that it points past last stored byte so far.
2609 * It returns n+1. */
2610static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002611{
2612 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00002613 int string_start;
2614 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002615
2616 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00002617 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2618 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002619 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002620 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002621 /* list[n] points to string_start, make space for 16 more pointers */
2622 o->maxlen += 0x10 * sizeof(list[0]);
2623 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00002624 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002625 memmove(list + n + 0x10, list + n, string_len);
2626 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002627 } else {
2628 debug_printf_list("list[%d]=%d string_start=%d\n",
2629 n, string_len, string_start);
2630 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002631 } else {
2632 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00002633 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
2634 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002635 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
2636 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002637 o->has_empty_slot = 0;
2638 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002639 o->has_quoted_part = 0;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002640 list[n] = (char*)(uintptr_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002641 return n + 1;
2642}
2643
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002644/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002645static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002646{
2647 char **list = (char**)o->data;
2648 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2649
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002650 return ((int)(uintptr_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002651}
2652
Denys Vlasenko9e800222010-10-03 14:28:04 +02002653#if ENABLE_HUSH_BRACE_EXPANSION
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002654/* There in a GNU extension, GLOB_BRACE, but it is not usable:
2655 * first, it processes even {a} (no commas), second,
2656 * I didn't manage to make it return strings when they don't match
Denys Vlasenko160746b2009-11-16 05:51:18 +01002657 * existing files. Need to re-implement it.
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002658 */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002659
2660/* Helper */
2661static int glob_needed(const char *s)
2662{
2663 while (*s) {
2664 if (*s == '\\') {
2665 if (!s[1])
2666 return 0;
2667 s += 2;
2668 continue;
2669 }
2670 if (*s == '*' || *s == '[' || *s == '?' || *s == '{')
2671 return 1;
2672 s++;
2673 }
2674 return 0;
2675}
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002676/* Return pointer to next closing brace or to comma */
2677static const char *next_brace_sub(const char *cp)
2678{
2679 unsigned depth = 0;
2680 cp++;
2681 while (*cp != '\0') {
2682 if (*cp == '\\') {
2683 if (*++cp == '\0')
2684 break;
2685 cp++;
2686 continue;
Denys Vlasenko3581c622010-01-25 13:39:24 +01002687 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002688 if ((*cp == '}' && depth-- == 0) || (*cp == ',' && depth == 0))
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002689 break;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002690 if (*cp++ == '{')
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002691 depth++;
2692 }
2693
2694 return *cp != '\0' ? cp : NULL;
2695}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002696/* Recursive brace globber. Note: may garble pattern[]. */
2697static int glob_brace(char *pattern, o_string *o, int n)
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002698{
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002699 char *new_pattern_buf;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002700 const char *begin;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002701 const char *next;
2702 const char *rest;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002703 const char *p;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002704 size_t rest_len;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002705
2706 debug_printf_glob("glob_brace('%s')\n", pattern);
2707
2708 begin = pattern;
2709 while (1) {
2710 if (*begin == '\0')
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002711 goto simple_glob;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002712 if (*begin == '{') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002713 /* Find the first sub-pattern and at the same time
2714 * find the rest after the closing brace */
2715 next = next_brace_sub(begin);
2716 if (next == NULL) {
2717 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002718 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002719 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002720 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002721 /* "{abc}" with no commas - illegal
2722 * brace expr, disregard and skip it */
2723 begin = next + 1;
2724 continue;
2725 }
2726 break;
2727 }
2728 if (*begin == '\\' && begin[1] != '\0')
2729 begin++;
2730 begin++;
2731 }
2732 debug_printf_glob("begin:%s\n", begin);
2733 debug_printf_glob("next:%s\n", next);
2734
2735 /* Now find the end of the whole brace expression */
2736 rest = next;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002737 while (*rest != '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002738 rest = next_brace_sub(rest);
2739 if (rest == NULL) {
2740 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002741 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002742 }
2743 debug_printf_glob("rest:%s\n", rest);
2744 }
2745 rest_len = strlen(++rest) + 1;
2746
2747 /* We are sure the brace expression is well-formed */
2748
2749 /* Allocate working buffer large enough for our work */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002750 new_pattern_buf = xmalloc(strlen(pattern));
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002751
2752 /* We have a brace expression. BEGIN points to the opening {,
2753 * NEXT points past the terminator of the first element, and REST
2754 * points past the final }. We will accumulate result names from
2755 * recursive runs for each brace alternative in the buffer using
2756 * GLOB_APPEND. */
2757
2758 p = begin + 1;
2759 while (1) {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002760 /* Construct the new glob expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002761 memcpy(
2762 mempcpy(
2763 mempcpy(new_pattern_buf,
2764 /* We know the prefix for all sub-patterns */
2765 pattern, begin - pattern),
2766 p, next - p),
2767 rest, rest_len);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002768
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002769 /* Note: glob_brace() may garble new_pattern_buf[].
2770 * That's why we re-copy prefix every time (1st memcpy above).
2771 */
2772 n = glob_brace(new_pattern_buf, o, n);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002773 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002774 /* We saw the last entry */
2775 break;
2776 }
2777 p = next + 1;
2778 next = next_brace_sub(next);
2779 }
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002780 free(new_pattern_buf);
2781 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002782
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002783 simple_glob:
2784 {
2785 int gr;
2786 glob_t globdata;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002787
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002788 memset(&globdata, 0, sizeof(globdata));
2789 gr = glob(pattern, 0, NULL, &globdata);
2790 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
2791 if (gr != 0) {
2792 if (gr == GLOB_NOMATCH) {
2793 globfree(&globdata);
2794 /* NB: garbles parameter */
2795 unbackslash(pattern);
2796 o_addstr_with_NUL(o, pattern);
2797 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2798 return o_save_ptr_helper(o, n);
2799 }
2800 if (gr == GLOB_NOSPACE)
2801 bb_error_msg_and_die(bb_msg_memory_exhausted);
2802 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
2803 * but we didn't specify it. Paranoia again. */
2804 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
2805 }
2806 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
2807 char **argv = globdata.gl_pathv;
2808 while (1) {
2809 o_addstr_with_NUL(o, *argv);
2810 n = o_save_ptr_helper(o, n);
2811 argv++;
2812 if (!*argv)
2813 break;
2814 }
2815 }
2816 globfree(&globdata);
2817 }
2818 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002819}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002820/* Performs globbing on last list[],
2821 * saving each result as a new list[].
2822 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002823static int perform_glob(o_string *o, int n)
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002824{
2825 char *pattern, *copy;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002826
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002827 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002828 if (!o->data)
2829 return o_save_ptr_helper(o, n);
2830 pattern = o->data + o_get_last_ptr(o, n);
2831 debug_printf_glob("glob pattern '%s'\n", pattern);
2832 if (!glob_needed(pattern)) {
2833 /* unbackslash last string in o in place, fix length */
2834 o->length = unbackslash(pattern) - o->data;
2835 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2836 return o_save_ptr_helper(o, n);
2837 }
2838
2839 copy = xstrdup(pattern);
2840 /* "forget" pattern in o */
2841 o->length = pattern - o->data;
2842 n = glob_brace(copy, o, n);
2843 free(copy);
2844 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002845 debug_print_list("perform_glob returning", o, n);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002846 return n;
2847}
2848
Denys Vlasenko238081f2010-10-03 14:26:26 +02002849#else /* !HUSH_BRACE_EXPANSION */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002850
2851/* Helper */
2852static int glob_needed(const char *s)
2853{
2854 while (*s) {
2855 if (*s == '\\') {
2856 if (!s[1])
2857 return 0;
2858 s += 2;
2859 continue;
2860 }
2861 if (*s == '*' || *s == '[' || *s == '?')
2862 return 1;
2863 s++;
2864 }
2865 return 0;
2866}
2867/* Performs globbing on last list[],
2868 * saving each result as a new list[].
2869 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002870static int perform_glob(o_string *o, int n)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002871{
2872 glob_t globdata;
2873 int gr;
2874 char *pattern;
2875
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002876 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002877 if (!o->data)
2878 return o_save_ptr_helper(o, n);
2879 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002880 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002881 if (!glob_needed(pattern)) {
2882 literal:
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002883 /* unbackslash last string in o in place, fix length */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002884 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002885 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002886 return o_save_ptr_helper(o, n);
2887 }
2888
2889 memset(&globdata, 0, sizeof(globdata));
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002890 /* Can't use GLOB_NOCHECK: it does not unescape the string.
2891 * If we glob "*.\*" and don't find anything, we need
2892 * to fall back to using literal "*.*", but GLOB_NOCHECK
2893 * will return "*.\*"!
2894 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002895 gr = glob(pattern, 0, NULL, &globdata);
2896 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002897 if (gr != 0) {
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002898 if (gr == GLOB_NOMATCH) {
2899 globfree(&globdata);
2900 goto literal;
2901 }
2902 if (gr == GLOB_NOSPACE)
2903 bb_error_msg_and_die(bb_msg_memory_exhausted);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002904 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
2905 * but we didn't specify it. Paranoia again. */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002906 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002907 }
2908 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
2909 char **argv = globdata.gl_pathv;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002910 /* "forget" pattern in o */
2911 o->length = pattern - o->data;
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002912 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002913 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002914 n = o_save_ptr_helper(o, n);
2915 argv++;
2916 if (!*argv)
2917 break;
2918 }
2919 }
2920 globfree(&globdata);
2921 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002922 debug_print_list("perform_glob returning", o, n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002923 return n;
2924}
2925
Denys Vlasenko238081f2010-10-03 14:26:26 +02002926#endif /* !HUSH_BRACE_EXPANSION */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002927
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002928/* If o->o_expflags & EXP_FLAG_GLOB, glob the string so far remembered.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002929 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002930static int o_save_ptr(o_string *o, int n)
2931{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002932 if (o->o_expflags & EXP_FLAG_GLOB) {
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00002933 /* If o->has_empty_slot, list[n] was already globbed
2934 * (if it was requested back then when it was filled)
2935 * so don't do that again! */
2936 if (!o->has_empty_slot)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002937 return perform_glob(o, n); /* o_save_ptr_helper is inside */
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00002938 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002939 return o_save_ptr_helper(o, n);
2940}
2941
2942/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002943static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002944{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002945 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002946 int string_start;
2947
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002948 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
2949 if (DEBUG_EXPAND)
2950 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002951 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002952 list = (char**)o->data;
2953 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2954 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002955 while (n) {
2956 n--;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002957 list[n] = o->data + (int)(uintptr_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002958 }
2959 return list;
2960}
2961
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002962static void free_pipe_list(struct pipe *pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002963
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002964/* Returns pi->next - next pipe in the list */
2965static struct pipe *free_pipe(struct pipe *pi)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002966{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002967 struct pipe *next;
2968 int i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002969
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002970 debug_printf_clean("free_pipe (pid %d)\n", getpid());
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002971 for (i = 0; i < pi->num_cmds; i++) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002972 struct command *command;
2973 struct redir_struct *r, *rnext;
2974
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002975 command = &pi->cmds[i];
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002976 debug_printf_clean(" command %d:\n", i);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002977 if (command->argv) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002978 if (DEBUG_CLEAN) {
2979 int a;
2980 char **p;
2981 for (a = 0, p = command->argv; *p; a++, p++) {
2982 debug_printf_clean(" argv[%d] = %s\n", a, *p);
2983 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002984 }
2985 free_strings(command->argv);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002986 //command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002987 }
2988 /* not "else if": on syntax error, we may have both! */
2989 if (command->group) {
Denys Vlasenko9d617c42009-06-09 18:40:52 +02002990 debug_printf_clean(" begin group (cmd_type:%d)\n",
2991 command->cmd_type);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002992 free_pipe_list(command->group);
2993 debug_printf_clean(" end group\n");
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002994 //command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002995 }
Denis Vlasenkoed055212009-04-11 10:37:10 +00002996 /* else is crucial here.
2997 * If group != NULL, child_func is meaningless */
2998#if ENABLE_HUSH_FUNCTIONS
2999 else if (command->child_func) {
3000 debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
3001 command->child_func->parent_cmd = NULL;
3002 }
3003#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003004#if !BB_MMU
3005 free(command->group_as_string);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003006 //command->group_as_string = NULL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003007#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003008 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003009 debug_printf_clean(" redirect %d%s",
3010 r->rd_fd, redir_table[r->rd_type].descrip);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003011 /* guard against the case >$FOO, where foo is unset or blank */
3012 if (r->rd_filename) {
3013 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
3014 free(r->rd_filename);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003015 //r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003016 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003017 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003018 rnext = r->next;
3019 free(r);
3020 }
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003021 //command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003022 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003023 free(pi->cmds); /* children are an array, they get freed all at once */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003024 //pi->cmds = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003025#if ENABLE_HUSH_JOB
3026 free(pi->cmdtext);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003027 //pi->cmdtext = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003028#endif
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003029
3030 next = pi->next;
3031 free(pi);
3032 return next;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003033}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003034
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003035static void free_pipe_list(struct pipe *pi)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003036{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003037 while (pi) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003038#if HAS_KEYWORDS
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003039 debug_printf_clean("pipe reserved word %d\n", pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003040#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003041 debug_printf_clean("pipe followup code %d\n", pi->followup);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003042 pi = free_pipe(pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003043 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003044}
3045
3046
Denys Vlasenkob36abf22010-09-05 14:50:59 +02003047/*** Parsing routines ***/
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003048
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003049#ifndef debug_print_tree
3050static void debug_print_tree(struct pipe *pi, int lvl)
3051{
3052 static const char *const PIPE[] = {
3053 [PIPE_SEQ] = "SEQ",
3054 [PIPE_AND] = "AND",
3055 [PIPE_OR ] = "OR" ,
3056 [PIPE_BG ] = "BG" ,
3057 };
3058 static const char *RES[] = {
3059 [RES_NONE ] = "NONE" ,
3060# if ENABLE_HUSH_IF
3061 [RES_IF ] = "IF" ,
3062 [RES_THEN ] = "THEN" ,
3063 [RES_ELIF ] = "ELIF" ,
3064 [RES_ELSE ] = "ELSE" ,
3065 [RES_FI ] = "FI" ,
3066# endif
3067# if ENABLE_HUSH_LOOPS
3068 [RES_FOR ] = "FOR" ,
3069 [RES_WHILE] = "WHILE",
3070 [RES_UNTIL] = "UNTIL",
3071 [RES_DO ] = "DO" ,
3072 [RES_DONE ] = "DONE" ,
3073# endif
3074# if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
3075 [RES_IN ] = "IN" ,
3076# endif
3077# if ENABLE_HUSH_CASE
3078 [RES_CASE ] = "CASE" ,
3079 [RES_CASE_IN ] = "CASE_IN" ,
3080 [RES_MATCH] = "MATCH",
3081 [RES_CASE_BODY] = "CASE_BODY",
3082 [RES_ESAC ] = "ESAC" ,
3083# endif
3084 [RES_XXXX ] = "XXXX" ,
3085 [RES_SNTX ] = "SNTX" ,
3086 };
3087 static const char *const CMDTYPE[] = {
3088 "{}",
3089 "()",
3090 "[noglob]",
3091# if ENABLE_HUSH_FUNCTIONS
3092 "func()",
3093# endif
3094 };
3095
3096 int pin, prn;
3097
3098 pin = 0;
3099 while (pi) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003100 fdprintf(2, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003101 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
3102 prn = 0;
3103 while (prn < pi->num_cmds) {
3104 struct command *command = &pi->cmds[prn];
3105 char **argv = command->argv;
3106
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003107 fdprintf(2, "%*s cmd %d assignment_cnt:%d",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003108 lvl*2, "", prn,
3109 command->assignment_cnt);
3110 if (command->group) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003111 fdprintf(2, " group %s: (argv=%p)%s%s\n",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003112 CMDTYPE[command->cmd_type],
3113 argv
3114# if !BB_MMU
3115 , " group_as_string:", command->group_as_string
3116# else
3117 , "", ""
3118# endif
3119 );
3120 debug_print_tree(command->group, lvl+1);
3121 prn++;
3122 continue;
3123 }
3124 if (argv) while (*argv) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003125 fdprintf(2, " '%s'", *argv);
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003126 argv++;
3127 }
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003128 fdprintf(2, "\n");
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003129 prn++;
3130 }
3131 pi = pi->next;
3132 pin++;
3133 }
3134}
3135#endif /* debug_print_tree */
3136
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00003137static struct pipe *new_pipe(void)
3138{
Eric Andersen25f27032001-04-26 23:22:31 +00003139 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003140 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003141 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003142 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00003143 return pi;
3144}
3145
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003146/* Command (member of a pipe) is complete, or we start a new pipe
3147 * if ctx->command is NULL.
3148 * No errors possible here.
3149 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003150static int done_command(struct parse_context *ctx)
3151{
3152 /* The command is really already in the pipe structure, so
3153 * advance the pipe counter and make a new, null command. */
3154 struct pipe *pi = ctx->pipe;
3155 struct command *command = ctx->command;
3156
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02003157#if 0 /* Instead we emit error message at run time */
3158 if (ctx->pending_redirect) {
3159 /* For example, "cmd >" (no filename to redirect to) */
3160 die_if_script("syntax error: %s", "invalid redirect");
3161 ctx->pending_redirect = NULL;
3162 }
3163#endif
3164
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003165 if (command) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003166 if (IS_NULL_CMD(command)) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003167 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003168 goto clear_and_ret;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003169 }
3170 pi->num_cmds++;
3171 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003172 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003173 } else {
3174 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
3175 }
3176
3177 /* Only real trickiness here is that the uncommitted
3178 * command structure is not counted in pi->num_cmds. */
3179 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003180 ctx->command = command = &pi->cmds[pi->num_cmds];
3181 clear_and_ret:
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003182 memset(command, 0, sizeof(*command));
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003183 return pi->num_cmds; /* used only for 0/nonzero check */
3184}
3185
3186static void done_pipe(struct parse_context *ctx, pipe_style type)
3187{
3188 int not_null;
3189
3190 debug_printf_parse("done_pipe entered, followup %d\n", type);
3191 /* Close previous command */
3192 not_null = done_command(ctx);
3193 ctx->pipe->followup = type;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003194#if HAS_KEYWORDS
3195 ctx->pipe->pi_inverted = ctx->ctx_inverted;
3196 ctx->ctx_inverted = 0;
3197 ctx->pipe->res_word = ctx->ctx_res_w;
3198#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003199
3200 /* Without this check, even just <enter> on command line generates
3201 * tree of three NOPs (!). Which is harmless but annoying.
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003202 * IOW: it is safe to do it unconditionally. */
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003203 if (not_null
Denis Vlasenko7f959372009-04-14 08:06:59 +00003204#if ENABLE_HUSH_IF
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003205 || ctx->ctx_res_w == RES_FI
Denis Vlasenko7f959372009-04-14 08:06:59 +00003206#endif
3207#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003208 || ctx->ctx_res_w == RES_DONE
3209 || ctx->ctx_res_w == RES_FOR
3210 || ctx->ctx_res_w == RES_IN
Denis Vlasenko7f959372009-04-14 08:06:59 +00003211#endif
3212#if ENABLE_HUSH_CASE
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003213 || ctx->ctx_res_w == RES_ESAC
3214#endif
3215 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003216 struct pipe *new_p;
3217 debug_printf_parse("done_pipe: adding new pipe: "
3218 "not_null:%d ctx->ctx_res_w:%d\n",
3219 not_null, ctx->ctx_res_w);
3220 new_p = new_pipe();
3221 ctx->pipe->next = new_p;
3222 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003223 /* RES_THEN, RES_DO etc are "sticky" -
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003224 * they remain set for pipes inside if/while.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003225 * This is used to control execution.
3226 * RES_FOR and RES_IN are NOT sticky (needed to support
3227 * cases where variable or value happens to match a keyword):
3228 */
3229#if ENABLE_HUSH_LOOPS
3230 if (ctx->ctx_res_w == RES_FOR
3231 || ctx->ctx_res_w == RES_IN)
3232 ctx->ctx_res_w = RES_NONE;
3233#endif
3234#if ENABLE_HUSH_CASE
3235 if (ctx->ctx_res_w == RES_MATCH)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003236 ctx->ctx_res_w = RES_CASE_BODY;
3237 if (ctx->ctx_res_w == RES_CASE)
3238 ctx->ctx_res_w = RES_CASE_IN;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003239#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003240 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003241 /* Create the memory for command, roughly:
3242 * ctx->pipe->cmds = new struct command;
3243 * ctx->command = &ctx->pipe->cmds[0];
3244 */
3245 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003246 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003247 }
3248 debug_printf_parse("done_pipe return\n");
3249}
3250
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003251static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003252{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003253 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00003254 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003255 /* Create the memory for command, roughly:
3256 * ctx->pipe->cmds = new struct command;
3257 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003258 */
3259 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00003260}
3261
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003262/* If a reserved word is found and processed, parse context is modified
3263 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00003264 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003265#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003266struct reserved_combo {
3267 char literal[6];
3268 unsigned char res;
3269 unsigned char assignment_flag;
3270 int flag;
3271};
3272enum {
3273 FLAG_END = (1 << RES_NONE ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003274# if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003275 FLAG_IF = (1 << RES_IF ),
3276 FLAG_THEN = (1 << RES_THEN ),
3277 FLAG_ELIF = (1 << RES_ELIF ),
3278 FLAG_ELSE = (1 << RES_ELSE ),
3279 FLAG_FI = (1 << RES_FI ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003280# endif
3281# if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003282 FLAG_FOR = (1 << RES_FOR ),
3283 FLAG_WHILE = (1 << RES_WHILE),
3284 FLAG_UNTIL = (1 << RES_UNTIL),
3285 FLAG_DO = (1 << RES_DO ),
3286 FLAG_DONE = (1 << RES_DONE ),
3287 FLAG_IN = (1 << RES_IN ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003288# endif
3289# if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003290 FLAG_MATCH = (1 << RES_MATCH),
3291 FLAG_ESAC = (1 << RES_ESAC ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003292# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003293 FLAG_START = (1 << RES_XXXX ),
3294};
3295
3296static const struct reserved_combo* match_reserved_word(o_string *word)
3297{
Eric Andersen25f27032001-04-26 23:22:31 +00003298 /* Mostly a list of accepted follow-up reserved words.
3299 * FLAG_END means we are done with the sequence, and are ready
3300 * to turn the compound list into a command.
3301 * FLAG_START means the word must start a new compound list.
3302 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003303 static const struct reserved_combo reserved_list[] = {
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003304# if ENABLE_HUSH_IF
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003305 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
3306 { "if", RES_IF, MAYBE_ASSIGNMENT, FLAG_THEN | FLAG_START },
3307 { "then", RES_THEN, MAYBE_ASSIGNMENT, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
3308 { "elif", RES_ELIF, MAYBE_ASSIGNMENT, FLAG_THEN },
3309 { "else", RES_ELSE, MAYBE_ASSIGNMENT, FLAG_FI },
3310 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003311# endif
3312# if ENABLE_HUSH_LOOPS
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003313 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
3314 { "while", RES_WHILE, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START },
3315 { "until", RES_UNTIL, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START },
3316 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
3317 { "do", RES_DO, MAYBE_ASSIGNMENT, FLAG_DONE },
3318 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003319# endif
3320# if ENABLE_HUSH_CASE
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003321 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
3322 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003323# endif
Eric Andersen25f27032001-04-26 23:22:31 +00003324 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003325 const struct reserved_combo *r;
3326
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02003327 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003328 if (strcmp(word->data, r->literal) == 0)
3329 return r;
3330 }
3331 return NULL;
3332}
Denis Vlasenkobb929512009-04-16 10:59:40 +00003333/* Return 0: not a keyword, 1: keyword
3334 */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003335static int reserved_word(o_string *word, struct parse_context *ctx)
3336{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003337# if ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003338 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003339 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003340 };
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003341# endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003342 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003343
Denys Vlasenko38292b62010-09-05 14:49:40 +02003344 if (word->has_quoted_part)
Denis Vlasenkobb929512009-04-16 10:59:40 +00003345 return 0;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003346 r = match_reserved_word(word);
3347 if (!r)
3348 return 0;
3349
3350 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003351# if ENABLE_HUSH_CASE
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003352 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE_IN) {
3353 /* "case word IN ..." - IN part starts first MATCH part */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003354 r = &reserved_match;
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003355 } else
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003356# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003357 if (r->flag == 0) { /* '!' */
3358 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003359 syntax_error("! ! command");
Denis Vlasenkobb929512009-04-16 10:59:40 +00003360 ctx->ctx_res_w = RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00003361 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003362 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00003363 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003364 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003365 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003366 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003367
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003368 old = xmalloc(sizeof(*old));
3369 debug_printf_parse("push stack %p\n", old);
3370 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003371 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003372 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003373 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003374 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003375 ctx->ctx_res_w = RES_SNTX;
3376 return 1;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003377 } else {
3378 /* "{...} fi" is ok. "{...} if" is not
3379 * Example:
3380 * if { echo foo; } then { echo bar; } fi */
3381 if (ctx->command->group)
3382 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003383 }
Denis Vlasenkobb929512009-04-16 10:59:40 +00003384
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003385 ctx->ctx_res_w = r->res;
3386 ctx->old_flag = r->flag;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003387 word->o_assignment = r->assignment_flag;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003388 debug_printf_parse("word->o_assignment='%s'\n", assignment_flag[word->o_assignment]);
Denis Vlasenkobb929512009-04-16 10:59:40 +00003389
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003390 if (ctx->old_flag & FLAG_END) {
3391 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003392
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003393 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003394 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003395 old = ctx->stack;
3396 old->command->group = ctx->list_head;
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003397 old->command->cmd_type = CMD_NORMAL;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003398# if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02003399 /* At this point, the compound command's string is in
3400 * ctx->as_string... except for the leading keyword!
3401 * Consider this example: "echo a | if true; then echo a; fi"
3402 * ctx->as_string will contain "true; then echo a; fi",
3403 * with "if " remaining in old->as_string!
3404 */
3405 {
3406 char *str;
3407 int len = old->as_string.length;
3408 /* Concatenate halves */
3409 o_addstr(&old->as_string, ctx->as_string.data);
3410 o_free_unsafe(&ctx->as_string);
3411 /* Find where leading keyword starts in first half */
3412 str = old->as_string.data + len;
3413 if (str > old->as_string.data)
3414 str--; /* skip whitespace after keyword */
3415 while (str > old->as_string.data && isalpha(str[-1]))
3416 str--;
3417 /* Ugh, we're done with this horrid hack */
3418 old->command->group_as_string = xstrdup(str);
3419 debug_printf_parse("pop, remembering as:'%s'\n",
3420 old->command->group_as_string);
3421 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003422# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003423 *ctx = *old; /* physical copy */
3424 free(old);
3425 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003426 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003427}
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003428#endif /* HAS_KEYWORDS */
Eric Andersen25f27032001-04-26 23:22:31 +00003429
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003430/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003431 * Normal return is 0. Syntax errors return 1.
3432 * Note: on return, word is reset, but not o_free'd!
3433 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003434static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003435{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003436 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00003437
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003438 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denys Vlasenko38292b62010-09-05 14:49:40 +02003439 if (word->length == 0 && !word->has_quoted_part) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003440 debug_printf_parse("done_word return 0: true null, ignored\n");
3441 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003442 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003443
Eric Andersen25f27032001-04-26 23:22:31 +00003444 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003445 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
3446 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003447 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3448 * "2.7 Redirection
3449 * ...the word that follows the redirection operator
3450 * shall be subjected to tilde expansion, parameter expansion,
3451 * command substitution, arithmetic expansion, and quote
3452 * removal. Pathname expansion shall not be performed
3453 * on the word by a non-interactive shell; an interactive
3454 * shell may perform it, but shall do so only when
3455 * the expansion would result in one word."
3456 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003457 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003458 /* Cater for >\file case:
3459 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
3460 * Same with heredocs:
3461 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
3462 */
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003463 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC) {
3464 unbackslash(ctx->pending_redirect->rd_filename);
3465 /* Is it <<"HEREDOC"? */
Denys Vlasenko38292b62010-09-05 14:49:40 +02003466 if (word->has_quoted_part) {
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003467 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
3468 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003469 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003470 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003471 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003472 } else {
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003473#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003474# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00003475 if (ctx->ctx_dsemicolon
3476 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
3477 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003478 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003479 /* ctx->ctx_res_w = RES_MATCH; */
3480 ctx->ctx_dsemicolon = 0;
3481 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003482# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003483 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003484# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003485 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
3486 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003487# endif
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003488# if ENABLE_HUSH_CASE
3489 && ctx->ctx_res_w != RES_CASE
3490# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003491 ) {
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003492 int reserved = reserved_word(word, ctx);
3493 debug_printf_parse("checking for reserved-ness: %d\n", reserved);
3494 if (reserved) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003495 o_reset_to_empty_unquoted(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003496 debug_printf_parse("done_word return %d\n",
3497 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003498 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003499 }
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02003500# if ENABLE_HUSH_BASH_COMPAT
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003501 if (strcmp(word->data, "[[") == 0) {
3502 command->cmd_type = CMD_SINGLEWORD_NOGLOB;
3503 }
3504 /* fall through */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02003505# endif
Eric Andersen25f27032001-04-26 23:22:31 +00003506 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003507#endif
Denis Vlasenkobb929512009-04-16 10:59:40 +00003508 if (command->group) {
3509 /* "{ echo foo; } echo bar" - bad */
3510 syntax_error_at(word->data);
3511 debug_printf_parse("done_word return 1: syntax error, "
3512 "groups and arglists don't mix\n");
3513 return 1;
3514 }
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003515
3516 /* If this word wasn't an assignment, next ones definitely
3517 * can't be assignments. Even if they look like ones. */
3518 if (word->o_assignment != DEFINITELY_ASSIGNMENT
3519 && word->o_assignment != WORD_IS_KEYWORD
3520 ) {
3521 word->o_assignment = NOT_ASSIGNMENT;
3522 } else {
3523 if (word->o_assignment == DEFINITELY_ASSIGNMENT) {
3524 command->assignment_cnt++;
3525 debug_printf_parse("++assignment_cnt=%d\n", command->assignment_cnt);
3526 }
3527 debug_printf_parse("word->o_assignment was:'%s'\n", assignment_flag[word->o_assignment]);
3528 word->o_assignment = MAYBE_ASSIGNMENT;
3529 }
3530 debug_printf_parse("word->o_assignment='%s'\n", assignment_flag[word->o_assignment]);
3531
Denys Vlasenko38292b62010-09-05 14:49:40 +02003532 if (word->has_quoted_part
Denis Vlasenko55789c62008-06-18 16:30:42 +00003533 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
3534 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003535 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003536 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003537 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003538 char *p = word->data;
3539 while (p[0] == SPECIAL_VAR_SYMBOL
3540 && (p[1] & 0x7f) == '@'
3541 && p[2] == SPECIAL_VAR_SYMBOL
3542 ) {
3543 p += 3;
3544 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00003545 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003546 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003547 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003548 }
Eric Andersen25f27032001-04-26 23:22:31 +00003549
Denis Vlasenko06810332007-05-21 23:30:54 +00003550#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003551 if (ctx->ctx_res_w == RES_FOR) {
Denys Vlasenko38292b62010-09-05 14:49:40 +02003552 if (word->has_quoted_part
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003553 || !is_well_formed_var_name(command->argv[0], '\0')
3554 ) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003555 /* bash says just "not a valid identifier" */
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003556 syntax_error("not a valid identifier in for");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003557 return 1;
3558 }
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003559 /* Force FOR to have just one word (variable name) */
3560 /* NB: basically, this makes hush see "for v in ..."
3561 * syntax as if it is "for v; in ...". FOR and IN become
3562 * two pipe structs in parse tree. */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003563 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003564 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003565#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003566#if ENABLE_HUSH_CASE
3567 /* Force CASE to have just one word */
3568 if (ctx->ctx_res_w == RES_CASE) {
3569 done_pipe(ctx, PIPE_SEQ);
3570 }
3571#endif
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003572
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003573 o_reset_to_empty_unquoted(word);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003574
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003575 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003576 return 0;
3577}
3578
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003579
3580/* Peek ahead in the input to find out if we have a "&n" construct,
3581 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003582 * Return:
3583 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
3584 * REDIRFD_SYNTAX_ERR if syntax error,
3585 * REDIRFD_TO_FILE if no & was seen,
3586 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003587 */
3588#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003589#define parse_redir_right_fd(as_string, input) \
3590 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003591#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003592static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003593{
3594 int ch, d, ok;
3595
3596 ch = i_peek(input);
3597 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003598 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003599
3600 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003601 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003602 ch = i_peek(input);
3603 if (ch == '-') {
3604 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003605 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003606 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003607 }
3608 d = 0;
3609 ok = 0;
3610 while (ch != EOF && isdigit(ch)) {
3611 d = d*10 + (ch-'0');
3612 ok = 1;
3613 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003614 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003615 ch = i_peek(input);
3616 }
3617 if (ok) return d;
3618
3619//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
3620
3621 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003622 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003623}
3624
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003625/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003626 */
3627static int parse_redirect(struct parse_context *ctx,
3628 int fd,
3629 redir_type style,
3630 struct in_str *input)
3631{
3632 struct command *command = ctx->command;
3633 struct redir_struct *redir;
3634 struct redir_struct **redirp;
3635 int dup_num;
3636
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003637 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003638 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003639 /* Check for a '>&1' type redirect */
3640 dup_num = parse_redir_right_fd(&ctx->as_string, input);
3641 if (dup_num == REDIRFD_SYNTAX_ERR)
3642 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003643 } else {
3644 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003645 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003646 if (dup_num) { /* <<-... */
3647 ch = i_getch(input);
3648 nommu_addchr(&ctx->as_string, ch);
3649 ch = i_peek(input);
3650 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003651 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003652
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003653 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003654 int ch = i_peek(input);
3655 if (ch == '|') {
3656 /* >|FILE redirect ("clobbering" >).
3657 * Since we do not support "set -o noclobber" yet,
3658 * >| and > are the same for now. Just eat |.
3659 */
3660 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003661 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003662 }
3663 }
3664
3665 /* Create a new redir_struct and append it to the linked list */
3666 redirp = &command->redirects;
3667 while ((redir = *redirp) != NULL) {
3668 redirp = &(redir->next);
3669 }
3670 *redirp = redir = xzalloc(sizeof(*redir));
3671 /* redir->next = NULL; */
3672 /* redir->rd_filename = NULL; */
3673 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003674 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003675
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003676 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
3677 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003678
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003679 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003680 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003681 /* Erik had a check here that the file descriptor in question
3682 * is legit; I postpone that to "run time"
3683 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003684 debug_printf_parse("duplicating redirect '%d>&%d'\n",
3685 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003686 } else {
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02003687#if 0 /* Instead we emit error message at run time */
3688 if (ctx->pending_redirect) {
3689 /* For example, "cmd > <file" */
3690 die_if_script("syntax error: %s", "invalid redirect");
3691 }
3692#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003693 /* Set ctx->pending_redirect, so we know what to do at the
3694 * end of the next parsed word. */
3695 ctx->pending_redirect = redir;
3696 }
3697 return 0;
3698}
3699
Eric Andersen25f27032001-04-26 23:22:31 +00003700/* If a redirect is immediately preceded by a number, that number is
3701 * supposed to tell which file descriptor to redirect. This routine
3702 * looks for such preceding numbers. In an ideal world this routine
3703 * needs to handle all the following classes of redirects...
3704 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
3705 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
3706 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
3707 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003708 *
3709 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3710 * "2.7 Redirection
3711 * ... If n is quoted, the number shall not be recognized as part of
3712 * the redirection expression. For example:
3713 * echo \2>a
3714 * writes the character 2 into file a"
Denys Vlasenko38292b62010-09-05 14:49:40 +02003715 * We are getting it right by setting ->has_quoted_part on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003716 *
3717 * A -1 return means no valid number was found,
3718 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00003719 */
3720static int redirect_opt_num(o_string *o)
3721{
3722 int num;
3723
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003724 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003725 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003726 num = bb_strtou(o->data, NULL, 10);
3727 if (errno || num < 0)
3728 return -1;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003729 o_reset_to_empty_unquoted(o);
Eric Andersen25f27032001-04-26 23:22:31 +00003730 return num;
3731}
3732
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003733#if BB_MMU
3734#define fetch_till_str(as_string, input, word, skip_tabs) \
3735 fetch_till_str(input, word, skip_tabs)
3736#endif
3737static char *fetch_till_str(o_string *as_string,
3738 struct in_str *input,
3739 const char *word,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003740 int heredoc_flags)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003741{
3742 o_string heredoc = NULL_O_STRING;
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003743 unsigned past_EOL;
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003744 int prev = 0; /* not \ */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003745 int ch;
3746
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003747 goto jump_in;
Denys Vlasenkob8709032011-05-08 21:20:01 +02003748
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003749 while (1) {
3750 ch = i_getch(input);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003751 if (ch != EOF)
3752 nommu_addchr(as_string, ch);
3753 if ((ch == '\n' || ch == EOF)
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003754 && ((heredoc_flags & HEREDOC_QUOTED) || prev != '\\')
3755 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003756 if (strcmp(heredoc.data + past_EOL, word) == 0) {
3757 heredoc.data[past_EOL] = '\0';
3758 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
3759 return heredoc.data;
3760 }
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003761 while (ch == '\n') {
3762 o_addchr(&heredoc, ch);
3763 prev = ch;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003764 jump_in:
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003765 past_EOL = heredoc.length;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003766 do {
3767 ch = i_getch(input);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003768 if (ch != EOF)
3769 nommu_addchr(as_string, ch);
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003770 } while ((heredoc_flags & HEREDOC_SKIPTABS) && ch == '\t');
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003771 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003772 }
3773 if (ch == EOF) {
3774 o_free_unsafe(&heredoc);
3775 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003776 }
3777 o_addchr(&heredoc, ch);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003778 nommu_addchr(as_string, ch);
Denys Vlasenkoc3adfac2010-09-06 11:46:03 +02003779 if (prev == '\\' && ch == '\\')
3780 /* Correctly handle foo\\<eol> (not a line cont.) */
3781 prev = 0; /* not \ */
3782 else
3783 prev = ch;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003784 }
3785}
3786
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003787/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
3788 * and load them all. There should be exactly heredoc_cnt of them.
3789 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003790static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
3791{
3792 struct pipe *pi = ctx->list_head;
3793
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003794 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003795 int i;
3796 struct command *cmd = pi->cmds;
3797
3798 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
3799 pi->num_cmds,
3800 cmd->argv ? cmd->argv[0] : "NONE");
3801 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003802 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003803
3804 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
3805 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003806 while (redir) {
3807 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003808 char *p;
3809
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003810 redir->rd_type = REDIRECT_HEREDOC2;
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003811 /* redir->rd_dup is (ab)used to indicate <<- */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003812 p = fetch_till_str(&ctx->as_string, input,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003813 redir->rd_filename, redir->rd_dup);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003814 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003815 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003816 return 1;
3817 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003818 free(redir->rd_filename);
3819 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003820 heredoc_cnt--;
3821 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003822 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003823 }
3824 cmd++;
3825 }
3826 pi = pi->next;
3827 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003828#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003829 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003830 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003831 bb_error_msg_and_die("heredoc BUG 2");
3832#endif
3833 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003834}
3835
3836
Denys Vlasenkob36abf22010-09-05 14:50:59 +02003837static int run_list(struct pipe *pi);
3838#if BB_MMU
3839#define parse_stream(pstring, input, end_trigger) \
3840 parse_stream(input, end_trigger)
3841#endif
3842static struct pipe *parse_stream(char **pstring,
3843 struct in_str *input,
3844 int end_trigger);
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003845
Eric Andersen25f27032001-04-26 23:22:31 +00003846
Denys Vlasenkoc2704542009-11-20 19:14:19 +01003847#if !ENABLE_HUSH_FUNCTIONS
3848#define parse_group(dest, ctx, input, ch) \
3849 parse_group(ctx, input, ch)
3850#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003851static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00003852 struct in_str *input, int ch)
3853{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003854 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00003855 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003856 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003857 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00003858 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003859 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003860
3861 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003862#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko38292b62010-09-05 14:49:40 +02003863 if (ch == '(' && !dest->has_quoted_part) {
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003864 if (dest->length)
Denis Vlasenkobb929512009-04-16 10:59:40 +00003865 if (done_word(dest, ctx))
3866 return 1;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003867 if (!command->argv)
3868 goto skip; /* (... */
3869 if (command->argv[1]) { /* word word ... (... */
3870 syntax_error_unexpected_ch('(');
3871 return 1;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003872 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003873 /* it is "word(..." or "word (..." */
3874 do
3875 ch = i_getch(input);
3876 while (ch == ' ' || ch == '\t');
3877 if (ch != ')') {
3878 syntax_error_unexpected_ch(ch);
3879 return 1;
3880 }
3881 nommu_addchr(&ctx->as_string, ch);
3882 do
3883 ch = i_getch(input);
3884 while (ch == ' ' || ch == '\t' || ch == '\n');
3885 if (ch != '{') {
3886 syntax_error_unexpected_ch(ch);
3887 return 1;
3888 }
3889 nommu_addchr(&ctx->as_string, ch);
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003890 command->cmd_type = CMD_FUNCDEF;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003891 goto skip;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003892 }
3893#endif
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01003894
3895#if 0 /* Prevented by caller */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003896 if (command->argv /* word [word]{... */
3897 || dest->length /* word{... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02003898 || dest->has_quoted_part /* ""{... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003899 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003900 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003901 debug_printf_parse("parse_group return 1: "
3902 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003903 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003904 }
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01003905#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003906
3907#if ENABLE_HUSH_FUNCTIONS
3908 skip:
3909#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00003910 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003911 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00003912 endch = ')';
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003913 command->cmd_type = CMD_SUBSHELL;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003914 } else {
3915 /* bash does not allow "{echo...", requires whitespace */
3916 ch = i_getch(input);
3917 if (ch != ' ' && ch != '\t' && ch != '\n') {
3918 syntax_error_unexpected_ch(ch);
3919 return 1;
3920 }
3921 nommu_addchr(&ctx->as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003922 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003923
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003924 {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003925#if BB_MMU
3926# define as_string NULL
3927#else
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003928 char *as_string = NULL;
3929#endif
3930 pipe_list = parse_stream(&as_string, input, endch);
3931#if !BB_MMU
3932 if (as_string)
3933 o_addstr(&ctx->as_string, as_string);
3934#endif
3935 /* empty ()/{} or parse error? */
3936 if (!pipe_list || pipe_list == ERR_PTR) {
Denis Vlasenkobb929512009-04-16 10:59:40 +00003937 /* parse_stream already emitted error msg */
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003938 if (!BB_MMU)
3939 free(as_string);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003940 debug_printf_parse("parse_group return 1: "
3941 "parse_stream returned %p\n", pipe_list);
3942 return 1;
3943 }
3944 command->group = pipe_list;
3945#if !BB_MMU
3946 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
3947 command->group_as_string = as_string;
3948 debug_printf_parse("end of group, remembering as:'%s'\n",
3949 command->group_as_string);
3950#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003951#undef as_string
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003952 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003953 debug_printf_parse("parse_group return 0\n");
3954 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003955 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00003956}
3957
Denys Vlasenko46e64982016-09-29 19:50:55 +02003958static int i_getch_and_eat_bkslash_nl(struct in_str *input)
3959{
3960 for (;;) {
3961 int ch, ch2;
3962
3963 ch = i_getch(input);
3964 if (ch != '\\')
3965 return ch;
3966 ch2 = i_peek(input);
3967 if (ch2 != '\n')
3968 return ch;
3969 /* backslash+newline, skip it */
3970 i_getch(input);
3971 }
3972}
3973
Denys Vlasenko657086a2016-09-29 18:07:42 +02003974static int i_peek_and_eat_bkslash_nl(struct in_str *input)
3975{
3976 for (;;) {
3977 int ch, ch2;
3978
3979 ch = i_peek(input);
3980 if (ch != '\\')
3981 return ch;
3982 ch2 = i_peek2(input);
3983 if (ch2 != '\n')
3984 return ch;
3985 /* backslash+newline, skip it */
3986 i_getch(input);
3987 i_getch(input);
3988 }
3989}
3990
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02003991#if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_DOLLAR_OPS
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003992/* Subroutines for copying $(...) and `...` things */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01003993static int add_till_backquote(o_string *dest, struct in_str *input, int in_dquote);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003994/* '...' */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01003995static int add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003996{
3997 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003998 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003999 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004000 syntax_error_unterm_ch('\'');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004001 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004002 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004003 if (ch == '\'')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004004 return 1;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004005 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004006 }
4007}
4008/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004009static int add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004010{
4011 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004012 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004013 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004014 syntax_error_unterm_ch('"');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004015 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004016 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004017 if (ch == '"')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004018 return 1;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004019 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004020 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004021 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004022 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004023 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004024 if (ch == '`') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004025 if (!add_till_backquote(dest, input, /*in_dquote:*/ 1))
4026 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004027 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004028 continue;
4029 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00004030 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004031 }
4032}
4033/* Process `cmd` - copy contents until "`" is seen. Complicated by
4034 * \` quoting.
4035 * "Within the backquoted style of command substitution, backslash
4036 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
4037 * The search for the matching backquote shall be satisfied by the first
4038 * backquote found without a preceding backslash; during this search,
4039 * if a non-escaped backquote is encountered within a shell comment,
4040 * a here-document, an embedded command substitution of the $(command)
4041 * form, or a quoted string, undefined results occur. A single-quoted
4042 * or double-quoted string that begins, but does not end, within the
4043 * "`...`" sequence produces undefined results."
4044 * Example Output
4045 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
4046 */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004047static int add_till_backquote(o_string *dest, struct in_str *input, int in_dquote)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004048{
4049 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004050 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004051 if (ch == '`')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004052 return 1;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004053 if (ch == '\\') {
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02004054 /* \x. Copy both unless it is \`, \$, \\ and maybe \" */
4055 ch = i_getch(input);
4056 if (ch != '`'
4057 && ch != '$'
4058 && ch != '\\'
4059 && (!in_dquote || ch != '"')
4060 ) {
4061 o_addchr(dest, '\\');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004062 }
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02004063 }
4064 if (ch == EOF) {
4065 syntax_error_unterm_ch('`');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004066 return 0;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004067 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004068 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004069 }
4070}
4071/* Process $(cmd) - copy contents until ")" is seen. Complicated by
4072 * quoting and nested ()s.
4073 * "With the $(command) style of command substitution, all characters
4074 * following the open parenthesis to the matching closing parenthesis
4075 * constitute the command. Any valid shell script can be used for command,
4076 * except a script consisting solely of redirections which produces
4077 * unspecified results."
4078 * Example Output
4079 * echo $(echo '(TEST)' BEST) (TEST) BEST
4080 * echo $(echo 'TEST)' BEST) TEST) BEST
4081 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
Denys Vlasenko74369502010-05-21 19:52:01 +02004082 *
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004083 * Also adapted to eat ${var%...} and $((...)) constructs, since ... part
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004084 * can contain arbitrary constructs, just like $(cmd).
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004085 * In bash compat mode, it needs to also be able to stop on ':' or '/'
4086 * for ${var:N[:M]} and ${var/P[/R]} parsing.
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004087 */
Denys Vlasenko74369502010-05-21 19:52:01 +02004088#define DOUBLE_CLOSE_CHAR_FLAG 0x80
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004089static int add_till_closing_bracket(o_string *dest, struct in_str *input, unsigned end_ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004090{
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004091 int ch;
Denys Vlasenko74369502010-05-21 19:52:01 +02004092 char dbl = end_ch & DOUBLE_CLOSE_CHAR_FLAG;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004093# if ENABLE_HUSH_BASH_COMPAT
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004094 char end_char2 = end_ch >> 8;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004095# endif
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004096 end_ch &= (DOUBLE_CLOSE_CHAR_FLAG - 1);
4097
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004098 while (1) {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004099 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004100 if (ch == EOF) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004101 syntax_error_unterm_ch(end_ch);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004102 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004103 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004104 if (ch == end_ch IF_HUSH_BASH_COMPAT( || ch == end_char2)) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004105 if (!dbl)
4106 break;
4107 /* we look for closing )) of $((EXPR)) */
Denys Vlasenko657086a2016-09-29 18:07:42 +02004108 if (i_peek_and_eat_bkslash_nl(input) == end_ch) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004109 i_getch(input); /* eat second ')' */
4110 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004111 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004112 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004113 o_addchr(dest, ch);
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004114 if (ch == '(' || ch == '{') {
4115 ch = (ch == '(' ? ')' : '}');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004116 if (!add_till_closing_bracket(dest, input, ch))
4117 return 0;
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004118 o_addchr(dest, ch);
4119 continue;
4120 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004121 if (ch == '\'') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004122 if (!add_till_single_quote(dest, input))
4123 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004124 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004125 continue;
4126 }
4127 if (ch == '"') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004128 if (!add_till_double_quote(dest, input))
4129 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004130 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004131 continue;
4132 }
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004133 if (ch == '`') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004134 if (!add_till_backquote(dest, input, /*in_dquote:*/ 0))
4135 return 0;
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004136 o_addchr(dest, ch);
4137 continue;
4138 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004139 if (ch == '\\') {
4140 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004141 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004142 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004143 syntax_error_unterm_ch(')');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004144 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004145 }
Denys Vlasenko657086a2016-09-29 18:07:42 +02004146#if 0
4147 if (ch == '\n') {
4148 /* "backslash+newline", ignore both */
4149 o_delchr(dest); /* undo insertion of '\' */
4150 continue;
4151 }
4152#endif
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004153 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004154 continue;
4155 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004156 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004157 return ch;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004158}
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004159#endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_DOLLAR_OPS */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004160
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004161/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004162#if BB_MMU
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004163#define parse_dollar(as_string, dest, input, quote_mask) \
4164 parse_dollar(dest, input, quote_mask)
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004165#define as_string NULL
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004166#endif
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004167static int parse_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004168 o_string *dest,
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004169 struct in_str *input, unsigned char quote_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00004170{
Denys Vlasenko657086a2016-09-29 18:07:42 +02004171 int ch = i_peek_and_eat_bkslash_nl(input); /* first character after the $ */
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004172
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004173 debug_printf_parse("parse_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004174 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004175 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004176 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00004177 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004178 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004179 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004180 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004181 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004182 quote_mask = 0;
Denys Vlasenko657086a2016-09-29 18:07:42 +02004183 ch = i_peek_and_eat_bkslash_nl(input);
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004184 if (!isalnum(ch) && ch != '_') {
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004185 /* End of variable name reached */
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004186 break;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004187 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004188 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004189 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004190 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004191 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004192 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004193 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004194 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004195 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004196 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004197 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004198 o_addchr(dest, ch | quote_mask);
4199 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004200 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004201 case '$': /* pid */
4202 case '!': /* last bg pid */
4203 case '?': /* last exit code */
4204 case '#': /* number of args */
4205 case '*': /* args */
4206 case '@': /* args */
4207 goto make_one_char_var;
4208 case '{': {
Mike Frysingeref3e7fd2009-06-01 14:13:39 -04004209 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4210
Denys Vlasenko74369502010-05-21 19:52:01 +02004211 ch = i_getch(input); /* eat '{' */
4212 nommu_addchr(as_string, ch);
4213
Denys Vlasenko46e64982016-09-29 19:50:55 +02004214 ch = i_getch_and_eat_bkslash_nl(input); /* first char after '{' */
Denys Vlasenko74369502010-05-21 19:52:01 +02004215 /* It should be ${?}, or ${#var},
4216 * or even ${?+subst} - operator acting on a special variable,
4217 * or the beginning of variable name.
4218 */
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004219 if (ch == EOF
4220 || (!strchr(_SPECIAL_VARS_STR, ch) && !isalnum(ch)) /* not one of those */
4221 ) {
Denys Vlasenko74369502010-05-21 19:52:01 +02004222 bad_dollar_syntax:
4223 syntax_error_unterm_str("${name}");
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004224 debug_printf_parse("parse_dollar return 0: unterminated ${name}\n");
4225 return 0;
Denys Vlasenko74369502010-05-21 19:52:01 +02004226 }
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004227 nommu_addchr(as_string, ch);
Denys Vlasenko74369502010-05-21 19:52:01 +02004228 ch |= quote_mask;
4229
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004230 /* It's possible to just call add_till_closing_bracket() at this point.
Denys Vlasenko74369502010-05-21 19:52:01 +02004231 * However, this regresses some of our testsuite cases
4232 * which check invalid constructs like ${%}.
4233 * Oh well... let's check that the var name part is fine... */
4234
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004235 while (1) {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004236 unsigned pos;
4237
Denys Vlasenko74369502010-05-21 19:52:01 +02004238 o_addchr(dest, ch);
4239 debug_printf_parse(": '%c'\n", ch);
4240
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004241 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004242 nommu_addchr(as_string, ch);
Denys Vlasenko74369502010-05-21 19:52:01 +02004243 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00004244 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004245
Denys Vlasenko74369502010-05-21 19:52:01 +02004246 if (!isalnum(ch) && ch != '_') {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004247 unsigned end_ch;
4248 unsigned char last_ch;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004249 /* handle parameter expansions
4250 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
4251 */
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004252 if (!strchr(VAR_SUBST_OPS, ch)) /* ${var<bad_char>... */
Denys Vlasenko74369502010-05-21 19:52:01 +02004253 goto bad_dollar_syntax;
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004254
4255 /* Eat everything until closing '}' (or ':') */
4256 end_ch = '}';
4257 if (ENABLE_HUSH_BASH_COMPAT
4258 && ch == ':'
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004259 && !strchr(MINUS_PLUS_EQUAL_QUESTION, i_peek(input))
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004260 ) {
4261 /* It's ${var:N[:M]} thing */
4262 end_ch = '}' * 0x100 + ':';
4263 }
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004264 if (ENABLE_HUSH_BASH_COMPAT
4265 && ch == '/'
4266 ) {
4267 /* It's ${var/[/]pattern[/repl]} thing */
4268 if (i_peek(input) == '/') { /* ${var//pattern[/repl]}? */
4269 i_getch(input);
4270 nommu_addchr(as_string, '/');
4271 ch = '\\';
4272 }
4273 end_ch = '}' * 0x100 + '/';
4274 }
4275 o_addchr(dest, ch);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004276 again:
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004277 if (!BB_MMU)
4278 pos = dest->length;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004279#if ENABLE_HUSH_DOLLAR_OPS
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004280 last_ch = add_till_closing_bracket(dest, input, end_ch);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004281 if (last_ch == 0) /* error? */
4282 return 0;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004283#else
4284#error Simple code to only allow ${var} is not implemented
4285#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004286 if (as_string) {
4287 o_addstr(as_string, dest->data + pos);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004288 o_addchr(as_string, last_ch);
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004289 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004290
4291 if (ENABLE_HUSH_BASH_COMPAT && (end_ch & 0xff00)) {
4292 /* close the first block: */
4293 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004294 /* while parsing N from ${var:N[:M]}
4295 * or pattern from ${var/[/]pattern[/repl]} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004296 if ((end_ch & 0xff) == last_ch) {
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004297 /* got ':' or '/'- parse the rest */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004298 end_ch = '}';
4299 goto again;
4300 }
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004301 /* got '}' */
4302 if (end_ch == '}' * 0x100 + ':') {
4303 /* it's ${var:N} - emulate :999999999 */
4304 o_addstr(dest, "999999999");
4305 } /* else: it's ${var/[/]pattern} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004306 }
Denys Vlasenko74369502010-05-21 19:52:01 +02004307 break;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004308 }
Denys Vlasenko74369502010-05-21 19:52:01 +02004309 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004310 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4311 break;
4312 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004313#if ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004314 case '(': {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004315 unsigned pos;
4316
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004317 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004318 nommu_addchr(as_string, ch);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004319# if ENABLE_SH_MATH_SUPPORT
Denys Vlasenko657086a2016-09-29 18:07:42 +02004320 if (i_peek_and_eat_bkslash_nl(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004321 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004322 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004323 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4324 o_addchr(dest, /*quote_mask |*/ '+');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004325 if (!BB_MMU)
4326 pos = dest->length;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004327 if (!add_till_closing_bracket(dest, input, ')' | DOUBLE_CLOSE_CHAR_FLAG))
4328 return 0; /* error */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004329 if (as_string) {
4330 o_addstr(as_string, dest->data + pos);
4331 o_addchr(as_string, ')');
4332 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004333 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004334 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004335 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004336 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004337# endif
4338# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004339 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4340 o_addchr(dest, quote_mask | '`');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004341 if (!BB_MMU)
4342 pos = dest->length;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004343 if (!add_till_closing_bracket(dest, input, ')'))
4344 return 0; /* error */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004345 if (as_string) {
4346 o_addstr(as_string, dest->data + pos);
Denys Vlasenkob70cef72010-01-12 13:45:45 +01004347 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004348 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004349 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004350# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004351 break;
4352 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004353#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004354 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004355 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004356 nommu_addchr(as_string, ch);
Denys Vlasenko657086a2016-09-29 18:07:42 +02004357 ch = i_peek_and_eat_bkslash_nl(input);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004358 if (isalnum(ch)) { /* it's $_name or $_123 */
4359 ch = '_';
4360 goto make_var;
4361 }
4362 /* else: it's $_ */
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02004363 /* TODO: $_ and $-: */
4364 /* $_ Shell or shell script name; or last argument of last command
4365 * (if last command wasn't a pipe; if it was, bash sets $_ to "");
4366 * but in command's env, set to full pathname used to invoke it */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004367 /* $- Option flags set by set builtin or shell options (-i etc) */
4368 default:
4369 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00004370 }
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004371 debug_printf_parse("parse_dollar return 1 (ok)\n");
4372 return 1;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004373#undef as_string
Eric Andersen25f27032001-04-26 23:22:31 +00004374}
4375
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004376#if BB_MMU
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004377# if ENABLE_HUSH_BASH_COMPAT
4378#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4379 encode_string(dest, input, dquote_end, process_bkslash)
4380# else
4381/* only ${var/pattern/repl} (its pattern part) needs additional mode */
4382#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4383 encode_string(dest, input, dquote_end)
4384# endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004385#define as_string NULL
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004386
4387#else /* !MMU */
4388
4389# if ENABLE_HUSH_BASH_COMPAT
4390/* all parameters are needed, no macro tricks */
4391# else
4392#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4393 encode_string(as_string, dest, input, dquote_end)
4394# endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004395#endif
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004396static int encode_string(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004397 o_string *dest,
4398 struct in_str *input,
Denys Vlasenko14e289b2010-09-10 10:15:18 +02004399 int dquote_end,
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004400 int process_bkslash)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004401{
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004402#if !ENABLE_HUSH_BASH_COMPAT
4403 const int process_bkslash = 1;
4404#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004405 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004406 int next;
4407
4408 again:
4409 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004410 if (ch != EOF)
4411 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004412 if (ch == dquote_end) { /* may be only '"' or EOF */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004413 debug_printf_parse("encode_string return 1 (ok)\n");
4414 return 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004415 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004416 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004417 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004418 syntax_error_unterm_ch('"');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004419 return 0; /* error */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004420 }
4421 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004422 if (ch != '\n') {
4423 next = i_peek(input);
4424 }
Denys Vlasenkof37eb392009-10-18 11:46:35 +02004425 debug_printf_parse("\" ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004426 ch, ch, !!(dest->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004427 if (process_bkslash && ch == '\\') {
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004428 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004429 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004430 xfunc_die();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004431 }
4432 /* bash:
4433 * "The backslash retains its special meaning [in "..."]
4434 * only when followed by one of the following characters:
4435 * $, `, ", \, or <newline>. A double quote may be quoted
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02004436 * within double quotes by preceding it with a backslash."
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004437 * NB: in (unquoted) heredoc, above does not apply to ",
4438 * therefore we check for it by "next == dquote_end" cond.
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004439 */
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004440 if (next == dquote_end || strchr("$`\\\n", next)) {
Denys Vlasenko850b15b2010-09-09 12:58:19 +02004441 ch = i_getch(input); /* eat next */
4442 if (ch == '\n')
4443 goto again; /* skip \<newline> */
Denys Vlasenko4f870492010-09-10 11:06:01 +02004444 } /* else: ch remains == '\\', and we double it below: */
4445 o_addqchr(dest, ch); /* \c if c is a glob char, else just c */
Denys Vlasenko850b15b2010-09-09 12:58:19 +02004446 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004447 goto again;
4448 }
4449 if (ch == '$') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004450 if (!parse_dollar(as_string, dest, input, /*quote_mask:*/ 0x80)) {
4451 debug_printf_parse("encode_string return 0: "
4452 "parse_dollar returned 0 (error)\n");
4453 return 0;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004454 }
4455 goto again;
4456 }
4457#if ENABLE_HUSH_TICK
4458 if (ch == '`') {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004459 //unsigned pos = dest->length;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004460 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4461 o_addchr(dest, 0x80 | '`');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004462 if (!add_till_backquote(dest, input, /*in_dquote:*/ dquote_end == '"'))
4463 return 0; /* error */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004464 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4465 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00004466 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004467 }
4468#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00004469 o_addQchr(dest, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004470 goto again;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004471#undef as_string
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004472}
4473
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004474/*
4475 * Scan input until EOF or end_trigger char.
4476 * Return a list of pipes to execute, or NULL on EOF
4477 * or if end_trigger character is met.
Denys Vlasenkocecbc982011-03-30 18:54:52 +02004478 * On syntax error, exit if shell is not interactive,
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004479 * reset parsing machinery and start parsing anew,
4480 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004481 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004482static struct pipe *parse_stream(char **pstring,
4483 struct in_str *input,
4484 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00004485{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004486 struct parse_context ctx;
4487 o_string dest = NULL_O_STRING;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004488 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00004489
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004490 /* Single-quote triggers a bypass of the main loop until its mate is
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004491 * found. When recursing, quote state is passed in via dest->o_expflags.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004492 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004493 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
Denys Vlasenko90a99042009-09-06 02:36:23 +02004494 end_trigger ? end_trigger : 'X');
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004495 debug_enter();
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004496
Denys Vlasenkof37eb392009-10-18 11:46:35 +02004497 /* If very first arg is "" or '', dest.data may end up NULL.
4498 * Preventing this: */
4499 o_addchr(&dest, '\0');
4500 dest.length = 0;
4501
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004502 /* We used to separate words on $IFS here. This was wrong.
4503 * $IFS is used only for word splitting when $var is expanded,
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004504 * here we should use blank chars as separators, not $IFS
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004505 */
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004506
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004507 if (MAYBE_ASSIGNMENT != 0)
4508 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004509 initialize_context(&ctx);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004510 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004511 while (1) {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004512 const char *is_blank;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004513 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004514 int ch;
4515 int next;
4516 int redir_fd;
4517 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004518
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004519 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004520 debug_printf_parse(": ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004521 ch, ch, !!(dest.o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004522 if (ch == EOF) {
4523 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004524
4525 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004526 syntax_error_unterm_str("here document");
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004527 goto parse_error;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004528 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004529 /* end_trigger == '}' case errors out earlier,
4530 * checking only ')' */
4531 if (end_trigger == ')') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004532 syntax_error_unterm_ch('(');
4533 goto parse_error;
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004534 }
4535
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004536 if (done_word(&dest, &ctx)) {
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004537 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004538 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004539 o_free(&dest);
4540 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004541 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004542 /* If we got nothing... */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004543 /* (this makes bare "&" cmd a no-op.
4544 * bash says: "syntax error near unexpected token '&'") */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004545 if (pi->num_cmds == 0
Denys Vlasenko60cb48c2013-01-14 15:57:44 +01004546 IF_HAS_KEYWORDS(&& pi->res_word == RES_NONE)
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004547 ) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004548 free_pipe_list(pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004549 pi = NULL;
4550 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004551#if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02004552 debug_printf_parse("as_string1 '%s'\n", ctx.as_string.data);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004553 if (pstring)
4554 *pstring = ctx.as_string.data;
4555 else
4556 o_free_unsafe(&ctx.as_string);
4557#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004558 debug_leave();
4559 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004560 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004561 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004562 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004563
4564 next = '\0';
4565 if (ch != '\n')
4566 next = i_peek(input);
4567
4568 is_special = "{}<>;&|()#'" /* special outside of "str" */
4569 "\\$\"" IF_HUSH_TICK("`"); /* always special */
4570 /* Are { and } special here? */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02004571 if (ctx.command->argv /* word [word]{... - non-special */
4572 || dest.length /* word{... - non-special */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004573 || dest.has_quoted_part /* ""{... - non-special */
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004574 || (next != ';' /* }; - special */
4575 && next != ')' /* }) - special */
4576 && next != '&' /* }& and }&& ... - special */
4577 && next != '|' /* }|| ... - special */
4578 && !strchr(defifs, next) /* {word - non-special */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02004579 )
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004580 ) {
4581 /* They are not special, skip "{}" */
4582 is_special += 2;
4583 }
4584 is_special = strchr(is_special, ch);
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004585 is_blank = strchr(defifs, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004586
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004587 if (!is_special && !is_blank) { /* ordinary char */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00004588 ordinary_char:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004589 o_addQchr(&dest, ch);
4590 if ((dest.o_assignment == MAYBE_ASSIGNMENT
4591 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00004592 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004593 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00004594 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004595 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004596 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko55789c62008-06-18 16:30:42 +00004597 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004598 continue;
4599 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004600
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004601 if (is_blank) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004602 if (done_word(&dest, &ctx)) {
4603 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00004604 }
Denis Vlasenko37181682009-04-03 03:19:15 +00004605 if (ch == '\n') {
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004606 /* Is this a case when newline is simply ignored?
4607 * Some examples:
4608 * "cmd | <newline> cmd ..."
4609 * "case ... in <newline> word) ..."
4610 */
4611 if (IS_NULL_CMD(ctx.command)
4612 && dest.length == 0 && !dest.has_quoted_part
Denis Vlasenkof1736072008-07-31 10:09:26 +00004613 ) {
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004614 /* This newline can be ignored. But...
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004615 * Without check #1, interactive shell
4616 * ignores even bare <newline>,
4617 * and shows the continuation prompt:
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004618 * ps1_prompt$ <enter>
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004619 * ps2> _ <=== wrong, should be ps1
4620 * Without check #2, "cmd & <newline>"
4621 * is similarly mistreated.
4622 * (BTW, this makes "cmd & cmd"
4623 * and "cmd && cmd" non-orthogonal.
4624 * Really, ask yourself, why
4625 * "cmd && <newline>" doesn't start
4626 * cmd but waits for more input?
4627 * No reason...)
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004628 */
4629 struct pipe *pi = ctx.list_head;
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004630 if (pi->num_cmds != 0 /* check #1 */
4631 && pi->followup != PIPE_BG /* check #2 */
4632 ) {
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004633 continue;
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004634 }
Denis Vlasenkof1736072008-07-31 10:09:26 +00004635 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004636 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004637 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004638 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
4639 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004640 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004641 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004642 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004643 heredoc_cnt = 0;
4644 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004645 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004646 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko240c2552009-04-03 03:45:05 +00004647 ch = ';';
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004648 /* note: if (is_blank) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004649 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004650 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004651 }
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00004652
4653 /* "cmd}" or "cmd }..." without semicolon or &:
4654 * } is an ordinary char in this case, even inside { cmd; }
4655 * Pathological example: { ""}; } should exec "}" cmd
4656 */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004657 if (ch == '}') {
4658 if (!IS_NULL_CMD(ctx.command) /* cmd } */
4659 || dest.length != 0 /* word} */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004660 || dest.has_quoted_part /* ""} */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004661 ) {
4662 goto ordinary_char;
4663 }
4664 if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */
4665 goto skip_end_trigger;
4666 /* else: } does terminate a group */
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00004667 }
4668
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004669 if (end_trigger && end_trigger == ch
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004670 && (ch != ';' || heredoc_cnt == 0)
4671#if ENABLE_HUSH_CASE
4672 && (ch != ')'
4673 || ctx.ctx_res_w != RES_MATCH
Denys Vlasenko38292b62010-09-05 14:49:40 +02004674 || (!dest.has_quoted_part && strcmp(dest.data, "esac") == 0)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004675 )
4676#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004677 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004678 if (heredoc_cnt) {
4679 /* This is technically valid:
4680 * { cat <<HERE; }; echo Ok
4681 * heredoc
4682 * heredoc
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004683 * HERE
4684 * but we don't support this.
4685 * We require heredoc to be in enclosing {}/(),
4686 * if any.
4687 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004688 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004689 goto parse_error;
4690 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004691 if (done_word(&dest, &ctx)) {
4692 goto parse_error;
4693 }
4694 done_pipe(&ctx, PIPE_SEQ);
4695 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004696 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko240c2552009-04-03 03:45:05 +00004697 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00004698 if (!HAS_KEYWORDS
Denys Vlasenko60cb48c2013-01-14 15:57:44 +01004699 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00004700 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004701 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004702#if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02004703 debug_printf_parse("as_string2 '%s'\n", ctx.as_string.data);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004704 if (pstring)
4705 *pstring = ctx.as_string.data;
4706 else
4707 o_free_unsafe(&ctx.as_string);
4708#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004709 debug_leave();
4710 debug_printf_parse("parse_stream return %p: "
4711 "end_trigger char found\n",
4712 ctx.list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004713 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004714 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004715 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004716 skip_end_trigger:
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004717 if (is_blank)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004718 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004719
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004720 /* Catch <, > before deciding whether this word is
4721 * an assignment. a=1 2>z b=2: b=2 is still assignment */
4722 switch (ch) {
4723 case '>':
4724 redir_fd = redirect_opt_num(&dest);
4725 if (done_word(&dest, &ctx)) {
4726 goto parse_error;
4727 }
4728 redir_style = REDIRECT_OVERWRITE;
4729 if (next == '>') {
4730 redir_style = REDIRECT_APPEND;
4731 ch = i_getch(input);
4732 nommu_addchr(&ctx.as_string, ch);
4733 }
4734#if 0
4735 else if (next == '(') {
4736 syntax_error(">(process) not supported");
4737 goto parse_error;
4738 }
4739#endif
4740 if (parse_redirect(&ctx, redir_fd, redir_style, input))
4741 goto parse_error;
4742 continue; /* back to top of while (1) */
4743 case '<':
4744 redir_fd = redirect_opt_num(&dest);
4745 if (done_word(&dest, &ctx)) {
4746 goto parse_error;
4747 }
4748 redir_style = REDIRECT_INPUT;
4749 if (next == '<') {
4750 redir_style = REDIRECT_HEREDOC;
4751 heredoc_cnt++;
4752 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
4753 ch = i_getch(input);
4754 nommu_addchr(&ctx.as_string, ch);
4755 } else if (next == '>') {
4756 redir_style = REDIRECT_IO;
4757 ch = i_getch(input);
4758 nommu_addchr(&ctx.as_string, ch);
4759 }
4760#if 0
4761 else if (next == '(') {
4762 syntax_error("<(process) not supported");
4763 goto parse_error;
4764 }
4765#endif
4766 if (parse_redirect(&ctx, redir_fd, redir_style, input))
4767 goto parse_error;
4768 continue; /* back to top of while (1) */
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004769 case '#':
4770 if (dest.length == 0 && !dest.has_quoted_part) {
4771 /* skip "#comment" */
4772 while (1) {
4773 ch = i_peek(input);
4774 if (ch == EOF || ch == '\n')
4775 break;
4776 i_getch(input);
4777 /* note: we do not add it to &ctx.as_string */
4778 }
4779 nommu_addchr(&ctx.as_string, '\n');
4780 continue; /* back to top of while (1) */
4781 }
4782 break;
4783 case '\\':
4784 if (next == '\n') {
4785 /* It's "\<newline>" */
4786#if !BB_MMU
4787 /* Remove trailing '\' from ctx.as_string */
4788 ctx.as_string.data[--ctx.as_string.length] = '\0';
4789#endif
4790 ch = i_getch(input); /* eat it */
4791 continue; /* back to top of while (1) */
4792 }
4793 break;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004794 }
4795
4796 if (dest.o_assignment == MAYBE_ASSIGNMENT
4797 /* check that we are not in word in "a=1 2>word b=1": */
4798 && !ctx.pending_redirect
4799 ) {
4800 /* ch is a special char and thus this word
4801 * cannot be an assignment */
4802 dest.o_assignment = NOT_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004803 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004804 }
4805
Denys Vlasenkocbfe6ad2009-08-12 19:47:44 +02004806 /* Note: nommu_addchr(&ctx.as_string, ch) is already done */
4807
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004808 switch (ch) {
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004809 case '#': /* non-comment #: "echo a#b" etc */
4810 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004811 break;
4812 case '\\':
4813 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004814 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004815 xfunc_die();
Eric Andersen25f27032001-04-26 23:22:31 +00004816 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004817 ch = i_getch(input);
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004818 /* note: ch != '\n' (that case does not reach this place) */
4819 o_addchr(&dest, '\\');
4820 /*nommu_addchr(&ctx.as_string, '\\'); - already done */
4821 o_addchr(&dest, ch);
4822 nommu_addchr(&ctx.as_string, ch);
4823 /* Example: echo Hello \2>file
4824 * we need to know that word 2 is quoted */
4825 dest.has_quoted_part = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004826 break;
4827 case '$':
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004828 if (!parse_dollar(&ctx.as_string, &dest, input, /*quote_mask:*/ 0)) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004829 debug_printf_parse("parse_stream parse error: "
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004830 "parse_dollar returned 0 (error)\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004831 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004832 }
Eric Andersen25f27032001-04-26 23:22:31 +00004833 break;
4834 case '\'':
Denys Vlasenko38292b62010-09-05 14:49:40 +02004835 dest.has_quoted_part = 1;
Denys Vlasenko6e42b892011-08-01 18:16:43 +02004836 if (next == '\'' && !ctx.pending_redirect) {
4837 insert_empty_quoted_str_marker:
4838 nommu_addchr(&ctx.as_string, next);
4839 i_getch(input); /* eat second ' */
4840 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4841 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4842 } else {
4843 while (1) {
4844 ch = i_getch(input);
4845 if (ch == EOF) {
4846 syntax_error_unterm_ch('\'');
4847 goto parse_error;
4848 }
4849 nommu_addchr(&ctx.as_string, ch);
4850 if (ch == '\'')
4851 break;
4852 o_addqchr(&dest, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004853 }
Eric Andersen25f27032001-04-26 23:22:31 +00004854 }
Eric Andersen25f27032001-04-26 23:22:31 +00004855 break;
4856 case '"':
Denys Vlasenko38292b62010-09-05 14:49:40 +02004857 dest.has_quoted_part = 1;
Denys Vlasenko6e42b892011-08-01 18:16:43 +02004858 if (next == '"' && !ctx.pending_redirect)
4859 goto insert_empty_quoted_str_marker;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004860 if (dest.o_assignment == NOT_ASSIGNMENT)
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004861 dest.o_expflags |= EXP_FLAG_ESC_GLOB_CHARS;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004862 if (!encode_string(&ctx.as_string, &dest, input, '"', /*process_bkslash:*/ 1))
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004863 goto parse_error;
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004864 dest.o_expflags &= ~EXP_FLAG_ESC_GLOB_CHARS;
Eric Andersen25f27032001-04-26 23:22:31 +00004865 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004866#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004867 case '`': {
Denys Vlasenko60a94142011-05-13 20:57:01 +02004868 USE_FOR_NOMMU(unsigned pos;)
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004869
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004870 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4871 o_addchr(&dest, '`');
Denys Vlasenko60a94142011-05-13 20:57:01 +02004872 USE_FOR_NOMMU(pos = dest.length;)
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004873 if (!add_till_backquote(&dest, input, /*in_dquote:*/ 0))
4874 goto parse_error;
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004875# if !BB_MMU
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004876 o_addstr(&ctx.as_string, dest.data + pos);
4877 o_addchr(&ctx.as_string, '`');
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004878# endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004879 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4880 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00004881 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004882 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004883#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004884 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004885#if ENABLE_HUSH_CASE
4886 case_semi:
4887#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004888 if (done_word(&dest, &ctx)) {
4889 goto parse_error;
4890 }
4891 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004892#if ENABLE_HUSH_CASE
4893 /* Eat multiple semicolons, detect
4894 * whether it means something special */
4895 while (1) {
4896 ch = i_peek(input);
4897 if (ch != ';')
4898 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004899 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004900 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004901 if (ctx.ctx_res_w == RES_CASE_BODY) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004902 ctx.ctx_dsemicolon = 1;
4903 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004904 break;
4905 }
4906 }
4907#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004908 new_cmd:
4909 /* We just finished a cmd. New one may start
4910 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004911 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004912 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Eric Andersen25f27032001-04-26 23:22:31 +00004913 break;
4914 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004915 if (done_word(&dest, &ctx)) {
4916 goto parse_error;
4917 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004918 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004919 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004920 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004921 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00004922 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004923 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00004924 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004925 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004926 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004927 if (done_word(&dest, &ctx)) {
4928 goto parse_error;
4929 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004930#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004931 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00004932 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004933#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004934 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004935 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004936 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004937 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00004938 } else {
4939 /* we could pick up a file descriptor choice here
4940 * with redirect_opt_num(), but bash doesn't do it.
4941 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004942 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00004943 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004944 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004945 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004946#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00004947 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004948 if (ctx.ctx_res_w == RES_MATCH
4949 && ctx.command->argv == NULL /* not (word|(... */
4950 && dest.length == 0 /* not word(... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004951 && dest.has_quoted_part == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004952 ) {
4953 continue;
4954 }
4955#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004956 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004957 if (parse_group(&dest, &ctx, input, ch) != 0) {
4958 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004959 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004960 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004961 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004962#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004963 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004964 goto case_semi;
4965#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004966 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004967 /* proper use of this character is caught by end_trigger:
4968 * if we see {, we call parse_group(..., end_trigger='}')
4969 * and it will match } earlier (not here). */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004970 syntax_error_unexpected_ch(ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004971 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00004972 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004973 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004974 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004975 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004976 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004977
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004978 parse_error:
4979 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004980 struct parse_context *pctx;
4981 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004982
4983 /* Clean up allocated tree.
Denys Vlasenko764b2f02009-06-07 16:05:04 +02004984 * Sample for finding leaks on syntax error recovery path.
4985 * Run it from interactive shell, watch pmap `pidof hush`.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004986 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00004987 * Samples to catch leaks at execution:
4988 * while if (true | {true;}); then echo ok; fi; do break; done
4989 * 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 +00004990 */
4991 pctx = &ctx;
4992 do {
4993 /* Update pipe/command counts,
4994 * otherwise freeing may miss some */
4995 done_pipe(pctx, PIPE_SEQ);
4996 debug_printf_clean("freeing list %p from ctx %p\n",
4997 pctx->list_head, pctx);
4998 debug_print_tree(pctx->list_head, 0);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004999 free_pipe_list(pctx->list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005000 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005001#if !BB_MMU
5002 o_free_unsafe(&pctx->as_string);
5003#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005004 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005005 if (pctx != &ctx) {
5006 free(pctx);
5007 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005008 IF_HAS_KEYWORDS(pctx = p2;)
5009 } while (HAS_KEYWORDS && pctx);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005010
Denys Vlasenkoa439fa92011-03-30 19:11:46 +02005011 o_free(&dest);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005012 G.last_exitcode = 1;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005013#if !BB_MMU
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005014 if (pstring)
5015 *pstring = NULL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005016#endif
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005017 debug_leave();
5018 return ERR_PTR;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005019 }
Eric Andersen25f27032001-04-26 23:22:31 +00005020}
5021
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005022
5023/*** Execution routines ***/
5024
5025/* Expansion can recurse, need forward decls: */
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005026#if !ENABLE_HUSH_BASH_COMPAT
5027/* only ${var/pattern/repl} (its pattern part) needs additional mode */
5028#define expand_string_to_string(str, do_unbackslash) \
5029 expand_string_to_string(str)
5030#endif
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005031static char *expand_string_to_string(const char *str, int do_unbackslash);
Denys Vlasenko26777aa2010-11-22 23:49:10 +01005032#if ENABLE_HUSH_TICK
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005033static int process_command_subs(o_string *dest, const char *s);
Denys Vlasenko26777aa2010-11-22 23:49:10 +01005034#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005035
5036/* expand_strvec_to_strvec() takes a list of strings, expands
5037 * all variable references within and returns a pointer to
5038 * a list of expanded strings, possibly with larger number
5039 * of strings. (Think VAR="a b"; echo $VAR).
5040 * This new list is allocated as a single malloc block.
5041 * NULL-terminated list of char* pointers is at the beginning of it,
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005042 * followed by strings themselves.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005043 * Caller can deallocate entire list by single free(list). */
5044
Denys Vlasenko238081f2010-10-03 14:26:26 +02005045/* A horde of its helpers come first: */
5046
5047static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
5048{
5049 while (--len >= 0) {
Denys Vlasenko9e800222010-10-03 14:28:04 +02005050 char c = *str++;
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005051
Denys Vlasenko9e800222010-10-03 14:28:04 +02005052#if ENABLE_HUSH_BRACE_EXPANSION
5053 if (c == '{' || c == '}') {
5054 /* { -> \{, } -> \} */
5055 o_addchr(o, '\\');
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005056 /* And now we want to add { or } and continue:
5057 * o_addchr(o, c);
5058 * continue;
5059 * luckily, just falling throught achieves this.
5060 */
Denys Vlasenko9e800222010-10-03 14:28:04 +02005061 }
5062#endif
5063 o_addchr(o, c);
5064 if (c == '\\') {
Denys Vlasenko238081f2010-10-03 14:26:26 +02005065 /* \z -> \\\z; \<eol> -> \\<eol> */
5066 o_addchr(o, '\\');
5067 if (len) {
5068 len--;
5069 o_addchr(o, '\\');
5070 o_addchr(o, *str++);
5071 }
5072 }
5073 }
5074}
5075
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005076/* Store given string, finalizing the word and starting new one whenever
5077 * we encounter IFS char(s). This is used for expanding variable values.
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005078 * End-of-string does NOT finalize word: think about 'echo -$VAR-'.
5079 * Return in *ended_with_ifs:
5080 * 1 - ended with IFS char, else 0 (this includes case of empty str).
5081 */
5082static int expand_on_ifs(int *ended_with_ifs, o_string *output, int n, const char *str)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005083{
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005084 int last_is_ifs = 0;
5085
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005086 while (1) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005087 int word_len;
5088
5089 if (!*str) /* EOL - do not finalize word */
5090 break;
5091 word_len = strcspn(str, G.ifs);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005092 if (word_len) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005093 /* We have WORD_LEN leading non-IFS chars */
Denys Vlasenko238081f2010-10-03 14:26:26 +02005094 if (!(output->o_expflags & EXP_FLAG_GLOB)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005095 o_addblock(output, str, word_len);
Denys Vlasenko238081f2010-10-03 14:26:26 +02005096 } else {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005097 /* Protect backslashes against globbing up :)
Denys Vlasenkoa769e022010-09-10 10:12:34 +02005098 * Example: "v='\*'; echo b$v" prints "b\*"
5099 * (and does not try to glob on "*")
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005100 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005101 o_addblock_duplicate_backslash(output, str, word_len);
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005102 /*/ Why can't we do it easier? */
5103 /*o_addblock(output, str, word_len); - WRONG: "v='\*'; echo Z$v" prints "Z*" instead of "Z\*" */
5104 /*o_addqblock(output, str, word_len); - WRONG: "v='*'; echo Z$v" prints "Z*" instead of Z* files */
5105 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005106 last_is_ifs = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005107 str += word_len;
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005108 if (!*str) /* EOL - do not finalize word */
5109 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005110 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005111
5112 /* We know str here points to at least one IFS char */
5113 last_is_ifs = 1;
5114 str += strspn(str, G.ifs); /* skip IFS chars */
5115 if (!*str) /* EOL - do not finalize word */
5116 break;
5117
5118 /* Start new word... but not always! */
5119 /* Case "v=' a'; echo ''$v": we do need to finalize empty word: */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005120 if (output->has_quoted_part
5121 /* Case "v=' a'; echo $v":
5122 * here nothing precedes the space in $v expansion,
5123 * therefore we should not finish the word
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005124 * (IOW: if there *is* word to finalize, only then do it):
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005125 */
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005126 || (n > 0 && output->data[output->length - 1])
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005127 ) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005128 o_addchr(output, '\0');
5129 debug_print_list("expand_on_ifs", output, n);
5130 n = o_save_ptr(output, n);
5131 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005132 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005133
5134 if (ended_with_ifs)
5135 *ended_with_ifs = last_is_ifs;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005136 debug_print_list("expand_on_ifs[1]", output, n);
5137 return n;
5138}
5139
5140/* Helper to expand $((...)) and heredoc body. These act as if
5141 * they are in double quotes, with the exception that they are not :).
5142 * Just the rules are similar: "expand only $var and `cmd`"
5143 *
5144 * Returns malloced string.
5145 * As an optimization, we return NULL if expansion is not needed.
5146 */
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005147#if !ENABLE_HUSH_BASH_COMPAT
5148/* only ${var/pattern/repl} (its pattern part) needs additional mode */
5149#define encode_then_expand_string(str, process_bkslash, do_unbackslash) \
5150 encode_then_expand_string(str)
5151#endif
5152static char *encode_then_expand_string(const char *str, int process_bkslash, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005153{
5154 char *exp_str;
5155 struct in_str input;
5156 o_string dest = NULL_O_STRING;
5157
5158 if (!strchr(str, '$')
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02005159 && !strchr(str, '\\')
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005160#if ENABLE_HUSH_TICK
5161 && !strchr(str, '`')
5162#endif
5163 ) {
5164 return NULL;
5165 }
5166
5167 /* We need to expand. Example:
5168 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
5169 */
5170 setup_string_in_str(&input, str);
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005171 encode_string(NULL, &dest, &input, EOF, process_bkslash);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005172//TODO: error check (encode_string returns 0 on error)?
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005173 //bb_error_msg("'%s' -> '%s'", str, dest.data);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005174 exp_str = expand_string_to_string(dest.data, /*unbackslash:*/ do_unbackslash);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005175 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
5176 o_free_unsafe(&dest);
5177 return exp_str;
5178}
5179
5180#if ENABLE_SH_MATH_SUPPORT
Denys Vlasenko063847d2010-09-15 13:33:02 +02005181static arith_t expand_and_evaluate_arith(const char *arg, const char **errmsg_p)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005182{
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005183 arith_state_t math_state;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005184 arith_t res;
5185 char *exp_str;
5186
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005187 math_state.lookupvar = get_local_var_value;
5188 math_state.setvar = set_local_var_from_halves;
5189 //math_state.endofname = endofname;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005190 exp_str = encode_then_expand_string(arg, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005191 res = arith(&math_state, exp_str ? exp_str : arg);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005192 free(exp_str);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005193 if (errmsg_p)
5194 *errmsg_p = math_state.errmsg;
5195 if (math_state.errmsg)
5196 die_if_script(math_state.errmsg);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005197 return res;
5198}
5199#endif
5200
5201#if ENABLE_HUSH_BASH_COMPAT
5202/* ${var/[/]pattern[/repl]} helpers */
5203static char *strstr_pattern(char *val, const char *pattern, int *size)
5204{
5205 while (1) {
5206 char *end = scan_and_match(val, pattern, SCAN_MOVE_FROM_RIGHT + SCAN_MATCH_LEFT_HALF);
5207 debug_printf_varexp("val:'%s' pattern:'%s' end:'%s'\n", val, pattern, end);
5208 if (end) {
5209 *size = end - val;
5210 return val;
5211 }
5212 if (*val == '\0')
5213 return NULL;
5214 /* Optimization: if "*pat" did not match the start of "string",
5215 * we know that "tring", "ring" etc will not match too:
5216 */
5217 if (pattern[0] == '*')
5218 return NULL;
5219 val++;
5220 }
5221}
5222static char *replace_pattern(char *val, const char *pattern, const char *repl, char exp_op)
5223{
5224 char *result = NULL;
5225 unsigned res_len = 0;
5226 unsigned repl_len = strlen(repl);
5227
5228 while (1) {
5229 int size;
5230 char *s = strstr_pattern(val, pattern, &size);
5231 if (!s)
5232 break;
5233
5234 result = xrealloc(result, res_len + (s - val) + repl_len + 1);
5235 memcpy(result + res_len, val, s - val);
5236 res_len += s - val;
5237 strcpy(result + res_len, repl);
5238 res_len += repl_len;
5239 debug_printf_varexp("val:'%s' s:'%s' result:'%s'\n", val, s, result);
5240
5241 val = s + size;
5242 if (exp_op == '/')
5243 break;
5244 }
5245 if (val[0] && result) {
5246 result = xrealloc(result, res_len + strlen(val) + 1);
5247 strcpy(result + res_len, val);
5248 debug_printf_varexp("val:'%s' result:'%s'\n", val, result);
5249 }
5250 debug_printf_varexp("result:'%s'\n", result);
5251 return result;
5252}
5253#endif
5254
5255/* Helper:
5256 * Handles <SPECIAL_VAR_SYMBOL>varname...<SPECIAL_VAR_SYMBOL> construct.
5257 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005258static NOINLINE const char *expand_one_var(char **to_be_freed_pp, char *arg, char **pp)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005259{
5260 const char *val = NULL;
5261 char *to_be_freed = NULL;
5262 char *p = *pp;
5263 char *var;
5264 char first_char;
5265 char exp_op;
5266 char exp_save = exp_save; /* for compiler */
5267 char *exp_saveptr; /* points to expansion operator */
5268 char *exp_word = exp_word; /* for compiler */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005269 char arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005270
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005271 *p = '\0'; /* replace trailing SPECIAL_VAR_SYMBOL */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005272 var = arg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005273 exp_saveptr = arg[1] ? strchr(VAR_ENCODED_SUBST_OPS, arg[1]) : NULL;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005274 arg0 = arg[0];
5275 first_char = arg[0] = arg0 & 0x7f;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005276 exp_op = 0;
5277
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005278 if (first_char == '#' /* ${#... */
5279 && arg[1] && !exp_saveptr /* not ${#} and not ${#<op_char>...} */
5280 ) {
5281 /* It must be length operator: ${#var} */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005282 var++;
5283 exp_op = 'L';
5284 } else {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005285 /* Maybe handle parameter expansion */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005286 if (exp_saveptr /* if 2nd char is one of expansion operators */
5287 && strchr(NUMERIC_SPECVARS_STR, first_char) /* 1st char is special variable */
5288 ) {
5289 /* ${?:0}, ${#[:]%0} etc */
5290 exp_saveptr = var + 1;
5291 } else {
5292 /* ${?}, ${var}, ${var:0}, ${var[:]%0} etc */
5293 exp_saveptr = var+1 + strcspn(var+1, VAR_ENCODED_SUBST_OPS);
5294 }
5295 exp_op = exp_save = *exp_saveptr;
5296 if (exp_op) {
5297 exp_word = exp_saveptr + 1;
5298 if (exp_op == ':') {
5299 exp_op = *exp_word++;
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005300//TODO: try ${var:} and ${var:bogus} in non-bash config
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005301 if (ENABLE_HUSH_BASH_COMPAT
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005302 && (!exp_op || !strchr(MINUS_PLUS_EQUAL_QUESTION, exp_op))
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005303 ) {
5304 /* oops... it's ${var:N[:M]}, not ${var:?xxx} or some such */
5305 exp_op = ':';
5306 exp_word--;
5307 }
5308 }
5309 *exp_saveptr = '\0';
5310 } /* else: it's not an expansion op, but bare ${var} */
5311 }
5312
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005313 /* Look up the variable in question */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005314 if (isdigit(var[0])) {
Denys Vlasenko77a7b552010-09-09 12:40:03 +02005315 /* parse_dollar should have vetted var for us */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005316 int n = xatoi_positive(var);
5317 if (n < G.global_argc)
5318 val = G.global_argv[n];
5319 /* else val remains NULL: $N with too big N */
5320 } else {
5321 switch (var[0]) {
5322 case '$': /* pid */
5323 val = utoa(G.root_pid);
5324 break;
5325 case '!': /* bg pid */
5326 val = G.last_bg_pid ? utoa(G.last_bg_pid) : "";
5327 break;
5328 case '?': /* exitcode */
5329 val = utoa(G.last_exitcode);
5330 break;
5331 case '#': /* argc */
5332 val = utoa(G.global_argc ? G.global_argc-1 : 0);
5333 break;
5334 default:
5335 val = get_local_var_value(var);
5336 }
5337 }
5338
5339 /* Handle any expansions */
5340 if (exp_op == 'L') {
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02005341 reinit_unicode_for_hush();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005342 debug_printf_expand("expand: length(%s)=", val);
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02005343 val = utoa(val ? unicode_strlen(val) : 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005344 debug_printf_expand("%s\n", val);
5345 } else if (exp_op) {
5346 if (exp_op == '%' || exp_op == '#') {
5347 /* Standard-mandated substring removal ops:
5348 * ${parameter%word} - remove smallest suffix pattern
5349 * ${parameter%%word} - remove largest suffix pattern
5350 * ${parameter#word} - remove smallest prefix pattern
5351 * ${parameter##word} - remove largest prefix pattern
5352 *
5353 * Word is expanded to produce a glob pattern.
5354 * Then var's value is matched to it and matching part removed.
5355 */
5356 if (val && val[0]) {
Denys Vlasenko4f870492010-09-10 11:06:01 +02005357 char *t;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005358 char *exp_exp_word;
5359 char *loc;
5360 unsigned scan_flags = pick_scan(exp_op, *exp_word);
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02005361 if (exp_op == *exp_word) /* ## or %% */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005362 exp_word++;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005363 exp_exp_word = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005364 if (exp_exp_word)
5365 exp_word = exp_exp_word;
Denys Vlasenko4f870492010-09-10 11:06:01 +02005366 /* HACK ALERT. We depend here on the fact that
5367 * G.global_argv and results of utoa and get_local_var_value
5368 * are actually in writable memory:
5369 * scan_and_match momentarily stores NULs there. */
5370 t = (char*)val;
5371 loc = scan_and_match(t, exp_word, scan_flags);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005372 //bb_error_msg("op:%c str:'%s' pat:'%s' res:'%s'",
Denys Vlasenko4f870492010-09-10 11:06:01 +02005373 // exp_op, t, exp_word, loc);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005374 free(exp_exp_word);
5375 if (loc) { /* match was found */
5376 if (scan_flags & SCAN_MATCH_LEFT_HALF) /* #[#] */
Denys Vlasenko4f870492010-09-10 11:06:01 +02005377 val = loc; /* take right part */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005378 else /* %[%] */
Denys Vlasenko4f870492010-09-10 11:06:01 +02005379 val = to_be_freed = xstrndup(val, loc - val); /* left */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005380 }
5381 }
5382 }
5383#if ENABLE_HUSH_BASH_COMPAT
5384 else if (exp_op == '/' || exp_op == '\\') {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005385 /* It's ${var/[/]pattern[/repl]} thing.
5386 * Note that in encoded form it has TWO parts:
5387 * var/pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
Denys Vlasenko4f870492010-09-10 11:06:01 +02005388 * and if // is used, it is encoded as \:
5389 * var\pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005390 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005391 /* Empty variable always gives nothing: */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005392 // "v=''; echo ${v/*/w}" prints "", not "w"
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005393 if (val && val[0]) {
Denys Vlasenko4f870492010-09-10 11:06:01 +02005394 /* pattern uses non-standard expansion.
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005395 * repl should be unbackslashed and globbed
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005396 * by the usual expansion rules:
5397 * >az; >bz;
5398 * v='a bz'; echo "${v/a*z/a*z}" prints "a*z"
5399 * v='a bz'; echo "${v/a*z/\z}" prints "\z"
5400 * v='a bz'; echo ${v/a*z/a*z} prints "az"
5401 * v='a bz'; echo ${v/a*z/\z} prints "z"
5402 * (note that a*z _pattern_ is never globbed!)
5403 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005404 char *pattern, *repl, *t;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005405 pattern = encode_then_expand_string(exp_word, /*process_bkslash:*/ 0, /*unbackslash:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005406 if (!pattern)
5407 pattern = xstrdup(exp_word);
5408 debug_printf_varexp("pattern:'%s'->'%s'\n", exp_word, pattern);
5409 *p++ = SPECIAL_VAR_SYMBOL;
5410 exp_word = p;
5411 p = strchr(p, SPECIAL_VAR_SYMBOL);
5412 *p = '\0';
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005413 repl = encode_then_expand_string(exp_word, /*process_bkslash:*/ arg0 & 0x80, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005414 debug_printf_varexp("repl:'%s'->'%s'\n", exp_word, repl);
5415 /* HACK ALERT. We depend here on the fact that
5416 * G.global_argv and results of utoa and get_local_var_value
5417 * are actually in writable memory:
5418 * replace_pattern momentarily stores NULs there. */
5419 t = (char*)val;
5420 to_be_freed = replace_pattern(t,
5421 pattern,
5422 (repl ? repl : exp_word),
5423 exp_op);
5424 if (to_be_freed) /* at least one replace happened */
5425 val = to_be_freed;
5426 free(pattern);
5427 free(repl);
5428 }
5429 }
5430#endif
5431 else if (exp_op == ':') {
5432#if ENABLE_HUSH_BASH_COMPAT && ENABLE_SH_MATH_SUPPORT
5433 /* It's ${var:N[:M]} bashism.
5434 * Note that in encoded form it has TWO parts:
5435 * var:N<SPECIAL_VAR_SYMBOL>M<SPECIAL_VAR_SYMBOL>
5436 */
5437 arith_t beg, len;
Denys Vlasenko063847d2010-09-15 13:33:02 +02005438 const char *errmsg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005439
Denys Vlasenko063847d2010-09-15 13:33:02 +02005440 beg = expand_and_evaluate_arith(exp_word, &errmsg);
5441 if (errmsg)
5442 goto arith_err;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005443 debug_printf_varexp("beg:'%s'=%lld\n", exp_word, (long long)beg);
5444 *p++ = SPECIAL_VAR_SYMBOL;
5445 exp_word = p;
5446 p = strchr(p, SPECIAL_VAR_SYMBOL);
5447 *p = '\0';
Denys Vlasenko063847d2010-09-15 13:33:02 +02005448 len = expand_and_evaluate_arith(exp_word, &errmsg);
5449 if (errmsg)
5450 goto arith_err;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005451 debug_printf_varexp("len:'%s'=%lld\n", exp_word, (long long)len);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005452 if (len >= 0) { /* bash compat: len < 0 is illegal */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005453 if (beg < 0) /* bash compat */
5454 beg = 0;
5455 debug_printf_varexp("from val:'%s'\n", val);
Denys Vlasenkob771c652010-09-13 00:34:26 +02005456 if (len == 0 || !val || beg >= strlen(val)) {
Denys Vlasenko063847d2010-09-15 13:33:02 +02005457 arith_err:
Denys Vlasenkob771c652010-09-13 00:34:26 +02005458 val = NULL;
5459 } else {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005460 /* Paranoia. What if user entered 9999999999999
5461 * which fits in arith_t but not int? */
5462 if (len >= INT_MAX)
5463 len = INT_MAX;
5464 val = to_be_freed = xstrndup(val + beg, len);
5465 }
5466 debug_printf_varexp("val:'%s'\n", val);
5467 } else
5468#endif
5469 {
5470 die_if_script("malformed ${%s:...}", var);
Denys Vlasenkob771c652010-09-13 00:34:26 +02005471 val = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005472 }
5473 } else { /* one of "-=+?" */
5474 /* Standard-mandated substitution ops:
5475 * ${var?word} - indicate error if unset
5476 * If var is unset, word (or a message indicating it is unset
5477 * if word is null) is written to standard error
5478 * and the shell exits with a non-zero exit status.
5479 * Otherwise, the value of var is substituted.
5480 * ${var-word} - use default value
5481 * If var is unset, word is substituted.
5482 * ${var=word} - assign and use default value
5483 * If var is unset, word is assigned to var.
5484 * In all cases, final value of var is substituted.
5485 * ${var+word} - use alternative value
5486 * If var is unset, null is substituted.
5487 * Otherwise, word is substituted.
5488 *
5489 * Word is subjected to tilde expansion, parameter expansion,
5490 * command substitution, and arithmetic expansion.
5491 * If word is not needed, it is not expanded.
5492 *
5493 * Colon forms (${var:-word}, ${var:=word} etc) do the same,
5494 * but also treat null var as if it is unset.
5495 */
5496 int use_word = (!val || ((exp_save == ':') && !val[0]));
5497 if (exp_op == '+')
5498 use_word = !use_word;
5499 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
5500 (exp_save == ':') ? "true" : "false", use_word);
5501 if (use_word) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005502 to_be_freed = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005503 if (to_be_freed)
5504 exp_word = to_be_freed;
5505 if (exp_op == '?') {
5506 /* mimic bash message */
5507 die_if_script("%s: %s",
5508 var,
5509 exp_word[0] ? exp_word : "parameter null or not set"
5510 );
5511//TODO: how interactive bash aborts expansion mid-command?
5512 } else {
5513 val = exp_word;
5514 }
5515
5516 if (exp_op == '=') {
5517 /* ${var=[word]} or ${var:=[word]} */
5518 if (isdigit(var[0]) || var[0] == '#') {
5519 /* mimic bash message */
5520 die_if_script("$%s: cannot assign in this way", var);
5521 val = NULL;
5522 } else {
5523 char *new_var = xasprintf("%s=%s", var, val);
5524 set_local_var(new_var, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
5525 }
5526 }
5527 }
5528 } /* one of "-=+?" */
5529
5530 *exp_saveptr = exp_save;
5531 } /* if (exp_op) */
5532
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005533 arg[0] = arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005534
5535 *pp = p;
5536 *to_be_freed_pp = to_be_freed;
5537 return val;
5538}
5539
5540/* Expand all variable references in given string, adding words to list[]
5541 * at n, n+1,... positions. Return updated n (so that list[n] is next one
5542 * to be filled). This routine is extremely tricky: has to deal with
5543 * variables/parameters with whitespace, $* and $@, and constructs like
5544 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005545static NOINLINE int expand_vars_to_list(o_string *output, int n, char *arg)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005546{
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005547 /* output->o_expflags & EXP_FLAG_SINGLEWORD (0x80) if we are in
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005548 * expansion of right-hand side of assignment == 1-element expand.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005549 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005550 char cant_be_null = 0; /* only bit 0x80 matters */
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005551 int ended_in_ifs = 0; /* did last unquoted expansion end with IFS chars? */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005552 char *p;
5553
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005554 debug_printf_expand("expand_vars_to_list: arg:'%s' singleword:%x\n", arg,
5555 !!(output->o_expflags & EXP_FLAG_SINGLEWORD));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005556 debug_print_list("expand_vars_to_list", output, n);
5557 n = o_save_ptr(output, n);
5558 debug_print_list("expand_vars_to_list[0]", output, n);
5559
5560 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
5561 char first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005562 char *to_be_freed = NULL;
5563 const char *val = NULL;
5564#if ENABLE_HUSH_TICK
5565 o_string subst_result = NULL_O_STRING;
5566#endif
5567#if ENABLE_SH_MATH_SUPPORT
5568 char arith_buf[sizeof(arith_t)*3 + 2];
5569#endif
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005570
5571 if (ended_in_ifs) {
5572 o_addchr(output, '\0');
5573 n = o_save_ptr(output, n);
5574 ended_in_ifs = 0;
5575 }
5576
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005577 o_addblock(output, arg, p - arg);
5578 debug_print_list("expand_vars_to_list[1]", output, n);
5579 arg = ++p;
5580 p = strchr(p, SPECIAL_VAR_SYMBOL);
5581
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005582 /* Fetch special var name (if it is indeed one of them)
5583 * and quote bit, force the bit on if singleword expansion -
5584 * important for not getting v=$@ expand to many words. */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005585 first_ch = arg[0] | (output->o_expflags & EXP_FLAG_SINGLEWORD);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005586
5587 /* Is this variable quoted and thus expansion can't be null?
5588 * "$@" is special. Even if quoted, it can still
5589 * expand to nothing (not even an empty string),
5590 * thus it is excluded. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005591 if ((first_ch & 0x7f) != '@')
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005592 cant_be_null |= first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005593
5594 switch (first_ch & 0x7f) {
5595 /* Highest bit in first_ch indicates that var is double-quoted */
5596 case '*':
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005597 case '@': {
5598 int i;
5599 if (!G.global_argv[1])
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005600 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005601 i = 1;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005602 cant_be_null |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005603 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005604 while (G.global_argv[i]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005605 n = expand_on_ifs(NULL, output, n, G.global_argv[i]);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005606 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
5607 if (G.global_argv[i++][0] && G.global_argv[i]) {
5608 /* this argv[] is not empty and not last:
5609 * put terminating NUL, start new word */
5610 o_addchr(output, '\0');
5611 debug_print_list("expand_vars_to_list[2]", output, n);
5612 n = o_save_ptr(output, n);
5613 debug_print_list("expand_vars_to_list[3]", output, n);
5614 }
5615 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005616 } else
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005617 /* If EXP_FLAG_SINGLEWORD, we handle assignment 'a=....$@.....'
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005618 * and in this case should treat it like '$*' - see 'else...' below */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005619 if (first_ch == ('@'|0x80) /* quoted $@ */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005620 && !(output->o_expflags & EXP_FLAG_SINGLEWORD) /* not v="$@" case */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005621 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005622 while (1) {
5623 o_addQstr(output, G.global_argv[i]);
5624 if (++i >= G.global_argc)
5625 break;
5626 o_addchr(output, '\0');
5627 debug_print_list("expand_vars_to_list[4]", output, n);
5628 n = o_save_ptr(output, n);
5629 }
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005630 } else { /* quoted $* (or v="$@" case): add as one word */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005631 while (1) {
5632 o_addQstr(output, G.global_argv[i]);
5633 if (!G.global_argv[++i])
5634 break;
5635 if (G.ifs[0])
5636 o_addchr(output, G.ifs[0]);
5637 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005638 output->has_quoted_part = 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005639 }
5640 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005641 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005642 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
5643 /* "Empty variable", used to make "" etc to not disappear */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005644 output->has_quoted_part = 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005645 arg++;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005646 cant_be_null = 0x80;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005647 break;
5648#if ENABLE_HUSH_TICK
5649 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005650 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005651 arg++;
5652 /* Can't just stuff it into output o_string,
5653 * expanded result may need to be globbed
5654 * and $IFS-splitted */
5655 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
5656 G.last_exitcode = process_command_subs(&subst_result, arg);
5657 debug_printf_subst("SUBST RES:%d '%s'\n", G.last_exitcode, subst_result.data);
5658 val = subst_result.data;
5659 goto store_val;
5660#endif
5661#if ENABLE_SH_MATH_SUPPORT
5662 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
5663 arith_t res;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005664
5665 arg++; /* skip '+' */
5666 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
5667 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005668 res = expand_and_evaluate_arith(arg, NULL);
Denys Vlasenkobed7c812010-09-16 11:50:46 +02005669 debug_printf_subst("ARITH RES '"ARITH_FMT"'\n", res);
5670 sprintf(arith_buf, ARITH_FMT, res);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005671 val = arith_buf;
5672 break;
5673 }
5674#endif
5675 default:
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005676 val = expand_one_var(&to_be_freed, arg, &p);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005677 IF_HUSH_TICK(store_val:)
5678 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005679 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val,
5680 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005681 if (val && val[0]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005682 n = expand_on_ifs(&ended_in_ifs, output, n, val);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005683 val = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005684 }
5685 } else { /* quoted $VAR, val will be appended below */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005686 output->has_quoted_part = 1;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005687 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val,
5688 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005689 }
5690 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005691 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
5692
5693 if (val && val[0]) {
5694 o_addQstr(output, val);
5695 }
5696 free(to_be_freed);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005697
5698 /* Restore NULL'ed SPECIAL_VAR_SYMBOL.
5699 * Do the check to avoid writing to a const string. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005700 if (*p != SPECIAL_VAR_SYMBOL)
5701 *p = SPECIAL_VAR_SYMBOL;
5702
5703#if ENABLE_HUSH_TICK
5704 o_free(&subst_result);
5705#endif
5706 arg = ++p;
5707 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
5708
5709 if (arg[0]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005710 if (ended_in_ifs) {
5711 o_addchr(output, '\0');
5712 n = o_save_ptr(output, n);
5713 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005714 debug_print_list("expand_vars_to_list[a]", output, n);
5715 /* this part is literal, and it was already pre-quoted
5716 * if needed (much earlier), do not use o_addQstr here! */
5717 o_addstr_with_NUL(output, arg);
5718 debug_print_list("expand_vars_to_list[b]", output, n);
5719 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005720 && !(cant_be_null & 0x80) /* and all vars were not quoted. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005721 ) {
5722 n--;
5723 /* allow to reuse list[n] later without re-growth */
5724 output->has_empty_slot = 1;
5725 } else {
5726 o_addchr(output, '\0');
5727 }
5728
5729 return n;
5730}
5731
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005732static char **expand_variables(char **argv, unsigned expflags)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005733{
5734 int n;
5735 char **list;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005736 o_string output = NULL_O_STRING;
5737
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005738 output.o_expflags = expflags;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005739
5740 n = 0;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005741 while (*argv) {
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005742 n = expand_vars_to_list(&output, n, *argv);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005743 argv++;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005744 }
5745 debug_print_list("expand_variables", &output, n);
5746
5747 /* output.data (malloced in one block) gets returned in "list" */
5748 list = o_finalize_list(&output, n);
5749 debug_print_strings("expand_variables[1]", list);
5750 return list;
5751}
5752
5753static char **expand_strvec_to_strvec(char **argv)
5754{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005755 return expand_variables(argv, EXP_FLAG_GLOB | EXP_FLAG_ESC_GLOB_CHARS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005756}
5757
5758#if ENABLE_HUSH_BASH_COMPAT
5759static char **expand_strvec_to_strvec_singleword_noglob(char **argv)
5760{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005761 return expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005762}
5763#endif
5764
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005765/* Used for expansion of right hand of assignments,
5766 * $((...)), heredocs, variable espansion parts.
5767 *
5768 * NB: should NOT do globbing!
5769 * "export v=/bin/c*; env | grep ^v=" outputs "v=/bin/c*"
5770 */
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005771static char *expand_string_to_string(const char *str, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005772{
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005773#if !ENABLE_HUSH_BASH_COMPAT
5774 const int do_unbackslash = 1;
5775#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005776 char *argv[2], **list;
5777
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005778 debug_printf_expand("string_to_string<='%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005779 /* This is generally an optimization, but it also
5780 * handles "", which otherwise trips over !list[0] check below.
5781 * (is this ever happens that we actually get str="" here?)
5782 */
5783 if (!strchr(str, SPECIAL_VAR_SYMBOL) && !strchr(str, '\\')) {
5784 //TODO: Can use on strings with \ too, just unbackslash() them?
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005785 debug_printf_expand("string_to_string(fast)=>'%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005786 return xstrdup(str);
5787 }
5788
5789 argv[0] = (char*)str;
5790 argv[1] = NULL;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005791 list = expand_variables(argv, do_unbackslash
5792 ? EXP_FLAG_ESC_GLOB_CHARS | EXP_FLAG_SINGLEWORD
5793 : EXP_FLAG_SINGLEWORD
5794 );
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005795 if (HUSH_DEBUG)
5796 if (!list[0] || list[1])
5797 bb_error_msg_and_die("BUG in varexp2");
5798 /* actually, just move string 2*sizeof(char*) bytes back */
5799 overlapping_strcpy((char*)list, list[0]);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005800 if (do_unbackslash)
5801 unbackslash((char*)list);
5802 debug_printf_expand("string_to_string=>'%s'\n", (char*)list);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005803 return (char*)list;
5804}
5805
5806/* Used for "eval" builtin */
5807static char* expand_strvec_to_string(char **argv)
5808{
5809 char **list;
5810
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005811 list = expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005812 /* Convert all NULs to spaces */
5813 if (list[0]) {
5814 int n = 1;
5815 while (list[n]) {
5816 if (HUSH_DEBUG)
5817 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
5818 bb_error_msg_and_die("BUG in varexp3");
5819 /* bash uses ' ' regardless of $IFS contents */
5820 list[n][-1] = ' ';
5821 n++;
5822 }
5823 }
Denys Vlasenko78c9c732016-09-29 01:44:17 +02005824 overlapping_strcpy((char*)list, list[0] ? list[0] : "");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005825 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
5826 return (char*)list;
5827}
5828
5829static char **expand_assignments(char **argv, int count)
5830{
5831 int i;
5832 char **p;
5833
5834 G.expanded_assignments = p = NULL;
5835 /* Expand assignments into one string each */
5836 for (i = 0; i < count; i++) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005837 G.expanded_assignments = p = add_string_to_strings(p, expand_string_to_string(argv[i], /*unbackslash:*/ 1));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005838 }
5839 G.expanded_assignments = NULL;
5840 return p;
5841}
5842
5843
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02005844static void switch_off_special_sigs(unsigned mask)
5845{
5846 unsigned sig = 0;
5847 while ((mask >>= 1) != 0) {
5848 sig++;
5849 if (!(mask & 1))
5850 continue;
5851 if (G.traps) {
5852 if (G.traps[sig] && !G.traps[sig][0])
5853 /* trap is '', has to remain SIG_IGN */
5854 continue;
5855 free(G.traps[sig]);
5856 G.traps[sig] = NULL;
5857 }
5858 /* We are here only if no trap or trap was not '' */
Denys Vlasenko0806e402011-05-12 23:06:20 +02005859 install_sighandler(sig, SIG_DFL);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02005860 }
5861}
5862
Denys Vlasenkob347df92011-08-09 22:49:15 +02005863#if BB_MMU
5864/* never called */
5865void re_execute_shell(char ***to_free, const char *s,
5866 char *g_argv0, char **g_argv,
5867 char **builtin_argv) NORETURN;
5868
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005869static void reset_traps_to_defaults(void)
5870{
5871 /* This function is always called in a child shell
5872 * after fork (not vfork, NOMMU doesn't use this function).
5873 */
5874 unsigned sig;
5875 unsigned mask;
5876
5877 /* Child shells are not interactive.
5878 * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
5879 * Testcase: (while :; do :; done) + ^Z should background.
5880 * Same goes for SIGTERM, SIGHUP, SIGINT.
5881 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02005882 mask = (G.special_sig_mask & SPECIAL_INTERACTIVE_SIGS) | G_fatal_sig_mask;
5883 if (!G.traps && !mask)
5884 return; /* already no traps and no special sigs */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005885
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02005886 /* Switch off special sigs */
5887 switch_off_special_sigs(mask);
5888#if ENABLE_HUSH_JOB
5889 G_fatal_sig_mask = 0;
5890#endif
Denys Vlasenko10c01312011-05-11 11:49:21 +02005891 G.special_sig_mask &= ~SPECIAL_INTERACTIVE_SIGS;
Denys Vlasenkof58f7052011-05-12 02:10:33 +02005892 /* SIGQUIT,SIGCHLD and maybe SPECIAL_JOBSTOP_SIGS
5893 * remain set in G.special_sig_mask */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005894
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02005895 if (!G.traps)
5896 return;
5897
5898 /* Reset all sigs to default except ones with empty traps */
5899 for (sig = 0; sig < NSIG; sig++) {
5900 if (!G.traps[sig])
5901 continue; /* no trap: nothing to do */
5902 if (!G.traps[sig][0])
5903 continue; /* empty trap: has to remain SIG_IGN */
5904 /* sig has non-empty trap, reset it: */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005905 free(G.traps[sig]);
5906 G.traps[sig] = NULL;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02005907 /* There is no signal for trap 0 (EXIT) */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005908 if (sig == 0)
5909 continue;
Denys Vlasenko0806e402011-05-12 23:06:20 +02005910 install_sighandler(sig, pick_sighandler(sig));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005911 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005912}
5913
5914#else /* !BB_MMU */
5915
5916static void re_execute_shell(char ***to_free, const char *s,
5917 char *g_argv0, char **g_argv,
5918 char **builtin_argv) NORETURN;
5919static void re_execute_shell(char ***to_free, const char *s,
5920 char *g_argv0, char **g_argv,
5921 char **builtin_argv)
5922{
5923# define NOMMU_HACK_FMT ("-$%x:%x:%x:%x:%x:%llx" IF_HUSH_LOOPS(":%x"))
5924 /* delims + 2 * (number of bytes in printed hex numbers) */
5925 char param_buf[sizeof(NOMMU_HACK_FMT) + 2 * (sizeof(int)*6 + sizeof(long long)*1)];
5926 char *heredoc_argv[4];
5927 struct variable *cur;
5928# if ENABLE_HUSH_FUNCTIONS
5929 struct function *funcp;
5930# endif
5931 char **argv, **pp;
5932 unsigned cnt;
5933 unsigned long long empty_trap_mask;
5934
5935 if (!g_argv0) { /* heredoc */
5936 argv = heredoc_argv;
5937 argv[0] = (char *) G.argv0_for_re_execing;
5938 argv[1] = (char *) "-<";
5939 argv[2] = (char *) s;
5940 argv[3] = NULL;
5941 pp = &argv[3]; /* used as pointer to empty environment */
5942 goto do_exec;
5943 }
5944
5945 cnt = 0;
5946 pp = builtin_argv;
5947 if (pp) while (*pp++)
5948 cnt++;
5949
5950 empty_trap_mask = 0;
5951 if (G.traps) {
5952 int sig;
5953 for (sig = 1; sig < NSIG; sig++) {
5954 if (G.traps[sig] && !G.traps[sig][0])
5955 empty_trap_mask |= 1LL << sig;
5956 }
5957 }
5958
5959 sprintf(param_buf, NOMMU_HACK_FMT
5960 , (unsigned) G.root_pid
5961 , (unsigned) G.root_ppid
5962 , (unsigned) G.last_bg_pid
5963 , (unsigned) G.last_exitcode
5964 , cnt
5965 , empty_trap_mask
5966 IF_HUSH_LOOPS(, G.depth_of_loop)
5967 );
5968# undef NOMMU_HACK_FMT
5969 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<etc...> <vars...> <funcs...>
5970 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
5971 */
5972 cnt += 6;
5973 for (cur = G.top_var; cur; cur = cur->next) {
5974 if (!cur->flg_export || cur->flg_read_only)
5975 cnt += 2;
5976 }
5977# if ENABLE_HUSH_FUNCTIONS
5978 for (funcp = G.top_func; funcp; funcp = funcp->next)
5979 cnt += 3;
5980# endif
5981 pp = g_argv;
5982 while (*pp++)
5983 cnt++;
5984 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
5985 *pp++ = (char *) G.argv0_for_re_execing;
5986 *pp++ = param_buf;
5987 for (cur = G.top_var; cur; cur = cur->next) {
5988 if (strcmp(cur->varstr, hush_version_str) == 0)
5989 continue;
5990 if (cur->flg_read_only) {
5991 *pp++ = (char *) "-R";
5992 *pp++ = cur->varstr;
5993 } else if (!cur->flg_export) {
5994 *pp++ = (char *) "-V";
5995 *pp++ = cur->varstr;
5996 }
5997 }
5998# if ENABLE_HUSH_FUNCTIONS
5999 for (funcp = G.top_func; funcp; funcp = funcp->next) {
6000 *pp++ = (char *) "-F";
6001 *pp++ = funcp->name;
6002 *pp++ = funcp->body_as_string;
6003 }
6004# endif
6005 /* We can pass activated traps here. Say, -Tnn:trap_string
6006 *
6007 * However, POSIX says that subshells reset signals with traps
6008 * to SIG_DFL.
6009 * I tested bash-3.2 and it not only does that with true subshells
6010 * of the form ( list ), but with any forked children shells.
6011 * I set trap "echo W" WINCH; and then tried:
6012 *
6013 * { echo 1; sleep 20; echo 2; } &
6014 * while true; do echo 1; sleep 20; echo 2; break; done &
6015 * true | { echo 1; sleep 20; echo 2; } | cat
6016 *
6017 * In all these cases sending SIGWINCH to the child shell
6018 * did not run the trap. If I add trap "echo V" WINCH;
6019 * _inside_ group (just before echo 1), it works.
6020 *
6021 * I conclude it means we don't need to pass active traps here.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006022 */
6023 *pp++ = (char *) "-c";
6024 *pp++ = (char *) s;
6025 if (builtin_argv) {
6026 while (*++builtin_argv)
6027 *pp++ = *builtin_argv;
6028 *pp++ = (char *) "";
6029 }
6030 *pp++ = g_argv0;
6031 while (*g_argv)
6032 *pp++ = *g_argv++;
6033 /* *pp = NULL; - is already there */
6034 pp = environ;
6035
6036 do_exec:
6037 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02006038 /* Don't propagate SIG_IGN to the child */
6039 if (SPECIAL_JOBSTOP_SIGS != 0)
6040 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006041 execve(bb_busybox_exec_path, argv, pp);
6042 /* Fallback. Useful for init=/bin/hush usage etc */
6043 if (argv[0][0] == '/')
6044 execve(argv[0], argv, pp);
6045 xfunc_error_retval = 127;
6046 bb_error_msg_and_die("can't re-execute the shell");
6047}
6048#endif /* !BB_MMU */
6049
6050
6051static int run_and_free_list(struct pipe *pi);
6052
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006053/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006054 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
6055 * end_trigger controls how often we stop parsing
6056 * NUL: parse all, execute, return
6057 * ';': parse till ';' or newline, execute, repeat till EOF
6058 */
6059static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00006060{
Denys Vlasenko00243b02009-11-16 02:00:03 +01006061 /* Why we need empty flag?
6062 * An obscure corner case "false; ``; echo $?":
6063 * empty command in `` should still set $? to 0.
6064 * But we can't just set $? to 0 at the start,
6065 * this breaks "false; echo `echo $?`" case.
6066 */
6067 bool empty = 1;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006068 while (1) {
6069 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006070
Denys Vlasenkoa1463192011-01-18 17:55:04 +01006071#if ENABLE_HUSH_INTERACTIVE
6072 if (end_trigger == ';')
6073 inp->promptmode = 0; /* PS1 */
6074#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006075 pipe_list = parse_stream(NULL, inp, end_trigger);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02006076 if (!pipe_list || pipe_list == ERR_PTR) { /* EOF/error */
6077 /* If we are in "big" script
6078 * (not in `cmd` or something similar)...
6079 */
6080 if (pipe_list == ERR_PTR && end_trigger == ';') {
6081 /* Discard cached input (rest of line) */
6082 int ch = inp->last_char;
6083 while (ch != EOF && ch != '\n') {
6084 //bb_error_msg("Discarded:'%c'", ch);
6085 ch = i_getch(inp);
6086 }
6087 /* Force prompt */
6088 inp->p = NULL;
6089 /* This stream isn't empty */
6090 empty = 0;
6091 continue;
6092 }
6093 if (!pipe_list && empty)
Denys Vlasenko00243b02009-11-16 02:00:03 +01006094 G.last_exitcode = 0;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006095 break;
Denys Vlasenko00243b02009-11-16 02:00:03 +01006096 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006097 debug_print_tree(pipe_list, 0);
6098 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
6099 run_and_free_list(pipe_list);
Denys Vlasenko00243b02009-11-16 02:00:03 +01006100 empty = 0;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006101 if (G_flag_return_in_progress == 1)
Denys Vlasenko68d5cb52011-03-24 02:50:03 +01006102 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006103 }
Eric Andersen25f27032001-04-26 23:22:31 +00006104}
6105
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006106static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00006107{
6108 struct in_str input;
6109 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006110 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00006111}
6112
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006113static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00006114{
Eric Andersen25f27032001-04-26 23:22:31 +00006115 struct in_str input;
6116 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006117 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00006118}
6119
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006120#if ENABLE_HUSH_TICK
6121static FILE *generate_stream_from_string(const char *s, pid_t *pid_p)
6122{
6123 pid_t pid;
6124 int channel[2];
6125# if !BB_MMU
6126 char **to_free = NULL;
6127# endif
6128
6129 xpipe(channel);
6130 pid = BB_MMU ? xfork() : xvfork();
6131 if (pid == 0) { /* child */
6132 disable_restore_tty_pgrp_on_exit();
6133 /* Process substitution is not considered to be usual
6134 * 'command execution'.
6135 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
6136 */
6137 bb_signals(0
6138 + (1 << SIGTSTP)
6139 + (1 << SIGTTIN)
6140 + (1 << SIGTTOU)
6141 , SIG_IGN);
6142 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
6143 close(channel[0]); /* NB: close _first_, then move fd! */
6144 xmove_fd(channel[1], 1);
6145 /* Prevent it from trying to handle ctrl-z etc */
6146 IF_HUSH_JOB(G.run_list_level = 1;)
6147 /* Awful hack for `trap` or $(trap).
6148 *
6149 * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html
6150 * contains an example where "trap" is executed in a subshell:
6151 *
6152 * save_traps=$(trap)
6153 * ...
6154 * eval "$save_traps"
6155 *
6156 * Standard does not say that "trap" in subshell shall print
6157 * parent shell's traps. It only says that its output
6158 * must have suitable form, but then, in the above example
6159 * (which is not supposed to be normative), it implies that.
6160 *
6161 * bash (and probably other shell) does implement it
6162 * (traps are reset to defaults, but "trap" still shows them),
6163 * but as a result, "trap" logic is hopelessly messed up:
6164 *
6165 * # trap
6166 * trap -- 'echo Ho' SIGWINCH <--- we have a handler
6167 * # (trap) <--- trap is in subshell - no output (correct, traps are reset)
6168 * # true | trap <--- trap is in subshell - no output (ditto)
6169 * # echo `true | trap` <--- in subshell - output (but traps are reset!)
6170 * trap -- 'echo Ho' SIGWINCH
6171 * # echo `(trap)` <--- in subshell in subshell - output
6172 * trap -- 'echo Ho' SIGWINCH
6173 * # echo `true | (trap)` <--- in subshell in subshell in subshell - output!
6174 * trap -- 'echo Ho' SIGWINCH
6175 *
6176 * The rules when to forget and when to not forget traps
6177 * get really complex and nonsensical.
6178 *
6179 * Our solution: ONLY bare $(trap) or `trap` is special.
6180 */
6181 s = skip_whitespace(s);
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01006182 if (is_prefixed_with(s, "trap")
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006183 && skip_whitespace(s + 4)[0] == '\0'
6184 ) {
6185 static const char *const argv[] = { NULL, NULL };
6186 builtin_trap((char**)argv);
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02006187 fflush_all(); /* important */
6188 _exit(0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006189 }
6190# if BB_MMU
6191 reset_traps_to_defaults();
6192 parse_and_run_string(s);
6193 _exit(G.last_exitcode);
6194# else
6195 /* We re-execute after vfork on NOMMU. This makes this script safe:
6196 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
6197 * huge=`cat BIG` # was blocking here forever
6198 * echo OK
6199 */
6200 re_execute_shell(&to_free,
6201 s,
6202 G.global_argv[0],
6203 G.global_argv + 1,
6204 NULL);
6205# endif
6206 }
6207
6208 /* parent */
6209 *pid_p = pid;
6210# if ENABLE_HUSH_FAST
6211 G.count_SIGCHLD++;
6212//bb_error_msg("[%d] fork in generate_stream_from_string:"
6213// " G.count_SIGCHLD:%d G.handled_SIGCHLD:%d",
6214// getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6215# endif
6216 enable_restore_tty_pgrp_on_exit();
6217# if !BB_MMU
6218 free(to_free);
6219# endif
6220 close(channel[1]);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02006221 return remember_FILE(xfdopen_for_read(channel[0]));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006222}
6223
6224/* Return code is exit status of the process that is run. */
6225static int process_command_subs(o_string *dest, const char *s)
6226{
6227 FILE *fp;
6228 struct in_str pipe_str;
6229 pid_t pid;
6230 int status, ch, eol_cnt;
6231
6232 fp = generate_stream_from_string(s, &pid);
6233
6234 /* Now send results of command back into original context */
6235 setup_file_in_str(&pipe_str, fp);
6236 eol_cnt = 0;
6237 while ((ch = i_getch(&pipe_str)) != EOF) {
6238 if (ch == '\n') {
6239 eol_cnt++;
6240 continue;
6241 }
6242 while (eol_cnt) {
6243 o_addchr(dest, '\n');
6244 eol_cnt--;
6245 }
6246 o_addQchr(dest, ch);
6247 }
6248
6249 debug_printf("done reading from `cmd` pipe, closing it\n");
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02006250 fclose_and_forget(fp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006251 /* We need to extract exitcode. Test case
6252 * "true; echo `sleep 1; false` $?"
6253 * should print 1 */
6254 safe_waitpid(pid, &status, 0);
6255 debug_printf("child exited. returning its exitcode:%d\n", WEXITSTATUS(status));
6256 return WEXITSTATUS(status);
6257}
6258#endif /* ENABLE_HUSH_TICK */
6259
6260
6261static void setup_heredoc(struct redir_struct *redir)
6262{
6263 struct fd_pair pair;
6264 pid_t pid;
6265 int len, written;
6266 /* the _body_ of heredoc (misleading field name) */
6267 const char *heredoc = redir->rd_filename;
6268 char *expanded;
6269#if !BB_MMU
6270 char **to_free;
6271#endif
6272
6273 expanded = NULL;
6274 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02006275 expanded = encode_then_expand_string(heredoc, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006276 if (expanded)
6277 heredoc = expanded;
6278 }
6279 len = strlen(heredoc);
6280
6281 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
6282 xpiped_pair(pair);
6283 xmove_fd(pair.rd, redir->rd_fd);
6284
6285 /* Try writing without forking. Newer kernels have
6286 * dynamically growing pipes. Must use non-blocking write! */
6287 ndelay_on(pair.wr);
6288 while (1) {
6289 written = write(pair.wr, heredoc, len);
6290 if (written <= 0)
6291 break;
6292 len -= written;
6293 if (len == 0) {
6294 close(pair.wr);
6295 free(expanded);
6296 return;
6297 }
6298 heredoc += written;
6299 }
6300 ndelay_off(pair.wr);
6301
6302 /* Okay, pipe buffer was not big enough */
6303 /* Note: we must not create a stray child (bastard? :)
6304 * for the unsuspecting parent process. Child creates a grandchild
6305 * and exits before parent execs the process which consumes heredoc
6306 * (that exec happens after we return from this function) */
6307#if !BB_MMU
6308 to_free = NULL;
6309#endif
6310 pid = xvfork();
6311 if (pid == 0) {
6312 /* child */
6313 disable_restore_tty_pgrp_on_exit();
6314 pid = BB_MMU ? xfork() : xvfork();
6315 if (pid != 0)
6316 _exit(0);
6317 /* grandchild */
6318 close(redir->rd_fd); /* read side of the pipe */
6319#if BB_MMU
6320 full_write(pair.wr, heredoc, len); /* may loop or block */
6321 _exit(0);
6322#else
6323 /* Delegate blocking writes to another process */
6324 xmove_fd(pair.wr, STDOUT_FILENO);
6325 re_execute_shell(&to_free, heredoc, NULL, NULL, NULL);
6326#endif
6327 }
6328 /* parent */
6329#if ENABLE_HUSH_FAST
6330 G.count_SIGCHLD++;
6331//bb_error_msg("[%d] fork in setup_heredoc: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6332#endif
6333 enable_restore_tty_pgrp_on_exit();
6334#if !BB_MMU
6335 free(to_free);
6336#endif
6337 close(pair.wr);
6338 free(expanded);
6339 wait(NULL); /* wait till child has died */
6340}
6341
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006342/* fd: redirect wants this fd to be used (e.g. 3>file).
6343 * Move all conflicting internally used fds,
6344 * and remember them so that we can restore them later.
6345 */
6346static int save_fds_on_redirect(int fd, int squirrel[3])
6347{
6348 if (squirrel) {
6349 /* Handle redirects of fds 0,1,2 */
6350
6351 /* If we collide with an already moved stdio fd... */
6352 if (fd == squirrel[0]) {
6353 squirrel[0] = xdup_and_close(squirrel[0], F_DUPFD);
6354 return 1;
6355 }
6356 if (fd == squirrel[1]) {
6357 squirrel[1] = xdup_and_close(squirrel[1], F_DUPFD);
6358 return 1;
6359 }
6360 if (fd == squirrel[2]) {
6361 squirrel[2] = xdup_and_close(squirrel[2], F_DUPFD);
6362 return 1;
6363 }
6364 /* If we are about to redirect stdio fd, and did not yet move it... */
6365 if (fd <= 2 && squirrel[fd] < 0) {
6366 /* We avoid taking stdio fds */
6367 squirrel[fd] = fcntl(fd, F_DUPFD, 10);
6368 if (squirrel[fd] < 0 && errno != EBADF)
6369 xfunc_die();
6370 return 0; /* "we did not close fd" */
6371 }
6372 }
6373
6374#if ENABLE_HUSH_INTERACTIVE
6375 if (fd != 0 && fd == G.interactive_fd) {
6376 G.interactive_fd = xdup_and_close(G.interactive_fd, F_DUPFD_CLOEXEC);
6377 return 1;
6378 }
6379#endif
6380
6381 /* Are we called from setup_redirects(squirrel==NULL)? Two cases:
6382 * (1) Redirect in a forked child. No need to save FILEs' fds,
6383 * we aren't going to use them anymore, ok to trash.
6384 * (2) "exec 3>FILE". Bummer. We can save FILEs' fds,
6385 * but how are we doing to use them?
6386 * "fileno(fd) = new_fd" can't be done.
6387 */
6388 if (!squirrel)
6389 return 0;
6390
6391 return save_FILEs_on_redirect(fd);
6392}
6393
6394static void restore_redirects(int squirrel[3])
6395{
6396 int i, fd;
6397 for (i = 0; i <= 2; i++) {
6398 fd = squirrel[i];
6399 if (fd != -1) {
6400 /* We simply die on error */
6401 xmove_fd(fd, i);
6402 }
6403 }
6404
6405 /* Moved G.interactive_fd stays on new fd, not doing anything for it */
6406
6407 restore_redirected_FILEs();
6408}
6409
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006410/* squirrel != NULL means we squirrel away copies of stdin, stdout,
6411 * and stderr if they are redirected. */
6412static int setup_redirects(struct command *prog, int squirrel[])
6413{
6414 int openfd, mode;
6415 struct redir_struct *redir;
6416
6417 for (redir = prog->redirects; redir; redir = redir->next) {
6418 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006419 /* "rd_fd<<HERE" case */
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006420 save_fds_on_redirect(redir->rd_fd, squirrel);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006421 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
6422 * of the heredoc */
6423 debug_printf_parse("set heredoc '%s'\n",
6424 redir->rd_filename);
6425 setup_heredoc(redir);
6426 continue;
6427 }
6428
6429 if (redir->rd_dup == REDIRFD_TO_FILE) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006430 /* "rd_fd<*>file" case (<*> is <,>,>>,<>) */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006431 char *p;
6432 if (redir->rd_filename == NULL) {
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02006433 /*
6434 * Examples:
6435 * "cmd >" (no filename)
6436 * "cmd > <file" (2nd redirect starts too early)
6437 */
6438 die_if_script("syntax error: %s", "invalid redirect");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006439 continue;
6440 }
6441 mode = redir_table[redir->rd_type].mode;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006442 p = expand_string_to_string(redir->rd_filename, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006443 openfd = open_or_warn(p, mode);
6444 free(p);
6445 if (openfd < 0) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006446 /* Error message from open_or_warn can be lost
6447 * if stderr has been redirected, but bash
6448 * and ash both lose it as well
6449 * (though zsh doesn't!)
6450 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006451 return 1;
6452 }
6453 } else {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006454 /* "rd_fd<*>rd_dup" or "rd_fd<*>-" cases */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006455 openfd = redir->rd_dup;
6456 }
6457
6458 if (openfd != redir->rd_fd) {
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006459 int closed = save_fds_on_redirect(redir->rd_fd, squirrel);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006460 if (openfd == REDIRFD_CLOSE) {
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006461 /* "rd_fd >&-" means "close me" */
6462 if (!closed) {
6463 /* ^^^ optimization: saving may already
6464 * have closed it. If not... */
6465 close(redir->rd_fd);
6466 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006467 } else {
6468 xdup2(openfd, redir->rd_fd);
6469 if (redir->rd_dup == REDIRFD_TO_FILE)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006470 /* "rd_fd > FILE" */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006471 close(openfd);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006472 /* else: "rd_fd > rd_dup" */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006473 }
6474 }
6475 }
6476 return 0;
6477}
6478
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006479static char *find_in_path(const char *arg)
6480{
6481 char *ret = NULL;
6482 const char *PATH = get_local_var_value("PATH");
6483
6484 if (!PATH)
6485 return NULL;
6486
6487 while (1) {
6488 const char *end = strchrnul(PATH, ':');
6489 int sz = end - PATH; /* must be int! */
6490
6491 free(ret);
6492 if (sz != 0) {
6493 ret = xasprintf("%.*s/%s", sz, PATH, arg);
6494 } else {
6495 /* We have xxx::yyyy in $PATH,
6496 * it means "use current dir" */
6497 ret = xstrdup(arg);
6498 }
6499 if (access(ret, F_OK) == 0)
6500 break;
6501
6502 if (*end == '\0') {
6503 free(ret);
6504 return NULL;
6505 }
6506 PATH = end + 1;
6507 }
6508
6509 return ret;
6510}
6511
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006512static const struct built_in_command *find_builtin_helper(const char *name,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006513 const struct built_in_command *x,
6514 const struct built_in_command *end)
6515{
6516 while (x != end) {
6517 if (strcmp(name, x->b_cmd) != 0) {
6518 x++;
6519 continue;
6520 }
6521 debug_printf_exec("found builtin '%s'\n", name);
6522 return x;
6523 }
6524 return NULL;
6525}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006526static const struct built_in_command *find_builtin1(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006527{
6528 return find_builtin_helper(name, bltins1, &bltins1[ARRAY_SIZE(bltins1)]);
6529}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006530static const struct built_in_command *find_builtin(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006531{
6532 const struct built_in_command *x = find_builtin1(name);
6533 if (x)
6534 return x;
6535 return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]);
6536}
6537
6538#if ENABLE_HUSH_FUNCTIONS
6539static struct function **find_function_slot(const char *name)
6540{
6541 struct function **funcpp = &G.top_func;
6542 while (*funcpp) {
6543 if (strcmp(name, (*funcpp)->name) == 0) {
6544 break;
6545 }
6546 funcpp = &(*funcpp)->next;
6547 }
6548 return funcpp;
6549}
6550
6551static const struct function *find_function(const char *name)
6552{
6553 const struct function *funcp = *find_function_slot(name);
6554 if (funcp)
6555 debug_printf_exec("found function '%s'\n", name);
6556 return funcp;
6557}
6558
6559/* Note: takes ownership on name ptr */
6560static struct function *new_function(char *name)
6561{
6562 struct function **funcpp = find_function_slot(name);
6563 struct function *funcp = *funcpp;
6564
6565 if (funcp != NULL) {
6566 struct command *cmd = funcp->parent_cmd;
6567 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
6568 if (!cmd) {
6569 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
6570 free(funcp->name);
6571 /* Note: if !funcp->body, do not free body_as_string!
6572 * This is a special case of "-F name body" function:
6573 * body_as_string was not malloced! */
6574 if (funcp->body) {
6575 free_pipe_list(funcp->body);
6576# if !BB_MMU
6577 free(funcp->body_as_string);
6578# endif
6579 }
6580 } else {
6581 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
6582 cmd->argv[0] = funcp->name;
6583 cmd->group = funcp->body;
6584# if !BB_MMU
6585 cmd->group_as_string = funcp->body_as_string;
6586# endif
6587 }
6588 } else {
6589 debug_printf_exec("remembering new function '%s'\n", name);
6590 funcp = *funcpp = xzalloc(sizeof(*funcp));
6591 /*funcp->next = NULL;*/
6592 }
6593
6594 funcp->name = name;
6595 return funcp;
6596}
6597
6598static void unset_func(const char *name)
6599{
6600 struct function **funcpp = find_function_slot(name);
6601 struct function *funcp = *funcpp;
6602
6603 if (funcp != NULL) {
6604 debug_printf_exec("freeing function '%s'\n", funcp->name);
6605 *funcpp = funcp->next;
6606 /* funcp is unlinked now, deleting it.
6607 * Note: if !funcp->body, the function was created by
6608 * "-F name body", do not free ->body_as_string
6609 * and ->name as they were not malloced. */
6610 if (funcp->body) {
6611 free_pipe_list(funcp->body);
6612 free(funcp->name);
6613# if !BB_MMU
6614 free(funcp->body_as_string);
6615# endif
6616 }
6617 free(funcp);
6618 }
6619}
6620
6621# if BB_MMU
6622#define exec_function(to_free, funcp, argv) \
6623 exec_function(funcp, argv)
6624# endif
6625static void exec_function(char ***to_free,
6626 const struct function *funcp,
6627 char **argv) NORETURN;
6628static void exec_function(char ***to_free,
6629 const struct function *funcp,
6630 char **argv)
6631{
6632# if BB_MMU
6633 int n = 1;
6634
6635 argv[0] = G.global_argv[0];
6636 G.global_argv = argv;
6637 while (*++argv)
6638 n++;
6639 G.global_argc = n;
6640 /* On MMU, funcp->body is always non-NULL */
6641 n = run_list(funcp->body);
6642 fflush_all();
6643 _exit(n);
6644# else
6645 re_execute_shell(to_free,
6646 funcp->body_as_string,
6647 G.global_argv[0],
6648 argv + 1,
6649 NULL);
6650# endif
6651}
6652
6653static int run_function(const struct function *funcp, char **argv)
6654{
6655 int rc;
6656 save_arg_t sv;
6657 smallint sv_flg;
6658
6659 save_and_replace_G_args(&sv, argv);
6660
6661 /* "we are in function, ok to use return" */
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006662 sv_flg = G_flag_return_in_progress;
6663 G_flag_return_in_progress = -1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006664# if ENABLE_HUSH_LOCAL
6665 G.func_nest_level++;
6666# endif
6667
6668 /* On MMU, funcp->body is always non-NULL */
6669# if !BB_MMU
6670 if (!funcp->body) {
6671 /* Function defined by -F */
6672 parse_and_run_string(funcp->body_as_string);
6673 rc = G.last_exitcode;
6674 } else
6675# endif
6676 {
6677 rc = run_list(funcp->body);
6678 }
6679
6680# if ENABLE_HUSH_LOCAL
6681 {
6682 struct variable *var;
6683 struct variable **var_pp;
6684
6685 var_pp = &G.top_var;
6686 while ((var = *var_pp) != NULL) {
6687 if (var->func_nest_level < G.func_nest_level) {
6688 var_pp = &var->next;
6689 continue;
6690 }
6691 /* Unexport */
6692 if (var->flg_export)
6693 bb_unsetenv(var->varstr);
6694 /* Remove from global list */
6695 *var_pp = var->next;
6696 /* Free */
6697 if (!var->max_len)
6698 free(var->varstr);
6699 free(var);
6700 }
6701 G.func_nest_level--;
6702 }
6703# endif
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006704 G_flag_return_in_progress = sv_flg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006705
6706 restore_G_args(&sv, argv);
6707
6708 return rc;
6709}
6710#endif /* ENABLE_HUSH_FUNCTIONS */
6711
6712
6713#if BB_MMU
6714#define exec_builtin(to_free, x, argv) \
6715 exec_builtin(x, argv)
6716#else
6717#define exec_builtin(to_free, x, argv) \
6718 exec_builtin(to_free, argv)
6719#endif
6720static void exec_builtin(char ***to_free,
6721 const struct built_in_command *x,
6722 char **argv) NORETURN;
6723static void exec_builtin(char ***to_free,
6724 const struct built_in_command *x,
6725 char **argv)
6726{
6727#if BB_MMU
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01006728 int rcode;
6729 fflush_all();
6730 rcode = x->b_function(argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006731 fflush_all();
6732 _exit(rcode);
6733#else
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01006734 fflush_all();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006735 /* On NOMMU, we must never block!
6736 * Example: { sleep 99 | read line; } & echo Ok
6737 */
6738 re_execute_shell(to_free,
6739 argv[0],
6740 G.global_argv[0],
6741 G.global_argv + 1,
6742 argv);
6743#endif
6744}
6745
6746
6747static void execvp_or_die(char **argv) NORETURN;
6748static void execvp_or_die(char **argv)
6749{
Denys Vlasenko04465da2016-10-03 01:01:15 +02006750 int e;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006751 debug_printf_exec("execing '%s'\n", argv[0]);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02006752 /* Don't propagate SIG_IGN to the child */
6753 if (SPECIAL_JOBSTOP_SIGS != 0)
6754 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006755 execvp(argv[0], argv);
Denys Vlasenko04465da2016-10-03 01:01:15 +02006756 e = 2;
6757 if (errno == EACCES) e = 126;
6758 if (errno == ENOENT) e = 127;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006759 bb_perror_msg("can't execute '%s'", argv[0]);
Denys Vlasenko04465da2016-10-03 01:01:15 +02006760 _exit(e);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006761}
6762
6763#if ENABLE_HUSH_MODE_X
6764static void dump_cmd_in_x_mode(char **argv)
6765{
6766 if (G_x_mode && argv) {
6767 /* We want to output the line in one write op */
6768 char *buf, *p;
6769 int len;
6770 int n;
6771
6772 len = 3;
6773 n = 0;
6774 while (argv[n])
6775 len += strlen(argv[n++]) + 1;
6776 buf = xmalloc(len);
6777 buf[0] = '+';
6778 p = buf + 1;
6779 n = 0;
6780 while (argv[n])
6781 p += sprintf(p, " %s", argv[n++]);
6782 *p++ = '\n';
6783 *p = '\0';
6784 fputs(buf, stderr);
6785 free(buf);
6786 }
6787}
6788#else
6789# define dump_cmd_in_x_mode(argv) ((void)0)
6790#endif
6791
6792#if BB_MMU
6793#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
6794 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
6795#define pseudo_exec(nommu_save, command, argv_expanded) \
6796 pseudo_exec(command, argv_expanded)
6797#endif
6798
6799/* Called after [v]fork() in run_pipe, or from builtin_exec.
6800 * Never returns.
6801 * Don't exit() here. If you don't exec, use _exit instead.
6802 * The at_exit handlers apparently confuse the calling process,
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02006803 * in particular stdin handling. Not sure why? -- because of vfork! (vda)
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02006804 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006805static void pseudo_exec_argv(nommu_save_t *nommu_save,
6806 char **argv, int assignment_cnt,
6807 char **argv_expanded) NORETURN;
6808static NOINLINE void pseudo_exec_argv(nommu_save_t *nommu_save,
6809 char **argv, int assignment_cnt,
6810 char **argv_expanded)
6811{
6812 char **new_env;
6813
6814 new_env = expand_assignments(argv, assignment_cnt);
6815 dump_cmd_in_x_mode(new_env);
6816
6817 if (!argv[assignment_cnt]) {
6818 /* Case when we are here: ... | var=val | ...
6819 * (note that we do not exit early, i.e., do not optimize out
6820 * expand_assignments(): think about ... | var=`sleep 1` | ...
6821 */
6822 free_strings(new_env);
6823 _exit(EXIT_SUCCESS);
6824 }
6825
6826#if BB_MMU
6827 set_vars_and_save_old(new_env);
6828 free(new_env); /* optional */
6829 /* we can also destroy set_vars_and_save_old's return value,
6830 * to save memory */
6831#else
6832 nommu_save->new_env = new_env;
6833 nommu_save->old_vars = set_vars_and_save_old(new_env);
6834#endif
6835
6836 if (argv_expanded) {
6837 argv = argv_expanded;
6838 } else {
6839 argv = expand_strvec_to_strvec(argv + assignment_cnt);
6840#if !BB_MMU
6841 nommu_save->argv = argv;
6842#endif
6843 }
6844 dump_cmd_in_x_mode(argv);
6845
6846#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
6847 if (strchr(argv[0], '/') != NULL)
6848 goto skip;
6849#endif
6850
6851 /* Check if the command matches any of the builtins.
6852 * Depending on context, this might be redundant. But it's
6853 * easier to waste a few CPU cycles than it is to figure out
6854 * if this is one of those cases.
6855 */
6856 {
6857 /* On NOMMU, it is more expensive to re-execute shell
6858 * just in order to run echo or test builtin.
6859 * It's better to skip it here and run corresponding
6860 * non-builtin later. */
6861 const struct built_in_command *x;
6862 x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]);
6863 if (x) {
6864 exec_builtin(&nommu_save->argv_from_re_execing, x, argv);
6865 }
6866 }
6867#if ENABLE_HUSH_FUNCTIONS
6868 /* Check if the command matches any functions */
6869 {
6870 const struct function *funcp = find_function(argv[0]);
6871 if (funcp) {
6872 exec_function(&nommu_save->argv_from_re_execing, funcp, argv);
6873 }
6874 }
6875#endif
6876
6877#if ENABLE_FEATURE_SH_STANDALONE
6878 /* Check if the command matches any busybox applets */
6879 {
6880 int a = find_applet_by_name(argv[0]);
6881 if (a >= 0) {
6882# if BB_MMU /* see above why on NOMMU it is not allowed */
6883 if (APPLET_IS_NOEXEC(a)) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02006884 /* Do not leak open fds from opened script files etc */
6885 close_all_FILE_list();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006886 debug_printf_exec("running applet '%s'\n", argv[0]);
6887 run_applet_no_and_exit(a, argv);
6888 }
6889# endif
6890 /* Re-exec ourselves */
6891 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02006892 /* Don't propagate SIG_IGN to the child */
6893 if (SPECIAL_JOBSTOP_SIGS != 0)
6894 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006895 execv(bb_busybox_exec_path, argv);
6896 /* If they called chroot or otherwise made the binary no longer
6897 * executable, fall through */
6898 }
6899 }
6900#endif
6901
6902#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
6903 skip:
6904#endif
6905 execvp_or_die(argv);
6906}
6907
6908/* Called after [v]fork() in run_pipe
6909 */
6910static void pseudo_exec(nommu_save_t *nommu_save,
6911 struct command *command,
6912 char **argv_expanded) NORETURN;
6913static void pseudo_exec(nommu_save_t *nommu_save,
6914 struct command *command,
6915 char **argv_expanded)
6916{
6917 if (command->argv) {
6918 pseudo_exec_argv(nommu_save, command->argv,
6919 command->assignment_cnt, argv_expanded);
6920 }
6921
6922 if (command->group) {
6923 /* Cases when we are here:
6924 * ( list )
6925 * { list } &
6926 * ... | ( list ) | ...
6927 * ... | { list } | ...
6928 */
6929#if BB_MMU
6930 int rcode;
6931 debug_printf_exec("pseudo_exec: run_list\n");
6932 reset_traps_to_defaults();
6933 rcode = run_list(command->group);
6934 /* OK to leak memory by not calling free_pipe_list,
6935 * since this process is about to exit */
6936 _exit(rcode);
6937#else
6938 re_execute_shell(&nommu_save->argv_from_re_execing,
6939 command->group_as_string,
6940 G.global_argv[0],
6941 G.global_argv + 1,
6942 NULL);
6943#endif
6944 }
6945
6946 /* Case when we are here: ... | >file */
6947 debug_printf_exec("pseudo_exec'ed null command\n");
6948 _exit(EXIT_SUCCESS);
6949}
6950
6951#if ENABLE_HUSH_JOB
6952static const char *get_cmdtext(struct pipe *pi)
6953{
6954 char **argv;
6955 char *p;
6956 int len;
6957
6958 /* This is subtle. ->cmdtext is created only on first backgrounding.
6959 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
6960 * On subsequent bg argv is trashed, but we won't use it */
6961 if (pi->cmdtext)
6962 return pi->cmdtext;
6963 argv = pi->cmds[0].argv;
6964 if (!argv || !argv[0]) {
6965 pi->cmdtext = xzalloc(1);
6966 return pi->cmdtext;
6967 }
6968
6969 len = 0;
6970 do {
6971 len += strlen(*argv) + 1;
6972 } while (*++argv);
6973 p = xmalloc(len);
6974 pi->cmdtext = p;
6975 argv = pi->cmds[0].argv;
6976 do {
6977 len = strlen(*argv);
6978 memcpy(p, *argv, len);
6979 p += len;
6980 *p++ = ' ';
6981 } while (*++argv);
6982 p[-1] = '\0';
6983 return pi->cmdtext;
6984}
6985
6986static void insert_bg_job(struct pipe *pi)
6987{
6988 struct pipe *job, **jobp;
6989 int i;
6990
6991 /* Linear search for the ID of the job to use */
6992 pi->jobid = 1;
6993 for (job = G.job_list; job; job = job->next)
6994 if (job->jobid >= pi->jobid)
6995 pi->jobid = job->jobid + 1;
6996
6997 /* Add job to the list of running jobs */
6998 jobp = &G.job_list;
6999 while ((job = *jobp) != NULL)
7000 jobp = &job->next;
7001 job = *jobp = xmalloc(sizeof(*job));
7002
7003 *job = *pi; /* physical copy */
7004 job->next = NULL;
7005 job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
7006 /* Cannot copy entire pi->cmds[] vector! This causes double frees */
7007 for (i = 0; i < pi->num_cmds; i++) {
7008 job->cmds[i].pid = pi->cmds[i].pid;
7009 /* all other fields are not used and stay zero */
7010 }
7011 job->cmdtext = xstrdup(get_cmdtext(pi));
7012
7013 if (G_interactive_fd)
7014 printf("[%d] %d %s\n", job->jobid, job->cmds[0].pid, job->cmdtext);
7015 G.last_jobid = job->jobid;
7016}
7017
7018static void remove_bg_job(struct pipe *pi)
7019{
7020 struct pipe *prev_pipe;
7021
7022 if (pi == G.job_list) {
7023 G.job_list = pi->next;
7024 } else {
7025 prev_pipe = G.job_list;
7026 while (prev_pipe->next != pi)
7027 prev_pipe = prev_pipe->next;
7028 prev_pipe->next = pi->next;
7029 }
7030 if (G.job_list)
7031 G.last_jobid = G.job_list->jobid;
7032 else
7033 G.last_jobid = 0;
7034}
7035
7036/* Remove a backgrounded job */
7037static void delete_finished_bg_job(struct pipe *pi)
7038{
7039 remove_bg_job(pi);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007040 free_pipe(pi);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007041}
7042#endif /* JOB */
7043
7044/* Check to see if any processes have exited -- if they
7045 * have, figure out why and see if a job has completed */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02007046static int checkjobs(struct pipe *fg_pipe)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007047{
7048 int attributes;
7049 int status;
7050#if ENABLE_HUSH_JOB
7051 struct pipe *pi;
7052#endif
7053 pid_t childpid;
7054 int rcode = 0;
7055
7056 debug_printf_jobs("checkjobs %p\n", fg_pipe);
7057
7058 attributes = WUNTRACED;
7059 if (fg_pipe == NULL)
7060 attributes |= WNOHANG;
7061
7062 errno = 0;
7063#if ENABLE_HUSH_FAST
7064 if (G.handled_SIGCHLD == G.count_SIGCHLD) {
7065//bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p",
7066//getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe);
7067 /* There was neither fork nor SIGCHLD since last waitpid */
7068 /* Avoid doing waitpid syscall if possible */
7069 if (!G.we_have_children) {
7070 errno = ECHILD;
7071 return -1;
7072 }
7073 if (fg_pipe == NULL) { /* is WNOHANG set? */
7074 /* We have children, but they did not exit
7075 * or stop yet (we saw no SIGCHLD) */
7076 return 0;
7077 }
7078 /* else: !WNOHANG, waitpid will block, can't short-circuit */
7079 }
7080#endif
7081
7082/* Do we do this right?
7083 * bash-3.00# sleep 20 | false
7084 * <ctrl-Z pressed>
7085 * [3]+ Stopped sleep 20 | false
7086 * bash-3.00# echo $?
7087 * 1 <========== bg pipe is not fully done, but exitcode is already known!
7088 * [hush 1.14.0: yes we do it right]
7089 */
7090 wait_more:
7091 while (1) {
7092 int i;
7093 int dead;
7094
7095#if ENABLE_HUSH_FAST
7096 i = G.count_SIGCHLD;
7097#endif
7098 childpid = waitpid(-1, &status, attributes);
7099 if (childpid <= 0) {
7100 if (childpid && errno != ECHILD)
7101 bb_perror_msg("waitpid");
7102#if ENABLE_HUSH_FAST
7103 else { /* Until next SIGCHLD, waitpid's are useless */
7104 G.we_have_children = (childpid == 0);
7105 G.handled_SIGCHLD = i;
7106//bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
7107 }
7108#endif
7109 break;
7110 }
7111 dead = WIFEXITED(status) || WIFSIGNALED(status);
7112
7113#if DEBUG_JOBS
7114 if (WIFSTOPPED(status))
7115 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
7116 childpid, WSTOPSIG(status), WEXITSTATUS(status));
7117 if (WIFSIGNALED(status))
7118 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
7119 childpid, WTERMSIG(status), WEXITSTATUS(status));
7120 if (WIFEXITED(status))
7121 debug_printf_jobs("pid %d exited, exitcode %d\n",
7122 childpid, WEXITSTATUS(status));
7123#endif
7124 /* Were we asked to wait for fg pipe? */
7125 if (fg_pipe) {
Denys Vlasenkoc08c3f52010-11-14 01:59:55 +01007126 i = fg_pipe->num_cmds;
7127 while (--i >= 0) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007128 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
7129 if (fg_pipe->cmds[i].pid != childpid)
7130 continue;
7131 if (dead) {
Denys Vlasenko6696eac2010-11-14 02:01:50 +01007132 int ex;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007133 fg_pipe->cmds[i].pid = 0;
7134 fg_pipe->alive_cmds--;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01007135 ex = WEXITSTATUS(status);
7136 /* bash prints killer signal's name for *last*
Denys Vlasenko7c6f2462011-02-14 17:17:10 +01007137 * process in pipe (prints just newline for SIGINT/SIGPIPE).
Denys Vlasenko6696eac2010-11-14 02:01:50 +01007138 * Mimic this. Example: "sleep 5" + (^\ or kill -QUIT)
7139 */
7140 if (WIFSIGNALED(status)) {
7141 int sig = WTERMSIG(status);
7142 if (i == fg_pipe->num_cmds-1)
Denys Vlasenko7c6f2462011-02-14 17:17:10 +01007143 /* TODO: use strsignal() instead for bash compat? but that's bloat... */
Denys Vlasenkod60752f2015-10-07 22:42:45 +02007144 puts(sig == SIGINT || sig == SIGPIPE ? "" : get_signame(sig));
Denys Vlasenko7c6f2462011-02-14 17:17:10 +01007145 /* TODO: if (WCOREDUMP(status)) + " (core dumped)"; */
Denys Vlasenko6696eac2010-11-14 02:01:50 +01007146 /* TODO: MIPS has 128 sigs (1..128), what if sig==128 here?
7147 * Maybe we need to use sig | 128? */
7148 ex = sig + 128;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007149 }
Denys Vlasenko6696eac2010-11-14 02:01:50 +01007150 fg_pipe->cmds[i].cmd_exitcode = ex;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007151 } else {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007152 fg_pipe->stopped_cmds++;
7153 }
7154 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
7155 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
Denys Vlasenkoc08c3f52010-11-14 01:59:55 +01007156 if (fg_pipe->alive_cmds == fg_pipe->stopped_cmds) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007157 /* All processes in fg pipe have exited or stopped */
Denys Vlasenko6696eac2010-11-14 02:01:50 +01007158 i = fg_pipe->num_cmds;
7159 while (--i >= 0) {
7160 rcode = fg_pipe->cmds[i].cmd_exitcode;
7161 /* usually last process gives overall exitstatus,
7162 * but with "set -o pipefail", last *failed* process does */
7163 if (G.o_opt[OPT_O_PIPEFAIL] == 0 || rcode != 0)
7164 break;
7165 }
7166 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007167/* Note: *non-interactive* bash does not continue if all processes in fg pipe
7168 * are stopped. Testcase: "cat | cat" in a script (not on command line!)
7169 * and "killall -STOP cat" */
7170 if (G_interactive_fd) {
7171#if ENABLE_HUSH_JOB
Denys Vlasenkoc08c3f52010-11-14 01:59:55 +01007172 if (fg_pipe->alive_cmds != 0)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007173 insert_bg_job(fg_pipe);
7174#endif
7175 return rcode;
7176 }
Denys Vlasenkoc08c3f52010-11-14 01:59:55 +01007177 if (fg_pipe->alive_cmds == 0)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007178 return rcode;
7179 }
7180 /* There are still running processes in the fg pipe */
7181 goto wait_more; /* do waitpid again */
7182 }
7183 /* it wasnt fg_pipe, look for process in bg pipes */
7184 }
7185
7186#if ENABLE_HUSH_JOB
7187 /* We asked to wait for bg or orphaned children */
7188 /* No need to remember exitcode in this case */
7189 for (pi = G.job_list; pi; pi = pi->next) {
7190 for (i = 0; i < pi->num_cmds; i++) {
7191 if (pi->cmds[i].pid == childpid)
7192 goto found_pi_and_prognum;
7193 }
7194 }
7195 /* Happens when shell is used as init process (init=/bin/sh) */
7196 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
7197 continue; /* do waitpid again */
7198
7199 found_pi_and_prognum:
7200 if (dead) {
7201 /* child exited */
7202 pi->cmds[i].pid = 0;
7203 pi->alive_cmds--;
7204 if (!pi->alive_cmds) {
7205 if (G_interactive_fd)
7206 printf(JOB_STATUS_FORMAT, pi->jobid,
7207 "Done", pi->cmdtext);
7208 delete_finished_bg_job(pi);
7209 }
7210 } else {
7211 /* child stopped */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007212 pi->stopped_cmds++;
7213 }
7214#endif
7215 } /* while (waitpid succeeds)... */
7216
7217 return rcode;
7218}
7219
7220#if ENABLE_HUSH_JOB
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02007221static int checkjobs_and_fg_shell(struct pipe *fg_pipe)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007222{
7223 pid_t p;
7224 int rcode = checkjobs(fg_pipe);
7225 if (G_saved_tty_pgrp) {
7226 /* Job finished, move the shell to the foreground */
7227 p = getpgrp(); /* our process group id */
7228 debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p);
7229 tcsetpgrp(G_interactive_fd, p);
7230 }
7231 return rcode;
7232}
7233#endif
7234
7235/* Start all the jobs, but don't wait for anything to finish.
7236 * See checkjobs().
7237 *
7238 * Return code is normally -1, when the caller has to wait for children
7239 * to finish to determine the exit status of the pipe. If the pipe
7240 * is a simple builtin command, however, the action is done by the
7241 * time run_pipe returns, and the exit code is provided as the
7242 * return value.
7243 *
7244 * Returns -1 only if started some children. IOW: we have to
7245 * mask out retvals of builtins etc with 0xff!
7246 *
7247 * The only case when we do not need to [v]fork is when the pipe
7248 * is single, non-backgrounded, non-subshell command. Examples:
7249 * cmd ; ... { list } ; ...
7250 * cmd && ... { list } && ...
7251 * cmd || ... { list } || ...
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007252 * If it is, then we can run cmd as a builtin, NOFORK,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007253 * or (if SH_STANDALONE) an applet, and we can run the { list }
7254 * with run_list. If it isn't one of these, we fork and exec cmd.
7255 *
7256 * Cases when we must fork:
7257 * non-single: cmd | cmd
7258 * backgrounded: cmd & { list } &
7259 * subshell: ( list ) [&]
7260 */
7261#if !ENABLE_HUSH_MODE_X
Denys Vlasenko26777aa2010-11-22 23:49:10 +01007262#define redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel, argv_expanded) \
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007263 redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel)
7264#endif
7265static int redirect_and_varexp_helper(char ***new_env_p,
7266 struct variable **old_vars_p,
7267 struct command *command,
7268 int squirrel[3],
7269 char **argv_expanded)
7270{
7271 /* setup_redirects acts on file descriptors, not FILEs.
7272 * This is perfect for work that comes after exec().
7273 * Is it really safe for inline use? Experimentally,
7274 * things seem to work. */
7275 int rcode = setup_redirects(command, squirrel);
7276 if (rcode == 0) {
7277 char **new_env = expand_assignments(command->argv, command->assignment_cnt);
7278 *new_env_p = new_env;
7279 dump_cmd_in_x_mode(new_env);
7280 dump_cmd_in_x_mode(argv_expanded);
7281 if (old_vars_p)
7282 *old_vars_p = set_vars_and_save_old(new_env);
7283 }
7284 return rcode;
7285}
7286static NOINLINE int run_pipe(struct pipe *pi)
7287{
7288 static const char *const null_ptr = NULL;
7289
7290 int cmd_no;
7291 int next_infd;
7292 struct command *command;
7293 char **argv_expanded;
7294 char **argv;
7295 /* it is not always needed, but we aim to smaller code */
7296 int squirrel[] = { -1, -1, -1 };
7297 int rcode;
7298
7299 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
7300 debug_enter();
7301
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02007302 /* Testcase: set -- q w e; (IFS='' echo "$*"; IFS=''; echo "$*"); echo "$*"
7303 * Result should be 3 lines: q w e, qwe, q w e
7304 */
7305 G.ifs = get_local_var_value("IFS");
7306 if (!G.ifs)
7307 G.ifs = defifs;
7308
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007309 IF_HUSH_JOB(pi->pgrp = -1;)
7310 pi->stopped_cmds = 0;
7311 command = &pi->cmds[0];
7312 argv_expanded = NULL;
7313
7314 if (pi->num_cmds != 1
7315 || pi->followup == PIPE_BG
7316 || command->cmd_type == CMD_SUBSHELL
7317 ) {
7318 goto must_fork;
7319 }
7320
7321 pi->alive_cmds = 1;
7322
7323 debug_printf_exec(": group:%p argv:'%s'\n",
7324 command->group, command->argv ? command->argv[0] : "NONE");
7325
7326 if (command->group) {
7327#if ENABLE_HUSH_FUNCTIONS
7328 if (command->cmd_type == CMD_FUNCDEF) {
7329 /* "executing" func () { list } */
7330 struct function *funcp;
7331
7332 funcp = new_function(command->argv[0]);
7333 /* funcp->name is already set to argv[0] */
7334 funcp->body = command->group;
7335# if !BB_MMU
7336 funcp->body_as_string = command->group_as_string;
7337 command->group_as_string = NULL;
7338# endif
7339 command->group = NULL;
7340 command->argv[0] = NULL;
7341 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
7342 funcp->parent_cmd = command;
7343 command->child_func = funcp;
7344
7345 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
7346 debug_leave();
7347 return EXIT_SUCCESS;
7348 }
7349#endif
7350 /* { list } */
7351 debug_printf("non-subshell group\n");
7352 rcode = 1; /* exitcode if redir failed */
7353 if (setup_redirects(command, squirrel) == 0) {
7354 debug_printf_exec(": run_list\n");
7355 rcode = run_list(command->group) & 0xff;
7356 }
7357 restore_redirects(squirrel);
7358 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7359 debug_leave();
7360 debug_printf_exec("run_pipe: return %d\n", rcode);
7361 return rcode;
7362 }
7363
7364 argv = command->argv ? command->argv : (char **) &null_ptr;
7365 {
7366 const struct built_in_command *x;
7367#if ENABLE_HUSH_FUNCTIONS
7368 const struct function *funcp;
7369#else
7370 enum { funcp = 0 };
7371#endif
7372 char **new_env = NULL;
7373 struct variable *old_vars = NULL;
7374
7375 if (argv[command->assignment_cnt] == NULL) {
7376 /* Assignments, but no command */
7377 /* Ensure redirects take effect (that is, create files).
7378 * Try "a=t >file" */
7379#if 0 /* A few cases in testsuite fail with this code. FIXME */
7380 rcode = redirect_and_varexp_helper(&new_env, /*old_vars:*/ NULL, command, squirrel, /*argv_expanded:*/ NULL);
7381 /* Set shell variables */
7382 if (new_env) {
7383 argv = new_env;
7384 while (*argv) {
7385 set_local_var(*argv, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
7386 /* Do we need to flag set_local_var() errors?
7387 * "assignment to readonly var" and "putenv error"
7388 */
7389 argv++;
7390 }
7391 }
7392 /* Redirect error sets $? to 1. Otherwise,
7393 * if evaluating assignment value set $?, retain it.
7394 * Try "false; q=`exit 2`; echo $?" - should print 2: */
7395 if (rcode == 0)
7396 rcode = G.last_exitcode;
7397 /* Exit, _skipping_ variable restoring code: */
7398 goto clean_up_and_ret0;
7399
7400#else /* Older, bigger, but more correct code */
7401
7402 rcode = setup_redirects(command, squirrel);
7403 restore_redirects(squirrel);
7404 /* Set shell variables */
7405 if (G_x_mode)
7406 bb_putchar_stderr('+');
7407 while (*argv) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02007408 char *p = expand_string_to_string(*argv, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007409 if (G_x_mode)
7410 fprintf(stderr, " %s", p);
7411 debug_printf_exec("set shell var:'%s'->'%s'\n",
7412 *argv, p);
7413 set_local_var(p, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
7414 /* Do we need to flag set_local_var() errors?
7415 * "assignment to readonly var" and "putenv error"
7416 */
7417 argv++;
7418 }
7419 if (G_x_mode)
7420 bb_putchar_stderr('\n');
7421 /* Redirect error sets $? to 1. Otherwise,
7422 * if evaluating assignment value set $?, retain it.
7423 * Try "false; q=`exit 2`; echo $?" - should print 2: */
7424 if (rcode == 0)
7425 rcode = G.last_exitcode;
7426 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7427 debug_leave();
7428 debug_printf_exec("run_pipe: return %d\n", rcode);
7429 return rcode;
7430#endif
7431 }
7432
7433 /* Expand the rest into (possibly) many strings each */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007434#if ENABLE_HUSH_BASH_COMPAT
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007435 if (command->cmd_type == CMD_SINGLEWORD_NOGLOB) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007436 argv_expanded = expand_strvec_to_strvec_singleword_noglob(argv + command->assignment_cnt);
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007437 } else
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007438#endif
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007439 {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007440 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
7441 }
7442
7443 /* if someone gives us an empty string: `cmd with empty output` */
7444 if (!argv_expanded[0]) {
7445 free(argv_expanded);
7446 debug_leave();
7447 return G.last_exitcode;
7448 }
7449
7450 x = find_builtin(argv_expanded[0]);
7451#if ENABLE_HUSH_FUNCTIONS
7452 funcp = NULL;
7453 if (!x)
7454 funcp = find_function(argv_expanded[0]);
7455#endif
7456 if (x || funcp) {
7457 if (!funcp) {
7458 if (x->b_function == builtin_exec && argv_expanded[1] == NULL) {
7459 debug_printf("exec with redirects only\n");
7460 rcode = setup_redirects(command, NULL);
Denys Vlasenko869994c2016-08-20 15:16:00 +02007461 /* rcode=1 can be if redir file can't be opened */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007462 goto clean_up_and_ret1;
7463 }
7464 }
7465 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, squirrel, argv_expanded);
7466 if (rcode == 0) {
7467 if (!funcp) {
7468 debug_printf_exec(": builtin '%s' '%s'...\n",
7469 x->b_cmd, argv_expanded[1]);
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01007470 fflush_all();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007471 rcode = x->b_function(argv_expanded) & 0xff;
7472 fflush_all();
7473 }
7474#if ENABLE_HUSH_FUNCTIONS
7475 else {
7476# if ENABLE_HUSH_LOCAL
7477 struct variable **sv;
7478 sv = G.shadowed_vars_pp;
7479 G.shadowed_vars_pp = &old_vars;
7480# endif
7481 debug_printf_exec(": function '%s' '%s'...\n",
7482 funcp->name, argv_expanded[1]);
7483 rcode = run_function(funcp, argv_expanded) & 0xff;
7484# if ENABLE_HUSH_LOCAL
7485 G.shadowed_vars_pp = sv;
7486# endif
7487 }
7488#endif
7489 }
7490 clean_up_and_ret:
7491 unset_vars(new_env);
7492 add_vars(old_vars);
7493/* clean_up_and_ret0: */
7494 restore_redirects(squirrel);
7495 clean_up_and_ret1:
7496 free(argv_expanded);
7497 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7498 debug_leave();
7499 debug_printf_exec("run_pipe return %d\n", rcode);
7500 return rcode;
7501 }
7502
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007503 if (ENABLE_FEATURE_SH_NOFORK) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007504 int n = find_applet_by_name(argv_expanded[0]);
7505 if (n >= 0 && APPLET_IS_NOFORK(n)) {
7506 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, squirrel, argv_expanded);
7507 if (rcode == 0) {
7508 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
7509 argv_expanded[0], argv_expanded[1]);
7510 rcode = run_nofork_applet(n, argv_expanded);
7511 }
7512 goto clean_up_and_ret;
7513 }
7514 }
7515 /* It is neither builtin nor applet. We must fork. */
7516 }
7517
7518 must_fork:
7519 /* NB: argv_expanded may already be created, and that
7520 * might include `cmd` runs! Do not rerun it! We *must*
7521 * use argv_expanded if it's non-NULL */
7522
7523 /* Going to fork a child per each pipe member */
7524 pi->alive_cmds = 0;
7525 next_infd = 0;
7526
7527 cmd_no = 0;
7528 while (cmd_no < pi->num_cmds) {
7529 struct fd_pair pipefds;
7530#if !BB_MMU
7531 volatile nommu_save_t nommu_save;
7532 nommu_save.new_env = NULL;
7533 nommu_save.old_vars = NULL;
7534 nommu_save.argv = NULL;
7535 nommu_save.argv_from_re_execing = NULL;
7536#endif
7537 command = &pi->cmds[cmd_no];
7538 cmd_no++;
7539 if (command->argv) {
7540 debug_printf_exec(": pipe member '%s' '%s'...\n",
7541 command->argv[0], command->argv[1]);
7542 } else {
7543 debug_printf_exec(": pipe member with no argv\n");
7544 }
7545
7546 /* pipes are inserted between pairs of commands */
7547 pipefds.rd = 0;
7548 pipefds.wr = 1;
7549 if (cmd_no < pi->num_cmds)
7550 xpiped_pair(pipefds);
7551
7552 command->pid = BB_MMU ? fork() : vfork();
7553 if (!command->pid) { /* child */
7554#if ENABLE_HUSH_JOB
7555 disable_restore_tty_pgrp_on_exit();
7556 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
7557
7558 /* Every child adds itself to new process group
7559 * with pgid == pid_of_first_child_in_pipe */
7560 if (G.run_list_level == 1 && G_interactive_fd) {
7561 pid_t pgrp;
7562 pgrp = pi->pgrp;
7563 if (pgrp < 0) /* true for 1st process only */
7564 pgrp = getpid();
7565 if (setpgid(0, pgrp) == 0
7566 && pi->followup != PIPE_BG
7567 && G_saved_tty_pgrp /* we have ctty */
7568 ) {
7569 /* We do it in *every* child, not just first,
7570 * to avoid races */
7571 tcsetpgrp(G_interactive_fd, pgrp);
7572 }
7573 }
7574#endif
7575 if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
7576 /* 1st cmd in backgrounded pipe
7577 * should have its stdin /dev/null'ed */
7578 close(0);
7579 if (open(bb_dev_null, O_RDONLY))
7580 xopen("/", O_RDONLY);
7581 } else {
7582 xmove_fd(next_infd, 0);
7583 }
7584 xmove_fd(pipefds.wr, 1);
7585 if (pipefds.rd > 1)
7586 close(pipefds.rd);
7587 /* Like bash, explicit redirects override pipes,
Denys Vlasenko869994c2016-08-20 15:16:00 +02007588 * and the pipe fd (fd#1) is available for dup'ing:
7589 * "cmd1 2>&1 | cmd2": fd#1 is duped to fd#2, thus stderr
7590 * of cmd1 goes into pipe.
7591 */
7592 if (setup_redirects(command, NULL)) {
7593 /* Happens when redir file can't be opened:
7594 * $ hush -c 'echo FOO >&2 | echo BAR 3>/qwe/rty; echo BAZ'
7595 * FOO
7596 * hush: can't open '/qwe/rty': No such file or directory
7597 * BAZ
7598 * (echo BAR is not executed, it hits _exit(1) below)
7599 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007600 _exit(1);
Denys Vlasenko869994c2016-08-20 15:16:00 +02007601 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007602
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007603 /* Stores to nommu_save list of env vars putenv'ed
7604 * (NOMMU, on MMU we don't need that) */
7605 /* cast away volatility... */
7606 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
7607 /* pseudo_exec() does not return */
7608 }
7609
7610 /* parent or error */
7611#if ENABLE_HUSH_FAST
7612 G.count_SIGCHLD++;
7613//bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
7614#endif
7615 enable_restore_tty_pgrp_on_exit();
7616#if !BB_MMU
7617 /* Clean up after vforked child */
7618 free(nommu_save.argv);
7619 free(nommu_save.argv_from_re_execing);
7620 unset_vars(nommu_save.new_env);
7621 add_vars(nommu_save.old_vars);
7622#endif
7623 free(argv_expanded);
7624 argv_expanded = NULL;
7625 if (command->pid < 0) { /* [v]fork failed */
7626 /* Clearly indicate, was it fork or vfork */
7627 bb_perror_msg(BB_MMU ? "vfork"+1 : "vfork");
7628 } else {
7629 pi->alive_cmds++;
7630#if ENABLE_HUSH_JOB
7631 /* Second and next children need to know pid of first one */
7632 if (pi->pgrp < 0)
7633 pi->pgrp = command->pid;
7634#endif
7635 }
7636
7637 if (cmd_no > 1)
7638 close(next_infd);
7639 if (cmd_no < pi->num_cmds)
7640 close(pipefds.wr);
7641 /* Pass read (output) pipe end to next iteration */
7642 next_infd = pipefds.rd;
7643 }
7644
7645 if (!pi->alive_cmds) {
7646 debug_leave();
7647 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
7648 return 1;
7649 }
7650
7651 debug_leave();
7652 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
7653 return -1;
7654}
7655
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007656/* NB: called by pseudo_exec, and therefore must not modify any
7657 * global data until exec/_exit (we can be a child after vfork!) */
7658static int run_list(struct pipe *pi)
7659{
7660#if ENABLE_HUSH_CASE
7661 char *case_word = NULL;
7662#endif
7663#if ENABLE_HUSH_LOOPS
7664 struct pipe *loop_top = NULL;
7665 char **for_lcur = NULL;
7666 char **for_list = NULL;
7667#endif
7668 smallint last_followup;
7669 smalluint rcode;
7670#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
7671 smalluint cond_code = 0;
7672#else
7673 enum { cond_code = 0 };
7674#endif
7675#if HAS_KEYWORDS
Denys Vlasenko9b782552010-09-08 13:33:26 +02007676 smallint rword; /* RES_foo */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007677 smallint last_rword; /* ditto */
7678#endif
7679
7680 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
7681 debug_enter();
7682
7683#if ENABLE_HUSH_LOOPS
7684 /* Check syntax for "for" */
Denys Vlasenko0d6a4ec2010-12-18 01:34:49 +01007685 {
7686 struct pipe *cpipe;
7687 for (cpipe = pi; cpipe; cpipe = cpipe->next) {
7688 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
7689 continue;
7690 /* current word is FOR or IN (BOLD in comments below) */
7691 if (cpipe->next == NULL) {
7692 syntax_error("malformed for");
7693 debug_leave();
7694 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
7695 return 1;
7696 }
7697 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
7698 if (cpipe->next->res_word == RES_DO)
7699 continue;
7700 /* next word is not "do". It must be "in" then ("FOR v in ...") */
7701 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
7702 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
7703 ) {
7704 syntax_error("malformed for");
7705 debug_leave();
7706 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
7707 return 1;
7708 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007709 }
7710 }
7711#endif
7712
7713 /* Past this point, all code paths should jump to ret: label
7714 * in order to return, no direct "return" statements please.
7715 * This helps to ensure that no memory is leaked. */
7716
7717#if ENABLE_HUSH_JOB
7718 G.run_list_level++;
7719#endif
7720
7721#if HAS_KEYWORDS
7722 rword = RES_NONE;
7723 last_rword = RES_XXXX;
7724#endif
7725 last_followup = PIPE_SEQ;
7726 rcode = G.last_exitcode;
7727
7728 /* Go through list of pipes, (maybe) executing them. */
7729 for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
7730 if (G.flag_SIGINT)
7731 break;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02007732 if (G_flag_return_in_progress == 1)
7733 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007734
7735 IF_HAS_KEYWORDS(rword = pi->res_word;)
7736 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
7737 rword, cond_code, last_rword);
7738#if ENABLE_HUSH_LOOPS
7739 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
7740 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
7741 ) {
7742 /* start of a loop: remember where loop starts */
7743 loop_top = pi;
7744 G.depth_of_loop++;
7745 }
7746#endif
7747 /* Still in the same "if...", "then..." or "do..." branch? */
7748 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
7749 if ((rcode == 0 && last_followup == PIPE_OR)
7750 || (rcode != 0 && last_followup == PIPE_AND)
7751 ) {
7752 /* It is "<true> || CMD" or "<false> && CMD"
7753 * and we should not execute CMD */
7754 debug_printf_exec("skipped cmd because of || or &&\n");
7755 last_followup = pi->followup;
Denys Vlasenko3beab832013-04-07 18:16:58 +02007756 goto dont_check_jobs_but_continue;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007757 }
7758 }
7759 last_followup = pi->followup;
7760 IF_HAS_KEYWORDS(last_rword = rword;)
7761#if ENABLE_HUSH_IF
7762 if (cond_code) {
7763 if (rword == RES_THEN) {
7764 /* if false; then ... fi has exitcode 0! */
7765 G.last_exitcode = rcode = EXIT_SUCCESS;
7766 /* "if <false> THEN cmd": skip cmd */
7767 continue;
7768 }
7769 } else {
7770 if (rword == RES_ELSE || rword == RES_ELIF) {
7771 /* "if <true> then ... ELSE/ELIF cmd":
7772 * skip cmd and all following ones */
7773 break;
7774 }
7775 }
7776#endif
7777#if ENABLE_HUSH_LOOPS
7778 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
7779 if (!for_lcur) {
7780 /* first loop through for */
7781
7782 static const char encoded_dollar_at[] ALIGN1 = {
7783 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
7784 }; /* encoded representation of "$@" */
7785 static const char *const encoded_dollar_at_argv[] = {
7786 encoded_dollar_at, NULL
7787 }; /* argv list with one element: "$@" */
7788 char **vals;
7789
7790 vals = (char**)encoded_dollar_at_argv;
7791 if (pi->next->res_word == RES_IN) {
7792 /* if no variable values after "in" we skip "for" */
7793 if (!pi->next->cmds[0].argv) {
7794 G.last_exitcode = rcode = EXIT_SUCCESS;
7795 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
7796 break;
7797 }
7798 vals = pi->next->cmds[0].argv;
7799 } /* else: "for var; do..." -> assume "$@" list */
7800 /* create list of variable values */
7801 debug_print_strings("for_list made from", vals);
7802 for_list = expand_strvec_to_strvec(vals);
7803 for_lcur = for_list;
7804 debug_print_strings("for_list", for_list);
7805 }
7806 if (!*for_lcur) {
7807 /* "for" loop is over, clean up */
7808 free(for_list);
7809 for_list = NULL;
7810 for_lcur = NULL;
7811 break;
7812 }
7813 /* Insert next value from for_lcur */
7814 /* note: *for_lcur already has quotes removed, $var expanded, etc */
7815 set_local_var(xasprintf("%s=%s", pi->cmds[0].argv[0], *for_lcur++), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
7816 continue;
7817 }
7818 if (rword == RES_IN) {
7819 continue; /* "for v IN list;..." - "in" has no cmds anyway */
7820 }
7821 if (rword == RES_DONE) {
7822 continue; /* "done" has no cmds too */
7823 }
7824#endif
7825#if ENABLE_HUSH_CASE
7826 if (rword == RES_CASE) {
7827 case_word = expand_strvec_to_string(pi->cmds->argv);
7828 continue;
7829 }
7830 if (rword == RES_MATCH) {
7831 char **argv;
7832
7833 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
7834 break;
7835 /* all prev words didn't match, does this one match? */
7836 argv = pi->cmds->argv;
7837 while (*argv) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02007838 char *pattern = expand_string_to_string(*argv, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007839 /* TODO: which FNM_xxx flags to use? */
7840 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
7841 free(pattern);
7842 if (cond_code == 0) { /* match! we will execute this branch */
7843 free(case_word); /* make future "word)" stop */
7844 case_word = NULL;
7845 break;
7846 }
7847 argv++;
7848 }
7849 continue;
7850 }
7851 if (rword == RES_CASE_BODY) { /* inside of a case branch */
7852 if (cond_code != 0)
7853 continue; /* not matched yet, skip this pipe */
7854 }
7855#endif
7856 /* Just pressing <enter> in shell should check for jobs.
7857 * OTOH, in non-interactive shell this is useless
7858 * and only leads to extra job checks */
7859 if (pi->num_cmds == 0) {
7860 if (G_interactive_fd)
7861 goto check_jobs_and_continue;
7862 continue;
7863 }
7864
7865 /* After analyzing all keywords and conditions, we decided
7866 * to execute this pipe. NB: have to do checkjobs(NULL)
7867 * after run_pipe to collect any background children,
7868 * even if list execution is to be stopped. */
7869 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
7870 {
7871 int r;
7872#if ENABLE_HUSH_LOOPS
7873 G.flag_break_continue = 0;
7874#endif
7875 rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
7876 if (r != -1) {
7877 /* We ran a builtin, function, or group.
7878 * rcode is already known
7879 * and we don't need to wait for anything. */
7880 G.last_exitcode = rcode;
7881 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02007882 check_and_run_traps();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007883#if ENABLE_HUSH_LOOPS
7884 /* Was it "break" or "continue"? */
7885 if (G.flag_break_continue) {
7886 smallint fbc = G.flag_break_continue;
7887 /* We might fall into outer *loop*,
7888 * don't want to break it too */
7889 if (loop_top) {
7890 G.depth_break_continue--;
7891 if (G.depth_break_continue == 0)
7892 G.flag_break_continue = 0;
7893 /* else: e.g. "continue 2" should *break* once, *then* continue */
7894 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
Denys Vlasenko3beab832013-04-07 18:16:58 +02007895 if (G.depth_break_continue != 0 || fbc == BC_BREAK) {
7896 checkjobs(NULL);
7897 break;
7898 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007899 /* "continue": simulate end of loop */
7900 rword = RES_DONE;
7901 continue;
7902 }
7903#endif
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02007904 if (G_flag_return_in_progress == 1) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007905 checkjobs(NULL);
7906 break;
7907 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007908 } else if (pi->followup == PIPE_BG) {
7909 /* What does bash do with attempts to background builtins? */
7910 /* even bash 3.2 doesn't do that well with nested bg:
7911 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
7912 * I'm NOT treating inner &'s as jobs */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02007913 check_and_run_traps();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007914#if ENABLE_HUSH_JOB
7915 if (G.run_list_level == 1)
7916 insert_bg_job(pi);
7917#endif
7918 /* Last command's pid goes to $! */
7919 G.last_bg_pid = pi->cmds[pi->num_cmds - 1].pid;
7920 G.last_exitcode = rcode = EXIT_SUCCESS;
7921 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
7922 } else {
7923#if ENABLE_HUSH_JOB
7924 if (G.run_list_level == 1 && G_interactive_fd) {
7925 /* Waits for completion, then fg's main shell */
7926 rcode = checkjobs_and_fg_shell(pi);
7927 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02007928 check_and_run_traps();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007929 } else
7930#endif
7931 { /* This one just waits for completion */
7932 rcode = checkjobs(pi);
7933 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02007934 check_and_run_traps();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007935 }
7936 G.last_exitcode = rcode;
7937 }
7938 }
7939
7940 /* Analyze how result affects subsequent commands */
7941#if ENABLE_HUSH_IF
7942 if (rword == RES_IF || rword == RES_ELIF)
7943 cond_code = rcode;
7944#endif
Denys Vlasenko3beab832013-04-07 18:16:58 +02007945 check_jobs_and_continue:
7946 checkjobs(NULL);
7947 dont_check_jobs_but_continue: ;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007948#if ENABLE_HUSH_LOOPS
7949 /* Beware of "while false; true; do ..."! */
Denys Vlasenko00ae9892011-05-31 17:35:45 +02007950 if (pi->next
7951 && (pi->next->res_word == RES_DO || pi->next->res_word == RES_DONE)
Denys Vlasenko56a3b822011-06-01 12:47:07 +02007952 /* check for RES_DONE is needed for "while ...; do \n done" case */
Denys Vlasenko00ae9892011-05-31 17:35:45 +02007953 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007954 if (rword == RES_WHILE) {
7955 if (rcode) {
7956 /* "while false; do...done" - exitcode 0 */
7957 G.last_exitcode = rcode = EXIT_SUCCESS;
7958 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
Denys Vlasenko3beab832013-04-07 18:16:58 +02007959 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007960 }
7961 }
7962 if (rword == RES_UNTIL) {
7963 if (!rcode) {
7964 debug_printf_exec(": until expr is true: breaking\n");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007965 break;
7966 }
7967 }
7968 }
7969#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007970 } /* for (pi) */
7971
7972#if ENABLE_HUSH_JOB
7973 G.run_list_level--;
7974#endif
7975#if ENABLE_HUSH_LOOPS
7976 if (loop_top)
7977 G.depth_of_loop--;
7978 free(for_list);
7979#endif
7980#if ENABLE_HUSH_CASE
7981 free(case_word);
7982#endif
7983 debug_leave();
7984 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
7985 return rcode;
7986}
7987
7988/* Select which version we will use */
7989static int run_and_free_list(struct pipe *pi)
7990{
7991 int rcode = 0;
7992 debug_printf_exec("run_and_free_list entered\n");
Dan Fandrich85c62472010-11-20 13:05:17 -08007993 if (!G.o_opt[OPT_O_NOEXEC]) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007994 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
7995 rcode = run_list(pi);
7996 }
7997 /* free_pipe_list has the side effect of clearing memory.
7998 * In the long run that function can be merged with run_list,
7999 * but doing that now would hobble the debugging effort. */
8000 free_pipe_list(pi);
8001 debug_printf_exec("run_and_free_list return %d\n", rcode);
8002 return rcode;
8003}
8004
8005
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008006static void install_sighandlers(unsigned mask)
Eric Andersen52a97ca2001-06-22 06:49:26 +00008007{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008008 sighandler_t old_handler;
8009 unsigned sig = 0;
8010 while ((mask >>= 1) != 0) {
8011 sig++;
8012 if (!(mask & 1))
8013 continue;
Denys Vlasenko0806e402011-05-12 23:06:20 +02008014 old_handler = install_sighandler(sig, pick_sighandler(sig));
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008015 /* POSIX allows shell to re-enable SIGCHLD
8016 * even if it was SIG_IGN on entry.
8017 * Therefore we skip IGN check for it:
8018 */
8019 if (sig == SIGCHLD)
8020 continue;
8021 if (old_handler == SIG_IGN) {
8022 /* oops... restore back to IGN, and record this fact */
Denys Vlasenko0806e402011-05-12 23:06:20 +02008023 install_sighandler(sig, old_handler);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008024 if (!G.traps)
8025 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
8026 free(G.traps[sig]);
8027 G.traps[sig] = xzalloc(1); /* == xstrdup(""); */
8028 }
8029 }
8030}
8031
8032/* Called a few times only (or even once if "sh -c") */
8033static void install_special_sighandlers(void)
8034{
Denis Vlasenkof9375282009-04-05 19:13:39 +00008035 unsigned mask;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008036
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008037 /* Which signals are shell-special? */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008038 mask = (1 << SIGQUIT) | (1 << SIGCHLD);
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008039 if (G_interactive_fd) {
8040 mask |= SPECIAL_INTERACTIVE_SIGS;
8041 if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008042 mask |= SPECIAL_JOBSTOP_SIGS;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008043 }
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008044 /* Careful, do not re-install handlers we already installed */
8045 if (G.special_sig_mask != mask) {
8046 unsigned diff = mask & ~G.special_sig_mask;
8047 G.special_sig_mask = mask;
8048 install_sighandlers(diff);
8049 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008050}
8051
8052#if ENABLE_HUSH_JOB
8053/* helper */
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008054/* Set handlers to restore tty pgrp and exit */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008055static void install_fatal_sighandlers(void)
Denis Vlasenkof9375282009-04-05 19:13:39 +00008056{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008057 unsigned mask;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008058
8059 /* We will restore tty pgrp on these signals */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008060 mask = 0
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008061 + (1 << SIGILL ) * HUSH_DEBUG
8062 + (1 << SIGFPE ) * HUSH_DEBUG
8063 + (1 << SIGBUS ) * HUSH_DEBUG
8064 + (1 << SIGSEGV) * HUSH_DEBUG
8065 + (1 << SIGTRAP) * HUSH_DEBUG
8066 + (1 << SIGABRT)
8067 /* bash 3.2 seems to handle these just like 'fatal' ones */
8068 + (1 << SIGPIPE)
8069 + (1 << SIGALRM)
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008070 /* if we are interactive, SIGHUP, SIGTERM and SIGINT are special sigs.
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008071 * if we aren't interactive... but in this case
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008072 * we never want to restore pgrp on exit, and this fn is not called
8073 */
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008074 /*+ (1 << SIGHUP )*/
8075 /*+ (1 << SIGTERM)*/
8076 /*+ (1 << SIGINT )*/
8077 ;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008078 G_fatal_sig_mask = mask;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008079
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008080 install_sighandlers(mask);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008081}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00008082#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00008083
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008084static int set_mode(int state, char mode, const char *o_opt)
Denis Vlasenkod5762932009-03-31 11:22:57 +00008085{
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008086 int idx;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008087 switch (mode) {
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008088 case 'n':
Dan Fandrich85c62472010-11-20 13:05:17 -08008089 G.o_opt[OPT_O_NOEXEC] = state;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008090 break;
8091 case 'x':
8092 IF_HUSH_MODE_X(G_x_mode = state;)
8093 break;
8094 case 'o':
8095 if (!o_opt) {
8096 /* "set -+o" without parameter.
8097 * in bash, set -o produces this output:
8098 * pipefail off
8099 * and set +o:
8100 * set +o pipefail
8101 * We always use the second form.
8102 */
8103 const char *p = o_opt_strings;
8104 idx = 0;
8105 while (*p) {
8106 printf("set %co %s\n", (G.o_opt[idx] ? '-' : '+'), p);
8107 idx++;
8108 p += strlen(p) + 1;
8109 }
8110 break;
8111 }
8112 idx = index_in_strings(o_opt_strings, o_opt);
8113 if (idx >= 0) {
8114 G.o_opt[idx] = state;
8115 break;
8116 }
8117 default:
8118 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008119 }
8120 return EXIT_SUCCESS;
8121}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008122
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00008123int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00008124int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00008125{
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008126 enum {
8127 OPT_login = (1 << 0),
8128 };
8129 unsigned flags;
Eric Andersen25f27032001-04-26 23:22:31 +00008130 int opt;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008131 unsigned builtin_argc;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008132 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008133 struct variable *cur_var;
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008134 struct variable *shell_ver;
Eric Andersenbc604a22001-05-16 05:24:03 +00008135
Denis Vlasenko574f2f42008-02-27 18:41:59 +00008136 INIT_G();
Denys Vlasenko10c01312011-05-11 11:49:21 +02008137 if (EXIT_SUCCESS != 0) /* if EXIT_SUCCESS == 0, it is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008138 G.last_exitcode = EXIT_SUCCESS;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02008139
Denys Vlasenko10c01312011-05-11 11:49:21 +02008140#if ENABLE_HUSH_FAST
8141 G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
8142#endif
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008143#if !BB_MMU
8144 G.argv0_for_re_execing = argv[0];
8145#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008146 /* Deal with HUSH_VERSION */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008147 shell_ver = xzalloc(sizeof(*shell_ver));
8148 shell_ver->flg_export = 1;
8149 shell_ver->flg_read_only = 1;
Denys Vlasenko4f870492010-09-10 11:06:01 +02008150 /* Code which handles ${var<op>...} needs writable values for all variables,
Denys Vlasenko36f774a2010-09-05 14:45:38 +02008151 * therefore we xstrdup: */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008152 shell_ver->varstr = xstrdup(hush_version_str);
Denys Vlasenko605067b2010-09-06 12:10:51 +02008153 /* Create shell local variables from the values
8154 * currently living in the environment */
Denis Vlasenkof886fd22008-10-13 12:36:05 +00008155 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008156 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008157 G.top_var = shell_ver;
Denis Vlasenko87a86552008-07-29 19:43:10 +00008158 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008159 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008160 if (e) while (*e) {
8161 char *value = strchr(*e, '=');
8162 if (value) { /* paranoia */
8163 cur_var->next = xzalloc(sizeof(*cur_var));
8164 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00008165 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008166 cur_var->max_len = strlen(*e);
8167 cur_var->flg_export = 1;
8168 }
8169 e++;
8170 }
Denys Vlasenko605067b2010-09-06 12:10:51 +02008171 /* (Re)insert HUSH_VERSION into env (AFTER we scanned the env!) */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008172 debug_printf_env("putenv '%s'\n", shell_ver->varstr);
8173 putenv(shell_ver->varstr);
Denys Vlasenko6db47842009-09-05 20:15:17 +02008174
8175 /* Export PWD */
8176 set_pwd_var(/*exp:*/ 1);
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008177
8178#if ENABLE_HUSH_BASH_COMPAT
8179 /* Set (but not export) HOSTNAME unless already set */
8180 if (!get_local_var_value("HOSTNAME")) {
8181 struct utsname uts;
8182 uname(&uts);
8183 set_local_var_from_halves("HOSTNAME", uts.nodename);
8184 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02008185 /* bash also exports SHLVL and _,
8186 * and sets (but doesn't export) the following variables:
8187 * BASH=/bin/bash
8188 * BASH_VERSINFO=([0]="3" [1]="2" [2]="0" [3]="1" [4]="release" [5]="i386-pc-linux-gnu")
8189 * BASH_VERSION='3.2.0(1)-release'
8190 * HOSTTYPE=i386
8191 * MACHTYPE=i386-pc-linux-gnu
8192 * OSTYPE=linux-gnu
Denys Vlasenkodea47882009-10-09 15:40:49 +02008193 * PPID=<NNNNN> - we also do it elsewhere
Denys Vlasenko6db47842009-09-05 20:15:17 +02008194 * EUID=<NNNNN>
8195 * UID=<NNNNN>
8196 * GROUPS=()
8197 * LINES=<NNN>
8198 * COLUMNS=<NNN>
8199 * BASH_ARGC=()
8200 * BASH_ARGV=()
8201 * BASH_LINENO=()
8202 * BASH_SOURCE=()
8203 * DIRSTACK=()
8204 * PIPESTATUS=([0]="0")
8205 * HISTFILE=/<xxx>/.bash_history
8206 * HISTFILESIZE=500
8207 * HISTSIZE=500
8208 * MAILCHECK=60
8209 * PATH=/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:.
8210 * SHELL=/bin/bash
8211 * SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor
8212 * TERM=dumb
8213 * OPTERR=1
8214 * OPTIND=1
8215 * IFS=$' \t\n'
8216 * PS1='\s-\v\$ '
8217 * PS2='> '
8218 * PS4='+ '
8219 */
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008220#endif
Denys Vlasenko6db47842009-09-05 20:15:17 +02008221
Denis Vlasenko38f63192007-01-22 09:03:07 +00008222#if ENABLE_FEATURE_EDITING
Denys Vlasenkoe45af7a2011-09-04 16:15:24 +02008223 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00008224#endif
Denys Vlasenko99862cb2010-09-12 17:34:13 +02008225
Eric Andersen94ac2442001-05-22 19:05:18 +00008226 /* Initialize some more globals to non-zero values */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00008227 cmdedit_update_prompt();
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00008228
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02008229 die_func = restore_ttypgrp_and__exit;
Denis Vlasenkoed782372009-04-10 00:45:02 +00008230
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008231 /* Shell is non-interactive at first. We need to call
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008232 * install_special_sighandlers() if we are going to execute "sh <script>",
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008233 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008234 * If we later decide that we are interactive, we run install_special_sighandlers()
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008235 * in order to intercept (more) signals.
8236 */
8237
8238 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00008239 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008240 flags = (argv[0] && argv[0][0] == '-') ? OPT_login : 0;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008241 builtin_argc = 0;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008242 while (1) {
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008243 opt = getopt(argc, argv, "+c:xinsl"
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008244#if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00008245 "<:$:R:V:"
8246# if ENABLE_HUSH_FUNCTIONS
8247 "F:"
8248# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008249#endif
8250 );
8251 if (opt <= 0)
8252 break;
Eric Andersen25f27032001-04-26 23:22:31 +00008253 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008254 case 'c':
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008255 /* Possibilities:
8256 * sh ... -c 'script'
8257 * sh ... -c 'script' ARG0 [ARG1...]
8258 * On NOMMU, if builtin_argc != 0,
Denys Vlasenko17323a62010-01-28 01:57:05 +01008259 * sh ... -c 'builtin' BARGV... "" ARG0 [ARG1...]
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008260 * "" needs to be replaced with NULL
8261 * and BARGV vector fed to builtin function.
Denys Vlasenko17323a62010-01-28 01:57:05 +01008262 * Note: the form without ARG0 never happens:
8263 * sh ... -c 'builtin' BARGV... ""
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008264 */
Denys Vlasenkodea47882009-10-09 15:40:49 +02008265 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008266 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02008267 G.root_ppid = getppid();
8268 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008269 G.global_argv = argv + optind;
8270 G.global_argc = argc - optind;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008271 if (builtin_argc) {
8272 /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */
8273 const struct built_in_command *x;
8274
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008275 install_special_sighandlers();
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008276 x = find_builtin(optarg);
8277 if (x) { /* paranoia */
8278 G.global_argc -= builtin_argc; /* skip [BARGV...] "" */
8279 G.global_argv += builtin_argc;
8280 G.global_argv[-1] = NULL; /* replace "" */
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01008281 fflush_all();
Denys Vlasenko17323a62010-01-28 01:57:05 +01008282 G.last_exitcode = x->b_function(argv + optind - 1);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008283 }
8284 goto final_return;
8285 }
8286 if (!G.global_argv[0]) {
8287 /* -c 'script' (no params): prevent empty $0 */
8288 G.global_argv--; /* points to argv[i] of 'script' */
8289 G.global_argv[0] = argv[0];
Denys Vlasenko5ae8f1c2010-05-22 06:32:11 +02008290 G.global_argc++;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008291 } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008292 install_special_sighandlers();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008293 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008294 goto final_return;
8295 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00008296 /* Well, we cannot just declare interactiveness,
8297 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008298 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008299 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00008300 case 's':
8301 /* "-s" means "read from stdin", but this is how we always
8302 * operate, so simply do nothing here. */
8303 break;
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008304 case 'l':
8305 flags |= OPT_login;
8306 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008307#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00008308 case '<': /* "big heredoc" support */
Denys Vlasenko729ecb82010-06-07 14:14:26 +02008309 full_write1_str(optarg);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00008310 _exit(0);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008311 case '$': {
8312 unsigned long long empty_trap_mask;
8313
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008314 G.root_pid = bb_strtou(optarg, &optarg, 16);
8315 optarg++;
Denys Vlasenkodea47882009-10-09 15:40:49 +02008316 G.root_ppid = bb_strtou(optarg, &optarg, 16);
8317 optarg++;
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008318 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
8319 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008320 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008321 optarg++;
8322 builtin_argc = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008323 optarg++;
8324 empty_trap_mask = bb_strtoull(optarg, &optarg, 16);
8325 if (empty_trap_mask != 0) {
8326 int sig;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008327 install_special_sighandlers();
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008328 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
8329 for (sig = 1; sig < NSIG; sig++) {
8330 if (empty_trap_mask & (1LL << sig)) {
8331 G.traps[sig] = xzalloc(1); /* == xstrdup(""); */
Denys Vlasenko0806e402011-05-12 23:06:20 +02008332 install_sighandler(sig, SIG_IGN);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008333 }
8334 }
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008335 }
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008336# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008337 optarg++;
8338 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008339# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008340 break;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008341 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008342 case 'R':
8343 case 'V':
Denys Vlasenko295fef82009-06-03 12:47:26 +02008344 set_local_var(xstrdup(optarg), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ opt == 'R');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008345 break;
Denis Vlasenkobc569742009-04-12 20:35:19 +00008346# if ENABLE_HUSH_FUNCTIONS
8347 case 'F': {
8348 struct function *funcp = new_function(optarg);
8349 /* funcp->name is already set to optarg */
8350 /* funcp->body is set to NULL. It's a special case. */
8351 funcp->body_as_string = argv[optind];
8352 optind++;
8353 break;
8354 }
8355# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008356#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008357 case 'n':
8358 case 'x':
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008359 if (set_mode(1, opt, NULL) == 0) /* no error */
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008360 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008361 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008362#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008363 fprintf(stderr, "Usage: sh [FILE]...\n"
8364 " or: sh -c command [args]...\n\n");
8365 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008366#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008367 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008368#endif
Eric Andersen25f27032001-04-26 23:22:31 +00008369 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008370 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008371
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008372 /* Skip options. Try "hush -l": $1 should not be "-l"! */
8373 G.global_argc = argc - (optind - 1);
8374 G.global_argv = argv + (optind - 1);
8375 G.global_argv[0] = argv[0];
8376
Denys Vlasenkodea47882009-10-09 15:40:49 +02008377 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008378 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02008379 G.root_ppid = getppid();
8380 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008381
8382 /* If we are login shell... */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008383 if (flags & OPT_login) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008384 FILE *input;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008385 debug_printf("sourcing /etc/profile\n");
8386 input = fopen_for_read("/etc/profile");
8387 if (input != NULL) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008388 remember_FILE(input);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008389 install_special_sighandlers();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008390 parse_and_run_file(input);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008391 fclose_and_forget(input);
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008392 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008393 /* bash: after sourcing /etc/profile,
8394 * tries to source (in the given order):
8395 * ~/.bash_profile, ~/.bash_login, ~/.profile,
Denys Vlasenko28a105d2009-06-01 11:26:30 +02008396 * stopping on first found. --noprofile turns this off.
Denis Vlasenkof9375282009-04-05 19:13:39 +00008397 * bash also sources ~/.bash_logout on exit.
8398 * If called as sh, skips .bash_XXX files.
8399 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008400 }
8401
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008402 if (G.global_argv[1]) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00008403 FILE *input;
8404 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008405 * "bash <script>" (which is never interactive (unless -i?))
8406 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00008407 * If called as sh, does the same but with $ENV.
8408 */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008409 G.global_argc--;
8410 G.global_argv++;
8411 debug_printf("running script '%s'\n", G.global_argv[0]);
8412 input = xfopen_for_read(G.global_argv[0]);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008413 remember_FILE(input);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008414 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00008415 parse_and_run_file(input);
8416#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008417 fclose_and_forget(input);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008418#endif
8419 goto final_return;
8420 }
8421
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008422 /* Up to here, shell was non-interactive. Now it may become one.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008423 * NB: don't forget to (re)run install_special_sighandlers() as needed.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008424 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00008425
Denys Vlasenko28a105d2009-06-01 11:26:30 +02008426 /* A shell is interactive if the '-i' flag was given,
8427 * or if all of the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00008428 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00008429 * no arguments remaining or the -s flag given
8430 * standard input is a terminal
8431 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00008432 * Refer to Posix.2, the description of the 'sh' utility.
8433 */
8434#if ENABLE_HUSH_JOB
8435 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Mike Frysinger38478a62009-05-20 04:48:06 -04008436 G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
8437 debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp);
8438 if (G_saved_tty_pgrp < 0)
8439 G_saved_tty_pgrp = 0;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008440
8441 /* try to dup stdin to high fd#, >= 255 */
8442 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
8443 if (G_interactive_fd < 0) {
8444 /* try to dup to any fd */
8445 G_interactive_fd = dup(STDIN_FILENO);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008446 if (G_interactive_fd < 0) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008447 /* give up */
8448 G_interactive_fd = 0;
Mike Frysinger38478a62009-05-20 04:48:06 -04008449 G_saved_tty_pgrp = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00008450 }
8451 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008452// TODO: track & disallow any attempts of user
8453// to (inadvertently) close/redirect G_interactive_fd
Eric Andersen25f27032001-04-26 23:22:31 +00008454 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008455 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008456 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00008457 close_on_exec_on(G_interactive_fd);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008458
Mike Frysinger38478a62009-05-20 04:48:06 -04008459 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008460 /* If we were run as 'hush &', sleep until we are
8461 * in the foreground (tty pgrp == our pgrp).
8462 * If we get started under a job aware app (like bash),
8463 * make sure we are now in charge so we don't fight over
8464 * who gets the foreground */
8465 while (1) {
8466 pid_t shell_pgrp = getpgrp();
Mike Frysinger38478a62009-05-20 04:48:06 -04008467 G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
8468 if (G_saved_tty_pgrp == shell_pgrp)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008469 break;
8470 /* send TTIN to ourself (should stop us) */
8471 kill(- shell_pgrp, SIGTTIN);
8472 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008473 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008474
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008475 /* Install more signal handlers */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008476 install_special_sighandlers();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008477
Mike Frysinger38478a62009-05-20 04:48:06 -04008478 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008479 /* Set other signals to restore saved_tty_pgrp */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008480 install_fatal_sighandlers();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008481 /* Put ourselves in our own process group
8482 * (bash, too, does this only if ctty is available) */
8483 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
8484 /* Grab control of the terminal */
8485 tcsetpgrp(G_interactive_fd, getpid());
8486 }
Denys Vlasenko550bf5b2015-10-09 16:42:57 +02008487 enable_restore_tty_pgrp_on_exit();
Denys Vlasenko4840ae82011-09-04 15:28:03 +02008488
8489# if ENABLE_HUSH_SAVEHISTORY && MAX_HISTORY > 0
8490 {
8491 const char *hp = get_local_var_value("HISTFILE");
8492 if (!hp) {
8493 hp = get_local_var_value("HOME");
8494 if (hp)
8495 hp = concat_path_file(hp, ".hush_history");
8496 } else {
8497 hp = xstrdup(hp);
8498 }
8499 if (hp) {
8500 G.line_input_state->hist_file = hp;
Denys Vlasenko4840ae82011-09-04 15:28:03 +02008501 //set_local_var(xasprintf("HISTFILE=%s", ...));
8502 }
8503# if ENABLE_FEATURE_SH_HISTFILESIZE
8504 hp = get_local_var_value("HISTFILESIZE");
8505 G.line_input_state->max_history = size_from_HISTFILESIZE(hp);
8506# endif
8507 }
8508# endif
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008509 } else {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008510 install_special_sighandlers();
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008511 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008512#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00008513 /* No job control compiled in, only prompt/line editing */
8514 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008515 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
8516 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008517 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008518 G_interactive_fd = dup(STDIN_FILENO);
8519 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008520 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008521 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008522 }
8523 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008524 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00008525 close_on_exec_on(G_interactive_fd);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008526 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008527 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00008528#else
8529 /* We have interactiveness code disabled */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008530 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00008531#endif
8532 /* bash:
8533 * if interactive but not a login shell, sources ~/.bashrc
8534 * (--norc turns this off, --rcfile <file> overrides)
8535 */
8536
8537 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Denys Vlasenkoc34c0332009-09-29 12:25:30 +02008538 /* note: ash and hush share this string */
8539 printf("\n\n%s %s\n"
8540 IF_HUSH_HELP("Enter 'help' for a list of built-in commands.\n")
8541 "\n",
8542 bb_banner,
8543 "hush - the humble shell"
8544 );
Mike Frysingerb2705e12009-03-23 08:44:02 +00008545 }
8546
Denis Vlasenkof9375282009-04-05 19:13:39 +00008547 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00008548
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008549 final_return:
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008550 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00008551}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00008552
8553
Denys Vlasenko1cc4b132009-08-21 00:05:51 +02008554#if ENABLE_MSH
8555int msh_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
8556int msh_main(int argc, char **argv)
8557{
Denys Vlasenkoed6ff5e2016-09-30 12:28:37 +02008558 bb_error_msg("msh is deprecated, please use hush instead");
Denys Vlasenko1cc4b132009-08-21 00:05:51 +02008559 return hush_main(argc, argv);
8560}
8561#endif
8562
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008563
8564/*
8565 * Built-ins
8566 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008567static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008568{
8569 return 0;
8570}
8571
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02008572static int run_applet_main(char **argv, int (*applet_main_func)(int argc, char **argv))
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008573{
8574 int argc = 0;
8575 while (*argv) {
8576 argc++;
8577 argv++;
8578 }
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02008579 return applet_main_func(argc, argv - argc);
Mike Frysingerccb19592009-10-15 03:31:15 -04008580}
8581
8582static int FAST_FUNC builtin_test(char **argv)
8583{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008584 return run_applet_main(argv, test_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008585}
8586
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008587static int FAST_FUNC builtin_echo(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008588{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008589 return run_applet_main(argv, echo_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008590}
8591
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04008592#if ENABLE_PRINTF
8593static int FAST_FUNC builtin_printf(char **argv)
8594{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008595 return run_applet_main(argv, printf_main);
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04008596}
8597#endif
8598
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008599static char **skip_dash_dash(char **argv)
8600{
8601 argv++;
8602 if (argv[0] && argv[0][0] == '-' && argv[0][1] == '-' && argv[0][2] == '\0')
8603 argv++;
8604 return argv;
8605}
8606
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008607static int FAST_FUNC builtin_eval(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008608{
8609 int rcode = EXIT_SUCCESS;
8610
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008611 argv = skip_dash_dash(argv);
8612 if (*argv) {
Denis Vlasenkob0a64782009-04-06 11:33:07 +00008613 char *str = expand_strvec_to_string(argv);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008614 /* bash:
8615 * eval "echo Hi; done" ("done" is syntax error):
8616 * "echo Hi" will not execute too.
8617 */
8618 parse_and_run_string(str);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008619 free(str);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008620 rcode = G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008621 }
8622 return rcode;
8623}
8624
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008625static int FAST_FUNC builtin_cd(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008626{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008627 const char *newdir;
8628
8629 argv = skip_dash_dash(argv);
8630 newdir = argv[0];
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008631 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008632 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00008633 * bash says "bash: cd: HOME not set" and does nothing
8634 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008635 */
Denys Vlasenko90a99042009-09-06 02:36:23 +02008636 const char *home = get_local_var_value("HOME");
8637 newdir = home ? home : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00008638 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008639 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008640 /* Mimic bash message exactly */
8641 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008642 return EXIT_FAILURE;
8643 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02008644 /* Read current dir (get_cwd(1) is inside) and set PWD.
8645 * Note: do not enforce exporting. If PWD was unset or unexported,
8646 * set it again, but do not export. bash does the same.
8647 */
8648 set_pwd_var(/*exp:*/ 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008649 return EXIT_SUCCESS;
8650}
8651
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008652static int FAST_FUNC builtin_exec(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008653{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008654 argv = skip_dash_dash(argv);
8655 if (argv[0] == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008656 return EXIT_SUCCESS; /* bash does this */
Denys Vlasenkof37eb392009-10-18 11:46:35 +02008657
Denys Vlasenkof37eb392009-10-18 11:46:35 +02008658 /* Careful: we can end up here after [v]fork. Do not restore
8659 * tty pgrp then, only top-level shell process does that */
8660 if (G_saved_tty_pgrp && getpid() == G.root_pid)
8661 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
8662
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02008663 /* TODO: if exec fails, bash does NOT exit! We do.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008664 * We'll need to undo trap cleanup (it's inside execvp_or_die)
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02008665 * and tcsetpgrp, and this is inherently racy.
8666 */
8667 execvp_or_die(argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008668}
8669
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008670static int FAST_FUNC builtin_exit(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008671{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00008672 debug_printf_exec("%s()\n", __func__);
Denis Vlasenko40e84372009-04-18 11:23:38 +00008673
8674 /* interactive bash:
8675 * # trap "echo EEE" EXIT
8676 * # exit
8677 * exit
8678 * There are stopped jobs.
8679 * (if there are _stopped_ jobs, running ones don't count)
8680 * # exit
8681 * exit
Denys Vlasenko6830ade2013-01-15 13:58:01 +01008682 * EEE (then bash exits)
Denis Vlasenko40e84372009-04-18 11:23:38 +00008683 *
Denys Vlasenkoa110c902010-09-12 15:38:04 +02008684 * TODO: we can use G.exiting = -1 as indicator "last cmd was exit"
Denis Vlasenko40e84372009-04-18 11:23:38 +00008685 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00008686
8687 /* note: EXIT trap is run by hush_exit */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008688 argv = skip_dash_dash(argv);
8689 if (argv[0] == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008690 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008691 /* mimic bash: exit 123abc == exit 255 + error msg */
8692 xfunc_error_retval = 255;
8693 /* bash: exit -2 == exit 254, no error msg */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008694 hush_exit(xatoi(argv[0]) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008695}
8696
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008697static void print_escaped(const char *s)
8698{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008699 if (*s == '\'')
8700 goto squote;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008701 do {
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008702 const char *p = strchrnul(s, '\'');
8703 /* print 'xxxx', possibly just '' */
8704 printf("'%.*s'", (int)(p - s), s);
8705 if (*p == '\0')
8706 break;
8707 s = p;
8708 squote:
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008709 /* s points to '; print "'''...'''" */
8710 putchar('"');
8711 do putchar('\''); while (*++s == '\'');
8712 putchar('"');
8713 } while (*s);
8714}
8715
Denys Vlasenko295fef82009-06-03 12:47:26 +02008716#if !ENABLE_HUSH_LOCAL
8717#define helper_export_local(argv, exp, lvl) \
8718 helper_export_local(argv, exp)
8719#endif
8720static void helper_export_local(char **argv, int exp, int lvl)
8721{
8722 do {
8723 char *name = *argv;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02008724 char *name_end = strchrnul(name, '=');
Denys Vlasenko295fef82009-06-03 12:47:26 +02008725
8726 /* So far we do not check that name is valid (TODO?) */
8727
Denys Vlasenko27c56f12010-09-07 09:56:34 +02008728 if (*name_end == '\0') {
8729 struct variable *var, **vpp;
Denys Vlasenko295fef82009-06-03 12:47:26 +02008730
Denys Vlasenko27c56f12010-09-07 09:56:34 +02008731 vpp = get_ptr_to_local_var(name, name_end - name);
8732 var = vpp ? *vpp : NULL;
8733
Denys Vlasenko295fef82009-06-03 12:47:26 +02008734 if (exp == -1) { /* unexporting? */
8735 /* export -n NAME (without =VALUE) */
8736 if (var) {
8737 var->flg_export = 0;
8738 debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
8739 unsetenv(name);
8740 } /* else: export -n NOT_EXISTING_VAR: no-op */
8741 continue;
8742 }
8743 if (exp == 1) { /* exporting? */
8744 /* export NAME (without =VALUE) */
8745 if (var) {
8746 var->flg_export = 1;
8747 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
8748 putenv(var->varstr);
8749 continue;
8750 }
8751 }
Denys Vlasenko61508d92016-10-02 21:12:02 +02008752#if ENABLE_HUSH_LOCAL
8753 if (exp == 0 /* local? */
8754 && var && var->func_nest_level == lvl
8755 ) {
8756 /* "local x=abc; ...; local x" - ignore second local decl */
Denys Vlasenko80729a42016-10-02 22:33:15 +02008757 continue;
Denys Vlasenko61508d92016-10-02 21:12:02 +02008758 }
8759#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02008760 /* Exporting non-existing variable.
8761 * bash does not put it in environment,
8762 * but remembers that it is exported,
8763 * and does put it in env when it is set later.
8764 * We just set it to "" and export. */
8765 /* Or, it's "local NAME" (without =VALUE).
8766 * bash sets the value to "". */
8767 name = xasprintf("%s=", name);
8768 } else {
8769 /* (Un)exporting/making local NAME=VALUE */
8770 name = xstrdup(name);
8771 }
8772 set_local_var(name, /*exp:*/ exp, /*lvl:*/ lvl, /*ro:*/ 0);
8773 } while (*++argv);
8774}
8775
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008776static int FAST_FUNC builtin_export(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008777{
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00008778 unsigned opt_unexport;
8779
Denys Vlasenkodf5131c2009-06-07 16:04:17 +02008780#if ENABLE_HUSH_EXPORT_N
8781 /* "!": do not abort on errors */
8782 opt_unexport = getopt32(argv, "!n");
8783 if (opt_unexport == (uint32_t)-1)
8784 return EXIT_FAILURE;
8785 argv += optind;
8786#else
8787 opt_unexport = 0;
8788 argv++;
8789#endif
8790
8791 if (argv[0] == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008792 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00008793 if (e) {
8794 while (*e) {
8795#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008796 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00008797#else
8798 /* ash emits: export VAR='VAL'
8799 * bash: declare -x VAR="VAL"
8800 * we follow ash example */
8801 const char *s = *e++;
8802 const char *p = strchr(s, '=');
8803
8804 if (!p) /* wtf? take next variable */
8805 continue;
8806 /* export var= */
8807 printf("export %.*s", (int)(p - s) + 1, s);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008808 print_escaped(p + 1);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00008809 putchar('\n');
8810#endif
8811 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01008812 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00008813 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008814 return EXIT_SUCCESS;
8815 }
8816
Denys Vlasenko295fef82009-06-03 12:47:26 +02008817 helper_export_local(argv, (opt_unexport ? -1 : 1), 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008818
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008819 return EXIT_SUCCESS;
8820}
8821
Denys Vlasenko295fef82009-06-03 12:47:26 +02008822#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008823static int FAST_FUNC builtin_local(char **argv)
Denys Vlasenko295fef82009-06-03 12:47:26 +02008824{
8825 if (G.func_nest_level == 0) {
8826 bb_error_msg("%s: not in a function", argv[0]);
8827 return EXIT_FAILURE; /* bash compat */
8828 }
8829 helper_export_local(argv, 0, G.func_nest_level);
8830 return EXIT_SUCCESS;
8831}
8832#endif
8833
Denys Vlasenko61508d92016-10-02 21:12:02 +02008834/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
8835static int FAST_FUNC builtin_unset(char **argv)
8836{
8837 int ret;
8838 unsigned opts;
8839
8840 /* "!": do not abort on errors */
8841 /* "+": stop at 1st non-option */
8842 opts = getopt32(argv, "!+vf");
8843 if (opts == (unsigned)-1)
8844 return EXIT_FAILURE;
8845 if (opts == 3) {
8846 bb_error_msg("unset: -v and -f are exclusive");
8847 return EXIT_FAILURE;
8848 }
8849 argv += optind;
8850
8851 ret = EXIT_SUCCESS;
8852 while (*argv) {
8853 if (!(opts & 2)) { /* not -f */
8854 if (unset_local_var(*argv)) {
8855 /* unset <nonexistent_var> doesn't fail.
8856 * Error is when one tries to unset RO var.
8857 * Message was printed by unset_local_var. */
8858 ret = EXIT_FAILURE;
8859 }
8860 }
8861#if ENABLE_HUSH_FUNCTIONS
8862 else {
8863 unset_func(*argv);
8864 }
8865#endif
8866 argv++;
8867 }
8868 return ret;
8869}
8870
8871/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
8872 * built-in 'set' handler
8873 * SUSv3 says:
8874 * set [-abCefhmnuvx] [-o option] [argument...]
8875 * set [+abCefhmnuvx] [+o option] [argument...]
8876 * set -- [argument...]
8877 * set -o
8878 * set +o
8879 * Implementations shall support the options in both their hyphen and
8880 * plus-sign forms. These options can also be specified as options to sh.
8881 * Examples:
8882 * Write out all variables and their values: set
8883 * Set $1, $2, and $3 and set "$#" to 3: set c a b
8884 * Turn on the -x and -v options: set -xv
8885 * Unset all positional parameters: set --
8886 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
8887 * Set the positional parameters to the expansion of x, even if x expands
8888 * with a leading '-' or '+': set -- $x
8889 *
8890 * So far, we only support "set -- [argument...]" and some of the short names.
8891 */
8892static int FAST_FUNC builtin_set(char **argv)
8893{
8894 int n;
8895 char **pp, **g_argv;
8896 char *arg = *++argv;
8897
8898 if (arg == NULL) {
8899 struct variable *e;
8900 for (e = G.top_var; e; e = e->next)
8901 puts(e->varstr);
8902 return EXIT_SUCCESS;
8903 }
8904
8905 do {
8906 if (strcmp(arg, "--") == 0) {
8907 ++argv;
8908 goto set_argv;
8909 }
8910 if (arg[0] != '+' && arg[0] != '-')
8911 break;
8912 for (n = 1; arg[n]; ++n) {
8913 if (set_mode((arg[0] == '-'), arg[n], argv[1]))
8914 goto error;
8915 if (arg[n] == 'o' && argv[1])
8916 argv++;
8917 }
8918 } while ((arg = *++argv) != NULL);
8919 /* Now argv[0] is 1st argument */
8920
8921 if (arg == NULL)
8922 return EXIT_SUCCESS;
8923 set_argv:
8924
8925 /* NB: G.global_argv[0] ($0) is never freed/changed */
8926 g_argv = G.global_argv;
8927 if (G.global_args_malloced) {
8928 pp = g_argv;
8929 while (*++pp)
8930 free(*pp);
8931 g_argv[1] = NULL;
8932 } else {
8933 G.global_args_malloced = 1;
8934 pp = xzalloc(sizeof(pp[0]) * 2);
8935 pp[0] = g_argv[0]; /* retain $0 */
8936 g_argv = pp;
8937 }
8938 /* This realloc's G.global_argv */
8939 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
8940
8941 n = 1;
8942 while (*++pp)
8943 n++;
8944 G.global_argc = n;
8945
8946 return EXIT_SUCCESS;
8947
8948 /* Nothing known, so abort */
8949 error:
8950 bb_error_msg("set: %s: invalid option", arg);
8951 return EXIT_FAILURE;
8952}
8953
8954static int FAST_FUNC builtin_shift(char **argv)
8955{
8956 int n = 1;
8957 argv = skip_dash_dash(argv);
8958 if (argv[0]) {
8959 n = atoi(argv[0]);
8960 }
8961 if (n >= 0 && n < G.global_argc) {
8962 if (G.global_args_malloced) {
8963 int m = 1;
8964 while (m <= n)
8965 free(G.global_argv[m++]);
8966 }
8967 G.global_argc -= n;
8968 memmove(&G.global_argv[1], &G.global_argv[n+1],
8969 G.global_argc * sizeof(G.global_argv[0]));
8970 return EXIT_SUCCESS;
8971 }
8972 return EXIT_FAILURE;
8973}
8974
8975/* Interruptibility of read builtin in bash
8976 * (tested on bash-4.2.8 by sending signals (not by ^C)):
8977 *
8978 * Empty trap makes read ignore corresponding signal, for any signal.
8979 *
8980 * SIGINT:
8981 * - terminates non-interactive shell;
8982 * - interrupts read in interactive shell;
8983 * if it has non-empty trap:
8984 * - executes trap and returns to command prompt in interactive shell;
8985 * - executes trap and returns to read in non-interactive shell;
8986 * SIGTERM:
8987 * - is ignored (does not interrupt) read in interactive shell;
8988 * - terminates non-interactive shell;
8989 * if it has non-empty trap:
8990 * - executes trap and returns to read;
8991 * SIGHUP:
8992 * - terminates shell (regardless of interactivity);
8993 * if it has non-empty trap:
8994 * - executes trap and returns to read;
8995 */
8996static int FAST_FUNC builtin_read(char **argv)
8997{
8998 const char *r;
8999 char *opt_n = NULL;
9000 char *opt_p = NULL;
9001 char *opt_t = NULL;
9002 char *opt_u = NULL;
9003 const char *ifs;
9004 int read_flags;
9005
9006 /* "!": do not abort on errors.
9007 * Option string must start with "sr" to match BUILTIN_READ_xxx
9008 */
9009 read_flags = getopt32(argv, "!srn:p:t:u:", &opt_n, &opt_p, &opt_t, &opt_u);
9010 if (read_flags == (uint32_t)-1)
9011 return EXIT_FAILURE;
9012 argv += optind;
9013 ifs = get_local_var_value("IFS"); /* can be NULL */
9014
9015 again:
9016 r = shell_builtin_read(set_local_var_from_halves,
9017 argv,
9018 ifs,
9019 read_flags,
9020 opt_n,
9021 opt_p,
9022 opt_t,
9023 opt_u
9024 );
9025
9026 if ((uintptr_t)r == 1 && errno == EINTR) {
9027 unsigned sig = check_and_run_traps();
9028 if (sig && sig != SIGINT)
9029 goto again;
9030 }
9031
9032 if ((uintptr_t)r > 1) {
9033 bb_error_msg("%s", r);
9034 r = (char*)(uintptr_t)1;
9035 }
9036
9037 return (uintptr_t)r;
9038}
9039
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009040static int FAST_FUNC builtin_trap(char **argv)
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009041{
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009042 int sig;
9043 char *new_cmd;
9044
9045 if (!G.traps)
9046 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
9047
9048 argv++;
9049 if (!*argv) {
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00009050 int i;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009051 /* No args: print all trapped */
9052 for (i = 0; i < NSIG; ++i) {
9053 if (G.traps[i]) {
9054 printf("trap -- ");
9055 print_escaped(G.traps[i]);
Denys Vlasenkoe74aaf92009-09-27 02:05:45 +02009056 /* note: bash adds "SIG", but only if invoked
9057 * as "bash". If called as "sh", or if set -o posix,
9058 * then it prints short signal names.
9059 * We are printing short names: */
9060 printf(" %s\n", get_signame(i));
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009061 }
9062 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01009063 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009064 return EXIT_SUCCESS;
9065 }
9066
9067 new_cmd = NULL;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009068 /* If first arg is a number: reset all specified signals */
9069 sig = bb_strtou(*argv, NULL, 10);
9070 if (errno == 0) {
9071 int ret;
9072 process_sig_list:
9073 ret = EXIT_SUCCESS;
9074 while (*argv) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009075 sighandler_t handler;
9076
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009077 sig = get_signum(*argv++);
9078 if (sig < 0 || sig >= NSIG) {
9079 ret = EXIT_FAILURE;
9080 /* Mimic bash message exactly */
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00009081 bb_perror_msg("trap: %s: invalid signal specification", argv[-1]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009082 continue;
9083 }
9084
9085 free(G.traps[sig]);
9086 G.traps[sig] = xstrdup(new_cmd);
9087
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01009088 debug_printf("trap: setting SIG%s (%i) to '%s'\n",
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009089 get_signame(sig), sig, G.traps[sig]);
9090
9091 /* There is no signal for 0 (EXIT) */
9092 if (sig == 0)
9093 continue;
9094
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009095 if (new_cmd)
9096 handler = (new_cmd[0] ? record_pending_signo : SIG_IGN);
9097 else
9098 /* We are removing trap handler */
9099 handler = pick_sighandler(sig);
Denys Vlasenko0806e402011-05-12 23:06:20 +02009100 install_sighandler(sig, handler);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009101 }
9102 return ret;
9103 }
9104
9105 if (!argv[1]) { /* no second arg */
9106 bb_error_msg("trap: invalid arguments");
9107 return EXIT_FAILURE;
9108 }
9109
9110 /* First arg is "-": reset all specified to default */
9111 /* First arg is "--": skip it, the rest is "handler SIGs..." */
9112 /* Everything else: set arg as signal handler
9113 * (includes "" case, which ignores signal) */
9114 if (argv[0][0] == '-') {
9115 if (argv[0][1] == '\0') { /* "-" */
9116 /* new_cmd remains NULL: "reset these sigs" */
9117 goto reset_traps;
9118 }
9119 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
9120 argv++;
9121 }
9122 /* else: "-something", no special meaning */
9123 }
9124 new_cmd = *argv;
9125 reset_traps:
9126 argv++;
9127 goto process_sig_list;
9128}
9129
Mike Frysinger93cadc22009-05-27 17:06:25 -04009130/* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009131static int FAST_FUNC builtin_type(char **argv)
Mike Frysinger93cadc22009-05-27 17:06:25 -04009132{
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02009133 int ret = EXIT_SUCCESS;
Mike Frysinger93cadc22009-05-27 17:06:25 -04009134
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02009135 while (*++argv) {
Mike Frysinger93cadc22009-05-27 17:06:25 -04009136 const char *type;
Denys Vlasenko171932d2009-05-28 17:07:22 +02009137 char *path = NULL;
Mike Frysinger93cadc22009-05-27 17:06:25 -04009138
9139 if (0) {} /* make conditional compile easier below */
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02009140 /*else if (find_alias(*argv))
Mike Frysinger93cadc22009-05-27 17:06:25 -04009141 type = "an alias";*/
9142#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02009143 else if (find_function(*argv))
Mike Frysinger93cadc22009-05-27 17:06:25 -04009144 type = "a function";
9145#endif
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02009146 else if (find_builtin(*argv))
Mike Frysinger93cadc22009-05-27 17:06:25 -04009147 type = "a shell builtin";
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02009148 else if ((path = find_in_path(*argv)) != NULL)
9149 type = path;
Denys Vlasenko5d7cca22009-05-28 09:58:43 +02009150 else {
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02009151 bb_error_msg("type: %s: not found", *argv);
Mike Frysinger93cadc22009-05-27 17:06:25 -04009152 ret = EXIT_FAILURE;
Denys Vlasenko5d7cca22009-05-28 09:58:43 +02009153 continue;
9154 }
Mike Frysinger93cadc22009-05-27 17:06:25 -04009155
Denys Vlasenko5d7cca22009-05-28 09:58:43 +02009156 printf("%s is %s\n", *argv, type);
9157 free(path);
Mike Frysinger93cadc22009-05-27 17:06:25 -04009158 }
9159
9160 return ret;
9161}
9162
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009163#if ENABLE_HUSH_JOB
9164/* built-in 'fg' and 'bg' handler */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009165static int FAST_FUNC builtin_fg_bg(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009166{
9167 int i, jobnum;
9168 struct pipe *pi;
9169
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009170 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009171 return EXIT_FAILURE;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009172
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009173 /* If they gave us no args, assume they want the last backgrounded task */
9174 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00009175 for (pi = G.job_list; pi; pi = pi->next) {
9176 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009177 goto found;
9178 }
9179 }
9180 bb_error_msg("%s: no current job", argv[0]);
9181 return EXIT_FAILURE;
9182 }
9183 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
9184 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
9185 return EXIT_FAILURE;
9186 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00009187 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009188 if (pi->jobid == jobnum) {
9189 goto found;
9190 }
9191 }
9192 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
9193 return EXIT_FAILURE;
9194 found:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00009195 /* TODO: bash prints a string representation
9196 * of job being foregrounded (like "sleep 1 | cat") */
Mike Frysinger38478a62009-05-20 04:48:06 -04009197 if (argv[0][0] == 'f' && G_saved_tty_pgrp) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009198 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009199 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009200 }
9201
9202 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00009203 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
9204 for (i = 0; i < pi->num_cmds; i++) {
9205 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009206 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00009207 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009208
9209 i = kill(- pi->pgrp, SIGCONT);
9210 if (i < 0) {
9211 if (errno == ESRCH) {
9212 delete_finished_bg_job(pi);
9213 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009214 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00009215 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009216 }
9217
Denis Vlasenko34d4d892009-04-04 20:24:37 +00009218 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009219 remove_bg_job(pi);
9220 return checkjobs_and_fg_shell(pi);
9221 }
9222 return EXIT_SUCCESS;
9223}
9224#endif
9225
9226#if ENABLE_HUSH_HELP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009227static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009228{
9229 const struct built_in_command *x;
9230
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009231 printf(
Denis Vlasenko34d4d892009-04-04 20:24:37 +00009232 "Built-in commands:\n"
9233 "------------------\n");
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009234 for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) {
Denys Vlasenko17323a62010-01-28 01:57:05 +01009235 if (x->b_descr)
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009236 printf("%-10s%s\n", x->b_cmd, x->b_descr);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009237 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009238 return EXIT_SUCCESS;
9239}
9240#endif
9241
Denys Vlasenkoff463a82013-05-12 02:45:23 +02009242#if MAX_HISTORY && ENABLE_FEATURE_EDITING
Flemming Madsend96ffda2013-04-07 18:47:24 +02009243static int FAST_FUNC builtin_history(char **argv UNUSED_PARAM)
9244{
9245 show_history(G.line_input_state);
9246 return EXIT_SUCCESS;
9247}
9248#endif
9249
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009250#if ENABLE_HUSH_JOB
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009251static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009252{
9253 struct pipe *job;
9254 const char *status_string;
9255
Denis Vlasenko87a86552008-07-29 19:43:10 +00009256 for (job = G.job_list; job; job = job->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00009257 if (job->alive_cmds == job->stopped_cmds)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009258 status_string = "Stopped";
9259 else
9260 status_string = "Running";
9261
9262 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
9263 }
9264 return EXIT_SUCCESS;
9265}
9266#endif
9267
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00009268#if HUSH_DEBUG
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009269static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM)
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00009270{
9271 void *p;
9272 unsigned long l;
9273
Denys Vlasenkoc0836532009-10-19 13:13:06 +02009274# ifdef M_TRIM_THRESHOLD
Denys Vlasenko27726cb2009-09-12 14:48:33 +02009275 /* Optional. Reduces probability of false positives */
9276 malloc_trim(0);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02009277# endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00009278 /* Crude attempt to find where "free memory" starts,
9279 * sans fragmentation. */
9280 p = malloc(240);
9281 l = (unsigned long)p;
9282 free(p);
9283 p = malloc(3400);
9284 if (l < (unsigned long)p) l = (unsigned long)p;
9285 free(p);
9286
Denys Vlasenko7f0ebbc2016-10-03 17:42:53 +02009287
9288# if 0 /* debug */
9289 {
9290 struct mallinfo mi = mallinfo();
9291 printf("top alloc:0x%lx malloced:%d+%d=%d\n", l,
9292 mi.arena, mi.hblkhd, mi.arena + mi.hblkhd);
9293 }
9294# endif
9295
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00009296 if (!G.memleak_value)
9297 G.memleak_value = l;
Denys Vlasenko9038d6f2009-07-15 20:02:19 +02009298
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00009299 l -= G.memleak_value;
9300 if ((long)l < 0)
9301 l = 0;
9302 l /= 1024;
9303 if (l > 127)
9304 l = 127;
9305
9306 /* Exitcode is "how many kilobytes we leaked since 1st call" */
9307 return l;
9308}
9309#endif
9310
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009311static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009312{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009313 puts(get_cwd(0));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009314 return EXIT_SUCCESS;
9315}
9316
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009317static int FAST_FUNC builtin_source(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009318{
Denys Vlasenkoe66cf822010-05-18 09:12:53 +02009319 char *arg_path, *filename;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009320 FILE *input;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00009321 save_arg_t sv;
Mike Frysinger885b6f22009-04-18 21:04:25 +00009322#if ENABLE_HUSH_FUNCTIONS
9323 smallint sv_flg;
9324#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009325
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009326 argv = skip_dash_dash(argv);
9327 filename = argv[0];
Denys Vlasenkoe66cf822010-05-18 09:12:53 +02009328 if (!filename) {
9329 /* bash says: "bash: .: filename argument required" */
9330 return 2; /* bash compat */
9331 }
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009332 arg_path = NULL;
Denys Vlasenkoe66cf822010-05-18 09:12:53 +02009333 if (!strchr(filename, '/')) {
9334 arg_path = find_in_path(filename);
9335 if (arg_path)
9336 filename = arg_path;
9337 }
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02009338 input = remember_FILE(fopen_or_warn(filename, "r"));
Denys Vlasenkoe66cf822010-05-18 09:12:53 +02009339 free(arg_path);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009340 if (!input) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00009341 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
Denys Vlasenko88b532d2013-03-17 14:11:04 +01009342 /* POSIX: non-interactive shell should abort here,
9343 * not merely fail. So far no one complained :)
9344 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009345 return EXIT_FAILURE;
9346 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009347
Mike Frysinger885b6f22009-04-18 21:04:25 +00009348#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02009349 sv_flg = G_flag_return_in_progress;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009350 /* "we are inside sourced file, ok to use return" */
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02009351 G_flag_return_in_progress = -1;
Mike Frysinger885b6f22009-04-18 21:04:25 +00009352#endif
Denys Vlasenko88b532d2013-03-17 14:11:04 +01009353 if (argv[1])
9354 save_and_replace_G_args(&sv, argv);
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009355
Denys Vlasenko992e0ff2016-09-29 01:27:09 +02009356 /* "false; . ./empty_line; echo Zero:$?" should print 0 */
9357 G.last_exitcode = 0;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00009358 parse_and_run_file(input);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02009359 fclose_and_forget(input);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00009360
Denys Vlasenko88b532d2013-03-17 14:11:04 +01009361 if (argv[1])
9362 restore_G_args(&sv, argv);
Mike Frysinger885b6f22009-04-18 21:04:25 +00009363#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02009364 G_flag_return_in_progress = sv_flg;
Mike Frysinger885b6f22009-04-18 21:04:25 +00009365#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009366
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00009367 return G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009368}
9369
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009370static int FAST_FUNC builtin_umask(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009371{
Denis Vlasenkoeb858492009-04-18 02:06:54 +00009372 int rc;
9373 mode_t mask;
9374
Denys Vlasenko5711a2a2015-10-07 17:55:33 +02009375 rc = 1;
Denis Vlasenkoeb858492009-04-18 02:06:54 +00009376 mask = umask(0);
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009377 argv = skip_dash_dash(argv);
9378 if (argv[0]) {
Denis Vlasenkoeb858492009-04-18 02:06:54 +00009379 mode_t old_mask = mask;
9380
Denys Vlasenko6283f982015-10-07 16:56:20 +02009381 /* numeric umasks are taken as-is */
9382 /* symbolic umasks are inverted: "umask a=rx" calls umask(222) */
9383 if (!isdigit(argv[0][0]))
9384 mask ^= 0777;
Denys Vlasenko5711a2a2015-10-07 17:55:33 +02009385 mask = bb_parse_mode(argv[0], mask);
Denys Vlasenko6283f982015-10-07 16:56:20 +02009386 if (!isdigit(argv[0][0]))
9387 mask ^= 0777;
Denys Vlasenko5711a2a2015-10-07 17:55:33 +02009388 if ((unsigned)mask > 0777) {
Denis Vlasenkoeb858492009-04-18 02:06:54 +00009389 mask = old_mask;
9390 /* bash messages:
9391 * bash: umask: 'q': invalid symbolic mode operator
9392 * bash: umask: 999: octal number out of range
9393 */
Denys Vlasenko44c86ce2010-05-20 04:22:55 +02009394 bb_error_msg("%s: invalid mode '%s'", "umask", argv[0]);
Denys Vlasenko5711a2a2015-10-07 17:55:33 +02009395 rc = 0;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00009396 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009397 } else {
Denis Vlasenkoeb858492009-04-18 02:06:54 +00009398 /* Mimic bash */
9399 printf("%04o\n", (unsigned) mask);
9400 /* fall through and restore mask which we set to 0 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009401 }
Denis Vlasenkoeb858492009-04-18 02:06:54 +00009402 umask(mask);
9403
9404 return !rc; /* rc != 0 - success */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009405}
9406
Mike Frysinger56bdea12009-03-28 20:01:58 +00009407/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009408static int FAST_FUNC builtin_wait(char **argv)
Mike Frysinger56bdea12009-03-28 20:01:58 +00009409{
9410 int ret = EXIT_SUCCESS;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009411 int status;
Mike Frysinger56bdea12009-03-28 20:01:58 +00009412
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009413 argv = skip_dash_dash(argv);
9414 if (argv[0] == NULL) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +00009415 /* Don't care about wait results */
9416 /* Note 1: must wait until there are no more children */
9417 /* Note 2: must be interruptible */
9418 /* Examples:
9419 * $ sleep 3 & sleep 6 & wait
9420 * [1] 30934 sleep 3
9421 * [2] 30935 sleep 6
9422 * [1] Done sleep 3
9423 * [2] Done sleep 6
9424 * $ sleep 3 & sleep 6 & wait
9425 * [1] 30936 sleep 3
9426 * [2] 30937 sleep 6
9427 * [1] Done sleep 3
9428 * ^C <-- after ~4 sec from keyboard
9429 * $
9430 */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00009431 while (1) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009432 int sig;
9433 sigset_t oldset, allsigs;
9434
9435 /* waitpid is not interruptible by SA_RESTARTed
9436 * signals which we use. Thus, this ugly dance:
9437 */
9438
9439 /* Make sure possible SIGCHLD is stored in kernel's
9440 * pending signal mask before we call waitpid.
9441 * Or else we may race with SIGCHLD, lose it,
9442 * and get stuck in sigwaitinfo...
9443 */
9444 sigfillset(&allsigs);
9445 sigprocmask(SIG_SETMASK, &allsigs, &oldset);
9446
9447 if (!sigisemptyset(&G.pending_set)) {
9448 /* Crap! we raced with some signal! */
9449 // sig = 0;
9450 goto restore;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00009451 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009452
9453 checkjobs(NULL); /* waitpid(WNOHANG) inside */
9454 if (errno == ECHILD) {
9455 sigprocmask(SIG_SETMASK, &oldset, NULL);
9456 break;
9457 }
9458
9459 /* Wait for SIGCHLD or any other signal */
9460 //sig = sigwaitinfo(&allsigs, NULL);
9461 /* It is vitally important for sigsuspend that SIGCHLD has non-DFL handler! */
9462 /* Note: sigsuspend invokes signal handler */
9463 sigsuspend(&oldset);
9464 restore:
9465 sigprocmask(SIG_SETMASK, &oldset, NULL);
9466
9467 /* So, did we get a signal? */
9468 //if (sig > 0)
9469 // raise(sig); /* run handler */
9470 sig = check_and_run_traps();
9471 if (sig /*&& sig != SIGCHLD - always true */) {
9472 /* see note 2 */
9473 ret = 128 + sig;
9474 break;
9475 }
9476 /* SIGCHLD, or no signal, or ignored one, such as SIGQUIT. Repeat */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00009477 }
Denis Vlasenko7566bae2009-03-31 17:24:49 +00009478 return ret;
9479 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00009480
Denis Vlasenko7566bae2009-03-31 17:24:49 +00009481 /* This is probably buggy wrt interruptible-ness */
Denis Vlasenkod5762932009-03-31 11:22:57 +00009482 while (*argv) {
9483 pid_t pid = bb_strtou(*argv, NULL, 10);
Mike Frysinger40b8dc42009-03-29 00:50:30 +00009484 if (errno) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00009485 /* mimic bash message */
9486 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00009487 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00009488 }
9489 if (waitpid(pid, &status, 0) == pid) {
Denys Vlasenko85378cd2015-10-11 21:47:11 +02009490 ret = WEXITSTATUS(status);
Mike Frysinger56bdea12009-03-28 20:01:58 +00009491 if (WIFSIGNALED(status))
9492 ret = 128 + WTERMSIG(status);
Mike Frysinger56bdea12009-03-28 20:01:58 +00009493 } else {
Denis Vlasenkod5762932009-03-31 11:22:57 +00009494 bb_perror_msg("wait %s", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00009495 ret = 127;
9496 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00009497 argv++;
Mike Frysinger56bdea12009-03-28 20:01:58 +00009498 }
9499
9500 return ret;
9501}
9502
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009503#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
9504static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
9505{
9506 if (argv[1]) {
9507 def = bb_strtou(argv[1], NULL, 10);
9508 if (errno || def < def_min || argv[2]) {
9509 bb_error_msg("%s: bad arguments", argv[0]);
9510 def = UINT_MAX;
9511 }
9512 }
9513 return def;
9514}
9515#endif
9516
Denis Vlasenkodadfb492008-07-29 10:16:05 +00009517#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009518static int FAST_FUNC builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00009519{
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009520 unsigned depth;
Denis Vlasenko87a86552008-07-29 19:43:10 +00009521 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00009522 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denys Vlasenko49117b42016-07-21 14:40:08 +02009523 /* if we came from builtin_continue(), need to undo "= 1" */
9524 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00009525 return EXIT_SUCCESS; /* bash compat */
9526 }
Denys Vlasenko49117b42016-07-21 14:40:08 +02009527 G.flag_break_continue++; /* BC_BREAK = 1, or BC_CONTINUE = 2 */
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009528
9529 G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
9530 if (depth == UINT_MAX)
9531 G.flag_break_continue = BC_BREAK;
9532 if (G.depth_of_loop < depth)
Denis Vlasenko87a86552008-07-29 19:43:10 +00009533 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009534
Denis Vlasenkobcb25532008-07-28 23:04:34 +00009535 return EXIT_SUCCESS;
9536}
9537
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009538static int FAST_FUNC builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00009539{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00009540 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
9541 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00009542}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00009543#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009544
9545#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009546static int FAST_FUNC builtin_return(char **argv)
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009547{
9548 int rc;
9549
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02009550 if (G_flag_return_in_progress != -1) {
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009551 bb_error_msg("%s: not in a function or sourced script", argv[0]);
9552 return EXIT_FAILURE; /* bash compat */
9553 }
9554
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02009555 G_flag_return_in_progress = 1;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009556
9557 /* bash:
9558 * out of range: wraps around at 256, does not error out
9559 * non-numeric param:
9560 * f() { false; return qwe; }; f; echo $?
9561 * bash: return: qwe: numeric argument required <== we do this
9562 * 255 <== we also do this
9563 */
9564 rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
9565 return rc;
9566}
9567#endif