blob: af5c260903b665358e1012e253ce530135486ed8 [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 Vlasenko202a2d12010-07-16 12:36:14 +020084//config:config HUSH
85//config: bool "hush"
86//config: default y
87//config: help
Denys Vlasenko771f1992010-07-16 14:31:34 +020088//config: hush is a small shell (25k). It handles the normal flow control
Denys Vlasenko202a2d12010-07-16 12:36:14 +020089//config: constructs such as if/then/elif/else/fi, for/in/do/done, while loops,
90//config: case/esac. Redirections, here documents, $((arithmetic))
91//config: and functions are supported.
92//config:
93//config: It will compile and work on no-mmu systems.
94//config:
Denys Vlasenkoe2069fb2010-10-04 00:01:47 +020095//config: It does not handle select, aliases, tilde expansion,
96//config: &>file and >&file redirection of stdout+stderr.
Denys Vlasenko202a2d12010-07-16 12:36:14 +020097//config:
98//config:config HUSH_BASH_COMPAT
99//config: bool "bash-compatible extensions"
100//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100101//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200102//config:
Denys Vlasenko9e800222010-10-03 14:28:04 +0200103//config:config HUSH_BRACE_EXPANSION
104//config: bool "Brace expansion"
105//config: default y
106//config: depends on HUSH_BASH_COMPAT
107//config: help
108//config: Enable {abc,def} extension.
109//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200110//config:config HUSH_INTERACTIVE
111//config: bool "Interactive mode"
112//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100113//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200114//config: help
115//config: Enable interactive mode (prompt and command editing).
116//config: Without this, hush simply reads and executes commands
117//config: from stdin just like a shell script from a file.
118//config: No prompt, no PS1/PS2 magic shell variables.
119//config:
Denys Vlasenko99862cb2010-09-12 17:34:13 +0200120//config:config HUSH_SAVEHISTORY
121//config: bool "Save command history to .hush_history"
122//config: default y
123//config: depends on HUSH_INTERACTIVE && FEATURE_EDITING_SAVEHISTORY
Denys Vlasenko99862cb2010-09-12 17:34:13 +0200124//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200125//config:config HUSH_JOB
126//config: bool "Job control"
127//config: default y
128//config: depends on HUSH_INTERACTIVE
129//config: help
130//config: Enable job control: Ctrl-Z backgrounds, Ctrl-C interrupts current
131//config: command (not entire shell), fg/bg builtins work. Without this option,
132//config: "cmd &" still works by simply spawning a process and immediately
133//config: prompting for next command (or executing next command in a script),
134//config: but no separate process group is formed.
135//config:
136//config:config HUSH_TICK
Denys Vlasenkof5604222017-01-10 14:58:54 +0100137//config: bool "Support process substitution"
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200138//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100139//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200140//config: help
Denys Vlasenkof5604222017-01-10 14:58:54 +0100141//config: Enable `command` and $(command).
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200142//config:
143//config:config HUSH_IF
144//config: bool "Support if/then/elif/else/fi"
145//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100146//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200147//config:
148//config:config HUSH_LOOPS
149//config: bool "Support for, while and until loops"
150//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100151//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200152//config:
153//config:config HUSH_CASE
154//config: bool "Support case ... esac statement"
155//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100156//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200157//config: help
Denys Vlasenkof5604222017-01-10 14:58:54 +0100158//config: Enable case ... esac statement. +400 bytes.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200159//config:
160//config:config HUSH_FUNCTIONS
161//config: bool "Support funcname() { commands; } syntax"
162//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100163//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200164//config: help
Denys Vlasenkof5604222017-01-10 14:58:54 +0100165//config: Enable support for shell functions. +800 bytes.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200166//config:
167//config:config HUSH_LOCAL
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100168//config: bool "local builtin"
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200169//config: default y
170//config: depends on HUSH_FUNCTIONS
171//config: help
172//config: Enable support for local variables in functions.
173//config:
174//config:config HUSH_RANDOM_SUPPORT
175//config: bool "Pseudorandom generator and $RANDOM variable"
176//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100177//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200178//config: help
179//config: Enable pseudorandom generator and dynamic variable "$RANDOM".
180//config: Each read of "$RANDOM" will generate a new pseudorandom value.
181//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200182//config:config HUSH_MODE_X
183//config: bool "Support 'hush -x' option and 'set -x' command"
184//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100185//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200186//config: help
Denys Vlasenko29082232010-07-16 13:52:32 +0200187//config: This instructs hush to print commands before execution.
188//config: Adds ~300 bytes.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200189//config:
Denys Vlasenko1cc68042017-01-09 17:10:04 +0100190//config:config HUSH_ECHO
191//config: bool "echo builtin"
192//config: default y
193//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko1cc68042017-01-09 17:10:04 +0100194//config:
195//config:config HUSH_PRINTF
196//config: bool "printf builtin"
197//config: default y
198//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenkof5604222017-01-10 14:58:54 +0100199//config:
Denys Vlasenko265062d2017-01-10 15:13:30 +0100200//config:config HUSH_TEST
201//config: bool "test builtin"
202//config: default y
203//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
204//config:
Denys Vlasenkof5604222017-01-10 14:58:54 +0100205//config:config HUSH_HELP
206//config: bool "help builtin"
207//config: default y
208//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko1cc68042017-01-09 17:10:04 +0100209//config:
Denys Vlasenko6ec76d82017-01-08 18:40:41 +0100210//config:config HUSH_EXPORT
211//config: bool "export builtin"
212//config: default y
213//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko6ec76d82017-01-08 18:40:41 +0100214//config:
215//config:config HUSH_EXPORT_N
216//config: bool "Support 'export -n' option"
217//config: default y
218//config: depends on HUSH_EXPORT
219//config: help
220//config: export -n unexports variables. It is a bash extension.
221//config:
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100222//config:config HUSH_KILL
Denys Vlasenkof5604222017-01-10 14:58:54 +0100223//config: bool "kill builtin (supports kill %jobspec)"
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100224//config: default y
225//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100226//config:
227//config:config HUSH_WAIT
228//config: bool "wait builtin"
229//config: default y
230//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100231//config:
232//config:config HUSH_TRAP
233//config: bool "trap builtin"
234//config: default y
235//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100236//config:
237//config:config HUSH_TYPE
238//config: bool "type builtin"
239//config: default y
240//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100241//config:
242//config:config HUSH_READ
243//config: bool "read builtin"
244//config: default y
245//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100246//config:
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100247//config:config HUSH_SET
248//config: bool "set builtin"
249//config: default y
250//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100251//config:
252//config:config HUSH_UNSET
253//config: bool "unset builtin"
254//config: default y
255//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenkof5604222017-01-10 14:58:54 +0100256//config:
257//config:config HUSH_ULIMIT
258//config: bool "ulimit builtin"
259//config: default y
260//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100261//config:
Denys Vlasenkod5933b12017-01-08 18:31:39 +0100262//config:config HUSH_UMASK
263//config: bool "umask builtin"
264//config: default y
265//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenkod5933b12017-01-08 18:31:39 +0100266//config:
Denys Vlasenko44719692017-01-08 18:44:41 +0100267//config:config HUSH_MEMLEAK
268//config: bool "memleak builtin (debugging)"
269//config: default n
270//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200271
Denys Vlasenko20704f02011-03-23 17:59:27 +0100272//applet:IF_HUSH(APPLET(hush, BB_DIR_BIN, BB_SUID_DROP))
Denys Vlasenko205d48e2017-01-29 14:57:33 +0100273// APPLET_ODDNAME:name main location suid_type help
Denys Vlasenko205d48e2017-01-29 14:57:33 +0100274//applet:IF_SH_IS_HUSH( APPLET_ODDNAME(sh, hush, BB_DIR_BIN, BB_SUID_DROP, hush))
Denys Vlasenko0b883582016-12-23 16:49:07 +0100275//applet:IF_BASH_IS_HUSH(APPLET_ODDNAME(bash, hush, BB_DIR_BIN, BB_SUID_DROP, hush))
Denys Vlasenko20704f02011-03-23 17:59:27 +0100276
277//kbuild:lib-$(CONFIG_HUSH) += hush.o match.o shell_common.o
Denys Vlasenko0b883582016-12-23 16:49:07 +0100278//kbuild:lib-$(CONFIG_SH_IS_HUSH) += hush.o match.o shell_common.o
279//kbuild:lib-$(CONFIG_BASH_IS_HUSH) += hush.o match.o shell_common.o
Denys Vlasenko20704f02011-03-23 17:59:27 +0100280//kbuild:lib-$(CONFIG_HUSH_RANDOM_SUPPORT) += random.o
281
Dan Fandrich89ca2f92010-11-28 01:54:39 +0100282/* -i (interactive) and -s (read stdin) are also accepted,
283 * but currently do nothing, therefore aren't shown in help.
284 * NOMMU-specific options are not meant to be used by users,
285 * therefore we don't show them either.
286 */
287//usage:#define hush_trivial_usage
Denys Vlasenko9fda6092017-07-14 13:36:48 +0200288//usage: "[-enxl] [-c 'SCRIPT' [ARG0 [ARGS]] / FILE [ARGS]]"
Denys Vlasenkob0b83432011-03-07 12:34:59 +0100289//usage:#define hush_full_usage "\n\n"
290//usage: "Unix shell interpreter"
291
Denys Vlasenko67047462016-12-22 15:21:58 +0100292#if !(defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) \
293 || defined(__APPLE__) \
294 )
295# include <malloc.h> /* for malloc_trim */
296#endif
297#include <glob.h>
298/* #include <dmalloc.h> */
299#if ENABLE_HUSH_CASE
300# include <fnmatch.h>
301#endif
302#include <sys/utsname.h> /* for setting $HOSTNAME */
303
304#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
305#include "unicode.h"
306#include "shell_common.h"
307#include "math.h"
308#include "match.h"
309#if ENABLE_HUSH_RANDOM_SUPPORT
310# include "random.h"
311#else
312# define CLEAR_RANDOM_T(rnd) ((void)0)
313#endif
314#ifndef F_DUPFD_CLOEXEC
315# define F_DUPFD_CLOEXEC F_DUPFD
316#endif
317#ifndef PIPE_BUF
318# define PIPE_BUF 4096 /* amount of buffering in a pipe */
319#endif
320
Denis Vlasenko1943aec2009-04-09 14:15:57 +0000321
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100322/* So far, all bash compat is controlled by one config option */
323/* Separate defines document which part of code implements what */
324#define BASH_PATTERN_SUBST ENABLE_HUSH_BASH_COMPAT
325#define BASH_SUBSTR ENABLE_HUSH_BASH_COMPAT
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100326#define BASH_SOURCE ENABLE_HUSH_BASH_COMPAT
327#define BASH_HOSTNAME_VAR ENABLE_HUSH_BASH_COMPAT
Denys Vlasenko4ee824f2017-07-03 01:22:13 +0200328#define BASH_TEST2 (ENABLE_HUSH_BASH_COMPAT && ENABLE_HUSH_TEST)
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100329
330
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200331/* Build knobs */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000332#define LEAK_HUNTING 0
333#define BUILD_AS_NOMMU 0
334/* Enable/disable sanity checks. Ok to enable in production,
335 * only adds a bit of bloat. Set to >1 to get non-production level verbosity.
336 * Keeping 1 for now even in released versions.
337 */
338#define HUSH_DEBUG 1
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200339/* Slightly bigger (+200 bytes), but faster hush.
340 * So far it only enables a trick with counting SIGCHLDs and forks,
341 * which allows us to do fewer waitpid's.
342 * (we can detect a case where neither forks were done nor SIGCHLDs happened
343 * and therefore waitpid will return the same result as last time)
344 */
345#define ENABLE_HUSH_FAST 0
Denys Vlasenko9297dbc2010-07-05 21:37:12 +0200346/* TODO: implement simplified code for users which do not need ${var%...} ops
347 * So far ${var%...} ops are always enabled:
348 */
349#define ENABLE_HUSH_DOLLAR_OPS 1
Denis Vlasenko1943aec2009-04-09 14:15:57 +0000350
351
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000352#if BUILD_AS_NOMMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000353# undef BB_MMU
354# undef USE_FOR_NOMMU
355# undef USE_FOR_MMU
356# define BB_MMU 0
357# define USE_FOR_NOMMU(...) __VA_ARGS__
358# define USE_FOR_MMU(...)
359#endif
360
Denys Vlasenko1fcbff22010-06-26 02:40:08 +0200361#include "NUM_APPLETS.h"
Denys Vlasenko14974842010-03-23 01:08:26 +0100362#if NUM_APPLETS == 1
Denis Vlasenko61befda2008-11-25 01:36:03 +0000363/* STANDALONE does not make sense, and won't compile */
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000364# undef CONFIG_FEATURE_SH_STANDALONE
365# undef ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000366# undef IF_FEATURE_SH_STANDALONE
Denys Vlasenko14974842010-03-23 01:08:26 +0100367# undef IF_NOT_FEATURE_SH_STANDALONE
368# define ENABLE_FEATURE_SH_STANDALONE 0
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000369# define IF_FEATURE_SH_STANDALONE(...)
370# define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__
Denis Vlasenko61befda2008-11-25 01:36:03 +0000371#endif
372
Denis Vlasenko05743d72008-02-10 12:10:08 +0000373#if !ENABLE_HUSH_INTERACTIVE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000374# undef ENABLE_FEATURE_EDITING
375# define ENABLE_FEATURE_EDITING 0
376# undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
377# define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denys Vlasenko8cab6672012-04-20 14:48:00 +0200378# undef ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
379# define ENABLE_FEATURE_EDITING_SAVE_ON_EXIT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000380#endif
381
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000382/* Do we support ANY keywords? */
383#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000384# define HAS_KEYWORDS 1
385# define IF_HAS_KEYWORDS(...) __VA_ARGS__
386# define IF_HAS_NO_KEYWORDS(...)
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000387#else
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000388# define HAS_KEYWORDS 0
389# define IF_HAS_KEYWORDS(...)
390# define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000391#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000392
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000393/* If you comment out one of these below, it will be #defined later
394 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000395#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000396/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000397#define debug_printf_parse(...) do {} while (0)
398#define debug_print_tree(a, b) do {} while (0)
399#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000400#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000401#define debug_printf_jobs(...) do {} while (0)
402#define debug_printf_expand(...) do {} while (0)
Denys Vlasenko1e811b12010-05-22 03:12:29 +0200403#define debug_printf_varexp(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000404#define debug_printf_glob(...) do {} while (0)
Denys Vlasenko2db74612017-07-07 22:07:28 +0200405#define debug_printf_redir(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000406#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000407#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000408#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000409
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000410#define ERR_PTR ((void*)(long)1)
411
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +0100412#define JOB_STATUS_FORMAT "[%u] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000413
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200414#define _SPECIAL_VARS_STR "_*@$!?#"
415#define SPECIAL_VARS_STR ("_*@$!?#" + 1)
416#define NUMERIC_SPECVARS_STR ("_*@$!?#" + 3)
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100417#if BASH_PATTERN_SUBST
Denys Vlasenko36f774a2010-09-05 14:45:38 +0200418/* Support / and // replace ops */
419/* Note that // is stored as \ in "encoded" string representation */
420# define VAR_ENCODED_SUBST_OPS "\\/%#:-=+?"
421# define VAR_SUBST_OPS ("\\/%#:-=+?" + 1)
422# define MINUS_PLUS_EQUAL_QUESTION ("\\/%#:-=+?" + 5)
423#else
424# define VAR_ENCODED_SUBST_OPS "%#:-=+?"
425# define VAR_SUBST_OPS "%#:-=+?"
426# define MINUS_PLUS_EQUAL_QUESTION ("%#:-=+?" + 3)
427#endif
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200428
429#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000430
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200431struct variable;
432
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000433static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
434
435/* This supports saving pointers malloced in vfork child,
Denis Vlasenkoc376db32009-04-15 21:49:48 +0000436 * to be freed in the parent.
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000437 */
438#if !BB_MMU
439typedef struct nommu_save_t {
440 char **new_env;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200441 struct variable *old_vars;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000442 char **argv;
Denis Vlasenko27014ed2009-04-15 21:48:23 +0000443 char **argv_from_re_execing;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000444} nommu_save_t;
445#endif
446
Denys Vlasenko9b782552010-09-08 13:33:26 +0200447enum {
Eric Andersen25f27032001-04-26 23:22:31 +0000448 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000449#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000450 RES_IF ,
451 RES_THEN ,
452 RES_ELIF ,
453 RES_ELSE ,
454 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000455#endif
456#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000457 RES_FOR ,
458 RES_WHILE ,
459 RES_UNTIL ,
460 RES_DO ,
461 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000462#endif
463#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000464 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000465#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000466#if ENABLE_HUSH_CASE
467 RES_CASE ,
Denys Vlasenkoe9bda902009-05-23 16:50:07 +0200468 /* three pseudo-keywords support contrived "case" syntax: */
469 RES_CASE_IN, /* "case ... IN", turns into RES_MATCH when IN is observed */
470 RES_MATCH , /* "word)" */
471 RES_CASE_BODY, /* "this command is inside CASE" */
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000472 RES_ESAC ,
473#endif
474 RES_XXXX ,
475 RES_SNTX
Denys Vlasenko9b782552010-09-08 13:33:26 +0200476};
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000477
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000478typedef struct o_string {
479 char *data;
480 int length; /* position where data is appended */
481 int maxlen;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +0200482 int o_expflags;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000483 /* At least some part of the string was inside '' or "",
484 * possibly empty one: word"", wo''rd etc. */
Denys Vlasenko38292b62010-09-05 14:49:40 +0200485 smallint has_quoted_part;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000486 smallint has_empty_slot;
487 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
488} o_string;
489enum {
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200490 EXP_FLAG_SINGLEWORD = 0x80, /* must be 0x80 */
491 EXP_FLAG_GLOB = 0x2,
492 /* Protect newly added chars against globbing
493 * by prepending \ to *, ?, [, \ */
494 EXP_FLAG_ESC_GLOB_CHARS = 0x1,
495};
496enum {
497 MAYBE_ASSIGNMENT = 0,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000498 DEFINITELY_ASSIGNMENT = 1,
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200499 NOT_ASSIGNMENT = 2,
Maninder Singh97c64912015-05-25 13:46:36 +0200500 /* Not an assignment, but next word may be: "if v=xyz cmd;" */
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200501 WORD_IS_KEYWORD = 3,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000502};
503/* Used for initialization: o_string foo = NULL_O_STRING; */
504#define NULL_O_STRING { NULL }
505
Denys Vlasenko29f9b722011-05-14 11:27:36 +0200506#ifndef debug_printf_parse
507static const char *const assignment_flag[] = {
508 "MAYBE_ASSIGNMENT",
509 "DEFINITELY_ASSIGNMENT",
510 "NOT_ASSIGNMENT",
511 "WORD_IS_KEYWORD",
512};
513#endif
514
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000515typedef struct in_str {
516 const char *p;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000517#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000518 smallint promptmode; /* 0: PS1, 1: PS2 */
519#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +0200520 int peek_buf[2];
Denys Vlasenkocecbc982011-03-30 18:54:52 +0200521 int last_char;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000522 FILE *file;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000523} in_str;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000524
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200525/* The descrip member of this structure is only used to make
526 * debugging output pretty */
527static const struct {
528 int mode;
529 signed char default_fd;
530 char descrip[3];
531} redir_table[] = {
532 { O_RDONLY, 0, "<" },
533 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
534 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
535 { O_CREAT|O_RDWR, 1, "<>" },
536 { O_RDONLY, 0, "<<" },
537/* Should not be needed. Bogus default_fd helps in debugging */
538/* { O_RDONLY, 77, "<<" }, */
539};
540
Eric Andersen25f27032001-04-26 23:22:31 +0000541struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000542 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000543 char *rd_filename; /* filename */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000544 int rd_fd; /* fd to redirect */
545 /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
546 int rd_dup;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000547 smallint rd_type; /* (enum redir_type) */
548 /* note: for heredocs, rd_filename contains heredoc delimiter,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000549 * and subsequently heredoc itself; and rd_dup is a bitmask:
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200550 * bit 0: do we need to trim leading tabs?
551 * bit 1: is heredoc quoted (<<'delim' syntax) ?
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000552 */
Eric Andersen25f27032001-04-26 23:22:31 +0000553};
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000554typedef enum redir_type {
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200555 REDIRECT_INPUT = 0,
556 REDIRECT_OVERWRITE = 1,
557 REDIRECT_APPEND = 2,
558 REDIRECT_IO = 3,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000559 REDIRECT_HEREDOC = 4,
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200560 REDIRECT_HEREDOC2 = 5, /* REDIRECT_HEREDOC after heredoc is loaded */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000561
562 REDIRFD_CLOSE = -3,
563 REDIRFD_SYNTAX_ERR = -2,
Denis Vlasenko835fcfd2009-04-10 13:51:56 +0000564 REDIRFD_TO_FILE = -1,
565 /* otherwise, rd_fd is redirected to rd_dup */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000566
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000567 HEREDOC_SKIPTABS = 1,
568 HEREDOC_QUOTED = 2,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000569} redir_type;
570
Eric Andersen25f27032001-04-26 23:22:31 +0000571
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000572struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000573 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000574 int assignment_cnt; /* how many argv[i] are assignments? */
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200575 smallint cmd_type; /* CMD_xxx */
576#define CMD_NORMAL 0
577#define CMD_SUBSHELL 1
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100578#if BASH_TEST2
Denys Vlasenkod383b492010-09-06 10:22:13 +0200579/* used for "[[ EXPR ]]" */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200580# define CMD_SINGLEWORD_NOGLOB 2
Denis Vlasenkoed055212009-04-11 10:37:10 +0000581#endif
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200582#if ENABLE_HUSH_FUNCTIONS
583# define CMD_FUNCDEF 3
584#endif
585
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100586 smalluint cmd_exitcode;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200587 /* if non-NULL, this "command" is { list }, ( list ), or a compound statement */
588 struct pipe *group;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000589#if !BB_MMU
590 char *group_as_string;
591#endif
Denis Vlasenkoed055212009-04-11 10:37:10 +0000592#if ENABLE_HUSH_FUNCTIONS
593 struct function *child_func;
594/* This field is used to prevent a bug here:
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200595 * while...do f1() {a;}; f1; f1() {b;}; f1; done
Denis Vlasenkoed055212009-04-11 10:37:10 +0000596 * When we execute "f1() {a;}" cmd, we create new function and clear
597 * cmd->group, cmd->group_as_string, cmd->argv[0].
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200598 * When we execute "f1() {b;}", we notice that f1 exists,
599 * and that its "parent cmd" struct is still "alive",
Denis Vlasenkoed055212009-04-11 10:37:10 +0000600 * we put those fields back into cmd->xxx
601 * (struct function has ->parent_cmd ptr to facilitate that).
602 * When we loop back, we can execute "f1() {a;}" again and set f1 correctly.
603 * Without this trick, loop would execute a;b;b;b;...
604 * instead of correct sequence a;b;a;b;...
605 * When command is freed, it severs the link
606 * (sets ->child_func->parent_cmd to NULL).
607 */
608#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000609 char **argv; /* command name and arguments */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000610/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
611 * and on execution these are substituted with their values.
612 * Substitution can make _several_ words out of one argv[n]!
613 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000614 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000615 */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000616 struct redir_struct *redirects; /* I/O redirections */
617};
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000618/* Is there anything in this command at all? */
619#define IS_NULL_CMD(cmd) \
620 (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects)
621
Eric Andersen25f27032001-04-26 23:22:31 +0000622struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000623 struct pipe *next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000624 int num_cmds; /* total number of commands in pipe */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000625 int alive_cmds; /* number of commands running (not exited) */
626 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000627#if ENABLE_HUSH_JOB
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +0100628 unsigned jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000629 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000630 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000631#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000632 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000633 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000634 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
635 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000636};
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000637typedef enum pipe_style {
Denys Vlasenko00a06b92016-11-08 20:35:53 +0100638 PIPE_SEQ = 0,
639 PIPE_AND = 1,
640 PIPE_OR = 2,
641 PIPE_BG = 3,
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000642} pipe_style;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000643/* Is there anything in this pipe at all? */
644#define IS_NULL_PIPE(pi) \
645 ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE))
Eric Andersen25f27032001-04-26 23:22:31 +0000646
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000647/* This holds pointers to the various results of parsing */
648struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000649 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000650 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000651 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000652 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000653 /* last command in pipe (being constructed right now) */
654 struct command *command;
655 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000656 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000657#if !BB_MMU
658 o_string as_string;
659#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000660#if HAS_KEYWORDS
661 smallint ctx_res_w;
662 smallint ctx_inverted; /* "! cmd | cmd" */
663#if ENABLE_HUSH_CASE
664 smallint ctx_dsemicolon; /* ";;" seen */
665#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000666 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
667 int old_flag;
668 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000669 * example: "if pipe1; pipe2; then pipe3; fi"
670 * when we see "if" or "then", we malloc and copy current context,
671 * and make ->stack point to it. then we parse pipeN.
672 * when closing "then" / fi" / whatever is found,
673 * we move list_head into ->stack->command->group,
674 * copy ->stack into current context, and delete ->stack.
675 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000676 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000677 struct parse_context *stack;
678#endif
679};
680
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000681/* On program start, environ points to initial environment.
682 * putenv adds new pointers into it, unsetenv removes them.
683 * Neither of these (de)allocates the strings.
684 * setenv allocates new strings in malloc space and does putenv,
685 * and thus setenv is unusable (leaky) for shell's purposes */
686#define setenv(...) setenv_is_leaky_dont_use()
687struct variable {
688 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000689 char *varstr; /* points to "name=" portion */
Denys Vlasenko295fef82009-06-03 12:47:26 +0200690#if ENABLE_HUSH_LOCAL
691 unsigned func_nest_level;
692#endif
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000693 int max_len; /* if > 0, name is part of initial env; else name is malloced */
694 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000695 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000696};
697
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000698enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000699 BC_BREAK = 1,
700 BC_CONTINUE = 2,
701};
702
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000703#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000704struct function {
705 struct function *next;
706 char *name;
Denis Vlasenkoed055212009-04-11 10:37:10 +0000707 struct command *parent_cmd;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000708 struct pipe *body;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200709# if !BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000710 char *body_as_string;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200711# endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000712};
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000713#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000714
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000715
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100716/* set -/+o OPT support. (TODO: make it optional)
717 * bash supports the following opts:
718 * allexport off
719 * braceexpand on
720 * emacs on
721 * errexit off
722 * errtrace off
723 * functrace off
724 * hashall on
725 * histexpand off
726 * history on
727 * ignoreeof off
728 * interactive-comments on
729 * keyword off
730 * monitor on
731 * noclobber off
732 * noexec off
733 * noglob off
734 * nolog off
735 * notify off
736 * nounset off
737 * onecmd off
738 * physical off
739 * pipefail off
740 * posix off
741 * privileged off
742 * verbose off
743 * vi off
744 * xtrace off
745 */
Dan Fandrich85c62472010-11-20 13:05:17 -0800746static const char o_opt_strings[] ALIGN1 =
747 "pipefail\0"
748 "noexec\0"
Denys Vlasenko9fda6092017-07-14 13:36:48 +0200749 "errexit\0"
Dan Fandrich85c62472010-11-20 13:05:17 -0800750#if ENABLE_HUSH_MODE_X
751 "xtrace\0"
752#endif
753 ;
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100754enum {
755 OPT_O_PIPEFAIL,
Dan Fandrich85c62472010-11-20 13:05:17 -0800756 OPT_O_NOEXEC,
Denys Vlasenko9fda6092017-07-14 13:36:48 +0200757 OPT_O_ERREXIT,
Dan Fandrich85c62472010-11-20 13:05:17 -0800758#if ENABLE_HUSH_MODE_X
759 OPT_O_XTRACE,
760#endif
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100761 NUM_OPT_O
762};
763
764
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +0200765struct FILE_list {
766 struct FILE_list *next;
767 FILE *fp;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +0200768 int fd;
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +0200769};
770
771
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000772/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000773/* Sorted roughly by size (smaller offsets == smaller code) */
774struct globals {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000775 /* interactive_fd != 0 means we are an interactive shell.
776 * If we are, then saved_tty_pgrp can also be != 0, meaning
777 * that controlling tty is available. With saved_tty_pgrp == 0,
778 * job control still works, but terminal signals
779 * (^C, ^Z, ^Y, ^\) won't work at all, and background
780 * process groups can only be created with "cmd &".
781 * With saved_tty_pgrp != 0, hush will use tcsetpgrp()
782 * to give tty to the foreground process group,
783 * and will take it back when the group is stopped (^Z)
784 * or killed (^C).
785 */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000786#if ENABLE_HUSH_INTERACTIVE
787 /* 'interactive_fd' is a fd# open to ctty, if we have one
788 * _AND_ if we decided to act interactively */
789 int interactive_fd;
790 const char *PS1;
791 const char *PS2;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000792# define G_interactive_fd (G.interactive_fd)
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000793#else
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000794# define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000795#endif
796#if ENABLE_FEATURE_EDITING
797 line_input_t *line_input_state;
798#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000799 pid_t root_pid;
Denys Vlasenkodea47882009-10-09 15:40:49 +0200800 pid_t root_ppid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000801 pid_t last_bg_pid;
Denys Vlasenko20b3d142009-10-09 20:59:39 +0200802#if ENABLE_HUSH_RANDOM_SUPPORT
803 random_t random_gen;
804#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000805#if ENABLE_HUSH_JOB
806 int run_list_level;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +0100807 unsigned last_jobid;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000808 pid_t saved_tty_pgrp;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000809 struct pipe *job_list;
Mike Frysinger38478a62009-05-20 04:48:06 -0400810# define G_saved_tty_pgrp (G.saved_tty_pgrp)
811#else
812# define G_saved_tty_pgrp 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000813#endif
Denys Vlasenko9fda6092017-07-14 13:36:48 +0200814 /* How deeply are we in context where "set -e" is ignored */
815 int errexit_depth;
816 /* "set -e" rules (do we follow them correctly?):
817 * Exit if pipe, list, or compound command exits with a non-zero status.
818 * Shell does not exit if failed command is part of condition in
819 * if/while, part of && or || list except the last command, any command
820 * in a pipe but the last, or if the command's return value is being
821 * inverted with !. If a compound command other than a subshell returns a
822 * non-zero status because a command failed while -e was being ignored, the
823 * shell does not exit. A trap on ERR, if set, is executed before the shell
824 * exits [ERR is a bashism].
825 *
826 * If a compound command or function executes in a context where -e is
827 * ignored, none of the commands executed within are affected by the -e
828 * setting. If a compound command or function sets -e while executing in a
829 * context where -e is ignored, that setting does not have any effect until
830 * the compound command or the command containing the function call completes.
831 */
832
Denys Vlasenko26777aa2010-11-22 23:49:10 +0100833 char o_opt[NUM_OPT_O];
Denys Vlasenko57542eb2010-11-28 03:59:30 +0100834#if ENABLE_HUSH_MODE_X
835# define G_x_mode (G.o_opt[OPT_O_XTRACE])
836#else
837# define G_x_mode 0
838#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000839 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000840#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000841 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000842#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000843#if ENABLE_HUSH_FUNCTIONS
844 /* 0: outside of a function (or sourced file)
845 * -1: inside of a function, ok to use return builtin
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000846 * 1: return is invoked, skip all till end of func
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000847 */
848 smallint flag_return_in_progress;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +0200849# define G_flag_return_in_progress (G.flag_return_in_progress)
850#else
851# define G_flag_return_in_progress 0
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000852#endif
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000853 smallint exiting; /* used to prevent EXIT trap recursion */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000854 /* These four support $?, $#, and $1 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000855 smalluint last_exitcode;
Denys Vlasenko840a4352017-07-07 22:56:02 +0200856 smalluint last_bg_pid_exitcode;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +0100857#if ENABLE_HUSH_SET
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000858 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000859 smalluint global_args_malloced;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +0100860# define G_global_args_malloced (G.global_args_malloced)
861#else
862# define G_global_args_malloced 0
863#endif
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000864 /* how many non-NULL argv's we have. NB: $# + 1 */
865 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000866 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000867#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000868 char *argv0_for_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000869#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000870#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000871 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000872 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000873#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000874 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000875 const char *cwd;
Denys Vlasenko52e460b2010-09-16 16:12:00 +0200876 struct variable *top_var;
Denys Vlasenko29082232010-07-16 13:52:32 +0200877 char **expanded_assignments;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000878#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000879 struct function *top_func;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200880# if ENABLE_HUSH_LOCAL
881 struct variable **shadowed_vars_pp;
882 unsigned func_nest_level;
883# endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000884#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000885 /* Signal and trap handling */
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200886#if ENABLE_HUSH_FAST
887 unsigned count_SIGCHLD;
888 unsigned handled_SIGCHLD;
Denys Vlasenkoe2df5f42009-05-26 14:34:10 +0200889 smallint we_have_children;
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200890#endif
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +0200891 struct FILE_list *FILE_list;
Denys Vlasenko10c01312011-05-11 11:49:21 +0200892 /* Which signals have non-DFL handler (even with no traps set)?
893 * Set at the start to:
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200894 * (SIGQUIT + maybe SPECIAL_INTERACTIVE_SIGS + maybe SPECIAL_JOBSTOP_SIGS)
Denys Vlasenko10c01312011-05-11 11:49:21 +0200895 * SPECIAL_INTERACTIVE_SIGS are cleared after fork.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200896 * The rest is cleared right before execv syscalls.
Denys Vlasenko10c01312011-05-11 11:49:21 +0200897 * Other than these two times, never modified.
898 */
899 unsigned special_sig_mask;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200900#if ENABLE_HUSH_JOB
901 unsigned fatal_sig_mask;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +0100902# define G_fatal_sig_mask (G.fatal_sig_mask)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200903#else
Denys Vlasenko75e77de2011-05-12 13:12:47 +0200904# define G_fatal_sig_mask 0
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200905#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100906#if ENABLE_HUSH_TRAP
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000907 char **traps; /* char *traps[NSIG] */
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100908# define G_traps G.traps
909#else
910# define G_traps ((char**)NULL)
911#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200912 sigset_t pending_set;
Denys Vlasenko44719692017-01-08 18:44:41 +0100913#if ENABLE_HUSH_MEMLEAK
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000914 unsigned long memleak_value;
Denys Vlasenko44719692017-01-08 18:44:41 +0100915#endif
916#if HUSH_DEBUG
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000917 int debug_indent;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000918#endif
Denys Vlasenko0806e402011-05-12 23:06:20 +0200919 struct sigaction sa;
Denys Vlasenko0448c552016-09-29 20:25:44 +0200920#if ENABLE_FEATURE_EDITING
921 char user_input_buf[CONFIG_FEATURE_EDITING_MAX_LEN];
922#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000923};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000924#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000925/* Not #defining name to G.name - this quickly gets unwieldy
926 * (too many defines). Also, I actually prefer to see when a variable
927 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000928#define INIT_G() do { \
929 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denys Vlasenko0806e402011-05-12 23:06:20 +0200930 /* memset(&G.sa, 0, sizeof(G.sa)); */ \
931 sigfillset(&G.sa.sa_mask); \
932 G.sa.sa_flags = SA_RESTART; \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000933} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000934
935
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000936/* Function prototypes for builtins */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200937static int builtin_cd(char **argv) FAST_FUNC;
Denys Vlasenko1cc68042017-01-09 17:10:04 +0100938#if ENABLE_HUSH_ECHO
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200939static int builtin_echo(char **argv) FAST_FUNC;
Denys Vlasenko1cc68042017-01-09 17:10:04 +0100940#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200941static int builtin_eval(char **argv) FAST_FUNC;
942static int builtin_exec(char **argv) FAST_FUNC;
943static int builtin_exit(char **argv) FAST_FUNC;
Denys Vlasenko6ec76d82017-01-08 18:40:41 +0100944#if ENABLE_HUSH_EXPORT
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200945static int builtin_export(char **argv) FAST_FUNC;
Denys Vlasenko6ec76d82017-01-08 18:40:41 +0100946#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000947#if ENABLE_HUSH_JOB
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200948static int builtin_fg_bg(char **argv) FAST_FUNC;
949static int builtin_jobs(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000950#endif
951#if ENABLE_HUSH_HELP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200952static int builtin_help(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000953#endif
Denys Vlasenkoff463a82013-05-12 02:45:23 +0200954#if MAX_HISTORY && ENABLE_FEATURE_EDITING
Flemming Madsend96ffda2013-04-07 18:47:24 +0200955static int builtin_history(char **argv) FAST_FUNC;
956#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +0200957#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200958static int builtin_local(char **argv) FAST_FUNC;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200959#endif
Denys Vlasenko44719692017-01-08 18:44:41 +0100960#if ENABLE_HUSH_MEMLEAK
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200961static int builtin_memleak(char **argv) FAST_FUNC;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000962#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +0100963#if ENABLE_HUSH_PRINTF
Mike Frysinger4ebc76c2009-10-15 03:32:39 -0400964static int builtin_printf(char **argv) FAST_FUNC;
965#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200966static int builtin_pwd(char **argv) FAST_FUNC;
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100967#if ENABLE_HUSH_READ
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200968static int builtin_read(char **argv) FAST_FUNC;
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100969#endif
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100970#if ENABLE_HUSH_SET
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200971static int builtin_set(char **argv) FAST_FUNC;
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100972#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200973static int builtin_shift(char **argv) FAST_FUNC;
974static int builtin_source(char **argv) FAST_FUNC;
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100975#if ENABLE_HUSH_TEST || BASH_TEST2
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200976static int builtin_test(char **argv) FAST_FUNC;
Denys Vlasenko265062d2017-01-10 15:13:30 +0100977#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100978#if ENABLE_HUSH_TRAP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200979static int builtin_trap(char **argv) FAST_FUNC;
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100980#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +0100981#if ENABLE_HUSH_TYPE
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200982static int builtin_type(char **argv) FAST_FUNC;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +0100983#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200984static int builtin_true(char **argv) FAST_FUNC;
Denys Vlasenkod5933b12017-01-08 18:31:39 +0100985#if ENABLE_HUSH_UMASK
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200986static int builtin_umask(char **argv) FAST_FUNC;
Denys Vlasenkod5933b12017-01-08 18:31:39 +0100987#endif
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100988#if ENABLE_HUSH_UNSET
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200989static int builtin_unset(char **argv) FAST_FUNC;
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100990#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +0100991#if ENABLE_HUSH_KILL
992static int builtin_kill(char **argv) FAST_FUNC;
993#endif
994#if ENABLE_HUSH_WAIT
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200995static int builtin_wait(char **argv) FAST_FUNC;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +0100996#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000997#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200998static int builtin_break(char **argv) FAST_FUNC;
999static int builtin_continue(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001000#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00001001#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001002static int builtin_return(char **argv) FAST_FUNC;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00001003#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001004
1005/* Table of built-in functions. They can be forked or not, depending on
1006 * context: within pipes, they fork. As simple commands, they do not.
1007 * When used in non-forking context, they can change global variables
1008 * in the parent shell process. If forked, of course they cannot.
1009 * For example, 'unset foo | whatever' will parse and run, but foo will
1010 * still be set at the end. */
1011struct built_in_command {
Denys Vlasenko17323a62010-01-28 01:57:05 +01001012 const char *b_cmd;
1013 int (*b_function)(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001014#if ENABLE_HUSH_HELP
Denys Vlasenko17323a62010-01-28 01:57:05 +01001015 const char *b_descr;
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001016# define BLTIN(cmd, func, help) { cmd, func, help }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001017#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001018# define BLTIN(cmd, func, help) { cmd, func }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001019#endif
1020};
1021
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001022static const struct built_in_command bltins1[] = {
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001023 BLTIN("." , builtin_source , "Run commands in file"),
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001024 BLTIN(":" , builtin_true , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001025#if ENABLE_HUSH_JOB
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001026 BLTIN("bg" , builtin_fg_bg , "Resume job in background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001027#endif
1028#if ENABLE_HUSH_LOOPS
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001029 BLTIN("break" , builtin_break , "Exit loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001030#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001031 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001032#if ENABLE_HUSH_LOOPS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001033 BLTIN("continue" , builtin_continue, "Start new loop iteration"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001034#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001035 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
1036 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001037 BLTIN("exit" , builtin_exit , NULL),
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01001038#if ENABLE_HUSH_EXPORT
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001039 BLTIN("export" , builtin_export , "Set environment variables"),
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01001040#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001041#if ENABLE_HUSH_JOB
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001042 BLTIN("fg" , builtin_fg_bg , "Bring job into foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001043#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001044#if ENABLE_HUSH_HELP
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001045 BLTIN("help" , builtin_help , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001046#endif
Denys Vlasenkoff463a82013-05-12 02:45:23 +02001047#if MAX_HISTORY && ENABLE_FEATURE_EDITING
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001048 BLTIN("history" , builtin_history , "Show history"),
Flemming Madsend96ffda2013-04-07 18:47:24 +02001049#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +00001050#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001051 BLTIN("jobs" , builtin_jobs , "List jobs"),
Denis Vlasenko34d4d892009-04-04 20:24:37 +00001052#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001053#if ENABLE_HUSH_KILL
1054 BLTIN("kill" , builtin_kill , "Send signals to processes"),
1055#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02001056#if ENABLE_HUSH_LOCAL
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001057 BLTIN("local" , builtin_local , "Set local variables"),
Denys Vlasenko295fef82009-06-03 12:47:26 +02001058#endif
Denys Vlasenko44719692017-01-08 18:44:41 +01001059#if ENABLE_HUSH_MEMLEAK
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001060 BLTIN("memleak" , builtin_memleak , NULL),
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00001061#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001062#if ENABLE_HUSH_READ
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001063 BLTIN("read" , builtin_read , "Input into variable"),
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001064#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00001065#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001066 BLTIN("return" , builtin_return , "Return from function"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00001067#endif
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001068#if ENABLE_HUSH_SET
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001069 BLTIN("set" , builtin_set , "Set positional parameters"),
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001070#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001071 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01001072#if BASH_SOURCE
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001073 BLTIN("source" , builtin_source , NULL),
Denys Vlasenko82731b42010-05-17 17:49:52 +02001074#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001075#if ENABLE_HUSH_TRAP
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001076 BLTIN("trap" , builtin_trap , "Trap signals"),
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001077#endif
Denys Vlasenko2bba5912014-03-14 12:43:57 +01001078 BLTIN("true" , builtin_true , NULL),
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001079#if ENABLE_HUSH_TYPE
Denys Vlasenko651a2692010-03-23 16:25:17 +01001080 BLTIN("type" , builtin_type , "Show command type"),
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001081#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001082#if ENABLE_HUSH_ULIMIT
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001083 BLTIN("ulimit" , shell_builtin_ulimit, "Control resource limits"),
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001084#endif
Denys Vlasenkod5933b12017-01-08 18:31:39 +01001085#if ENABLE_HUSH_UMASK
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001086 BLTIN("umask" , builtin_umask , "Set file creation mask"),
Denys Vlasenkod5933b12017-01-08 18:31:39 +01001087#endif
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001088#if ENABLE_HUSH_UNSET
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001089 BLTIN("unset" , builtin_unset , "Unset variables"),
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001090#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001091#if ENABLE_HUSH_WAIT
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001092 BLTIN("wait" , builtin_wait , "Wait for process"),
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001093#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001094};
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001095/* These builtins won't be used if we are on NOMMU and need to re-exec
1096 * (it's cheaper to run an external program in this case):
1097 */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001098static const struct built_in_command bltins2[] = {
Denys Vlasenko265062d2017-01-10 15:13:30 +01001099#if ENABLE_HUSH_TEST
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001100 BLTIN("[" , builtin_test , NULL),
Denys Vlasenko265062d2017-01-10 15:13:30 +01001101#endif
Denys Vlasenko8944c672017-01-11 14:22:00 +01001102#if BASH_TEST2
1103 BLTIN("[[" , builtin_test , NULL),
1104#endif
Denys Vlasenko1cc68042017-01-09 17:10:04 +01001105#if ENABLE_HUSH_ECHO
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001106 BLTIN("echo" , builtin_echo , NULL),
Denys Vlasenko1cc68042017-01-09 17:10:04 +01001107#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001108#if ENABLE_HUSH_PRINTF
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04001109 BLTIN("printf" , builtin_printf , NULL),
1110#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001111 BLTIN("pwd" , builtin_pwd , NULL),
Denys Vlasenko265062d2017-01-10 15:13:30 +01001112#if ENABLE_HUSH_TEST
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001113 BLTIN("test" , builtin_test , NULL),
Denys Vlasenko265062d2017-01-10 15:13:30 +01001114#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001115};
1116
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001117
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001118/* Debug printouts.
1119 */
1120#if HUSH_DEBUG
1121/* prevent disasters with G.debug_indent < 0 */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001122# define indent() fdprintf(2, "%*s", (G.debug_indent * 2) & 0xff, "")
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001123# define debug_enter() (G.debug_indent++)
1124# define debug_leave() (G.debug_indent--)
1125#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001126# define indent() ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001127# define debug_enter() ((void)0)
1128# define debug_leave() ((void)0)
1129#endif
1130
1131#ifndef debug_printf
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001132# define debug_printf(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001133#endif
1134
1135#ifndef debug_printf_parse
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001136# define debug_printf_parse(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001137#endif
1138
1139#ifndef debug_printf_exec
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001140#define debug_printf_exec(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001141#endif
1142
1143#ifndef debug_printf_env
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001144# define debug_printf_env(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001145#endif
1146
1147#ifndef debug_printf_jobs
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001148# define debug_printf_jobs(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001149# define DEBUG_JOBS 1
1150#else
1151# define DEBUG_JOBS 0
1152#endif
1153
1154#ifndef debug_printf_expand
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001155# define debug_printf_expand(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001156# define DEBUG_EXPAND 1
1157#else
1158# define DEBUG_EXPAND 0
1159#endif
1160
Denys Vlasenko1e811b12010-05-22 03:12:29 +02001161#ifndef debug_printf_varexp
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001162# define debug_printf_varexp(...) (indent(), fdprintf(2, __VA_ARGS__))
Denys Vlasenko1e811b12010-05-22 03:12:29 +02001163#endif
1164
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001165#ifndef debug_printf_glob
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001166# define debug_printf_glob(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001167# define DEBUG_GLOB 1
1168#else
1169# define DEBUG_GLOB 0
1170#endif
1171
Denys Vlasenko2db74612017-07-07 22:07:28 +02001172#ifndef debug_printf_redir
1173# define debug_printf_redir(...) (indent(), fdprintf(2, __VA_ARGS__))
1174#endif
1175
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001176#ifndef debug_printf_list
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001177# define debug_printf_list(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001178#endif
1179
1180#ifndef debug_printf_subst
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001181# define debug_printf_subst(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001182#endif
1183
1184#ifndef debug_printf_clean
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001185# define debug_printf_clean(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001186# define DEBUG_CLEAN 1
1187#else
1188# define DEBUG_CLEAN 0
1189#endif
1190
1191#if DEBUG_EXPAND
1192static void debug_print_strings(const char *prefix, char **vv)
1193{
1194 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001195 fdprintf(2, "%s:\n", prefix);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001196 while (*vv)
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001197 fdprintf(2, " '%s'\n", *vv++);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001198}
1199#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001200# define debug_print_strings(prefix, vv) ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001201#endif
1202
1203
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001204/* Leak hunting. Use hush_leaktool.sh for post-processing.
1205 */
1206#if LEAK_HUNTING
1207static void *xxmalloc(int lineno, size_t size)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001208{
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001209 void *ptr = xmalloc((size + 0xff) & ~0xff);
1210 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
1211 return ptr;
1212}
1213static void *xxrealloc(int lineno, void *ptr, size_t size)
1214{
1215 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
1216 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
1217 return ptr;
1218}
1219static char *xxstrdup(int lineno, const char *str)
1220{
1221 char *ptr = xstrdup(str);
1222 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
1223 return ptr;
1224}
1225static void xxfree(void *ptr)
1226{
1227 fdprintf(2, "free %p\n", ptr);
1228 free(ptr);
1229}
Denys Vlasenko8391c482010-05-22 17:50:43 +02001230# define xmalloc(s) xxmalloc(__LINE__, s)
1231# define xrealloc(p, s) xxrealloc(__LINE__, p, s)
1232# define xstrdup(s) xxstrdup(__LINE__, s)
1233# define free(p) xxfree(p)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001234#endif
1235
1236
1237/* Syntax and runtime errors. They always abort scripts.
1238 * In interactive use they usually discard unparsed and/or unexecuted commands
1239 * and return to the prompt.
1240 * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
1241 */
1242#if HUSH_DEBUG < 2
Denys Vlasenko606291b2009-09-23 23:15:43 +02001243# define die_if_script(lineno, ...) die_if_script(__VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001244# define syntax_error(lineno, msg) syntax_error(msg)
1245# define syntax_error_at(lineno, msg) syntax_error_at(msg)
1246# define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch)
1247# define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s)
1248# define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001249#endif
1250
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001251static void die_if_script(unsigned lineno, const char *fmt, ...)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001252{
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001253 va_list p;
1254
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001255#if HUSH_DEBUG >= 2
1256 bb_error_msg("hush.c:%u", lineno);
1257#endif
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001258 va_start(p, fmt);
1259 bb_verror_msg(fmt, p, NULL);
1260 va_end(p);
1261 if (!G_interactive_fd)
1262 xfunc_die();
Mike Frysinger6379bb42009-03-28 18:55:03 +00001263}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001264
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001265static void syntax_error(unsigned lineno UNUSED_PARAM, const char *msg)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001266{
1267 if (msg)
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001268 bb_error_msg("syntax error: %s", msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001269 else
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001270 bb_error_msg("syntax error");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001271}
1272
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001273static void syntax_error_at(unsigned lineno UNUSED_PARAM, const char *msg)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001274{
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001275 bb_error_msg("syntax error at '%s'", msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001276}
1277
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001278static void syntax_error_unterm_str(unsigned lineno UNUSED_PARAM, const char *s)
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001279{
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001280 bb_error_msg("syntax error: unterminated %s", s);
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001281}
1282
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001283static void syntax_error_unterm_ch(unsigned lineno, char ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001284{
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001285 char msg[2] = { ch, '\0' };
1286 syntax_error_unterm_str(lineno, msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001287}
1288
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001289static void syntax_error_unexpected_ch(unsigned lineno UNUSED_PARAM, int ch)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001290{
1291 char msg[2];
1292 msg[0] = ch;
1293 msg[1] = '\0';
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01001294#if HUSH_DEBUG >= 2
1295 bb_error_msg("hush.c:%u", lineno);
1296#endif
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001297 bb_error_msg("syntax error: unexpected %s", ch == EOF ? "EOF" : msg);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001298}
1299
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001300#if HUSH_DEBUG < 2
1301# undef die_if_script
1302# undef syntax_error
1303# undef syntax_error_at
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001304# undef syntax_error_unterm_ch
1305# undef syntax_error_unterm_str
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001306# undef syntax_error_unexpected_ch
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001307#else
Denys Vlasenko606291b2009-09-23 23:15:43 +02001308# define die_if_script(...) die_if_script(__LINE__, __VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001309# define syntax_error(msg) syntax_error(__LINE__, msg)
1310# define syntax_error_at(msg) syntax_error_at(__LINE__, msg)
1311# define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch)
1312# define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s)
1313# define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001314#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001315
Denis Vlasenko552433b2009-04-04 19:29:21 +00001316
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001317#if ENABLE_HUSH_INTERACTIVE
1318static void cmdedit_update_prompt(void);
1319#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001320# define cmdedit_update_prompt() ((void)0)
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001321#endif
1322
1323
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001324/* Utility functions
1325 */
Denis Vlasenko55789c62008-06-18 16:30:42 +00001326/* Replace each \x with x in place, return ptr past NUL. */
1327static char *unbackslash(char *src)
1328{
Denys Vlasenko71885402009-09-24 01:44:13 +02001329 char *dst = src = strchrnul(src, '\\');
Denis Vlasenko55789c62008-06-18 16:30:42 +00001330 while (1) {
1331 if (*src == '\\')
1332 src++;
1333 if ((*dst++ = *src++) == '\0')
1334 break;
1335 }
1336 return dst;
1337}
1338
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001339static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001340{
1341 int i;
1342 unsigned count1;
1343 unsigned count2;
1344 char **v;
1345
1346 v = strings;
1347 count1 = 0;
1348 if (v) {
1349 while (*v) {
1350 count1++;
1351 v++;
1352 }
1353 }
1354 count2 = 0;
1355 v = add;
1356 while (*v) {
1357 count2++;
1358 v++;
1359 }
1360 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
1361 v[count1 + count2] = NULL;
1362 i = count2;
1363 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001364 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001365 return v;
1366}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001367#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001368static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
1369{
1370 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
1371 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
1372 return ptr;
1373}
1374#define add_strings_to_strings(strings, add, need_to_dup) \
1375 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
1376#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001377
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001378/* Note: takes ownership of "add" ptr (it is not strdup'ed) */
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001379static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001380{
1381 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001382 v[0] = add;
1383 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001384 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001385}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001386#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001387static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
1388{
1389 char **ptr = add_string_to_strings(strings, add);
1390 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
1391 return ptr;
1392}
1393#define add_string_to_strings(strings, add) \
1394 xx_add_string_to_strings(__LINE__, strings, add)
1395#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001396
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001397static void free_strings(char **strings)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001398{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001399 char **v;
1400
1401 if (!strings)
1402 return;
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001403 v = strings;
1404 while (*v) {
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001405 free(*v);
1406 v++;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001407 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001408 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001409}
1410
Denys Vlasenko2db74612017-07-07 22:07:28 +02001411static int fcntl_F_DUPFD(int fd, int avoid_fd)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001412{
Denys Vlasenko2db74612017-07-07 22:07:28 +02001413 int newfd;
1414 repeat:
1415 newfd = fcntl(fd, F_DUPFD, avoid_fd + 1);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001416 if (newfd < 0) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02001417 if (errno == EBUSY)
1418 goto repeat;
1419 if (errno == EINTR)
1420 goto repeat;
1421 }
1422 return newfd;
1423}
1424
1425static int xdup_and_close(int fd, int F_DUPFD_maybe_CLOEXEC, int avoid_fd)
1426{
1427 int newfd;
1428 repeat:
1429 newfd = fcntl(fd, F_DUPFD_maybe_CLOEXEC, avoid_fd + 1);
1430 if (newfd < 0) {
1431 if (errno == EBUSY)
1432 goto repeat;
1433 if (errno == EINTR)
1434 goto repeat;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001435 /* fd was not open? */
1436 if (errno == EBADF)
1437 return fd;
1438 xfunc_die();
1439 }
1440 close(fd);
1441 return newfd;
1442}
1443
1444
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001445/* Manipulating the list of open FILEs */
1446static FILE *remember_FILE(FILE *fp)
1447{
1448 if (fp) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001449 struct FILE_list *n = xmalloc(sizeof(*n));
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001450 n->next = G.FILE_list;
1451 G.FILE_list = n;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001452 n->fp = fp;
1453 n->fd = fileno(fp);
1454 close_on_exec_on(n->fd);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001455 }
1456 return fp;
1457}
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001458static void fclose_and_forget(FILE *fp)
1459{
1460 struct FILE_list **pp = &G.FILE_list;
1461 while (*pp) {
1462 struct FILE_list *cur = *pp;
1463 if (cur->fp == fp) {
1464 *pp = cur->next;
1465 free(cur);
1466 break;
1467 }
1468 pp = &cur->next;
1469 }
1470 fclose(fp);
1471}
Denys Vlasenko2db74612017-07-07 22:07:28 +02001472static int save_FILEs_on_redirect(int fd, int avoid_fd)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001473{
1474 struct FILE_list *fl = G.FILE_list;
1475 while (fl) {
1476 if (fd == fl->fd) {
1477 /* We use it only on script files, they are all CLOEXEC */
Denys Vlasenko2db74612017-07-07 22:07:28 +02001478 fl->fd = xdup_and_close(fd, F_DUPFD_CLOEXEC, avoid_fd);
1479 debug_printf_redir("redirect_fd %d: matches a script fd, moving it to %d\n", fd, fl->fd);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001480 return 1;
1481 }
1482 fl = fl->next;
1483 }
1484 return 0;
1485}
1486static void restore_redirected_FILEs(void)
1487{
1488 struct FILE_list *fl = G.FILE_list;
1489 while (fl) {
1490 int should_be = fileno(fl->fp);
1491 if (fl->fd != should_be) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02001492 debug_printf_redir("restoring script fd from %d to %d\n", fl->fd, should_be);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001493 xmove_fd(fl->fd, should_be);
1494 fl->fd = should_be;
1495 }
1496 fl = fl->next;
1497 }
1498}
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02001499#if ENABLE_FEATURE_SH_STANDALONE && BB_MMU
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001500static void close_all_FILE_list(void)
1501{
1502 struct FILE_list *fl = G.FILE_list;
1503 while (fl) {
1504 /* fclose would also free FILE object.
1505 * It is disastrous if we share memory with a vforked parent.
1506 * I'm not sure we never come here after vfork.
1507 * Therefore just close fd, nothing more.
1508 */
1509 /*fclose(fl->fp); - unsafe */
1510 close(fl->fd);
1511 fl = fl->next;
1512 }
1513}
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001514#endif
1515
1516
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001517/* Helpers for setting new $n and restoring them back
1518 */
1519typedef struct save_arg_t {
1520 char *sv_argv0;
1521 char **sv_g_argv;
1522 int sv_g_argc;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001523 IF_HUSH_SET(smallint sv_g_malloced;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001524} save_arg_t;
1525
1526static void save_and_replace_G_args(save_arg_t *sv, char **argv)
1527{
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001528 sv->sv_argv0 = argv[0];
1529 sv->sv_g_argv = G.global_argv;
1530 sv->sv_g_argc = G.global_argc;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001531 IF_HUSH_SET(sv->sv_g_malloced = G.global_args_malloced;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001532
1533 argv[0] = G.global_argv[0]; /* retain $0 */
1534 G.global_argv = argv;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001535 IF_HUSH_SET(G.global_args_malloced = 0;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001536
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02001537 G.global_argc = 1 + string_array_len(argv + 1);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001538}
1539
1540static void restore_G_args(save_arg_t *sv, char **argv)
1541{
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001542#if ENABLE_HUSH_SET
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001543 if (G.global_args_malloced) {
1544 /* someone ran "set -- arg1 arg2 ...", undo */
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001545 char **pp = G.global_argv;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001546 while (*++pp) /* note: does not free $0 */
1547 free(*pp);
1548 free(G.global_argv);
1549 }
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001550#endif
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001551 argv[0] = sv->sv_argv0;
1552 G.global_argv = sv->sv_g_argv;
1553 G.global_argc = sv->sv_g_argc;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001554 IF_HUSH_SET(G.global_args_malloced = sv->sv_g_malloced;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001555}
1556
1557
Denis Vlasenkod5762932009-03-31 11:22:57 +00001558/* Basic theory of signal handling in shell
1559 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001560 * This does not describe what hush does, rather, it is current understanding
1561 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001562 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
1563 *
1564 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
1565 * is finished or backgrounded. It is the same in interactive and
1566 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001567 * a user trap handler is installed or a shell special one is in effect.
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001568 * ^C or ^Z from keyboard seems to execute "at once" because it usually
Denis Vlasenkod5762932009-03-31 11:22:57 +00001569 * backgrounds (i.e. stops) or kills all members of currently running
1570 * pipe.
1571 *
Denys Vlasenko8bd810b2013-11-28 01:50:01 +01001572 * Wait builtin is interruptible by signals for which user trap is set
Denis Vlasenkod5762932009-03-31 11:22:57 +00001573 * or by SIGINT in interactive shell.
1574 *
1575 * Trap handlers will execute even within trap handlers. (right?)
1576 *
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001577 * User trap handlers are forgotten when subshell ("(cmd)") is entered,
1578 * except for handlers set to '' (empty string).
Denis Vlasenkod5762932009-03-31 11:22:57 +00001579 *
1580 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001581 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001582 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001583 * Commands which are run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001584 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001585 *
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001586 * Ordinary commands have signals set to SIG_IGN/DFL as inherited
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001587 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001588 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001589 * Signals which differ from SIG_DFL action
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001590 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +00001591 *
1592 * SIGQUIT: ignore
1593 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001594 * SIGHUP (interactive):
1595 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +00001596 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00001597 * Note that ^Z is handled not by trapping SIGTSTP, but by seeing
1598 * that all pipe members are stopped. Try this in bash:
1599 * while :; do :; done - ^Z does not background it
1600 * (while :; do :; done) - ^Z backgrounds it
Denis Vlasenkod5762932009-03-31 11:22:57 +00001601 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001602 * of the command line, show prompt. NB: ^C does not send SIGINT
1603 * to interactive shell while shell is waiting for a pipe,
1604 * since shell is bg'ed (is not in foreground process group).
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001605 * Example 1: this waits 5 sec, but does not execute ls:
1606 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
1607 * Example 2: this does not wait and does not execute ls:
1608 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
1609 * Example 3: this does not wait 5 sec, but executes ls:
1610 * "sleep 5; ls -l" + press ^C
Denys Vlasenkob8709032011-05-08 21:20:01 +02001611 * Example 4: this does not wait and does not execute ls:
1612 * "sleep 5 & wait; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +00001613 *
1614 * (What happens to signals which are IGN on shell start?)
1615 * (What happens with signal mask on shell start?)
1616 *
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001617 * Old implementation
1618 * ==================
Denis Vlasenkod5762932009-03-31 11:22:57 +00001619 * We use in-kernel pending signal mask to determine which signals were sent.
1620 * We block all signals which we don't want to take action immediately,
1621 * i.e. we block all signals which need to have special handling as described
1622 * above, and all signals which have traps set.
1623 * After each pipe execution, we extract any pending signals via sigtimedwait()
1624 * and act on them.
1625 *
Denys Vlasenko10c01312011-05-11 11:49:21 +02001626 * unsigned special_sig_mask: a mask of such "special" signals
Denis Vlasenkod5762932009-03-31 11:22:57 +00001627 * sigset_t blocked_set: current blocked signal set
1628 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001629 * "trap - SIGxxx":
Denys Vlasenko10c01312011-05-11 11:49:21 +02001630 * clear bit in blocked_set unless it is also in special_sig_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001631 * "trap 'cmd' SIGxxx":
1632 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +00001633 * after [v]fork, if we plan to be a shell:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001634 * unblock signals with special interactive handling
1635 * (child shell is not interactive),
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001636 * unset all traps except '' (note: regardless of child shell's type - {}, (), etc)
Denis Vlasenkod5762932009-03-31 11:22:57 +00001637 * after [v]fork, if we plan to exec:
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001638 * POSIX says fork clears pending signal mask in child - no need to clear it.
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001639 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001640 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001641 * Note: as a result, we do not use signal handlers much. The only uses
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001642 * are to count SIGCHLDs
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001643 * and to restore tty pgrp on signal-induced exit.
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001644 *
Denys Vlasenko67f71862009-09-25 14:21:06 +02001645 * Note 2 (compat):
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001646 * Standard says "When a subshell is entered, traps that are not being ignored
1647 * are set to the default actions". bash interprets it so that traps which
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001648 * are set to '' (ignore) are NOT reset to defaults. We do the same.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001649 *
1650 * Problem: the above approach makes it unwieldy to catch signals while
Denys Vlasenkoe95738f2013-07-08 03:13:08 +02001651 * we are in read builtin, or while we read commands from stdin:
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001652 * masked signals are not visible!
1653 *
1654 * New implementation
1655 * ==================
1656 * We record each signal we are interested in by installing signal handler
1657 * for them - a bit like emulating kernel pending signal mask in userspace.
1658 * We are interested in: signals which need to have special handling
1659 * as described above, and all signals which have traps set.
Denys Vlasenko8bd810b2013-11-28 01:50:01 +01001660 * Signals are recorded in pending_set.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001661 * After each pipe execution, we extract any pending signals
1662 * and act on them.
1663 *
1664 * unsigned special_sig_mask: a mask of shell-special signals.
1665 * unsigned fatal_sig_mask: a mask of signals on which we restore tty pgrp.
1666 * char *traps[sig] if trap for sig is set (even if it's '').
1667 * sigset_t pending_set: set of sigs we received.
1668 *
1669 * "trap - SIGxxx":
1670 * if sig is in special_sig_mask, set handler back to:
1671 * record_pending_signo, or to IGN if it's a tty stop signal
1672 * if sig is in fatal_sig_mask, set handler back to sigexit.
1673 * else: set handler back to SIG_DFL
1674 * "trap 'cmd' SIGxxx":
1675 * set handler to record_pending_signo.
1676 * "trap '' SIGxxx":
1677 * set handler to SIG_IGN.
1678 * after [v]fork, if we plan to be a shell:
1679 * set signals with special interactive handling to SIG_DFL
1680 * (because child shell is not interactive),
1681 * unset all traps except '' (note: regardless of child shell's type - {}, (), etc)
1682 * after [v]fork, if we plan to exec:
1683 * POSIX says fork clears pending signal mask in child - no need to clear it.
1684 *
1685 * To make wait builtin interruptible, we handle SIGCHLD as special signal,
1686 * otherwise (if we leave it SIG_DFL) sigsuspend in wait builtin will not wake up on it.
1687 *
1688 * Note (compat):
1689 * Standard says "When a subshell is entered, traps that are not being ignored
1690 * are set to the default actions". bash interprets it so that traps which
1691 * are set to '' (ignore) are NOT reset to defaults. We do the same.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001692 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001693enum {
1694 SPECIAL_INTERACTIVE_SIGS = 0
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001695 | (1 << SIGTERM)
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001696 | (1 << SIGINT)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001697 | (1 << SIGHUP)
1698 ,
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001699 SPECIAL_JOBSTOP_SIGS = 0
Mike Frysinger38478a62009-05-20 04:48:06 -04001700#if ENABLE_HUSH_JOB
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001701 | (1 << SIGTTIN)
1702 | (1 << SIGTTOU)
1703 | (1 << SIGTSTP)
1704#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001705 ,
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001706};
Denis Vlasenkod5762932009-03-31 11:22:57 +00001707
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001708static void record_pending_signo(int sig)
Denys Vlasenko54e9e122011-05-09 00:52:15 +02001709{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001710 sigaddset(&G.pending_set, sig);
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001711#if ENABLE_HUSH_FAST
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001712 if (sig == SIGCHLD) {
1713 G.count_SIGCHLD++;
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001714//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 +02001715 }
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001716#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001717}
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001718
Denys Vlasenko0806e402011-05-12 23:06:20 +02001719static sighandler_t install_sighandler(int sig, sighandler_t handler)
1720{
1721 struct sigaction old_sa;
1722
1723 /* We could use signal() to install handlers... almost:
1724 * except that we need to mask ALL signals while handlers run.
1725 * I saw signal nesting in strace, race window isn't small.
1726 * SA_RESTART is also needed, but in Linux, signal()
1727 * sets SA_RESTART too.
1728 */
1729 /* memset(&G.sa, 0, sizeof(G.sa)); - already done */
1730 /* sigfillset(&G.sa.sa_mask); - already done */
1731 /* G.sa.sa_flags = SA_RESTART; - already done */
1732 G.sa.sa_handler = handler;
1733 sigaction(sig, &G.sa, &old_sa);
1734 return old_sa.sa_handler;
1735}
1736
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001737static void hush_exit(int exitcode) NORETURN;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001738
Denys Vlasenkob6afcc72016-12-12 16:30:20 +01001739static void restore_ttypgrp_and__exit(void) NORETURN;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001740static void restore_ttypgrp_and__exit(void)
1741{
1742 /* xfunc has failed! die die die */
1743 /* no EXIT traps, this is an escape hatch! */
1744 G.exiting = 1;
1745 hush_exit(xfunc_error_retval);
1746}
1747
Denys Vlasenkob6afcc72016-12-12 16:30:20 +01001748#if ENABLE_HUSH_JOB
1749
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001750/* Needed only on some libc:
1751 * It was observed that on exit(), fgetc'ed buffered data
1752 * gets "unwound" via lseek(fd, -NUM, SEEK_CUR).
1753 * With the net effect that even after fork(), not vfork(),
1754 * exit() in NOEXECed applet in "sh SCRIPT":
1755 * noexec_applet_here
1756 * echo END_OF_SCRIPT
1757 * lseeks fd in input FILE object from EOF to "e" in "echo END_OF_SCRIPT".
1758 * This makes "echo END_OF_SCRIPT" executed twice.
1759 * Similar problems can be seen with die_if_script() -> xfunc_die()
1760 * and in `cmd` handling.
1761 * If set as die_func(), this makes xfunc_die() exit via _exit(), not exit():
1762 */
Denys Vlasenkob6afcc72016-12-12 16:30:20 +01001763static void fflush_and__exit(void) NORETURN;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001764static void fflush_and__exit(void)
1765{
1766 fflush_all();
1767 _exit(xfunc_error_retval);
1768}
1769
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001770/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001771# define disable_restore_tty_pgrp_on_exit() (die_func = fflush_and__exit)
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001772/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001773# define enable_restore_tty_pgrp_on_exit() (die_func = restore_ttypgrp_and__exit)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001774
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001775/* Restores tty foreground process group, and exits.
1776 * May be called as signal handler for fatal signal
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001777 * (will resend signal to itself, producing correct exit state)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001778 * or called directly with -EXITCODE.
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001779 * We also call it if xfunc is exiting.
1780 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001781static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001782static void sigexit(int sig)
1783{
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001784 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001785 * tty pgrp then, only top-level shell process does that */
Denys Vlasenkoebc1ee22011-05-12 10:59:18 +02001786 if (G_saved_tty_pgrp && getpid() == G.root_pid) {
1787 /* Disable all signals: job control, SIGPIPE, etc.
1788 * Mostly paranoid measure, to prevent infinite SIGTTOU.
1789 */
1790 sigprocmask_allsigs(SIG_BLOCK);
Mike Frysinger38478a62009-05-20 04:48:06 -04001791 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
Denys Vlasenkoebc1ee22011-05-12 10:59:18 +02001792 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001793
1794 /* Not a signal, just exit */
1795 if (sig <= 0)
1796 _exit(- sig);
1797
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001798 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001799}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001800#else
1801
Denys Vlasenko8391c482010-05-22 17:50:43 +02001802# define disable_restore_tty_pgrp_on_exit() ((void)0)
1803# define enable_restore_tty_pgrp_on_exit() ((void)0)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001804
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001805#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001806
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001807static sighandler_t pick_sighandler(unsigned sig)
1808{
1809 sighandler_t handler = SIG_DFL;
1810 if (sig < sizeof(unsigned)*8) {
1811 unsigned sigmask = (1 << sig);
1812
1813#if ENABLE_HUSH_JOB
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001814 /* is sig fatal? */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001815 if (G_fatal_sig_mask & sigmask)
1816 handler = sigexit;
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001817 else
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001818#endif
1819 /* sig has special handling? */
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001820 if (G.special_sig_mask & sigmask) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001821 handler = record_pending_signo;
Denys Vlasenko0c40a732011-05-12 09:50:12 +02001822 /* TTIN/TTOU/TSTP can't be set to record_pending_signo
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001823 * in order to ignore them: they will be raised
Denys Vlasenkof58f7052011-05-12 02:10:33 +02001824 * in an endless loop when we try to do some
1825 * terminal ioctls! We do have to _ignore_ these.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001826 */
1827 if (SPECIAL_JOBSTOP_SIGS & sigmask)
1828 handler = SIG_IGN;
Denys Vlasenko0c40a732011-05-12 09:50:12 +02001829 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001830 }
1831 return handler;
1832}
1833
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001834/* Restores tty foreground process group, and exits. */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001835static void hush_exit(int exitcode)
1836{
Denys Vlasenkobede2152011-09-04 16:12:33 +02001837#if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1838 save_history(G.line_input_state);
1839#endif
1840
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01001841 fflush_all();
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001842 if (G.exiting <= 0 && G_traps && G_traps[0] && G_traps[0][0]) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001843 char *argv[3];
1844 /* argv[0] is unused */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001845 argv[1] = G_traps[0];
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001846 argv[2] = NULL;
Denys Vlasenkoa110c902010-09-12 15:38:04 +02001847 G.exiting = 1; /* prevent EXIT trap recursion */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001848 /* Note: G_traps[0] is not cleared!
Denys Vlasenkode8c3f62010-09-12 16:13:44 +02001849 * "trap" will still show it, if executed
1850 * in the handler */
1851 builtin_eval(argv);
Denis Vlasenkod5762932009-03-31 11:22:57 +00001852 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001853
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001854#if ENABLE_FEATURE_CLEAN_UP
1855 {
1856 struct variable *cur_var;
1857 if (G.cwd != bb_msg_unknown)
1858 free((char*)G.cwd);
1859 cur_var = G.top_var;
1860 while (cur_var) {
1861 struct variable *tmp = cur_var;
1862 if (!cur_var->max_len)
1863 free(cur_var->varstr);
1864 cur_var = cur_var->next;
1865 free(tmp);
1866 }
1867 }
1868#endif
1869
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001870 fflush_all();
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02001871#if ENABLE_HUSH_JOB
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001872 sigexit(- (exitcode & 0xff));
1873#else
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02001874 _exit(exitcode);
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001875#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001876}
1877
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02001878
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001879//TODO: return a mask of ALL handled sigs?
1880static int check_and_run_traps(void)
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001881{
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001882 int last_sig = 0;
1883
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001884 while (1) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001885 int sig;
Denys Vlasenko80542ba2011-05-08 21:23:43 +02001886
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001887 if (sigisemptyset(&G.pending_set))
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001888 break;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001889 sig = 0;
1890 do {
1891 sig++;
1892 if (sigismember(&G.pending_set, sig)) {
1893 sigdelset(&G.pending_set, sig);
1894 goto got_sig;
1895 }
1896 } while (sig < NSIG);
1897 break;
Denys Vlasenkob8709032011-05-08 21:20:01 +02001898 got_sig:
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001899 if (G_traps && G_traps[sig]) {
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001900 debug_printf_exec("%s: sig:%d handler:'%s'\n", __func__, sig, G.traps[sig]);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001901 if (G_traps[sig][0]) {
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001902 /* We have user-defined handler */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001903 smalluint save_rcode;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001904 char *argv[3];
1905 /* argv[0] is unused */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001906 argv[1] = G_traps[sig];
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001907 argv[2] = NULL;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001908 save_rcode = G.last_exitcode;
1909 builtin_eval(argv);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01001910//FIXME: shouldn't it be set to 128 + sig instead?
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001911 G.last_exitcode = save_rcode;
Denys Vlasenkob8709032011-05-08 21:20:01 +02001912 last_sig = sig;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001913 } /* else: "" trap, ignoring signal */
1914 continue;
1915 }
1916 /* not a trap: special action */
1917 switch (sig) {
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001918 case SIGINT:
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001919 debug_printf_exec("%s: sig:%d default SIGINT handler\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001920 G.flag_SIGINT = 1;
Denys Vlasenkob8709032011-05-08 21:20:01 +02001921 last_sig = sig;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001922 break;
1923#if ENABLE_HUSH_JOB
1924 case SIGHUP: {
1925 struct pipe *job;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001926 debug_printf_exec("%s: sig:%d default SIGHUP handler\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001927 /* bash is observed to signal whole process groups,
1928 * not individual processes */
1929 for (job = G.job_list; job; job = job->next) {
1930 if (job->pgrp <= 0)
1931 continue;
1932 debug_printf_exec("HUPing pgrp %d\n", job->pgrp);
1933 if (kill(- job->pgrp, SIGHUP) == 0)
1934 kill(- job->pgrp, SIGCONT);
1935 }
1936 sigexit(SIGHUP);
1937 }
1938#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001939#if ENABLE_HUSH_FAST
1940 case SIGCHLD:
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001941 debug_printf_exec("%s: sig:%d default SIGCHLD handler\n", __func__, sig);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001942 G.count_SIGCHLD++;
1943//bb_error_msg("[%d] check_and_run_traps: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
1944 /* Note:
Denys Vlasenko10ad6222017-04-17 16:13:32 +02001945 * We don't do 'last_sig = sig' here -> NOT returning this sig.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001946 * This simplifies wait builtin a bit.
1947 */
1948 break;
1949#endif
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001950 default: /* ignored: */
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001951 debug_printf_exec("%s: sig:%d default handling is to ignore\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001952 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001953 /* Note:
Denys Vlasenko10ad6222017-04-17 16:13:32 +02001954 * We don't do 'last_sig = sig' here -> NOT returning this sig.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001955 * Example: wait is not interrupted by TERM
Denys Vlasenkob8709032011-05-08 21:20:01 +02001956 * in interactive shell, because TERM is ignored.
1957 */
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001958 break;
1959 }
1960 }
1961 return last_sig;
1962}
1963
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001964
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001965static const char *get_cwd(int force)
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001966{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001967 if (force || G.cwd == NULL) {
1968 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1969 * we must not try to free(bb_msg_unknown) */
1970 if (G.cwd == bb_msg_unknown)
1971 G.cwd = NULL;
1972 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1973 if (!G.cwd)
1974 G.cwd = bb_msg_unknown;
1975 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00001976 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001977}
1978
Denis Vlasenko83506862007-11-23 13:11:42 +00001979
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001980/*
1981 * Shell and environment variable support
1982 */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001983static struct variable **get_ptr_to_local_var(const char *name, unsigned len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001984{
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001985 struct variable **pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001986 struct variable *cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001987
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001988 pp = &G.top_var;
1989 while ((cur = *pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001990 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001991 return pp;
1992 pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001993 }
1994 return NULL;
1995}
1996
Denys Vlasenko03dad222010-01-12 23:29:57 +01001997static const char* FAST_FUNC get_local_var_value(const char *name)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001998{
Denys Vlasenko29082232010-07-16 13:52:32 +02001999 struct variable **vpp;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002000 unsigned len = strlen(name);
Denys Vlasenko29082232010-07-16 13:52:32 +02002001
2002 if (G.expanded_assignments) {
2003 char **cpp = G.expanded_assignments;
Denys Vlasenko29082232010-07-16 13:52:32 +02002004 while (*cpp) {
2005 char *cp = *cpp;
2006 if (strncmp(cp, name, len) == 0 && cp[len] == '=')
2007 return cp + len + 1;
2008 cpp++;
2009 }
2010 }
2011
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002012 vpp = get_ptr_to_local_var(name, len);
Denys Vlasenko29082232010-07-16 13:52:32 +02002013 if (vpp)
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002014 return (*vpp)->varstr + len + 1;
Denys Vlasenko29082232010-07-16 13:52:32 +02002015
Denys Vlasenkodea47882009-10-09 15:40:49 +02002016 if (strcmp(name, "PPID") == 0)
2017 return utoa(G.root_ppid);
2018 // bash compat: UID? EUID?
Denys Vlasenko20b3d142009-10-09 20:59:39 +02002019#if ENABLE_HUSH_RANDOM_SUPPORT
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002020 if (strcmp(name, "RANDOM") == 0)
Denys Vlasenko20b3d142009-10-09 20:59:39 +02002021 return utoa(next_random(&G.random_gen));
2022#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002023 return NULL;
2024}
2025
2026/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00002027 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002028 * flg_export:
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002029 * 0: do not change export flag
2030 * (if creating new variable, flag will be 0)
2031 * 1: set export flag and putenv the variable
2032 * -1: clear export flag and unsetenv the variable
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002033 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00002034 */
Denys Vlasenko295fef82009-06-03 12:47:26 +02002035#if !BB_MMU && ENABLE_HUSH_LOCAL
2036/* all params are used */
2037#elif BB_MMU && ENABLE_HUSH_LOCAL
2038#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
2039 set_local_var(str, flg_export, local_lvl)
2040#elif BB_MMU && !ENABLE_HUSH_LOCAL
2041#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002042 set_local_var(str, flg_export)
Denys Vlasenko295fef82009-06-03 12:47:26 +02002043#elif !BB_MMU && !ENABLE_HUSH_LOCAL
2044#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
2045 set_local_var(str, flg_export, flg_read_only)
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002046#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02002047static int set_local_var(char *str, int flg_export, int local_lvl, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002048{
Denys Vlasenko295fef82009-06-03 12:47:26 +02002049 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002050 struct variable *cur;
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002051 char *free_me = NULL;
Denis Vlasenko950bd722009-04-21 11:23:56 +00002052 char *eq_sign;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002053 int name_len;
2054
Denis Vlasenko950bd722009-04-21 11:23:56 +00002055 eq_sign = strchr(str, '=');
2056 if (!eq_sign) { /* not expected to ever happen? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002057 free(str);
2058 return -1;
2059 }
2060
Denis Vlasenko950bd722009-04-21 11:23:56 +00002061 name_len = eq_sign - str + 1; /* including '=' */
Denys Vlasenko295fef82009-06-03 12:47:26 +02002062 var_pp = &G.top_var;
2063 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002064 if (strncmp(cur->varstr, str, name_len) != 0) {
Denys Vlasenko295fef82009-06-03 12:47:26 +02002065 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002066 continue;
2067 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002068
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002069 /* We found an existing var with this name */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002070 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002071#if !BB_MMU
2072 if (!flg_read_only)
2073#endif
2074 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002075 free(str);
2076 return -1;
2077 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02002078 if (flg_export == -1) { // "&& cur->flg_export" ?
Denis Vlasenko950bd722009-04-21 11:23:56 +00002079 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
2080 *eq_sign = '\0';
2081 unsetenv(str);
2082 *eq_sign = '=';
2083 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02002084#if ENABLE_HUSH_LOCAL
2085 if (cur->func_nest_level < local_lvl) {
2086 /* New variable is declared as local,
2087 * and existing one is global, or local
2088 * from enclosing function.
2089 * Remove and save old one: */
2090 *var_pp = cur->next;
2091 cur->next = *G.shadowed_vars_pp;
2092 *G.shadowed_vars_pp = cur;
2093 /* bash 3.2.33(1) and exported vars:
2094 * # export z=z
2095 * # f() { local z=a; env | grep ^z; }
2096 * # f
2097 * z=a
2098 * # env | grep ^z
2099 * z=z
2100 */
2101 if (cur->flg_export)
2102 flg_export = 1;
2103 break;
2104 }
2105#endif
Denis Vlasenko950bd722009-04-21 11:23:56 +00002106 if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002107 free_and_exp:
2108 free(str);
2109 goto exp;
2110 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02002111 if (cur->max_len != 0) {
2112 if (cur->max_len >= strlen(str)) {
2113 /* This one is from startup env, reuse space */
2114 strcpy(cur->varstr, str);
2115 goto free_and_exp;
2116 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002117 /* Can't reuse */
2118 cur->max_len = 0;
2119 goto set_str_and_exp;
Denys Vlasenko295fef82009-06-03 12:47:26 +02002120 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002121 /* max_len == 0 signifies "malloced" var, which we can
2122 * (and have to) free. But we can't free(cur->varstr) here:
2123 * if cur->flg_export is 1, it is in the environment.
2124 * We should either unsetenv+free, or wait until putenv,
2125 * then putenv(new)+free(old).
2126 */
2127 free_me = cur->varstr;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002128 goto set_str_and_exp;
2129 }
2130
Denys Vlasenko295fef82009-06-03 12:47:26 +02002131 /* Not found - create new variable struct */
2132 cur = xzalloc(sizeof(*cur));
2133#if ENABLE_HUSH_LOCAL
2134 cur->func_nest_level = local_lvl;
2135#endif
2136 cur->next = *var_pp;
2137 *var_pp = cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002138
2139 set_str_and_exp:
2140 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00002141#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002142 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00002143#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002144 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00002145 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002146 cur->flg_export = 1;
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002147 if (name_len == 4 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
2148 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002149 if (cur->flg_export) {
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002150 if (flg_export == -1) {
2151 cur->flg_export = 0;
2152 /* unsetenv was already done */
2153 } else {
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002154 int i;
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002155 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002156 i = putenv(cur->varstr);
2157 /* only now we can free old exported malloced string */
2158 free(free_me);
2159 return i;
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002160 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002161 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002162 free(free_me);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002163 return 0;
2164}
2165
Denys Vlasenko6db47842009-09-05 20:15:17 +02002166/* Used at startup and after each cd */
2167static void set_pwd_var(int exp)
2168{
2169 set_local_var(xasprintf("PWD=%s", get_cwd(/*force:*/ 1)),
2170 /*exp:*/ exp, /*lvl:*/ 0, /*ro:*/ 0);
2171}
2172
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002173static int unset_local_var_len(const char *name, int name_len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002174{
2175 struct variable *cur;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002176 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002177
2178 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00002179 return EXIT_SUCCESS;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002180 var_pp = &G.top_var;
2181 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002182 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
2183 if (cur->flg_read_only) {
2184 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00002185 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002186 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002187 *var_pp = cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002188 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
2189 bb_unsetenv(cur->varstr);
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002190 if (name_len == 3 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
2191 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002192 if (!cur->max_len)
2193 free(cur->varstr);
2194 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00002195 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002196 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002197 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002198 }
Mike Frysingerd690f682009-03-30 06:50:54 +00002199 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002200}
2201
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01002202#if ENABLE_HUSH_UNSET
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002203static int unset_local_var(const char *name)
2204{
2205 return unset_local_var_len(name, strlen(name));
2206}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01002207#endif
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002208
2209static void unset_vars(char **strings)
2210{
2211 char **v;
2212
2213 if (!strings)
2214 return;
2215 v = strings;
2216 while (*v) {
2217 const char *eq = strchrnul(*v, '=');
2218 unset_local_var_len(*v, (int)(eq - *v));
2219 v++;
2220 }
2221 free(strings);
2222}
2223
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01002224#if BASH_HOSTNAME_VAR || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_READ
Denys Vlasenko03dad222010-01-12 23:29:57 +01002225static void FAST_FUNC set_local_var_from_halves(const char *name, const char *val)
Mike Frysinger98c52642009-04-02 10:02:37 +00002226{
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002227 char *var = xasprintf("%s=%s", name, val);
Denys Vlasenko03dad222010-01-12 23:29:57 +01002228 set_local_var(var, /*flags:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00002229}
Denys Vlasenkocc2fd5a2017-01-09 06:19:55 +01002230#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002231
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002232
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002233/*
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002234 * Helpers for "var1=val1 var2=val2 cmd" feature
2235 */
2236static void add_vars(struct variable *var)
2237{
2238 struct variable *next;
2239
2240 while (var) {
2241 next = var->next;
2242 var->next = G.top_var;
2243 G.top_var = var;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002244 if (var->flg_export) {
2245 debug_printf_env("%s: restoring exported '%s'\n", __func__, var->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002246 putenv(var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002247 } else {
Denys Vlasenko295fef82009-06-03 12:47:26 +02002248 debug_printf_env("%s: restoring variable '%s'\n", __func__, var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002249 }
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002250 var = next;
2251 }
2252}
2253
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002254static struct variable *set_vars_and_save_old(char **strings)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002255{
2256 char **s;
2257 struct variable *old = NULL;
2258
2259 if (!strings)
2260 return old;
2261 s = strings;
2262 while (*s) {
2263 struct variable *var_p;
2264 struct variable **var_pp;
2265 char *eq;
2266
2267 eq = strchr(*s, '=');
2268 if (eq) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002269 var_pp = get_ptr_to_local_var(*s, eq - *s);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002270 if (var_pp) {
2271 /* Remove variable from global linked list */
2272 var_p = *var_pp;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002273 debug_printf_env("%s: removing '%s'\n", __func__, var_p->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002274 *var_pp = var_p->next;
2275 /* Add it to returned list */
2276 var_p->next = old;
2277 old = var_p;
2278 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02002279 set_local_var(*s, /*exp:*/ 1, /*lvl:*/ 0, /*ro:*/ 0);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002280 }
2281 s++;
2282 }
2283 return old;
2284}
2285
2286
2287/*
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002288 * Unicode helper
2289 */
2290static void reinit_unicode_for_hush(void)
2291{
2292 /* Unicode support should be activated even if LANG is set
2293 * _during_ shell execution, not only if it was set when
2294 * shell was started. Therefore, re-check LANG every time:
2295 */
Denys Vlasenko841f8332014-08-13 10:09:49 +02002296 if (ENABLE_FEATURE_CHECK_UNICODE_IN_ENV
2297 || ENABLE_UNICODE_USING_LOCALE
2298 ) {
2299 const char *s = get_local_var_value("LC_ALL");
2300 if (!s) s = get_local_var_value("LC_CTYPE");
2301 if (!s) s = get_local_var_value("LANG");
2302 reinit_unicode(s);
2303 }
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002304}
2305
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002306/*
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002307 * in_str support (strings, and "strings" read from files).
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002308 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002309
2310#if ENABLE_HUSH_INTERACTIVE
Denys Vlasenko4074d492016-09-30 01:49:53 +02002311/* To test correct lineedit/interactive behavior, type from command line:
2312 * echo $P\
2313 * \
2314 * AT\
2315 * H\
2316 * \
Denys Vlasenko10ad6222017-04-17 16:13:32 +02002317 * It exercises a lot of corner cases.
Denys Vlasenko4074d492016-09-30 01:49:53 +02002318 */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002319static void cmdedit_update_prompt(void)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002320{
Mike Frysingerec2c6552009-03-28 12:24:44 +00002321 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002322 G.PS1 = get_local_var_value("PS1");
Mike Frysingerec2c6552009-03-28 12:24:44 +00002323 if (G.PS1 == NULL)
2324 G.PS1 = "\\w \\$ ";
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002325 G.PS2 = get_local_var_value("PS2");
Denys Vlasenko690ad242009-04-30 21:24:24 +02002326 } else {
Mike Frysingerec2c6552009-03-28 12:24:44 +00002327 G.PS1 = NULL;
Denys Vlasenko690ad242009-04-30 21:24:24 +02002328 }
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002329 if (G.PS2 == NULL)
2330 G.PS2 = "> ";
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002331}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002332static const char *setup_prompt_string(int promptmode)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002333{
2334 const char *prompt_str;
2335 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00002336 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
2337 /* Set up the prompt */
2338 if (promptmode == 0) { /* PS1 */
2339 free((char*)G.PS1);
Denys Vlasenko6db47842009-09-05 20:15:17 +02002340 /* bash uses $PWD value, even if it is set by user.
2341 * It uses current dir only if PWD is unset.
2342 * We always use current dir. */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002343 G.PS1 = xasprintf("%s %c ", get_cwd(0), (geteuid() != 0) ? '$' : '#');
Mike Frysingerec2c6552009-03-28 12:24:44 +00002344 prompt_str = G.PS1;
2345 } else
2346 prompt_str = G.PS2;
2347 } else
2348 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denys Vlasenko4074d492016-09-30 01:49:53 +02002349 debug_printf("prompt_str '%s'\n", prompt_str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002350 return prompt_str;
2351}
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002352static int get_user_input(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002353{
2354 int r;
2355 const char *prompt_str;
2356
2357 prompt_str = setup_prompt_string(i->promptmode);
Denys Vlasenko8391c482010-05-22 17:50:43 +02002358# if ENABLE_FEATURE_EDITING
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002359 for (;;) {
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002360 reinit_unicode_for_hush();
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002361 if (G.flag_SIGINT) {
2362 /* There was ^C'ed, make it look prettier: */
2363 bb_putchar('\n');
2364 G.flag_SIGINT = 0;
2365 }
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00002366 /* buglet: SIGINT will not make new prompt to appear _at once_,
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002367 * only after <Enter>. (^C works immediately) */
Denys Vlasenko0448c552016-09-29 20:25:44 +02002368 r = read_line_input(G.line_input_state, prompt_str,
2369 G.user_input_buf, CONFIG_FEATURE_EDITING_MAX_LEN-1,
2370 /*timeout*/ -1
2371 );
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002372 /* read_line_input intercepts ^C, "convert" it to SIGINT */
2373 if (r == 0) {
2374 write(STDOUT_FILENO, "^C", 2);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002375 raise(SIGINT);
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002376 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002377 check_and_run_traps();
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002378 if (r != 0 && !G.flag_SIGINT)
2379 break;
2380 /* ^C or SIGINT: repeat */
2381 G.last_exitcode = 128 + SIGINT;
2382 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002383 if (r < 0) {
2384 /* EOF/error detected */
Denys Vlasenko4074d492016-09-30 01:49:53 +02002385 i->p = NULL;
2386 i->peek_buf[0] = r = EOF;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002387 return r;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002388 }
Denys Vlasenko4074d492016-09-30 01:49:53 +02002389 i->p = G.user_input_buf;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002390 return (unsigned char)*i->p++;
Denys Vlasenko8391c482010-05-22 17:50:43 +02002391# else
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002392 for (;;) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00002393 G.flag_SIGINT = 0;
Denys Vlasenkob8709032011-05-08 21:20:01 +02002394 if (i->last_char == '\0' || i->last_char == '\n') {
2395 /* Why check_and_run_traps here? Try this interactively:
2396 * $ trap 'echo INT' INT; (sleep 2; kill -INT $$) &
2397 * $ <[enter], repeatedly...>
2398 * Without check_and_run_traps, handler never runs.
2399 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002400 check_and_run_traps();
Denys Vlasenkob8709032011-05-08 21:20:01 +02002401 fputs(prompt_str, stdout);
2402 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002403 fflush_all();
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002404//FIXME: here ^C or SIGINT will have effect only after <Enter>
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002405 r = fgetc(i->file);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002406 /* In !ENABLE_FEATURE_EDITING we don't use read_line_input,
2407 * no ^C masking happens during fgetc, no special code for ^C:
2408 * it generates SIGINT as usual.
2409 */
2410 check_and_run_traps();
2411 if (G.flag_SIGINT)
2412 G.last_exitcode = 128 + SIGINT;
2413 if (r != '\0')
2414 break;
2415 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002416 return r;
Denys Vlasenko8391c482010-05-22 17:50:43 +02002417# endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002418}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002419/* This is the magic location that prints prompts
2420 * and gets data back from the user */
Denys Vlasenko4074d492016-09-30 01:49:53 +02002421static int fgetc_interactive(struct in_str *i)
2422{
2423 int ch;
2424 /* If it's interactive stdin, get new line. */
2425 if (G_interactive_fd && i->file == stdin) {
2426 /* Returns first char (or EOF), the rest is in i->p[] */
2427 ch = get_user_input(i);
2428 i->promptmode = 1; /* PS2 */
2429 } else {
2430 /* Not stdin: script file, sourced file, etc */
2431 do ch = fgetc(i->file); while (ch == '\0');
2432 }
2433 return ch;
2434}
2435#else
2436static inline int fgetc_interactive(struct in_str *i)
2437{
2438 int ch;
2439 do ch = fgetc(i->file); while (ch == '\0');
2440 return ch;
2441}
2442#endif /* INTERACTIVE */
2443
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002444static int i_getch(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002445{
2446 int ch;
2447
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002448 if (!i->file) {
2449 /* string-based in_str */
2450 ch = (unsigned char)*i->p;
2451 if (ch != '\0') {
2452 i->p++;
2453 i->last_char = ch;
2454 return ch;
2455 }
2456 return EOF;
2457 }
2458
2459 /* FILE-based in_str */
2460
Denys Vlasenko4074d492016-09-30 01:49:53 +02002461#if ENABLE_FEATURE_EDITING
2462 /* This can be stdin, check line editing char[] buffer */
2463 if (i->p && *i->p != '\0') {
2464 ch = (unsigned char)*i->p++;
2465 goto out;
2466 }
2467#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002468 /* peek_buf[] is an int array, not char. Can contain EOF. */
2469 ch = i->peek_buf[0];
Denys Vlasenko4074d492016-09-30 01:49:53 +02002470 if (ch != 0) {
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002471 int ch2 = i->peek_buf[1];
2472 i->peek_buf[0] = ch2;
2473 if (ch2 == 0) /* very likely, avoid redundant write */
2474 goto out;
2475 i->peek_buf[1] = 0;
2476 goto out;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002477 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002478
Denys Vlasenko4074d492016-09-30 01:49:53 +02002479 ch = fgetc_interactive(i);
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002480 out:
Denis Vlasenko913a2012009-04-05 22:17:04 +00002481 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02002482 i->last_char = ch;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002483 return ch;
2484}
2485
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002486static int i_peek(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002487{
2488 int ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002489
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002490 if (!i->file) {
2491 /* string-based in_str */
2492 /* Doesn't report EOF on NUL. None of the callers care. */
2493 return (unsigned char)*i->p;
2494 }
2495
2496 /* FILE-based in_str */
2497
Denys Vlasenko4074d492016-09-30 01:49:53 +02002498#if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002499 /* This can be stdin, check line editing char[] buffer */
2500 if (i->p && *i->p != '\0')
2501 return (unsigned char)*i->p;
2502#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002503 /* peek_buf[] is an int array, not char. Can contain EOF. */
2504 ch = i->peek_buf[0];
Denys Vlasenko4074d492016-09-30 01:49:53 +02002505 if (ch != 0)
2506 return ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002507
Denys Vlasenko4074d492016-09-30 01:49:53 +02002508 /* Need to get a new char */
2509 ch = fgetc_interactive(i);
2510 debug_printf("file_peek: got '%c' %d\n", ch, ch);
2511
2512 /* Save it by either rolling back line editing buffer, or in i->peek_buf[0] */
2513#if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE
2514 if (i->p) {
2515 i->p -= 1;
2516 return ch;
2517 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002518#endif
Denys Vlasenko4074d492016-09-30 01:49:53 +02002519 i->peek_buf[0] = ch;
2520 /*i->peek_buf[1] = 0; - already is */
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002521 return ch;
2522}
2523
Denys Vlasenko4074d492016-09-30 01:49:53 +02002524/* Only ever called if i_peek() was called, and did not return EOF.
2525 * IOW: we know the previous peek saw an ordinary char, not EOF, not NUL,
2526 * not end-of-line. Therefore we never need to read a new editing line here.
2527 */
2528static int i_peek2(struct in_str *i)
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002529{
Denys Vlasenko4074d492016-09-30 01:49:53 +02002530 int ch;
2531
2532 /* There are two cases when i->p[] buffer exists.
2533 * (1) it's a string in_str.
Denys Vlasenko08755f92016-09-30 02:02:25 +02002534 * (2) It's a file, and we have a saved line editing buffer.
Denys Vlasenko4074d492016-09-30 01:49:53 +02002535 * In both cases, we know that i->p[0] exists and not NUL, and
2536 * the peek2 result is in i->p[1].
2537 */
2538 if (i->p)
2539 return (unsigned char)i->p[1];
2540
2541 /* Now we know it is a file-based in_str. */
2542
2543 /* peek_buf[] is an int array, not char. Can contain EOF. */
2544 /* Is there 2nd char? */
2545 ch = i->peek_buf[1];
2546 if (ch == 0) {
2547 /* We did not read it yet, get it now */
2548 do ch = fgetc(i->file); while (ch == '\0');
2549 i->peek_buf[1] = ch;
2550 }
2551
2552 debug_printf("file_peek2: got '%c' %d\n", ch, ch);
2553 return ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002554}
2555
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002556static void setup_file_in_str(struct in_str *i, FILE *f)
2557{
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002558 memset(i, 0, sizeof(*i));
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002559 /* i->promptmode = 0; - PS1 (memset did it) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002560 i->file = f;
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002561 /* i->p = NULL; */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002562}
2563
2564static void setup_string_in_str(struct in_str *i, const char *s)
2565{
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002566 memset(i, 0, sizeof(*i));
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002567 /* i->promptmode = 0; - PS1 (memset did it) */
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002568 /*i->file = NULL */;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002569 i->p = s;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002570}
2571
2572
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002573/*
2574 * o_string support
2575 */
2576#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00002577
Denis Vlasenko0b677d82009-04-10 13:49:10 +00002578static void o_reset_to_empty_unquoted(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00002579{
2580 o->length = 0;
Denys Vlasenko38292b62010-09-05 14:49:40 +02002581 o->has_quoted_part = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002582 if (o->data)
2583 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002584}
2585
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002586static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00002587{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00002588 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002589 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00002590}
2591
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002592static ALWAYS_INLINE void o_free_unsafe(o_string *o)
2593{
2594 free(o->data);
2595}
2596
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002597static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002598{
2599 if (o->length + len > o->maxlen) {
Denys Vlasenko46e64982016-09-29 19:50:55 +02002600 o->maxlen += (2 * len) | (B_CHUNK-1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002601 o->data = xrealloc(o->data, 1 + o->maxlen);
2602 }
2603}
2604
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002605static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002606{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002607 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
Denys Vlasenko46e64982016-09-29 19:50:55 +02002608 if (o->length < o->maxlen) {
2609 /* likely. avoid o_grow_by() call */
2610 add:
2611 o->data[o->length] = ch;
2612 o->length++;
2613 o->data[o->length] = '\0';
2614 return;
2615 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002616 o_grow_by(o, 1);
Denys Vlasenko46e64982016-09-29 19:50:55 +02002617 goto add;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002618}
2619
Denys Vlasenko657086a2016-09-29 18:07:42 +02002620#if 0
2621/* Valid only if we know o_string is not empty */
2622static void o_delchr(o_string *o)
2623{
2624 o->length--;
2625 o->data[o->length] = '\0';
2626}
2627#endif
2628
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002629static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002630{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002631 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002632 memcpy(&o->data[o->length], str, len);
2633 o->length += len;
2634 o->data[o->length] = '\0';
2635}
2636
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002637static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00002638{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002639 o_addblock(o, str, strlen(str));
2640}
Denys Vlasenko2e48d532010-05-22 17:30:39 +02002641
Denys Vlasenko1e811b12010-05-22 03:12:29 +02002642#if !BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002643static void nommu_addchr(o_string *o, int ch)
2644{
2645 if (o)
2646 o_addchr(o, ch);
2647}
2648#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002649# define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002650#endif
2651
2652static void o_addstr_with_NUL(o_string *o, const char *str)
2653{
2654 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00002655}
2656
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002657/*
Denys Vlasenko238081f2010-10-03 14:26:26 +02002658 * HUSH_BRACE_EXPANSION code needs corresponding quoting on variable expansion side.
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002659 * Currently, "v='{q,w}'; echo $v" erroneously expands braces in $v.
2660 * Apparently, on unquoted $v bash still does globbing
2661 * ("v='*.txt'; echo $v" prints all .txt files),
2662 * but NOT brace expansion! Thus, there should be TWO independent
2663 * quoting mechanisms on $v expansion side: one protects
2664 * $v from brace expansion, and other additionally protects "$v" against globbing.
2665 * We have only second one.
2666 */
2667
Denys Vlasenko9e800222010-10-03 14:28:04 +02002668#if ENABLE_HUSH_BRACE_EXPANSION
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002669# define MAYBE_BRACES "{}"
2670#else
2671# define MAYBE_BRACES ""
2672#endif
2673
Eric Andersen25f27032001-04-26 23:22:31 +00002674/* My analysis of quoting semantics tells me that state information
2675 * is associated with a destination, not a source.
2676 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002677static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00002678{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002679 int sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002680 char *found = strchr("*?[\\" MAYBE_BRACES, ch);
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002681 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002682 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002683 o_grow_by(o, sz);
2684 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002685 o->data[o->length] = '\\';
2686 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00002687 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002688 o->data[o->length] = ch;
2689 o->length++;
2690 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002691}
2692
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002693static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002694{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002695 int sz = 1;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002696 if ((o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)
2697 && strchr("*?[\\" MAYBE_BRACES, ch)
2698 ) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002699 sz++;
2700 o->data[o->length] = '\\';
2701 o->length++;
2702 }
2703 o_grow_by(o, sz);
2704 o->data[o->length] = ch;
2705 o->length++;
2706 o->data[o->length] = '\0';
2707}
2708
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002709static void o_addqblock(o_string *o, const char *str, int len)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002710{
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002711 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002712 char ch;
2713 int sz;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002714 int ordinary_cnt = strcspn(str, "*?[\\" MAYBE_BRACES);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002715 if (ordinary_cnt > len) /* paranoia */
2716 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002717 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002718 if (ordinary_cnt == len)
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002719 return; /* NUL is already added by o_addblock */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002720 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002721 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002722
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002723 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002724 sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002725 if (ch) { /* it is necessarily one of "*?[\\" MAYBE_BRACES */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002726 sz++;
2727 o->data[o->length] = '\\';
2728 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002729 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002730 o_grow_by(o, sz);
2731 o->data[o->length] = ch;
2732 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002733 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002734 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002735}
2736
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002737static void o_addQblock(o_string *o, const char *str, int len)
2738{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002739 if (!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002740 o_addblock(o, str, len);
2741 return;
2742 }
2743 o_addqblock(o, str, len);
2744}
2745
Denys Vlasenko38292b62010-09-05 14:49:40 +02002746static void o_addQstr(o_string *o, const char *str)
2747{
2748 o_addQblock(o, str, strlen(str));
2749}
2750
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002751/* A special kind of o_string for $VAR and `cmd` expansion.
2752 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002753 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002754 * list[i] contains an INDEX (int!) into this string data.
2755 * It means that if list[] needs to grow, data needs to be moved higher up
2756 * but list[i]'s need not be modified.
2757 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002758 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002759 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
2760 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002761#if DEBUG_EXPAND || DEBUG_GLOB
2762static void debug_print_list(const char *prefix, o_string *o, int n)
2763{
2764 char **list = (char**)o->data;
2765 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2766 int i = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002767
2768 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002769 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 +02002770 prefix, list, n, string_start, o->length, o->maxlen,
2771 !!(o->o_expflags & EXP_FLAG_GLOB),
2772 o->has_quoted_part,
2773 !!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002774 while (i < n) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002775 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002776 fdprintf(2, " list[%d]=%d '%s' %p\n", i, (int)(uintptr_t)list[i],
2777 o->data + (int)(uintptr_t)list[i] + string_start,
2778 o->data + (int)(uintptr_t)list[i] + string_start);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002779 i++;
2780 }
2781 if (n) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002782 const char *p = o->data + (int)(uintptr_t)list[n - 1] + string_start;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002783 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002784 fdprintf(2, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002785 }
2786}
2787#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002788# define debug_print_list(prefix, o, n) ((void)0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002789#endif
2790
2791/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
2792 * in list[n] so that it points past last stored byte so far.
2793 * It returns n+1. */
2794static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002795{
2796 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00002797 int string_start;
2798 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002799
2800 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00002801 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2802 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002803 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002804 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002805 /* list[n] points to string_start, make space for 16 more pointers */
2806 o->maxlen += 0x10 * sizeof(list[0]);
2807 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00002808 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002809 memmove(list + n + 0x10, list + n, string_len);
2810 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002811 } else {
2812 debug_printf_list("list[%d]=%d string_start=%d\n",
2813 n, string_len, string_start);
2814 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002815 } else {
2816 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00002817 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
2818 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002819 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
2820 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002821 o->has_empty_slot = 0;
2822 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002823 o->has_quoted_part = 0;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002824 list[n] = (char*)(uintptr_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002825 return n + 1;
2826}
2827
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002828/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002829static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002830{
2831 char **list = (char**)o->data;
2832 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2833
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002834 return ((int)(uintptr_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002835}
2836
Denys Vlasenko9e800222010-10-03 14:28:04 +02002837#if ENABLE_HUSH_BRACE_EXPANSION
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002838/* There in a GNU extension, GLOB_BRACE, but it is not usable:
2839 * first, it processes even {a} (no commas), second,
2840 * I didn't manage to make it return strings when they don't match
Denys Vlasenko160746b2009-11-16 05:51:18 +01002841 * existing files. Need to re-implement it.
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002842 */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002843
2844/* Helper */
2845static int glob_needed(const char *s)
2846{
2847 while (*s) {
2848 if (*s == '\\') {
2849 if (!s[1])
2850 return 0;
2851 s += 2;
2852 continue;
2853 }
2854 if (*s == '*' || *s == '[' || *s == '?' || *s == '{')
2855 return 1;
2856 s++;
2857 }
2858 return 0;
2859}
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002860/* Return pointer to next closing brace or to comma */
2861static const char *next_brace_sub(const char *cp)
2862{
2863 unsigned depth = 0;
2864 cp++;
2865 while (*cp != '\0') {
2866 if (*cp == '\\') {
2867 if (*++cp == '\0')
2868 break;
2869 cp++;
2870 continue;
Denys Vlasenko3581c622010-01-25 13:39:24 +01002871 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002872 if ((*cp == '}' && depth-- == 0) || (*cp == ',' && depth == 0))
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002873 break;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002874 if (*cp++ == '{')
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002875 depth++;
2876 }
2877
2878 return *cp != '\0' ? cp : NULL;
2879}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002880/* Recursive brace globber. Note: may garble pattern[]. */
2881static int glob_brace(char *pattern, o_string *o, int n)
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002882{
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002883 char *new_pattern_buf;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002884 const char *begin;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002885 const char *next;
2886 const char *rest;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002887 const char *p;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002888 size_t rest_len;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002889
2890 debug_printf_glob("glob_brace('%s')\n", pattern);
2891
2892 begin = pattern;
2893 while (1) {
2894 if (*begin == '\0')
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002895 goto simple_glob;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002896 if (*begin == '{') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002897 /* Find the first sub-pattern and at the same time
2898 * find the rest after the closing brace */
2899 next = next_brace_sub(begin);
2900 if (next == NULL) {
2901 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002902 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002903 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002904 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002905 /* "{abc}" with no commas - illegal
2906 * brace expr, disregard and skip it */
2907 begin = next + 1;
2908 continue;
2909 }
2910 break;
2911 }
2912 if (*begin == '\\' && begin[1] != '\0')
2913 begin++;
2914 begin++;
2915 }
2916 debug_printf_glob("begin:%s\n", begin);
2917 debug_printf_glob("next:%s\n", next);
2918
2919 /* Now find the end of the whole brace expression */
2920 rest = next;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002921 while (*rest != '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002922 rest = next_brace_sub(rest);
2923 if (rest == NULL) {
2924 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002925 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002926 }
2927 debug_printf_glob("rest:%s\n", rest);
2928 }
2929 rest_len = strlen(++rest) + 1;
2930
2931 /* We are sure the brace expression is well-formed */
2932
2933 /* Allocate working buffer large enough for our work */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002934 new_pattern_buf = xmalloc(strlen(pattern));
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002935
2936 /* We have a brace expression. BEGIN points to the opening {,
2937 * NEXT points past the terminator of the first element, and REST
2938 * points past the final }. We will accumulate result names from
2939 * recursive runs for each brace alternative in the buffer using
2940 * GLOB_APPEND. */
2941
2942 p = begin + 1;
2943 while (1) {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002944 /* Construct the new glob expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002945 memcpy(
2946 mempcpy(
2947 mempcpy(new_pattern_buf,
2948 /* We know the prefix for all sub-patterns */
2949 pattern, begin - pattern),
2950 p, next - p),
2951 rest, rest_len);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002952
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002953 /* Note: glob_brace() may garble new_pattern_buf[].
2954 * That's why we re-copy prefix every time (1st memcpy above).
2955 */
2956 n = glob_brace(new_pattern_buf, o, n);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002957 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002958 /* We saw the last entry */
2959 break;
2960 }
2961 p = next + 1;
2962 next = next_brace_sub(next);
2963 }
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002964 free(new_pattern_buf);
2965 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002966
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002967 simple_glob:
2968 {
2969 int gr;
2970 glob_t globdata;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002971
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002972 memset(&globdata, 0, sizeof(globdata));
2973 gr = glob(pattern, 0, NULL, &globdata);
2974 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
2975 if (gr != 0) {
2976 if (gr == GLOB_NOMATCH) {
2977 globfree(&globdata);
2978 /* NB: garbles parameter */
2979 unbackslash(pattern);
2980 o_addstr_with_NUL(o, pattern);
2981 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2982 return o_save_ptr_helper(o, n);
2983 }
2984 if (gr == GLOB_NOSPACE)
2985 bb_error_msg_and_die(bb_msg_memory_exhausted);
2986 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
2987 * but we didn't specify it. Paranoia again. */
2988 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
2989 }
2990 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
2991 char **argv = globdata.gl_pathv;
2992 while (1) {
2993 o_addstr_with_NUL(o, *argv);
2994 n = o_save_ptr_helper(o, n);
2995 argv++;
2996 if (!*argv)
2997 break;
2998 }
2999 }
3000 globfree(&globdata);
3001 }
3002 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003003}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003004/* Performs globbing on last list[],
3005 * saving each result as a new list[].
3006 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003007static int perform_glob(o_string *o, int n)
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003008{
3009 char *pattern, *copy;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003010
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003011 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003012 if (!o->data)
3013 return o_save_ptr_helper(o, n);
3014 pattern = o->data + o_get_last_ptr(o, n);
3015 debug_printf_glob("glob pattern '%s'\n", pattern);
3016 if (!glob_needed(pattern)) {
3017 /* unbackslash last string in o in place, fix length */
3018 o->length = unbackslash(pattern) - o->data;
3019 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
3020 return o_save_ptr_helper(o, n);
3021 }
3022
3023 copy = xstrdup(pattern);
3024 /* "forget" pattern in o */
3025 o->length = pattern - o->data;
3026 n = glob_brace(copy, o, n);
3027 free(copy);
3028 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003029 debug_print_list("perform_glob returning", o, n);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003030 return n;
3031}
3032
Denys Vlasenko238081f2010-10-03 14:26:26 +02003033#else /* !HUSH_BRACE_EXPANSION */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003034
3035/* Helper */
3036static int glob_needed(const char *s)
3037{
3038 while (*s) {
3039 if (*s == '\\') {
3040 if (!s[1])
3041 return 0;
3042 s += 2;
3043 continue;
3044 }
3045 if (*s == '*' || *s == '[' || *s == '?')
3046 return 1;
3047 s++;
3048 }
3049 return 0;
3050}
3051/* Performs globbing on last list[],
3052 * saving each result as a new list[].
3053 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003054static int perform_glob(o_string *o, int n)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003055{
3056 glob_t globdata;
3057 int gr;
3058 char *pattern;
3059
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003060 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003061 if (!o->data)
3062 return o_save_ptr_helper(o, n);
3063 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003064 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003065 if (!glob_needed(pattern)) {
3066 literal:
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003067 /* unbackslash last string in o in place, fix length */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003068 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003069 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003070 return o_save_ptr_helper(o, n);
3071 }
3072
3073 memset(&globdata, 0, sizeof(globdata));
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003074 /* Can't use GLOB_NOCHECK: it does not unescape the string.
3075 * If we glob "*.\*" and don't find anything, we need
3076 * to fall back to using literal "*.*", but GLOB_NOCHECK
3077 * will return "*.\*"!
3078 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003079 gr = glob(pattern, 0, NULL, &globdata);
3080 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003081 if (gr != 0) {
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003082 if (gr == GLOB_NOMATCH) {
3083 globfree(&globdata);
3084 goto literal;
3085 }
3086 if (gr == GLOB_NOSPACE)
3087 bb_error_msg_and_die(bb_msg_memory_exhausted);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003088 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
3089 * but we didn't specify it. Paranoia again. */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003090 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003091 }
3092 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
3093 char **argv = globdata.gl_pathv;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003094 /* "forget" pattern in o */
3095 o->length = pattern - o->data;
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003096 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003097 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003098 n = o_save_ptr_helper(o, n);
3099 argv++;
3100 if (!*argv)
3101 break;
3102 }
3103 }
3104 globfree(&globdata);
3105 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003106 debug_print_list("perform_glob returning", o, n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003107 return n;
3108}
3109
Denys Vlasenko238081f2010-10-03 14:26:26 +02003110#endif /* !HUSH_BRACE_EXPANSION */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003111
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02003112/* If o->o_expflags & EXP_FLAG_GLOB, glob the string so far remembered.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003113 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003114static int o_save_ptr(o_string *o, int n)
3115{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02003116 if (o->o_expflags & EXP_FLAG_GLOB) {
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00003117 /* If o->has_empty_slot, list[n] was already globbed
3118 * (if it was requested back then when it was filled)
3119 * so don't do that again! */
3120 if (!o->has_empty_slot)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003121 return perform_glob(o, n); /* o_save_ptr_helper is inside */
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00003122 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003123 return o_save_ptr_helper(o, n);
3124}
3125
3126/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003127static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003128{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003129 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003130 int string_start;
3131
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003132 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
3133 if (DEBUG_EXPAND)
3134 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003135 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003136 list = (char**)o->data;
3137 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
3138 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003139 while (n) {
3140 n--;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003141 list[n] = o->data + (int)(uintptr_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003142 }
3143 return list;
3144}
3145
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003146static void free_pipe_list(struct pipe *pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003147
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003148/* Returns pi->next - next pipe in the list */
3149static struct pipe *free_pipe(struct pipe *pi)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003150{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003151 struct pipe *next;
3152 int i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003153
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003154 debug_printf_clean("free_pipe (pid %d)\n", getpid());
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003155 for (i = 0; i < pi->num_cmds; i++) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003156 struct command *command;
3157 struct redir_struct *r, *rnext;
3158
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003159 command = &pi->cmds[i];
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003160 debug_printf_clean(" command %d:\n", i);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003161 if (command->argv) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003162 if (DEBUG_CLEAN) {
3163 int a;
3164 char **p;
3165 for (a = 0, p = command->argv; *p; a++, p++) {
3166 debug_printf_clean(" argv[%d] = %s\n", a, *p);
3167 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003168 }
3169 free_strings(command->argv);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003170 //command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003171 }
3172 /* not "else if": on syntax error, we may have both! */
3173 if (command->group) {
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003174 debug_printf_clean(" begin group (cmd_type:%d)\n",
3175 command->cmd_type);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003176 free_pipe_list(command->group);
3177 debug_printf_clean(" end group\n");
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003178 //command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003179 }
Denis Vlasenkoed055212009-04-11 10:37:10 +00003180 /* else is crucial here.
3181 * If group != NULL, child_func is meaningless */
3182#if ENABLE_HUSH_FUNCTIONS
3183 else if (command->child_func) {
3184 debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
3185 command->child_func->parent_cmd = NULL;
3186 }
3187#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003188#if !BB_MMU
3189 free(command->group_as_string);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003190 //command->group_as_string = NULL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003191#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003192 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003193 debug_printf_clean(" redirect %d%s",
3194 r->rd_fd, redir_table[r->rd_type].descrip);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003195 /* guard against the case >$FOO, where foo is unset or blank */
3196 if (r->rd_filename) {
3197 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
3198 free(r->rd_filename);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003199 //r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003200 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003201 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003202 rnext = r->next;
3203 free(r);
3204 }
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003205 //command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003206 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003207 free(pi->cmds); /* children are an array, they get freed all at once */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003208 //pi->cmds = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003209#if ENABLE_HUSH_JOB
3210 free(pi->cmdtext);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003211 //pi->cmdtext = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003212#endif
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003213
3214 next = pi->next;
3215 free(pi);
3216 return next;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003217}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003218
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003219static void free_pipe_list(struct pipe *pi)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003220{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003221 while (pi) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003222#if HAS_KEYWORDS
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003223 debug_printf_clean("pipe reserved word %d\n", pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003224#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003225 debug_printf_clean("pipe followup code %d\n", pi->followup);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003226 pi = free_pipe(pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003227 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003228}
3229
3230
Denys Vlasenkob36abf22010-09-05 14:50:59 +02003231/*** Parsing routines ***/
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003232
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003233#ifndef debug_print_tree
3234static void debug_print_tree(struct pipe *pi, int lvl)
3235{
3236 static const char *const PIPE[] = {
3237 [PIPE_SEQ] = "SEQ",
3238 [PIPE_AND] = "AND",
3239 [PIPE_OR ] = "OR" ,
3240 [PIPE_BG ] = "BG" ,
3241 };
3242 static const char *RES[] = {
3243 [RES_NONE ] = "NONE" ,
3244# if ENABLE_HUSH_IF
3245 [RES_IF ] = "IF" ,
3246 [RES_THEN ] = "THEN" ,
3247 [RES_ELIF ] = "ELIF" ,
3248 [RES_ELSE ] = "ELSE" ,
3249 [RES_FI ] = "FI" ,
3250# endif
3251# if ENABLE_HUSH_LOOPS
3252 [RES_FOR ] = "FOR" ,
3253 [RES_WHILE] = "WHILE",
3254 [RES_UNTIL] = "UNTIL",
3255 [RES_DO ] = "DO" ,
3256 [RES_DONE ] = "DONE" ,
3257# endif
3258# if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
3259 [RES_IN ] = "IN" ,
3260# endif
3261# if ENABLE_HUSH_CASE
3262 [RES_CASE ] = "CASE" ,
3263 [RES_CASE_IN ] = "CASE_IN" ,
3264 [RES_MATCH] = "MATCH",
3265 [RES_CASE_BODY] = "CASE_BODY",
3266 [RES_ESAC ] = "ESAC" ,
3267# endif
3268 [RES_XXXX ] = "XXXX" ,
3269 [RES_SNTX ] = "SNTX" ,
3270 };
3271 static const char *const CMDTYPE[] = {
3272 "{}",
3273 "()",
3274 "[noglob]",
3275# if ENABLE_HUSH_FUNCTIONS
3276 "func()",
3277# endif
3278 };
3279
3280 int pin, prn;
3281
3282 pin = 0;
3283 while (pi) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003284 fdprintf(2, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003285 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
3286 prn = 0;
3287 while (prn < pi->num_cmds) {
3288 struct command *command = &pi->cmds[prn];
3289 char **argv = command->argv;
3290
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003291 fdprintf(2, "%*s cmd %d assignment_cnt:%d",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003292 lvl*2, "", prn,
3293 command->assignment_cnt);
3294 if (command->group) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003295 fdprintf(2, " group %s: (argv=%p)%s%s\n",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003296 CMDTYPE[command->cmd_type],
3297 argv
3298# if !BB_MMU
3299 , " group_as_string:", command->group_as_string
3300# else
3301 , "", ""
3302# endif
3303 );
3304 debug_print_tree(command->group, lvl+1);
3305 prn++;
3306 continue;
3307 }
3308 if (argv) while (*argv) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003309 fdprintf(2, " '%s'", *argv);
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003310 argv++;
3311 }
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003312 fdprintf(2, "\n");
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003313 prn++;
3314 }
3315 pi = pi->next;
3316 pin++;
3317 }
3318}
3319#endif /* debug_print_tree */
3320
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00003321static struct pipe *new_pipe(void)
3322{
Eric Andersen25f27032001-04-26 23:22:31 +00003323 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003324 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003325 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00003326 return pi;
3327}
3328
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003329/* Command (member of a pipe) is complete, or we start a new pipe
3330 * if ctx->command is NULL.
3331 * No errors possible here.
3332 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003333static int done_command(struct parse_context *ctx)
3334{
3335 /* The command is really already in the pipe structure, so
3336 * advance the pipe counter and make a new, null command. */
3337 struct pipe *pi = ctx->pipe;
3338 struct command *command = ctx->command;
3339
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02003340#if 0 /* Instead we emit error message at run time */
3341 if (ctx->pending_redirect) {
3342 /* For example, "cmd >" (no filename to redirect to) */
3343 die_if_script("syntax error: %s", "invalid redirect");
3344 ctx->pending_redirect = NULL;
3345 }
3346#endif
3347
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003348 if (command) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003349 if (IS_NULL_CMD(command)) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003350 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003351 goto clear_and_ret;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003352 }
3353 pi->num_cmds++;
3354 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003355 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003356 } else {
3357 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
3358 }
3359
3360 /* Only real trickiness here is that the uncommitted
3361 * command structure is not counted in pi->num_cmds. */
3362 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003363 ctx->command = command = &pi->cmds[pi->num_cmds];
3364 clear_and_ret:
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003365 memset(command, 0, sizeof(*command));
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003366 return pi->num_cmds; /* used only for 0/nonzero check */
3367}
3368
3369static void done_pipe(struct parse_context *ctx, pipe_style type)
3370{
3371 int not_null;
3372
3373 debug_printf_parse("done_pipe entered, followup %d\n", type);
3374 /* Close previous command */
3375 not_null = done_command(ctx);
3376 ctx->pipe->followup = type;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003377#if HAS_KEYWORDS
3378 ctx->pipe->pi_inverted = ctx->ctx_inverted;
3379 ctx->ctx_inverted = 0;
3380 ctx->pipe->res_word = ctx->ctx_res_w;
3381#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003382
3383 /* Without this check, even just <enter> on command line generates
3384 * tree of three NOPs (!). Which is harmless but annoying.
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003385 * IOW: it is safe to do it unconditionally. */
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003386 if (not_null
Denis Vlasenko7f959372009-04-14 08:06:59 +00003387#if ENABLE_HUSH_IF
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003388 || ctx->ctx_res_w == RES_FI
Denis Vlasenko7f959372009-04-14 08:06:59 +00003389#endif
3390#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003391 || ctx->ctx_res_w == RES_DONE
3392 || ctx->ctx_res_w == RES_FOR
3393 || ctx->ctx_res_w == RES_IN
Denis Vlasenko7f959372009-04-14 08:06:59 +00003394#endif
3395#if ENABLE_HUSH_CASE
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003396 || ctx->ctx_res_w == RES_ESAC
3397#endif
3398 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003399 struct pipe *new_p;
3400 debug_printf_parse("done_pipe: adding new pipe: "
3401 "not_null:%d ctx->ctx_res_w:%d\n",
3402 not_null, ctx->ctx_res_w);
3403 new_p = new_pipe();
3404 ctx->pipe->next = new_p;
3405 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003406 /* RES_THEN, RES_DO etc are "sticky" -
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003407 * they remain set for pipes inside if/while.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003408 * This is used to control execution.
3409 * RES_FOR and RES_IN are NOT sticky (needed to support
3410 * cases where variable or value happens to match a keyword):
3411 */
3412#if ENABLE_HUSH_LOOPS
3413 if (ctx->ctx_res_w == RES_FOR
3414 || ctx->ctx_res_w == RES_IN)
3415 ctx->ctx_res_w = RES_NONE;
3416#endif
3417#if ENABLE_HUSH_CASE
3418 if (ctx->ctx_res_w == RES_MATCH)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003419 ctx->ctx_res_w = RES_CASE_BODY;
3420 if (ctx->ctx_res_w == RES_CASE)
3421 ctx->ctx_res_w = RES_CASE_IN;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003422#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003423 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003424 /* Create the memory for command, roughly:
3425 * ctx->pipe->cmds = new struct command;
3426 * ctx->command = &ctx->pipe->cmds[0];
3427 */
3428 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003429 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003430 }
3431 debug_printf_parse("done_pipe return\n");
3432}
3433
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003434static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003435{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003436 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00003437 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003438 /* Create the memory for command, roughly:
3439 * ctx->pipe->cmds = new struct command;
3440 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003441 */
3442 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00003443}
3444
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003445/* If a reserved word is found and processed, parse context is modified
3446 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00003447 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003448#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003449struct reserved_combo {
3450 char literal[6];
3451 unsigned char res;
3452 unsigned char assignment_flag;
3453 int flag;
3454};
3455enum {
3456 FLAG_END = (1 << RES_NONE ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003457# if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003458 FLAG_IF = (1 << RES_IF ),
3459 FLAG_THEN = (1 << RES_THEN ),
3460 FLAG_ELIF = (1 << RES_ELIF ),
3461 FLAG_ELSE = (1 << RES_ELSE ),
3462 FLAG_FI = (1 << RES_FI ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003463# endif
3464# if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003465 FLAG_FOR = (1 << RES_FOR ),
3466 FLAG_WHILE = (1 << RES_WHILE),
3467 FLAG_UNTIL = (1 << RES_UNTIL),
3468 FLAG_DO = (1 << RES_DO ),
3469 FLAG_DONE = (1 << RES_DONE ),
3470 FLAG_IN = (1 << RES_IN ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003471# endif
3472# if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003473 FLAG_MATCH = (1 << RES_MATCH),
3474 FLAG_ESAC = (1 << RES_ESAC ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003475# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003476 FLAG_START = (1 << RES_XXXX ),
3477};
3478
3479static const struct reserved_combo* match_reserved_word(o_string *word)
3480{
Eric Andersen25f27032001-04-26 23:22:31 +00003481 /* Mostly a list of accepted follow-up reserved words.
3482 * FLAG_END means we are done with the sequence, and are ready
3483 * to turn the compound list into a command.
3484 * FLAG_START means the word must start a new compound list.
3485 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003486 static const struct reserved_combo reserved_list[] = {
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003487# if ENABLE_HUSH_IF
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003488 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
3489 { "if", RES_IF, MAYBE_ASSIGNMENT, FLAG_THEN | FLAG_START },
3490 { "then", RES_THEN, MAYBE_ASSIGNMENT, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
3491 { "elif", RES_ELIF, MAYBE_ASSIGNMENT, FLAG_THEN },
3492 { "else", RES_ELSE, MAYBE_ASSIGNMENT, FLAG_FI },
3493 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003494# endif
3495# if ENABLE_HUSH_LOOPS
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003496 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
3497 { "while", RES_WHILE, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START },
3498 { "until", RES_UNTIL, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START },
3499 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
3500 { "do", RES_DO, MAYBE_ASSIGNMENT, FLAG_DONE },
3501 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003502# endif
3503# if ENABLE_HUSH_CASE
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003504 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
3505 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003506# endif
Eric Andersen25f27032001-04-26 23:22:31 +00003507 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003508 const struct reserved_combo *r;
3509
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02003510 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003511 if (strcmp(word->data, r->literal) == 0)
3512 return r;
3513 }
3514 return NULL;
3515}
Denis Vlasenkobb929512009-04-16 10:59:40 +00003516/* Return 0: not a keyword, 1: keyword
3517 */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003518static int reserved_word(o_string *word, struct parse_context *ctx)
3519{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003520# if ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003521 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003522 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003523 };
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003524# endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003525 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003526
Denys Vlasenko38292b62010-09-05 14:49:40 +02003527 if (word->has_quoted_part)
Denis Vlasenkobb929512009-04-16 10:59:40 +00003528 return 0;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003529 r = match_reserved_word(word);
3530 if (!r)
3531 return 0;
3532
3533 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003534# if ENABLE_HUSH_CASE
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003535 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE_IN) {
3536 /* "case word IN ..." - IN part starts first MATCH part */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003537 r = &reserved_match;
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003538 } else
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003539# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003540 if (r->flag == 0) { /* '!' */
3541 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003542 syntax_error("! ! command");
Denis Vlasenkobb929512009-04-16 10:59:40 +00003543 ctx->ctx_res_w = RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00003544 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003545 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00003546 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003547 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003548 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003549 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003550
Denys Vlasenko9e55a152017-07-10 10:01:12 +02003551 old = xmemdup(ctx, sizeof(*ctx));
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003552 debug_printf_parse("push stack %p\n", old);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003553 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003554 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003555 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003556 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003557 ctx->ctx_res_w = RES_SNTX;
3558 return 1;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003559 } else {
3560 /* "{...} fi" is ok. "{...} if" is not
3561 * Example:
3562 * if { echo foo; } then { echo bar; } fi */
3563 if (ctx->command->group)
3564 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003565 }
Denis Vlasenkobb929512009-04-16 10:59:40 +00003566
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003567 ctx->ctx_res_w = r->res;
3568 ctx->old_flag = r->flag;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003569 word->o_assignment = r->assignment_flag;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003570 debug_printf_parse("word->o_assignment='%s'\n", assignment_flag[word->o_assignment]);
Denis Vlasenkobb929512009-04-16 10:59:40 +00003571
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003572 if (ctx->old_flag & FLAG_END) {
3573 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003574
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003575 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003576 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003577 old = ctx->stack;
3578 old->command->group = ctx->list_head;
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003579 old->command->cmd_type = CMD_NORMAL;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003580# if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02003581 /* At this point, the compound command's string is in
3582 * ctx->as_string... except for the leading keyword!
3583 * Consider this example: "echo a | if true; then echo a; fi"
3584 * ctx->as_string will contain "true; then echo a; fi",
3585 * with "if " remaining in old->as_string!
3586 */
3587 {
3588 char *str;
3589 int len = old->as_string.length;
3590 /* Concatenate halves */
3591 o_addstr(&old->as_string, ctx->as_string.data);
3592 o_free_unsafe(&ctx->as_string);
3593 /* Find where leading keyword starts in first half */
3594 str = old->as_string.data + len;
3595 if (str > old->as_string.data)
3596 str--; /* skip whitespace after keyword */
3597 while (str > old->as_string.data && isalpha(str[-1]))
3598 str--;
3599 /* Ugh, we're done with this horrid hack */
3600 old->command->group_as_string = xstrdup(str);
3601 debug_printf_parse("pop, remembering as:'%s'\n",
3602 old->command->group_as_string);
3603 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003604# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003605 *ctx = *old; /* physical copy */
3606 free(old);
3607 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003608 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003609}
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003610#endif /* HAS_KEYWORDS */
Eric Andersen25f27032001-04-26 23:22:31 +00003611
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003612/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003613 * Normal return is 0. Syntax errors return 1.
3614 * Note: on return, word is reset, but not o_free'd!
3615 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003616static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003617{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003618 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00003619
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003620 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denys Vlasenko38292b62010-09-05 14:49:40 +02003621 if (word->length == 0 && !word->has_quoted_part) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003622 debug_printf_parse("done_word return 0: true null, ignored\n");
3623 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003624 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003625
Eric Andersen25f27032001-04-26 23:22:31 +00003626 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003627 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
3628 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003629 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3630 * "2.7 Redirection
3631 * ...the word that follows the redirection operator
3632 * shall be subjected to tilde expansion, parameter expansion,
3633 * command substitution, arithmetic expansion, and quote
3634 * removal. Pathname expansion shall not be performed
3635 * on the word by a non-interactive shell; an interactive
3636 * shell may perform it, but shall do so only when
3637 * the expansion would result in one word."
3638 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003639 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003640 /* Cater for >\file case:
3641 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
3642 * Same with heredocs:
3643 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
3644 */
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003645 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC) {
3646 unbackslash(ctx->pending_redirect->rd_filename);
3647 /* Is it <<"HEREDOC"? */
Denys Vlasenko38292b62010-09-05 14:49:40 +02003648 if (word->has_quoted_part) {
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003649 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
3650 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003651 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003652 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003653 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003654 } else {
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003655#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003656# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00003657 if (ctx->ctx_dsemicolon
3658 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
3659 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003660 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003661 /* ctx->ctx_res_w = RES_MATCH; */
3662 ctx->ctx_dsemicolon = 0;
3663 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003664# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003665 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003666# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003667 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
3668 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003669# endif
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003670# if ENABLE_HUSH_CASE
3671 && ctx->ctx_res_w != RES_CASE
3672# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003673 ) {
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003674 int reserved = reserved_word(word, ctx);
3675 debug_printf_parse("checking for reserved-ness: %d\n", reserved);
3676 if (reserved) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003677 o_reset_to_empty_unquoted(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003678 debug_printf_parse("done_word return %d\n",
3679 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003680 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003681 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01003682# if BASH_TEST2
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003683 if (strcmp(word->data, "[[") == 0) {
3684 command->cmd_type = CMD_SINGLEWORD_NOGLOB;
3685 }
3686 /* fall through */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02003687# endif
Eric Andersen25f27032001-04-26 23:22:31 +00003688 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003689#endif
Denis Vlasenkobb929512009-04-16 10:59:40 +00003690 if (command->group) {
3691 /* "{ echo foo; } echo bar" - bad */
3692 syntax_error_at(word->data);
3693 debug_printf_parse("done_word return 1: syntax error, "
3694 "groups and arglists don't mix\n");
3695 return 1;
3696 }
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003697
3698 /* If this word wasn't an assignment, next ones definitely
3699 * can't be assignments. Even if they look like ones. */
3700 if (word->o_assignment != DEFINITELY_ASSIGNMENT
3701 && word->o_assignment != WORD_IS_KEYWORD
3702 ) {
3703 word->o_assignment = NOT_ASSIGNMENT;
3704 } else {
3705 if (word->o_assignment == DEFINITELY_ASSIGNMENT) {
3706 command->assignment_cnt++;
3707 debug_printf_parse("++assignment_cnt=%d\n", command->assignment_cnt);
3708 }
3709 debug_printf_parse("word->o_assignment was:'%s'\n", assignment_flag[word->o_assignment]);
3710 word->o_assignment = MAYBE_ASSIGNMENT;
3711 }
3712 debug_printf_parse("word->o_assignment='%s'\n", assignment_flag[word->o_assignment]);
3713
Denys Vlasenko38292b62010-09-05 14:49:40 +02003714 if (word->has_quoted_part
Denis Vlasenko55789c62008-06-18 16:30:42 +00003715 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
3716 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003717 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003718 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003719 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003720 char *p = word->data;
3721 while (p[0] == SPECIAL_VAR_SYMBOL
3722 && (p[1] & 0x7f) == '@'
3723 && p[2] == SPECIAL_VAR_SYMBOL
3724 ) {
3725 p += 3;
3726 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00003727 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003728 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003729 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003730 }
Eric Andersen25f27032001-04-26 23:22:31 +00003731
Denis Vlasenko06810332007-05-21 23:30:54 +00003732#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003733 if (ctx->ctx_res_w == RES_FOR) {
Denys Vlasenko38292b62010-09-05 14:49:40 +02003734 if (word->has_quoted_part
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003735 || !is_well_formed_var_name(command->argv[0], '\0')
3736 ) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003737 /* bash says just "not a valid identifier" */
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003738 syntax_error("not a valid identifier in for");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003739 return 1;
3740 }
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003741 /* Force FOR to have just one word (variable name) */
3742 /* NB: basically, this makes hush see "for v in ..."
3743 * syntax as if it is "for v; in ...". FOR and IN become
3744 * two pipe structs in parse tree. */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003745 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003746 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003747#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003748#if ENABLE_HUSH_CASE
3749 /* Force CASE to have just one word */
3750 if (ctx->ctx_res_w == RES_CASE) {
3751 done_pipe(ctx, PIPE_SEQ);
3752 }
3753#endif
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003754
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003755 o_reset_to_empty_unquoted(word);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003756
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003757 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003758 return 0;
3759}
3760
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003761
3762/* Peek ahead in the input to find out if we have a "&n" construct,
3763 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003764 * Return:
3765 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
3766 * REDIRFD_SYNTAX_ERR if syntax error,
3767 * REDIRFD_TO_FILE if no & was seen,
3768 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003769 */
3770#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003771#define parse_redir_right_fd(as_string, input) \
3772 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003773#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003774static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003775{
3776 int ch, d, ok;
3777
3778 ch = i_peek(input);
3779 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003780 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003781
3782 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003783 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003784 ch = i_peek(input);
3785 if (ch == '-') {
3786 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003787 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003788 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003789 }
3790 d = 0;
3791 ok = 0;
3792 while (ch != EOF && isdigit(ch)) {
3793 d = d*10 + (ch-'0');
3794 ok = 1;
3795 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003796 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003797 ch = i_peek(input);
3798 }
3799 if (ok) return d;
3800
3801//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
3802
3803 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003804 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003805}
3806
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003807/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003808 */
3809static int parse_redirect(struct parse_context *ctx,
3810 int fd,
3811 redir_type style,
3812 struct in_str *input)
3813{
3814 struct command *command = ctx->command;
3815 struct redir_struct *redir;
3816 struct redir_struct **redirp;
3817 int dup_num;
3818
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003819 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003820 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003821 /* Check for a '>&1' type redirect */
3822 dup_num = parse_redir_right_fd(&ctx->as_string, input);
3823 if (dup_num == REDIRFD_SYNTAX_ERR)
3824 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003825 } else {
3826 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003827 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003828 if (dup_num) { /* <<-... */
3829 ch = i_getch(input);
3830 nommu_addchr(&ctx->as_string, ch);
3831 ch = i_peek(input);
3832 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003833 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003834
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003835 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003836 int ch = i_peek(input);
3837 if (ch == '|') {
3838 /* >|FILE redirect ("clobbering" >).
3839 * Since we do not support "set -o noclobber" yet,
3840 * >| and > are the same for now. Just eat |.
3841 */
3842 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003843 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003844 }
3845 }
3846
3847 /* Create a new redir_struct and append it to the linked list */
3848 redirp = &command->redirects;
3849 while ((redir = *redirp) != NULL) {
3850 redirp = &(redir->next);
3851 }
3852 *redirp = redir = xzalloc(sizeof(*redir));
3853 /* redir->next = NULL; */
3854 /* redir->rd_filename = NULL; */
3855 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003856 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003857
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003858 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
3859 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003860
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003861 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003862 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003863 /* Erik had a check here that the file descriptor in question
3864 * is legit; I postpone that to "run time"
3865 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003866 debug_printf_parse("duplicating redirect '%d>&%d'\n",
3867 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003868 } else {
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02003869#if 0 /* Instead we emit error message at run time */
3870 if (ctx->pending_redirect) {
3871 /* For example, "cmd > <file" */
3872 die_if_script("syntax error: %s", "invalid redirect");
3873 }
3874#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003875 /* Set ctx->pending_redirect, so we know what to do at the
3876 * end of the next parsed word. */
3877 ctx->pending_redirect = redir;
3878 }
3879 return 0;
3880}
3881
Eric Andersen25f27032001-04-26 23:22:31 +00003882/* If a redirect is immediately preceded by a number, that number is
3883 * supposed to tell which file descriptor to redirect. This routine
3884 * looks for such preceding numbers. In an ideal world this routine
3885 * needs to handle all the following classes of redirects...
3886 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
3887 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
3888 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
3889 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003890 *
3891 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3892 * "2.7 Redirection
3893 * ... If n is quoted, the number shall not be recognized as part of
3894 * the redirection expression. For example:
3895 * echo \2>a
3896 * writes the character 2 into file a"
Denys Vlasenko38292b62010-09-05 14:49:40 +02003897 * We are getting it right by setting ->has_quoted_part on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003898 *
3899 * A -1 return means no valid number was found,
3900 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00003901 */
3902static int redirect_opt_num(o_string *o)
3903{
3904 int num;
3905
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003906 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003907 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003908 num = bb_strtou(o->data, NULL, 10);
3909 if (errno || num < 0)
3910 return -1;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003911 o_reset_to_empty_unquoted(o);
Eric Andersen25f27032001-04-26 23:22:31 +00003912 return num;
3913}
3914
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003915#if BB_MMU
3916#define fetch_till_str(as_string, input, word, skip_tabs) \
3917 fetch_till_str(input, word, skip_tabs)
3918#endif
3919static char *fetch_till_str(o_string *as_string,
3920 struct in_str *input,
3921 const char *word,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003922 int heredoc_flags)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003923{
3924 o_string heredoc = NULL_O_STRING;
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003925 unsigned past_EOL;
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003926 int prev = 0; /* not \ */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003927 int ch;
3928
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003929 goto jump_in;
Denys Vlasenkob8709032011-05-08 21:20:01 +02003930
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003931 while (1) {
3932 ch = i_getch(input);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003933 if (ch != EOF)
3934 nommu_addchr(as_string, ch);
3935 if ((ch == '\n' || ch == EOF)
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003936 && ((heredoc_flags & HEREDOC_QUOTED) || prev != '\\')
3937 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003938 if (strcmp(heredoc.data + past_EOL, word) == 0) {
3939 heredoc.data[past_EOL] = '\0';
3940 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
3941 return heredoc.data;
3942 }
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003943 while (ch == '\n') {
3944 o_addchr(&heredoc, ch);
3945 prev = ch;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003946 jump_in:
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003947 past_EOL = heredoc.length;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003948 do {
3949 ch = i_getch(input);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003950 if (ch != EOF)
3951 nommu_addchr(as_string, ch);
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003952 } while ((heredoc_flags & HEREDOC_SKIPTABS) && ch == '\t');
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003953 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003954 }
3955 if (ch == EOF) {
3956 o_free_unsafe(&heredoc);
3957 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003958 }
3959 o_addchr(&heredoc, ch);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003960 nommu_addchr(as_string, ch);
Denys Vlasenkoc3adfac2010-09-06 11:46:03 +02003961 if (prev == '\\' && ch == '\\')
3962 /* Correctly handle foo\\<eol> (not a line cont.) */
3963 prev = 0; /* not \ */
3964 else
3965 prev = ch;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003966 }
3967}
3968
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003969/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
3970 * and load them all. There should be exactly heredoc_cnt of them.
3971 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003972static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
3973{
3974 struct pipe *pi = ctx->list_head;
3975
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003976 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003977 int i;
3978 struct command *cmd = pi->cmds;
3979
3980 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
3981 pi->num_cmds,
3982 cmd->argv ? cmd->argv[0] : "NONE");
3983 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003984 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003985
3986 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
3987 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003988 while (redir) {
3989 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003990 char *p;
3991
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003992 redir->rd_type = REDIRECT_HEREDOC2;
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003993 /* redir->rd_dup is (ab)used to indicate <<- */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003994 p = fetch_till_str(&ctx->as_string, input,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003995 redir->rd_filename, redir->rd_dup);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003996 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003997 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003998 return 1;
3999 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004000 free(redir->rd_filename);
4001 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004002 heredoc_cnt--;
4003 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004004 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004005 }
4006 cmd++;
4007 }
4008 pi = pi->next;
4009 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004010#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004011 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004012 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004013 bb_error_msg_and_die("heredoc BUG 2");
4014#endif
4015 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004016}
4017
4018
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004019static int run_list(struct pipe *pi);
4020#if BB_MMU
4021#define parse_stream(pstring, input, end_trigger) \
4022 parse_stream(input, end_trigger)
4023#endif
4024static struct pipe *parse_stream(char **pstring,
4025 struct in_str *input,
4026 int end_trigger);
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004027
Eric Andersen25f27032001-04-26 23:22:31 +00004028
Denys Vlasenkoc2704542009-11-20 19:14:19 +01004029#if !ENABLE_HUSH_FUNCTIONS
4030#define parse_group(dest, ctx, input, ch) \
4031 parse_group(ctx, input, ch)
4032#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004033static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00004034 struct in_str *input, int ch)
4035{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004036 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004037 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004038 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004039 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004040 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004041 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004042
4043 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004044#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko38292b62010-09-05 14:49:40 +02004045 if (ch == '(' && !dest->has_quoted_part) {
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004046 if (dest->length)
Denis Vlasenkobb929512009-04-16 10:59:40 +00004047 if (done_word(dest, ctx))
4048 return 1;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004049 if (!command->argv)
4050 goto skip; /* (... */
4051 if (command->argv[1]) { /* word word ... (... */
4052 syntax_error_unexpected_ch('(');
4053 return 1;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004054 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004055 /* it is "word(..." or "word (..." */
4056 do
4057 ch = i_getch(input);
4058 while (ch == ' ' || ch == '\t');
4059 if (ch != ')') {
4060 syntax_error_unexpected_ch(ch);
4061 return 1;
4062 }
4063 nommu_addchr(&ctx->as_string, ch);
4064 do
4065 ch = i_getch(input);
4066 while (ch == ' ' || ch == '\t' || ch == '\n');
4067 if (ch != '{') {
4068 syntax_error_unexpected_ch(ch);
4069 return 1;
4070 }
4071 nommu_addchr(&ctx->as_string, ch);
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004072 command->cmd_type = CMD_FUNCDEF;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004073 goto skip;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004074 }
4075#endif
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004076
4077#if 0 /* Prevented by caller */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004078 if (command->argv /* word [word]{... */
4079 || dest->length /* word{... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004080 || dest->has_quoted_part /* ""{... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004081 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004082 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004083 debug_printf_parse("parse_group return 1: "
4084 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004085 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004086 }
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004087#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004088
4089#if ENABLE_HUSH_FUNCTIONS
4090 skip:
4091#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00004092 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004093 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00004094 endch = ')';
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004095 command->cmd_type = CMD_SUBSHELL;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004096 } else {
4097 /* bash does not allow "{echo...", requires whitespace */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004098 ch = i_peek(input);
4099 if (ch != ' ' && ch != '\t' && ch != '\n'
4100 && ch != '(' /* but "{(..." is allowed (without whitespace) */
4101 ) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004102 syntax_error_unexpected_ch(ch);
4103 return 1;
4104 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004105 if (ch != '(') {
4106 ch = i_getch(input);
4107 nommu_addchr(&ctx->as_string, ch);
4108 }
Eric Andersen25f27032001-04-26 23:22:31 +00004109 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004110
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004111 {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004112#if BB_MMU
4113# define as_string NULL
4114#else
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004115 char *as_string = NULL;
4116#endif
4117 pipe_list = parse_stream(&as_string, input, endch);
4118#if !BB_MMU
4119 if (as_string)
4120 o_addstr(&ctx->as_string, as_string);
4121#endif
4122 /* empty ()/{} or parse error? */
4123 if (!pipe_list || pipe_list == ERR_PTR) {
Denis Vlasenkobb929512009-04-16 10:59:40 +00004124 /* parse_stream already emitted error msg */
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004125 if (!BB_MMU)
4126 free(as_string);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004127 debug_printf_parse("parse_group return 1: "
4128 "parse_stream returned %p\n", pipe_list);
4129 return 1;
4130 }
4131 command->group = pipe_list;
4132#if !BB_MMU
4133 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
4134 command->group_as_string = as_string;
4135 debug_printf_parse("end of group, remembering as:'%s'\n",
4136 command->group_as_string);
4137#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004138#undef as_string
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004139 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004140 debug_printf_parse("parse_group return 0\n");
4141 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004142 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00004143}
4144
Denys Vlasenko46e64982016-09-29 19:50:55 +02004145static int i_getch_and_eat_bkslash_nl(struct in_str *input)
4146{
4147 for (;;) {
4148 int ch, ch2;
4149
4150 ch = i_getch(input);
4151 if (ch != '\\')
4152 return ch;
4153 ch2 = i_peek(input);
4154 if (ch2 != '\n')
4155 return ch;
4156 /* backslash+newline, skip it */
4157 i_getch(input);
4158 }
4159}
4160
Denys Vlasenko657086a2016-09-29 18:07:42 +02004161static int i_peek_and_eat_bkslash_nl(struct in_str *input)
4162{
4163 for (;;) {
4164 int ch, ch2;
4165
4166 ch = i_peek(input);
4167 if (ch != '\\')
4168 return ch;
4169 ch2 = i_peek2(input);
4170 if (ch2 != '\n')
4171 return ch;
4172 /* backslash+newline, skip it */
4173 i_getch(input);
4174 i_getch(input);
4175 }
4176}
4177
Denys Vlasenko0b883582016-12-23 16:49:07 +01004178#if ENABLE_HUSH_TICK || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_DOLLAR_OPS
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004179/* Subroutines for copying $(...) and `...` things */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004180static int add_till_backquote(o_string *dest, struct in_str *input, int in_dquote);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004181/* '...' */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004182static int add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004183{
4184 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004185 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004186 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004187 syntax_error_unterm_ch('\'');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004188 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004189 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004190 if (ch == '\'')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004191 return 1;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004192 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004193 }
4194}
4195/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004196static int add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004197{
4198 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004199 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004200 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004201 syntax_error_unterm_ch('"');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004202 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004203 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004204 if (ch == '"')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004205 return 1;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004206 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004207 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004208 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004209 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004210 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004211 if (ch == '`') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004212 if (!add_till_backquote(dest, input, /*in_dquote:*/ 1))
4213 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004214 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004215 continue;
4216 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00004217 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004218 }
4219}
4220/* Process `cmd` - copy contents until "`" is seen. Complicated by
4221 * \` quoting.
4222 * "Within the backquoted style of command substitution, backslash
4223 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
4224 * The search for the matching backquote shall be satisfied by the first
4225 * backquote found without a preceding backslash; during this search,
4226 * if a non-escaped backquote is encountered within a shell comment,
4227 * a here-document, an embedded command substitution of the $(command)
4228 * form, or a quoted string, undefined results occur. A single-quoted
4229 * or double-quoted string that begins, but does not end, within the
4230 * "`...`" sequence produces undefined results."
4231 * Example Output
4232 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
4233 */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004234static int add_till_backquote(o_string *dest, struct in_str *input, int in_dquote)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004235{
4236 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004237 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004238 if (ch == '`')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004239 return 1;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004240 if (ch == '\\') {
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02004241 /* \x. Copy both unless it is \`, \$, \\ and maybe \" */
4242 ch = i_getch(input);
4243 if (ch != '`'
4244 && ch != '$'
4245 && ch != '\\'
4246 && (!in_dquote || ch != '"')
4247 ) {
4248 o_addchr(dest, '\\');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004249 }
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02004250 }
4251 if (ch == EOF) {
4252 syntax_error_unterm_ch('`');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004253 return 0;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004254 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004255 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004256 }
4257}
4258/* Process $(cmd) - copy contents until ")" is seen. Complicated by
4259 * quoting and nested ()s.
4260 * "With the $(command) style of command substitution, all characters
4261 * following the open parenthesis to the matching closing parenthesis
4262 * constitute the command. Any valid shell script can be used for command,
4263 * except a script consisting solely of redirections which produces
4264 * unspecified results."
4265 * Example Output
4266 * echo $(echo '(TEST)' BEST) (TEST) BEST
4267 * echo $(echo 'TEST)' BEST) TEST) BEST
4268 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
Denys Vlasenko74369502010-05-21 19:52:01 +02004269 *
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004270 * Also adapted to eat ${var%...} and $((...)) constructs, since ... part
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004271 * can contain arbitrary constructs, just like $(cmd).
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004272 * In bash compat mode, it needs to also be able to stop on ':' or '/'
4273 * for ${var:N[:M]} and ${var/P[/R]} parsing.
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004274 */
Denys Vlasenko74369502010-05-21 19:52:01 +02004275#define DOUBLE_CLOSE_CHAR_FLAG 0x80
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004276static int add_till_closing_bracket(o_string *dest, struct in_str *input, unsigned end_ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004277{
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004278 int ch;
Denys Vlasenko74369502010-05-21 19:52:01 +02004279 char dbl = end_ch & DOUBLE_CLOSE_CHAR_FLAG;
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004280# if BASH_SUBSTR || BASH_PATTERN_SUBST
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004281 char end_char2 = end_ch >> 8;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004282# endif
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004283 end_ch &= (DOUBLE_CLOSE_CHAR_FLAG - 1);
4284
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004285 while (1) {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004286 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004287 if (ch == EOF) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004288 syntax_error_unterm_ch(end_ch);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004289 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004290 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004291 if (ch == end_ch
4292# if BASH_SUBSTR || BASH_PATTERN_SUBST
4293 || ch == end_char2
4294# endif
4295 ) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004296 if (!dbl)
4297 break;
4298 /* we look for closing )) of $((EXPR)) */
Denys Vlasenko657086a2016-09-29 18:07:42 +02004299 if (i_peek_and_eat_bkslash_nl(input) == end_ch) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004300 i_getch(input); /* eat second ')' */
4301 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004302 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004303 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004304 o_addchr(dest, ch);
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004305 if (ch == '(' || ch == '{') {
4306 ch = (ch == '(' ? ')' : '}');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004307 if (!add_till_closing_bracket(dest, input, ch))
4308 return 0;
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004309 o_addchr(dest, ch);
4310 continue;
4311 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004312 if (ch == '\'') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004313 if (!add_till_single_quote(dest, input))
4314 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004315 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004316 continue;
4317 }
4318 if (ch == '"') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004319 if (!add_till_double_quote(dest, input))
4320 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004321 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004322 continue;
4323 }
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004324 if (ch == '`') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004325 if (!add_till_backquote(dest, input, /*in_dquote:*/ 0))
4326 return 0;
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004327 o_addchr(dest, ch);
4328 continue;
4329 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004330 if (ch == '\\') {
4331 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004332 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004333 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004334 syntax_error_unterm_ch(')');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004335 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004336 }
Denys Vlasenko657086a2016-09-29 18:07:42 +02004337#if 0
4338 if (ch == '\n') {
4339 /* "backslash+newline", ignore both */
4340 o_delchr(dest); /* undo insertion of '\' */
4341 continue;
4342 }
4343#endif
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004344 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004345 continue;
4346 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004347 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004348 return ch;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004349}
Denys Vlasenko0b883582016-12-23 16:49:07 +01004350#endif /* ENABLE_HUSH_TICK || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_DOLLAR_OPS */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004351
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004352/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004353#if BB_MMU
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004354#define parse_dollar(as_string, dest, input, quote_mask) \
4355 parse_dollar(dest, input, quote_mask)
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004356#define as_string NULL
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004357#endif
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004358static int parse_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004359 o_string *dest,
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004360 struct in_str *input, unsigned char quote_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00004361{
Denys Vlasenko657086a2016-09-29 18:07:42 +02004362 int ch = i_peek_and_eat_bkslash_nl(input); /* first character after the $ */
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004363
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004364 debug_printf_parse("parse_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004365 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004366 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004367 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00004368 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004369 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004370 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004371 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004372 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004373 quote_mask = 0;
Denys Vlasenko657086a2016-09-29 18:07:42 +02004374 ch = i_peek_and_eat_bkslash_nl(input);
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004375 if (!isalnum(ch) && ch != '_') {
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004376 /* End of variable name reached */
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004377 break;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004378 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004379 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004380 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004381 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004382 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004383 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004384 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004385 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004386 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004387 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004388 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004389 o_addchr(dest, ch | quote_mask);
4390 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004391 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004392 case '$': /* pid */
4393 case '!': /* last bg pid */
4394 case '?': /* last exit code */
4395 case '#': /* number of args */
4396 case '*': /* args */
4397 case '@': /* args */
4398 goto make_one_char_var;
4399 case '{': {
Mike Frysingeref3e7fd2009-06-01 14:13:39 -04004400 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4401
Denys Vlasenko74369502010-05-21 19:52:01 +02004402 ch = i_getch(input); /* eat '{' */
4403 nommu_addchr(as_string, ch);
4404
Denys Vlasenko46e64982016-09-29 19:50:55 +02004405 ch = i_getch_and_eat_bkslash_nl(input); /* first char after '{' */
Denys Vlasenko74369502010-05-21 19:52:01 +02004406 /* It should be ${?}, or ${#var},
4407 * or even ${?+subst} - operator acting on a special variable,
4408 * or the beginning of variable name.
4409 */
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004410 if (ch == EOF
4411 || (!strchr(_SPECIAL_VARS_STR, ch) && !isalnum(ch)) /* not one of those */
4412 ) {
Denys Vlasenko74369502010-05-21 19:52:01 +02004413 bad_dollar_syntax:
4414 syntax_error_unterm_str("${name}");
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004415 debug_printf_parse("parse_dollar return 0: unterminated ${name}\n");
4416 return 0;
Denys Vlasenko74369502010-05-21 19:52:01 +02004417 }
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004418 nommu_addchr(as_string, ch);
Denys Vlasenko74369502010-05-21 19:52:01 +02004419 ch |= quote_mask;
4420
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004421 /* It's possible to just call add_till_closing_bracket() at this point.
Denys Vlasenko74369502010-05-21 19:52:01 +02004422 * However, this regresses some of our testsuite cases
4423 * which check invalid constructs like ${%}.
4424 * Oh well... let's check that the var name part is fine... */
4425
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004426 while (1) {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004427 unsigned pos;
4428
Denys Vlasenko74369502010-05-21 19:52:01 +02004429 o_addchr(dest, ch);
4430 debug_printf_parse(": '%c'\n", ch);
4431
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004432 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004433 nommu_addchr(as_string, ch);
Denys Vlasenko74369502010-05-21 19:52:01 +02004434 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00004435 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004436
Denys Vlasenko74369502010-05-21 19:52:01 +02004437 if (!isalnum(ch) && ch != '_') {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004438 unsigned end_ch;
4439 unsigned char last_ch;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004440 /* handle parameter expansions
4441 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
4442 */
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004443 if (!strchr(VAR_SUBST_OPS, ch)) /* ${var<bad_char>... */
Denys Vlasenko74369502010-05-21 19:52:01 +02004444 goto bad_dollar_syntax;
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004445
4446 /* Eat everything until closing '}' (or ':') */
4447 end_ch = '}';
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004448 if (BASH_SUBSTR
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004449 && ch == ':'
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004450 && !strchr(MINUS_PLUS_EQUAL_QUESTION, i_peek(input))
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004451 ) {
4452 /* It's ${var:N[:M]} thing */
4453 end_ch = '}' * 0x100 + ':';
4454 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004455 if (BASH_PATTERN_SUBST
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004456 && ch == '/'
4457 ) {
4458 /* It's ${var/[/]pattern[/repl]} thing */
4459 if (i_peek(input) == '/') { /* ${var//pattern[/repl]}? */
4460 i_getch(input);
4461 nommu_addchr(as_string, '/');
4462 ch = '\\';
4463 }
4464 end_ch = '}' * 0x100 + '/';
4465 }
4466 o_addchr(dest, ch);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004467 again:
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004468 if (!BB_MMU)
4469 pos = dest->length;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004470#if ENABLE_HUSH_DOLLAR_OPS
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004471 last_ch = add_till_closing_bracket(dest, input, end_ch);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004472 if (last_ch == 0) /* error? */
4473 return 0;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004474#else
4475#error Simple code to only allow ${var} is not implemented
4476#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004477 if (as_string) {
4478 o_addstr(as_string, dest->data + pos);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004479 o_addchr(as_string, last_ch);
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004480 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004481
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004482 if ((BASH_SUBSTR || BASH_PATTERN_SUBST)
4483 && (end_ch & 0xff00)
4484 ) {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004485 /* close the first block: */
4486 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004487 /* while parsing N from ${var:N[:M]}
4488 * or pattern from ${var/[/]pattern[/repl]} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004489 if ((end_ch & 0xff) == last_ch) {
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004490 /* got ':' or '/'- parse the rest */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004491 end_ch = '}';
4492 goto again;
4493 }
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004494 /* got '}' */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004495 if (BASH_SUBSTR && end_ch == '}' * 0x100 + ':') {
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004496 /* it's ${var:N} - emulate :999999999 */
4497 o_addstr(dest, "999999999");
4498 } /* else: it's ${var/[/]pattern} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004499 }
Denys Vlasenko74369502010-05-21 19:52:01 +02004500 break;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004501 }
Denys Vlasenko74369502010-05-21 19:52:01 +02004502 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004503 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4504 break;
4505 }
Denys Vlasenko0b883582016-12-23 16:49:07 +01004506#if ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004507 case '(': {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004508 unsigned pos;
4509
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004510 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004511 nommu_addchr(as_string, ch);
Denys Vlasenko0b883582016-12-23 16:49:07 +01004512# if ENABLE_FEATURE_SH_MATH
Denys Vlasenko657086a2016-09-29 18:07:42 +02004513 if (i_peek_and_eat_bkslash_nl(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004514 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004515 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004516 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4517 o_addchr(dest, /*quote_mask |*/ '+');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004518 if (!BB_MMU)
4519 pos = dest->length;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004520 if (!add_till_closing_bracket(dest, input, ')' | DOUBLE_CLOSE_CHAR_FLAG))
4521 return 0; /* error */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004522 if (as_string) {
4523 o_addstr(as_string, dest->data + pos);
4524 o_addchr(as_string, ')');
4525 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004526 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004527 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004528 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004529 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004530# endif
4531# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004532 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4533 o_addchr(dest, quote_mask | '`');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004534 if (!BB_MMU)
4535 pos = dest->length;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004536 if (!add_till_closing_bracket(dest, input, ')'))
4537 return 0; /* error */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004538 if (as_string) {
4539 o_addstr(as_string, dest->data + pos);
Denys Vlasenkob70cef72010-01-12 13:45:45 +01004540 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004541 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004542 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004543# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004544 break;
4545 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004546#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004547 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004548 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004549 nommu_addchr(as_string, ch);
Denys Vlasenko657086a2016-09-29 18:07:42 +02004550 ch = i_peek_and_eat_bkslash_nl(input);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004551 if (isalnum(ch)) { /* it's $_name or $_123 */
4552 ch = '_';
4553 goto make_var;
4554 }
4555 /* else: it's $_ */
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02004556 /* TODO: $_ and $-: */
4557 /* $_ Shell or shell script name; or last argument of last command
4558 * (if last command wasn't a pipe; if it was, bash sets $_ to "");
4559 * but in command's env, set to full pathname used to invoke it */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004560 /* $- Option flags set by set builtin or shell options (-i etc) */
4561 default:
4562 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00004563 }
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004564 debug_printf_parse("parse_dollar return 1 (ok)\n");
4565 return 1;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004566#undef as_string
Eric Andersen25f27032001-04-26 23:22:31 +00004567}
4568
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004569#if BB_MMU
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004570# if BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004571#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4572 encode_string(dest, input, dquote_end, process_bkslash)
4573# else
4574/* only ${var/pattern/repl} (its pattern part) needs additional mode */
4575#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4576 encode_string(dest, input, dquote_end)
4577# endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004578#define as_string NULL
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004579
4580#else /* !MMU */
4581
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004582# if BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004583/* all parameters are needed, no macro tricks */
4584# else
4585#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4586 encode_string(as_string, dest, input, dquote_end)
4587# endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004588#endif
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004589static int encode_string(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004590 o_string *dest,
4591 struct in_str *input,
Denys Vlasenko14e289b2010-09-10 10:15:18 +02004592 int dquote_end,
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004593 int process_bkslash)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004594{
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004595#if !BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004596 const int process_bkslash = 1;
4597#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004598 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004599 int next;
4600
4601 again:
4602 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004603 if (ch != EOF)
4604 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004605 if (ch == dquote_end) { /* may be only '"' or EOF */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004606 debug_printf_parse("encode_string return 1 (ok)\n");
4607 return 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004608 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004609 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004610 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004611 syntax_error_unterm_ch('"');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004612 return 0; /* error */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004613 }
4614 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004615 if (ch != '\n') {
4616 next = i_peek(input);
4617 }
Denys Vlasenkof37eb392009-10-18 11:46:35 +02004618 debug_printf_parse("\" ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004619 ch, ch, !!(dest->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004620 if (process_bkslash && ch == '\\') {
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004621 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004622 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004623 xfunc_die();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004624 }
4625 /* bash:
4626 * "The backslash retains its special meaning [in "..."]
4627 * only when followed by one of the following characters:
4628 * $, `, ", \, or <newline>. A double quote may be quoted
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02004629 * within double quotes by preceding it with a backslash."
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004630 * NB: in (unquoted) heredoc, above does not apply to ",
4631 * therefore we check for it by "next == dquote_end" cond.
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004632 */
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004633 if (next == dquote_end || strchr("$`\\\n", next)) {
Denys Vlasenko850b15b2010-09-09 12:58:19 +02004634 ch = i_getch(input); /* eat next */
4635 if (ch == '\n')
4636 goto again; /* skip \<newline> */
Denys Vlasenko4f870492010-09-10 11:06:01 +02004637 } /* else: ch remains == '\\', and we double it below: */
4638 o_addqchr(dest, ch); /* \c if c is a glob char, else just c */
Denys Vlasenko850b15b2010-09-09 12:58:19 +02004639 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004640 goto again;
4641 }
4642 if (ch == '$') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004643 if (!parse_dollar(as_string, dest, input, /*quote_mask:*/ 0x80)) {
4644 debug_printf_parse("encode_string return 0: "
4645 "parse_dollar returned 0 (error)\n");
4646 return 0;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004647 }
4648 goto again;
4649 }
4650#if ENABLE_HUSH_TICK
4651 if (ch == '`') {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004652 //unsigned pos = dest->length;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004653 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4654 o_addchr(dest, 0x80 | '`');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004655 if (!add_till_backquote(dest, input, /*in_dquote:*/ dquote_end == '"'))
4656 return 0; /* error */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004657 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4658 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00004659 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004660 }
4661#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00004662 o_addQchr(dest, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004663 goto again;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004664#undef as_string
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004665}
4666
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004667/*
4668 * Scan input until EOF or end_trigger char.
4669 * Return a list of pipes to execute, or NULL on EOF
4670 * or if end_trigger character is met.
Denys Vlasenkocecbc982011-03-30 18:54:52 +02004671 * On syntax error, exit if shell is not interactive,
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004672 * reset parsing machinery and start parsing anew,
4673 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004674 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004675static struct pipe *parse_stream(char **pstring,
4676 struct in_str *input,
4677 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00004678{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004679 struct parse_context ctx;
4680 o_string dest = NULL_O_STRING;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004681 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00004682
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004683 /* Single-quote triggers a bypass of the main loop until its mate is
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004684 * found. When recursing, quote state is passed in via dest->o_expflags.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004685 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004686 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
Denys Vlasenko90a99042009-09-06 02:36:23 +02004687 end_trigger ? end_trigger : 'X');
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004688 debug_enter();
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004689
Denys Vlasenkof37eb392009-10-18 11:46:35 +02004690 /* If very first arg is "" or '', dest.data may end up NULL.
4691 * Preventing this: */
4692 o_addchr(&dest, '\0');
4693 dest.length = 0;
4694
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004695 /* We used to separate words on $IFS here. This was wrong.
4696 * $IFS is used only for word splitting when $var is expanded,
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004697 * here we should use blank chars as separators, not $IFS
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004698 */
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004699
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004700 if (MAYBE_ASSIGNMENT != 0)
4701 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004702 initialize_context(&ctx);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004703 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004704 while (1) {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004705 const char *is_blank;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004706 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004707 int ch;
4708 int next;
4709 int redir_fd;
4710 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004711
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004712 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004713 debug_printf_parse(": ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004714 ch, ch, !!(dest.o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004715 if (ch == EOF) {
4716 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004717
4718 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004719 syntax_error_unterm_str("here document");
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004720 goto parse_error;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004721 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004722 if (end_trigger == ')') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004723 syntax_error_unterm_ch('(');
4724 goto parse_error;
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004725 }
Denys Vlasenko42246472016-11-07 16:22:35 +01004726 if (end_trigger == '}') {
4727 syntax_error_unterm_ch('{');
4728 goto parse_error;
4729 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004730
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004731 if (done_word(&dest, &ctx)) {
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004732 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004733 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004734 o_free(&dest);
4735 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004736 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004737 /* If we got nothing... */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004738 /* (this makes bare "&" cmd a no-op.
4739 * bash says: "syntax error near unexpected token '&'") */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004740 if (pi->num_cmds == 0
Denys Vlasenko60cb48c2013-01-14 15:57:44 +01004741 IF_HAS_KEYWORDS(&& pi->res_word == RES_NONE)
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004742 ) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004743 free_pipe_list(pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004744 pi = NULL;
4745 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004746#if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02004747 debug_printf_parse("as_string1 '%s'\n", ctx.as_string.data);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004748 if (pstring)
4749 *pstring = ctx.as_string.data;
4750 else
4751 o_free_unsafe(&ctx.as_string);
4752#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004753 debug_leave();
4754 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004755 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004756 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004757 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004758
4759 next = '\0';
4760 if (ch != '\n')
4761 next = i_peek(input);
4762
4763 is_special = "{}<>;&|()#'" /* special outside of "str" */
4764 "\\$\"" IF_HUSH_TICK("`"); /* always special */
4765 /* Are { and } special here? */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02004766 if (ctx.command->argv /* word [word]{... - non-special */
4767 || dest.length /* word{... - non-special */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004768 || dest.has_quoted_part /* ""{... - non-special */
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004769 || (next != ';' /* }; - special */
4770 && next != ')' /* }) - special */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004771 && next != '(' /* {( - special */
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004772 && next != '&' /* }& and }&& ... - special */
4773 && next != '|' /* }|| ... - special */
4774 && !strchr(defifs, next) /* {word - non-special */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02004775 )
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004776 ) {
4777 /* They are not special, skip "{}" */
4778 is_special += 2;
4779 }
4780 is_special = strchr(is_special, ch);
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004781 is_blank = strchr(defifs, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004782
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004783 if (!is_special && !is_blank) { /* ordinary char */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00004784 ordinary_char:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004785 o_addQchr(&dest, ch);
4786 if ((dest.o_assignment == MAYBE_ASSIGNMENT
4787 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00004788 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004789 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00004790 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004791 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004792 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko55789c62008-06-18 16:30:42 +00004793 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004794 continue;
4795 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004796
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004797 if (is_blank) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004798 if (done_word(&dest, &ctx)) {
4799 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00004800 }
Denis Vlasenko37181682009-04-03 03:19:15 +00004801 if (ch == '\n') {
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004802 /* Is this a case when newline is simply ignored?
4803 * Some examples:
4804 * "cmd | <newline> cmd ..."
4805 * "case ... in <newline> word) ..."
4806 */
4807 if (IS_NULL_CMD(ctx.command)
4808 && dest.length == 0 && !dest.has_quoted_part
Denis Vlasenkof1736072008-07-31 10:09:26 +00004809 ) {
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004810 /* This newline can be ignored. But...
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004811 * Without check #1, interactive shell
4812 * ignores even bare <newline>,
4813 * and shows the continuation prompt:
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004814 * ps1_prompt$ <enter>
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004815 * ps2> _ <=== wrong, should be ps1
4816 * Without check #2, "cmd & <newline>"
4817 * is similarly mistreated.
4818 * (BTW, this makes "cmd & cmd"
4819 * and "cmd && cmd" non-orthogonal.
4820 * Really, ask yourself, why
4821 * "cmd && <newline>" doesn't start
4822 * cmd but waits for more input?
4823 * No reason...)
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004824 */
4825 struct pipe *pi = ctx.list_head;
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004826 if (pi->num_cmds != 0 /* check #1 */
4827 && pi->followup != PIPE_BG /* check #2 */
4828 ) {
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004829 continue;
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004830 }
Denis Vlasenkof1736072008-07-31 10:09:26 +00004831 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004832 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004833 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004834 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
4835 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004836 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004837 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004838 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004839 heredoc_cnt = 0;
4840 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004841 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004842 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko240c2552009-04-03 03:45:05 +00004843 ch = ';';
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004844 /* note: if (is_blank) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004845 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004846 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004847 }
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00004848
4849 /* "cmd}" or "cmd }..." without semicolon or &:
4850 * } is an ordinary char in this case, even inside { cmd; }
4851 * Pathological example: { ""}; } should exec "}" cmd
4852 */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004853 if (ch == '}') {
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004854 if (dest.length != 0 /* word} */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004855 || dest.has_quoted_part /* ""} */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004856 ) {
4857 goto ordinary_char;
4858 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004859 if (!IS_NULL_CMD(ctx.command)) { /* cmd } */
4860 /* Generally, there should be semicolon: "cmd; }"
4861 * However, bash allows to omit it if "cmd" is
4862 * a group. Examples:
4863 * { { echo 1; } }
4864 * {(echo 1)}
4865 * { echo 0 >&2 | { echo 1; } }
4866 * { while false; do :; done }
4867 * { case a in b) ;; esac }
4868 */
4869 if (ctx.command->group)
4870 goto term_group;
4871 goto ordinary_char;
4872 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004873 if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004874 /* Can't be an end of {cmd}, skip the check */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004875 goto skip_end_trigger;
4876 /* else: } does terminate a group */
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00004877 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004878 term_group:
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004879 if (end_trigger && end_trigger == ch
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004880 && (ch != ';' || heredoc_cnt == 0)
4881#if ENABLE_HUSH_CASE
4882 && (ch != ')'
4883 || ctx.ctx_res_w != RES_MATCH
Denys Vlasenko38292b62010-09-05 14:49:40 +02004884 || (!dest.has_quoted_part && strcmp(dest.data, "esac") == 0)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004885 )
4886#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004887 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004888 if (heredoc_cnt) {
4889 /* This is technically valid:
4890 * { cat <<HERE; }; echo Ok
4891 * heredoc
4892 * heredoc
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004893 * HERE
4894 * but we don't support this.
4895 * We require heredoc to be in enclosing {}/(),
4896 * if any.
4897 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004898 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004899 goto parse_error;
4900 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004901 if (done_word(&dest, &ctx)) {
4902 goto parse_error;
4903 }
4904 done_pipe(&ctx, PIPE_SEQ);
4905 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004906 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko240c2552009-04-03 03:45:05 +00004907 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00004908 if (!HAS_KEYWORDS
Denys Vlasenko60cb48c2013-01-14 15:57:44 +01004909 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00004910 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004911 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004912#if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02004913 debug_printf_parse("as_string2 '%s'\n", ctx.as_string.data);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004914 if (pstring)
4915 *pstring = ctx.as_string.data;
4916 else
4917 o_free_unsafe(&ctx.as_string);
4918#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004919 debug_leave();
4920 debug_printf_parse("parse_stream return %p: "
4921 "end_trigger char found\n",
4922 ctx.list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004923 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004924 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004925 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004926 skip_end_trigger:
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004927 if (is_blank)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004928 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004929
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004930 /* Catch <, > before deciding whether this word is
4931 * an assignment. a=1 2>z b=2: b=2 is still assignment */
4932 switch (ch) {
4933 case '>':
4934 redir_fd = redirect_opt_num(&dest);
4935 if (done_word(&dest, &ctx)) {
4936 goto parse_error;
4937 }
4938 redir_style = REDIRECT_OVERWRITE;
4939 if (next == '>') {
4940 redir_style = REDIRECT_APPEND;
4941 ch = i_getch(input);
4942 nommu_addchr(&ctx.as_string, ch);
4943 }
4944#if 0
4945 else if (next == '(') {
4946 syntax_error(">(process) not supported");
4947 goto parse_error;
4948 }
4949#endif
4950 if (parse_redirect(&ctx, redir_fd, redir_style, input))
4951 goto parse_error;
4952 continue; /* back to top of while (1) */
4953 case '<':
4954 redir_fd = redirect_opt_num(&dest);
4955 if (done_word(&dest, &ctx)) {
4956 goto parse_error;
4957 }
4958 redir_style = REDIRECT_INPUT;
4959 if (next == '<') {
4960 redir_style = REDIRECT_HEREDOC;
4961 heredoc_cnt++;
4962 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
4963 ch = i_getch(input);
4964 nommu_addchr(&ctx.as_string, ch);
4965 } else if (next == '>') {
4966 redir_style = REDIRECT_IO;
4967 ch = i_getch(input);
4968 nommu_addchr(&ctx.as_string, ch);
4969 }
4970#if 0
4971 else if (next == '(') {
4972 syntax_error("<(process) not supported");
4973 goto parse_error;
4974 }
4975#endif
4976 if (parse_redirect(&ctx, redir_fd, redir_style, input))
4977 goto parse_error;
4978 continue; /* back to top of while (1) */
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004979 case '#':
4980 if (dest.length == 0 && !dest.has_quoted_part) {
4981 /* skip "#comment" */
4982 while (1) {
4983 ch = i_peek(input);
4984 if (ch == EOF || ch == '\n')
4985 break;
4986 i_getch(input);
4987 /* note: we do not add it to &ctx.as_string */
4988 }
4989 nommu_addchr(&ctx.as_string, '\n');
4990 continue; /* back to top of while (1) */
4991 }
4992 break;
4993 case '\\':
4994 if (next == '\n') {
4995 /* It's "\<newline>" */
4996#if !BB_MMU
4997 /* Remove trailing '\' from ctx.as_string */
4998 ctx.as_string.data[--ctx.as_string.length] = '\0';
4999#endif
5000 ch = i_getch(input); /* eat it */
5001 continue; /* back to top of while (1) */
5002 }
5003 break;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005004 }
5005
5006 if (dest.o_assignment == MAYBE_ASSIGNMENT
5007 /* check that we are not in word in "a=1 2>word b=1": */
5008 && !ctx.pending_redirect
5009 ) {
5010 /* ch is a special char and thus this word
5011 * cannot be an assignment */
5012 dest.o_assignment = NOT_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02005013 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005014 }
5015
Denys Vlasenkocbfe6ad2009-08-12 19:47:44 +02005016 /* Note: nommu_addchr(&ctx.as_string, ch) is already done */
5017
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005018 switch (ch) {
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01005019 case '#': /* non-comment #: "echo a#b" etc */
5020 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005021 break;
5022 case '\\':
5023 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005024 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005025 xfunc_die();
Eric Andersen25f27032001-04-26 23:22:31 +00005026 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005027 ch = i_getch(input);
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01005028 /* note: ch != '\n' (that case does not reach this place) */
5029 o_addchr(&dest, '\\');
5030 /*nommu_addchr(&ctx.as_string, '\\'); - already done */
5031 o_addchr(&dest, ch);
5032 nommu_addchr(&ctx.as_string, ch);
5033 /* Example: echo Hello \2>file
5034 * we need to know that word 2 is quoted */
5035 dest.has_quoted_part = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005036 break;
5037 case '$':
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005038 if (!parse_dollar(&ctx.as_string, &dest, input, /*quote_mask:*/ 0)) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005039 debug_printf_parse("parse_stream parse error: "
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005040 "parse_dollar returned 0 (error)\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005041 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005042 }
Eric Andersen25f27032001-04-26 23:22:31 +00005043 break;
5044 case '\'':
Denys Vlasenko38292b62010-09-05 14:49:40 +02005045 dest.has_quoted_part = 1;
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005046 if (next == '\'' && !ctx.pending_redirect) {
5047 insert_empty_quoted_str_marker:
5048 nommu_addchr(&ctx.as_string, next);
5049 i_getch(input); /* eat second ' */
5050 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5051 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5052 } else {
5053 while (1) {
5054 ch = i_getch(input);
5055 if (ch == EOF) {
5056 syntax_error_unterm_ch('\'');
5057 goto parse_error;
5058 }
5059 nommu_addchr(&ctx.as_string, ch);
5060 if (ch == '\'')
5061 break;
5062 o_addqchr(&dest, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005063 }
Eric Andersen25f27032001-04-26 23:22:31 +00005064 }
Eric Andersen25f27032001-04-26 23:22:31 +00005065 break;
5066 case '"':
Denys Vlasenko38292b62010-09-05 14:49:40 +02005067 dest.has_quoted_part = 1;
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005068 if (next == '"' && !ctx.pending_redirect)
5069 goto insert_empty_quoted_str_marker;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005070 if (dest.o_assignment == NOT_ASSIGNMENT)
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02005071 dest.o_expflags |= EXP_FLAG_ESC_GLOB_CHARS;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005072 if (!encode_string(&ctx.as_string, &dest, input, '"', /*process_bkslash:*/ 1))
Denys Vlasenko77a7b552010-09-09 12:40:03 +02005073 goto parse_error;
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02005074 dest.o_expflags &= ~EXP_FLAG_ESC_GLOB_CHARS;
Eric Andersen25f27032001-04-26 23:22:31 +00005075 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005076#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005077 case '`': {
Denys Vlasenko60a94142011-05-13 20:57:01 +02005078 USE_FOR_NOMMU(unsigned pos;)
Denys Vlasenko2e48d532010-05-22 17:30:39 +02005079
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005080 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5081 o_addchr(&dest, '`');
Denys Vlasenko60a94142011-05-13 20:57:01 +02005082 USE_FOR_NOMMU(pos = dest.length;)
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005083 if (!add_till_backquote(&dest, input, /*in_dquote:*/ 0))
5084 goto parse_error;
Denys Vlasenko2e48d532010-05-22 17:30:39 +02005085# if !BB_MMU
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005086 o_addstr(&ctx.as_string, dest.data + pos);
5087 o_addchr(&ctx.as_string, '`');
Denys Vlasenko2e48d532010-05-22 17:30:39 +02005088# endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005089 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5090 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00005091 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005092 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005093#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005094 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005095#if ENABLE_HUSH_CASE
5096 case_semi:
5097#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005098 if (done_word(&dest, &ctx)) {
5099 goto parse_error;
5100 }
5101 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005102#if ENABLE_HUSH_CASE
5103 /* Eat multiple semicolons, detect
5104 * whether it means something special */
5105 while (1) {
5106 ch = i_peek(input);
5107 if (ch != ';')
5108 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005109 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005110 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02005111 if (ctx.ctx_res_w == RES_CASE_BODY) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005112 ctx.ctx_dsemicolon = 1;
5113 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005114 break;
5115 }
5116 }
5117#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005118 new_cmd:
5119 /* We just finished a cmd. New one may start
5120 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005121 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02005122 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Eric Andersen25f27032001-04-26 23:22:31 +00005123 break;
5124 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005125 if (done_word(&dest, &ctx)) {
5126 goto parse_error;
5127 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005128 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005129 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005130 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005131 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00005132 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005133 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00005134 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005135 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005136 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005137 if (done_word(&dest, &ctx)) {
5138 goto parse_error;
5139 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005140#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005141 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00005142 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005143#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005144 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005145 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005146 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005147 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00005148 } else {
5149 /* we could pick up a file descriptor choice here
5150 * with redirect_opt_num(), but bash doesn't do it.
5151 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005152 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00005153 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005154 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005155 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005156#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00005157 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005158 if (ctx.ctx_res_w == RES_MATCH
5159 && ctx.command->argv == NULL /* not (word|(... */
5160 && dest.length == 0 /* not word(... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02005161 && dest.has_quoted_part == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005162 ) {
5163 continue;
5164 }
5165#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005166 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005167 if (parse_group(&dest, &ctx, input, ch) != 0) {
5168 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005169 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005170 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005171 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005172#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005173 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005174 goto case_semi;
5175#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005176 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005177 /* proper use of this character is caught by end_trigger:
5178 * if we see {, we call parse_group(..., end_trigger='}')
5179 * and it will match } earlier (not here). */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005180 syntax_error_unexpected_ch(ch);
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01005181 G.last_exitcode = 2;
Denys Vlasenko9fda6092017-07-14 13:36:48 +02005182 goto parse_error2;
Eric Andersen25f27032001-04-26 23:22:31 +00005183 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005184 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005185 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005186 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005187 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005188
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005189 parse_error:
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01005190 G.last_exitcode = 1;
Denys Vlasenko9fda6092017-07-14 13:36:48 +02005191 parse_error2:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005192 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005193 struct parse_context *pctx;
5194 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005195
5196 /* Clean up allocated tree.
Denys Vlasenko764b2f02009-06-07 16:05:04 +02005197 * Sample for finding leaks on syntax error recovery path.
5198 * Run it from interactive shell, watch pmap `pidof hush`.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005199 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00005200 * Samples to catch leaks at execution:
Denys Vlasenko5d5a6112016-11-07 19:36:50 +01005201 * while if (true | { true;}); then echo ok; fi; do break; done
5202 * 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 +00005203 */
5204 pctx = &ctx;
5205 do {
5206 /* Update pipe/command counts,
5207 * otherwise freeing may miss some */
5208 done_pipe(pctx, PIPE_SEQ);
5209 debug_printf_clean("freeing list %p from ctx %p\n",
5210 pctx->list_head, pctx);
5211 debug_print_tree(pctx->list_head, 0);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005212 free_pipe_list(pctx->list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005213 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005214#if !BB_MMU
5215 o_free_unsafe(&pctx->as_string);
5216#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005217 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005218 if (pctx != &ctx) {
5219 free(pctx);
5220 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005221 IF_HAS_KEYWORDS(pctx = p2;)
5222 } while (HAS_KEYWORDS && pctx);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005223
Denys Vlasenkoa439fa92011-03-30 19:11:46 +02005224 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005225#if !BB_MMU
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005226 if (pstring)
5227 *pstring = NULL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005228#endif
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005229 debug_leave();
5230 return ERR_PTR;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005231 }
Eric Andersen25f27032001-04-26 23:22:31 +00005232}
5233
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005234
5235/*** Execution routines ***/
5236
5237/* Expansion can recurse, need forward decls: */
Denys Vlasenko637982f2017-07-06 01:52:23 +02005238#if !BASH_PATTERN_SUBST && !ENABLE_HUSH_CASE
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005239/* only ${var/pattern/repl} (its pattern part) needs additional mode */
5240#define expand_string_to_string(str, do_unbackslash) \
5241 expand_string_to_string(str)
5242#endif
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005243static char *expand_string_to_string(const char *str, int do_unbackslash);
Denys Vlasenko26777aa2010-11-22 23:49:10 +01005244#if ENABLE_HUSH_TICK
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005245static int process_command_subs(o_string *dest, const char *s);
Denys Vlasenko26777aa2010-11-22 23:49:10 +01005246#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005247
5248/* expand_strvec_to_strvec() takes a list of strings, expands
5249 * all variable references within and returns a pointer to
5250 * a list of expanded strings, possibly with larger number
5251 * of strings. (Think VAR="a b"; echo $VAR).
5252 * This new list is allocated as a single malloc block.
5253 * NULL-terminated list of char* pointers is at the beginning of it,
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005254 * followed by strings themselves.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005255 * Caller can deallocate entire list by single free(list). */
5256
Denys Vlasenko238081f2010-10-03 14:26:26 +02005257/* A horde of its helpers come first: */
5258
5259static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
5260{
5261 while (--len >= 0) {
Denys Vlasenko9e800222010-10-03 14:28:04 +02005262 char c = *str++;
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005263
Denys Vlasenko9e800222010-10-03 14:28:04 +02005264#if ENABLE_HUSH_BRACE_EXPANSION
5265 if (c == '{' || c == '}') {
5266 /* { -> \{, } -> \} */
5267 o_addchr(o, '\\');
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005268 /* And now we want to add { or } and continue:
5269 * o_addchr(o, c);
5270 * continue;
Denys Vlasenko10ad6222017-04-17 16:13:32 +02005271 * luckily, just falling through achieves this.
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005272 */
Denys Vlasenko9e800222010-10-03 14:28:04 +02005273 }
5274#endif
5275 o_addchr(o, c);
5276 if (c == '\\') {
Denys Vlasenko238081f2010-10-03 14:26:26 +02005277 /* \z -> \\\z; \<eol> -> \\<eol> */
5278 o_addchr(o, '\\');
5279 if (len) {
5280 len--;
5281 o_addchr(o, '\\');
5282 o_addchr(o, *str++);
5283 }
5284 }
5285 }
5286}
5287
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005288/* Store given string, finalizing the word and starting new one whenever
5289 * we encounter IFS char(s). This is used for expanding variable values.
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005290 * End-of-string does NOT finalize word: think about 'echo -$VAR-'.
5291 * Return in *ended_with_ifs:
5292 * 1 - ended with IFS char, else 0 (this includes case of empty str).
5293 */
5294static int expand_on_ifs(int *ended_with_ifs, o_string *output, int n, const char *str)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005295{
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005296 int last_is_ifs = 0;
5297
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005298 while (1) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005299 int word_len;
5300
5301 if (!*str) /* EOL - do not finalize word */
5302 break;
5303 word_len = strcspn(str, G.ifs);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005304 if (word_len) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005305 /* We have WORD_LEN leading non-IFS chars */
Denys Vlasenko238081f2010-10-03 14:26:26 +02005306 if (!(output->o_expflags & EXP_FLAG_GLOB)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005307 o_addblock(output, str, word_len);
Denys Vlasenko238081f2010-10-03 14:26:26 +02005308 } else {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005309 /* Protect backslashes against globbing up :)
Denys Vlasenkoa769e022010-09-10 10:12:34 +02005310 * Example: "v='\*'; echo b$v" prints "b\*"
5311 * (and does not try to glob on "*")
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005312 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005313 o_addblock_duplicate_backslash(output, str, word_len);
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005314 /*/ Why can't we do it easier? */
5315 /*o_addblock(output, str, word_len); - WRONG: "v='\*'; echo Z$v" prints "Z*" instead of "Z\*" */
5316 /*o_addqblock(output, str, word_len); - WRONG: "v='*'; echo Z$v" prints "Z*" instead of Z* files */
5317 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005318 last_is_ifs = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005319 str += word_len;
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005320 if (!*str) /* EOL - do not finalize word */
5321 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005322 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005323
5324 /* We know str here points to at least one IFS char */
5325 last_is_ifs = 1;
5326 str += strspn(str, G.ifs); /* skip IFS chars */
5327 if (!*str) /* EOL - do not finalize word */
5328 break;
5329
5330 /* Start new word... but not always! */
5331 /* Case "v=' a'; echo ''$v": we do need to finalize empty word: */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005332 if (output->has_quoted_part
5333 /* Case "v=' a'; echo $v":
5334 * here nothing precedes the space in $v expansion,
5335 * therefore we should not finish the word
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005336 * (IOW: if there *is* word to finalize, only then do it):
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005337 */
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005338 || (n > 0 && output->data[output->length - 1])
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005339 ) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005340 o_addchr(output, '\0');
5341 debug_print_list("expand_on_ifs", output, n);
5342 n = o_save_ptr(output, n);
5343 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005344 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005345
5346 if (ended_with_ifs)
5347 *ended_with_ifs = last_is_ifs;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005348 debug_print_list("expand_on_ifs[1]", output, n);
5349 return n;
5350}
5351
5352/* Helper to expand $((...)) and heredoc body. These act as if
5353 * they are in double quotes, with the exception that they are not :).
5354 * Just the rules are similar: "expand only $var and `cmd`"
5355 *
5356 * Returns malloced string.
5357 * As an optimization, we return NULL if expansion is not needed.
5358 */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005359#if !BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005360/* only ${var/pattern/repl} (its pattern part) needs additional mode */
5361#define encode_then_expand_string(str, process_bkslash, do_unbackslash) \
5362 encode_then_expand_string(str)
5363#endif
5364static char *encode_then_expand_string(const char *str, int process_bkslash, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005365{
Denys Vlasenko637982f2017-07-06 01:52:23 +02005366#if !BASH_PATTERN_SUBST
5367 const int do_unbackslash = 1;
5368#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005369 char *exp_str;
5370 struct in_str input;
5371 o_string dest = NULL_O_STRING;
5372
5373 if (!strchr(str, '$')
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02005374 && !strchr(str, '\\')
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005375#if ENABLE_HUSH_TICK
5376 && !strchr(str, '`')
5377#endif
5378 ) {
5379 return NULL;
5380 }
5381
5382 /* We need to expand. Example:
5383 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
5384 */
5385 setup_string_in_str(&input, str);
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005386 encode_string(NULL, &dest, &input, EOF, process_bkslash);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005387//TODO: error check (encode_string returns 0 on error)?
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005388 //bb_error_msg("'%s' -> '%s'", str, dest.data);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005389 exp_str = expand_string_to_string(dest.data, /*unbackslash:*/ do_unbackslash);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005390 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
5391 o_free_unsafe(&dest);
5392 return exp_str;
5393}
5394
Denys Vlasenko0b883582016-12-23 16:49:07 +01005395#if ENABLE_FEATURE_SH_MATH
Denys Vlasenko063847d2010-09-15 13:33:02 +02005396static arith_t expand_and_evaluate_arith(const char *arg, const char **errmsg_p)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005397{
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005398 arith_state_t math_state;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005399 arith_t res;
5400 char *exp_str;
5401
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005402 math_state.lookupvar = get_local_var_value;
5403 math_state.setvar = set_local_var_from_halves;
5404 //math_state.endofname = endofname;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005405 exp_str = encode_then_expand_string(arg, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005406 res = arith(&math_state, exp_str ? exp_str : arg);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005407 free(exp_str);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005408 if (errmsg_p)
5409 *errmsg_p = math_state.errmsg;
5410 if (math_state.errmsg)
5411 die_if_script(math_state.errmsg);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005412 return res;
5413}
5414#endif
5415
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005416#if BASH_PATTERN_SUBST
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005417/* ${var/[/]pattern[/repl]} helpers */
5418static char *strstr_pattern(char *val, const char *pattern, int *size)
5419{
5420 while (1) {
5421 char *end = scan_and_match(val, pattern, SCAN_MOVE_FROM_RIGHT + SCAN_MATCH_LEFT_HALF);
5422 debug_printf_varexp("val:'%s' pattern:'%s' end:'%s'\n", val, pattern, end);
5423 if (end) {
5424 *size = end - val;
5425 return val;
5426 }
5427 if (*val == '\0')
5428 return NULL;
5429 /* Optimization: if "*pat" did not match the start of "string",
5430 * we know that "tring", "ring" etc will not match too:
5431 */
5432 if (pattern[0] == '*')
5433 return NULL;
5434 val++;
5435 }
5436}
5437static char *replace_pattern(char *val, const char *pattern, const char *repl, char exp_op)
5438{
5439 char *result = NULL;
5440 unsigned res_len = 0;
5441 unsigned repl_len = strlen(repl);
5442
5443 while (1) {
5444 int size;
5445 char *s = strstr_pattern(val, pattern, &size);
5446 if (!s)
5447 break;
5448
5449 result = xrealloc(result, res_len + (s - val) + repl_len + 1);
5450 memcpy(result + res_len, val, s - val);
5451 res_len += s - val;
5452 strcpy(result + res_len, repl);
5453 res_len += repl_len;
5454 debug_printf_varexp("val:'%s' s:'%s' result:'%s'\n", val, s, result);
5455
5456 val = s + size;
5457 if (exp_op == '/')
5458 break;
5459 }
5460 if (val[0] && result) {
5461 result = xrealloc(result, res_len + strlen(val) + 1);
5462 strcpy(result + res_len, val);
5463 debug_printf_varexp("val:'%s' result:'%s'\n", val, result);
5464 }
5465 debug_printf_varexp("result:'%s'\n", result);
5466 return result;
5467}
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005468#endif /* BASH_PATTERN_SUBST */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005469
5470/* Helper:
5471 * Handles <SPECIAL_VAR_SYMBOL>varname...<SPECIAL_VAR_SYMBOL> construct.
5472 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005473static NOINLINE const char *expand_one_var(char **to_be_freed_pp, char *arg, char **pp)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005474{
5475 const char *val = NULL;
5476 char *to_be_freed = NULL;
5477 char *p = *pp;
5478 char *var;
5479 char first_char;
5480 char exp_op;
5481 char exp_save = exp_save; /* for compiler */
5482 char *exp_saveptr; /* points to expansion operator */
5483 char *exp_word = exp_word; /* for compiler */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005484 char arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005485
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005486 *p = '\0'; /* replace trailing SPECIAL_VAR_SYMBOL */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005487 var = arg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005488 exp_saveptr = arg[1] ? strchr(VAR_ENCODED_SUBST_OPS, arg[1]) : NULL;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005489 arg0 = arg[0];
5490 first_char = arg[0] = arg0 & 0x7f;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005491 exp_op = 0;
5492
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005493 if (first_char == '#' /* ${#... */
5494 && arg[1] && !exp_saveptr /* not ${#} and not ${#<op_char>...} */
5495 ) {
5496 /* It must be length operator: ${#var} */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005497 var++;
5498 exp_op = 'L';
5499 } else {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005500 /* Maybe handle parameter expansion */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005501 if (exp_saveptr /* if 2nd char is one of expansion operators */
5502 && strchr(NUMERIC_SPECVARS_STR, first_char) /* 1st char is special variable */
5503 ) {
5504 /* ${?:0}, ${#[:]%0} etc */
5505 exp_saveptr = var + 1;
5506 } else {
5507 /* ${?}, ${var}, ${var:0}, ${var[:]%0} etc */
5508 exp_saveptr = var+1 + strcspn(var+1, VAR_ENCODED_SUBST_OPS);
5509 }
5510 exp_op = exp_save = *exp_saveptr;
5511 if (exp_op) {
5512 exp_word = exp_saveptr + 1;
5513 if (exp_op == ':') {
5514 exp_op = *exp_word++;
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005515//TODO: try ${var:} and ${var:bogus} in non-bash config
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005516 if (BASH_SUBSTR
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005517 && (!exp_op || !strchr(MINUS_PLUS_EQUAL_QUESTION, exp_op))
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005518 ) {
5519 /* oops... it's ${var:N[:M]}, not ${var:?xxx} or some such */
5520 exp_op = ':';
5521 exp_word--;
5522 }
5523 }
5524 *exp_saveptr = '\0';
5525 } /* else: it's not an expansion op, but bare ${var} */
5526 }
5527
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005528 /* Look up the variable in question */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005529 if (isdigit(var[0])) {
Denys Vlasenko77a7b552010-09-09 12:40:03 +02005530 /* parse_dollar should have vetted var for us */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005531 int n = xatoi_positive(var);
5532 if (n < G.global_argc)
5533 val = G.global_argv[n];
5534 /* else val remains NULL: $N with too big N */
5535 } else {
5536 switch (var[0]) {
5537 case '$': /* pid */
5538 val = utoa(G.root_pid);
5539 break;
5540 case '!': /* bg pid */
5541 val = G.last_bg_pid ? utoa(G.last_bg_pid) : "";
5542 break;
5543 case '?': /* exitcode */
5544 val = utoa(G.last_exitcode);
5545 break;
5546 case '#': /* argc */
5547 val = utoa(G.global_argc ? G.global_argc-1 : 0);
5548 break;
5549 default:
5550 val = get_local_var_value(var);
5551 }
5552 }
5553
5554 /* Handle any expansions */
5555 if (exp_op == 'L') {
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02005556 reinit_unicode_for_hush();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005557 debug_printf_expand("expand: length(%s)=", val);
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02005558 val = utoa(val ? unicode_strlen(val) : 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005559 debug_printf_expand("%s\n", val);
5560 } else if (exp_op) {
5561 if (exp_op == '%' || exp_op == '#') {
5562 /* Standard-mandated substring removal ops:
5563 * ${parameter%word} - remove smallest suffix pattern
5564 * ${parameter%%word} - remove largest suffix pattern
5565 * ${parameter#word} - remove smallest prefix pattern
5566 * ${parameter##word} - remove largest prefix pattern
5567 *
5568 * Word is expanded to produce a glob pattern.
5569 * Then var's value is matched to it and matching part removed.
5570 */
5571 if (val && val[0]) {
Denys Vlasenko4f870492010-09-10 11:06:01 +02005572 char *t;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005573 char *exp_exp_word;
5574 char *loc;
5575 unsigned scan_flags = pick_scan(exp_op, *exp_word);
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02005576 if (exp_op == *exp_word) /* ## or %% */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005577 exp_word++;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005578 exp_exp_word = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005579 if (exp_exp_word)
5580 exp_word = exp_exp_word;
Denys Vlasenko4f870492010-09-10 11:06:01 +02005581 /* HACK ALERT. We depend here on the fact that
5582 * G.global_argv and results of utoa and get_local_var_value
5583 * are actually in writable memory:
5584 * scan_and_match momentarily stores NULs there. */
5585 t = (char*)val;
5586 loc = scan_and_match(t, exp_word, scan_flags);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005587 //bb_error_msg("op:%c str:'%s' pat:'%s' res:'%s'",
Denys Vlasenko4f870492010-09-10 11:06:01 +02005588 // exp_op, t, exp_word, loc);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005589 free(exp_exp_word);
5590 if (loc) { /* match was found */
5591 if (scan_flags & SCAN_MATCH_LEFT_HALF) /* #[#] */
Denys Vlasenko4f870492010-09-10 11:06:01 +02005592 val = loc; /* take right part */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005593 else /* %[%] */
Denys Vlasenko4f870492010-09-10 11:06:01 +02005594 val = to_be_freed = xstrndup(val, loc - val); /* left */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005595 }
5596 }
5597 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005598#if BASH_PATTERN_SUBST
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005599 else if (exp_op == '/' || exp_op == '\\') {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005600 /* It's ${var/[/]pattern[/repl]} thing.
5601 * Note that in encoded form it has TWO parts:
5602 * var/pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
Denys Vlasenko4f870492010-09-10 11:06:01 +02005603 * and if // is used, it is encoded as \:
5604 * var\pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005605 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005606 /* Empty variable always gives nothing: */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005607 // "v=''; echo ${v/*/w}" prints "", not "w"
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005608 if (val && val[0]) {
Denys Vlasenko4f870492010-09-10 11:06:01 +02005609 /* pattern uses non-standard expansion.
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005610 * repl should be unbackslashed and globbed
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005611 * by the usual expansion rules:
5612 * >az; >bz;
5613 * v='a bz'; echo "${v/a*z/a*z}" prints "a*z"
5614 * v='a bz'; echo "${v/a*z/\z}" prints "\z"
5615 * v='a bz'; echo ${v/a*z/a*z} prints "az"
5616 * v='a bz'; echo ${v/a*z/\z} prints "z"
5617 * (note that a*z _pattern_ is never globbed!)
5618 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005619 char *pattern, *repl, *t;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005620 pattern = encode_then_expand_string(exp_word, /*process_bkslash:*/ 0, /*unbackslash:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005621 if (!pattern)
5622 pattern = xstrdup(exp_word);
5623 debug_printf_varexp("pattern:'%s'->'%s'\n", exp_word, pattern);
5624 *p++ = SPECIAL_VAR_SYMBOL;
5625 exp_word = p;
5626 p = strchr(p, SPECIAL_VAR_SYMBOL);
5627 *p = '\0';
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005628 repl = encode_then_expand_string(exp_word, /*process_bkslash:*/ arg0 & 0x80, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005629 debug_printf_varexp("repl:'%s'->'%s'\n", exp_word, repl);
5630 /* HACK ALERT. We depend here on the fact that
5631 * G.global_argv and results of utoa and get_local_var_value
5632 * are actually in writable memory:
5633 * replace_pattern momentarily stores NULs there. */
5634 t = (char*)val;
5635 to_be_freed = replace_pattern(t,
5636 pattern,
5637 (repl ? repl : exp_word),
5638 exp_op);
5639 if (to_be_freed) /* at least one replace happened */
5640 val = to_be_freed;
5641 free(pattern);
5642 free(repl);
5643 }
5644 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005645#endif /* BASH_PATTERN_SUBST */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005646 else if (exp_op == ':') {
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005647#if BASH_SUBSTR && ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005648 /* It's ${var:N[:M]} bashism.
5649 * Note that in encoded form it has TWO parts:
5650 * var:N<SPECIAL_VAR_SYMBOL>M<SPECIAL_VAR_SYMBOL>
5651 */
5652 arith_t beg, len;
Denys Vlasenko063847d2010-09-15 13:33:02 +02005653 const char *errmsg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005654
Denys Vlasenko063847d2010-09-15 13:33:02 +02005655 beg = expand_and_evaluate_arith(exp_word, &errmsg);
5656 if (errmsg)
5657 goto arith_err;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005658 debug_printf_varexp("beg:'%s'=%lld\n", exp_word, (long long)beg);
5659 *p++ = SPECIAL_VAR_SYMBOL;
5660 exp_word = p;
5661 p = strchr(p, SPECIAL_VAR_SYMBOL);
5662 *p = '\0';
Denys Vlasenko063847d2010-09-15 13:33:02 +02005663 len = expand_and_evaluate_arith(exp_word, &errmsg);
5664 if (errmsg)
5665 goto arith_err;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005666 debug_printf_varexp("len:'%s'=%lld\n", exp_word, (long long)len);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005667 if (len >= 0) { /* bash compat: len < 0 is illegal */
Denys Vlasenko5dad7bd2017-07-06 19:48:20 +02005668 if (beg < 0) {
5669 /* negative beg counts from the end */
5670 beg = (arith_t)strlen(val) + beg;
5671 if (beg < 0) /* ${v: -999999} is "" */
5672 beg = len = 0;
5673 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005674 debug_printf_varexp("from val:'%s'\n", val);
Denys Vlasenkob771c652010-09-13 00:34:26 +02005675 if (len == 0 || !val || beg >= strlen(val)) {
Denys Vlasenko063847d2010-09-15 13:33:02 +02005676 arith_err:
Denys Vlasenkob771c652010-09-13 00:34:26 +02005677 val = NULL;
5678 } else {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005679 /* Paranoia. What if user entered 9999999999999
5680 * which fits in arith_t but not int? */
5681 if (len >= INT_MAX)
5682 len = INT_MAX;
5683 val = to_be_freed = xstrndup(val + beg, len);
5684 }
5685 debug_printf_varexp("val:'%s'\n", val);
5686 } else
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005687#endif /* HUSH_SUBSTR_EXPANSION && FEATURE_SH_MATH */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005688 {
5689 die_if_script("malformed ${%s:...}", var);
Denys Vlasenkob771c652010-09-13 00:34:26 +02005690 val = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005691 }
5692 } else { /* one of "-=+?" */
5693 /* Standard-mandated substitution ops:
5694 * ${var?word} - indicate error if unset
5695 * If var is unset, word (or a message indicating it is unset
5696 * if word is null) is written to standard error
5697 * and the shell exits with a non-zero exit status.
5698 * Otherwise, the value of var is substituted.
5699 * ${var-word} - use default value
5700 * If var is unset, word is substituted.
5701 * ${var=word} - assign and use default value
5702 * If var is unset, word is assigned to var.
5703 * In all cases, final value of var is substituted.
5704 * ${var+word} - use alternative value
5705 * If var is unset, null is substituted.
5706 * Otherwise, word is substituted.
5707 *
5708 * Word is subjected to tilde expansion, parameter expansion,
5709 * command substitution, and arithmetic expansion.
5710 * If word is not needed, it is not expanded.
5711 *
5712 * Colon forms (${var:-word}, ${var:=word} etc) do the same,
5713 * but also treat null var as if it is unset.
5714 */
5715 int use_word = (!val || ((exp_save == ':') && !val[0]));
5716 if (exp_op == '+')
5717 use_word = !use_word;
5718 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
5719 (exp_save == ':') ? "true" : "false", use_word);
5720 if (use_word) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005721 to_be_freed = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005722 if (to_be_freed)
5723 exp_word = to_be_freed;
5724 if (exp_op == '?') {
5725 /* mimic bash message */
5726 die_if_script("%s: %s",
5727 var,
5728 exp_word[0] ? exp_word : "parameter null or not set"
5729 );
5730//TODO: how interactive bash aborts expansion mid-command?
5731 } else {
5732 val = exp_word;
5733 }
5734
5735 if (exp_op == '=') {
5736 /* ${var=[word]} or ${var:=[word]} */
5737 if (isdigit(var[0]) || var[0] == '#') {
5738 /* mimic bash message */
5739 die_if_script("$%s: cannot assign in this way", var);
5740 val = NULL;
5741 } else {
5742 char *new_var = xasprintf("%s=%s", var, val);
5743 set_local_var(new_var, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
5744 }
5745 }
5746 }
5747 } /* one of "-=+?" */
5748
5749 *exp_saveptr = exp_save;
5750 } /* if (exp_op) */
5751
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005752 arg[0] = arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005753
5754 *pp = p;
5755 *to_be_freed_pp = to_be_freed;
5756 return val;
5757}
5758
5759/* Expand all variable references in given string, adding words to list[]
5760 * at n, n+1,... positions. Return updated n (so that list[n] is next one
5761 * to be filled). This routine is extremely tricky: has to deal with
5762 * variables/parameters with whitespace, $* and $@, and constructs like
5763 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005764static NOINLINE int expand_vars_to_list(o_string *output, int n, char *arg)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005765{
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005766 /* output->o_expflags & EXP_FLAG_SINGLEWORD (0x80) if we are in
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005767 * expansion of right-hand side of assignment == 1-element expand.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005768 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005769 char cant_be_null = 0; /* only bit 0x80 matters */
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005770 int ended_in_ifs = 0; /* did last unquoted expansion end with IFS chars? */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005771 char *p;
5772
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005773 debug_printf_expand("expand_vars_to_list: arg:'%s' singleword:%x\n", arg,
5774 !!(output->o_expflags & EXP_FLAG_SINGLEWORD));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005775 debug_print_list("expand_vars_to_list", output, n);
5776 n = o_save_ptr(output, n);
5777 debug_print_list("expand_vars_to_list[0]", output, n);
5778
5779 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
5780 char first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005781 char *to_be_freed = NULL;
5782 const char *val = NULL;
5783#if ENABLE_HUSH_TICK
5784 o_string subst_result = NULL_O_STRING;
5785#endif
Denys Vlasenko0b883582016-12-23 16:49:07 +01005786#if ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005787 char arith_buf[sizeof(arith_t)*3 + 2];
5788#endif
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005789
5790 if (ended_in_ifs) {
5791 o_addchr(output, '\0');
5792 n = o_save_ptr(output, n);
5793 ended_in_ifs = 0;
5794 }
5795
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005796 o_addblock(output, arg, p - arg);
5797 debug_print_list("expand_vars_to_list[1]", output, n);
5798 arg = ++p;
5799 p = strchr(p, SPECIAL_VAR_SYMBOL);
5800
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005801 /* Fetch special var name (if it is indeed one of them)
5802 * and quote bit, force the bit on if singleword expansion -
5803 * important for not getting v=$@ expand to many words. */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005804 first_ch = arg[0] | (output->o_expflags & EXP_FLAG_SINGLEWORD);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005805
5806 /* Is this variable quoted and thus expansion can't be null?
5807 * "$@" is special. Even if quoted, it can still
5808 * expand to nothing (not even an empty string),
5809 * thus it is excluded. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005810 if ((first_ch & 0x7f) != '@')
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005811 cant_be_null |= first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005812
5813 switch (first_ch & 0x7f) {
5814 /* Highest bit in first_ch indicates that var is double-quoted */
5815 case '*':
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005816 case '@': {
5817 int i;
5818 if (!G.global_argv[1])
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005819 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005820 i = 1;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005821 cant_be_null |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005822 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005823 while (G.global_argv[i]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005824 n = expand_on_ifs(NULL, output, n, G.global_argv[i]);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005825 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
5826 if (G.global_argv[i++][0] && G.global_argv[i]) {
5827 /* this argv[] is not empty and not last:
5828 * put terminating NUL, start new word */
5829 o_addchr(output, '\0');
5830 debug_print_list("expand_vars_to_list[2]", output, n);
5831 n = o_save_ptr(output, n);
5832 debug_print_list("expand_vars_to_list[3]", output, n);
5833 }
5834 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005835 } else
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005836 /* If EXP_FLAG_SINGLEWORD, we handle assignment 'a=....$@.....'
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005837 * and in this case should treat it like '$*' - see 'else...' below */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005838 if (first_ch == ('@'|0x80) /* quoted $@ */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005839 && !(output->o_expflags & EXP_FLAG_SINGLEWORD) /* not v="$@" case */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005840 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005841 while (1) {
5842 o_addQstr(output, G.global_argv[i]);
5843 if (++i >= G.global_argc)
5844 break;
5845 o_addchr(output, '\0');
5846 debug_print_list("expand_vars_to_list[4]", output, n);
5847 n = o_save_ptr(output, n);
5848 }
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005849 } else { /* quoted $* (or v="$@" case): add as one word */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005850 while (1) {
5851 o_addQstr(output, G.global_argv[i]);
5852 if (!G.global_argv[++i])
5853 break;
5854 if (G.ifs[0])
5855 o_addchr(output, G.ifs[0]);
5856 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005857 output->has_quoted_part = 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005858 }
5859 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005860 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005861 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
5862 /* "Empty variable", used to make "" etc to not disappear */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005863 output->has_quoted_part = 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005864 arg++;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005865 cant_be_null = 0x80;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005866 break;
5867#if ENABLE_HUSH_TICK
5868 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005869 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005870 arg++;
5871 /* Can't just stuff it into output o_string,
5872 * expanded result may need to be globbed
Denys Vlasenko10ad6222017-04-17 16:13:32 +02005873 * and $IFS-split */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005874 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
5875 G.last_exitcode = process_command_subs(&subst_result, arg);
5876 debug_printf_subst("SUBST RES:%d '%s'\n", G.last_exitcode, subst_result.data);
5877 val = subst_result.data;
5878 goto store_val;
5879#endif
Denys Vlasenko0b883582016-12-23 16:49:07 +01005880#if ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005881 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
5882 arith_t res;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005883
5884 arg++; /* skip '+' */
5885 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
5886 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005887 res = expand_and_evaluate_arith(arg, NULL);
Denys Vlasenkobed7c812010-09-16 11:50:46 +02005888 debug_printf_subst("ARITH RES '"ARITH_FMT"'\n", res);
5889 sprintf(arith_buf, ARITH_FMT, res);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005890 val = arith_buf;
5891 break;
5892 }
5893#endif
5894 default:
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005895 val = expand_one_var(&to_be_freed, arg, &p);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005896 IF_HUSH_TICK(store_val:)
5897 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005898 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val,
5899 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005900 if (val && val[0]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005901 n = expand_on_ifs(&ended_in_ifs, output, n, val);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005902 val = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005903 }
5904 } else { /* quoted $VAR, val will be appended below */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005905 output->has_quoted_part = 1;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005906 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val,
5907 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005908 }
5909 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005910 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
5911
5912 if (val && val[0]) {
5913 o_addQstr(output, val);
5914 }
5915 free(to_be_freed);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005916
5917 /* Restore NULL'ed SPECIAL_VAR_SYMBOL.
5918 * Do the check to avoid writing to a const string. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005919 if (*p != SPECIAL_VAR_SYMBOL)
5920 *p = SPECIAL_VAR_SYMBOL;
5921
5922#if ENABLE_HUSH_TICK
5923 o_free(&subst_result);
5924#endif
5925 arg = ++p;
5926 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
5927
5928 if (arg[0]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005929 if (ended_in_ifs) {
5930 o_addchr(output, '\0');
5931 n = o_save_ptr(output, n);
5932 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005933 debug_print_list("expand_vars_to_list[a]", output, n);
5934 /* this part is literal, and it was already pre-quoted
5935 * if needed (much earlier), do not use o_addQstr here! */
5936 o_addstr_with_NUL(output, arg);
5937 debug_print_list("expand_vars_to_list[b]", output, n);
5938 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005939 && !(cant_be_null & 0x80) /* and all vars were not quoted. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005940 ) {
5941 n--;
5942 /* allow to reuse list[n] later without re-growth */
5943 output->has_empty_slot = 1;
5944 } else {
5945 o_addchr(output, '\0');
5946 }
5947
5948 return n;
5949}
5950
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005951static char **expand_variables(char **argv, unsigned expflags)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005952{
5953 int n;
5954 char **list;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005955 o_string output = NULL_O_STRING;
5956
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005957 output.o_expflags = expflags;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005958
5959 n = 0;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005960 while (*argv) {
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005961 n = expand_vars_to_list(&output, n, *argv);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005962 argv++;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005963 }
5964 debug_print_list("expand_variables", &output, n);
5965
5966 /* output.data (malloced in one block) gets returned in "list" */
5967 list = o_finalize_list(&output, n);
5968 debug_print_strings("expand_variables[1]", list);
5969 return list;
5970}
5971
5972static char **expand_strvec_to_strvec(char **argv)
5973{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005974 return expand_variables(argv, EXP_FLAG_GLOB | EXP_FLAG_ESC_GLOB_CHARS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005975}
5976
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005977#if BASH_TEST2
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005978static char **expand_strvec_to_strvec_singleword_noglob(char **argv)
5979{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005980 return expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005981}
5982#endif
5983
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005984/* Used for expansion of right hand of assignments,
5985 * $((...)), heredocs, variable espansion parts.
5986 *
5987 * NB: should NOT do globbing!
5988 * "export v=/bin/c*; env | grep ^v=" outputs "v=/bin/c*"
5989 */
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005990static char *expand_string_to_string(const char *str, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005991{
Denys Vlasenko637982f2017-07-06 01:52:23 +02005992#if !BASH_PATTERN_SUBST && !ENABLE_HUSH_CASE
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005993 const int do_unbackslash = 1;
5994#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005995 char *argv[2], **list;
5996
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005997 debug_printf_expand("string_to_string<='%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005998 /* This is generally an optimization, but it also
5999 * handles "", which otherwise trips over !list[0] check below.
6000 * (is this ever happens that we actually get str="" here?)
6001 */
6002 if (!strchr(str, SPECIAL_VAR_SYMBOL) && !strchr(str, '\\')) {
6003 //TODO: Can use on strings with \ too, just unbackslash() them?
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006004 debug_printf_expand("string_to_string(fast)=>'%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006005 return xstrdup(str);
6006 }
6007
6008 argv[0] = (char*)str;
6009 argv[1] = NULL;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006010 list = expand_variables(argv, do_unbackslash
6011 ? EXP_FLAG_ESC_GLOB_CHARS | EXP_FLAG_SINGLEWORD
6012 : EXP_FLAG_SINGLEWORD
6013 );
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006014 if (HUSH_DEBUG)
6015 if (!list[0] || list[1])
6016 bb_error_msg_and_die("BUG in varexp2");
6017 /* actually, just move string 2*sizeof(char*) bytes back */
6018 overlapping_strcpy((char*)list, list[0]);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006019 if (do_unbackslash)
6020 unbackslash((char*)list);
6021 debug_printf_expand("string_to_string=>'%s'\n", (char*)list);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006022 return (char*)list;
6023}
6024
Denys Vlasenkobd43c672017-07-05 23:12:15 +02006025/* Used for "eval" builtin and case string */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006026static char* expand_strvec_to_string(char **argv)
6027{
6028 char **list;
6029
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02006030 list = expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006031 /* Convert all NULs to spaces */
6032 if (list[0]) {
6033 int n = 1;
6034 while (list[n]) {
6035 if (HUSH_DEBUG)
6036 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
6037 bb_error_msg_and_die("BUG in varexp3");
6038 /* bash uses ' ' regardless of $IFS contents */
6039 list[n][-1] = ' ';
6040 n++;
6041 }
6042 }
Denys Vlasenko78c9c732016-09-29 01:44:17 +02006043 overlapping_strcpy((char*)list, list[0] ? list[0] : "");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006044 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
6045 return (char*)list;
6046}
6047
6048static char **expand_assignments(char **argv, int count)
6049{
6050 int i;
6051 char **p;
6052
6053 G.expanded_assignments = p = NULL;
6054 /* Expand assignments into one string each */
6055 for (i = 0; i < count; i++) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006056 G.expanded_assignments = p = add_string_to_strings(p, expand_string_to_string(argv[i], /*unbackslash:*/ 1));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006057 }
6058 G.expanded_assignments = NULL;
6059 return p;
6060}
6061
6062
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006063static void switch_off_special_sigs(unsigned mask)
6064{
6065 unsigned sig = 0;
6066 while ((mask >>= 1) != 0) {
6067 sig++;
6068 if (!(mask & 1))
6069 continue;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006070#if ENABLE_HUSH_TRAP
6071 if (G_traps) {
6072 if (G_traps[sig] && !G_traps[sig][0])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006073 /* trap is '', has to remain SIG_IGN */
6074 continue;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006075 free(G_traps[sig]);
6076 G_traps[sig] = NULL;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006077 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006078#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006079 /* We are here only if no trap or trap was not '' */
Denys Vlasenko0806e402011-05-12 23:06:20 +02006080 install_sighandler(sig, SIG_DFL);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006081 }
6082}
6083
Denys Vlasenkob347df92011-08-09 22:49:15 +02006084#if BB_MMU
6085/* never called */
6086void re_execute_shell(char ***to_free, const char *s,
6087 char *g_argv0, char **g_argv,
6088 char **builtin_argv) NORETURN;
6089
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006090static void reset_traps_to_defaults(void)
6091{
6092 /* This function is always called in a child shell
6093 * after fork (not vfork, NOMMU doesn't use this function).
6094 */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006095 IF_HUSH_TRAP(unsigned sig;)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006096 unsigned mask;
6097
6098 /* Child shells are not interactive.
6099 * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
6100 * Testcase: (while :; do :; done) + ^Z should background.
6101 * Same goes for SIGTERM, SIGHUP, SIGINT.
6102 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006103 mask = (G.special_sig_mask & SPECIAL_INTERACTIVE_SIGS) | G_fatal_sig_mask;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006104 if (!G_traps && !mask)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006105 return; /* already no traps and no special sigs */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006106
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006107 /* Switch off special sigs */
6108 switch_off_special_sigs(mask);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006109# if ENABLE_HUSH_JOB
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006110 G_fatal_sig_mask = 0;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006111# endif
Denys Vlasenko10c01312011-05-11 11:49:21 +02006112 G.special_sig_mask &= ~SPECIAL_INTERACTIVE_SIGS;
Denys Vlasenkof58f7052011-05-12 02:10:33 +02006113 /* SIGQUIT,SIGCHLD and maybe SPECIAL_JOBSTOP_SIGS
6114 * remain set in G.special_sig_mask */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006115
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006116# if ENABLE_HUSH_TRAP
6117 if (!G_traps)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006118 return;
6119
6120 /* Reset all sigs to default except ones with empty traps */
6121 for (sig = 0; sig < NSIG; sig++) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006122 if (!G_traps[sig])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006123 continue; /* no trap: nothing to do */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006124 if (!G_traps[sig][0])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006125 continue; /* empty trap: has to remain SIG_IGN */
6126 /* sig has non-empty trap, reset it: */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006127 free(G_traps[sig]);
6128 G_traps[sig] = NULL;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006129 /* There is no signal for trap 0 (EXIT) */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006130 if (sig == 0)
6131 continue;
Denys Vlasenko0806e402011-05-12 23:06:20 +02006132 install_sighandler(sig, pick_sighandler(sig));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006133 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006134# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006135}
6136
6137#else /* !BB_MMU */
6138
6139static void re_execute_shell(char ***to_free, const char *s,
6140 char *g_argv0, char **g_argv,
6141 char **builtin_argv) NORETURN;
6142static void re_execute_shell(char ***to_free, const char *s,
6143 char *g_argv0, char **g_argv,
6144 char **builtin_argv)
6145{
6146# define NOMMU_HACK_FMT ("-$%x:%x:%x:%x:%x:%llx" IF_HUSH_LOOPS(":%x"))
6147 /* delims + 2 * (number of bytes in printed hex numbers) */
6148 char param_buf[sizeof(NOMMU_HACK_FMT) + 2 * (sizeof(int)*6 + sizeof(long long)*1)];
6149 char *heredoc_argv[4];
6150 struct variable *cur;
6151# if ENABLE_HUSH_FUNCTIONS
6152 struct function *funcp;
6153# endif
6154 char **argv, **pp;
6155 unsigned cnt;
6156 unsigned long long empty_trap_mask;
6157
6158 if (!g_argv0) { /* heredoc */
6159 argv = heredoc_argv;
6160 argv[0] = (char *) G.argv0_for_re_execing;
6161 argv[1] = (char *) "-<";
6162 argv[2] = (char *) s;
6163 argv[3] = NULL;
6164 pp = &argv[3]; /* used as pointer to empty environment */
6165 goto do_exec;
6166 }
6167
6168 cnt = 0;
6169 pp = builtin_argv;
6170 if (pp) while (*pp++)
6171 cnt++;
6172
6173 empty_trap_mask = 0;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006174 if (G_traps) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006175 int sig;
6176 for (sig = 1; sig < NSIG; sig++) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006177 if (G_traps[sig] && !G_traps[sig][0])
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006178 empty_trap_mask |= 1LL << sig;
6179 }
6180 }
6181
6182 sprintf(param_buf, NOMMU_HACK_FMT
6183 , (unsigned) G.root_pid
6184 , (unsigned) G.root_ppid
6185 , (unsigned) G.last_bg_pid
6186 , (unsigned) G.last_exitcode
6187 , cnt
6188 , empty_trap_mask
6189 IF_HUSH_LOOPS(, G.depth_of_loop)
6190 );
6191# undef NOMMU_HACK_FMT
6192 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<etc...> <vars...> <funcs...>
6193 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
6194 */
6195 cnt += 6;
6196 for (cur = G.top_var; cur; cur = cur->next) {
6197 if (!cur->flg_export || cur->flg_read_only)
6198 cnt += 2;
6199 }
6200# if ENABLE_HUSH_FUNCTIONS
6201 for (funcp = G.top_func; funcp; funcp = funcp->next)
6202 cnt += 3;
6203# endif
6204 pp = g_argv;
6205 while (*pp++)
6206 cnt++;
6207 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
6208 *pp++ = (char *) G.argv0_for_re_execing;
6209 *pp++ = param_buf;
6210 for (cur = G.top_var; cur; cur = cur->next) {
6211 if (strcmp(cur->varstr, hush_version_str) == 0)
6212 continue;
6213 if (cur->flg_read_only) {
6214 *pp++ = (char *) "-R";
6215 *pp++ = cur->varstr;
6216 } else if (!cur->flg_export) {
6217 *pp++ = (char *) "-V";
6218 *pp++ = cur->varstr;
6219 }
6220 }
6221# if ENABLE_HUSH_FUNCTIONS
6222 for (funcp = G.top_func; funcp; funcp = funcp->next) {
6223 *pp++ = (char *) "-F";
6224 *pp++ = funcp->name;
6225 *pp++ = funcp->body_as_string;
6226 }
6227# endif
6228 /* We can pass activated traps here. Say, -Tnn:trap_string
6229 *
6230 * However, POSIX says that subshells reset signals with traps
6231 * to SIG_DFL.
6232 * I tested bash-3.2 and it not only does that with true subshells
6233 * of the form ( list ), but with any forked children shells.
6234 * I set trap "echo W" WINCH; and then tried:
6235 *
6236 * { echo 1; sleep 20; echo 2; } &
6237 * while true; do echo 1; sleep 20; echo 2; break; done &
6238 * true | { echo 1; sleep 20; echo 2; } | cat
6239 *
6240 * In all these cases sending SIGWINCH to the child shell
6241 * did not run the trap. If I add trap "echo V" WINCH;
6242 * _inside_ group (just before echo 1), it works.
6243 *
6244 * I conclude it means we don't need to pass active traps here.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006245 */
6246 *pp++ = (char *) "-c";
6247 *pp++ = (char *) s;
6248 if (builtin_argv) {
6249 while (*++builtin_argv)
6250 *pp++ = *builtin_argv;
6251 *pp++ = (char *) "";
6252 }
6253 *pp++ = g_argv0;
6254 while (*g_argv)
6255 *pp++ = *g_argv++;
6256 /* *pp = NULL; - is already there */
6257 pp = environ;
6258
6259 do_exec:
6260 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02006261 /* Don't propagate SIG_IGN to the child */
6262 if (SPECIAL_JOBSTOP_SIGS != 0)
6263 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006264 execve(bb_busybox_exec_path, argv, pp);
6265 /* Fallback. Useful for init=/bin/hush usage etc */
6266 if (argv[0][0] == '/')
6267 execve(argv[0], argv, pp);
6268 xfunc_error_retval = 127;
6269 bb_error_msg_and_die("can't re-execute the shell");
6270}
6271#endif /* !BB_MMU */
6272
6273
6274static int run_and_free_list(struct pipe *pi);
6275
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006276/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006277 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
6278 * end_trigger controls how often we stop parsing
6279 * NUL: parse all, execute, return
6280 * ';': parse till ';' or newline, execute, repeat till EOF
6281 */
6282static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00006283{
Denys Vlasenko00243b02009-11-16 02:00:03 +01006284 /* Why we need empty flag?
6285 * An obscure corner case "false; ``; echo $?":
6286 * empty command in `` should still set $? to 0.
6287 * But we can't just set $? to 0 at the start,
6288 * this breaks "false; echo `echo $?`" case.
6289 */
6290 bool empty = 1;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006291 while (1) {
6292 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006293
Denys Vlasenkoa1463192011-01-18 17:55:04 +01006294#if ENABLE_HUSH_INTERACTIVE
6295 if (end_trigger == ';')
6296 inp->promptmode = 0; /* PS1 */
6297#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006298 pipe_list = parse_stream(NULL, inp, end_trigger);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02006299 if (!pipe_list || pipe_list == ERR_PTR) { /* EOF/error */
6300 /* If we are in "big" script
6301 * (not in `cmd` or something similar)...
6302 */
6303 if (pipe_list == ERR_PTR && end_trigger == ';') {
6304 /* Discard cached input (rest of line) */
6305 int ch = inp->last_char;
6306 while (ch != EOF && ch != '\n') {
6307 //bb_error_msg("Discarded:'%c'", ch);
6308 ch = i_getch(inp);
6309 }
6310 /* Force prompt */
6311 inp->p = NULL;
6312 /* This stream isn't empty */
6313 empty = 0;
6314 continue;
6315 }
6316 if (!pipe_list && empty)
Denys Vlasenko00243b02009-11-16 02:00:03 +01006317 G.last_exitcode = 0;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006318 break;
Denys Vlasenko00243b02009-11-16 02:00:03 +01006319 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006320 debug_print_tree(pipe_list, 0);
6321 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
6322 run_and_free_list(pipe_list);
Denys Vlasenko00243b02009-11-16 02:00:03 +01006323 empty = 0;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006324 if (G_flag_return_in_progress == 1)
Denys Vlasenko68d5cb52011-03-24 02:50:03 +01006325 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006326 }
Eric Andersen25f27032001-04-26 23:22:31 +00006327}
6328
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006329static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00006330{
6331 struct in_str input;
6332 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006333 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00006334}
6335
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006336static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00006337{
Eric Andersen25f27032001-04-26 23:22:31 +00006338 struct in_str input;
6339 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006340 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00006341}
6342
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006343#if ENABLE_HUSH_TICK
6344static FILE *generate_stream_from_string(const char *s, pid_t *pid_p)
6345{
6346 pid_t pid;
6347 int channel[2];
6348# if !BB_MMU
6349 char **to_free = NULL;
6350# endif
6351
6352 xpipe(channel);
6353 pid = BB_MMU ? xfork() : xvfork();
6354 if (pid == 0) { /* child */
6355 disable_restore_tty_pgrp_on_exit();
6356 /* Process substitution is not considered to be usual
6357 * 'command execution'.
6358 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
6359 */
6360 bb_signals(0
6361 + (1 << SIGTSTP)
6362 + (1 << SIGTTIN)
6363 + (1 << SIGTTOU)
6364 , SIG_IGN);
6365 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
6366 close(channel[0]); /* NB: close _first_, then move fd! */
6367 xmove_fd(channel[1], 1);
6368 /* Prevent it from trying to handle ctrl-z etc */
6369 IF_HUSH_JOB(G.run_list_level = 1;)
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006370# if ENABLE_HUSH_TRAP
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006371 /* Awful hack for `trap` or $(trap).
6372 *
6373 * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html
6374 * contains an example where "trap" is executed in a subshell:
6375 *
6376 * save_traps=$(trap)
6377 * ...
6378 * eval "$save_traps"
6379 *
6380 * Standard does not say that "trap" in subshell shall print
6381 * parent shell's traps. It only says that its output
6382 * must have suitable form, but then, in the above example
6383 * (which is not supposed to be normative), it implies that.
6384 *
6385 * bash (and probably other shell) does implement it
6386 * (traps are reset to defaults, but "trap" still shows them),
6387 * but as a result, "trap" logic is hopelessly messed up:
6388 *
6389 * # trap
6390 * trap -- 'echo Ho' SIGWINCH <--- we have a handler
6391 * # (trap) <--- trap is in subshell - no output (correct, traps are reset)
6392 * # true | trap <--- trap is in subshell - no output (ditto)
6393 * # echo `true | trap` <--- in subshell - output (but traps are reset!)
6394 * trap -- 'echo Ho' SIGWINCH
6395 * # echo `(trap)` <--- in subshell in subshell - output
6396 * trap -- 'echo Ho' SIGWINCH
6397 * # echo `true | (trap)` <--- in subshell in subshell in subshell - output!
6398 * trap -- 'echo Ho' SIGWINCH
6399 *
6400 * The rules when to forget and when to not forget traps
6401 * get really complex and nonsensical.
6402 *
6403 * Our solution: ONLY bare $(trap) or `trap` is special.
6404 */
6405 s = skip_whitespace(s);
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01006406 if (is_prefixed_with(s, "trap")
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006407 && skip_whitespace(s + 4)[0] == '\0'
6408 ) {
6409 static const char *const argv[] = { NULL, NULL };
6410 builtin_trap((char**)argv);
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02006411 fflush_all(); /* important */
6412 _exit(0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006413 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006414# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006415# if BB_MMU
6416 reset_traps_to_defaults();
6417 parse_and_run_string(s);
6418 _exit(G.last_exitcode);
6419# else
6420 /* We re-execute after vfork on NOMMU. This makes this script safe:
6421 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
6422 * huge=`cat BIG` # was blocking here forever
6423 * echo OK
6424 */
6425 re_execute_shell(&to_free,
6426 s,
6427 G.global_argv[0],
6428 G.global_argv + 1,
6429 NULL);
6430# endif
6431 }
6432
6433 /* parent */
6434 *pid_p = pid;
6435# if ENABLE_HUSH_FAST
6436 G.count_SIGCHLD++;
6437//bb_error_msg("[%d] fork in generate_stream_from_string:"
6438// " G.count_SIGCHLD:%d G.handled_SIGCHLD:%d",
6439// getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6440# endif
6441 enable_restore_tty_pgrp_on_exit();
6442# if !BB_MMU
6443 free(to_free);
6444# endif
6445 close(channel[1]);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02006446 return remember_FILE(xfdopen_for_read(channel[0]));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006447}
6448
6449/* Return code is exit status of the process that is run. */
6450static int process_command_subs(o_string *dest, const char *s)
6451{
6452 FILE *fp;
6453 struct in_str pipe_str;
6454 pid_t pid;
6455 int status, ch, eol_cnt;
6456
6457 fp = generate_stream_from_string(s, &pid);
6458
6459 /* Now send results of command back into original context */
6460 setup_file_in_str(&pipe_str, fp);
6461 eol_cnt = 0;
6462 while ((ch = i_getch(&pipe_str)) != EOF) {
6463 if (ch == '\n') {
6464 eol_cnt++;
6465 continue;
6466 }
6467 while (eol_cnt) {
6468 o_addchr(dest, '\n');
6469 eol_cnt--;
6470 }
6471 o_addQchr(dest, ch);
6472 }
6473
6474 debug_printf("done reading from `cmd` pipe, closing it\n");
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02006475 fclose_and_forget(fp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006476 /* We need to extract exitcode. Test case
6477 * "true; echo `sleep 1; false` $?"
6478 * should print 1 */
6479 safe_waitpid(pid, &status, 0);
6480 debug_printf("child exited. returning its exitcode:%d\n", WEXITSTATUS(status));
6481 return WEXITSTATUS(status);
6482}
6483#endif /* ENABLE_HUSH_TICK */
6484
6485
6486static void setup_heredoc(struct redir_struct *redir)
6487{
6488 struct fd_pair pair;
6489 pid_t pid;
6490 int len, written;
6491 /* the _body_ of heredoc (misleading field name) */
6492 const char *heredoc = redir->rd_filename;
6493 char *expanded;
6494#if !BB_MMU
6495 char **to_free;
6496#endif
6497
6498 expanded = NULL;
6499 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02006500 expanded = encode_then_expand_string(heredoc, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006501 if (expanded)
6502 heredoc = expanded;
6503 }
6504 len = strlen(heredoc);
6505
6506 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
6507 xpiped_pair(pair);
6508 xmove_fd(pair.rd, redir->rd_fd);
6509
6510 /* Try writing without forking. Newer kernels have
6511 * dynamically growing pipes. Must use non-blocking write! */
6512 ndelay_on(pair.wr);
6513 while (1) {
6514 written = write(pair.wr, heredoc, len);
6515 if (written <= 0)
6516 break;
6517 len -= written;
6518 if (len == 0) {
6519 close(pair.wr);
6520 free(expanded);
6521 return;
6522 }
6523 heredoc += written;
6524 }
6525 ndelay_off(pair.wr);
6526
6527 /* Okay, pipe buffer was not big enough */
6528 /* Note: we must not create a stray child (bastard? :)
6529 * for the unsuspecting parent process. Child creates a grandchild
6530 * and exits before parent execs the process which consumes heredoc
6531 * (that exec happens after we return from this function) */
6532#if !BB_MMU
6533 to_free = NULL;
6534#endif
6535 pid = xvfork();
6536 if (pid == 0) {
6537 /* child */
6538 disable_restore_tty_pgrp_on_exit();
6539 pid = BB_MMU ? xfork() : xvfork();
6540 if (pid != 0)
6541 _exit(0);
6542 /* grandchild */
6543 close(redir->rd_fd); /* read side of the pipe */
6544#if BB_MMU
6545 full_write(pair.wr, heredoc, len); /* may loop or block */
6546 _exit(0);
6547#else
6548 /* Delegate blocking writes to another process */
6549 xmove_fd(pair.wr, STDOUT_FILENO);
6550 re_execute_shell(&to_free, heredoc, NULL, NULL, NULL);
6551#endif
6552 }
6553 /* parent */
6554#if ENABLE_HUSH_FAST
6555 G.count_SIGCHLD++;
6556//bb_error_msg("[%d] fork in setup_heredoc: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6557#endif
6558 enable_restore_tty_pgrp_on_exit();
6559#if !BB_MMU
6560 free(to_free);
6561#endif
6562 close(pair.wr);
6563 free(expanded);
6564 wait(NULL); /* wait till child has died */
6565}
6566
Denys Vlasenko2db74612017-07-07 22:07:28 +02006567struct squirrel {
6568 int orig_fd;
6569 int moved_to;
6570 /* moved_to = n: fd was moved to n; restore back to orig_fd after redir */
6571 /* moved_to = -1: fd was opened by redirect; close orig_fd after redir */
6572};
6573
6574static struct squirrel *add_squirrel(struct squirrel *sq, int fd, int avoid_fd)
6575{
6576 int i = 0;
6577
6578 if (sq) while (sq[i].orig_fd >= 0) {
6579 /* If we collide with an already moved fd... */
6580 if (fd == sq[i].moved_to) {
6581 sq[i].moved_to = fcntl_F_DUPFD(sq[i].moved_to, avoid_fd);
6582 debug_printf_redir("redirect_fd %d: already busy, moving to %d\n", fd, sq[i].moved_to);
6583 if (sq[i].moved_to < 0) /* what? */
6584 xfunc_die();
6585 return sq;
6586 }
6587 if (fd == sq[i].orig_fd) {
6588 /* Example: echo Hello >/dev/null 1>&2 */
6589 debug_printf_redir("redirect_fd %d: already moved\n", fd);
6590 return sq;
6591 }
6592 i++;
6593 }
6594
6595 sq = xrealloc(sq, (i + 2) * sizeof(sq[0]));
6596 sq[i].orig_fd = fd;
6597 /* If this fd is open, we move and remember it; if it's closed, moved_to = -1 */
6598 sq[i].moved_to = fcntl_F_DUPFD(fd, avoid_fd);
6599 debug_printf_redir("redirect_fd %d: previous fd is moved to %d (-1 if it was closed)\n", fd, sq[i].moved_to);
6600 if (sq[i].moved_to < 0 && errno != EBADF)
6601 xfunc_die();
6602 sq[i+1].orig_fd = -1; /* end marker */
6603 return sq;
6604}
6605
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006606/* fd: redirect wants this fd to be used (e.g. 3>file).
6607 * Move all conflicting internally used fds,
6608 * and remember them so that we can restore them later.
6609 */
Denys Vlasenko2db74612017-07-07 22:07:28 +02006610static int save_fds_on_redirect(int fd, int avoid_fd, struct squirrel **sqp)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006611{
Denys Vlasenko2db74612017-07-07 22:07:28 +02006612 if (avoid_fd < 9) /* the important case here is that it can be -1 */
6613 avoid_fd = 9;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006614
6615#if ENABLE_HUSH_INTERACTIVE
6616 if (fd != 0 && fd == G.interactive_fd) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02006617 G.interactive_fd = xdup_and_close(G.interactive_fd, F_DUPFD_CLOEXEC, avoid_fd);
6618 debug_printf_redir("redirect_fd %d: matches interactive_fd, moving it to %d\n", fd, G.interactive_fd);
6619 return 1; /* "we closed fd" */
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006620 }
6621#endif
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006622 /* Are we called from setup_redirects(squirrel==NULL)? Two cases:
6623 * (1) Redirect in a forked child. No need to save FILEs' fds,
6624 * we aren't going to use them anymore, ok to trash.
Denys Vlasenko2db74612017-07-07 22:07:28 +02006625 * (2) "exec 3>FILE". Bummer. We can save script FILEs' fds,
6626 * but how are we doing to restore them?
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006627 * "fileno(fd) = new_fd" can't be done.
6628 */
Denys Vlasenko2db74612017-07-07 22:07:28 +02006629 if (!sqp)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006630 return 0;
6631
Denys Vlasenko2db74612017-07-07 22:07:28 +02006632 /* If this one of script's fds? */
6633 if (save_FILEs_on_redirect(fd, avoid_fd))
6634 return 1; /* yes. "we closed fd" */
6635
6636 /* Check whether it collides with any open fds (e.g. stdio), save fds as needed */
6637 *sqp = add_squirrel(*sqp, fd, avoid_fd);
6638 return 0; /* "we did not close fd" */
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006639}
6640
Denys Vlasenko2db74612017-07-07 22:07:28 +02006641static void restore_redirects(struct squirrel *sq)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006642{
Denys Vlasenko2db74612017-07-07 22:07:28 +02006643
6644 if (sq) {
6645 int i = 0;
6646 while (sq[i].orig_fd >= 0) {
6647 if (sq[i].moved_to >= 0) {
6648 /* We simply die on error */
6649 debug_printf_redir("restoring redirected fd from %d to %d\n", sq[i].moved_to, sq[i].orig_fd);
6650 xmove_fd(sq[i].moved_to, sq[i].orig_fd);
6651 } else {
6652 /* cmd1 9>FILE; cmd2_should_see_fd9_closed */
6653 debug_printf_redir("restoring redirected fd %d: closing it\n", sq[i].orig_fd);
6654 close(sq[i].orig_fd);
6655 }
6656 i++;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006657 }
Denys Vlasenko2db74612017-07-07 22:07:28 +02006658 free(sq);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006659 }
6660
Denys Vlasenko2db74612017-07-07 22:07:28 +02006661 /* If moved, G.interactive_fd stays on new fd, not restoring it */
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006662
6663 restore_redirected_FILEs();
6664}
6665
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006666/* squirrel != NULL means we squirrel away copies of stdin, stdout,
6667 * and stderr if they are redirected. */
Denys Vlasenko2db74612017-07-07 22:07:28 +02006668static int setup_redirects(struct command *prog, struct squirrel **sqp)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006669{
6670 int openfd, mode;
6671 struct redir_struct *redir;
6672
6673 for (redir = prog->redirects; redir; redir = redir->next) {
6674 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006675 /* "rd_fd<<HERE" case */
Denys Vlasenko2db74612017-07-07 22:07:28 +02006676 save_fds_on_redirect(redir->rd_fd, /*avoid:*/ 0, sqp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006677 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
6678 * of the heredoc */
6679 debug_printf_parse("set heredoc '%s'\n",
6680 redir->rd_filename);
6681 setup_heredoc(redir);
6682 continue;
6683 }
6684
6685 if (redir->rd_dup == REDIRFD_TO_FILE) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006686 /* "rd_fd<*>file" case (<*> is <,>,>>,<>) */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006687 char *p;
6688 if (redir->rd_filename == NULL) {
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02006689 /*
6690 * Examples:
6691 * "cmd >" (no filename)
6692 * "cmd > <file" (2nd redirect starts too early)
6693 */
6694 die_if_script("syntax error: %s", "invalid redirect");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006695 continue;
6696 }
6697 mode = redir_table[redir->rd_type].mode;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006698 p = expand_string_to_string(redir->rd_filename, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006699 openfd = open_or_warn(p, mode);
6700 free(p);
6701 if (openfd < 0) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006702 /* Error message from open_or_warn can be lost
6703 * if stderr has been redirected, but bash
6704 * and ash both lose it as well
6705 * (though zsh doesn't!)
6706 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006707 return 1;
6708 }
6709 } else {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006710 /* "rd_fd<*>rd_dup" or "rd_fd<*>-" cases */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006711 openfd = redir->rd_dup;
6712 }
6713
6714 if (openfd != redir->rd_fd) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02006715 int closed = save_fds_on_redirect(redir->rd_fd, /*avoid:*/ openfd, sqp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006716 if (openfd == REDIRFD_CLOSE) {
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006717 /* "rd_fd >&-" means "close me" */
6718 if (!closed) {
6719 /* ^^^ optimization: saving may already
6720 * have closed it. If not... */
6721 close(redir->rd_fd);
6722 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006723 } else {
6724 xdup2(openfd, redir->rd_fd);
6725 if (redir->rd_dup == REDIRFD_TO_FILE)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006726 /* "rd_fd > FILE" */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006727 close(openfd);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006728 /* else: "rd_fd > rd_dup" */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006729 }
6730 }
6731 }
6732 return 0;
6733}
6734
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006735static char *find_in_path(const char *arg)
6736{
6737 char *ret = NULL;
6738 const char *PATH = get_local_var_value("PATH");
6739
6740 if (!PATH)
6741 return NULL;
6742
6743 while (1) {
6744 const char *end = strchrnul(PATH, ':');
6745 int sz = end - PATH; /* must be int! */
6746
6747 free(ret);
6748 if (sz != 0) {
6749 ret = xasprintf("%.*s/%s", sz, PATH, arg);
6750 } else {
6751 /* We have xxx::yyyy in $PATH,
6752 * it means "use current dir" */
6753 ret = xstrdup(arg);
6754 }
6755 if (access(ret, F_OK) == 0)
6756 break;
6757
6758 if (*end == '\0') {
6759 free(ret);
6760 return NULL;
6761 }
6762 PATH = end + 1;
6763 }
6764
6765 return ret;
6766}
6767
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006768static const struct built_in_command *find_builtin_helper(const char *name,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006769 const struct built_in_command *x,
6770 const struct built_in_command *end)
6771{
6772 while (x != end) {
6773 if (strcmp(name, x->b_cmd) != 0) {
6774 x++;
6775 continue;
6776 }
6777 debug_printf_exec("found builtin '%s'\n", name);
6778 return x;
6779 }
6780 return NULL;
6781}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006782static const struct built_in_command *find_builtin1(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006783{
6784 return find_builtin_helper(name, bltins1, &bltins1[ARRAY_SIZE(bltins1)]);
6785}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006786static const struct built_in_command *find_builtin(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006787{
6788 const struct built_in_command *x = find_builtin1(name);
6789 if (x)
6790 return x;
6791 return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]);
6792}
6793
6794#if ENABLE_HUSH_FUNCTIONS
6795static struct function **find_function_slot(const char *name)
6796{
6797 struct function **funcpp = &G.top_func;
6798 while (*funcpp) {
6799 if (strcmp(name, (*funcpp)->name) == 0) {
6800 break;
6801 }
6802 funcpp = &(*funcpp)->next;
6803 }
6804 return funcpp;
6805}
6806
6807static const struct function *find_function(const char *name)
6808{
6809 const struct function *funcp = *find_function_slot(name);
6810 if (funcp)
6811 debug_printf_exec("found function '%s'\n", name);
6812 return funcp;
6813}
6814
6815/* Note: takes ownership on name ptr */
6816static struct function *new_function(char *name)
6817{
6818 struct function **funcpp = find_function_slot(name);
6819 struct function *funcp = *funcpp;
6820
6821 if (funcp != NULL) {
6822 struct command *cmd = funcp->parent_cmd;
6823 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
6824 if (!cmd) {
6825 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
6826 free(funcp->name);
6827 /* Note: if !funcp->body, do not free body_as_string!
6828 * This is a special case of "-F name body" function:
6829 * body_as_string was not malloced! */
6830 if (funcp->body) {
6831 free_pipe_list(funcp->body);
6832# if !BB_MMU
6833 free(funcp->body_as_string);
6834# endif
6835 }
6836 } else {
6837 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
6838 cmd->argv[0] = funcp->name;
6839 cmd->group = funcp->body;
6840# if !BB_MMU
6841 cmd->group_as_string = funcp->body_as_string;
6842# endif
6843 }
6844 } else {
6845 debug_printf_exec("remembering new function '%s'\n", name);
6846 funcp = *funcpp = xzalloc(sizeof(*funcp));
6847 /*funcp->next = NULL;*/
6848 }
6849
6850 funcp->name = name;
6851 return funcp;
6852}
6853
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006854# if ENABLE_HUSH_UNSET
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006855static void unset_func(const char *name)
6856{
6857 struct function **funcpp = find_function_slot(name);
6858 struct function *funcp = *funcpp;
6859
6860 if (funcp != NULL) {
6861 debug_printf_exec("freeing function '%s'\n", funcp->name);
6862 *funcpp = funcp->next;
6863 /* funcp is unlinked now, deleting it.
6864 * Note: if !funcp->body, the function was created by
6865 * "-F name body", do not free ->body_as_string
6866 * and ->name as they were not malloced. */
6867 if (funcp->body) {
6868 free_pipe_list(funcp->body);
6869 free(funcp->name);
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006870# if !BB_MMU
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006871 free(funcp->body_as_string);
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006872# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006873 }
6874 free(funcp);
6875 }
6876}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006877# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006878
6879# if BB_MMU
6880#define exec_function(to_free, funcp, argv) \
6881 exec_function(funcp, argv)
6882# endif
6883static void exec_function(char ***to_free,
6884 const struct function *funcp,
6885 char **argv) NORETURN;
6886static void exec_function(char ***to_free,
6887 const struct function *funcp,
6888 char **argv)
6889{
6890# if BB_MMU
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02006891 int n;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006892
6893 argv[0] = G.global_argv[0];
6894 G.global_argv = argv;
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02006895 G.global_argc = n = 1 + string_array_len(argv + 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006896 /* On MMU, funcp->body is always non-NULL */
6897 n = run_list(funcp->body);
6898 fflush_all();
6899 _exit(n);
6900# else
6901 re_execute_shell(to_free,
6902 funcp->body_as_string,
6903 G.global_argv[0],
6904 argv + 1,
6905 NULL);
6906# endif
6907}
6908
6909static int run_function(const struct function *funcp, char **argv)
6910{
6911 int rc;
6912 save_arg_t sv;
6913 smallint sv_flg;
6914
6915 save_and_replace_G_args(&sv, argv);
6916
6917 /* "we are in function, ok to use return" */
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006918 sv_flg = G_flag_return_in_progress;
6919 G_flag_return_in_progress = -1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006920# if ENABLE_HUSH_LOCAL
6921 G.func_nest_level++;
6922# endif
6923
6924 /* On MMU, funcp->body is always non-NULL */
6925# if !BB_MMU
6926 if (!funcp->body) {
6927 /* Function defined by -F */
6928 parse_and_run_string(funcp->body_as_string);
6929 rc = G.last_exitcode;
6930 } else
6931# endif
6932 {
6933 rc = run_list(funcp->body);
6934 }
6935
6936# if ENABLE_HUSH_LOCAL
6937 {
6938 struct variable *var;
6939 struct variable **var_pp;
6940
6941 var_pp = &G.top_var;
6942 while ((var = *var_pp) != NULL) {
6943 if (var->func_nest_level < G.func_nest_level) {
6944 var_pp = &var->next;
6945 continue;
6946 }
6947 /* Unexport */
6948 if (var->flg_export)
6949 bb_unsetenv(var->varstr);
6950 /* Remove from global list */
6951 *var_pp = var->next;
6952 /* Free */
6953 if (!var->max_len)
6954 free(var->varstr);
6955 free(var);
6956 }
6957 G.func_nest_level--;
6958 }
6959# endif
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006960 G_flag_return_in_progress = sv_flg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006961
6962 restore_G_args(&sv, argv);
6963
6964 return rc;
6965}
6966#endif /* ENABLE_HUSH_FUNCTIONS */
6967
6968
6969#if BB_MMU
6970#define exec_builtin(to_free, x, argv) \
6971 exec_builtin(x, argv)
6972#else
6973#define exec_builtin(to_free, x, argv) \
6974 exec_builtin(to_free, argv)
6975#endif
6976static void exec_builtin(char ***to_free,
6977 const struct built_in_command *x,
6978 char **argv) NORETURN;
6979static void exec_builtin(char ***to_free,
6980 const struct built_in_command *x,
6981 char **argv)
6982{
6983#if BB_MMU
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01006984 int rcode;
6985 fflush_all();
6986 rcode = x->b_function(argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006987 fflush_all();
6988 _exit(rcode);
6989#else
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01006990 fflush_all();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006991 /* On NOMMU, we must never block!
6992 * Example: { sleep 99 | read line; } & echo Ok
6993 */
6994 re_execute_shell(to_free,
6995 argv[0],
6996 G.global_argv[0],
6997 G.global_argv + 1,
6998 argv);
6999#endif
7000}
7001
7002
7003static void execvp_or_die(char **argv) NORETURN;
7004static void execvp_or_die(char **argv)
7005{
Denys Vlasenko04465da2016-10-03 01:01:15 +02007006 int e;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007007 debug_printf_exec("execing '%s'\n", argv[0]);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02007008 /* Don't propagate SIG_IGN to the child */
7009 if (SPECIAL_JOBSTOP_SIGS != 0)
7010 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007011 execvp(argv[0], argv);
Denys Vlasenko04465da2016-10-03 01:01:15 +02007012 e = 2;
7013 if (errno == EACCES) e = 126;
7014 if (errno == ENOENT) e = 127;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007015 bb_perror_msg("can't execute '%s'", argv[0]);
Denys Vlasenko04465da2016-10-03 01:01:15 +02007016 _exit(e);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007017}
7018
7019#if ENABLE_HUSH_MODE_X
7020static void dump_cmd_in_x_mode(char **argv)
7021{
7022 if (G_x_mode && argv) {
7023 /* We want to output the line in one write op */
7024 char *buf, *p;
7025 int len;
7026 int n;
7027
7028 len = 3;
7029 n = 0;
7030 while (argv[n])
7031 len += strlen(argv[n++]) + 1;
7032 buf = xmalloc(len);
7033 buf[0] = '+';
7034 p = buf + 1;
7035 n = 0;
7036 while (argv[n])
7037 p += sprintf(p, " %s", argv[n++]);
7038 *p++ = '\n';
7039 *p = '\0';
7040 fputs(buf, stderr);
7041 free(buf);
7042 }
7043}
7044#else
7045# define dump_cmd_in_x_mode(argv) ((void)0)
7046#endif
7047
7048#if BB_MMU
7049#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
7050 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
7051#define pseudo_exec(nommu_save, command, argv_expanded) \
7052 pseudo_exec(command, argv_expanded)
7053#endif
7054
7055/* Called after [v]fork() in run_pipe, or from builtin_exec.
7056 * Never returns.
7057 * Don't exit() here. If you don't exec, use _exit instead.
7058 * The at_exit handlers apparently confuse the calling process,
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02007059 * in particular stdin handling. Not sure why? -- because of vfork! (vda)
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02007060 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007061static void pseudo_exec_argv(nommu_save_t *nommu_save,
7062 char **argv, int assignment_cnt,
7063 char **argv_expanded) NORETURN;
7064static NOINLINE void pseudo_exec_argv(nommu_save_t *nommu_save,
7065 char **argv, int assignment_cnt,
7066 char **argv_expanded)
7067{
7068 char **new_env;
7069
7070 new_env = expand_assignments(argv, assignment_cnt);
7071 dump_cmd_in_x_mode(new_env);
7072
7073 if (!argv[assignment_cnt]) {
7074 /* Case when we are here: ... | var=val | ...
7075 * (note that we do not exit early, i.e., do not optimize out
7076 * expand_assignments(): think about ... | var=`sleep 1` | ...
7077 */
7078 free_strings(new_env);
7079 _exit(EXIT_SUCCESS);
7080 }
7081
7082#if BB_MMU
7083 set_vars_and_save_old(new_env);
7084 free(new_env); /* optional */
7085 /* we can also destroy set_vars_and_save_old's return value,
7086 * to save memory */
7087#else
7088 nommu_save->new_env = new_env;
7089 nommu_save->old_vars = set_vars_and_save_old(new_env);
7090#endif
7091
7092 if (argv_expanded) {
7093 argv = argv_expanded;
7094 } else {
7095 argv = expand_strvec_to_strvec(argv + assignment_cnt);
7096#if !BB_MMU
7097 nommu_save->argv = argv;
7098#endif
7099 }
7100 dump_cmd_in_x_mode(argv);
7101
7102#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
7103 if (strchr(argv[0], '/') != NULL)
7104 goto skip;
7105#endif
7106
7107 /* Check if the command matches any of the builtins.
7108 * Depending on context, this might be redundant. But it's
7109 * easier to waste a few CPU cycles than it is to figure out
7110 * if this is one of those cases.
7111 */
7112 {
7113 /* On NOMMU, it is more expensive to re-execute shell
7114 * just in order to run echo or test builtin.
7115 * It's better to skip it here and run corresponding
7116 * non-builtin later. */
7117 const struct built_in_command *x;
7118 x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]);
7119 if (x) {
7120 exec_builtin(&nommu_save->argv_from_re_execing, x, argv);
7121 }
7122 }
7123#if ENABLE_HUSH_FUNCTIONS
7124 /* Check if the command matches any functions */
7125 {
7126 const struct function *funcp = find_function(argv[0]);
7127 if (funcp) {
7128 exec_function(&nommu_save->argv_from_re_execing, funcp, argv);
7129 }
7130 }
7131#endif
7132
7133#if ENABLE_FEATURE_SH_STANDALONE
7134 /* Check if the command matches any busybox applets */
7135 {
7136 int a = find_applet_by_name(argv[0]);
7137 if (a >= 0) {
7138# if BB_MMU /* see above why on NOMMU it is not allowed */
7139 if (APPLET_IS_NOEXEC(a)) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02007140 /* Do not leak open fds from opened script files etc */
7141 close_all_FILE_list();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007142 debug_printf_exec("running applet '%s'\n", argv[0]);
Denys Vlasenko69a5ec92017-07-07 19:08:56 +02007143 run_applet_no_and_exit(a, argv[0], argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007144 }
7145# endif
7146 /* Re-exec ourselves */
7147 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02007148 /* Don't propagate SIG_IGN to the child */
7149 if (SPECIAL_JOBSTOP_SIGS != 0)
7150 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007151 execv(bb_busybox_exec_path, argv);
7152 /* If they called chroot or otherwise made the binary no longer
7153 * executable, fall through */
7154 }
7155 }
7156#endif
7157
7158#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
7159 skip:
7160#endif
7161 execvp_or_die(argv);
7162}
7163
7164/* Called after [v]fork() in run_pipe
7165 */
7166static void pseudo_exec(nommu_save_t *nommu_save,
7167 struct command *command,
7168 char **argv_expanded) NORETURN;
7169static void pseudo_exec(nommu_save_t *nommu_save,
7170 struct command *command,
7171 char **argv_expanded)
7172{
7173 if (command->argv) {
7174 pseudo_exec_argv(nommu_save, command->argv,
7175 command->assignment_cnt, argv_expanded);
7176 }
7177
7178 if (command->group) {
7179 /* Cases when we are here:
7180 * ( list )
7181 * { list } &
7182 * ... | ( list ) | ...
7183 * ... | { list } | ...
7184 */
7185#if BB_MMU
7186 int rcode;
7187 debug_printf_exec("pseudo_exec: run_list\n");
7188 reset_traps_to_defaults();
7189 rcode = run_list(command->group);
7190 /* OK to leak memory by not calling free_pipe_list,
7191 * since this process is about to exit */
7192 _exit(rcode);
7193#else
7194 re_execute_shell(&nommu_save->argv_from_re_execing,
7195 command->group_as_string,
7196 G.global_argv[0],
7197 G.global_argv + 1,
7198 NULL);
7199#endif
7200 }
7201
7202 /* Case when we are here: ... | >file */
7203 debug_printf_exec("pseudo_exec'ed null command\n");
7204 _exit(EXIT_SUCCESS);
7205}
7206
7207#if ENABLE_HUSH_JOB
7208static const char *get_cmdtext(struct pipe *pi)
7209{
7210 char **argv;
7211 char *p;
7212 int len;
7213
7214 /* This is subtle. ->cmdtext is created only on first backgrounding.
7215 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
7216 * On subsequent bg argv is trashed, but we won't use it */
7217 if (pi->cmdtext)
7218 return pi->cmdtext;
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007219
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007220 argv = pi->cmds[0].argv;
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007221 if (!argv) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007222 pi->cmdtext = xzalloc(1);
7223 return pi->cmdtext;
7224 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007225 len = 0;
7226 do {
7227 len += strlen(*argv) + 1;
7228 } while (*++argv);
7229 p = xmalloc(len);
7230 pi->cmdtext = p;
7231 argv = pi->cmds[0].argv;
7232 do {
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007233 p = stpcpy(p, *argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007234 *p++ = ' ';
7235 } while (*++argv);
7236 p[-1] = '\0';
7237 return pi->cmdtext;
7238}
7239
Denys Vlasenko16096292017-07-10 10:00:28 +02007240static void insert_job_into_table(struct pipe *pi)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007241{
7242 struct pipe *job, **jobp;
7243 int i;
7244
Denys Vlasenko9e55a152017-07-10 10:01:12 +02007245 /* Find the end of the list, and find next job ID to use */
7246 i = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007247 jobp = &G.job_list;
Denys Vlasenko9e55a152017-07-10 10:01:12 +02007248 while ((job = *jobp) != NULL) {
7249 if (job->jobid > i)
7250 i = job->jobid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007251 jobp = &job->next;
Denys Vlasenko9e55a152017-07-10 10:01:12 +02007252 }
7253 pi->jobid = i + 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007254
Denys Vlasenko9e55a152017-07-10 10:01:12 +02007255 /* Create a new job struct at the end */
7256 job = *jobp = xmemdup(pi, sizeof(*pi));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007257 job->next = NULL;
7258 job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
7259 /* Cannot copy entire pi->cmds[] vector! This causes double frees */
7260 for (i = 0; i < pi->num_cmds; i++) {
7261 job->cmds[i].pid = pi->cmds[i].pid;
7262 /* all other fields are not used and stay zero */
7263 }
7264 job->cmdtext = xstrdup(get_cmdtext(pi));
7265
7266 if (G_interactive_fd)
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01007267 printf("[%u] %u %s\n", job->jobid, (unsigned)job->cmds[0].pid, job->cmdtext);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007268 G.last_jobid = job->jobid;
7269}
7270
Denys Vlasenko16096292017-07-10 10:00:28 +02007271static void remove_job_from_table(struct pipe *pi)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007272{
7273 struct pipe *prev_pipe;
7274
7275 if (pi == G.job_list) {
7276 G.job_list = pi->next;
7277 } else {
7278 prev_pipe = G.job_list;
7279 while (prev_pipe->next != pi)
7280 prev_pipe = prev_pipe->next;
7281 prev_pipe->next = pi->next;
7282 }
7283 if (G.job_list)
7284 G.last_jobid = G.job_list->jobid;
7285 else
7286 G.last_jobid = 0;
7287}
7288
Denys Vlasenko16096292017-07-10 10:00:28 +02007289static void delete_finished_job(struct pipe *pi)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007290{
Denys Vlasenko16096292017-07-10 10:00:28 +02007291 remove_job_from_table(pi);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007292 free_pipe(pi);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007293}
7294#endif /* JOB */
7295
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007296static int job_exited_or_stopped(struct pipe *pi)
7297{
7298 int rcode, i;
7299
7300 if (pi->alive_cmds != pi->stopped_cmds)
7301 return -1;
7302
7303 /* All processes in fg pipe have exited or stopped */
7304 rcode = 0;
7305 i = pi->num_cmds;
7306 while (--i >= 0) {
7307 rcode = pi->cmds[i].cmd_exitcode;
7308 /* usually last process gives overall exitstatus,
7309 * but with "set -o pipefail", last *failed* process does */
7310 if (G.o_opt[OPT_O_PIPEFAIL] == 0 || rcode != 0)
7311 break;
7312 }
7313 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7314 return rcode;
7315}
7316
Denys Vlasenko7e675362016-10-28 21:57:31 +02007317static int process_wait_result(struct pipe *fg_pipe, pid_t childpid, int status)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007318{
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007319#if ENABLE_HUSH_JOB
7320 struct pipe *pi;
7321#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02007322 int i, dead;
7323
7324 dead = WIFEXITED(status) || WIFSIGNALED(status);
7325
7326#if DEBUG_JOBS
7327 if (WIFSTOPPED(status))
7328 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
7329 childpid, WSTOPSIG(status), WEXITSTATUS(status));
7330 if (WIFSIGNALED(status))
7331 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
7332 childpid, WTERMSIG(status), WEXITSTATUS(status));
7333 if (WIFEXITED(status))
7334 debug_printf_jobs("pid %d exited, exitcode %d\n",
7335 childpid, WEXITSTATUS(status));
7336#endif
7337 /* Were we asked to wait for a fg pipe? */
7338 if (fg_pipe) {
7339 i = fg_pipe->num_cmds;
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007340
Denys Vlasenko7e675362016-10-28 21:57:31 +02007341 while (--i >= 0) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007342 int rcode;
7343
Denys Vlasenko7e675362016-10-28 21:57:31 +02007344 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
7345 if (fg_pipe->cmds[i].pid != childpid)
7346 continue;
7347 if (dead) {
7348 int ex;
7349 fg_pipe->cmds[i].pid = 0;
7350 fg_pipe->alive_cmds--;
7351 ex = WEXITSTATUS(status);
7352 /* bash prints killer signal's name for *last*
7353 * process in pipe (prints just newline for SIGINT/SIGPIPE).
7354 * Mimic this. Example: "sleep 5" + (^\ or kill -QUIT)
7355 */
7356 if (WIFSIGNALED(status)) {
7357 int sig = WTERMSIG(status);
7358 if (i == fg_pipe->num_cmds-1)
7359 /* TODO: use strsignal() instead for bash compat? but that's bloat... */
7360 puts(sig == SIGINT || sig == SIGPIPE ? "" : get_signame(sig));
7361 /* TODO: if (WCOREDUMP(status)) + " (core dumped)"; */
7362 /* TODO: MIPS has 128 sigs (1..128), what if sig==128 here?
7363 * Maybe we need to use sig | 128? */
7364 ex = sig + 128;
7365 }
7366 fg_pipe->cmds[i].cmd_exitcode = ex;
7367 } else {
7368 fg_pipe->stopped_cmds++;
7369 }
7370 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
7371 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007372 rcode = job_exited_or_stopped(fg_pipe);
7373 if (rcode >= 0) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007374/* Note: *non-interactive* bash does not continue if all processes in fg pipe
7375 * are stopped. Testcase: "cat | cat" in a script (not on command line!)
7376 * and "killall -STOP cat" */
7377 if (G_interactive_fd) {
7378#if ENABLE_HUSH_JOB
7379 if (fg_pipe->alive_cmds != 0)
Denys Vlasenko16096292017-07-10 10:00:28 +02007380 insert_job_into_table(fg_pipe);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007381#endif
7382 return rcode;
7383 }
7384 if (fg_pipe->alive_cmds == 0)
7385 return rcode;
7386 }
7387 /* There are still running processes in the fg_pipe */
7388 return -1;
7389 }
Denys Vlasenko10ad6222017-04-17 16:13:32 +02007390 /* It wasn't in fg_pipe, look for process in bg pipes */
Denys Vlasenko7e675362016-10-28 21:57:31 +02007391 }
7392
7393#if ENABLE_HUSH_JOB
7394 /* We were asked to wait for bg or orphaned children */
7395 /* No need to remember exitcode in this case */
7396 for (pi = G.job_list; pi; pi = pi->next) {
7397 for (i = 0; i < pi->num_cmds; i++) {
7398 if (pi->cmds[i].pid == childpid)
7399 goto found_pi_and_prognum;
7400 }
7401 }
7402 /* Happens when shell is used as init process (init=/bin/sh) */
7403 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
7404 return -1; /* this wasn't a process from fg_pipe */
7405
7406 found_pi_and_prognum:
7407 if (dead) {
7408 /* child exited */
Denys Vlasenko840a4352017-07-07 22:56:02 +02007409 int rcode = WEXITSTATUS(status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007410 if (WIFSIGNALED(status))
Denys Vlasenko840a4352017-07-07 22:56:02 +02007411 rcode = 128 + WTERMSIG(status);
7412 pi->cmds[i].cmd_exitcode = rcode;
7413 if (G.last_bg_pid == pi->cmds[i].pid)
7414 G.last_bg_pid_exitcode = rcode;
7415 pi->cmds[i].pid = 0;
Denys Vlasenko7e675362016-10-28 21:57:31 +02007416 pi->alive_cmds--;
7417 if (!pi->alive_cmds) {
7418 if (G_interactive_fd)
7419 printf(JOB_STATUS_FORMAT, pi->jobid,
7420 "Done", pi->cmdtext);
Denys Vlasenko16096292017-07-10 10:00:28 +02007421 delete_finished_job(pi);
Denys Vlasenko13102632017-07-08 00:24:32 +02007422//bash deletes finished jobs from job table only in interactive mode, after "jobs" cmd,
7423//or if pid of a new process matches one of the old ones
7424//(see cleanup_dead_jobs(), delete_old_job(), J_NOTIFIED in bash source).
7425//Testcase script: "(exit 3) & sleep 1; wait %1; echo $?" prints 3 in bash.
Denys Vlasenko7e675362016-10-28 21:57:31 +02007426 }
7427 } else {
7428 /* child stopped */
7429 pi->stopped_cmds++;
7430 }
7431#endif
7432 return -1; /* this wasn't a process from fg_pipe */
7433}
7434
7435/* Check to see if any processes have exited -- if they have,
7436 * figure out why and see if a job has completed.
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007437 *
7438 * If non-NULL fg_pipe: wait for its completion or stop.
7439 * Return its exitcode or zero if stopped.
7440 *
7441 * Alternatively (fg_pipe == NULL, waitfor_pid != 0):
7442 * waitpid(WNOHANG), if waitfor_pid exits or stops, return exitcode+1,
7443 * else return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for)
7444 * or 0 if no children changed status.
7445 *
7446 * Alternatively (fg_pipe == NULL, waitfor_pid == 0),
7447 * return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for)
7448 * or 0 if no children changed status.
Denys Vlasenko7e675362016-10-28 21:57:31 +02007449 */
7450static int checkjobs(struct pipe *fg_pipe, pid_t waitfor_pid)
7451{
7452 int attributes;
7453 int status;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007454 int rcode = 0;
7455
7456 debug_printf_jobs("checkjobs %p\n", fg_pipe);
7457
7458 attributes = WUNTRACED;
7459 if (fg_pipe == NULL)
7460 attributes |= WNOHANG;
7461
7462 errno = 0;
7463#if ENABLE_HUSH_FAST
7464 if (G.handled_SIGCHLD == G.count_SIGCHLD) {
7465//bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p",
7466//getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe);
7467 /* There was neither fork nor SIGCHLD since last waitpid */
7468 /* Avoid doing waitpid syscall if possible */
7469 if (!G.we_have_children) {
7470 errno = ECHILD;
7471 return -1;
7472 }
7473 if (fg_pipe == NULL) { /* is WNOHANG set? */
7474 /* We have children, but they did not exit
7475 * or stop yet (we saw no SIGCHLD) */
7476 return 0;
7477 }
7478 /* else: !WNOHANG, waitpid will block, can't short-circuit */
7479 }
7480#endif
7481
7482/* Do we do this right?
7483 * bash-3.00# sleep 20 | false
7484 * <ctrl-Z pressed>
7485 * [3]+ Stopped sleep 20 | false
7486 * bash-3.00# echo $?
7487 * 1 <========== bg pipe is not fully done, but exitcode is already known!
7488 * [hush 1.14.0: yes we do it right]
7489 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007490 while (1) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007491 pid_t childpid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007492#if ENABLE_HUSH_FAST
Denys Vlasenko7e675362016-10-28 21:57:31 +02007493 int i;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007494 i = G.count_SIGCHLD;
7495#endif
7496 childpid = waitpid(-1, &status, attributes);
7497 if (childpid <= 0) {
7498 if (childpid && errno != ECHILD)
7499 bb_perror_msg("waitpid");
7500#if ENABLE_HUSH_FAST
7501 else { /* Until next SIGCHLD, waitpid's are useless */
7502 G.we_have_children = (childpid == 0);
7503 G.handled_SIGCHLD = i;
7504//bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
7505 }
7506#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02007507 /* ECHILD (no children), or 0 (no change in children status) */
7508 rcode = childpid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007509 break;
7510 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007511 rcode = process_wait_result(fg_pipe, childpid, status);
7512 if (rcode >= 0) {
7513 /* fg_pipe exited or stopped */
7514 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007515 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007516 if (childpid == waitfor_pid) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007517 debug_printf_exec("childpid==waitfor_pid:%d status:0x%08x\n", childpid, status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007518 rcode = WEXITSTATUS(status);
7519 if (WIFSIGNALED(status))
7520 rcode = 128 + WTERMSIG(status);
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007521 if (WIFSTOPPED(status))
7522 /* bash: "cmd & wait $!" and cmd stops: $? = 128 + stopsig */
7523 rcode = 128 + WSTOPSIG(status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007524 rcode++;
7525 break; /* "wait PID" called us, give it exitcode+1 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007526 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007527 /* This wasn't one of our processes, or */
7528 /* fg_pipe still has running processes, do waitpid again */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007529 } /* while (waitpid succeeds)... */
7530
7531 return rcode;
7532}
7533
7534#if ENABLE_HUSH_JOB
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02007535static int checkjobs_and_fg_shell(struct pipe *fg_pipe)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007536{
7537 pid_t p;
Denys Vlasenko7e675362016-10-28 21:57:31 +02007538 int rcode = checkjobs(fg_pipe, 0 /*(no pid to wait for)*/);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007539 if (G_saved_tty_pgrp) {
7540 /* Job finished, move the shell to the foreground */
7541 p = getpgrp(); /* our process group id */
7542 debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p);
7543 tcsetpgrp(G_interactive_fd, p);
7544 }
7545 return rcode;
7546}
7547#endif
7548
7549/* Start all the jobs, but don't wait for anything to finish.
7550 * See checkjobs().
7551 *
7552 * Return code is normally -1, when the caller has to wait for children
7553 * to finish to determine the exit status of the pipe. If the pipe
7554 * is a simple builtin command, however, the action is done by the
7555 * time run_pipe returns, and the exit code is provided as the
7556 * return value.
7557 *
7558 * Returns -1 only if started some children. IOW: we have to
7559 * mask out retvals of builtins etc with 0xff!
7560 *
7561 * The only case when we do not need to [v]fork is when the pipe
7562 * is single, non-backgrounded, non-subshell command. Examples:
7563 * cmd ; ... { list } ; ...
7564 * cmd && ... { list } && ...
7565 * cmd || ... { list } || ...
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007566 * If it is, then we can run cmd as a builtin, NOFORK,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007567 * or (if SH_STANDALONE) an applet, and we can run the { list }
7568 * with run_list. If it isn't one of these, we fork and exec cmd.
7569 *
7570 * Cases when we must fork:
7571 * non-single: cmd | cmd
7572 * backgrounded: cmd & { list } &
7573 * subshell: ( list ) [&]
7574 */
7575#if !ENABLE_HUSH_MODE_X
Denys Vlasenko26777aa2010-11-22 23:49:10 +01007576#define redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel, argv_expanded) \
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007577 redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel)
7578#endif
7579static int redirect_and_varexp_helper(char ***new_env_p,
7580 struct variable **old_vars_p,
7581 struct command *command,
Denys Vlasenko2db74612017-07-07 22:07:28 +02007582 struct squirrel **sqp,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007583 char **argv_expanded)
7584{
7585 /* setup_redirects acts on file descriptors, not FILEs.
7586 * This is perfect for work that comes after exec().
7587 * Is it really safe for inline use? Experimentally,
7588 * things seem to work. */
Denys Vlasenko2db74612017-07-07 22:07:28 +02007589 int rcode = setup_redirects(command, sqp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007590 if (rcode == 0) {
7591 char **new_env = expand_assignments(command->argv, command->assignment_cnt);
7592 *new_env_p = new_env;
7593 dump_cmd_in_x_mode(new_env);
7594 dump_cmd_in_x_mode(argv_expanded);
7595 if (old_vars_p)
7596 *old_vars_p = set_vars_and_save_old(new_env);
7597 }
7598 return rcode;
7599}
7600static NOINLINE int run_pipe(struct pipe *pi)
7601{
7602 static const char *const null_ptr = NULL;
7603
7604 int cmd_no;
7605 int next_infd;
7606 struct command *command;
7607 char **argv_expanded;
7608 char **argv;
Denys Vlasenko2db74612017-07-07 22:07:28 +02007609 struct squirrel *squirrel = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007610 int rcode;
7611
7612 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
7613 debug_enter();
7614
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02007615 /* Testcase: set -- q w e; (IFS='' echo "$*"; IFS=''; echo "$*"); echo "$*"
7616 * Result should be 3 lines: q w e, qwe, q w e
7617 */
7618 G.ifs = get_local_var_value("IFS");
7619 if (!G.ifs)
7620 G.ifs = defifs;
7621
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007622 IF_HUSH_JOB(pi->pgrp = -1;)
7623 pi->stopped_cmds = 0;
7624 command = &pi->cmds[0];
7625 argv_expanded = NULL;
7626
7627 if (pi->num_cmds != 1
7628 || pi->followup == PIPE_BG
7629 || command->cmd_type == CMD_SUBSHELL
7630 ) {
7631 goto must_fork;
7632 }
7633
7634 pi->alive_cmds = 1;
7635
7636 debug_printf_exec(": group:%p argv:'%s'\n",
7637 command->group, command->argv ? command->argv[0] : "NONE");
7638
7639 if (command->group) {
7640#if ENABLE_HUSH_FUNCTIONS
7641 if (command->cmd_type == CMD_FUNCDEF) {
7642 /* "executing" func () { list } */
7643 struct function *funcp;
7644
7645 funcp = new_function(command->argv[0]);
7646 /* funcp->name is already set to argv[0] */
7647 funcp->body = command->group;
7648# if !BB_MMU
7649 funcp->body_as_string = command->group_as_string;
7650 command->group_as_string = NULL;
7651# endif
7652 command->group = NULL;
7653 command->argv[0] = NULL;
7654 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
7655 funcp->parent_cmd = command;
7656 command->child_func = funcp;
7657
7658 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
7659 debug_leave();
7660 return EXIT_SUCCESS;
7661 }
7662#endif
7663 /* { list } */
7664 debug_printf("non-subshell group\n");
7665 rcode = 1; /* exitcode if redir failed */
Denys Vlasenko2db74612017-07-07 22:07:28 +02007666 if (setup_redirects(command, &squirrel) == 0) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007667 debug_printf_exec(": run_list\n");
7668 rcode = run_list(command->group) & 0xff;
7669 }
7670 restore_redirects(squirrel);
7671 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7672 debug_leave();
7673 debug_printf_exec("run_pipe: return %d\n", rcode);
7674 return rcode;
7675 }
7676
7677 argv = command->argv ? command->argv : (char **) &null_ptr;
7678 {
7679 const struct built_in_command *x;
7680#if ENABLE_HUSH_FUNCTIONS
7681 const struct function *funcp;
7682#else
7683 enum { funcp = 0 };
7684#endif
7685 char **new_env = NULL;
7686 struct variable *old_vars = NULL;
7687
7688 if (argv[command->assignment_cnt] == NULL) {
7689 /* Assignments, but no command */
7690 /* Ensure redirects take effect (that is, create files).
7691 * Try "a=t >file" */
7692#if 0 /* A few cases in testsuite fail with this code. FIXME */
Denys Vlasenko2db74612017-07-07 22:07:28 +02007693 rcode = redirect_and_varexp_helper(&new_env, /*old_vars:*/ NULL, command, &squirrel, /*argv_expanded:*/ NULL);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007694 /* Set shell variables */
7695 if (new_env) {
7696 argv = new_env;
7697 while (*argv) {
7698 set_local_var(*argv, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
7699 /* Do we need to flag set_local_var() errors?
7700 * "assignment to readonly var" and "putenv error"
7701 */
7702 argv++;
7703 }
7704 }
7705 /* Redirect error sets $? to 1. Otherwise,
7706 * if evaluating assignment value set $?, retain it.
7707 * Try "false; q=`exit 2`; echo $?" - should print 2: */
7708 if (rcode == 0)
7709 rcode = G.last_exitcode;
7710 /* Exit, _skipping_ variable restoring code: */
7711 goto clean_up_and_ret0;
7712
7713#else /* Older, bigger, but more correct code */
7714
Denys Vlasenko2db74612017-07-07 22:07:28 +02007715 rcode = setup_redirects(command, &squirrel);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007716 restore_redirects(squirrel);
7717 /* Set shell variables */
7718 if (G_x_mode)
7719 bb_putchar_stderr('+');
7720 while (*argv) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02007721 char *p = expand_string_to_string(*argv, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007722 if (G_x_mode)
7723 fprintf(stderr, " %s", p);
7724 debug_printf_exec("set shell var:'%s'->'%s'\n",
7725 *argv, p);
7726 set_local_var(p, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
7727 /* Do we need to flag set_local_var() errors?
7728 * "assignment to readonly var" and "putenv error"
7729 */
7730 argv++;
7731 }
7732 if (G_x_mode)
7733 bb_putchar_stderr('\n');
7734 /* Redirect error sets $? to 1. Otherwise,
7735 * if evaluating assignment value set $?, retain it.
7736 * Try "false; q=`exit 2`; echo $?" - should print 2: */
7737 if (rcode == 0)
7738 rcode = G.last_exitcode;
7739 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7740 debug_leave();
7741 debug_printf_exec("run_pipe: return %d\n", rcode);
7742 return rcode;
7743#endif
7744 }
7745
7746 /* Expand the rest into (possibly) many strings each */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01007747#if BASH_TEST2
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007748 if (command->cmd_type == CMD_SINGLEWORD_NOGLOB) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007749 argv_expanded = expand_strvec_to_strvec_singleword_noglob(argv + command->assignment_cnt);
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007750 } else
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007751#endif
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007752 {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007753 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
7754 }
7755
7756 /* if someone gives us an empty string: `cmd with empty output` */
7757 if (!argv_expanded[0]) {
7758 free(argv_expanded);
7759 debug_leave();
7760 return G.last_exitcode;
7761 }
7762
7763 x = find_builtin(argv_expanded[0]);
7764#if ENABLE_HUSH_FUNCTIONS
7765 funcp = NULL;
7766 if (!x)
7767 funcp = find_function(argv_expanded[0]);
7768#endif
7769 if (x || funcp) {
7770 if (!funcp) {
7771 if (x->b_function == builtin_exec && argv_expanded[1] == NULL) {
7772 debug_printf("exec with redirects only\n");
7773 rcode = setup_redirects(command, NULL);
Denys Vlasenko869994c2016-08-20 15:16:00 +02007774 /* rcode=1 can be if redir file can't be opened */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007775 goto clean_up_and_ret1;
7776 }
7777 }
Denys Vlasenko2db74612017-07-07 22:07:28 +02007778 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, &squirrel, argv_expanded);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007779 if (rcode == 0) {
7780 if (!funcp) {
7781 debug_printf_exec(": builtin '%s' '%s'...\n",
7782 x->b_cmd, argv_expanded[1]);
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01007783 fflush_all();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007784 rcode = x->b_function(argv_expanded) & 0xff;
7785 fflush_all();
7786 }
7787#if ENABLE_HUSH_FUNCTIONS
7788 else {
7789# if ENABLE_HUSH_LOCAL
7790 struct variable **sv;
7791 sv = G.shadowed_vars_pp;
7792 G.shadowed_vars_pp = &old_vars;
7793# endif
7794 debug_printf_exec(": function '%s' '%s'...\n",
7795 funcp->name, argv_expanded[1]);
7796 rcode = run_function(funcp, argv_expanded) & 0xff;
7797# if ENABLE_HUSH_LOCAL
7798 G.shadowed_vars_pp = sv;
7799# endif
7800 }
7801#endif
7802 }
7803 clean_up_and_ret:
7804 unset_vars(new_env);
7805 add_vars(old_vars);
7806/* clean_up_and_ret0: */
7807 restore_redirects(squirrel);
7808 clean_up_and_ret1:
7809 free(argv_expanded);
7810 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7811 debug_leave();
7812 debug_printf_exec("run_pipe return %d\n", rcode);
7813 return rcode;
7814 }
7815
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007816 if (ENABLE_FEATURE_SH_NOFORK) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007817 int n = find_applet_by_name(argv_expanded[0]);
7818 if (n >= 0 && APPLET_IS_NOFORK(n)) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02007819 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, &squirrel, argv_expanded);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007820 if (rcode == 0) {
7821 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
7822 argv_expanded[0], argv_expanded[1]);
7823 rcode = run_nofork_applet(n, argv_expanded);
7824 }
7825 goto clean_up_and_ret;
7826 }
7827 }
7828 /* It is neither builtin nor applet. We must fork. */
7829 }
7830
7831 must_fork:
7832 /* NB: argv_expanded may already be created, and that
7833 * might include `cmd` runs! Do not rerun it! We *must*
7834 * use argv_expanded if it's non-NULL */
7835
7836 /* Going to fork a child per each pipe member */
7837 pi->alive_cmds = 0;
7838 next_infd = 0;
7839
7840 cmd_no = 0;
7841 while (cmd_no < pi->num_cmds) {
7842 struct fd_pair pipefds;
7843#if !BB_MMU
7844 volatile nommu_save_t nommu_save;
7845 nommu_save.new_env = NULL;
7846 nommu_save.old_vars = NULL;
7847 nommu_save.argv = NULL;
7848 nommu_save.argv_from_re_execing = NULL;
7849#endif
7850 command = &pi->cmds[cmd_no];
7851 cmd_no++;
7852 if (command->argv) {
7853 debug_printf_exec(": pipe member '%s' '%s'...\n",
7854 command->argv[0], command->argv[1]);
7855 } else {
7856 debug_printf_exec(": pipe member with no argv\n");
7857 }
7858
7859 /* pipes are inserted between pairs of commands */
7860 pipefds.rd = 0;
7861 pipefds.wr = 1;
7862 if (cmd_no < pi->num_cmds)
7863 xpiped_pair(pipefds);
7864
7865 command->pid = BB_MMU ? fork() : vfork();
7866 if (!command->pid) { /* child */
7867#if ENABLE_HUSH_JOB
7868 disable_restore_tty_pgrp_on_exit();
7869 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
7870
7871 /* Every child adds itself to new process group
7872 * with pgid == pid_of_first_child_in_pipe */
7873 if (G.run_list_level == 1 && G_interactive_fd) {
7874 pid_t pgrp;
7875 pgrp = pi->pgrp;
7876 if (pgrp < 0) /* true for 1st process only */
7877 pgrp = getpid();
7878 if (setpgid(0, pgrp) == 0
7879 && pi->followup != PIPE_BG
7880 && G_saved_tty_pgrp /* we have ctty */
7881 ) {
7882 /* We do it in *every* child, not just first,
7883 * to avoid races */
7884 tcsetpgrp(G_interactive_fd, pgrp);
7885 }
7886 }
7887#endif
7888 if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
7889 /* 1st cmd in backgrounded pipe
7890 * should have its stdin /dev/null'ed */
7891 close(0);
7892 if (open(bb_dev_null, O_RDONLY))
7893 xopen("/", O_RDONLY);
7894 } else {
7895 xmove_fd(next_infd, 0);
7896 }
7897 xmove_fd(pipefds.wr, 1);
7898 if (pipefds.rd > 1)
7899 close(pipefds.rd);
7900 /* Like bash, explicit redirects override pipes,
Denys Vlasenko869994c2016-08-20 15:16:00 +02007901 * and the pipe fd (fd#1) is available for dup'ing:
7902 * "cmd1 2>&1 | cmd2": fd#1 is duped to fd#2, thus stderr
7903 * of cmd1 goes into pipe.
7904 */
7905 if (setup_redirects(command, NULL)) {
7906 /* Happens when redir file can't be opened:
7907 * $ hush -c 'echo FOO >&2 | echo BAR 3>/qwe/rty; echo BAZ'
7908 * FOO
7909 * hush: can't open '/qwe/rty': No such file or directory
7910 * BAZ
7911 * (echo BAR is not executed, it hits _exit(1) below)
7912 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007913 _exit(1);
Denys Vlasenko869994c2016-08-20 15:16:00 +02007914 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007915
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007916 /* Stores to nommu_save list of env vars putenv'ed
7917 * (NOMMU, on MMU we don't need that) */
7918 /* cast away volatility... */
7919 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
7920 /* pseudo_exec() does not return */
7921 }
7922
7923 /* parent or error */
7924#if ENABLE_HUSH_FAST
7925 G.count_SIGCHLD++;
7926//bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
7927#endif
7928 enable_restore_tty_pgrp_on_exit();
7929#if !BB_MMU
7930 /* Clean up after vforked child */
7931 free(nommu_save.argv);
7932 free(nommu_save.argv_from_re_execing);
7933 unset_vars(nommu_save.new_env);
7934 add_vars(nommu_save.old_vars);
7935#endif
7936 free(argv_expanded);
7937 argv_expanded = NULL;
7938 if (command->pid < 0) { /* [v]fork failed */
7939 /* Clearly indicate, was it fork or vfork */
7940 bb_perror_msg(BB_MMU ? "vfork"+1 : "vfork");
7941 } else {
7942 pi->alive_cmds++;
7943#if ENABLE_HUSH_JOB
7944 /* Second and next children need to know pid of first one */
7945 if (pi->pgrp < 0)
7946 pi->pgrp = command->pid;
7947#endif
7948 }
7949
7950 if (cmd_no > 1)
7951 close(next_infd);
7952 if (cmd_no < pi->num_cmds)
7953 close(pipefds.wr);
7954 /* Pass read (output) pipe end to next iteration */
7955 next_infd = pipefds.rd;
7956 }
7957
7958 if (!pi->alive_cmds) {
7959 debug_leave();
7960 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
7961 return 1;
7962 }
7963
7964 debug_leave();
7965 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
7966 return -1;
7967}
7968
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007969/* NB: called by pseudo_exec, and therefore must not modify any
7970 * global data until exec/_exit (we can be a child after vfork!) */
7971static int run_list(struct pipe *pi)
7972{
7973#if ENABLE_HUSH_CASE
7974 char *case_word = NULL;
7975#endif
7976#if ENABLE_HUSH_LOOPS
7977 struct pipe *loop_top = NULL;
7978 char **for_lcur = NULL;
7979 char **for_list = NULL;
7980#endif
7981 smallint last_followup;
7982 smalluint rcode;
7983#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
7984 smalluint cond_code = 0;
7985#else
7986 enum { cond_code = 0 };
7987#endif
7988#if HAS_KEYWORDS
Denys Vlasenko9b782552010-09-08 13:33:26 +02007989 smallint rword; /* RES_foo */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007990 smallint last_rword; /* ditto */
7991#endif
7992
7993 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
7994 debug_enter();
7995
7996#if ENABLE_HUSH_LOOPS
7997 /* Check syntax for "for" */
Denys Vlasenko0d6a4ec2010-12-18 01:34:49 +01007998 {
7999 struct pipe *cpipe;
8000 for (cpipe = pi; cpipe; cpipe = cpipe->next) {
8001 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
8002 continue;
8003 /* current word is FOR or IN (BOLD in comments below) */
8004 if (cpipe->next == NULL) {
8005 syntax_error("malformed for");
8006 debug_leave();
8007 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
8008 return 1;
8009 }
8010 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
8011 if (cpipe->next->res_word == RES_DO)
8012 continue;
8013 /* next word is not "do". It must be "in" then ("FOR v in ...") */
8014 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
8015 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
8016 ) {
8017 syntax_error("malformed for");
8018 debug_leave();
8019 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
8020 return 1;
8021 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008022 }
8023 }
8024#endif
8025
8026 /* Past this point, all code paths should jump to ret: label
8027 * in order to return, no direct "return" statements please.
8028 * This helps to ensure that no memory is leaked. */
8029
8030#if ENABLE_HUSH_JOB
8031 G.run_list_level++;
8032#endif
8033
8034#if HAS_KEYWORDS
8035 rword = RES_NONE;
8036 last_rword = RES_XXXX;
8037#endif
8038 last_followup = PIPE_SEQ;
8039 rcode = G.last_exitcode;
8040
8041 /* Go through list of pipes, (maybe) executing them. */
8042 for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008043 int r;
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008044 int sv_errexit_depth;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008045
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008046 if (G.flag_SIGINT)
8047 break;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02008048 if (G_flag_return_in_progress == 1)
8049 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008050
8051 IF_HAS_KEYWORDS(rword = pi->res_word;)
8052 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
8053 rword, cond_code, last_rword);
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008054
8055 sv_errexit_depth = G.errexit_depth;
8056 if (IF_HAS_KEYWORDS(rword == RES_IF || rword == RES_ELIF ||)
8057 pi->followup != PIPE_SEQ
8058 ) {
8059 G.errexit_depth++;
8060 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008061#if ENABLE_HUSH_LOOPS
8062 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
8063 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
8064 ) {
8065 /* start of a loop: remember where loop starts */
8066 loop_top = pi;
8067 G.depth_of_loop++;
8068 }
8069#endif
8070 /* Still in the same "if...", "then..." or "do..." branch? */
8071 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
8072 if ((rcode == 0 && last_followup == PIPE_OR)
8073 || (rcode != 0 && last_followup == PIPE_AND)
8074 ) {
8075 /* It is "<true> || CMD" or "<false> && CMD"
8076 * and we should not execute CMD */
8077 debug_printf_exec("skipped cmd because of || or &&\n");
8078 last_followup = pi->followup;
Denys Vlasenko3beab832013-04-07 18:16:58 +02008079 goto dont_check_jobs_but_continue;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008080 }
8081 }
8082 last_followup = pi->followup;
8083 IF_HAS_KEYWORDS(last_rword = rword;)
8084#if ENABLE_HUSH_IF
8085 if (cond_code) {
8086 if (rword == RES_THEN) {
8087 /* if false; then ... fi has exitcode 0! */
8088 G.last_exitcode = rcode = EXIT_SUCCESS;
8089 /* "if <false> THEN cmd": skip cmd */
8090 continue;
8091 }
8092 } else {
8093 if (rword == RES_ELSE || rword == RES_ELIF) {
8094 /* "if <true> then ... ELSE/ELIF cmd":
8095 * skip cmd and all following ones */
8096 break;
8097 }
8098 }
8099#endif
8100#if ENABLE_HUSH_LOOPS
8101 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
8102 if (!for_lcur) {
8103 /* first loop through for */
8104
8105 static const char encoded_dollar_at[] ALIGN1 = {
8106 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
8107 }; /* encoded representation of "$@" */
8108 static const char *const encoded_dollar_at_argv[] = {
8109 encoded_dollar_at, NULL
8110 }; /* argv list with one element: "$@" */
8111 char **vals;
8112
8113 vals = (char**)encoded_dollar_at_argv;
8114 if (pi->next->res_word == RES_IN) {
8115 /* if no variable values after "in" we skip "for" */
8116 if (!pi->next->cmds[0].argv) {
8117 G.last_exitcode = rcode = EXIT_SUCCESS;
8118 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
8119 break;
8120 }
8121 vals = pi->next->cmds[0].argv;
8122 } /* else: "for var; do..." -> assume "$@" list */
8123 /* create list of variable values */
8124 debug_print_strings("for_list made from", vals);
8125 for_list = expand_strvec_to_strvec(vals);
8126 for_lcur = for_list;
8127 debug_print_strings("for_list", for_list);
8128 }
8129 if (!*for_lcur) {
8130 /* "for" loop is over, clean up */
8131 free(for_list);
8132 for_list = NULL;
8133 for_lcur = NULL;
8134 break;
8135 }
8136 /* Insert next value from for_lcur */
8137 /* note: *for_lcur already has quotes removed, $var expanded, etc */
8138 set_local_var(xasprintf("%s=%s", pi->cmds[0].argv[0], *for_lcur++), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
8139 continue;
8140 }
8141 if (rword == RES_IN) {
8142 continue; /* "for v IN list;..." - "in" has no cmds anyway */
8143 }
8144 if (rword == RES_DONE) {
8145 continue; /* "done" has no cmds too */
8146 }
8147#endif
8148#if ENABLE_HUSH_CASE
8149 if (rword == RES_CASE) {
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008150 debug_printf_exec("CASE cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008151 case_word = expand_strvec_to_string(pi->cmds->argv);
Denys Vlasenkobd43c672017-07-05 23:12:15 +02008152 unbackslash(case_word);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008153 continue;
8154 }
8155 if (rword == RES_MATCH) {
8156 char **argv;
8157
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008158 debug_printf_exec("MATCH cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008159 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
8160 break;
8161 /* all prev words didn't match, does this one match? */
8162 argv = pi->cmds->argv;
8163 while (*argv) {
Denys Vlasenkobd43c672017-07-05 23:12:15 +02008164 char *pattern = expand_string_to_string(*argv, /*unbackslash:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008165 /* TODO: which FNM_xxx flags to use? */
8166 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
Denys Vlasenkobd43c672017-07-05 23:12:15 +02008167 debug_printf_exec("fnmatch(pattern:'%s',str:'%s'):%d\n", pattern, case_word, cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008168 free(pattern);
8169 if (cond_code == 0) { /* match! we will execute this branch */
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008170 free(case_word);
8171 case_word = NULL; /* make future "word)" stop */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008172 break;
8173 }
8174 argv++;
8175 }
8176 continue;
8177 }
8178 if (rword == RES_CASE_BODY) { /* inside of a case branch */
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008179 debug_printf_exec("CASE_BODY cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008180 if (cond_code != 0)
8181 continue; /* not matched yet, skip this pipe */
8182 }
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008183 if (rword == RES_ESAC) {
8184 debug_printf_exec("ESAC cond_code:%d\n", cond_code);
8185 if (case_word) {
8186 /* "case" did not match anything: still set $? (to 0) */
8187 G.last_exitcode = rcode = EXIT_SUCCESS;
8188 }
8189 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008190#endif
8191 /* Just pressing <enter> in shell should check for jobs.
8192 * OTOH, in non-interactive shell this is useless
8193 * and only leads to extra job checks */
8194 if (pi->num_cmds == 0) {
8195 if (G_interactive_fd)
8196 goto check_jobs_and_continue;
8197 continue;
8198 }
8199
8200 /* After analyzing all keywords and conditions, we decided
8201 * to execute this pipe. NB: have to do checkjobs(NULL)
8202 * after run_pipe to collect any background children,
8203 * even if list execution is to be stopped. */
8204 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008205#if ENABLE_HUSH_LOOPS
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008206 G.flag_break_continue = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008207#endif
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008208 rcode = r = run_pipe(pi); /* NB: rcode is a smalluint, r is int */
8209 if (r != -1) {
8210 /* We ran a builtin, function, or group.
8211 * rcode is already known
8212 * and we don't need to wait for anything. */
8213 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
8214 G.last_exitcode = rcode;
8215 check_and_run_traps();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008216#if ENABLE_HUSH_LOOPS
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008217 /* Was it "break" or "continue"? */
8218 if (G.flag_break_continue) {
8219 smallint fbc = G.flag_break_continue;
8220 /* We might fall into outer *loop*,
8221 * don't want to break it too */
8222 if (loop_top) {
8223 G.depth_break_continue--;
8224 if (G.depth_break_continue == 0)
8225 G.flag_break_continue = 0;
8226 /* else: e.g. "continue 2" should *break* once, *then* continue */
8227 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
8228 if (G.depth_break_continue != 0 || fbc == BC_BREAK) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02008229 checkjobs(NULL, 0 /*(no pid to wait for)*/);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008230 break;
8231 }
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008232 /* "continue": simulate end of loop */
8233 rword = RES_DONE;
8234 continue;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008235 }
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008236#endif
8237 if (G_flag_return_in_progress == 1) {
8238 checkjobs(NULL, 0 /*(no pid to wait for)*/);
8239 break;
8240 }
8241 } else if (pi->followup == PIPE_BG) {
8242 /* What does bash do with attempts to background builtins? */
8243 /* even bash 3.2 doesn't do that well with nested bg:
8244 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
8245 * I'm NOT treating inner &'s as jobs */
8246#if ENABLE_HUSH_JOB
8247 if (G.run_list_level == 1)
Denys Vlasenko16096292017-07-10 10:00:28 +02008248 insert_job_into_table(pi);
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008249#endif
8250 /* Last command's pid goes to $! */
8251 G.last_bg_pid = pi->cmds[pi->num_cmds - 1].pid;
Denys Vlasenko840a4352017-07-07 22:56:02 +02008252 G.last_bg_pid_exitcode = 0;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008253 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
8254/* Check pi->pi_inverted? "! sleep 1 & echo $?": bash says 1. dash and ash says 0 */
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008255 rcode = EXIT_SUCCESS;
8256 goto check_traps;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008257 } else {
8258#if ENABLE_HUSH_JOB
8259 if (G.run_list_level == 1 && G_interactive_fd) {
8260 /* Waits for completion, then fg's main shell */
8261 rcode = checkjobs_and_fg_shell(pi);
8262 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008263 goto check_traps;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008264 }
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008265#endif
8266 /* This one just waits for completion */
8267 rcode = checkjobs(pi, 0 /*(no pid to wait for)*/);
8268 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
8269 check_traps:
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008270 G.last_exitcode = rcode;
8271 check_and_run_traps();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008272 }
8273
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008274 /* Handle "set -e" */
8275 if (rcode != 0 && G.o_opt[OPT_O_ERREXIT]) {
8276 debug_printf_exec("ERREXIT:1 errexit_depth:%d\n", G.errexit_depth);
8277 if (G.errexit_depth == 0)
8278 hush_exit(rcode);
8279 }
8280 G.errexit_depth = sv_errexit_depth;
8281
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008282 /* Analyze how result affects subsequent commands */
8283#if ENABLE_HUSH_IF
8284 if (rword == RES_IF || rword == RES_ELIF)
8285 cond_code = rcode;
8286#endif
Denys Vlasenko3beab832013-04-07 18:16:58 +02008287 check_jobs_and_continue:
Denys Vlasenko7e675362016-10-28 21:57:31 +02008288 checkjobs(NULL, 0 /*(no pid to wait for)*/);
Denys Vlasenko3beab832013-04-07 18:16:58 +02008289 dont_check_jobs_but_continue: ;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008290#if ENABLE_HUSH_LOOPS
8291 /* Beware of "while false; true; do ..."! */
Denys Vlasenko00ae9892011-05-31 17:35:45 +02008292 if (pi->next
8293 && (pi->next->res_word == RES_DO || pi->next->res_word == RES_DONE)
Denys Vlasenko56a3b822011-06-01 12:47:07 +02008294 /* check for RES_DONE is needed for "while ...; do \n done" case */
Denys Vlasenko00ae9892011-05-31 17:35:45 +02008295 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008296 if (rword == RES_WHILE) {
8297 if (rcode) {
8298 /* "while false; do...done" - exitcode 0 */
8299 G.last_exitcode = rcode = EXIT_SUCCESS;
8300 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
Denys Vlasenko3beab832013-04-07 18:16:58 +02008301 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008302 }
8303 }
8304 if (rword == RES_UNTIL) {
8305 if (!rcode) {
8306 debug_printf_exec(": until expr is true: breaking\n");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008307 break;
8308 }
8309 }
8310 }
8311#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008312 } /* for (pi) */
8313
8314#if ENABLE_HUSH_JOB
8315 G.run_list_level--;
8316#endif
8317#if ENABLE_HUSH_LOOPS
8318 if (loop_top)
8319 G.depth_of_loop--;
8320 free(for_list);
8321#endif
8322#if ENABLE_HUSH_CASE
8323 free(case_word);
8324#endif
8325 debug_leave();
8326 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
8327 return rcode;
8328}
8329
8330/* Select which version we will use */
8331static int run_and_free_list(struct pipe *pi)
8332{
8333 int rcode = 0;
8334 debug_printf_exec("run_and_free_list entered\n");
Dan Fandrich85c62472010-11-20 13:05:17 -08008335 if (!G.o_opt[OPT_O_NOEXEC]) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008336 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
8337 rcode = run_list(pi);
8338 }
8339 /* free_pipe_list has the side effect of clearing memory.
8340 * In the long run that function can be merged with run_list,
8341 * but doing that now would hobble the debugging effort. */
8342 free_pipe_list(pi);
8343 debug_printf_exec("run_and_free_list return %d\n", rcode);
8344 return rcode;
8345}
8346
8347
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008348static void install_sighandlers(unsigned mask)
Eric Andersen52a97ca2001-06-22 06:49:26 +00008349{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008350 sighandler_t old_handler;
8351 unsigned sig = 0;
8352 while ((mask >>= 1) != 0) {
8353 sig++;
8354 if (!(mask & 1))
8355 continue;
Denys Vlasenko0806e402011-05-12 23:06:20 +02008356 old_handler = install_sighandler(sig, pick_sighandler(sig));
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008357 /* POSIX allows shell to re-enable SIGCHLD
8358 * even if it was SIG_IGN on entry.
8359 * Therefore we skip IGN check for it:
8360 */
8361 if (sig == SIGCHLD)
8362 continue;
8363 if (old_handler == SIG_IGN) {
8364 /* oops... restore back to IGN, and record this fact */
Denys Vlasenko0806e402011-05-12 23:06:20 +02008365 install_sighandler(sig, old_handler);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008366#if ENABLE_HUSH_TRAP
8367 if (!G_traps)
8368 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
8369 free(G_traps[sig]);
8370 G_traps[sig] = xzalloc(1); /* == xstrdup(""); */
8371#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008372 }
8373 }
8374}
8375
8376/* Called a few times only (or even once if "sh -c") */
8377static void install_special_sighandlers(void)
8378{
Denis Vlasenkof9375282009-04-05 19:13:39 +00008379 unsigned mask;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008380
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008381 /* Which signals are shell-special? */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008382 mask = (1 << SIGQUIT) | (1 << SIGCHLD);
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008383 if (G_interactive_fd) {
8384 mask |= SPECIAL_INTERACTIVE_SIGS;
8385 if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008386 mask |= SPECIAL_JOBSTOP_SIGS;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008387 }
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008388 /* Careful, do not re-install handlers we already installed */
8389 if (G.special_sig_mask != mask) {
8390 unsigned diff = mask & ~G.special_sig_mask;
8391 G.special_sig_mask = mask;
8392 install_sighandlers(diff);
8393 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008394}
8395
8396#if ENABLE_HUSH_JOB
8397/* helper */
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008398/* Set handlers to restore tty pgrp and exit */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008399static void install_fatal_sighandlers(void)
Denis Vlasenkof9375282009-04-05 19:13:39 +00008400{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008401 unsigned mask;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008402
8403 /* We will restore tty pgrp on these signals */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008404 mask = 0
Denys Vlasenko830ea352016-11-08 04:59:11 +01008405 /*+ (1 << SIGILL ) * HUSH_DEBUG*/
8406 /*+ (1 << SIGFPE ) * HUSH_DEBUG*/
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008407 + (1 << SIGBUS ) * HUSH_DEBUG
8408 + (1 << SIGSEGV) * HUSH_DEBUG
Denys Vlasenko830ea352016-11-08 04:59:11 +01008409 /*+ (1 << SIGTRAP) * HUSH_DEBUG*/
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008410 + (1 << SIGABRT)
8411 /* bash 3.2 seems to handle these just like 'fatal' ones */
8412 + (1 << SIGPIPE)
8413 + (1 << SIGALRM)
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008414 /* if we are interactive, SIGHUP, SIGTERM and SIGINT are special sigs.
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008415 * if we aren't interactive... but in this case
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008416 * we never want to restore pgrp on exit, and this fn is not called
8417 */
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008418 /*+ (1 << SIGHUP )*/
8419 /*+ (1 << SIGTERM)*/
8420 /*+ (1 << SIGINT )*/
8421 ;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008422 G_fatal_sig_mask = mask;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008423
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008424 install_sighandlers(mask);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008425}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00008426#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00008427
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008428static int set_mode(int state, char mode, const char *o_opt)
Denis Vlasenkod5762932009-03-31 11:22:57 +00008429{
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008430 int idx;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008431 switch (mode) {
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008432 case 'n':
Dan Fandrich85c62472010-11-20 13:05:17 -08008433 G.o_opt[OPT_O_NOEXEC] = state;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008434 break;
8435 case 'x':
8436 IF_HUSH_MODE_X(G_x_mode = state;)
8437 break;
8438 case 'o':
8439 if (!o_opt) {
8440 /* "set -+o" without parameter.
8441 * in bash, set -o produces this output:
8442 * pipefail off
8443 * and set +o:
8444 * set +o pipefail
8445 * We always use the second form.
8446 */
8447 const char *p = o_opt_strings;
8448 idx = 0;
8449 while (*p) {
8450 printf("set %co %s\n", (G.o_opt[idx] ? '-' : '+'), p);
8451 idx++;
8452 p += strlen(p) + 1;
8453 }
8454 break;
8455 }
8456 idx = index_in_strings(o_opt_strings, o_opt);
8457 if (idx >= 0) {
8458 G.o_opt[idx] = state;
8459 break;
8460 }
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008461 case 'e':
8462 G.o_opt[OPT_O_ERREXIT] = state;
8463 break;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008464 default:
8465 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008466 }
8467 return EXIT_SUCCESS;
8468}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008469
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00008470int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00008471int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00008472{
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008473 enum {
8474 OPT_login = (1 << 0),
8475 };
8476 unsigned flags;
Eric Andersen25f27032001-04-26 23:22:31 +00008477 int opt;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008478 unsigned builtin_argc;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008479 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008480 struct variable *cur_var;
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008481 struct variable *shell_ver;
Eric Andersenbc604a22001-05-16 05:24:03 +00008482
Denis Vlasenko574f2f42008-02-27 18:41:59 +00008483 INIT_G();
Denys Vlasenko10c01312011-05-11 11:49:21 +02008484 if (EXIT_SUCCESS != 0) /* if EXIT_SUCCESS == 0, it is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008485 G.last_exitcode = EXIT_SUCCESS;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02008486
Denys Vlasenko10c01312011-05-11 11:49:21 +02008487#if ENABLE_HUSH_FAST
8488 G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
8489#endif
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008490#if !BB_MMU
8491 G.argv0_for_re_execing = argv[0];
8492#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008493 /* Deal with HUSH_VERSION */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008494 shell_ver = xzalloc(sizeof(*shell_ver));
8495 shell_ver->flg_export = 1;
8496 shell_ver->flg_read_only = 1;
Denys Vlasenko4f870492010-09-10 11:06:01 +02008497 /* Code which handles ${var<op>...} needs writable values for all variables,
Denys Vlasenko36f774a2010-09-05 14:45:38 +02008498 * therefore we xstrdup: */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008499 shell_ver->varstr = xstrdup(hush_version_str);
Denys Vlasenko605067b2010-09-06 12:10:51 +02008500 /* Create shell local variables from the values
8501 * currently living in the environment */
Denis Vlasenkof886fd22008-10-13 12:36:05 +00008502 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008503 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008504 G.top_var = shell_ver;
Denis Vlasenko87a86552008-07-29 19:43:10 +00008505 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008506 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008507 if (e) while (*e) {
8508 char *value = strchr(*e, '=');
8509 if (value) { /* paranoia */
8510 cur_var->next = xzalloc(sizeof(*cur_var));
8511 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00008512 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008513 cur_var->max_len = strlen(*e);
8514 cur_var->flg_export = 1;
8515 }
8516 e++;
8517 }
Denys Vlasenko605067b2010-09-06 12:10:51 +02008518 /* (Re)insert HUSH_VERSION into env (AFTER we scanned the env!) */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008519 debug_printf_env("putenv '%s'\n", shell_ver->varstr);
8520 putenv(shell_ver->varstr);
Denys Vlasenko6db47842009-09-05 20:15:17 +02008521
8522 /* Export PWD */
8523 set_pwd_var(/*exp:*/ 1);
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008524
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01008525#if BASH_HOSTNAME_VAR
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008526 /* Set (but not export) HOSTNAME unless already set */
8527 if (!get_local_var_value("HOSTNAME")) {
8528 struct utsname uts;
8529 uname(&uts);
8530 set_local_var_from_halves("HOSTNAME", uts.nodename);
8531 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02008532 /* bash also exports SHLVL and _,
8533 * and sets (but doesn't export) the following variables:
8534 * BASH=/bin/bash
8535 * BASH_VERSINFO=([0]="3" [1]="2" [2]="0" [3]="1" [4]="release" [5]="i386-pc-linux-gnu")
8536 * BASH_VERSION='3.2.0(1)-release'
8537 * HOSTTYPE=i386
8538 * MACHTYPE=i386-pc-linux-gnu
8539 * OSTYPE=linux-gnu
Denys Vlasenkodea47882009-10-09 15:40:49 +02008540 * PPID=<NNNNN> - we also do it elsewhere
Denys Vlasenko6db47842009-09-05 20:15:17 +02008541 * EUID=<NNNNN>
8542 * UID=<NNNNN>
8543 * GROUPS=()
8544 * LINES=<NNN>
8545 * COLUMNS=<NNN>
8546 * BASH_ARGC=()
8547 * BASH_ARGV=()
8548 * BASH_LINENO=()
8549 * BASH_SOURCE=()
8550 * DIRSTACK=()
8551 * PIPESTATUS=([0]="0")
8552 * HISTFILE=/<xxx>/.bash_history
8553 * HISTFILESIZE=500
8554 * HISTSIZE=500
8555 * MAILCHECK=60
8556 * PATH=/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:.
8557 * SHELL=/bin/bash
8558 * SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor
8559 * TERM=dumb
8560 * OPTERR=1
8561 * OPTIND=1
8562 * IFS=$' \t\n'
8563 * PS1='\s-\v\$ '
8564 * PS2='> '
8565 * PS4='+ '
8566 */
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008567#endif
Denys Vlasenko6db47842009-09-05 20:15:17 +02008568
Denis Vlasenko38f63192007-01-22 09:03:07 +00008569#if ENABLE_FEATURE_EDITING
Denys Vlasenkoe45af7a2011-09-04 16:15:24 +02008570 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00008571#endif
Denys Vlasenko99862cb2010-09-12 17:34:13 +02008572
Eric Andersen94ac2442001-05-22 19:05:18 +00008573 /* Initialize some more globals to non-zero values */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00008574 cmdedit_update_prompt();
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00008575
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02008576 die_func = restore_ttypgrp_and__exit;
Denis Vlasenkoed782372009-04-10 00:45:02 +00008577
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008578 /* Shell is non-interactive at first. We need to call
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008579 * install_special_sighandlers() if we are going to execute "sh <script>",
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008580 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008581 * If we later decide that we are interactive, we run install_special_sighandlers()
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008582 * in order to intercept (more) signals.
8583 */
8584
8585 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00008586 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008587 flags = (argv[0] && argv[0][0] == '-') ? OPT_login : 0;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008588 builtin_argc = 0;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008589 while (1) {
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008590 opt = getopt(argc, argv, "+c:exinsl"
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008591#if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00008592 "<:$:R:V:"
8593# if ENABLE_HUSH_FUNCTIONS
8594 "F:"
8595# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008596#endif
8597 );
8598 if (opt <= 0)
8599 break;
Eric Andersen25f27032001-04-26 23:22:31 +00008600 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008601 case 'c':
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008602 /* Possibilities:
8603 * sh ... -c 'script'
8604 * sh ... -c 'script' ARG0 [ARG1...]
8605 * On NOMMU, if builtin_argc != 0,
Denys Vlasenko17323a62010-01-28 01:57:05 +01008606 * sh ... -c 'builtin' BARGV... "" ARG0 [ARG1...]
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008607 * "" needs to be replaced with NULL
8608 * and BARGV vector fed to builtin function.
Denys Vlasenko17323a62010-01-28 01:57:05 +01008609 * Note: the form without ARG0 never happens:
8610 * sh ... -c 'builtin' BARGV... ""
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008611 */
Denys Vlasenkodea47882009-10-09 15:40:49 +02008612 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008613 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02008614 G.root_ppid = getppid();
8615 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008616 G.global_argv = argv + optind;
8617 G.global_argc = argc - optind;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008618 if (builtin_argc) {
8619 /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */
8620 const struct built_in_command *x;
8621
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008622 install_special_sighandlers();
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008623 x = find_builtin(optarg);
8624 if (x) { /* paranoia */
8625 G.global_argc -= builtin_argc; /* skip [BARGV...] "" */
8626 G.global_argv += builtin_argc;
8627 G.global_argv[-1] = NULL; /* replace "" */
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01008628 fflush_all();
Denys Vlasenko17323a62010-01-28 01:57:05 +01008629 G.last_exitcode = x->b_function(argv + optind - 1);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008630 }
8631 goto final_return;
8632 }
8633 if (!G.global_argv[0]) {
8634 /* -c 'script' (no params): prevent empty $0 */
8635 G.global_argv--; /* points to argv[i] of 'script' */
8636 G.global_argv[0] = argv[0];
Denys Vlasenko5ae8f1c2010-05-22 06:32:11 +02008637 G.global_argc++;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008638 } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008639 install_special_sighandlers();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008640 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008641 goto final_return;
8642 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00008643 /* Well, we cannot just declare interactiveness,
8644 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008645 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008646 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00008647 case 's':
8648 /* "-s" means "read from stdin", but this is how we always
8649 * operate, so simply do nothing here. */
8650 break;
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008651 case 'l':
8652 flags |= OPT_login;
8653 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008654#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00008655 case '<': /* "big heredoc" support */
Denys Vlasenko729ecb82010-06-07 14:14:26 +02008656 full_write1_str(optarg);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00008657 _exit(0);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008658 case '$': {
8659 unsigned long long empty_trap_mask;
8660
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008661 G.root_pid = bb_strtou(optarg, &optarg, 16);
8662 optarg++;
Denys Vlasenkodea47882009-10-09 15:40:49 +02008663 G.root_ppid = bb_strtou(optarg, &optarg, 16);
8664 optarg++;
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008665 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
8666 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008667 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008668 optarg++;
8669 builtin_argc = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008670 optarg++;
8671 empty_trap_mask = bb_strtoull(optarg, &optarg, 16);
8672 if (empty_trap_mask != 0) {
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02008673 IF_HUSH_TRAP(int sig;)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008674 install_special_sighandlers();
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02008675# if ENABLE_HUSH_TRAP
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008676 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008677 for (sig = 1; sig < NSIG; sig++) {
8678 if (empty_trap_mask & (1LL << sig)) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008679 G_traps[sig] = xzalloc(1); /* == xstrdup(""); */
Denys Vlasenko0806e402011-05-12 23:06:20 +02008680 install_sighandler(sig, SIG_IGN);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008681 }
8682 }
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02008683# endif
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008684 }
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008685# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008686 optarg++;
8687 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008688# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008689 break;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008690 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008691 case 'R':
8692 case 'V':
Denys Vlasenko295fef82009-06-03 12:47:26 +02008693 set_local_var(xstrdup(optarg), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ opt == 'R');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008694 break;
Denis Vlasenkobc569742009-04-12 20:35:19 +00008695# if ENABLE_HUSH_FUNCTIONS
8696 case 'F': {
8697 struct function *funcp = new_function(optarg);
8698 /* funcp->name is already set to optarg */
8699 /* funcp->body is set to NULL. It's a special case. */
8700 funcp->body_as_string = argv[optind];
8701 optind++;
8702 break;
8703 }
8704# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008705#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008706 case 'n':
8707 case 'x':
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008708 case 'e':
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008709 if (set_mode(1, opt, NULL) == 0) /* no error */
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008710 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008711 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008712#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008713 fprintf(stderr, "Usage: sh [FILE]...\n"
8714 " or: sh -c command [args]...\n\n");
8715 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008716#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008717 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008718#endif
Eric Andersen25f27032001-04-26 23:22:31 +00008719 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008720 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008721
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008722 /* Skip options. Try "hush -l": $1 should not be "-l"! */
8723 G.global_argc = argc - (optind - 1);
8724 G.global_argv = argv + (optind - 1);
8725 G.global_argv[0] = argv[0];
8726
Denys Vlasenkodea47882009-10-09 15:40:49 +02008727 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008728 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02008729 G.root_ppid = getppid();
8730 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008731
8732 /* If we are login shell... */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008733 if (flags & OPT_login) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008734 FILE *input;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008735 debug_printf("sourcing /etc/profile\n");
8736 input = fopen_for_read("/etc/profile");
8737 if (input != NULL) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008738 remember_FILE(input);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008739 install_special_sighandlers();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008740 parse_and_run_file(input);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008741 fclose_and_forget(input);
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008742 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008743 /* bash: after sourcing /etc/profile,
8744 * tries to source (in the given order):
8745 * ~/.bash_profile, ~/.bash_login, ~/.profile,
Denys Vlasenko28a105d2009-06-01 11:26:30 +02008746 * stopping on first found. --noprofile turns this off.
Denis Vlasenkof9375282009-04-05 19:13:39 +00008747 * bash also sources ~/.bash_logout on exit.
8748 * If called as sh, skips .bash_XXX files.
8749 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008750 }
8751
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008752 if (G.global_argv[1]) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00008753 FILE *input;
8754 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008755 * "bash <script>" (which is never interactive (unless -i?))
8756 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00008757 * If called as sh, does the same but with $ENV.
Denys Vlasenko2eb0a7e2016-10-27 11:28:59 +02008758 * Also NB, per POSIX, $ENV should undergo parameter expansion.
Denis Vlasenkof9375282009-04-05 19:13:39 +00008759 */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008760 G.global_argc--;
8761 G.global_argv++;
8762 debug_printf("running script '%s'\n", G.global_argv[0]);
Denys Vlasenkob7adf7a2016-10-25 17:00:13 +02008763 xfunc_error_retval = 127; /* for "hush /does/not/exist" case */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008764 input = xfopen_for_read(G.global_argv[0]);
Denys Vlasenkob7adf7a2016-10-25 17:00:13 +02008765 xfunc_error_retval = 1;
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008766 remember_FILE(input);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008767 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00008768 parse_and_run_file(input);
8769#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008770 fclose_and_forget(input);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008771#endif
8772 goto final_return;
8773 }
8774
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008775 /* Up to here, shell was non-interactive. Now it may become one.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008776 * NB: don't forget to (re)run install_special_sighandlers() as needed.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008777 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00008778
Denys Vlasenko28a105d2009-06-01 11:26:30 +02008779 /* A shell is interactive if the '-i' flag was given,
8780 * or if all of the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00008781 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00008782 * no arguments remaining or the -s flag given
8783 * standard input is a terminal
8784 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00008785 * Refer to Posix.2, the description of the 'sh' utility.
8786 */
8787#if ENABLE_HUSH_JOB
8788 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Mike Frysinger38478a62009-05-20 04:48:06 -04008789 G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
8790 debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp);
8791 if (G_saved_tty_pgrp < 0)
8792 G_saved_tty_pgrp = 0;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008793
8794 /* try to dup stdin to high fd#, >= 255 */
Denys Vlasenko2db74612017-07-07 22:07:28 +02008795 G_interactive_fd = fcntl_F_DUPFD(STDIN_FILENO, 254);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008796 if (G_interactive_fd < 0) {
8797 /* try to dup to any fd */
8798 G_interactive_fd = dup(STDIN_FILENO);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008799 if (G_interactive_fd < 0) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008800 /* give up */
8801 G_interactive_fd = 0;
Mike Frysinger38478a62009-05-20 04:48:06 -04008802 G_saved_tty_pgrp = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00008803 }
8804 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008805// TODO: track & disallow any attempts of user
8806// to (inadvertently) close/redirect G_interactive_fd
Eric Andersen25f27032001-04-26 23:22:31 +00008807 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008808 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008809 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00008810 close_on_exec_on(G_interactive_fd);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008811
Mike Frysinger38478a62009-05-20 04:48:06 -04008812 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008813 /* If we were run as 'hush &', sleep until we are
8814 * in the foreground (tty pgrp == our pgrp).
8815 * If we get started under a job aware app (like bash),
8816 * make sure we are now in charge so we don't fight over
8817 * who gets the foreground */
8818 while (1) {
8819 pid_t shell_pgrp = getpgrp();
Mike Frysinger38478a62009-05-20 04:48:06 -04008820 G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
8821 if (G_saved_tty_pgrp == shell_pgrp)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008822 break;
8823 /* send TTIN to ourself (should stop us) */
8824 kill(- shell_pgrp, SIGTTIN);
8825 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008826 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008827
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008828 /* Install more signal handlers */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008829 install_special_sighandlers();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008830
Mike Frysinger38478a62009-05-20 04:48:06 -04008831 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008832 /* Set other signals to restore saved_tty_pgrp */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008833 install_fatal_sighandlers();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008834 /* Put ourselves in our own process group
8835 * (bash, too, does this only if ctty is available) */
8836 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
8837 /* Grab control of the terminal */
8838 tcsetpgrp(G_interactive_fd, getpid());
8839 }
Denys Vlasenko550bf5b2015-10-09 16:42:57 +02008840 enable_restore_tty_pgrp_on_exit();
Denys Vlasenko4840ae82011-09-04 15:28:03 +02008841
8842# if ENABLE_HUSH_SAVEHISTORY && MAX_HISTORY > 0
8843 {
8844 const char *hp = get_local_var_value("HISTFILE");
8845 if (!hp) {
8846 hp = get_local_var_value("HOME");
8847 if (hp)
8848 hp = concat_path_file(hp, ".hush_history");
8849 } else {
8850 hp = xstrdup(hp);
8851 }
8852 if (hp) {
8853 G.line_input_state->hist_file = hp;
Denys Vlasenko4840ae82011-09-04 15:28:03 +02008854 //set_local_var(xasprintf("HISTFILE=%s", ...));
8855 }
8856# if ENABLE_FEATURE_SH_HISTFILESIZE
8857 hp = get_local_var_value("HISTFILESIZE");
8858 G.line_input_state->max_history = size_from_HISTFILESIZE(hp);
8859# endif
8860 }
8861# endif
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008862 } else {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008863 install_special_sighandlers();
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008864 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008865#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00008866 /* No job control compiled in, only prompt/line editing */
8867 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02008868 G_interactive_fd = fcntl_F_DUPFD(STDIN_FILENO, 254);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008869 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008870 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008871 G_interactive_fd = dup(STDIN_FILENO);
8872 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008873 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008874 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008875 }
8876 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008877 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00008878 close_on_exec_on(G_interactive_fd);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008879 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008880 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00008881#else
8882 /* We have interactiveness code disabled */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008883 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00008884#endif
8885 /* bash:
8886 * if interactive but not a login shell, sources ~/.bashrc
8887 * (--norc turns this off, --rcfile <file> overrides)
8888 */
8889
8890 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Denys Vlasenkoc34c0332009-09-29 12:25:30 +02008891 /* note: ash and hush share this string */
8892 printf("\n\n%s %s\n"
8893 IF_HUSH_HELP("Enter 'help' for a list of built-in commands.\n")
8894 "\n",
8895 bb_banner,
8896 "hush - the humble shell"
8897 );
Mike Frysingerb2705e12009-03-23 08:44:02 +00008898 }
8899
Denis Vlasenkof9375282009-04-05 19:13:39 +00008900 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00008901
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008902 final_return:
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008903 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00008904}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00008905
8906
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008907/*
8908 * Built-ins
8909 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008910static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008911{
8912 return 0;
8913}
8914
Denys Vlasenko265062d2017-01-10 15:13:30 +01008915#if ENABLE_HUSH_TEST || ENABLE_HUSH_ECHO || ENABLE_HUSH_PRINTF || ENABLE_HUSH_KILL
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02008916static int run_applet_main(char **argv, int (*applet_main_func)(int argc, char **argv))
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008917{
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02008918 int argc = string_array_len(argv);
8919 return applet_main_func(argc, argv);
Mike Frysingerccb19592009-10-15 03:31:15 -04008920}
Denys Vlasenko265062d2017-01-10 15:13:30 +01008921#endif
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01008922#if ENABLE_HUSH_TEST || BASH_TEST2
Mike Frysingerccb19592009-10-15 03:31:15 -04008923static int FAST_FUNC builtin_test(char **argv)
8924{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008925 return run_applet_main(argv, test_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008926}
Denys Vlasenko265062d2017-01-10 15:13:30 +01008927#endif
Denys Vlasenko1cc68042017-01-09 17:10:04 +01008928#if ENABLE_HUSH_ECHO
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008929static int FAST_FUNC builtin_echo(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008930{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008931 return run_applet_main(argv, echo_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008932}
Denys Vlasenko1cc68042017-01-09 17:10:04 +01008933#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01008934#if ENABLE_HUSH_PRINTF
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04008935static int FAST_FUNC builtin_printf(char **argv)
8936{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008937 return run_applet_main(argv, printf_main);
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04008938}
8939#endif
8940
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01008941#if ENABLE_HUSH_HELP
8942static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM)
8943{
8944 const struct built_in_command *x;
8945
8946 printf(
8947 "Built-in commands:\n"
8948 "------------------\n");
8949 for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) {
8950 if (x->b_descr)
8951 printf("%-10s%s\n", x->b_cmd, x->b_descr);
8952 }
8953 return EXIT_SUCCESS;
8954}
8955#endif
8956
8957#if MAX_HISTORY && ENABLE_FEATURE_EDITING
8958static int FAST_FUNC builtin_history(char **argv UNUSED_PARAM)
8959{
8960 show_history(G.line_input_state);
8961 return EXIT_SUCCESS;
8962}
8963#endif
8964
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008965static char **skip_dash_dash(char **argv)
8966{
8967 argv++;
8968 if (argv[0] && argv[0][0] == '-' && argv[0][1] == '-' && argv[0][2] == '\0')
8969 argv++;
8970 return argv;
8971}
8972
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008973static int FAST_FUNC builtin_cd(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008974{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008975 const char *newdir;
8976
8977 argv = skip_dash_dash(argv);
8978 newdir = argv[0];
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008979 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008980 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00008981 * bash says "bash: cd: HOME not set" and does nothing
8982 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008983 */
Denys Vlasenko90a99042009-09-06 02:36:23 +02008984 const char *home = get_local_var_value("HOME");
8985 newdir = home ? home : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00008986 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008987 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008988 /* Mimic bash message exactly */
8989 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008990 return EXIT_FAILURE;
8991 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02008992 /* Read current dir (get_cwd(1) is inside) and set PWD.
8993 * Note: do not enforce exporting. If PWD was unset or unexported,
8994 * set it again, but do not export. bash does the same.
8995 */
8996 set_pwd_var(/*exp:*/ 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008997 return EXIT_SUCCESS;
8998}
8999
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009000static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM)
9001{
9002 puts(get_cwd(0));
9003 return EXIT_SUCCESS;
9004}
9005
9006static int FAST_FUNC builtin_eval(char **argv)
9007{
9008 int rcode = EXIT_SUCCESS;
9009
9010 argv = skip_dash_dash(argv);
9011 if (*argv) {
9012 char *str = expand_strvec_to_string(argv);
9013 /* bash:
9014 * eval "echo Hi; done" ("done" is syntax error):
9015 * "echo Hi" will not execute too.
9016 */
9017 parse_and_run_string(str);
9018 free(str);
9019 rcode = G.last_exitcode;
9020 }
9021 return rcode;
9022}
9023
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009024static int FAST_FUNC builtin_exec(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009025{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009026 argv = skip_dash_dash(argv);
9027 if (argv[0] == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009028 return EXIT_SUCCESS; /* bash does this */
Denys Vlasenkof37eb392009-10-18 11:46:35 +02009029
Denys Vlasenkof37eb392009-10-18 11:46:35 +02009030 /* Careful: we can end up here after [v]fork. Do not restore
9031 * tty pgrp then, only top-level shell process does that */
9032 if (G_saved_tty_pgrp && getpid() == G.root_pid)
9033 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
9034
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02009035 /* TODO: if exec fails, bash does NOT exit! We do.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009036 * We'll need to undo trap cleanup (it's inside execvp_or_die)
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02009037 * and tcsetpgrp, and this is inherently racy.
9038 */
9039 execvp_or_die(argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009040}
9041
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009042static int FAST_FUNC builtin_exit(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009043{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00009044 debug_printf_exec("%s()\n", __func__);
Denis Vlasenko40e84372009-04-18 11:23:38 +00009045
9046 /* interactive bash:
9047 * # trap "echo EEE" EXIT
9048 * # exit
9049 * exit
9050 * There are stopped jobs.
9051 * (if there are _stopped_ jobs, running ones don't count)
9052 * # exit
9053 * exit
Denys Vlasenko6830ade2013-01-15 13:58:01 +01009054 * EEE (then bash exits)
Denis Vlasenko40e84372009-04-18 11:23:38 +00009055 *
Denys Vlasenkoa110c902010-09-12 15:38:04 +02009056 * TODO: we can use G.exiting = -1 as indicator "last cmd was exit"
Denis Vlasenko40e84372009-04-18 11:23:38 +00009057 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00009058
9059 /* note: EXIT trap is run by hush_exit */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009060 argv = skip_dash_dash(argv);
9061 if (argv[0] == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00009062 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009063 /* mimic bash: exit 123abc == exit 255 + error msg */
9064 xfunc_error_retval = 255;
9065 /* bash: exit -2 == exit 254, no error msg */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009066 hush_exit(xatoi(argv[0]) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009067}
9068
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009069#if ENABLE_HUSH_TYPE
9070/* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */
9071static int FAST_FUNC builtin_type(char **argv)
9072{
9073 int ret = EXIT_SUCCESS;
9074
9075 while (*++argv) {
9076 const char *type;
9077 char *path = NULL;
9078
9079 if (0) {} /* make conditional compile easier below */
9080 /*else if (find_alias(*argv))
9081 type = "an alias";*/
9082#if ENABLE_HUSH_FUNCTIONS
9083 else if (find_function(*argv))
9084 type = "a function";
9085#endif
9086 else if (find_builtin(*argv))
9087 type = "a shell builtin";
9088 else if ((path = find_in_path(*argv)) != NULL)
9089 type = path;
9090 else {
9091 bb_error_msg("type: %s: not found", *argv);
9092 ret = EXIT_FAILURE;
9093 continue;
9094 }
9095
9096 printf("%s is %s\n", *argv, type);
9097 free(path);
9098 }
9099
9100 return ret;
9101}
9102#endif
9103
9104#if ENABLE_HUSH_READ
9105/* Interruptibility of read builtin in bash
9106 * (tested on bash-4.2.8 by sending signals (not by ^C)):
9107 *
9108 * Empty trap makes read ignore corresponding signal, for any signal.
9109 *
9110 * SIGINT:
9111 * - terminates non-interactive shell;
9112 * - interrupts read in interactive shell;
9113 * if it has non-empty trap:
9114 * - executes trap and returns to command prompt in interactive shell;
9115 * - executes trap and returns to read in non-interactive shell;
9116 * SIGTERM:
9117 * - is ignored (does not interrupt) read in interactive shell;
9118 * - terminates non-interactive shell;
9119 * if it has non-empty trap:
9120 * - executes trap and returns to read;
9121 * SIGHUP:
9122 * - terminates shell (regardless of interactivity);
9123 * if it has non-empty trap:
9124 * - executes trap and returns to read;
Denys Vlasenkof5470412017-05-22 19:34:45 +02009125 * SIGCHLD from children:
9126 * - does not interrupt read regardless of interactivity:
9127 * try: sleep 1 & read x; echo $x
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009128 */
9129static int FAST_FUNC builtin_read(char **argv)
9130{
9131 const char *r;
9132 char *opt_n = NULL;
9133 char *opt_p = NULL;
9134 char *opt_t = NULL;
9135 char *opt_u = NULL;
9136 const char *ifs;
9137 int read_flags;
9138
9139 /* "!": do not abort on errors.
9140 * Option string must start with "sr" to match BUILTIN_READ_xxx
9141 */
9142 read_flags = getopt32(argv, "!srn:p:t:u:", &opt_n, &opt_p, &opt_t, &opt_u);
9143 if (read_flags == (uint32_t)-1)
9144 return EXIT_FAILURE;
9145 argv += optind;
9146 ifs = get_local_var_value("IFS"); /* can be NULL */
9147
9148 again:
9149 r = shell_builtin_read(set_local_var_from_halves,
9150 argv,
9151 ifs,
9152 read_flags,
9153 opt_n,
9154 opt_p,
9155 opt_t,
9156 opt_u
9157 );
9158
9159 if ((uintptr_t)r == 1 && errno == EINTR) {
9160 unsigned sig = check_and_run_traps();
Denys Vlasenkof5470412017-05-22 19:34:45 +02009161 if (sig != SIGINT)
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009162 goto again;
9163 }
9164
9165 if ((uintptr_t)r > 1) {
9166 bb_error_msg("%s", r);
9167 r = (char*)(uintptr_t)1;
9168 }
9169
9170 return (uintptr_t)r;
9171}
9172#endif
9173
9174#if ENABLE_HUSH_UMASK
9175static int FAST_FUNC builtin_umask(char **argv)
9176{
9177 int rc;
9178 mode_t mask;
9179
9180 rc = 1;
9181 mask = umask(0);
9182 argv = skip_dash_dash(argv);
9183 if (argv[0]) {
9184 mode_t old_mask = mask;
9185
9186 /* numeric umasks are taken as-is */
9187 /* symbolic umasks are inverted: "umask a=rx" calls umask(222) */
9188 if (!isdigit(argv[0][0]))
9189 mask ^= 0777;
9190 mask = bb_parse_mode(argv[0], mask);
9191 if (!isdigit(argv[0][0]))
9192 mask ^= 0777;
9193 if ((unsigned)mask > 0777) {
9194 mask = old_mask;
9195 /* bash messages:
9196 * bash: umask: 'q': invalid symbolic mode operator
9197 * bash: umask: 999: octal number out of range
9198 */
9199 bb_error_msg("%s: invalid mode '%s'", "umask", argv[0]);
9200 rc = 0;
9201 }
9202 } else {
9203 /* Mimic bash */
9204 printf("%04o\n", (unsigned) mask);
9205 /* fall through and restore mask which we set to 0 */
9206 }
9207 umask(mask);
9208
9209 return !rc; /* rc != 0 - success */
9210}
9211#endif
9212
Denys Vlasenko41ade052017-01-08 18:56:24 +01009213#if ENABLE_HUSH_EXPORT || ENABLE_HUSH_TRAP
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009214static void print_escaped(const char *s)
9215{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009216 if (*s == '\'')
9217 goto squote;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009218 do {
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009219 const char *p = strchrnul(s, '\'');
9220 /* print 'xxxx', possibly just '' */
9221 printf("'%.*s'", (int)(p - s), s);
9222 if (*p == '\0')
9223 break;
9224 s = p;
9225 squote:
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009226 /* s points to '; print "'''...'''" */
9227 putchar('"');
9228 do putchar('\''); while (*++s == '\'');
9229 putchar('"');
9230 } while (*s);
9231}
Denys Vlasenko41ade052017-01-08 18:56:24 +01009232#endif
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009233
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009234#if ENABLE_HUSH_EXPORT || ENABLE_HUSH_LOCAL
9235# if !ENABLE_HUSH_LOCAL
Denys Vlasenko295fef82009-06-03 12:47:26 +02009236#define helper_export_local(argv, exp, lvl) \
9237 helper_export_local(argv, exp)
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009238# endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02009239static void helper_export_local(char **argv, int exp, int lvl)
9240{
9241 do {
9242 char *name = *argv;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009243 char *name_end = strchrnul(name, '=');
Denys Vlasenko295fef82009-06-03 12:47:26 +02009244
9245 /* So far we do not check that name is valid (TODO?) */
9246
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009247 if (*name_end == '\0') {
9248 struct variable *var, **vpp;
Denys Vlasenko295fef82009-06-03 12:47:26 +02009249
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009250 vpp = get_ptr_to_local_var(name, name_end - name);
9251 var = vpp ? *vpp : NULL;
9252
Denys Vlasenko295fef82009-06-03 12:47:26 +02009253 if (exp == -1) { /* unexporting? */
9254 /* export -n NAME (without =VALUE) */
9255 if (var) {
9256 var->flg_export = 0;
9257 debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
9258 unsetenv(name);
9259 } /* else: export -n NOT_EXISTING_VAR: no-op */
9260 continue;
9261 }
9262 if (exp == 1) { /* exporting? */
9263 /* export NAME (without =VALUE) */
9264 if (var) {
9265 var->flg_export = 1;
9266 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
9267 putenv(var->varstr);
9268 continue;
9269 }
9270 }
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009271# if ENABLE_HUSH_LOCAL
Denys Vlasenko61508d92016-10-02 21:12:02 +02009272 if (exp == 0 /* local? */
9273 && var && var->func_nest_level == lvl
9274 ) {
9275 /* "local x=abc; ...; local x" - ignore second local decl */
Denys Vlasenko80729a42016-10-02 22:33:15 +02009276 continue;
Denys Vlasenko61508d92016-10-02 21:12:02 +02009277 }
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009278# endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02009279 /* Exporting non-existing variable.
9280 * bash does not put it in environment,
9281 * but remembers that it is exported,
9282 * and does put it in env when it is set later.
9283 * We just set it to "" and export. */
9284 /* Or, it's "local NAME" (without =VALUE).
9285 * bash sets the value to "". */
9286 name = xasprintf("%s=", name);
9287 } else {
9288 /* (Un)exporting/making local NAME=VALUE */
9289 name = xstrdup(name);
9290 }
9291 set_local_var(name, /*exp:*/ exp, /*lvl:*/ lvl, /*ro:*/ 0);
9292 } while (*++argv);
9293}
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009294#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02009295
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009296#if ENABLE_HUSH_EXPORT
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009297static int FAST_FUNC builtin_export(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009298{
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00009299 unsigned opt_unexport;
9300
Denys Vlasenkodf5131c2009-06-07 16:04:17 +02009301#if ENABLE_HUSH_EXPORT_N
9302 /* "!": do not abort on errors */
9303 opt_unexport = getopt32(argv, "!n");
9304 if (opt_unexport == (uint32_t)-1)
9305 return EXIT_FAILURE;
9306 argv += optind;
9307#else
9308 opt_unexport = 0;
9309 argv++;
9310#endif
9311
9312 if (argv[0] == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009313 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009314 if (e) {
9315 while (*e) {
9316#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009317 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009318#else
9319 /* ash emits: export VAR='VAL'
9320 * bash: declare -x VAR="VAL"
9321 * we follow ash example */
9322 const char *s = *e++;
9323 const char *p = strchr(s, '=');
9324
9325 if (!p) /* wtf? take next variable */
9326 continue;
9327 /* export var= */
9328 printf("export %.*s", (int)(p - s) + 1, s);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009329 print_escaped(p + 1);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009330 putchar('\n');
9331#endif
9332 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01009333 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009334 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009335 return EXIT_SUCCESS;
9336 }
9337
Denys Vlasenko295fef82009-06-03 12:47:26 +02009338 helper_export_local(argv, (opt_unexport ? -1 : 1), 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009339
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009340 return EXIT_SUCCESS;
9341}
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009342#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009343
Denys Vlasenko295fef82009-06-03 12:47:26 +02009344#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009345static int FAST_FUNC builtin_local(char **argv)
Denys Vlasenko295fef82009-06-03 12:47:26 +02009346{
9347 if (G.func_nest_level == 0) {
9348 bb_error_msg("%s: not in a function", argv[0]);
9349 return EXIT_FAILURE; /* bash compat */
9350 }
9351 helper_export_local(argv, 0, G.func_nest_level);
9352 return EXIT_SUCCESS;
9353}
9354#endif
9355
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009356#if ENABLE_HUSH_UNSET
Denys Vlasenko61508d92016-10-02 21:12:02 +02009357/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
9358static int FAST_FUNC builtin_unset(char **argv)
9359{
9360 int ret;
9361 unsigned opts;
9362
9363 /* "!": do not abort on errors */
9364 /* "+": stop at 1st non-option */
9365 opts = getopt32(argv, "!+vf");
9366 if (opts == (unsigned)-1)
9367 return EXIT_FAILURE;
9368 if (opts == 3) {
9369 bb_error_msg("unset: -v and -f are exclusive");
9370 return EXIT_FAILURE;
9371 }
9372 argv += optind;
9373
9374 ret = EXIT_SUCCESS;
9375 while (*argv) {
9376 if (!(opts & 2)) { /* not -f */
9377 if (unset_local_var(*argv)) {
9378 /* unset <nonexistent_var> doesn't fail.
9379 * Error is when one tries to unset RO var.
9380 * Message was printed by unset_local_var. */
9381 ret = EXIT_FAILURE;
9382 }
9383 }
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009384# if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko61508d92016-10-02 21:12:02 +02009385 else {
9386 unset_func(*argv);
9387 }
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009388# endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009389 argv++;
9390 }
9391 return ret;
9392}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009393#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009394
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009395#if ENABLE_HUSH_SET
Denys Vlasenko61508d92016-10-02 21:12:02 +02009396/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
9397 * built-in 'set' handler
9398 * SUSv3 says:
9399 * set [-abCefhmnuvx] [-o option] [argument...]
9400 * set [+abCefhmnuvx] [+o option] [argument...]
9401 * set -- [argument...]
9402 * set -o
9403 * set +o
9404 * Implementations shall support the options in both their hyphen and
9405 * plus-sign forms. These options can also be specified as options to sh.
9406 * Examples:
9407 * Write out all variables and their values: set
9408 * Set $1, $2, and $3 and set "$#" to 3: set c a b
9409 * Turn on the -x and -v options: set -xv
9410 * Unset all positional parameters: set --
9411 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
9412 * Set the positional parameters to the expansion of x, even if x expands
9413 * with a leading '-' or '+': set -- $x
9414 *
9415 * So far, we only support "set -- [argument...]" and some of the short names.
9416 */
9417static int FAST_FUNC builtin_set(char **argv)
9418{
9419 int n;
9420 char **pp, **g_argv;
9421 char *arg = *++argv;
9422
9423 if (arg == NULL) {
9424 struct variable *e;
9425 for (e = G.top_var; e; e = e->next)
9426 puts(e->varstr);
9427 return EXIT_SUCCESS;
9428 }
9429
9430 do {
9431 if (strcmp(arg, "--") == 0) {
9432 ++argv;
9433 goto set_argv;
9434 }
9435 if (arg[0] != '+' && arg[0] != '-')
9436 break;
9437 for (n = 1; arg[n]; ++n) {
9438 if (set_mode((arg[0] == '-'), arg[n], argv[1]))
9439 goto error;
9440 if (arg[n] == 'o' && argv[1])
9441 argv++;
9442 }
9443 } while ((arg = *++argv) != NULL);
9444 /* Now argv[0] is 1st argument */
9445
9446 if (arg == NULL)
9447 return EXIT_SUCCESS;
9448 set_argv:
9449
9450 /* NB: G.global_argv[0] ($0) is never freed/changed */
9451 g_argv = G.global_argv;
9452 if (G.global_args_malloced) {
9453 pp = g_argv;
9454 while (*++pp)
9455 free(*pp);
9456 g_argv[1] = NULL;
9457 } else {
9458 G.global_args_malloced = 1;
9459 pp = xzalloc(sizeof(pp[0]) * 2);
9460 pp[0] = g_argv[0]; /* retain $0 */
9461 g_argv = pp;
9462 }
9463 /* This realloc's G.global_argv */
9464 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
9465
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02009466 G.global_argc = 1 + string_array_len(pp + 1);
Denys Vlasenko61508d92016-10-02 21:12:02 +02009467
9468 return EXIT_SUCCESS;
9469
9470 /* Nothing known, so abort */
9471 error:
9472 bb_error_msg("set: %s: invalid option", arg);
9473 return EXIT_FAILURE;
9474}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009475#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009476
9477static int FAST_FUNC builtin_shift(char **argv)
9478{
9479 int n = 1;
9480 argv = skip_dash_dash(argv);
9481 if (argv[0]) {
Denys Vlasenkoe59591a2017-07-06 20:12:44 +02009482 n = bb_strtou(argv[0], NULL, 10);
9483 if (errno || n < 0) {
9484 /* shared string with ash.c */
9485 bb_error_msg("Illegal number: %s", argv[0]);
9486 /*
9487 * ash aborts in this case.
9488 * bash prints error message and set $? to 1.
9489 * Interestingly, for "shift 99999" bash does not
9490 * print error message, but does set $? to 1
9491 * (and does no shifting at all).
9492 */
9493 }
Denys Vlasenko61508d92016-10-02 21:12:02 +02009494 }
9495 if (n >= 0 && n < G.global_argc) {
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01009496 if (G_global_args_malloced) {
Denys Vlasenko61508d92016-10-02 21:12:02 +02009497 int m = 1;
9498 while (m <= n)
9499 free(G.global_argv[m++]);
9500 }
9501 G.global_argc -= n;
9502 memmove(&G.global_argv[1], &G.global_argv[n+1],
9503 G.global_argc * sizeof(G.global_argv[0]));
9504 return EXIT_SUCCESS;
9505 }
9506 return EXIT_FAILURE;
9507}
9508
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009509static int FAST_FUNC builtin_source(char **argv)
Denys Vlasenko61508d92016-10-02 21:12:02 +02009510{
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009511 char *arg_path, *filename;
9512 FILE *input;
9513 save_arg_t sv;
9514 char *args_need_save;
9515#if ENABLE_HUSH_FUNCTIONS
9516 smallint sv_flg;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009517#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009518
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009519 argv = skip_dash_dash(argv);
9520 filename = argv[0];
9521 if (!filename) {
9522 /* bash says: "bash: .: filename argument required" */
9523 return 2; /* bash compat */
9524 }
9525 arg_path = NULL;
9526 if (!strchr(filename, '/')) {
9527 arg_path = find_in_path(filename);
9528 if (arg_path)
9529 filename = arg_path;
9530 }
9531 input = remember_FILE(fopen_or_warn(filename, "r"));
9532 free(arg_path);
9533 if (!input) {
9534 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
9535 /* POSIX: non-interactive shell should abort here,
9536 * not merely fail. So far no one complained :)
9537 */
9538 return EXIT_FAILURE;
9539 }
9540
9541#if ENABLE_HUSH_FUNCTIONS
9542 sv_flg = G_flag_return_in_progress;
9543 /* "we are inside sourced file, ok to use return" */
9544 G_flag_return_in_progress = -1;
9545#endif
9546 args_need_save = argv[1]; /* used as a boolean variable */
9547 if (args_need_save)
9548 save_and_replace_G_args(&sv, argv);
9549
9550 /* "false; . ./empty_line; echo Zero:$?" should print 0 */
9551 G.last_exitcode = 0;
9552 parse_and_run_file(input);
9553 fclose_and_forget(input);
9554
9555 if (args_need_save) /* can't use argv[1] instead: "shift" can mangle it */
9556 restore_G_args(&sv, argv);
9557#if ENABLE_HUSH_FUNCTIONS
9558 G_flag_return_in_progress = sv_flg;
9559#endif
9560
9561 return G.last_exitcode;
9562}
9563
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009564#if ENABLE_HUSH_TRAP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009565static int FAST_FUNC builtin_trap(char **argv)
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009566{
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009567 int sig;
9568 char *new_cmd;
9569
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009570 if (!G_traps)
9571 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009572
9573 argv++;
9574 if (!*argv) {
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00009575 int i;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009576 /* No args: print all trapped */
9577 for (i = 0; i < NSIG; ++i) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009578 if (G_traps[i]) {
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009579 printf("trap -- ");
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009580 print_escaped(G_traps[i]);
Denys Vlasenkoe74aaf92009-09-27 02:05:45 +02009581 /* note: bash adds "SIG", but only if invoked
9582 * as "bash". If called as "sh", or if set -o posix,
9583 * then it prints short signal names.
9584 * We are printing short names: */
9585 printf(" %s\n", get_signame(i));
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009586 }
9587 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01009588 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009589 return EXIT_SUCCESS;
9590 }
9591
9592 new_cmd = NULL;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009593 /* If first arg is a number: reset all specified signals */
9594 sig = bb_strtou(*argv, NULL, 10);
9595 if (errno == 0) {
9596 int ret;
9597 process_sig_list:
9598 ret = EXIT_SUCCESS;
9599 while (*argv) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009600 sighandler_t handler;
9601
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009602 sig = get_signum(*argv++);
9603 if (sig < 0 || sig >= NSIG) {
9604 ret = EXIT_FAILURE;
9605 /* Mimic bash message exactly */
Denys Vlasenko74562982017-07-06 18:40:45 +02009606 bb_error_msg("trap: %s: invalid signal specification", argv[-1]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009607 continue;
9608 }
9609
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009610 free(G_traps[sig]);
9611 G_traps[sig] = xstrdup(new_cmd);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009612
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01009613 debug_printf("trap: setting SIG%s (%i) to '%s'\n",
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009614 get_signame(sig), sig, G_traps[sig]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009615
9616 /* There is no signal for 0 (EXIT) */
9617 if (sig == 0)
9618 continue;
9619
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009620 if (new_cmd)
9621 handler = (new_cmd[0] ? record_pending_signo : SIG_IGN);
9622 else
9623 /* We are removing trap handler */
9624 handler = pick_sighandler(sig);
Denys Vlasenko0806e402011-05-12 23:06:20 +02009625 install_sighandler(sig, handler);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009626 }
9627 return ret;
9628 }
9629
9630 if (!argv[1]) { /* no second arg */
9631 bb_error_msg("trap: invalid arguments");
9632 return EXIT_FAILURE;
9633 }
9634
9635 /* First arg is "-": reset all specified to default */
9636 /* First arg is "--": skip it, the rest is "handler SIGs..." */
9637 /* Everything else: set arg as signal handler
9638 * (includes "" case, which ignores signal) */
9639 if (argv[0][0] == '-') {
9640 if (argv[0][1] == '\0') { /* "-" */
9641 /* new_cmd remains NULL: "reset these sigs" */
9642 goto reset_traps;
9643 }
9644 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
9645 argv++;
9646 }
9647 /* else: "-something", no special meaning */
9648 }
9649 new_cmd = *argv;
9650 reset_traps:
9651 argv++;
9652 goto process_sig_list;
9653}
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009654#endif
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009655
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009656#if ENABLE_HUSH_JOB
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009657static struct pipe *parse_jobspec(const char *str)
9658{
9659 struct pipe *pi;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009660 unsigned jobnum;
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009661
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009662 if (sscanf(str, "%%%u", &jobnum) != 1) {
9663 if (str[0] != '%'
9664 || (str[1] != '%' && str[1] != '+' && str[1] != '\0')
9665 ) {
9666 bb_error_msg("bad argument '%s'", str);
9667 return NULL;
9668 }
9669 /* It is "%%", "%+" or "%" - current job */
9670 jobnum = G.last_jobid;
9671 if (jobnum == 0) {
9672 bb_error_msg("no current job");
9673 return NULL;
9674 }
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009675 }
9676 for (pi = G.job_list; pi; pi = pi->next) {
9677 if (pi->jobid == jobnum) {
9678 return pi;
9679 }
9680 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009681 bb_error_msg("%u: no such job", jobnum);
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009682 return NULL;
9683}
9684
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009685static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM)
9686{
9687 struct pipe *job;
9688 const char *status_string;
9689
9690 checkjobs(NULL, 0 /*(no pid to wait for)*/);
9691 for (job = G.job_list; job; job = job->next) {
9692 if (job->alive_cmds == job->stopped_cmds)
9693 status_string = "Stopped";
9694 else
9695 status_string = "Running";
9696
9697 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
9698 }
9699 return EXIT_SUCCESS;
9700}
9701
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009702/* built-in 'fg' and 'bg' handler */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009703static int FAST_FUNC builtin_fg_bg(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009704{
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009705 int i;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009706 struct pipe *pi;
9707
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009708 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009709 return EXIT_FAILURE;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009710
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009711 /* If they gave us no args, assume they want the last backgrounded task */
9712 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00009713 for (pi = G.job_list; pi; pi = pi->next) {
9714 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009715 goto found;
9716 }
9717 }
9718 bb_error_msg("%s: no current job", argv[0]);
9719 return EXIT_FAILURE;
9720 }
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009721
9722 pi = parse_jobspec(argv[1]);
9723 if (!pi)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009724 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009725 found:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00009726 /* TODO: bash prints a string representation
9727 * of job being foregrounded (like "sleep 1 | cat") */
Mike Frysinger38478a62009-05-20 04:48:06 -04009728 if (argv[0][0] == 'f' && G_saved_tty_pgrp) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009729 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009730 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009731 }
9732
9733 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00009734 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
9735 for (i = 0; i < pi->num_cmds; i++) {
9736 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009737 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00009738 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009739
9740 i = kill(- pi->pgrp, SIGCONT);
9741 if (i < 0) {
9742 if (errno == ESRCH) {
Denys Vlasenko16096292017-07-10 10:00:28 +02009743 delete_finished_job(pi);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009744 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009745 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00009746 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009747 }
9748
Denis Vlasenko34d4d892009-04-04 20:24:37 +00009749 if (argv[0][0] == 'f') {
Denys Vlasenko16096292017-07-10 10:00:28 +02009750 remove_job_from_table(pi); /* FG job shouldn't be in job table */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009751 return checkjobs_and_fg_shell(pi);
9752 }
9753 return EXIT_SUCCESS;
9754}
9755#endif
9756
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009757#if ENABLE_HUSH_KILL
9758static int FAST_FUNC builtin_kill(char **argv)
9759{
9760 int ret = 0;
9761
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009762# if ENABLE_HUSH_JOB
9763 if (argv[1] && strcmp(argv[1], "-l") != 0) {
9764 int i = 1;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009765
9766 do {
9767 struct pipe *pi;
9768 char *dst;
9769 int j, n;
9770
9771 if (argv[i][0] != '%')
9772 continue;
9773 /*
9774 * "kill %N" - job kill
9775 * Converting to pgrp / pid kill
9776 */
9777 pi = parse_jobspec(argv[i]);
9778 if (!pi) {
9779 /* Eat bad jobspec */
9780 j = i;
9781 do {
9782 j++;
9783 argv[j - 1] = argv[j];
9784 } while (argv[j]);
9785 ret = 1;
9786 i--;
9787 continue;
9788 }
9789 /*
9790 * In jobs started under job control, we signal
9791 * entire process group by kill -PGRP_ID.
9792 * This happens, f.e., in interactive shell.
9793 *
9794 * Otherwise, we signal each child via
9795 * kill PID1 PID2 PID3.
9796 * Testcases:
9797 * sh -c 'sleep 1|sleep 1 & kill %1'
9798 * sh -c 'true|sleep 2 & sleep 1; kill %1'
9799 * sh -c 'true|sleep 1 & sleep 2; kill %1'
9800 */
Denys Vlasenko5362cc42017-01-09 05:57:13 +01009801 n = G_interactive_fd ? 1 : pi->num_cmds;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009802 dst = alloca(n * sizeof(int)*4);
9803 argv[i] = dst;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009804 if (G_interactive_fd)
9805 dst += sprintf(dst, " -%u", (int)pi->pgrp);
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009806 else for (j = 0; j < n; j++) {
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009807 struct command *cmd = &pi->cmds[j];
9808 /* Skip exited members of the job */
9809 if (cmd->pid == 0)
9810 continue;
9811 /*
9812 * kill_main has matching code to expect
9813 * leading space. Needed to not confuse
9814 * negative pids with "kill -SIGNAL_NO" syntax
9815 */
9816 dst += sprintf(dst, " %u", (int)cmd->pid);
9817 }
9818 *dst = '\0';
9819 } while (argv[++i]);
9820 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009821# endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009822
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009823 if (argv[1] || ret == 0) {
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009824 ret = run_applet_main(argv, kill_main);
9825 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009826 /* else: ret = 1, "kill %bad_jobspec" case */
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009827 return ret;
9828}
9829#endif
9830
9831#if ENABLE_HUSH_WAIT
Mike Frysinger56bdea12009-03-28 20:01:58 +00009832/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009833#if !ENABLE_HUSH_JOB
9834# define wait_for_child_or_signal(pipe,pid) wait_for_child_or_signal(pid)
9835#endif
9836static int wait_for_child_or_signal(struct pipe *waitfor_pipe, pid_t waitfor_pid)
Denys Vlasenko7e675362016-10-28 21:57:31 +02009837{
9838 int ret = 0;
9839 for (;;) {
9840 int sig;
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009841 sigset_t oldset;
Denys Vlasenko7e675362016-10-28 21:57:31 +02009842
Denys Vlasenko830ea352016-11-08 04:59:11 +01009843 if (!sigisemptyset(&G.pending_set))
9844 goto check_sig;
9845
Denys Vlasenko7e675362016-10-28 21:57:31 +02009846 /* waitpid is not interruptible by SA_RESTARTed
9847 * signals which we use. Thus, this ugly dance:
9848 */
9849
9850 /* Make sure possible SIGCHLD is stored in kernel's
9851 * pending signal mask before we call waitpid.
9852 * Or else we may race with SIGCHLD, lose it,
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009853 * and get stuck in sigsuspend...
Denys Vlasenko7e675362016-10-28 21:57:31 +02009854 */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009855 sigfillset(&oldset); /* block all signals, remember old set */
9856 sigprocmask(SIG_SETMASK, &oldset, &oldset);
Denys Vlasenko7e675362016-10-28 21:57:31 +02009857
9858 if (!sigisemptyset(&G.pending_set)) {
9859 /* Crap! we raced with some signal! */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009860 goto restore;
9861 }
9862
9863 /*errno = 0; - checkjobs does this */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009864/* Can't pass waitfor_pipe into checkjobs(): it won't be interruptible */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009865 ret = checkjobs(NULL, waitfor_pid); /* waitpid(WNOHANG) inside */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009866 debug_printf_exec("checkjobs:%d\n", ret);
9867#if ENABLE_HUSH_JOB
9868 if (waitfor_pipe) {
9869 int rcode = job_exited_or_stopped(waitfor_pipe);
9870 debug_printf_exec("job_exited_or_stopped:%d\n", rcode);
9871 if (rcode >= 0) {
9872 ret = rcode;
9873 sigprocmask(SIG_SETMASK, &oldset, NULL);
9874 break;
9875 }
9876 }
9877#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02009878 /* if ECHILD, there are no children (ret is -1 or 0) */
9879 /* if ret == 0, no children changed state */
9880 /* if ret != 0, it's exitcode+1 of exited waitfor_pid child */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009881 if (errno == ECHILD || ret) {
9882 ret--;
9883 if (ret < 0) /* if ECHILD, may need to fix "ret" */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009884 ret = 0;
9885 sigprocmask(SIG_SETMASK, &oldset, NULL);
9886 break;
9887 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02009888 /* Wait for SIGCHLD or any other signal */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009889 /* It is vitally important for sigsuspend that SIGCHLD has non-DFL handler! */
9890 /* Note: sigsuspend invokes signal handler */
9891 sigsuspend(&oldset);
9892 restore:
9893 sigprocmask(SIG_SETMASK, &oldset, NULL);
Denys Vlasenko830ea352016-11-08 04:59:11 +01009894 check_sig:
Denys Vlasenko7e675362016-10-28 21:57:31 +02009895 /* So, did we get a signal? */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009896 sig = check_and_run_traps();
9897 if (sig /*&& sig != SIGCHLD - always true */) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02009898 ret = 128 + sig;
9899 break;
9900 }
9901 /* SIGCHLD, or no signal, or ignored one, such as SIGQUIT. Repeat */
9902 }
9903 return ret;
9904}
9905
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009906static int FAST_FUNC builtin_wait(char **argv)
Mike Frysinger56bdea12009-03-28 20:01:58 +00009907{
Denys Vlasenko7e675362016-10-28 21:57:31 +02009908 int ret;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009909 int status;
Mike Frysinger56bdea12009-03-28 20:01:58 +00009910
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009911 argv = skip_dash_dash(argv);
9912 if (argv[0] == NULL) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +00009913 /* Don't care about wait results */
9914 /* Note 1: must wait until there are no more children */
9915 /* Note 2: must be interruptible */
9916 /* Examples:
9917 * $ sleep 3 & sleep 6 & wait
9918 * [1] 30934 sleep 3
9919 * [2] 30935 sleep 6
9920 * [1] Done sleep 3
9921 * [2] Done sleep 6
9922 * $ sleep 3 & sleep 6 & wait
9923 * [1] 30936 sleep 3
9924 * [2] 30937 sleep 6
9925 * [1] Done sleep 3
9926 * ^C <-- after ~4 sec from keyboard
9927 * $
9928 */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009929 return wait_for_child_or_signal(NULL, 0 /*(no job and no pid to wait for)*/);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00009930 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00009931
Denys Vlasenko7e675362016-10-28 21:57:31 +02009932 do {
Denis Vlasenkod5762932009-03-31 11:22:57 +00009933 pid_t pid = bb_strtou(*argv, NULL, 10);
Denys Vlasenko7e675362016-10-28 21:57:31 +02009934 if (errno || pid <= 0) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009935#if ENABLE_HUSH_JOB
9936 if (argv[0][0] == '%') {
Denys Vlasenko02affb42016-11-08 00:59:29 +01009937 struct pipe *wait_pipe;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009938 ret = 127; /* bash compat for bad jobspecs */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009939 wait_pipe = parse_jobspec(*argv);
9940 if (wait_pipe) {
Denys Vlasenko02affb42016-11-08 00:59:29 +01009941 ret = job_exited_or_stopped(wait_pipe);
9942 if (ret < 0)
9943 ret = wait_for_child_or_signal(wait_pipe, 0);
Denys Vlasenko13102632017-07-08 00:24:32 +02009944//bash immediately deletes finished jobs from job table only in interactive mode,
Denys Vlasenko9e55a152017-07-10 10:01:12 +02009945//we _always_ delete them at once. If we'd start keeping some dead jobs, this
9946//(and more) would be necessary to avoid accumulating dead jobs:
Denys Vlasenko13102632017-07-08 00:24:32 +02009947# if 0
9948 else {
9949 if (!wait_pipe->alive_cmds)
Denys Vlasenko16096292017-07-10 10:00:28 +02009950 delete_finished_job(wait_pipe);
Denys Vlasenko13102632017-07-08 00:24:32 +02009951 }
9952# endif
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009953 }
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009954 /* else: parse_jobspec() already emitted error msg */
9955 continue;
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009956 }
9957#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00009958 /* mimic bash message */
9959 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009960 ret = EXIT_FAILURE;
9961 continue; /* bash checks all argv[] */
Denis Vlasenkod5762932009-03-31 11:22:57 +00009962 }
Denys Vlasenko02affb42016-11-08 00:59:29 +01009963
Denys Vlasenko7e675362016-10-28 21:57:31 +02009964 /* Do we have such child? */
9965 ret = waitpid(pid, &status, WNOHANG);
9966 if (ret < 0) {
9967 /* No */
Denys Vlasenko840a4352017-07-07 22:56:02 +02009968 ret = 127;
Denys Vlasenko7e675362016-10-28 21:57:31 +02009969 if (errno == ECHILD) {
Denys Vlasenko0c5657e2017-07-14 19:27:03 +02009970 if (pid == G.last_bg_pid) {
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009971 /* "wait $!" but last bg task has already exited. Try:
9972 * (sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $?
9973 * In bash it prints exitcode 0, then 3.
Denys Vlasenko26ad94b2016-11-07 23:07:21 +01009974 * In dash, it is 127.
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009975 */
Denys Vlasenko840a4352017-07-07 22:56:02 +02009976 ret = G.last_bg_pid_exitcode;
Denys Vlasenko26ad94b2016-11-07 23:07:21 +01009977 } else {
9978 /* Example: "wait 1". mimic bash message */
9979 bb_error_msg("wait: pid %d is not a child of this shell", (int)pid);
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009980 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02009981 } else {
9982 /* ??? */
9983 bb_perror_msg("wait %s", *argv);
9984 }
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009985 continue; /* bash checks all argv[] */
9986 }
9987 if (ret == 0) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02009988 /* Yes, and it still runs */
Denys Vlasenko02affb42016-11-08 00:59:29 +01009989 ret = wait_for_child_or_signal(NULL, pid);
Denys Vlasenko7e675362016-10-28 21:57:31 +02009990 } else {
9991 /* Yes, and it just exited */
Denys Vlasenko02affb42016-11-08 00:59:29 +01009992 process_wait_result(NULL, pid, status);
Denys Vlasenko85378cd2015-10-11 21:47:11 +02009993 ret = WEXITSTATUS(status);
Mike Frysinger56bdea12009-03-28 20:01:58 +00009994 if (WIFSIGNALED(status))
9995 ret = 128 + WTERMSIG(status);
Mike Frysinger56bdea12009-03-28 20:01:58 +00009996 }
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009997 } while (*++argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00009998
9999 return ret;
10000}
Denys Vlasenko1125d7d2017-01-08 17:19:38 +010010001#endif
Mike Frysinger56bdea12009-03-28 20:01:58 +000010002
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010003#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
10004static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
10005{
10006 if (argv[1]) {
10007 def = bb_strtou(argv[1], NULL, 10);
10008 if (errno || def < def_min || argv[2]) {
10009 bb_error_msg("%s: bad arguments", argv[0]);
10010 def = UINT_MAX;
10011 }
10012 }
10013 return def;
10014}
10015#endif
10016
Denis Vlasenkodadfb492008-07-29 10:16:05 +000010017#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010018static int FAST_FUNC builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +000010019{
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010020 unsigned depth;
Denis Vlasenko87a86552008-07-29 19:43:10 +000010021 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +000010022 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denys Vlasenko49117b42016-07-21 14:40:08 +020010023 /* if we came from builtin_continue(), need to undo "= 1" */
10024 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +000010025 return EXIT_SUCCESS; /* bash compat */
10026 }
Denys Vlasenko49117b42016-07-21 14:40:08 +020010027 G.flag_break_continue++; /* BC_BREAK = 1, or BC_CONTINUE = 2 */
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010028
10029 G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
10030 if (depth == UINT_MAX)
10031 G.flag_break_continue = BC_BREAK;
10032 if (G.depth_of_loop < depth)
Denis Vlasenko87a86552008-07-29 19:43:10 +000010033 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010034
Denis Vlasenkobcb25532008-07-28 23:04:34 +000010035 return EXIT_SUCCESS;
10036}
10037
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010038static int FAST_FUNC builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +000010039{
Denis Vlasenko4f504a92008-07-29 19:48:30 +000010040 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
10041 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +000010042}
Denis Vlasenkodadfb492008-07-29 10:16:05 +000010043#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010044
10045#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010046static int FAST_FUNC builtin_return(char **argv)
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010047{
10048 int rc;
10049
Denys Vlasenko04b46bc2016-10-01 22:28:03 +020010050 if (G_flag_return_in_progress != -1) {
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010051 bb_error_msg("%s: not in a function or sourced script", argv[0]);
10052 return EXIT_FAILURE; /* bash compat */
10053 }
10054
Denys Vlasenko04b46bc2016-10-01 22:28:03 +020010055 G_flag_return_in_progress = 1;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010056
10057 /* bash:
10058 * out of range: wraps around at 256, does not error out
10059 * non-numeric param:
10060 * f() { false; return qwe; }; f; echo $?
10061 * bash: return: qwe: numeric argument required <== we do this
10062 * 255 <== we also do this
10063 */
10064 rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
10065 return rc;
10066}
10067#endif
Denys Vlasenkoa1184af2017-01-10 15:58:02 +010010068
10069#if ENABLE_HUSH_MEMLEAK
10070static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM)
10071{
10072 void *p;
10073 unsigned long l;
10074
10075# ifdef M_TRIM_THRESHOLD
10076 /* Optional. Reduces probability of false positives */
10077 malloc_trim(0);
10078# endif
10079 /* Crude attempt to find where "free memory" starts,
10080 * sans fragmentation. */
10081 p = malloc(240);
10082 l = (unsigned long)p;
10083 free(p);
10084 p = malloc(3400);
10085 if (l < (unsigned long)p) l = (unsigned long)p;
10086 free(p);
10087
10088
10089# if 0 /* debug */
10090 {
10091 struct mallinfo mi = mallinfo();
10092 printf("top alloc:0x%lx malloced:%d+%d=%d\n", l,
10093 mi.arena, mi.hblkhd, mi.arena + mi.hblkhd);
10094 }
10095# endif
10096
10097 if (!G.memleak_value)
10098 G.memleak_value = l;
10099
10100 l -= G.memleak_value;
10101 if ((long)l < 0)
10102 l = 0;
10103 l /= 1024;
10104 if (l > 127)
10105 l = 127;
10106
10107 /* Exitcode is "how many kilobytes we leaked since 1st call" */
10108 return l;
10109}
10110#endif