blob: aee77d03b7e8969d9869e97e76e14a60f26b8a01 [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 Vlasenkof58f7052011-05-12 02:10:33 +0200288//usage: "[-nxl] [-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)
405#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000406#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000407#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000408
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000409#define ERR_PTR ((void*)(long)1)
410
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +0100411#define JOB_STATUS_FORMAT "[%u] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000412
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200413#define _SPECIAL_VARS_STR "_*@$!?#"
414#define SPECIAL_VARS_STR ("_*@$!?#" + 1)
415#define NUMERIC_SPECVARS_STR ("_*@$!?#" + 3)
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100416#if BASH_PATTERN_SUBST
Denys Vlasenko36f774a2010-09-05 14:45:38 +0200417/* Support / and // replace ops */
418/* Note that // is stored as \ in "encoded" string representation */
419# define VAR_ENCODED_SUBST_OPS "\\/%#:-=+?"
420# define VAR_SUBST_OPS ("\\/%#:-=+?" + 1)
421# define MINUS_PLUS_EQUAL_QUESTION ("\\/%#:-=+?" + 5)
422#else
423# define VAR_ENCODED_SUBST_OPS "%#:-=+?"
424# define VAR_SUBST_OPS "%#:-=+?"
425# define MINUS_PLUS_EQUAL_QUESTION ("%#:-=+?" + 3)
426#endif
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200427
428#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000429
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200430struct variable;
431
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000432static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
433
434/* This supports saving pointers malloced in vfork child,
Denis Vlasenkoc376db32009-04-15 21:49:48 +0000435 * to be freed in the parent.
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000436 */
437#if !BB_MMU
438typedef struct nommu_save_t {
439 char **new_env;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200440 struct variable *old_vars;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000441 char **argv;
Denis Vlasenko27014ed2009-04-15 21:48:23 +0000442 char **argv_from_re_execing;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000443} nommu_save_t;
444#endif
445
Denys Vlasenko9b782552010-09-08 13:33:26 +0200446enum {
Eric Andersen25f27032001-04-26 23:22:31 +0000447 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000448#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000449 RES_IF ,
450 RES_THEN ,
451 RES_ELIF ,
452 RES_ELSE ,
453 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000454#endif
455#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000456 RES_FOR ,
457 RES_WHILE ,
458 RES_UNTIL ,
459 RES_DO ,
460 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000461#endif
462#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000463 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000464#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000465#if ENABLE_HUSH_CASE
466 RES_CASE ,
Denys Vlasenkoe9bda902009-05-23 16:50:07 +0200467 /* three pseudo-keywords support contrived "case" syntax: */
468 RES_CASE_IN, /* "case ... IN", turns into RES_MATCH when IN is observed */
469 RES_MATCH , /* "word)" */
470 RES_CASE_BODY, /* "this command is inside CASE" */
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000471 RES_ESAC ,
472#endif
473 RES_XXXX ,
474 RES_SNTX
Denys Vlasenko9b782552010-09-08 13:33:26 +0200475};
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000476
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000477typedef struct o_string {
478 char *data;
479 int length; /* position where data is appended */
480 int maxlen;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +0200481 int o_expflags;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000482 /* At least some part of the string was inside '' or "",
483 * possibly empty one: word"", wo''rd etc. */
Denys Vlasenko38292b62010-09-05 14:49:40 +0200484 smallint has_quoted_part;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000485 smallint has_empty_slot;
486 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
487} o_string;
488enum {
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200489 EXP_FLAG_SINGLEWORD = 0x80, /* must be 0x80 */
490 EXP_FLAG_GLOB = 0x2,
491 /* Protect newly added chars against globbing
492 * by prepending \ to *, ?, [, \ */
493 EXP_FLAG_ESC_GLOB_CHARS = 0x1,
494};
495enum {
496 MAYBE_ASSIGNMENT = 0,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000497 DEFINITELY_ASSIGNMENT = 1,
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200498 NOT_ASSIGNMENT = 2,
Maninder Singh97c64912015-05-25 13:46:36 +0200499 /* Not an assignment, but next word may be: "if v=xyz cmd;" */
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200500 WORD_IS_KEYWORD = 3,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000501};
502/* Used for initialization: o_string foo = NULL_O_STRING; */
503#define NULL_O_STRING { NULL }
504
Denys Vlasenko29f9b722011-05-14 11:27:36 +0200505#ifndef debug_printf_parse
506static const char *const assignment_flag[] = {
507 "MAYBE_ASSIGNMENT",
508 "DEFINITELY_ASSIGNMENT",
509 "NOT_ASSIGNMENT",
510 "WORD_IS_KEYWORD",
511};
512#endif
513
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000514typedef struct in_str {
515 const char *p;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000516#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000517 smallint promptmode; /* 0: PS1, 1: PS2 */
518#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +0200519 int peek_buf[2];
Denys Vlasenkocecbc982011-03-30 18:54:52 +0200520 int last_char;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000521 FILE *file;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000522} in_str;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000523
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200524/* The descrip member of this structure is only used to make
525 * debugging output pretty */
526static const struct {
527 int mode;
528 signed char default_fd;
529 char descrip[3];
530} redir_table[] = {
531 { O_RDONLY, 0, "<" },
532 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
533 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
534 { O_CREAT|O_RDWR, 1, "<>" },
535 { O_RDONLY, 0, "<<" },
536/* Should not be needed. Bogus default_fd helps in debugging */
537/* { O_RDONLY, 77, "<<" }, */
538};
539
Eric Andersen25f27032001-04-26 23:22:31 +0000540struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000541 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000542 char *rd_filename; /* filename */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000543 int rd_fd; /* fd to redirect */
544 /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
545 int rd_dup;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000546 smallint rd_type; /* (enum redir_type) */
547 /* note: for heredocs, rd_filename contains heredoc delimiter,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000548 * and subsequently heredoc itself; and rd_dup is a bitmask:
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200549 * bit 0: do we need to trim leading tabs?
550 * bit 1: is heredoc quoted (<<'delim' syntax) ?
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000551 */
Eric Andersen25f27032001-04-26 23:22:31 +0000552};
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000553typedef enum redir_type {
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200554 REDIRECT_INPUT = 0,
555 REDIRECT_OVERWRITE = 1,
556 REDIRECT_APPEND = 2,
557 REDIRECT_IO = 3,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000558 REDIRECT_HEREDOC = 4,
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200559 REDIRECT_HEREDOC2 = 5, /* REDIRECT_HEREDOC after heredoc is loaded */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000560
561 REDIRFD_CLOSE = -3,
562 REDIRFD_SYNTAX_ERR = -2,
Denis Vlasenko835fcfd2009-04-10 13:51:56 +0000563 REDIRFD_TO_FILE = -1,
564 /* otherwise, rd_fd is redirected to rd_dup */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000565
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000566 HEREDOC_SKIPTABS = 1,
567 HEREDOC_QUOTED = 2,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000568} redir_type;
569
Eric Andersen25f27032001-04-26 23:22:31 +0000570
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000571struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000572 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000573 int assignment_cnt; /* how many argv[i] are assignments? */
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200574 smallint cmd_type; /* CMD_xxx */
575#define CMD_NORMAL 0
576#define CMD_SUBSHELL 1
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100577#if BASH_TEST2
Denys Vlasenkod383b492010-09-06 10:22:13 +0200578/* used for "[[ EXPR ]]" */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200579# define CMD_SINGLEWORD_NOGLOB 2
Denis Vlasenkoed055212009-04-11 10:37:10 +0000580#endif
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200581#if ENABLE_HUSH_FUNCTIONS
582# define CMD_FUNCDEF 3
583#endif
584
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100585 smalluint cmd_exitcode;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200586 /* if non-NULL, this "command" is { list }, ( list ), or a compound statement */
587 struct pipe *group;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000588#if !BB_MMU
589 char *group_as_string;
590#endif
Denis Vlasenkoed055212009-04-11 10:37:10 +0000591#if ENABLE_HUSH_FUNCTIONS
592 struct function *child_func;
593/* This field is used to prevent a bug here:
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200594 * while...do f1() {a;}; f1; f1() {b;}; f1; done
Denis Vlasenkoed055212009-04-11 10:37:10 +0000595 * When we execute "f1() {a;}" cmd, we create new function and clear
596 * cmd->group, cmd->group_as_string, cmd->argv[0].
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200597 * When we execute "f1() {b;}", we notice that f1 exists,
598 * and that its "parent cmd" struct is still "alive",
Denis Vlasenkoed055212009-04-11 10:37:10 +0000599 * we put those fields back into cmd->xxx
600 * (struct function has ->parent_cmd ptr to facilitate that).
601 * When we loop back, we can execute "f1() {a;}" again and set f1 correctly.
602 * Without this trick, loop would execute a;b;b;b;...
603 * instead of correct sequence a;b;a;b;...
604 * When command is freed, it severs the link
605 * (sets ->child_func->parent_cmd to NULL).
606 */
607#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000608 char **argv; /* command name and arguments */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000609/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
610 * and on execution these are substituted with their values.
611 * Substitution can make _several_ words out of one argv[n]!
612 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000613 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000614 */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000615 struct redir_struct *redirects; /* I/O redirections */
616};
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000617/* Is there anything in this command at all? */
618#define IS_NULL_CMD(cmd) \
619 (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects)
620
Eric Andersen25f27032001-04-26 23:22:31 +0000621struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000622 struct pipe *next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000623 int num_cmds; /* total number of commands in pipe */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000624 int alive_cmds; /* number of commands running (not exited) */
625 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000626#if ENABLE_HUSH_JOB
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +0100627 unsigned jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000628 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000629 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000630#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000631 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000632 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000633 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
634 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000635};
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000636typedef enum pipe_style {
Denys Vlasenko00a06b92016-11-08 20:35:53 +0100637 PIPE_SEQ = 0,
638 PIPE_AND = 1,
639 PIPE_OR = 2,
640 PIPE_BG = 3,
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000641} pipe_style;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000642/* Is there anything in this pipe at all? */
643#define IS_NULL_PIPE(pi) \
644 ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE))
Eric Andersen25f27032001-04-26 23:22:31 +0000645
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000646/* This holds pointers to the various results of parsing */
647struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000648 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000649 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000650 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000651 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000652 /* last command in pipe (being constructed right now) */
653 struct command *command;
654 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000655 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000656#if !BB_MMU
657 o_string as_string;
658#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000659#if HAS_KEYWORDS
660 smallint ctx_res_w;
661 smallint ctx_inverted; /* "! cmd | cmd" */
662#if ENABLE_HUSH_CASE
663 smallint ctx_dsemicolon; /* ";;" seen */
664#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000665 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
666 int old_flag;
667 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000668 * example: "if pipe1; pipe2; then pipe3; fi"
669 * when we see "if" or "then", we malloc and copy current context,
670 * and make ->stack point to it. then we parse pipeN.
671 * when closing "then" / fi" / whatever is found,
672 * we move list_head into ->stack->command->group,
673 * copy ->stack into current context, and delete ->stack.
674 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000675 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000676 struct parse_context *stack;
677#endif
678};
679
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000680/* On program start, environ points to initial environment.
681 * putenv adds new pointers into it, unsetenv removes them.
682 * Neither of these (de)allocates the strings.
683 * setenv allocates new strings in malloc space and does putenv,
684 * and thus setenv is unusable (leaky) for shell's purposes */
685#define setenv(...) setenv_is_leaky_dont_use()
686struct variable {
687 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000688 char *varstr; /* points to "name=" portion */
Denys Vlasenko295fef82009-06-03 12:47:26 +0200689#if ENABLE_HUSH_LOCAL
690 unsigned func_nest_level;
691#endif
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000692 int max_len; /* if > 0, name is part of initial env; else name is malloced */
693 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000694 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000695};
696
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000697enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000698 BC_BREAK = 1,
699 BC_CONTINUE = 2,
700};
701
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000702#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000703struct function {
704 struct function *next;
705 char *name;
Denis Vlasenkoed055212009-04-11 10:37:10 +0000706 struct command *parent_cmd;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000707 struct pipe *body;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200708# if !BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000709 char *body_as_string;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200710# endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000711};
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000712#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000713
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000714
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100715/* set -/+o OPT support. (TODO: make it optional)
716 * bash supports the following opts:
717 * allexport off
718 * braceexpand on
719 * emacs on
720 * errexit off
721 * errtrace off
722 * functrace off
723 * hashall on
724 * histexpand off
725 * history on
726 * ignoreeof off
727 * interactive-comments on
728 * keyword off
729 * monitor on
730 * noclobber off
731 * noexec off
732 * noglob off
733 * nolog off
734 * notify off
735 * nounset off
736 * onecmd off
737 * physical off
738 * pipefail off
739 * posix off
740 * privileged off
741 * verbose off
742 * vi off
743 * xtrace off
744 */
Dan Fandrich85c62472010-11-20 13:05:17 -0800745static const char o_opt_strings[] ALIGN1 =
746 "pipefail\0"
747 "noexec\0"
748#if ENABLE_HUSH_MODE_X
749 "xtrace\0"
750#endif
751 ;
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100752enum {
753 OPT_O_PIPEFAIL,
Dan Fandrich85c62472010-11-20 13:05:17 -0800754 OPT_O_NOEXEC,
755#if ENABLE_HUSH_MODE_X
756 OPT_O_XTRACE,
757#endif
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100758 NUM_OPT_O
759};
760
761
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +0200762struct FILE_list {
763 struct FILE_list *next;
764 FILE *fp;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +0200765 int fd;
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +0200766};
767
768
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000769/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000770/* Sorted roughly by size (smaller offsets == smaller code) */
771struct globals {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000772 /* interactive_fd != 0 means we are an interactive shell.
773 * If we are, then saved_tty_pgrp can also be != 0, meaning
774 * that controlling tty is available. With saved_tty_pgrp == 0,
775 * job control still works, but terminal signals
776 * (^C, ^Z, ^Y, ^\) won't work at all, and background
777 * process groups can only be created with "cmd &".
778 * With saved_tty_pgrp != 0, hush will use tcsetpgrp()
779 * to give tty to the foreground process group,
780 * and will take it back when the group is stopped (^Z)
781 * or killed (^C).
782 */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000783#if ENABLE_HUSH_INTERACTIVE
784 /* 'interactive_fd' is a fd# open to ctty, if we have one
785 * _AND_ if we decided to act interactively */
786 int interactive_fd;
787 const char *PS1;
788 const char *PS2;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000789# define G_interactive_fd (G.interactive_fd)
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000790#else
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000791# define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000792#endif
793#if ENABLE_FEATURE_EDITING
794 line_input_t *line_input_state;
795#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000796 pid_t root_pid;
Denys Vlasenkodea47882009-10-09 15:40:49 +0200797 pid_t root_ppid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000798 pid_t last_bg_pid;
Denys Vlasenko20b3d142009-10-09 20:59:39 +0200799#if ENABLE_HUSH_RANDOM_SUPPORT
800 random_t random_gen;
801#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000802#if ENABLE_HUSH_JOB
803 int run_list_level;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +0100804 unsigned last_jobid;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000805 pid_t saved_tty_pgrp;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000806 struct pipe *job_list;
Mike Frysinger38478a62009-05-20 04:48:06 -0400807# define G_saved_tty_pgrp (G.saved_tty_pgrp)
808#else
809# define G_saved_tty_pgrp 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000810#endif
Denys Vlasenko26777aa2010-11-22 23:49:10 +0100811 char o_opt[NUM_OPT_O];
Denys Vlasenko57542eb2010-11-28 03:59:30 +0100812#if ENABLE_HUSH_MODE_X
813# define G_x_mode (G.o_opt[OPT_O_XTRACE])
814#else
815# define G_x_mode 0
816#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000817 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000818#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000819 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000820#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000821#if ENABLE_HUSH_FUNCTIONS
822 /* 0: outside of a function (or sourced file)
823 * -1: inside of a function, ok to use return builtin
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000824 * 1: return is invoked, skip all till end of func
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000825 */
826 smallint flag_return_in_progress;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +0200827# define G_flag_return_in_progress (G.flag_return_in_progress)
828#else
829# define G_flag_return_in_progress 0
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000830#endif
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000831 smallint exiting; /* used to prevent EXIT trap recursion */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000832 /* These four support $?, $#, and $1 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000833 smalluint last_exitcode;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +0100834#if ENABLE_HUSH_SET
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000835 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000836 smalluint global_args_malloced;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +0100837# define G_global_args_malloced (G.global_args_malloced)
838#else
839# define G_global_args_malloced 0
840#endif
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000841 /* how many non-NULL argv's we have. NB: $# + 1 */
842 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000843 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000844#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000845 char *argv0_for_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000846#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000847#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000848 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000849 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000850#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000851 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000852 const char *cwd;
Denys Vlasenko52e460b2010-09-16 16:12:00 +0200853 struct variable *top_var;
Denys Vlasenko29082232010-07-16 13:52:32 +0200854 char **expanded_assignments;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000855#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000856 struct function *top_func;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200857# if ENABLE_HUSH_LOCAL
858 struct variable **shadowed_vars_pp;
859 unsigned func_nest_level;
860# endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000861#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000862 /* Signal and trap handling */
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200863#if ENABLE_HUSH_FAST
864 unsigned count_SIGCHLD;
865 unsigned handled_SIGCHLD;
Denys Vlasenkoe2df5f42009-05-26 14:34:10 +0200866 smallint we_have_children;
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200867#endif
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +0200868 struct FILE_list *FILE_list;
Denys Vlasenko10c01312011-05-11 11:49:21 +0200869 /* Which signals have non-DFL handler (even with no traps set)?
870 * Set at the start to:
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200871 * (SIGQUIT + maybe SPECIAL_INTERACTIVE_SIGS + maybe SPECIAL_JOBSTOP_SIGS)
Denys Vlasenko10c01312011-05-11 11:49:21 +0200872 * SPECIAL_INTERACTIVE_SIGS are cleared after fork.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200873 * The rest is cleared right before execv syscalls.
Denys Vlasenko10c01312011-05-11 11:49:21 +0200874 * Other than these two times, never modified.
875 */
876 unsigned special_sig_mask;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200877#if ENABLE_HUSH_JOB
878 unsigned fatal_sig_mask;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +0100879# define G_fatal_sig_mask (G.fatal_sig_mask)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200880#else
Denys Vlasenko75e77de2011-05-12 13:12:47 +0200881# define G_fatal_sig_mask 0
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200882#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100883#if ENABLE_HUSH_TRAP
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000884 char **traps; /* char *traps[NSIG] */
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100885# define G_traps G.traps
886#else
887# define G_traps ((char**)NULL)
888#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200889 sigset_t pending_set;
Denys Vlasenko44719692017-01-08 18:44:41 +0100890#if ENABLE_HUSH_MEMLEAK
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000891 unsigned long memleak_value;
Denys Vlasenko44719692017-01-08 18:44:41 +0100892#endif
893#if HUSH_DEBUG
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000894 int debug_indent;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000895#endif
Denys Vlasenko0806e402011-05-12 23:06:20 +0200896 struct sigaction sa;
Denys Vlasenko0448c552016-09-29 20:25:44 +0200897#if ENABLE_FEATURE_EDITING
898 char user_input_buf[CONFIG_FEATURE_EDITING_MAX_LEN];
899#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000900};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000901#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000902/* Not #defining name to G.name - this quickly gets unwieldy
903 * (too many defines). Also, I actually prefer to see when a variable
904 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000905#define INIT_G() do { \
906 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denys Vlasenko0806e402011-05-12 23:06:20 +0200907 /* memset(&G.sa, 0, sizeof(G.sa)); */ \
908 sigfillset(&G.sa.sa_mask); \
909 G.sa.sa_flags = SA_RESTART; \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000910} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000911
912
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000913/* Function prototypes for builtins */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200914static int builtin_cd(char **argv) FAST_FUNC;
Denys Vlasenko1cc68042017-01-09 17:10:04 +0100915#if ENABLE_HUSH_ECHO
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200916static int builtin_echo(char **argv) FAST_FUNC;
Denys Vlasenko1cc68042017-01-09 17:10:04 +0100917#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200918static int builtin_eval(char **argv) FAST_FUNC;
919static int builtin_exec(char **argv) FAST_FUNC;
920static int builtin_exit(char **argv) FAST_FUNC;
Denys Vlasenko6ec76d82017-01-08 18:40:41 +0100921#if ENABLE_HUSH_EXPORT
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200922static int builtin_export(char **argv) FAST_FUNC;
Denys Vlasenko6ec76d82017-01-08 18:40:41 +0100923#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000924#if ENABLE_HUSH_JOB
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200925static int builtin_fg_bg(char **argv) FAST_FUNC;
926static int builtin_jobs(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000927#endif
928#if ENABLE_HUSH_HELP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200929static int builtin_help(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000930#endif
Denys Vlasenkoff463a82013-05-12 02:45:23 +0200931#if MAX_HISTORY && ENABLE_FEATURE_EDITING
Flemming Madsend96ffda2013-04-07 18:47:24 +0200932static int builtin_history(char **argv) FAST_FUNC;
933#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +0200934#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200935static int builtin_local(char **argv) FAST_FUNC;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200936#endif
Denys Vlasenko44719692017-01-08 18:44:41 +0100937#if ENABLE_HUSH_MEMLEAK
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200938static int builtin_memleak(char **argv) FAST_FUNC;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000939#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +0100940#if ENABLE_HUSH_PRINTF
Mike Frysinger4ebc76c2009-10-15 03:32:39 -0400941static int builtin_printf(char **argv) FAST_FUNC;
942#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200943static int builtin_pwd(char **argv) FAST_FUNC;
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100944#if ENABLE_HUSH_READ
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200945static int builtin_read(char **argv) FAST_FUNC;
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100946#endif
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100947#if ENABLE_HUSH_SET
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200948static int builtin_set(char **argv) FAST_FUNC;
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100949#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200950static int builtin_shift(char **argv) FAST_FUNC;
951static int builtin_source(char **argv) FAST_FUNC;
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100952#if ENABLE_HUSH_TEST || BASH_TEST2
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200953static int builtin_test(char **argv) FAST_FUNC;
Denys Vlasenko265062d2017-01-10 15:13:30 +0100954#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100955#if ENABLE_HUSH_TRAP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200956static int builtin_trap(char **argv) FAST_FUNC;
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100957#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +0100958#if ENABLE_HUSH_TYPE
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200959static int builtin_type(char **argv) FAST_FUNC;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +0100960#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200961static int builtin_true(char **argv) FAST_FUNC;
Denys Vlasenkod5933b12017-01-08 18:31:39 +0100962#if ENABLE_HUSH_UMASK
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200963static int builtin_umask(char **argv) FAST_FUNC;
Denys Vlasenkod5933b12017-01-08 18:31:39 +0100964#endif
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100965#if ENABLE_HUSH_UNSET
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200966static int builtin_unset(char **argv) FAST_FUNC;
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100967#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +0100968#if ENABLE_HUSH_KILL
969static int builtin_kill(char **argv) FAST_FUNC;
970#endif
971#if ENABLE_HUSH_WAIT
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200972static int builtin_wait(char **argv) FAST_FUNC;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +0100973#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000974#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200975static int builtin_break(char **argv) FAST_FUNC;
976static int builtin_continue(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000977#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000978#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200979static int builtin_return(char **argv) FAST_FUNC;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000980#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000981
982/* Table of built-in functions. They can be forked or not, depending on
983 * context: within pipes, they fork. As simple commands, they do not.
984 * When used in non-forking context, they can change global variables
985 * in the parent shell process. If forked, of course they cannot.
986 * For example, 'unset foo | whatever' will parse and run, but foo will
987 * still be set at the end. */
988struct built_in_command {
Denys Vlasenko17323a62010-01-28 01:57:05 +0100989 const char *b_cmd;
990 int (*b_function)(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000991#if ENABLE_HUSH_HELP
Denys Vlasenko17323a62010-01-28 01:57:05 +0100992 const char *b_descr;
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200993# define BLTIN(cmd, func, help) { cmd, func, help }
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000994#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200995# define BLTIN(cmd, func, help) { cmd, func }
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000996#endif
997};
998
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200999static const struct built_in_command bltins1[] = {
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001000 BLTIN("." , builtin_source , "Run commands in file"),
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001001 BLTIN(":" , builtin_true , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001002#if ENABLE_HUSH_JOB
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001003 BLTIN("bg" , builtin_fg_bg , "Resume job in background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001004#endif
1005#if ENABLE_HUSH_LOOPS
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001006 BLTIN("break" , builtin_break , "Exit loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001007#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001008 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001009#if ENABLE_HUSH_LOOPS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001010 BLTIN("continue" , builtin_continue, "Start new loop iteration"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001011#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001012 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
1013 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001014 BLTIN("exit" , builtin_exit , NULL),
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01001015#if ENABLE_HUSH_EXPORT
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001016 BLTIN("export" , builtin_export , "Set environment variables"),
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01001017#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001018#if ENABLE_HUSH_JOB
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001019 BLTIN("fg" , builtin_fg_bg , "Bring job into foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001020#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001021#if ENABLE_HUSH_HELP
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001022 BLTIN("help" , builtin_help , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001023#endif
Denys Vlasenkoff463a82013-05-12 02:45:23 +02001024#if MAX_HISTORY && ENABLE_FEATURE_EDITING
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001025 BLTIN("history" , builtin_history , "Show history"),
Flemming Madsend96ffda2013-04-07 18:47:24 +02001026#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +00001027#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001028 BLTIN("jobs" , builtin_jobs , "List jobs"),
Denis Vlasenko34d4d892009-04-04 20:24:37 +00001029#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001030#if ENABLE_HUSH_KILL
1031 BLTIN("kill" , builtin_kill , "Send signals to processes"),
1032#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02001033#if ENABLE_HUSH_LOCAL
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001034 BLTIN("local" , builtin_local , "Set local variables"),
Denys Vlasenko295fef82009-06-03 12:47:26 +02001035#endif
Denys Vlasenko44719692017-01-08 18:44:41 +01001036#if ENABLE_HUSH_MEMLEAK
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001037 BLTIN("memleak" , builtin_memleak , NULL),
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00001038#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001039#if ENABLE_HUSH_READ
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001040 BLTIN("read" , builtin_read , "Input into variable"),
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001041#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00001042#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001043 BLTIN("return" , builtin_return , "Return from function"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00001044#endif
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001045#if ENABLE_HUSH_SET
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001046 BLTIN("set" , builtin_set , "Set positional parameters"),
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001047#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001048 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01001049#if BASH_SOURCE
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001050 BLTIN("source" , builtin_source , NULL),
Denys Vlasenko82731b42010-05-17 17:49:52 +02001051#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001052#if ENABLE_HUSH_TRAP
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001053 BLTIN("trap" , builtin_trap , "Trap signals"),
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001054#endif
Denys Vlasenko2bba5912014-03-14 12:43:57 +01001055 BLTIN("true" , builtin_true , NULL),
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001056#if ENABLE_HUSH_TYPE
Denys Vlasenko651a2692010-03-23 16:25:17 +01001057 BLTIN("type" , builtin_type , "Show command type"),
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001058#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001059#if ENABLE_HUSH_ULIMIT
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001060 BLTIN("ulimit" , shell_builtin_ulimit, "Control resource limits"),
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001061#endif
Denys Vlasenkod5933b12017-01-08 18:31:39 +01001062#if ENABLE_HUSH_UMASK
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001063 BLTIN("umask" , builtin_umask , "Set file creation mask"),
Denys Vlasenkod5933b12017-01-08 18:31:39 +01001064#endif
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001065#if ENABLE_HUSH_UNSET
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001066 BLTIN("unset" , builtin_unset , "Unset variables"),
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001067#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001068#if ENABLE_HUSH_WAIT
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001069 BLTIN("wait" , builtin_wait , "Wait for process"),
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001070#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001071};
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001072/* These builtins won't be used if we are on NOMMU and need to re-exec
1073 * (it's cheaper to run an external program in this case):
1074 */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001075static const struct built_in_command bltins2[] = {
Denys Vlasenko265062d2017-01-10 15:13:30 +01001076#if ENABLE_HUSH_TEST
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001077 BLTIN("[" , builtin_test , NULL),
Denys Vlasenko265062d2017-01-10 15:13:30 +01001078#endif
Denys Vlasenko8944c672017-01-11 14:22:00 +01001079#if BASH_TEST2
1080 BLTIN("[[" , builtin_test , NULL),
1081#endif
Denys Vlasenko1cc68042017-01-09 17:10:04 +01001082#if ENABLE_HUSH_ECHO
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001083 BLTIN("echo" , builtin_echo , NULL),
Denys Vlasenko1cc68042017-01-09 17:10:04 +01001084#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001085#if ENABLE_HUSH_PRINTF
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04001086 BLTIN("printf" , builtin_printf , NULL),
1087#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001088 BLTIN("pwd" , builtin_pwd , NULL),
Denys Vlasenko265062d2017-01-10 15:13:30 +01001089#if ENABLE_HUSH_TEST
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001090 BLTIN("test" , builtin_test , NULL),
Denys Vlasenko265062d2017-01-10 15:13:30 +01001091#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001092};
1093
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001094
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001095/* Debug printouts.
1096 */
1097#if HUSH_DEBUG
1098/* prevent disasters with G.debug_indent < 0 */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001099# define indent() fdprintf(2, "%*s", (G.debug_indent * 2) & 0xff, "")
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001100# define debug_enter() (G.debug_indent++)
1101# define debug_leave() (G.debug_indent--)
1102#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001103# define indent() ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001104# define debug_enter() ((void)0)
1105# define debug_leave() ((void)0)
1106#endif
1107
1108#ifndef debug_printf
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001109# define debug_printf(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001110#endif
1111
1112#ifndef debug_printf_parse
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001113# define debug_printf_parse(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001114#endif
1115
1116#ifndef debug_printf_exec
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001117#define debug_printf_exec(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001118#endif
1119
1120#ifndef debug_printf_env
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001121# define debug_printf_env(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001122#endif
1123
1124#ifndef debug_printf_jobs
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001125# define debug_printf_jobs(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001126# define DEBUG_JOBS 1
1127#else
1128# define DEBUG_JOBS 0
1129#endif
1130
1131#ifndef debug_printf_expand
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001132# define debug_printf_expand(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001133# define DEBUG_EXPAND 1
1134#else
1135# define DEBUG_EXPAND 0
1136#endif
1137
Denys Vlasenko1e811b12010-05-22 03:12:29 +02001138#ifndef debug_printf_varexp
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001139# define debug_printf_varexp(...) (indent(), fdprintf(2, __VA_ARGS__))
Denys Vlasenko1e811b12010-05-22 03:12:29 +02001140#endif
1141
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001142#ifndef debug_printf_glob
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001143# define debug_printf_glob(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001144# define DEBUG_GLOB 1
1145#else
1146# define DEBUG_GLOB 0
1147#endif
1148
1149#ifndef debug_printf_list
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001150# define debug_printf_list(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001151#endif
1152
1153#ifndef debug_printf_subst
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001154# define debug_printf_subst(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001155#endif
1156
1157#ifndef debug_printf_clean
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001158# define debug_printf_clean(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001159# define DEBUG_CLEAN 1
1160#else
1161# define DEBUG_CLEAN 0
1162#endif
1163
1164#if DEBUG_EXPAND
1165static void debug_print_strings(const char *prefix, char **vv)
1166{
1167 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001168 fdprintf(2, "%s:\n", prefix);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001169 while (*vv)
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001170 fdprintf(2, " '%s'\n", *vv++);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001171}
1172#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001173# define debug_print_strings(prefix, vv) ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001174#endif
1175
1176
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001177/* Leak hunting. Use hush_leaktool.sh for post-processing.
1178 */
1179#if LEAK_HUNTING
1180static void *xxmalloc(int lineno, size_t size)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001181{
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001182 void *ptr = xmalloc((size + 0xff) & ~0xff);
1183 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
1184 return ptr;
1185}
1186static void *xxrealloc(int lineno, void *ptr, size_t size)
1187{
1188 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
1189 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
1190 return ptr;
1191}
1192static char *xxstrdup(int lineno, const char *str)
1193{
1194 char *ptr = xstrdup(str);
1195 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
1196 return ptr;
1197}
1198static void xxfree(void *ptr)
1199{
1200 fdprintf(2, "free %p\n", ptr);
1201 free(ptr);
1202}
Denys Vlasenko8391c482010-05-22 17:50:43 +02001203# define xmalloc(s) xxmalloc(__LINE__, s)
1204# define xrealloc(p, s) xxrealloc(__LINE__, p, s)
1205# define xstrdup(s) xxstrdup(__LINE__, s)
1206# define free(p) xxfree(p)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001207#endif
1208
1209
1210/* Syntax and runtime errors. They always abort scripts.
1211 * In interactive use they usually discard unparsed and/or unexecuted commands
1212 * and return to the prompt.
1213 * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
1214 */
1215#if HUSH_DEBUG < 2
Denys Vlasenko606291b2009-09-23 23:15:43 +02001216# define die_if_script(lineno, ...) die_if_script(__VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001217# define syntax_error(lineno, msg) syntax_error(msg)
1218# define syntax_error_at(lineno, msg) syntax_error_at(msg)
1219# define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch)
1220# define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s)
1221# define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001222#endif
1223
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001224static void die_if_script(unsigned lineno, const char *fmt, ...)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001225{
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001226 va_list p;
1227
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001228#if HUSH_DEBUG >= 2
1229 bb_error_msg("hush.c:%u", lineno);
1230#endif
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001231 va_start(p, fmt);
1232 bb_verror_msg(fmt, p, NULL);
1233 va_end(p);
1234 if (!G_interactive_fd)
1235 xfunc_die();
Mike Frysinger6379bb42009-03-28 18:55:03 +00001236}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001237
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001238static void syntax_error(unsigned lineno UNUSED_PARAM, const char *msg)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001239{
1240 if (msg)
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001241 bb_error_msg("syntax error: %s", msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001242 else
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001243 bb_error_msg("syntax error");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001244}
1245
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001246static void syntax_error_at(unsigned lineno UNUSED_PARAM, const char *msg)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001247{
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001248 bb_error_msg("syntax error at '%s'", msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001249}
1250
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001251static void syntax_error_unterm_str(unsigned lineno UNUSED_PARAM, const char *s)
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001252{
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001253 bb_error_msg("syntax error: unterminated %s", s);
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001254}
1255
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001256static void syntax_error_unterm_ch(unsigned lineno, char ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001257{
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001258 char msg[2] = { ch, '\0' };
1259 syntax_error_unterm_str(lineno, msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001260}
1261
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001262static void syntax_error_unexpected_ch(unsigned lineno UNUSED_PARAM, int ch)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001263{
1264 char msg[2];
1265 msg[0] = ch;
1266 msg[1] = '\0';
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01001267#if HUSH_DEBUG >= 2
1268 bb_error_msg("hush.c:%u", lineno);
1269#endif
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001270 bb_error_msg("syntax error: unexpected %s", ch == EOF ? "EOF" : msg);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001271}
1272
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001273#if HUSH_DEBUG < 2
1274# undef die_if_script
1275# undef syntax_error
1276# undef syntax_error_at
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001277# undef syntax_error_unterm_ch
1278# undef syntax_error_unterm_str
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001279# undef syntax_error_unexpected_ch
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001280#else
Denys Vlasenko606291b2009-09-23 23:15:43 +02001281# define die_if_script(...) die_if_script(__LINE__, __VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001282# define syntax_error(msg) syntax_error(__LINE__, msg)
1283# define syntax_error_at(msg) syntax_error_at(__LINE__, msg)
1284# define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch)
1285# define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s)
1286# define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001287#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001288
Denis Vlasenko552433b2009-04-04 19:29:21 +00001289
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001290#if ENABLE_HUSH_INTERACTIVE
1291static void cmdedit_update_prompt(void);
1292#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001293# define cmdedit_update_prompt() ((void)0)
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001294#endif
1295
1296
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001297/* Utility functions
1298 */
Denis Vlasenko55789c62008-06-18 16:30:42 +00001299/* Replace each \x with x in place, return ptr past NUL. */
1300static char *unbackslash(char *src)
1301{
Denys Vlasenko71885402009-09-24 01:44:13 +02001302 char *dst = src = strchrnul(src, '\\');
Denis Vlasenko55789c62008-06-18 16:30:42 +00001303 while (1) {
1304 if (*src == '\\')
1305 src++;
1306 if ((*dst++ = *src++) == '\0')
1307 break;
1308 }
1309 return dst;
1310}
1311
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001312static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001313{
1314 int i;
1315 unsigned count1;
1316 unsigned count2;
1317 char **v;
1318
1319 v = strings;
1320 count1 = 0;
1321 if (v) {
1322 while (*v) {
1323 count1++;
1324 v++;
1325 }
1326 }
1327 count2 = 0;
1328 v = add;
1329 while (*v) {
1330 count2++;
1331 v++;
1332 }
1333 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
1334 v[count1 + count2] = NULL;
1335 i = count2;
1336 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001337 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001338 return v;
1339}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001340#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001341static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
1342{
1343 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
1344 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
1345 return ptr;
1346}
1347#define add_strings_to_strings(strings, add, need_to_dup) \
1348 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
1349#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001350
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001351/* Note: takes ownership of "add" ptr (it is not strdup'ed) */
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001352static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001353{
1354 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001355 v[0] = add;
1356 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001357 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001358}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001359#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001360static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
1361{
1362 char **ptr = add_string_to_strings(strings, add);
1363 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
1364 return ptr;
1365}
1366#define add_string_to_strings(strings, add) \
1367 xx_add_string_to_strings(__LINE__, strings, add)
1368#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001369
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001370static void free_strings(char **strings)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001371{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001372 char **v;
1373
1374 if (!strings)
1375 return;
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001376 v = strings;
1377 while (*v) {
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001378 free(*v);
1379 v++;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001380 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001381 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001382}
1383
Denis Vlasenko76d50412008-06-10 16:19:39 +00001384
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001385static int xdup_and_close(int fd, int F_DUPFD_maybe_CLOEXEC)
1386{
1387 /* We avoid taking stdio fds. Mimicking ash: use fds above 9 */
1388 int newfd = fcntl(fd, F_DUPFD_maybe_CLOEXEC, 10);
1389 if (newfd < 0) {
1390 /* fd was not open? */
1391 if (errno == EBADF)
1392 return fd;
1393 xfunc_die();
1394 }
1395 close(fd);
1396 return newfd;
1397}
1398
1399
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001400/* Manipulating the list of open FILEs */
1401static FILE *remember_FILE(FILE *fp)
1402{
1403 if (fp) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001404 struct FILE_list *n = xmalloc(sizeof(*n));
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001405 n->next = G.FILE_list;
1406 G.FILE_list = n;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001407 n->fp = fp;
1408 n->fd = fileno(fp);
1409 close_on_exec_on(n->fd);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001410 }
1411 return fp;
1412}
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001413static void fclose_and_forget(FILE *fp)
1414{
1415 struct FILE_list **pp = &G.FILE_list;
1416 while (*pp) {
1417 struct FILE_list *cur = *pp;
1418 if (cur->fp == fp) {
1419 *pp = cur->next;
1420 free(cur);
1421 break;
1422 }
1423 pp = &cur->next;
1424 }
1425 fclose(fp);
1426}
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001427static int save_FILEs_on_redirect(int fd)
1428{
1429 struct FILE_list *fl = G.FILE_list;
1430 while (fl) {
1431 if (fd == fl->fd) {
1432 /* We use it only on script files, they are all CLOEXEC */
1433 fl->fd = xdup_and_close(fd, F_DUPFD_CLOEXEC);
1434 return 1;
1435 }
1436 fl = fl->next;
1437 }
1438 return 0;
1439}
1440static void restore_redirected_FILEs(void)
1441{
1442 struct FILE_list *fl = G.FILE_list;
1443 while (fl) {
1444 int should_be = fileno(fl->fp);
1445 if (fl->fd != should_be) {
1446 xmove_fd(fl->fd, should_be);
1447 fl->fd = should_be;
1448 }
1449 fl = fl->next;
1450 }
1451}
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02001452#if ENABLE_FEATURE_SH_STANDALONE && BB_MMU
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001453static void close_all_FILE_list(void)
1454{
1455 struct FILE_list *fl = G.FILE_list;
1456 while (fl) {
1457 /* fclose would also free FILE object.
1458 * It is disastrous if we share memory with a vforked parent.
1459 * I'm not sure we never come here after vfork.
1460 * Therefore just close fd, nothing more.
1461 */
1462 /*fclose(fl->fp); - unsafe */
1463 close(fl->fd);
1464 fl = fl->next;
1465 }
1466}
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001467#endif
1468
1469
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001470/* Helpers for setting new $n and restoring them back
1471 */
1472typedef struct save_arg_t {
1473 char *sv_argv0;
1474 char **sv_g_argv;
1475 int sv_g_argc;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001476 IF_HUSH_SET(smallint sv_g_malloced;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001477} save_arg_t;
1478
1479static void save_and_replace_G_args(save_arg_t *sv, char **argv)
1480{
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001481 sv->sv_argv0 = argv[0];
1482 sv->sv_g_argv = G.global_argv;
1483 sv->sv_g_argc = G.global_argc;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001484 IF_HUSH_SET(sv->sv_g_malloced = G.global_args_malloced;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001485
1486 argv[0] = G.global_argv[0]; /* retain $0 */
1487 G.global_argv = argv;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001488 IF_HUSH_SET(G.global_args_malloced = 0;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001489
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02001490 G.global_argc = 1 + string_array_len(argv + 1);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001491}
1492
1493static void restore_G_args(save_arg_t *sv, char **argv)
1494{
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001495#if ENABLE_HUSH_SET
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001496 if (G.global_args_malloced) {
1497 /* someone ran "set -- arg1 arg2 ...", undo */
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001498 char **pp = G.global_argv;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001499 while (*++pp) /* note: does not free $0 */
1500 free(*pp);
1501 free(G.global_argv);
1502 }
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001503#endif
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001504 argv[0] = sv->sv_argv0;
1505 G.global_argv = sv->sv_g_argv;
1506 G.global_argc = sv->sv_g_argc;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001507 IF_HUSH_SET(G.global_args_malloced = sv->sv_g_malloced;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001508}
1509
1510
Denis Vlasenkod5762932009-03-31 11:22:57 +00001511/* Basic theory of signal handling in shell
1512 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001513 * This does not describe what hush does, rather, it is current understanding
1514 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001515 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
1516 *
1517 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
1518 * is finished or backgrounded. It is the same in interactive and
1519 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001520 * a user trap handler is installed or a shell special one is in effect.
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001521 * ^C or ^Z from keyboard seems to execute "at once" because it usually
Denis Vlasenkod5762932009-03-31 11:22:57 +00001522 * backgrounds (i.e. stops) or kills all members of currently running
1523 * pipe.
1524 *
Denys Vlasenko8bd810b2013-11-28 01:50:01 +01001525 * Wait builtin is interruptible by signals for which user trap is set
Denis Vlasenkod5762932009-03-31 11:22:57 +00001526 * or by SIGINT in interactive shell.
1527 *
1528 * Trap handlers will execute even within trap handlers. (right?)
1529 *
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001530 * User trap handlers are forgotten when subshell ("(cmd)") is entered,
1531 * except for handlers set to '' (empty string).
Denis Vlasenkod5762932009-03-31 11:22:57 +00001532 *
1533 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001534 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001535 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001536 * Commands which are run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001537 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001538 *
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001539 * Ordinary commands have signals set to SIG_IGN/DFL as inherited
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001540 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001541 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001542 * Signals which differ from SIG_DFL action
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001543 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +00001544 *
1545 * SIGQUIT: ignore
1546 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001547 * SIGHUP (interactive):
1548 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +00001549 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00001550 * Note that ^Z is handled not by trapping SIGTSTP, but by seeing
1551 * that all pipe members are stopped. Try this in bash:
1552 * while :; do :; done - ^Z does not background it
1553 * (while :; do :; done) - ^Z backgrounds it
Denis Vlasenkod5762932009-03-31 11:22:57 +00001554 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001555 * of the command line, show prompt. NB: ^C does not send SIGINT
1556 * to interactive shell while shell is waiting for a pipe,
1557 * since shell is bg'ed (is not in foreground process group).
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001558 * Example 1: this waits 5 sec, but does not execute ls:
1559 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
1560 * Example 2: this does not wait and does not execute ls:
1561 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
1562 * Example 3: this does not wait 5 sec, but executes ls:
1563 * "sleep 5; ls -l" + press ^C
Denys Vlasenkob8709032011-05-08 21:20:01 +02001564 * Example 4: this does not wait and does not execute ls:
1565 * "sleep 5 & wait; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +00001566 *
1567 * (What happens to signals which are IGN on shell start?)
1568 * (What happens with signal mask on shell start?)
1569 *
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001570 * Old implementation
1571 * ==================
Denis Vlasenkod5762932009-03-31 11:22:57 +00001572 * We use in-kernel pending signal mask to determine which signals were sent.
1573 * We block all signals which we don't want to take action immediately,
1574 * i.e. we block all signals which need to have special handling as described
1575 * above, and all signals which have traps set.
1576 * After each pipe execution, we extract any pending signals via sigtimedwait()
1577 * and act on them.
1578 *
Denys Vlasenko10c01312011-05-11 11:49:21 +02001579 * unsigned special_sig_mask: a mask of such "special" signals
Denis Vlasenkod5762932009-03-31 11:22:57 +00001580 * sigset_t blocked_set: current blocked signal set
1581 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001582 * "trap - SIGxxx":
Denys Vlasenko10c01312011-05-11 11:49:21 +02001583 * clear bit in blocked_set unless it is also in special_sig_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001584 * "trap 'cmd' SIGxxx":
1585 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +00001586 * after [v]fork, if we plan to be a shell:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001587 * unblock signals with special interactive handling
1588 * (child shell is not interactive),
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001589 * unset all traps except '' (note: regardless of child shell's type - {}, (), etc)
Denis Vlasenkod5762932009-03-31 11:22:57 +00001590 * after [v]fork, if we plan to exec:
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001591 * POSIX says fork clears pending signal mask in child - no need to clear it.
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001592 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001593 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001594 * Note: as a result, we do not use signal handlers much. The only uses
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001595 * are to count SIGCHLDs
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001596 * and to restore tty pgrp on signal-induced exit.
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001597 *
Denys Vlasenko67f71862009-09-25 14:21:06 +02001598 * Note 2 (compat):
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001599 * Standard says "When a subshell is entered, traps that are not being ignored
1600 * are set to the default actions". bash interprets it so that traps which
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001601 * are set to '' (ignore) are NOT reset to defaults. We do the same.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001602 *
1603 * Problem: the above approach makes it unwieldy to catch signals while
Denys Vlasenkoe95738f2013-07-08 03:13:08 +02001604 * we are in read builtin, or while we read commands from stdin:
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001605 * masked signals are not visible!
1606 *
1607 * New implementation
1608 * ==================
1609 * We record each signal we are interested in by installing signal handler
1610 * for them - a bit like emulating kernel pending signal mask in userspace.
1611 * We are interested in: signals which need to have special handling
1612 * as described above, and all signals which have traps set.
Denys Vlasenko8bd810b2013-11-28 01:50:01 +01001613 * Signals are recorded in pending_set.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001614 * After each pipe execution, we extract any pending signals
1615 * and act on them.
1616 *
1617 * unsigned special_sig_mask: a mask of shell-special signals.
1618 * unsigned fatal_sig_mask: a mask of signals on which we restore tty pgrp.
1619 * char *traps[sig] if trap for sig is set (even if it's '').
1620 * sigset_t pending_set: set of sigs we received.
1621 *
1622 * "trap - SIGxxx":
1623 * if sig is in special_sig_mask, set handler back to:
1624 * record_pending_signo, or to IGN if it's a tty stop signal
1625 * if sig is in fatal_sig_mask, set handler back to sigexit.
1626 * else: set handler back to SIG_DFL
1627 * "trap 'cmd' SIGxxx":
1628 * set handler to record_pending_signo.
1629 * "trap '' SIGxxx":
1630 * set handler to SIG_IGN.
1631 * after [v]fork, if we plan to be a shell:
1632 * set signals with special interactive handling to SIG_DFL
1633 * (because child shell is not interactive),
1634 * unset all traps except '' (note: regardless of child shell's type - {}, (), etc)
1635 * after [v]fork, if we plan to exec:
1636 * POSIX says fork clears pending signal mask in child - no need to clear it.
1637 *
1638 * To make wait builtin interruptible, we handle SIGCHLD as special signal,
1639 * otherwise (if we leave it SIG_DFL) sigsuspend in wait builtin will not wake up on it.
1640 *
1641 * Note (compat):
1642 * Standard says "When a subshell is entered, traps that are not being ignored
1643 * are set to the default actions". bash interprets it so that traps which
1644 * are set to '' (ignore) are NOT reset to defaults. We do the same.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001645 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001646enum {
1647 SPECIAL_INTERACTIVE_SIGS = 0
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001648 | (1 << SIGTERM)
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001649 | (1 << SIGINT)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001650 | (1 << SIGHUP)
1651 ,
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001652 SPECIAL_JOBSTOP_SIGS = 0
Mike Frysinger38478a62009-05-20 04:48:06 -04001653#if ENABLE_HUSH_JOB
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001654 | (1 << SIGTTIN)
1655 | (1 << SIGTTOU)
1656 | (1 << SIGTSTP)
1657#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001658 ,
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001659};
Denis Vlasenkod5762932009-03-31 11:22:57 +00001660
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001661static void record_pending_signo(int sig)
Denys Vlasenko54e9e122011-05-09 00:52:15 +02001662{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001663 sigaddset(&G.pending_set, sig);
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001664#if ENABLE_HUSH_FAST
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001665 if (sig == SIGCHLD) {
1666 G.count_SIGCHLD++;
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001667//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 +02001668 }
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001669#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001670}
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001671
Denys Vlasenko0806e402011-05-12 23:06:20 +02001672static sighandler_t install_sighandler(int sig, sighandler_t handler)
1673{
1674 struct sigaction old_sa;
1675
1676 /* We could use signal() to install handlers... almost:
1677 * except that we need to mask ALL signals while handlers run.
1678 * I saw signal nesting in strace, race window isn't small.
1679 * SA_RESTART is also needed, but in Linux, signal()
1680 * sets SA_RESTART too.
1681 */
1682 /* memset(&G.sa, 0, sizeof(G.sa)); - already done */
1683 /* sigfillset(&G.sa.sa_mask); - already done */
1684 /* G.sa.sa_flags = SA_RESTART; - already done */
1685 G.sa.sa_handler = handler;
1686 sigaction(sig, &G.sa, &old_sa);
1687 return old_sa.sa_handler;
1688}
1689
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001690static void hush_exit(int exitcode) NORETURN;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001691
Denys Vlasenkob6afcc72016-12-12 16:30:20 +01001692static void restore_ttypgrp_and__exit(void) NORETURN;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001693static void restore_ttypgrp_and__exit(void)
1694{
1695 /* xfunc has failed! die die die */
1696 /* no EXIT traps, this is an escape hatch! */
1697 G.exiting = 1;
1698 hush_exit(xfunc_error_retval);
1699}
1700
Denys Vlasenkob6afcc72016-12-12 16:30:20 +01001701#if ENABLE_HUSH_JOB
1702
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001703/* Needed only on some libc:
1704 * It was observed that on exit(), fgetc'ed buffered data
1705 * gets "unwound" via lseek(fd, -NUM, SEEK_CUR).
1706 * With the net effect that even after fork(), not vfork(),
1707 * exit() in NOEXECed applet in "sh SCRIPT":
1708 * noexec_applet_here
1709 * echo END_OF_SCRIPT
1710 * lseeks fd in input FILE object from EOF to "e" in "echo END_OF_SCRIPT".
1711 * This makes "echo END_OF_SCRIPT" executed twice.
1712 * Similar problems can be seen with die_if_script() -> xfunc_die()
1713 * and in `cmd` handling.
1714 * If set as die_func(), this makes xfunc_die() exit via _exit(), not exit():
1715 */
Denys Vlasenkob6afcc72016-12-12 16:30:20 +01001716static void fflush_and__exit(void) NORETURN;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001717static void fflush_and__exit(void)
1718{
1719 fflush_all();
1720 _exit(xfunc_error_retval);
1721}
1722
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001723/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001724# define disable_restore_tty_pgrp_on_exit() (die_func = fflush_and__exit)
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001725/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001726# define enable_restore_tty_pgrp_on_exit() (die_func = restore_ttypgrp_and__exit)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001727
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001728/* Restores tty foreground process group, and exits.
1729 * May be called as signal handler for fatal signal
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001730 * (will resend signal to itself, producing correct exit state)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001731 * or called directly with -EXITCODE.
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001732 * We also call it if xfunc is exiting.
1733 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001734static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001735static void sigexit(int sig)
1736{
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001737 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001738 * tty pgrp then, only top-level shell process does that */
Denys Vlasenkoebc1ee22011-05-12 10:59:18 +02001739 if (G_saved_tty_pgrp && getpid() == G.root_pid) {
1740 /* Disable all signals: job control, SIGPIPE, etc.
1741 * Mostly paranoid measure, to prevent infinite SIGTTOU.
1742 */
1743 sigprocmask_allsigs(SIG_BLOCK);
Mike Frysinger38478a62009-05-20 04:48:06 -04001744 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
Denys Vlasenkoebc1ee22011-05-12 10:59:18 +02001745 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001746
1747 /* Not a signal, just exit */
1748 if (sig <= 0)
1749 _exit(- sig);
1750
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001751 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001752}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001753#else
1754
Denys Vlasenko8391c482010-05-22 17:50:43 +02001755# define disable_restore_tty_pgrp_on_exit() ((void)0)
1756# define enable_restore_tty_pgrp_on_exit() ((void)0)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001757
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001758#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001759
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001760static sighandler_t pick_sighandler(unsigned sig)
1761{
1762 sighandler_t handler = SIG_DFL;
1763 if (sig < sizeof(unsigned)*8) {
1764 unsigned sigmask = (1 << sig);
1765
1766#if ENABLE_HUSH_JOB
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001767 /* is sig fatal? */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001768 if (G_fatal_sig_mask & sigmask)
1769 handler = sigexit;
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001770 else
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001771#endif
1772 /* sig has special handling? */
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001773 if (G.special_sig_mask & sigmask) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001774 handler = record_pending_signo;
Denys Vlasenko0c40a732011-05-12 09:50:12 +02001775 /* TTIN/TTOU/TSTP can't be set to record_pending_signo
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001776 * in order to ignore them: they will be raised
Denys Vlasenkof58f7052011-05-12 02:10:33 +02001777 * in an endless loop when we try to do some
1778 * terminal ioctls! We do have to _ignore_ these.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001779 */
1780 if (SPECIAL_JOBSTOP_SIGS & sigmask)
1781 handler = SIG_IGN;
Denys Vlasenko0c40a732011-05-12 09:50:12 +02001782 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001783 }
1784 return handler;
1785}
1786
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001787/* Restores tty foreground process group, and exits. */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001788static void hush_exit(int exitcode)
1789{
Denys Vlasenkobede2152011-09-04 16:12:33 +02001790#if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1791 save_history(G.line_input_state);
1792#endif
1793
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01001794 fflush_all();
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001795 if (G.exiting <= 0 && G_traps && G_traps[0] && G_traps[0][0]) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001796 char *argv[3];
1797 /* argv[0] is unused */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001798 argv[1] = G_traps[0];
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001799 argv[2] = NULL;
Denys Vlasenkoa110c902010-09-12 15:38:04 +02001800 G.exiting = 1; /* prevent EXIT trap recursion */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001801 /* Note: G_traps[0] is not cleared!
Denys Vlasenkode8c3f62010-09-12 16:13:44 +02001802 * "trap" will still show it, if executed
1803 * in the handler */
1804 builtin_eval(argv);
Denis Vlasenkod5762932009-03-31 11:22:57 +00001805 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001806
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001807#if ENABLE_FEATURE_CLEAN_UP
1808 {
1809 struct variable *cur_var;
1810 if (G.cwd != bb_msg_unknown)
1811 free((char*)G.cwd);
1812 cur_var = G.top_var;
1813 while (cur_var) {
1814 struct variable *tmp = cur_var;
1815 if (!cur_var->max_len)
1816 free(cur_var->varstr);
1817 cur_var = cur_var->next;
1818 free(tmp);
1819 }
1820 }
1821#endif
1822
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001823 fflush_all();
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02001824#if ENABLE_HUSH_JOB
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001825 sigexit(- (exitcode & 0xff));
1826#else
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02001827 _exit(exitcode);
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001828#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001829}
1830
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02001831
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001832//TODO: return a mask of ALL handled sigs?
1833static int check_and_run_traps(void)
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001834{
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001835 int last_sig = 0;
1836
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001837 while (1) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001838 int sig;
Denys Vlasenko80542ba2011-05-08 21:23:43 +02001839
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001840 if (sigisemptyset(&G.pending_set))
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001841 break;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001842 sig = 0;
1843 do {
1844 sig++;
1845 if (sigismember(&G.pending_set, sig)) {
1846 sigdelset(&G.pending_set, sig);
1847 goto got_sig;
1848 }
1849 } while (sig < NSIG);
1850 break;
Denys Vlasenkob8709032011-05-08 21:20:01 +02001851 got_sig:
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001852 if (G_traps && G_traps[sig]) {
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001853 debug_printf_exec("%s: sig:%d handler:'%s'\n", __func__, sig, G.traps[sig]);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001854 if (G_traps[sig][0]) {
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001855 /* We have user-defined handler */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001856 smalluint save_rcode;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001857 char *argv[3];
1858 /* argv[0] is unused */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001859 argv[1] = G_traps[sig];
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001860 argv[2] = NULL;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001861 save_rcode = G.last_exitcode;
1862 builtin_eval(argv);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01001863//FIXME: shouldn't it be set to 128 + sig instead?
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001864 G.last_exitcode = save_rcode;
Denys Vlasenkob8709032011-05-08 21:20:01 +02001865 last_sig = sig;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001866 } /* else: "" trap, ignoring signal */
1867 continue;
1868 }
1869 /* not a trap: special action */
1870 switch (sig) {
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001871 case SIGINT:
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001872 debug_printf_exec("%s: sig:%d default SIGINT handler\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001873 G.flag_SIGINT = 1;
Denys Vlasenkob8709032011-05-08 21:20:01 +02001874 last_sig = sig;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001875 break;
1876#if ENABLE_HUSH_JOB
1877 case SIGHUP: {
1878 struct pipe *job;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001879 debug_printf_exec("%s: sig:%d default SIGHUP handler\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001880 /* bash is observed to signal whole process groups,
1881 * not individual processes */
1882 for (job = G.job_list; job; job = job->next) {
1883 if (job->pgrp <= 0)
1884 continue;
1885 debug_printf_exec("HUPing pgrp %d\n", job->pgrp);
1886 if (kill(- job->pgrp, SIGHUP) == 0)
1887 kill(- job->pgrp, SIGCONT);
1888 }
1889 sigexit(SIGHUP);
1890 }
1891#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001892#if ENABLE_HUSH_FAST
1893 case SIGCHLD:
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001894 debug_printf_exec("%s: sig:%d default SIGCHLD handler\n", __func__, sig);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001895 G.count_SIGCHLD++;
1896//bb_error_msg("[%d] check_and_run_traps: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
1897 /* Note:
Denys Vlasenko10ad6222017-04-17 16:13:32 +02001898 * We don't do 'last_sig = sig' here -> NOT returning this sig.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001899 * This simplifies wait builtin a bit.
1900 */
1901 break;
1902#endif
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001903 default: /* ignored: */
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001904 debug_printf_exec("%s: sig:%d default handling is to ignore\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001905 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001906 /* Note:
Denys Vlasenko10ad6222017-04-17 16:13:32 +02001907 * We don't do 'last_sig = sig' here -> NOT returning this sig.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001908 * Example: wait is not interrupted by TERM
Denys Vlasenkob8709032011-05-08 21:20:01 +02001909 * in interactive shell, because TERM is ignored.
1910 */
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001911 break;
1912 }
1913 }
1914 return last_sig;
1915}
1916
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001917
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001918static const char *get_cwd(int force)
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001919{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001920 if (force || G.cwd == NULL) {
1921 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1922 * we must not try to free(bb_msg_unknown) */
1923 if (G.cwd == bb_msg_unknown)
1924 G.cwd = NULL;
1925 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1926 if (!G.cwd)
1927 G.cwd = bb_msg_unknown;
1928 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00001929 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001930}
1931
Denis Vlasenko83506862007-11-23 13:11:42 +00001932
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001933/*
1934 * Shell and environment variable support
1935 */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001936static struct variable **get_ptr_to_local_var(const char *name, unsigned len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001937{
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001938 struct variable **pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001939 struct variable *cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001940
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001941 pp = &G.top_var;
1942 while ((cur = *pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001943 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001944 return pp;
1945 pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001946 }
1947 return NULL;
1948}
1949
Denys Vlasenko03dad222010-01-12 23:29:57 +01001950static const char* FAST_FUNC get_local_var_value(const char *name)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001951{
Denys Vlasenko29082232010-07-16 13:52:32 +02001952 struct variable **vpp;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001953 unsigned len = strlen(name);
Denys Vlasenko29082232010-07-16 13:52:32 +02001954
1955 if (G.expanded_assignments) {
1956 char **cpp = G.expanded_assignments;
Denys Vlasenko29082232010-07-16 13:52:32 +02001957 while (*cpp) {
1958 char *cp = *cpp;
1959 if (strncmp(cp, name, len) == 0 && cp[len] == '=')
1960 return cp + len + 1;
1961 cpp++;
1962 }
1963 }
1964
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001965 vpp = get_ptr_to_local_var(name, len);
Denys Vlasenko29082232010-07-16 13:52:32 +02001966 if (vpp)
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001967 return (*vpp)->varstr + len + 1;
Denys Vlasenko29082232010-07-16 13:52:32 +02001968
Denys Vlasenkodea47882009-10-09 15:40:49 +02001969 if (strcmp(name, "PPID") == 0)
1970 return utoa(G.root_ppid);
1971 // bash compat: UID? EUID?
Denys Vlasenko20b3d142009-10-09 20:59:39 +02001972#if ENABLE_HUSH_RANDOM_SUPPORT
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001973 if (strcmp(name, "RANDOM") == 0)
Denys Vlasenko20b3d142009-10-09 20:59:39 +02001974 return utoa(next_random(&G.random_gen));
1975#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001976 return NULL;
1977}
1978
1979/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001980 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001981 * flg_export:
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001982 * 0: do not change export flag
1983 * (if creating new variable, flag will be 0)
1984 * 1: set export flag and putenv the variable
1985 * -1: clear export flag and unsetenv the variable
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001986 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00001987 */
Denys Vlasenko295fef82009-06-03 12:47:26 +02001988#if !BB_MMU && ENABLE_HUSH_LOCAL
1989/* all params are used */
1990#elif BB_MMU && ENABLE_HUSH_LOCAL
1991#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
1992 set_local_var(str, flg_export, local_lvl)
1993#elif BB_MMU && !ENABLE_HUSH_LOCAL
1994#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001995 set_local_var(str, flg_export)
Denys Vlasenko295fef82009-06-03 12:47:26 +02001996#elif !BB_MMU && !ENABLE_HUSH_LOCAL
1997#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
1998 set_local_var(str, flg_export, flg_read_only)
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001999#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02002000static int set_local_var(char *str, int flg_export, int local_lvl, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002001{
Denys Vlasenko295fef82009-06-03 12:47:26 +02002002 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002003 struct variable *cur;
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002004 char *free_me = NULL;
Denis Vlasenko950bd722009-04-21 11:23:56 +00002005 char *eq_sign;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002006 int name_len;
2007
Denis Vlasenko950bd722009-04-21 11:23:56 +00002008 eq_sign = strchr(str, '=');
2009 if (!eq_sign) { /* not expected to ever happen? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002010 free(str);
2011 return -1;
2012 }
2013
Denis Vlasenko950bd722009-04-21 11:23:56 +00002014 name_len = eq_sign - str + 1; /* including '=' */
Denys Vlasenko295fef82009-06-03 12:47:26 +02002015 var_pp = &G.top_var;
2016 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002017 if (strncmp(cur->varstr, str, name_len) != 0) {
Denys Vlasenko295fef82009-06-03 12:47:26 +02002018 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002019 continue;
2020 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002021
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002022 /* We found an existing var with this name */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002023 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002024#if !BB_MMU
2025 if (!flg_read_only)
2026#endif
2027 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002028 free(str);
2029 return -1;
2030 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02002031 if (flg_export == -1) { // "&& cur->flg_export" ?
Denis Vlasenko950bd722009-04-21 11:23:56 +00002032 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
2033 *eq_sign = '\0';
2034 unsetenv(str);
2035 *eq_sign = '=';
2036 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02002037#if ENABLE_HUSH_LOCAL
2038 if (cur->func_nest_level < local_lvl) {
2039 /* New variable is declared as local,
2040 * and existing one is global, or local
2041 * from enclosing function.
2042 * Remove and save old one: */
2043 *var_pp = cur->next;
2044 cur->next = *G.shadowed_vars_pp;
2045 *G.shadowed_vars_pp = cur;
2046 /* bash 3.2.33(1) and exported vars:
2047 * # export z=z
2048 * # f() { local z=a; env | grep ^z; }
2049 * # f
2050 * z=a
2051 * # env | grep ^z
2052 * z=z
2053 */
2054 if (cur->flg_export)
2055 flg_export = 1;
2056 break;
2057 }
2058#endif
Denis Vlasenko950bd722009-04-21 11:23:56 +00002059 if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002060 free_and_exp:
2061 free(str);
2062 goto exp;
2063 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02002064 if (cur->max_len != 0) {
2065 if (cur->max_len >= strlen(str)) {
2066 /* This one is from startup env, reuse space */
2067 strcpy(cur->varstr, str);
2068 goto free_and_exp;
2069 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002070 /* Can't reuse */
2071 cur->max_len = 0;
2072 goto set_str_and_exp;
Denys Vlasenko295fef82009-06-03 12:47:26 +02002073 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002074 /* max_len == 0 signifies "malloced" var, which we can
2075 * (and have to) free. But we can't free(cur->varstr) here:
2076 * if cur->flg_export is 1, it is in the environment.
2077 * We should either unsetenv+free, or wait until putenv,
2078 * then putenv(new)+free(old).
2079 */
2080 free_me = cur->varstr;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002081 goto set_str_and_exp;
2082 }
2083
Denys Vlasenko295fef82009-06-03 12:47:26 +02002084 /* Not found - create new variable struct */
2085 cur = xzalloc(sizeof(*cur));
2086#if ENABLE_HUSH_LOCAL
2087 cur->func_nest_level = local_lvl;
2088#endif
2089 cur->next = *var_pp;
2090 *var_pp = cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002091
2092 set_str_and_exp:
2093 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00002094#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002095 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00002096#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002097 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00002098 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002099 cur->flg_export = 1;
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002100 if (name_len == 4 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
2101 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002102 if (cur->flg_export) {
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002103 if (flg_export == -1) {
2104 cur->flg_export = 0;
2105 /* unsetenv was already done */
2106 } else {
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002107 int i;
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002108 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002109 i = putenv(cur->varstr);
2110 /* only now we can free old exported malloced string */
2111 free(free_me);
2112 return i;
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002113 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002114 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002115 free(free_me);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002116 return 0;
2117}
2118
Denys Vlasenko6db47842009-09-05 20:15:17 +02002119/* Used at startup and after each cd */
2120static void set_pwd_var(int exp)
2121{
2122 set_local_var(xasprintf("PWD=%s", get_cwd(/*force:*/ 1)),
2123 /*exp:*/ exp, /*lvl:*/ 0, /*ro:*/ 0);
2124}
2125
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002126static int unset_local_var_len(const char *name, int name_len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002127{
2128 struct variable *cur;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002129 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002130
2131 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00002132 return EXIT_SUCCESS;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002133 var_pp = &G.top_var;
2134 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002135 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
2136 if (cur->flg_read_only) {
2137 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00002138 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002139 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002140 *var_pp = cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002141 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
2142 bb_unsetenv(cur->varstr);
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002143 if (name_len == 3 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
2144 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002145 if (!cur->max_len)
2146 free(cur->varstr);
2147 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00002148 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002149 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002150 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002151 }
Mike Frysingerd690f682009-03-30 06:50:54 +00002152 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002153}
2154
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01002155#if ENABLE_HUSH_UNSET
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002156static int unset_local_var(const char *name)
2157{
2158 return unset_local_var_len(name, strlen(name));
2159}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01002160#endif
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002161
2162static void unset_vars(char **strings)
2163{
2164 char **v;
2165
2166 if (!strings)
2167 return;
2168 v = strings;
2169 while (*v) {
2170 const char *eq = strchrnul(*v, '=');
2171 unset_local_var_len(*v, (int)(eq - *v));
2172 v++;
2173 }
2174 free(strings);
2175}
2176
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01002177#if BASH_HOSTNAME_VAR || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_READ
Denys Vlasenko03dad222010-01-12 23:29:57 +01002178static void FAST_FUNC set_local_var_from_halves(const char *name, const char *val)
Mike Frysinger98c52642009-04-02 10:02:37 +00002179{
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002180 char *var = xasprintf("%s=%s", name, val);
Denys Vlasenko03dad222010-01-12 23:29:57 +01002181 set_local_var(var, /*flags:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00002182}
Denys Vlasenkocc2fd5a2017-01-09 06:19:55 +01002183#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002184
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002185
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002186/*
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002187 * Helpers for "var1=val1 var2=val2 cmd" feature
2188 */
2189static void add_vars(struct variable *var)
2190{
2191 struct variable *next;
2192
2193 while (var) {
2194 next = var->next;
2195 var->next = G.top_var;
2196 G.top_var = var;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002197 if (var->flg_export) {
2198 debug_printf_env("%s: restoring exported '%s'\n", __func__, var->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002199 putenv(var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002200 } else {
Denys Vlasenko295fef82009-06-03 12:47:26 +02002201 debug_printf_env("%s: restoring variable '%s'\n", __func__, var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002202 }
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002203 var = next;
2204 }
2205}
2206
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002207static struct variable *set_vars_and_save_old(char **strings)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002208{
2209 char **s;
2210 struct variable *old = NULL;
2211
2212 if (!strings)
2213 return old;
2214 s = strings;
2215 while (*s) {
2216 struct variable *var_p;
2217 struct variable **var_pp;
2218 char *eq;
2219
2220 eq = strchr(*s, '=');
2221 if (eq) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002222 var_pp = get_ptr_to_local_var(*s, eq - *s);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002223 if (var_pp) {
2224 /* Remove variable from global linked list */
2225 var_p = *var_pp;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002226 debug_printf_env("%s: removing '%s'\n", __func__, var_p->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002227 *var_pp = var_p->next;
2228 /* Add it to returned list */
2229 var_p->next = old;
2230 old = var_p;
2231 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02002232 set_local_var(*s, /*exp:*/ 1, /*lvl:*/ 0, /*ro:*/ 0);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002233 }
2234 s++;
2235 }
2236 return old;
2237}
2238
2239
2240/*
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002241 * Unicode helper
2242 */
2243static void reinit_unicode_for_hush(void)
2244{
2245 /* Unicode support should be activated even if LANG is set
2246 * _during_ shell execution, not only if it was set when
2247 * shell was started. Therefore, re-check LANG every time:
2248 */
Denys Vlasenko841f8332014-08-13 10:09:49 +02002249 if (ENABLE_FEATURE_CHECK_UNICODE_IN_ENV
2250 || ENABLE_UNICODE_USING_LOCALE
2251 ) {
2252 const char *s = get_local_var_value("LC_ALL");
2253 if (!s) s = get_local_var_value("LC_CTYPE");
2254 if (!s) s = get_local_var_value("LANG");
2255 reinit_unicode(s);
2256 }
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002257}
2258
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002259/*
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002260 * in_str support (strings, and "strings" read from files).
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002261 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002262
2263#if ENABLE_HUSH_INTERACTIVE
Denys Vlasenko4074d492016-09-30 01:49:53 +02002264/* To test correct lineedit/interactive behavior, type from command line:
2265 * echo $P\
2266 * \
2267 * AT\
2268 * H\
2269 * \
Denys Vlasenko10ad6222017-04-17 16:13:32 +02002270 * It exercises a lot of corner cases.
Denys Vlasenko4074d492016-09-30 01:49:53 +02002271 */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002272static void cmdedit_update_prompt(void)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002273{
Mike Frysingerec2c6552009-03-28 12:24:44 +00002274 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002275 G.PS1 = get_local_var_value("PS1");
Mike Frysingerec2c6552009-03-28 12:24:44 +00002276 if (G.PS1 == NULL)
2277 G.PS1 = "\\w \\$ ";
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002278 G.PS2 = get_local_var_value("PS2");
Denys Vlasenko690ad242009-04-30 21:24:24 +02002279 } else {
Mike Frysingerec2c6552009-03-28 12:24:44 +00002280 G.PS1 = NULL;
Denys Vlasenko690ad242009-04-30 21:24:24 +02002281 }
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002282 if (G.PS2 == NULL)
2283 G.PS2 = "> ";
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002284}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002285static const char *setup_prompt_string(int promptmode)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002286{
2287 const char *prompt_str;
2288 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00002289 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
2290 /* Set up the prompt */
2291 if (promptmode == 0) { /* PS1 */
2292 free((char*)G.PS1);
Denys Vlasenko6db47842009-09-05 20:15:17 +02002293 /* bash uses $PWD value, even if it is set by user.
2294 * It uses current dir only if PWD is unset.
2295 * We always use current dir. */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002296 G.PS1 = xasprintf("%s %c ", get_cwd(0), (geteuid() != 0) ? '$' : '#');
Mike Frysingerec2c6552009-03-28 12:24:44 +00002297 prompt_str = G.PS1;
2298 } else
2299 prompt_str = G.PS2;
2300 } else
2301 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denys Vlasenko4074d492016-09-30 01:49:53 +02002302 debug_printf("prompt_str '%s'\n", prompt_str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002303 return prompt_str;
2304}
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002305static int get_user_input(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002306{
2307 int r;
2308 const char *prompt_str;
2309
2310 prompt_str = setup_prompt_string(i->promptmode);
Denys Vlasenko8391c482010-05-22 17:50:43 +02002311# if ENABLE_FEATURE_EDITING
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002312 for (;;) {
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002313 reinit_unicode_for_hush();
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002314 if (G.flag_SIGINT) {
2315 /* There was ^C'ed, make it look prettier: */
2316 bb_putchar('\n');
2317 G.flag_SIGINT = 0;
2318 }
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00002319 /* buglet: SIGINT will not make new prompt to appear _at once_,
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002320 * only after <Enter>. (^C works immediately) */
Denys Vlasenko0448c552016-09-29 20:25:44 +02002321 r = read_line_input(G.line_input_state, prompt_str,
2322 G.user_input_buf, CONFIG_FEATURE_EDITING_MAX_LEN-1,
2323 /*timeout*/ -1
2324 );
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002325 /* read_line_input intercepts ^C, "convert" it to SIGINT */
2326 if (r == 0) {
2327 write(STDOUT_FILENO, "^C", 2);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002328 raise(SIGINT);
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002329 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002330 check_and_run_traps();
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002331 if (r != 0 && !G.flag_SIGINT)
2332 break;
2333 /* ^C or SIGINT: repeat */
2334 G.last_exitcode = 128 + SIGINT;
2335 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002336 if (r < 0) {
2337 /* EOF/error detected */
Denys Vlasenko4074d492016-09-30 01:49:53 +02002338 i->p = NULL;
2339 i->peek_buf[0] = r = EOF;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002340 return r;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002341 }
Denys Vlasenko4074d492016-09-30 01:49:53 +02002342 i->p = G.user_input_buf;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002343 return (unsigned char)*i->p++;
Denys Vlasenko8391c482010-05-22 17:50:43 +02002344# else
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002345 for (;;) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00002346 G.flag_SIGINT = 0;
Denys Vlasenkob8709032011-05-08 21:20:01 +02002347 if (i->last_char == '\0' || i->last_char == '\n') {
2348 /* Why check_and_run_traps here? Try this interactively:
2349 * $ trap 'echo INT' INT; (sleep 2; kill -INT $$) &
2350 * $ <[enter], repeatedly...>
2351 * Without check_and_run_traps, handler never runs.
2352 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002353 check_and_run_traps();
Denys Vlasenkob8709032011-05-08 21:20:01 +02002354 fputs(prompt_str, stdout);
2355 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002356 fflush_all();
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002357//FIXME: here ^C or SIGINT will have effect only after <Enter>
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002358 r = fgetc(i->file);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002359 /* In !ENABLE_FEATURE_EDITING we don't use read_line_input,
2360 * no ^C masking happens during fgetc, no special code for ^C:
2361 * it generates SIGINT as usual.
2362 */
2363 check_and_run_traps();
2364 if (G.flag_SIGINT)
2365 G.last_exitcode = 128 + SIGINT;
2366 if (r != '\0')
2367 break;
2368 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002369 return r;
Denys Vlasenko8391c482010-05-22 17:50:43 +02002370# endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002371}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002372/* This is the magic location that prints prompts
2373 * and gets data back from the user */
Denys Vlasenko4074d492016-09-30 01:49:53 +02002374static int fgetc_interactive(struct in_str *i)
2375{
2376 int ch;
2377 /* If it's interactive stdin, get new line. */
2378 if (G_interactive_fd && i->file == stdin) {
2379 /* Returns first char (or EOF), the rest is in i->p[] */
2380 ch = get_user_input(i);
2381 i->promptmode = 1; /* PS2 */
2382 } else {
2383 /* Not stdin: script file, sourced file, etc */
2384 do ch = fgetc(i->file); while (ch == '\0');
2385 }
2386 return ch;
2387}
2388#else
2389static inline int fgetc_interactive(struct in_str *i)
2390{
2391 int ch;
2392 do ch = fgetc(i->file); while (ch == '\0');
2393 return ch;
2394}
2395#endif /* INTERACTIVE */
2396
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002397static int i_getch(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002398{
2399 int ch;
2400
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002401 if (!i->file) {
2402 /* string-based in_str */
2403 ch = (unsigned char)*i->p;
2404 if (ch != '\0') {
2405 i->p++;
2406 i->last_char = ch;
2407 return ch;
2408 }
2409 return EOF;
2410 }
2411
2412 /* FILE-based in_str */
2413
Denys Vlasenko4074d492016-09-30 01:49:53 +02002414#if ENABLE_FEATURE_EDITING
2415 /* This can be stdin, check line editing char[] buffer */
2416 if (i->p && *i->p != '\0') {
2417 ch = (unsigned char)*i->p++;
2418 goto out;
2419 }
2420#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002421 /* peek_buf[] is an int array, not char. Can contain EOF. */
2422 ch = i->peek_buf[0];
Denys Vlasenko4074d492016-09-30 01:49:53 +02002423 if (ch != 0) {
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002424 int ch2 = i->peek_buf[1];
2425 i->peek_buf[0] = ch2;
2426 if (ch2 == 0) /* very likely, avoid redundant write */
2427 goto out;
2428 i->peek_buf[1] = 0;
2429 goto out;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002430 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002431
Denys Vlasenko4074d492016-09-30 01:49:53 +02002432 ch = fgetc_interactive(i);
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002433 out:
Denis Vlasenko913a2012009-04-05 22:17:04 +00002434 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02002435 i->last_char = ch;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002436 return ch;
2437}
2438
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002439static int i_peek(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002440{
2441 int ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002442
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002443 if (!i->file) {
2444 /* string-based in_str */
2445 /* Doesn't report EOF on NUL. None of the callers care. */
2446 return (unsigned char)*i->p;
2447 }
2448
2449 /* FILE-based in_str */
2450
Denys Vlasenko4074d492016-09-30 01:49:53 +02002451#if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002452 /* This can be stdin, check line editing char[] buffer */
2453 if (i->p && *i->p != '\0')
2454 return (unsigned char)*i->p;
2455#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002456 /* peek_buf[] is an int array, not char. Can contain EOF. */
2457 ch = i->peek_buf[0];
Denys Vlasenko4074d492016-09-30 01:49:53 +02002458 if (ch != 0)
2459 return ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002460
Denys Vlasenko4074d492016-09-30 01:49:53 +02002461 /* Need to get a new char */
2462 ch = fgetc_interactive(i);
2463 debug_printf("file_peek: got '%c' %d\n", ch, ch);
2464
2465 /* Save it by either rolling back line editing buffer, or in i->peek_buf[0] */
2466#if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE
2467 if (i->p) {
2468 i->p -= 1;
2469 return ch;
2470 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002471#endif
Denys Vlasenko4074d492016-09-30 01:49:53 +02002472 i->peek_buf[0] = ch;
2473 /*i->peek_buf[1] = 0; - already is */
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002474 return ch;
2475}
2476
Denys Vlasenko4074d492016-09-30 01:49:53 +02002477/* Only ever called if i_peek() was called, and did not return EOF.
2478 * IOW: we know the previous peek saw an ordinary char, not EOF, not NUL,
2479 * not end-of-line. Therefore we never need to read a new editing line here.
2480 */
2481static int i_peek2(struct in_str *i)
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002482{
Denys Vlasenko4074d492016-09-30 01:49:53 +02002483 int ch;
2484
2485 /* There are two cases when i->p[] buffer exists.
2486 * (1) it's a string in_str.
Denys Vlasenko08755f92016-09-30 02:02:25 +02002487 * (2) It's a file, and we have a saved line editing buffer.
Denys Vlasenko4074d492016-09-30 01:49:53 +02002488 * In both cases, we know that i->p[0] exists and not NUL, and
2489 * the peek2 result is in i->p[1].
2490 */
2491 if (i->p)
2492 return (unsigned char)i->p[1];
2493
2494 /* Now we know it is a file-based in_str. */
2495
2496 /* peek_buf[] is an int array, not char. Can contain EOF. */
2497 /* Is there 2nd char? */
2498 ch = i->peek_buf[1];
2499 if (ch == 0) {
2500 /* We did not read it yet, get it now */
2501 do ch = fgetc(i->file); while (ch == '\0');
2502 i->peek_buf[1] = ch;
2503 }
2504
2505 debug_printf("file_peek2: got '%c' %d\n", ch, ch);
2506 return ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002507}
2508
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002509static void setup_file_in_str(struct in_str *i, FILE *f)
2510{
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002511 memset(i, 0, sizeof(*i));
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002512 /* i->promptmode = 0; - PS1 (memset did it) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002513 i->file = f;
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002514 /* i->p = NULL; */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002515}
2516
2517static void setup_string_in_str(struct in_str *i, const char *s)
2518{
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002519 memset(i, 0, sizeof(*i));
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002520 /* i->promptmode = 0; - PS1 (memset did it) */
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002521 /*i->file = NULL */;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002522 i->p = s;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002523}
2524
2525
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002526/*
2527 * o_string support
2528 */
2529#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00002530
Denis Vlasenko0b677d82009-04-10 13:49:10 +00002531static void o_reset_to_empty_unquoted(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00002532{
2533 o->length = 0;
Denys Vlasenko38292b62010-09-05 14:49:40 +02002534 o->has_quoted_part = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002535 if (o->data)
2536 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002537}
2538
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002539static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00002540{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00002541 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002542 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00002543}
2544
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002545static ALWAYS_INLINE void o_free_unsafe(o_string *o)
2546{
2547 free(o->data);
2548}
2549
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002550static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002551{
2552 if (o->length + len > o->maxlen) {
Denys Vlasenko46e64982016-09-29 19:50:55 +02002553 o->maxlen += (2 * len) | (B_CHUNK-1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002554 o->data = xrealloc(o->data, 1 + o->maxlen);
2555 }
2556}
2557
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002558static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002559{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002560 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
Denys Vlasenko46e64982016-09-29 19:50:55 +02002561 if (o->length < o->maxlen) {
2562 /* likely. avoid o_grow_by() call */
2563 add:
2564 o->data[o->length] = ch;
2565 o->length++;
2566 o->data[o->length] = '\0';
2567 return;
2568 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002569 o_grow_by(o, 1);
Denys Vlasenko46e64982016-09-29 19:50:55 +02002570 goto add;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002571}
2572
Denys Vlasenko657086a2016-09-29 18:07:42 +02002573#if 0
2574/* Valid only if we know o_string is not empty */
2575static void o_delchr(o_string *o)
2576{
2577 o->length--;
2578 o->data[o->length] = '\0';
2579}
2580#endif
2581
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002582static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002583{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002584 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002585 memcpy(&o->data[o->length], str, len);
2586 o->length += len;
2587 o->data[o->length] = '\0';
2588}
2589
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002590static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00002591{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002592 o_addblock(o, str, strlen(str));
2593}
Denys Vlasenko2e48d532010-05-22 17:30:39 +02002594
Denys Vlasenko1e811b12010-05-22 03:12:29 +02002595#if !BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002596static void nommu_addchr(o_string *o, int ch)
2597{
2598 if (o)
2599 o_addchr(o, ch);
2600}
2601#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002602# define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002603#endif
2604
2605static void o_addstr_with_NUL(o_string *o, const char *str)
2606{
2607 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00002608}
2609
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002610/*
Denys Vlasenko238081f2010-10-03 14:26:26 +02002611 * HUSH_BRACE_EXPANSION code needs corresponding quoting on variable expansion side.
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002612 * Currently, "v='{q,w}'; echo $v" erroneously expands braces in $v.
2613 * Apparently, on unquoted $v bash still does globbing
2614 * ("v='*.txt'; echo $v" prints all .txt files),
2615 * but NOT brace expansion! Thus, there should be TWO independent
2616 * quoting mechanisms on $v expansion side: one protects
2617 * $v from brace expansion, and other additionally protects "$v" against globbing.
2618 * We have only second one.
2619 */
2620
Denys Vlasenko9e800222010-10-03 14:28:04 +02002621#if ENABLE_HUSH_BRACE_EXPANSION
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002622# define MAYBE_BRACES "{}"
2623#else
2624# define MAYBE_BRACES ""
2625#endif
2626
Eric Andersen25f27032001-04-26 23:22:31 +00002627/* My analysis of quoting semantics tells me that state information
2628 * is associated with a destination, not a source.
2629 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002630static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00002631{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002632 int sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002633 char *found = strchr("*?[\\" MAYBE_BRACES, ch);
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002634 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002635 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002636 o_grow_by(o, sz);
2637 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002638 o->data[o->length] = '\\';
2639 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00002640 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002641 o->data[o->length] = ch;
2642 o->length++;
2643 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002644}
2645
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002646static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002647{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002648 int sz = 1;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002649 if ((o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)
2650 && strchr("*?[\\" MAYBE_BRACES, ch)
2651 ) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002652 sz++;
2653 o->data[o->length] = '\\';
2654 o->length++;
2655 }
2656 o_grow_by(o, sz);
2657 o->data[o->length] = ch;
2658 o->length++;
2659 o->data[o->length] = '\0';
2660}
2661
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002662static void o_addqblock(o_string *o, const char *str, int len)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002663{
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002664 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002665 char ch;
2666 int sz;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002667 int ordinary_cnt = strcspn(str, "*?[\\" MAYBE_BRACES);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002668 if (ordinary_cnt > len) /* paranoia */
2669 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002670 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002671 if (ordinary_cnt == len)
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002672 return; /* NUL is already added by o_addblock */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002673 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002674 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002675
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002676 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002677 sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002678 if (ch) { /* it is necessarily one of "*?[\\" MAYBE_BRACES */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002679 sz++;
2680 o->data[o->length] = '\\';
2681 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002682 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002683 o_grow_by(o, sz);
2684 o->data[o->length] = ch;
2685 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002686 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002687 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002688}
2689
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002690static void o_addQblock(o_string *o, const char *str, int len)
2691{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002692 if (!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002693 o_addblock(o, str, len);
2694 return;
2695 }
2696 o_addqblock(o, str, len);
2697}
2698
Denys Vlasenko38292b62010-09-05 14:49:40 +02002699static void o_addQstr(o_string *o, const char *str)
2700{
2701 o_addQblock(o, str, strlen(str));
2702}
2703
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002704/* A special kind of o_string for $VAR and `cmd` expansion.
2705 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002706 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002707 * list[i] contains an INDEX (int!) into this string data.
2708 * It means that if list[] needs to grow, data needs to be moved higher up
2709 * but list[i]'s need not be modified.
2710 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002711 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002712 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
2713 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002714#if DEBUG_EXPAND || DEBUG_GLOB
2715static void debug_print_list(const char *prefix, o_string *o, int n)
2716{
2717 char **list = (char**)o->data;
2718 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2719 int i = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002720
2721 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002722 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 +02002723 prefix, list, n, string_start, o->length, o->maxlen,
2724 !!(o->o_expflags & EXP_FLAG_GLOB),
2725 o->has_quoted_part,
2726 !!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002727 while (i < n) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002728 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002729 fdprintf(2, " list[%d]=%d '%s' %p\n", i, (int)(uintptr_t)list[i],
2730 o->data + (int)(uintptr_t)list[i] + string_start,
2731 o->data + (int)(uintptr_t)list[i] + string_start);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002732 i++;
2733 }
2734 if (n) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002735 const char *p = o->data + (int)(uintptr_t)list[n - 1] + string_start;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002736 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002737 fdprintf(2, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002738 }
2739}
2740#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002741# define debug_print_list(prefix, o, n) ((void)0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002742#endif
2743
2744/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
2745 * in list[n] so that it points past last stored byte so far.
2746 * It returns n+1. */
2747static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002748{
2749 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00002750 int string_start;
2751 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002752
2753 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00002754 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2755 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002756 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002757 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002758 /* list[n] points to string_start, make space for 16 more pointers */
2759 o->maxlen += 0x10 * sizeof(list[0]);
2760 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00002761 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002762 memmove(list + n + 0x10, list + n, string_len);
2763 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002764 } else {
2765 debug_printf_list("list[%d]=%d string_start=%d\n",
2766 n, string_len, string_start);
2767 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002768 } else {
2769 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00002770 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
2771 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002772 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
2773 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002774 o->has_empty_slot = 0;
2775 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002776 o->has_quoted_part = 0;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002777 list[n] = (char*)(uintptr_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002778 return n + 1;
2779}
2780
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002781/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002782static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002783{
2784 char **list = (char**)o->data;
2785 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2786
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002787 return ((int)(uintptr_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002788}
2789
Denys Vlasenko9e800222010-10-03 14:28:04 +02002790#if ENABLE_HUSH_BRACE_EXPANSION
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002791/* There in a GNU extension, GLOB_BRACE, but it is not usable:
2792 * first, it processes even {a} (no commas), second,
2793 * I didn't manage to make it return strings when they don't match
Denys Vlasenko160746b2009-11-16 05:51:18 +01002794 * existing files. Need to re-implement it.
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002795 */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002796
2797/* Helper */
2798static int glob_needed(const char *s)
2799{
2800 while (*s) {
2801 if (*s == '\\') {
2802 if (!s[1])
2803 return 0;
2804 s += 2;
2805 continue;
2806 }
2807 if (*s == '*' || *s == '[' || *s == '?' || *s == '{')
2808 return 1;
2809 s++;
2810 }
2811 return 0;
2812}
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002813/* Return pointer to next closing brace or to comma */
2814static const char *next_brace_sub(const char *cp)
2815{
2816 unsigned depth = 0;
2817 cp++;
2818 while (*cp != '\0') {
2819 if (*cp == '\\') {
2820 if (*++cp == '\0')
2821 break;
2822 cp++;
2823 continue;
Denys Vlasenko3581c622010-01-25 13:39:24 +01002824 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002825 if ((*cp == '}' && depth-- == 0) || (*cp == ',' && depth == 0))
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002826 break;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002827 if (*cp++ == '{')
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002828 depth++;
2829 }
2830
2831 return *cp != '\0' ? cp : NULL;
2832}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002833/* Recursive brace globber. Note: may garble pattern[]. */
2834static int glob_brace(char *pattern, o_string *o, int n)
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002835{
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002836 char *new_pattern_buf;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002837 const char *begin;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002838 const char *next;
2839 const char *rest;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002840 const char *p;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002841 size_t rest_len;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002842
2843 debug_printf_glob("glob_brace('%s')\n", pattern);
2844
2845 begin = pattern;
2846 while (1) {
2847 if (*begin == '\0')
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002848 goto simple_glob;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002849 if (*begin == '{') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002850 /* Find the first sub-pattern and at the same time
2851 * find the rest after the closing brace */
2852 next = next_brace_sub(begin);
2853 if (next == NULL) {
2854 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002855 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002856 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002857 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002858 /* "{abc}" with no commas - illegal
2859 * brace expr, disregard and skip it */
2860 begin = next + 1;
2861 continue;
2862 }
2863 break;
2864 }
2865 if (*begin == '\\' && begin[1] != '\0')
2866 begin++;
2867 begin++;
2868 }
2869 debug_printf_glob("begin:%s\n", begin);
2870 debug_printf_glob("next:%s\n", next);
2871
2872 /* Now find the end of the whole brace expression */
2873 rest = next;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002874 while (*rest != '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002875 rest = next_brace_sub(rest);
2876 if (rest == NULL) {
2877 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002878 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002879 }
2880 debug_printf_glob("rest:%s\n", rest);
2881 }
2882 rest_len = strlen(++rest) + 1;
2883
2884 /* We are sure the brace expression is well-formed */
2885
2886 /* Allocate working buffer large enough for our work */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002887 new_pattern_buf = xmalloc(strlen(pattern));
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002888
2889 /* We have a brace expression. BEGIN points to the opening {,
2890 * NEXT points past the terminator of the first element, and REST
2891 * points past the final }. We will accumulate result names from
2892 * recursive runs for each brace alternative in the buffer using
2893 * GLOB_APPEND. */
2894
2895 p = begin + 1;
2896 while (1) {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002897 /* Construct the new glob expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002898 memcpy(
2899 mempcpy(
2900 mempcpy(new_pattern_buf,
2901 /* We know the prefix for all sub-patterns */
2902 pattern, begin - pattern),
2903 p, next - p),
2904 rest, rest_len);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002905
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002906 /* Note: glob_brace() may garble new_pattern_buf[].
2907 * That's why we re-copy prefix every time (1st memcpy above).
2908 */
2909 n = glob_brace(new_pattern_buf, o, n);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002910 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002911 /* We saw the last entry */
2912 break;
2913 }
2914 p = next + 1;
2915 next = next_brace_sub(next);
2916 }
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002917 free(new_pattern_buf);
2918 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002919
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002920 simple_glob:
2921 {
2922 int gr;
2923 glob_t globdata;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002924
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002925 memset(&globdata, 0, sizeof(globdata));
2926 gr = glob(pattern, 0, NULL, &globdata);
2927 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
2928 if (gr != 0) {
2929 if (gr == GLOB_NOMATCH) {
2930 globfree(&globdata);
2931 /* NB: garbles parameter */
2932 unbackslash(pattern);
2933 o_addstr_with_NUL(o, pattern);
2934 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2935 return o_save_ptr_helper(o, n);
2936 }
2937 if (gr == GLOB_NOSPACE)
2938 bb_error_msg_and_die(bb_msg_memory_exhausted);
2939 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
2940 * but we didn't specify it. Paranoia again. */
2941 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
2942 }
2943 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
2944 char **argv = globdata.gl_pathv;
2945 while (1) {
2946 o_addstr_with_NUL(o, *argv);
2947 n = o_save_ptr_helper(o, n);
2948 argv++;
2949 if (!*argv)
2950 break;
2951 }
2952 }
2953 globfree(&globdata);
2954 }
2955 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002956}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002957/* Performs globbing on last list[],
2958 * saving each result as a new list[].
2959 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002960static int perform_glob(o_string *o, int n)
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002961{
2962 char *pattern, *copy;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002963
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002964 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002965 if (!o->data)
2966 return o_save_ptr_helper(o, n);
2967 pattern = o->data + o_get_last_ptr(o, n);
2968 debug_printf_glob("glob pattern '%s'\n", pattern);
2969 if (!glob_needed(pattern)) {
2970 /* unbackslash last string in o in place, fix length */
2971 o->length = unbackslash(pattern) - o->data;
2972 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2973 return o_save_ptr_helper(o, n);
2974 }
2975
2976 copy = xstrdup(pattern);
2977 /* "forget" pattern in o */
2978 o->length = pattern - o->data;
2979 n = glob_brace(copy, o, n);
2980 free(copy);
2981 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002982 debug_print_list("perform_glob returning", o, n);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002983 return n;
2984}
2985
Denys Vlasenko238081f2010-10-03 14:26:26 +02002986#else /* !HUSH_BRACE_EXPANSION */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002987
2988/* Helper */
2989static int glob_needed(const char *s)
2990{
2991 while (*s) {
2992 if (*s == '\\') {
2993 if (!s[1])
2994 return 0;
2995 s += 2;
2996 continue;
2997 }
2998 if (*s == '*' || *s == '[' || *s == '?')
2999 return 1;
3000 s++;
3001 }
3002 return 0;
3003}
3004/* 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)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003008{
3009 glob_t globdata;
3010 int gr;
3011 char *pattern;
3012
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003013 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003014 if (!o->data)
3015 return o_save_ptr_helper(o, n);
3016 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003017 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003018 if (!glob_needed(pattern)) {
3019 literal:
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003020 /* unbackslash last string in o in place, fix length */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003021 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003022 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003023 return o_save_ptr_helper(o, n);
3024 }
3025
3026 memset(&globdata, 0, sizeof(globdata));
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003027 /* Can't use GLOB_NOCHECK: it does not unescape the string.
3028 * If we glob "*.\*" and don't find anything, we need
3029 * to fall back to using literal "*.*", but GLOB_NOCHECK
3030 * will return "*.\*"!
3031 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003032 gr = glob(pattern, 0, NULL, &globdata);
3033 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003034 if (gr != 0) {
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003035 if (gr == GLOB_NOMATCH) {
3036 globfree(&globdata);
3037 goto literal;
3038 }
3039 if (gr == GLOB_NOSPACE)
3040 bb_error_msg_and_die(bb_msg_memory_exhausted);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003041 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
3042 * but we didn't specify it. Paranoia again. */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003043 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003044 }
3045 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
3046 char **argv = globdata.gl_pathv;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003047 /* "forget" pattern in o */
3048 o->length = pattern - o->data;
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003049 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003050 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003051 n = o_save_ptr_helper(o, n);
3052 argv++;
3053 if (!*argv)
3054 break;
3055 }
3056 }
3057 globfree(&globdata);
3058 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003059 debug_print_list("perform_glob returning", o, n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003060 return n;
3061}
3062
Denys Vlasenko238081f2010-10-03 14:26:26 +02003063#endif /* !HUSH_BRACE_EXPANSION */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003064
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02003065/* If o->o_expflags & EXP_FLAG_GLOB, glob the string so far remembered.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003066 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003067static int o_save_ptr(o_string *o, int n)
3068{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02003069 if (o->o_expflags & EXP_FLAG_GLOB) {
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00003070 /* If o->has_empty_slot, list[n] was already globbed
3071 * (if it was requested back then when it was filled)
3072 * so don't do that again! */
3073 if (!o->has_empty_slot)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003074 return perform_glob(o, n); /* o_save_ptr_helper is inside */
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00003075 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003076 return o_save_ptr_helper(o, n);
3077}
3078
3079/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003080static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003081{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003082 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003083 int string_start;
3084
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003085 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
3086 if (DEBUG_EXPAND)
3087 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003088 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003089 list = (char**)o->data;
3090 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
3091 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003092 while (n) {
3093 n--;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003094 list[n] = o->data + (int)(uintptr_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003095 }
3096 return list;
3097}
3098
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003099static void free_pipe_list(struct pipe *pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003100
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003101/* Returns pi->next - next pipe in the list */
3102static struct pipe *free_pipe(struct pipe *pi)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003103{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003104 struct pipe *next;
3105 int i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003106
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003107 debug_printf_clean("free_pipe (pid %d)\n", getpid());
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003108 for (i = 0; i < pi->num_cmds; i++) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003109 struct command *command;
3110 struct redir_struct *r, *rnext;
3111
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003112 command = &pi->cmds[i];
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003113 debug_printf_clean(" command %d:\n", i);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003114 if (command->argv) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003115 if (DEBUG_CLEAN) {
3116 int a;
3117 char **p;
3118 for (a = 0, p = command->argv; *p; a++, p++) {
3119 debug_printf_clean(" argv[%d] = %s\n", a, *p);
3120 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003121 }
3122 free_strings(command->argv);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003123 //command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003124 }
3125 /* not "else if": on syntax error, we may have both! */
3126 if (command->group) {
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003127 debug_printf_clean(" begin group (cmd_type:%d)\n",
3128 command->cmd_type);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003129 free_pipe_list(command->group);
3130 debug_printf_clean(" end group\n");
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003131 //command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003132 }
Denis Vlasenkoed055212009-04-11 10:37:10 +00003133 /* else is crucial here.
3134 * If group != NULL, child_func is meaningless */
3135#if ENABLE_HUSH_FUNCTIONS
3136 else if (command->child_func) {
3137 debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
3138 command->child_func->parent_cmd = NULL;
3139 }
3140#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003141#if !BB_MMU
3142 free(command->group_as_string);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003143 //command->group_as_string = NULL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003144#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003145 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003146 debug_printf_clean(" redirect %d%s",
3147 r->rd_fd, redir_table[r->rd_type].descrip);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003148 /* guard against the case >$FOO, where foo is unset or blank */
3149 if (r->rd_filename) {
3150 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
3151 free(r->rd_filename);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003152 //r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003153 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003154 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003155 rnext = r->next;
3156 free(r);
3157 }
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003158 //command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003159 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003160 free(pi->cmds); /* children are an array, they get freed all at once */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003161 //pi->cmds = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003162#if ENABLE_HUSH_JOB
3163 free(pi->cmdtext);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003164 //pi->cmdtext = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003165#endif
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003166
3167 next = pi->next;
3168 free(pi);
3169 return next;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003170}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003171
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003172static void free_pipe_list(struct pipe *pi)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003173{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003174 while (pi) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003175#if HAS_KEYWORDS
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003176 debug_printf_clean("pipe reserved word %d\n", pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003177#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003178 debug_printf_clean("pipe followup code %d\n", pi->followup);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003179 pi = free_pipe(pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003180 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003181}
3182
3183
Denys Vlasenkob36abf22010-09-05 14:50:59 +02003184/*** Parsing routines ***/
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003185
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003186#ifndef debug_print_tree
3187static void debug_print_tree(struct pipe *pi, int lvl)
3188{
3189 static const char *const PIPE[] = {
3190 [PIPE_SEQ] = "SEQ",
3191 [PIPE_AND] = "AND",
3192 [PIPE_OR ] = "OR" ,
3193 [PIPE_BG ] = "BG" ,
3194 };
3195 static const char *RES[] = {
3196 [RES_NONE ] = "NONE" ,
3197# if ENABLE_HUSH_IF
3198 [RES_IF ] = "IF" ,
3199 [RES_THEN ] = "THEN" ,
3200 [RES_ELIF ] = "ELIF" ,
3201 [RES_ELSE ] = "ELSE" ,
3202 [RES_FI ] = "FI" ,
3203# endif
3204# if ENABLE_HUSH_LOOPS
3205 [RES_FOR ] = "FOR" ,
3206 [RES_WHILE] = "WHILE",
3207 [RES_UNTIL] = "UNTIL",
3208 [RES_DO ] = "DO" ,
3209 [RES_DONE ] = "DONE" ,
3210# endif
3211# if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
3212 [RES_IN ] = "IN" ,
3213# endif
3214# if ENABLE_HUSH_CASE
3215 [RES_CASE ] = "CASE" ,
3216 [RES_CASE_IN ] = "CASE_IN" ,
3217 [RES_MATCH] = "MATCH",
3218 [RES_CASE_BODY] = "CASE_BODY",
3219 [RES_ESAC ] = "ESAC" ,
3220# endif
3221 [RES_XXXX ] = "XXXX" ,
3222 [RES_SNTX ] = "SNTX" ,
3223 };
3224 static const char *const CMDTYPE[] = {
3225 "{}",
3226 "()",
3227 "[noglob]",
3228# if ENABLE_HUSH_FUNCTIONS
3229 "func()",
3230# endif
3231 };
3232
3233 int pin, prn;
3234
3235 pin = 0;
3236 while (pi) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003237 fdprintf(2, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003238 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
3239 prn = 0;
3240 while (prn < pi->num_cmds) {
3241 struct command *command = &pi->cmds[prn];
3242 char **argv = command->argv;
3243
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003244 fdprintf(2, "%*s cmd %d assignment_cnt:%d",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003245 lvl*2, "", prn,
3246 command->assignment_cnt);
3247 if (command->group) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003248 fdprintf(2, " group %s: (argv=%p)%s%s\n",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003249 CMDTYPE[command->cmd_type],
3250 argv
3251# if !BB_MMU
3252 , " group_as_string:", command->group_as_string
3253# else
3254 , "", ""
3255# endif
3256 );
3257 debug_print_tree(command->group, lvl+1);
3258 prn++;
3259 continue;
3260 }
3261 if (argv) while (*argv) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003262 fdprintf(2, " '%s'", *argv);
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003263 argv++;
3264 }
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003265 fdprintf(2, "\n");
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003266 prn++;
3267 }
3268 pi = pi->next;
3269 pin++;
3270 }
3271}
3272#endif /* debug_print_tree */
3273
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00003274static struct pipe *new_pipe(void)
3275{
Eric Andersen25f27032001-04-26 23:22:31 +00003276 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003277 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003278 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00003279 return pi;
3280}
3281
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003282/* Command (member of a pipe) is complete, or we start a new pipe
3283 * if ctx->command is NULL.
3284 * No errors possible here.
3285 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003286static int done_command(struct parse_context *ctx)
3287{
3288 /* The command is really already in the pipe structure, so
3289 * advance the pipe counter and make a new, null command. */
3290 struct pipe *pi = ctx->pipe;
3291 struct command *command = ctx->command;
3292
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02003293#if 0 /* Instead we emit error message at run time */
3294 if (ctx->pending_redirect) {
3295 /* For example, "cmd >" (no filename to redirect to) */
3296 die_if_script("syntax error: %s", "invalid redirect");
3297 ctx->pending_redirect = NULL;
3298 }
3299#endif
3300
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003301 if (command) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003302 if (IS_NULL_CMD(command)) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003303 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003304 goto clear_and_ret;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003305 }
3306 pi->num_cmds++;
3307 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003308 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003309 } else {
3310 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
3311 }
3312
3313 /* Only real trickiness here is that the uncommitted
3314 * command structure is not counted in pi->num_cmds. */
3315 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003316 ctx->command = command = &pi->cmds[pi->num_cmds];
3317 clear_and_ret:
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003318 memset(command, 0, sizeof(*command));
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003319 return pi->num_cmds; /* used only for 0/nonzero check */
3320}
3321
3322static void done_pipe(struct parse_context *ctx, pipe_style type)
3323{
3324 int not_null;
3325
3326 debug_printf_parse("done_pipe entered, followup %d\n", type);
3327 /* Close previous command */
3328 not_null = done_command(ctx);
3329 ctx->pipe->followup = type;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003330#if HAS_KEYWORDS
3331 ctx->pipe->pi_inverted = ctx->ctx_inverted;
3332 ctx->ctx_inverted = 0;
3333 ctx->pipe->res_word = ctx->ctx_res_w;
3334#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003335
3336 /* Without this check, even just <enter> on command line generates
3337 * tree of three NOPs (!). Which is harmless but annoying.
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003338 * IOW: it is safe to do it unconditionally. */
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003339 if (not_null
Denis Vlasenko7f959372009-04-14 08:06:59 +00003340#if ENABLE_HUSH_IF
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003341 || ctx->ctx_res_w == RES_FI
Denis Vlasenko7f959372009-04-14 08:06:59 +00003342#endif
3343#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003344 || ctx->ctx_res_w == RES_DONE
3345 || ctx->ctx_res_w == RES_FOR
3346 || ctx->ctx_res_w == RES_IN
Denis Vlasenko7f959372009-04-14 08:06:59 +00003347#endif
3348#if ENABLE_HUSH_CASE
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003349 || ctx->ctx_res_w == RES_ESAC
3350#endif
3351 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003352 struct pipe *new_p;
3353 debug_printf_parse("done_pipe: adding new pipe: "
3354 "not_null:%d ctx->ctx_res_w:%d\n",
3355 not_null, ctx->ctx_res_w);
3356 new_p = new_pipe();
3357 ctx->pipe->next = new_p;
3358 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003359 /* RES_THEN, RES_DO etc are "sticky" -
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003360 * they remain set for pipes inside if/while.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003361 * This is used to control execution.
3362 * RES_FOR and RES_IN are NOT sticky (needed to support
3363 * cases where variable or value happens to match a keyword):
3364 */
3365#if ENABLE_HUSH_LOOPS
3366 if (ctx->ctx_res_w == RES_FOR
3367 || ctx->ctx_res_w == RES_IN)
3368 ctx->ctx_res_w = RES_NONE;
3369#endif
3370#if ENABLE_HUSH_CASE
3371 if (ctx->ctx_res_w == RES_MATCH)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003372 ctx->ctx_res_w = RES_CASE_BODY;
3373 if (ctx->ctx_res_w == RES_CASE)
3374 ctx->ctx_res_w = RES_CASE_IN;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003375#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003376 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003377 /* Create the memory for command, roughly:
3378 * ctx->pipe->cmds = new struct command;
3379 * ctx->command = &ctx->pipe->cmds[0];
3380 */
3381 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003382 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003383 }
3384 debug_printf_parse("done_pipe return\n");
3385}
3386
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003387static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003388{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003389 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00003390 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003391 /* Create the memory for command, roughly:
3392 * ctx->pipe->cmds = new struct command;
3393 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003394 */
3395 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00003396}
3397
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003398/* If a reserved word is found and processed, parse context is modified
3399 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00003400 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003401#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003402struct reserved_combo {
3403 char literal[6];
3404 unsigned char res;
3405 unsigned char assignment_flag;
3406 int flag;
3407};
3408enum {
3409 FLAG_END = (1 << RES_NONE ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003410# if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003411 FLAG_IF = (1 << RES_IF ),
3412 FLAG_THEN = (1 << RES_THEN ),
3413 FLAG_ELIF = (1 << RES_ELIF ),
3414 FLAG_ELSE = (1 << RES_ELSE ),
3415 FLAG_FI = (1 << RES_FI ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003416# endif
3417# if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003418 FLAG_FOR = (1 << RES_FOR ),
3419 FLAG_WHILE = (1 << RES_WHILE),
3420 FLAG_UNTIL = (1 << RES_UNTIL),
3421 FLAG_DO = (1 << RES_DO ),
3422 FLAG_DONE = (1 << RES_DONE ),
3423 FLAG_IN = (1 << RES_IN ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003424# endif
3425# if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003426 FLAG_MATCH = (1 << RES_MATCH),
3427 FLAG_ESAC = (1 << RES_ESAC ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003428# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003429 FLAG_START = (1 << RES_XXXX ),
3430};
3431
3432static const struct reserved_combo* match_reserved_word(o_string *word)
3433{
Eric Andersen25f27032001-04-26 23:22:31 +00003434 /* Mostly a list of accepted follow-up reserved words.
3435 * FLAG_END means we are done with the sequence, and are ready
3436 * to turn the compound list into a command.
3437 * FLAG_START means the word must start a new compound list.
3438 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003439 static const struct reserved_combo reserved_list[] = {
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003440# if ENABLE_HUSH_IF
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003441 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
3442 { "if", RES_IF, MAYBE_ASSIGNMENT, FLAG_THEN | FLAG_START },
3443 { "then", RES_THEN, MAYBE_ASSIGNMENT, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
3444 { "elif", RES_ELIF, MAYBE_ASSIGNMENT, FLAG_THEN },
3445 { "else", RES_ELSE, MAYBE_ASSIGNMENT, FLAG_FI },
3446 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003447# endif
3448# if ENABLE_HUSH_LOOPS
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003449 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
3450 { "while", RES_WHILE, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START },
3451 { "until", RES_UNTIL, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START },
3452 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
3453 { "do", RES_DO, MAYBE_ASSIGNMENT, FLAG_DONE },
3454 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003455# endif
3456# if ENABLE_HUSH_CASE
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003457 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
3458 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003459# endif
Eric Andersen25f27032001-04-26 23:22:31 +00003460 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003461 const struct reserved_combo *r;
3462
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02003463 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003464 if (strcmp(word->data, r->literal) == 0)
3465 return r;
3466 }
3467 return NULL;
3468}
Denis Vlasenkobb929512009-04-16 10:59:40 +00003469/* Return 0: not a keyword, 1: keyword
3470 */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003471static int reserved_word(o_string *word, struct parse_context *ctx)
3472{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003473# if ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003474 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003475 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003476 };
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003477# endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003478 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003479
Denys Vlasenko38292b62010-09-05 14:49:40 +02003480 if (word->has_quoted_part)
Denis Vlasenkobb929512009-04-16 10:59:40 +00003481 return 0;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003482 r = match_reserved_word(word);
3483 if (!r)
3484 return 0;
3485
3486 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003487# if ENABLE_HUSH_CASE
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003488 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE_IN) {
3489 /* "case word IN ..." - IN part starts first MATCH part */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003490 r = &reserved_match;
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003491 } else
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003492# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003493 if (r->flag == 0) { /* '!' */
3494 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003495 syntax_error("! ! command");
Denis Vlasenkobb929512009-04-16 10:59:40 +00003496 ctx->ctx_res_w = RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00003497 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003498 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00003499 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003500 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003501 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003502 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003503
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003504 old = xmalloc(sizeof(*old));
3505 debug_printf_parse("push stack %p\n", old);
3506 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003507 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003508 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003509 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003510 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003511 ctx->ctx_res_w = RES_SNTX;
3512 return 1;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003513 } else {
3514 /* "{...} fi" is ok. "{...} if" is not
3515 * Example:
3516 * if { echo foo; } then { echo bar; } fi */
3517 if (ctx->command->group)
3518 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003519 }
Denis Vlasenkobb929512009-04-16 10:59:40 +00003520
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003521 ctx->ctx_res_w = r->res;
3522 ctx->old_flag = r->flag;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003523 word->o_assignment = r->assignment_flag;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003524 debug_printf_parse("word->o_assignment='%s'\n", assignment_flag[word->o_assignment]);
Denis Vlasenkobb929512009-04-16 10:59:40 +00003525
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003526 if (ctx->old_flag & FLAG_END) {
3527 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003528
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003529 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003530 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003531 old = ctx->stack;
3532 old->command->group = ctx->list_head;
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003533 old->command->cmd_type = CMD_NORMAL;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003534# if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02003535 /* At this point, the compound command's string is in
3536 * ctx->as_string... except for the leading keyword!
3537 * Consider this example: "echo a | if true; then echo a; fi"
3538 * ctx->as_string will contain "true; then echo a; fi",
3539 * with "if " remaining in old->as_string!
3540 */
3541 {
3542 char *str;
3543 int len = old->as_string.length;
3544 /* Concatenate halves */
3545 o_addstr(&old->as_string, ctx->as_string.data);
3546 o_free_unsafe(&ctx->as_string);
3547 /* Find where leading keyword starts in first half */
3548 str = old->as_string.data + len;
3549 if (str > old->as_string.data)
3550 str--; /* skip whitespace after keyword */
3551 while (str > old->as_string.data && isalpha(str[-1]))
3552 str--;
3553 /* Ugh, we're done with this horrid hack */
3554 old->command->group_as_string = xstrdup(str);
3555 debug_printf_parse("pop, remembering as:'%s'\n",
3556 old->command->group_as_string);
3557 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003558# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003559 *ctx = *old; /* physical copy */
3560 free(old);
3561 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003562 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003563}
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003564#endif /* HAS_KEYWORDS */
Eric Andersen25f27032001-04-26 23:22:31 +00003565
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003566/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003567 * Normal return is 0. Syntax errors return 1.
3568 * Note: on return, word is reset, but not o_free'd!
3569 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003570static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003571{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003572 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00003573
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003574 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denys Vlasenko38292b62010-09-05 14:49:40 +02003575 if (word->length == 0 && !word->has_quoted_part) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003576 debug_printf_parse("done_word return 0: true null, ignored\n");
3577 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003578 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003579
Eric Andersen25f27032001-04-26 23:22:31 +00003580 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003581 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
3582 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003583 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3584 * "2.7 Redirection
3585 * ...the word that follows the redirection operator
3586 * shall be subjected to tilde expansion, parameter expansion,
3587 * command substitution, arithmetic expansion, and quote
3588 * removal. Pathname expansion shall not be performed
3589 * on the word by a non-interactive shell; an interactive
3590 * shell may perform it, but shall do so only when
3591 * the expansion would result in one word."
3592 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003593 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003594 /* Cater for >\file case:
3595 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
3596 * Same with heredocs:
3597 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
3598 */
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003599 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC) {
3600 unbackslash(ctx->pending_redirect->rd_filename);
3601 /* Is it <<"HEREDOC"? */
Denys Vlasenko38292b62010-09-05 14:49:40 +02003602 if (word->has_quoted_part) {
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003603 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
3604 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003605 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003606 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003607 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003608 } else {
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003609#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003610# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00003611 if (ctx->ctx_dsemicolon
3612 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
3613 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003614 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003615 /* ctx->ctx_res_w = RES_MATCH; */
3616 ctx->ctx_dsemicolon = 0;
3617 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003618# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003619 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003620# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003621 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
3622 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003623# endif
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003624# if ENABLE_HUSH_CASE
3625 && ctx->ctx_res_w != RES_CASE
3626# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003627 ) {
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003628 int reserved = reserved_word(word, ctx);
3629 debug_printf_parse("checking for reserved-ness: %d\n", reserved);
3630 if (reserved) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003631 o_reset_to_empty_unquoted(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003632 debug_printf_parse("done_word return %d\n",
3633 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003634 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003635 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01003636# if BASH_TEST2
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003637 if (strcmp(word->data, "[[") == 0) {
3638 command->cmd_type = CMD_SINGLEWORD_NOGLOB;
3639 }
3640 /* fall through */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02003641# endif
Eric Andersen25f27032001-04-26 23:22:31 +00003642 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003643#endif
Denis Vlasenkobb929512009-04-16 10:59:40 +00003644 if (command->group) {
3645 /* "{ echo foo; } echo bar" - bad */
3646 syntax_error_at(word->data);
3647 debug_printf_parse("done_word return 1: syntax error, "
3648 "groups and arglists don't mix\n");
3649 return 1;
3650 }
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003651
3652 /* If this word wasn't an assignment, next ones definitely
3653 * can't be assignments. Even if they look like ones. */
3654 if (word->o_assignment != DEFINITELY_ASSIGNMENT
3655 && word->o_assignment != WORD_IS_KEYWORD
3656 ) {
3657 word->o_assignment = NOT_ASSIGNMENT;
3658 } else {
3659 if (word->o_assignment == DEFINITELY_ASSIGNMENT) {
3660 command->assignment_cnt++;
3661 debug_printf_parse("++assignment_cnt=%d\n", command->assignment_cnt);
3662 }
3663 debug_printf_parse("word->o_assignment was:'%s'\n", assignment_flag[word->o_assignment]);
3664 word->o_assignment = MAYBE_ASSIGNMENT;
3665 }
3666 debug_printf_parse("word->o_assignment='%s'\n", assignment_flag[word->o_assignment]);
3667
Denys Vlasenko38292b62010-09-05 14:49:40 +02003668 if (word->has_quoted_part
Denis Vlasenko55789c62008-06-18 16:30:42 +00003669 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
3670 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003671 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003672 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003673 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003674 char *p = word->data;
3675 while (p[0] == SPECIAL_VAR_SYMBOL
3676 && (p[1] & 0x7f) == '@'
3677 && p[2] == SPECIAL_VAR_SYMBOL
3678 ) {
3679 p += 3;
3680 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00003681 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003682 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003683 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003684 }
Eric Andersen25f27032001-04-26 23:22:31 +00003685
Denis Vlasenko06810332007-05-21 23:30:54 +00003686#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003687 if (ctx->ctx_res_w == RES_FOR) {
Denys Vlasenko38292b62010-09-05 14:49:40 +02003688 if (word->has_quoted_part
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003689 || !is_well_formed_var_name(command->argv[0], '\0')
3690 ) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003691 /* bash says just "not a valid identifier" */
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003692 syntax_error("not a valid identifier in for");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003693 return 1;
3694 }
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003695 /* Force FOR to have just one word (variable name) */
3696 /* NB: basically, this makes hush see "for v in ..."
3697 * syntax as if it is "for v; in ...". FOR and IN become
3698 * two pipe structs in parse tree. */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003699 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003700 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003701#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003702#if ENABLE_HUSH_CASE
3703 /* Force CASE to have just one word */
3704 if (ctx->ctx_res_w == RES_CASE) {
3705 done_pipe(ctx, PIPE_SEQ);
3706 }
3707#endif
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003708
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003709 o_reset_to_empty_unquoted(word);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003710
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003711 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003712 return 0;
3713}
3714
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003715
3716/* Peek ahead in the input to find out if we have a "&n" construct,
3717 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003718 * Return:
3719 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
3720 * REDIRFD_SYNTAX_ERR if syntax error,
3721 * REDIRFD_TO_FILE if no & was seen,
3722 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003723 */
3724#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003725#define parse_redir_right_fd(as_string, input) \
3726 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003727#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003728static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003729{
3730 int ch, d, ok;
3731
3732 ch = i_peek(input);
3733 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003734 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003735
3736 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003737 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003738 ch = i_peek(input);
3739 if (ch == '-') {
3740 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003741 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003742 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003743 }
3744 d = 0;
3745 ok = 0;
3746 while (ch != EOF && isdigit(ch)) {
3747 d = d*10 + (ch-'0');
3748 ok = 1;
3749 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003750 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003751 ch = i_peek(input);
3752 }
3753 if (ok) return d;
3754
3755//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
3756
3757 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003758 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003759}
3760
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003761/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003762 */
3763static int parse_redirect(struct parse_context *ctx,
3764 int fd,
3765 redir_type style,
3766 struct in_str *input)
3767{
3768 struct command *command = ctx->command;
3769 struct redir_struct *redir;
3770 struct redir_struct **redirp;
3771 int dup_num;
3772
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003773 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003774 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003775 /* Check for a '>&1' type redirect */
3776 dup_num = parse_redir_right_fd(&ctx->as_string, input);
3777 if (dup_num == REDIRFD_SYNTAX_ERR)
3778 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003779 } else {
3780 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003781 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003782 if (dup_num) { /* <<-... */
3783 ch = i_getch(input);
3784 nommu_addchr(&ctx->as_string, ch);
3785 ch = i_peek(input);
3786 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003787 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003788
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003789 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003790 int ch = i_peek(input);
3791 if (ch == '|') {
3792 /* >|FILE redirect ("clobbering" >).
3793 * Since we do not support "set -o noclobber" yet,
3794 * >| and > are the same for now. Just eat |.
3795 */
3796 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003797 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003798 }
3799 }
3800
3801 /* Create a new redir_struct and append it to the linked list */
3802 redirp = &command->redirects;
3803 while ((redir = *redirp) != NULL) {
3804 redirp = &(redir->next);
3805 }
3806 *redirp = redir = xzalloc(sizeof(*redir));
3807 /* redir->next = NULL; */
3808 /* redir->rd_filename = NULL; */
3809 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003810 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003811
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003812 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
3813 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003814
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003815 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003816 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003817 /* Erik had a check here that the file descriptor in question
3818 * is legit; I postpone that to "run time"
3819 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003820 debug_printf_parse("duplicating redirect '%d>&%d'\n",
3821 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003822 } else {
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02003823#if 0 /* Instead we emit error message at run time */
3824 if (ctx->pending_redirect) {
3825 /* For example, "cmd > <file" */
3826 die_if_script("syntax error: %s", "invalid redirect");
3827 }
3828#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003829 /* Set ctx->pending_redirect, so we know what to do at the
3830 * end of the next parsed word. */
3831 ctx->pending_redirect = redir;
3832 }
3833 return 0;
3834}
3835
Eric Andersen25f27032001-04-26 23:22:31 +00003836/* If a redirect is immediately preceded by a number, that number is
3837 * supposed to tell which file descriptor to redirect. This routine
3838 * looks for such preceding numbers. In an ideal world this routine
3839 * needs to handle all the following classes of redirects...
3840 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
3841 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
3842 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
3843 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003844 *
3845 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3846 * "2.7 Redirection
3847 * ... If n is quoted, the number shall not be recognized as part of
3848 * the redirection expression. For example:
3849 * echo \2>a
3850 * writes the character 2 into file a"
Denys Vlasenko38292b62010-09-05 14:49:40 +02003851 * We are getting it right by setting ->has_quoted_part on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003852 *
3853 * A -1 return means no valid number was found,
3854 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00003855 */
3856static int redirect_opt_num(o_string *o)
3857{
3858 int num;
3859
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003860 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003861 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003862 num = bb_strtou(o->data, NULL, 10);
3863 if (errno || num < 0)
3864 return -1;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003865 o_reset_to_empty_unquoted(o);
Eric Andersen25f27032001-04-26 23:22:31 +00003866 return num;
3867}
3868
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003869#if BB_MMU
3870#define fetch_till_str(as_string, input, word, skip_tabs) \
3871 fetch_till_str(input, word, skip_tabs)
3872#endif
3873static char *fetch_till_str(o_string *as_string,
3874 struct in_str *input,
3875 const char *word,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003876 int heredoc_flags)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003877{
3878 o_string heredoc = NULL_O_STRING;
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003879 unsigned past_EOL;
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003880 int prev = 0; /* not \ */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003881 int ch;
3882
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003883 goto jump_in;
Denys Vlasenkob8709032011-05-08 21:20:01 +02003884
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003885 while (1) {
3886 ch = i_getch(input);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003887 if (ch != EOF)
3888 nommu_addchr(as_string, ch);
3889 if ((ch == '\n' || ch == EOF)
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003890 && ((heredoc_flags & HEREDOC_QUOTED) || prev != '\\')
3891 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003892 if (strcmp(heredoc.data + past_EOL, word) == 0) {
3893 heredoc.data[past_EOL] = '\0';
3894 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
3895 return heredoc.data;
3896 }
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003897 while (ch == '\n') {
3898 o_addchr(&heredoc, ch);
3899 prev = ch;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003900 jump_in:
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003901 past_EOL = heredoc.length;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003902 do {
3903 ch = i_getch(input);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003904 if (ch != EOF)
3905 nommu_addchr(as_string, ch);
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003906 } while ((heredoc_flags & HEREDOC_SKIPTABS) && ch == '\t');
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003907 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003908 }
3909 if (ch == EOF) {
3910 o_free_unsafe(&heredoc);
3911 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003912 }
3913 o_addchr(&heredoc, ch);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003914 nommu_addchr(as_string, ch);
Denys Vlasenkoc3adfac2010-09-06 11:46:03 +02003915 if (prev == '\\' && ch == '\\')
3916 /* Correctly handle foo\\<eol> (not a line cont.) */
3917 prev = 0; /* not \ */
3918 else
3919 prev = ch;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003920 }
3921}
3922
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003923/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
3924 * and load them all. There should be exactly heredoc_cnt of them.
3925 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003926static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
3927{
3928 struct pipe *pi = ctx->list_head;
3929
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003930 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003931 int i;
3932 struct command *cmd = pi->cmds;
3933
3934 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
3935 pi->num_cmds,
3936 cmd->argv ? cmd->argv[0] : "NONE");
3937 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003938 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003939
3940 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
3941 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003942 while (redir) {
3943 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003944 char *p;
3945
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003946 redir->rd_type = REDIRECT_HEREDOC2;
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003947 /* redir->rd_dup is (ab)used to indicate <<- */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003948 p = fetch_till_str(&ctx->as_string, input,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003949 redir->rd_filename, redir->rd_dup);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003950 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003951 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003952 return 1;
3953 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003954 free(redir->rd_filename);
3955 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003956 heredoc_cnt--;
3957 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003958 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003959 }
3960 cmd++;
3961 }
3962 pi = pi->next;
3963 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003964#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003965 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003966 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003967 bb_error_msg_and_die("heredoc BUG 2");
3968#endif
3969 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003970}
3971
3972
Denys Vlasenkob36abf22010-09-05 14:50:59 +02003973static int run_list(struct pipe *pi);
3974#if BB_MMU
3975#define parse_stream(pstring, input, end_trigger) \
3976 parse_stream(input, end_trigger)
3977#endif
3978static struct pipe *parse_stream(char **pstring,
3979 struct in_str *input,
3980 int end_trigger);
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003981
Eric Andersen25f27032001-04-26 23:22:31 +00003982
Denys Vlasenkoc2704542009-11-20 19:14:19 +01003983#if !ENABLE_HUSH_FUNCTIONS
3984#define parse_group(dest, ctx, input, ch) \
3985 parse_group(ctx, input, ch)
3986#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003987static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00003988 struct in_str *input, int ch)
3989{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003990 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00003991 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003992 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003993 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00003994 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003995 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003996
3997 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003998#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko38292b62010-09-05 14:49:40 +02003999 if (ch == '(' && !dest->has_quoted_part) {
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004000 if (dest->length)
Denis Vlasenkobb929512009-04-16 10:59:40 +00004001 if (done_word(dest, ctx))
4002 return 1;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004003 if (!command->argv)
4004 goto skip; /* (... */
4005 if (command->argv[1]) { /* word word ... (... */
4006 syntax_error_unexpected_ch('(');
4007 return 1;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004008 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004009 /* it is "word(..." or "word (..." */
4010 do
4011 ch = i_getch(input);
4012 while (ch == ' ' || ch == '\t');
4013 if (ch != ')') {
4014 syntax_error_unexpected_ch(ch);
4015 return 1;
4016 }
4017 nommu_addchr(&ctx->as_string, ch);
4018 do
4019 ch = i_getch(input);
4020 while (ch == ' ' || ch == '\t' || ch == '\n');
4021 if (ch != '{') {
4022 syntax_error_unexpected_ch(ch);
4023 return 1;
4024 }
4025 nommu_addchr(&ctx->as_string, ch);
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004026 command->cmd_type = CMD_FUNCDEF;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004027 goto skip;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004028 }
4029#endif
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004030
4031#if 0 /* Prevented by caller */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004032 if (command->argv /* word [word]{... */
4033 || dest->length /* word{... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004034 || dest->has_quoted_part /* ""{... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004035 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004036 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004037 debug_printf_parse("parse_group return 1: "
4038 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004039 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004040 }
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004041#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004042
4043#if ENABLE_HUSH_FUNCTIONS
4044 skip:
4045#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00004046 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004047 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00004048 endch = ')';
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004049 command->cmd_type = CMD_SUBSHELL;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004050 } else {
4051 /* bash does not allow "{echo...", requires whitespace */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004052 ch = i_peek(input);
4053 if (ch != ' ' && ch != '\t' && ch != '\n'
4054 && ch != '(' /* but "{(..." is allowed (without whitespace) */
4055 ) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004056 syntax_error_unexpected_ch(ch);
4057 return 1;
4058 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004059 if (ch != '(') {
4060 ch = i_getch(input);
4061 nommu_addchr(&ctx->as_string, ch);
4062 }
Eric Andersen25f27032001-04-26 23:22:31 +00004063 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004064
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004065 {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004066#if BB_MMU
4067# define as_string NULL
4068#else
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004069 char *as_string = NULL;
4070#endif
4071 pipe_list = parse_stream(&as_string, input, endch);
4072#if !BB_MMU
4073 if (as_string)
4074 o_addstr(&ctx->as_string, as_string);
4075#endif
4076 /* empty ()/{} or parse error? */
4077 if (!pipe_list || pipe_list == ERR_PTR) {
Denis Vlasenkobb929512009-04-16 10:59:40 +00004078 /* parse_stream already emitted error msg */
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004079 if (!BB_MMU)
4080 free(as_string);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004081 debug_printf_parse("parse_group return 1: "
4082 "parse_stream returned %p\n", pipe_list);
4083 return 1;
4084 }
4085 command->group = pipe_list;
4086#if !BB_MMU
4087 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
4088 command->group_as_string = as_string;
4089 debug_printf_parse("end of group, remembering as:'%s'\n",
4090 command->group_as_string);
4091#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004092#undef as_string
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004093 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004094 debug_printf_parse("parse_group return 0\n");
4095 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004096 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00004097}
4098
Denys Vlasenko46e64982016-09-29 19:50:55 +02004099static int i_getch_and_eat_bkslash_nl(struct in_str *input)
4100{
4101 for (;;) {
4102 int ch, ch2;
4103
4104 ch = i_getch(input);
4105 if (ch != '\\')
4106 return ch;
4107 ch2 = i_peek(input);
4108 if (ch2 != '\n')
4109 return ch;
4110 /* backslash+newline, skip it */
4111 i_getch(input);
4112 }
4113}
4114
Denys Vlasenko657086a2016-09-29 18:07:42 +02004115static int i_peek_and_eat_bkslash_nl(struct in_str *input)
4116{
4117 for (;;) {
4118 int ch, ch2;
4119
4120 ch = i_peek(input);
4121 if (ch != '\\')
4122 return ch;
4123 ch2 = i_peek2(input);
4124 if (ch2 != '\n')
4125 return ch;
4126 /* backslash+newline, skip it */
4127 i_getch(input);
4128 i_getch(input);
4129 }
4130}
4131
Denys Vlasenko0b883582016-12-23 16:49:07 +01004132#if ENABLE_HUSH_TICK || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_DOLLAR_OPS
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004133/* Subroutines for copying $(...) and `...` things */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004134static int add_till_backquote(o_string *dest, struct in_str *input, int in_dquote);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004135/* '...' */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004136static int add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004137{
4138 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004139 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004140 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004141 syntax_error_unterm_ch('\'');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004142 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004143 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004144 if (ch == '\'')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004145 return 1;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004146 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004147 }
4148}
4149/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004150static int add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004151{
4152 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004153 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004154 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004155 syntax_error_unterm_ch('"');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004156 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004157 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004158 if (ch == '"')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004159 return 1;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004160 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004161 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004162 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004163 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004164 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004165 if (ch == '`') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004166 if (!add_till_backquote(dest, input, /*in_dquote:*/ 1))
4167 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004168 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004169 continue;
4170 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00004171 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004172 }
4173}
4174/* Process `cmd` - copy contents until "`" is seen. Complicated by
4175 * \` quoting.
4176 * "Within the backquoted style of command substitution, backslash
4177 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
4178 * The search for the matching backquote shall be satisfied by the first
4179 * backquote found without a preceding backslash; during this search,
4180 * if a non-escaped backquote is encountered within a shell comment,
4181 * a here-document, an embedded command substitution of the $(command)
4182 * form, or a quoted string, undefined results occur. A single-quoted
4183 * or double-quoted string that begins, but does not end, within the
4184 * "`...`" sequence produces undefined results."
4185 * Example Output
4186 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
4187 */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004188static int add_till_backquote(o_string *dest, struct in_str *input, int in_dquote)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004189{
4190 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004191 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004192 if (ch == '`')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004193 return 1;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004194 if (ch == '\\') {
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02004195 /* \x. Copy both unless it is \`, \$, \\ and maybe \" */
4196 ch = i_getch(input);
4197 if (ch != '`'
4198 && ch != '$'
4199 && ch != '\\'
4200 && (!in_dquote || ch != '"')
4201 ) {
4202 o_addchr(dest, '\\');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004203 }
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02004204 }
4205 if (ch == EOF) {
4206 syntax_error_unterm_ch('`');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004207 return 0;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004208 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004209 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004210 }
4211}
4212/* Process $(cmd) - copy contents until ")" is seen. Complicated by
4213 * quoting and nested ()s.
4214 * "With the $(command) style of command substitution, all characters
4215 * following the open parenthesis to the matching closing parenthesis
4216 * constitute the command. Any valid shell script can be used for command,
4217 * except a script consisting solely of redirections which produces
4218 * unspecified results."
4219 * Example Output
4220 * echo $(echo '(TEST)' BEST) (TEST) BEST
4221 * echo $(echo 'TEST)' BEST) TEST) BEST
4222 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
Denys Vlasenko74369502010-05-21 19:52:01 +02004223 *
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004224 * Also adapted to eat ${var%...} and $((...)) constructs, since ... part
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004225 * can contain arbitrary constructs, just like $(cmd).
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004226 * In bash compat mode, it needs to also be able to stop on ':' or '/'
4227 * for ${var:N[:M]} and ${var/P[/R]} parsing.
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004228 */
Denys Vlasenko74369502010-05-21 19:52:01 +02004229#define DOUBLE_CLOSE_CHAR_FLAG 0x80
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004230static int add_till_closing_bracket(o_string *dest, struct in_str *input, unsigned end_ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004231{
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004232 int ch;
Denys Vlasenko74369502010-05-21 19:52:01 +02004233 char dbl = end_ch & DOUBLE_CLOSE_CHAR_FLAG;
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004234# if BASH_SUBSTR || BASH_PATTERN_SUBST
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004235 char end_char2 = end_ch >> 8;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004236# endif
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004237 end_ch &= (DOUBLE_CLOSE_CHAR_FLAG - 1);
4238
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004239 while (1) {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004240 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004241 if (ch == EOF) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004242 syntax_error_unterm_ch(end_ch);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004243 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004244 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004245 if (ch == end_ch
4246# if BASH_SUBSTR || BASH_PATTERN_SUBST
4247 || ch == end_char2
4248# endif
4249 ) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004250 if (!dbl)
4251 break;
4252 /* we look for closing )) of $((EXPR)) */
Denys Vlasenko657086a2016-09-29 18:07:42 +02004253 if (i_peek_and_eat_bkslash_nl(input) == end_ch) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004254 i_getch(input); /* eat second ')' */
4255 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004256 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004257 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004258 o_addchr(dest, ch);
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004259 if (ch == '(' || ch == '{') {
4260 ch = (ch == '(' ? ')' : '}');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004261 if (!add_till_closing_bracket(dest, input, ch))
4262 return 0;
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004263 o_addchr(dest, ch);
4264 continue;
4265 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004266 if (ch == '\'') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004267 if (!add_till_single_quote(dest, input))
4268 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004269 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004270 continue;
4271 }
4272 if (ch == '"') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004273 if (!add_till_double_quote(dest, input))
4274 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004275 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004276 continue;
4277 }
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004278 if (ch == '`') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004279 if (!add_till_backquote(dest, input, /*in_dquote:*/ 0))
4280 return 0;
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004281 o_addchr(dest, ch);
4282 continue;
4283 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004284 if (ch == '\\') {
4285 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004286 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004287 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004288 syntax_error_unterm_ch(')');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004289 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004290 }
Denys Vlasenko657086a2016-09-29 18:07:42 +02004291#if 0
4292 if (ch == '\n') {
4293 /* "backslash+newline", ignore both */
4294 o_delchr(dest); /* undo insertion of '\' */
4295 continue;
4296 }
4297#endif
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004298 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004299 continue;
4300 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004301 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004302 return ch;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004303}
Denys Vlasenko0b883582016-12-23 16:49:07 +01004304#endif /* ENABLE_HUSH_TICK || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_DOLLAR_OPS */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004305
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004306/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004307#if BB_MMU
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004308#define parse_dollar(as_string, dest, input, quote_mask) \
4309 parse_dollar(dest, input, quote_mask)
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004310#define as_string NULL
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004311#endif
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004312static int parse_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004313 o_string *dest,
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004314 struct in_str *input, unsigned char quote_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00004315{
Denys Vlasenko657086a2016-09-29 18:07:42 +02004316 int ch = i_peek_and_eat_bkslash_nl(input); /* first character after the $ */
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004317
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004318 debug_printf_parse("parse_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004319 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004320 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004321 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00004322 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004323 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004324 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004325 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004326 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004327 quote_mask = 0;
Denys Vlasenko657086a2016-09-29 18:07:42 +02004328 ch = i_peek_and_eat_bkslash_nl(input);
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004329 if (!isalnum(ch) && ch != '_') {
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004330 /* End of variable name reached */
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004331 break;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004332 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004333 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004334 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004335 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004336 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004337 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004338 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004339 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004340 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004341 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004342 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004343 o_addchr(dest, ch | quote_mask);
4344 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004345 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004346 case '$': /* pid */
4347 case '!': /* last bg pid */
4348 case '?': /* last exit code */
4349 case '#': /* number of args */
4350 case '*': /* args */
4351 case '@': /* args */
4352 goto make_one_char_var;
4353 case '{': {
Mike Frysingeref3e7fd2009-06-01 14:13:39 -04004354 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4355
Denys Vlasenko74369502010-05-21 19:52:01 +02004356 ch = i_getch(input); /* eat '{' */
4357 nommu_addchr(as_string, ch);
4358
Denys Vlasenko46e64982016-09-29 19:50:55 +02004359 ch = i_getch_and_eat_bkslash_nl(input); /* first char after '{' */
Denys Vlasenko74369502010-05-21 19:52:01 +02004360 /* It should be ${?}, or ${#var},
4361 * or even ${?+subst} - operator acting on a special variable,
4362 * or the beginning of variable name.
4363 */
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004364 if (ch == EOF
4365 || (!strchr(_SPECIAL_VARS_STR, ch) && !isalnum(ch)) /* not one of those */
4366 ) {
Denys Vlasenko74369502010-05-21 19:52:01 +02004367 bad_dollar_syntax:
4368 syntax_error_unterm_str("${name}");
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004369 debug_printf_parse("parse_dollar return 0: unterminated ${name}\n");
4370 return 0;
Denys Vlasenko74369502010-05-21 19:52:01 +02004371 }
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004372 nommu_addchr(as_string, ch);
Denys Vlasenko74369502010-05-21 19:52:01 +02004373 ch |= quote_mask;
4374
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004375 /* It's possible to just call add_till_closing_bracket() at this point.
Denys Vlasenko74369502010-05-21 19:52:01 +02004376 * However, this regresses some of our testsuite cases
4377 * which check invalid constructs like ${%}.
4378 * Oh well... let's check that the var name part is fine... */
4379
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004380 while (1) {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004381 unsigned pos;
4382
Denys Vlasenko74369502010-05-21 19:52:01 +02004383 o_addchr(dest, ch);
4384 debug_printf_parse(": '%c'\n", ch);
4385
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004386 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004387 nommu_addchr(as_string, ch);
Denys Vlasenko74369502010-05-21 19:52:01 +02004388 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00004389 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004390
Denys Vlasenko74369502010-05-21 19:52:01 +02004391 if (!isalnum(ch) && ch != '_') {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004392 unsigned end_ch;
4393 unsigned char last_ch;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004394 /* handle parameter expansions
4395 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
4396 */
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004397 if (!strchr(VAR_SUBST_OPS, ch)) /* ${var<bad_char>... */
Denys Vlasenko74369502010-05-21 19:52:01 +02004398 goto bad_dollar_syntax;
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004399
4400 /* Eat everything until closing '}' (or ':') */
4401 end_ch = '}';
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004402 if (BASH_SUBSTR
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004403 && ch == ':'
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004404 && !strchr(MINUS_PLUS_EQUAL_QUESTION, i_peek(input))
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004405 ) {
4406 /* It's ${var:N[:M]} thing */
4407 end_ch = '}' * 0x100 + ':';
4408 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004409 if (BASH_PATTERN_SUBST
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004410 && ch == '/'
4411 ) {
4412 /* It's ${var/[/]pattern[/repl]} thing */
4413 if (i_peek(input) == '/') { /* ${var//pattern[/repl]}? */
4414 i_getch(input);
4415 nommu_addchr(as_string, '/');
4416 ch = '\\';
4417 }
4418 end_ch = '}' * 0x100 + '/';
4419 }
4420 o_addchr(dest, ch);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004421 again:
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004422 if (!BB_MMU)
4423 pos = dest->length;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004424#if ENABLE_HUSH_DOLLAR_OPS
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004425 last_ch = add_till_closing_bracket(dest, input, end_ch);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004426 if (last_ch == 0) /* error? */
4427 return 0;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004428#else
4429#error Simple code to only allow ${var} is not implemented
4430#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004431 if (as_string) {
4432 o_addstr(as_string, dest->data + pos);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004433 o_addchr(as_string, last_ch);
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004434 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004435
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004436 if ((BASH_SUBSTR || BASH_PATTERN_SUBST)
4437 && (end_ch & 0xff00)
4438 ) {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004439 /* close the first block: */
4440 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004441 /* while parsing N from ${var:N[:M]}
4442 * or pattern from ${var/[/]pattern[/repl]} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004443 if ((end_ch & 0xff) == last_ch) {
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004444 /* got ':' or '/'- parse the rest */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004445 end_ch = '}';
4446 goto again;
4447 }
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004448 /* got '}' */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004449 if (BASH_SUBSTR && end_ch == '}' * 0x100 + ':') {
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004450 /* it's ${var:N} - emulate :999999999 */
4451 o_addstr(dest, "999999999");
4452 } /* else: it's ${var/[/]pattern} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004453 }
Denys Vlasenko74369502010-05-21 19:52:01 +02004454 break;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004455 }
Denys Vlasenko74369502010-05-21 19:52:01 +02004456 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004457 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4458 break;
4459 }
Denys Vlasenko0b883582016-12-23 16:49:07 +01004460#if ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004461 case '(': {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004462 unsigned pos;
4463
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004464 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004465 nommu_addchr(as_string, ch);
Denys Vlasenko0b883582016-12-23 16:49:07 +01004466# if ENABLE_FEATURE_SH_MATH
Denys Vlasenko657086a2016-09-29 18:07:42 +02004467 if (i_peek_and_eat_bkslash_nl(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004468 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004469 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004470 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4471 o_addchr(dest, /*quote_mask |*/ '+');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004472 if (!BB_MMU)
4473 pos = dest->length;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004474 if (!add_till_closing_bracket(dest, input, ')' | DOUBLE_CLOSE_CHAR_FLAG))
4475 return 0; /* error */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004476 if (as_string) {
4477 o_addstr(as_string, dest->data + pos);
4478 o_addchr(as_string, ')');
4479 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004480 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004481 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004482 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004483 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004484# endif
4485# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004486 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4487 o_addchr(dest, quote_mask | '`');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004488 if (!BB_MMU)
4489 pos = dest->length;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004490 if (!add_till_closing_bracket(dest, input, ')'))
4491 return 0; /* error */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004492 if (as_string) {
4493 o_addstr(as_string, dest->data + pos);
Denys Vlasenkob70cef72010-01-12 13:45:45 +01004494 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004495 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004496 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004497# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004498 break;
4499 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004500#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004501 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004502 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004503 nommu_addchr(as_string, ch);
Denys Vlasenko657086a2016-09-29 18:07:42 +02004504 ch = i_peek_and_eat_bkslash_nl(input);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004505 if (isalnum(ch)) { /* it's $_name or $_123 */
4506 ch = '_';
4507 goto make_var;
4508 }
4509 /* else: it's $_ */
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02004510 /* TODO: $_ and $-: */
4511 /* $_ Shell or shell script name; or last argument of last command
4512 * (if last command wasn't a pipe; if it was, bash sets $_ to "");
4513 * but in command's env, set to full pathname used to invoke it */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004514 /* $- Option flags set by set builtin or shell options (-i etc) */
4515 default:
4516 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00004517 }
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004518 debug_printf_parse("parse_dollar return 1 (ok)\n");
4519 return 1;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004520#undef as_string
Eric Andersen25f27032001-04-26 23:22:31 +00004521}
4522
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004523#if BB_MMU
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004524# if BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004525#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4526 encode_string(dest, input, dquote_end, process_bkslash)
4527# else
4528/* only ${var/pattern/repl} (its pattern part) needs additional mode */
4529#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4530 encode_string(dest, input, dquote_end)
4531# endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004532#define as_string NULL
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004533
4534#else /* !MMU */
4535
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004536# if BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004537/* all parameters are needed, no macro tricks */
4538# else
4539#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4540 encode_string(as_string, dest, input, dquote_end)
4541# endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004542#endif
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004543static int encode_string(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004544 o_string *dest,
4545 struct in_str *input,
Denys Vlasenko14e289b2010-09-10 10:15:18 +02004546 int dquote_end,
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004547 int process_bkslash)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004548{
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004549#if !BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004550 const int process_bkslash = 1;
4551#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004552 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004553 int next;
4554
4555 again:
4556 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004557 if (ch != EOF)
4558 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004559 if (ch == dquote_end) { /* may be only '"' or EOF */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004560 debug_printf_parse("encode_string return 1 (ok)\n");
4561 return 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004562 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004563 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004564 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004565 syntax_error_unterm_ch('"');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004566 return 0; /* error */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004567 }
4568 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004569 if (ch != '\n') {
4570 next = i_peek(input);
4571 }
Denys Vlasenkof37eb392009-10-18 11:46:35 +02004572 debug_printf_parse("\" ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004573 ch, ch, !!(dest->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004574 if (process_bkslash && ch == '\\') {
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004575 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004576 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004577 xfunc_die();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004578 }
4579 /* bash:
4580 * "The backslash retains its special meaning [in "..."]
4581 * only when followed by one of the following characters:
4582 * $, `, ", \, or <newline>. A double quote may be quoted
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02004583 * within double quotes by preceding it with a backslash."
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004584 * NB: in (unquoted) heredoc, above does not apply to ",
4585 * therefore we check for it by "next == dquote_end" cond.
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004586 */
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004587 if (next == dquote_end || strchr("$`\\\n", next)) {
Denys Vlasenko850b15b2010-09-09 12:58:19 +02004588 ch = i_getch(input); /* eat next */
4589 if (ch == '\n')
4590 goto again; /* skip \<newline> */
Denys Vlasenko4f870492010-09-10 11:06:01 +02004591 } /* else: ch remains == '\\', and we double it below: */
4592 o_addqchr(dest, ch); /* \c if c is a glob char, else just c */
Denys Vlasenko850b15b2010-09-09 12:58:19 +02004593 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004594 goto again;
4595 }
4596 if (ch == '$') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004597 if (!parse_dollar(as_string, dest, input, /*quote_mask:*/ 0x80)) {
4598 debug_printf_parse("encode_string return 0: "
4599 "parse_dollar returned 0 (error)\n");
4600 return 0;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004601 }
4602 goto again;
4603 }
4604#if ENABLE_HUSH_TICK
4605 if (ch == '`') {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004606 //unsigned pos = dest->length;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004607 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4608 o_addchr(dest, 0x80 | '`');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004609 if (!add_till_backquote(dest, input, /*in_dquote:*/ dquote_end == '"'))
4610 return 0; /* error */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004611 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4612 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00004613 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004614 }
4615#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00004616 o_addQchr(dest, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004617 goto again;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004618#undef as_string
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004619}
4620
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004621/*
4622 * Scan input until EOF or end_trigger char.
4623 * Return a list of pipes to execute, or NULL on EOF
4624 * or if end_trigger character is met.
Denys Vlasenkocecbc982011-03-30 18:54:52 +02004625 * On syntax error, exit if shell is not interactive,
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004626 * reset parsing machinery and start parsing anew,
4627 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004628 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004629static struct pipe *parse_stream(char **pstring,
4630 struct in_str *input,
4631 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00004632{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004633 struct parse_context ctx;
4634 o_string dest = NULL_O_STRING;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004635 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00004636
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004637 /* Single-quote triggers a bypass of the main loop until its mate is
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004638 * found. When recursing, quote state is passed in via dest->o_expflags.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004639 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004640 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
Denys Vlasenko90a99042009-09-06 02:36:23 +02004641 end_trigger ? end_trigger : 'X');
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004642 debug_enter();
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004643
Denys Vlasenkof37eb392009-10-18 11:46:35 +02004644 /* If very first arg is "" or '', dest.data may end up NULL.
4645 * Preventing this: */
4646 o_addchr(&dest, '\0');
4647 dest.length = 0;
4648
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004649 /* We used to separate words on $IFS here. This was wrong.
4650 * $IFS is used only for word splitting when $var is expanded,
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004651 * here we should use blank chars as separators, not $IFS
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004652 */
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004653
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004654 if (MAYBE_ASSIGNMENT != 0)
4655 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004656 initialize_context(&ctx);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004657 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004658 while (1) {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004659 const char *is_blank;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004660 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004661 int ch;
4662 int next;
4663 int redir_fd;
4664 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004665
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004666 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004667 debug_printf_parse(": ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004668 ch, ch, !!(dest.o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004669 if (ch == EOF) {
4670 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004671
4672 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004673 syntax_error_unterm_str("here document");
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004674 goto parse_error;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004675 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004676 if (end_trigger == ')') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004677 syntax_error_unterm_ch('(');
4678 goto parse_error;
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004679 }
Denys Vlasenko42246472016-11-07 16:22:35 +01004680 if (end_trigger == '}') {
4681 syntax_error_unterm_ch('{');
4682 goto parse_error;
4683 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004684
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004685 if (done_word(&dest, &ctx)) {
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004686 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004687 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004688 o_free(&dest);
4689 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004690 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004691 /* If we got nothing... */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004692 /* (this makes bare "&" cmd a no-op.
4693 * bash says: "syntax error near unexpected token '&'") */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004694 if (pi->num_cmds == 0
Denys Vlasenko60cb48c2013-01-14 15:57:44 +01004695 IF_HAS_KEYWORDS(&& pi->res_word == RES_NONE)
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004696 ) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004697 free_pipe_list(pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004698 pi = NULL;
4699 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004700#if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02004701 debug_printf_parse("as_string1 '%s'\n", ctx.as_string.data);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004702 if (pstring)
4703 *pstring = ctx.as_string.data;
4704 else
4705 o_free_unsafe(&ctx.as_string);
4706#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004707 debug_leave();
4708 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004709 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004710 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004711 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004712
4713 next = '\0';
4714 if (ch != '\n')
4715 next = i_peek(input);
4716
4717 is_special = "{}<>;&|()#'" /* special outside of "str" */
4718 "\\$\"" IF_HUSH_TICK("`"); /* always special */
4719 /* Are { and } special here? */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02004720 if (ctx.command->argv /* word [word]{... - non-special */
4721 || dest.length /* word{... - non-special */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004722 || dest.has_quoted_part /* ""{... - non-special */
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004723 || (next != ';' /* }; - special */
4724 && next != ')' /* }) - special */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004725 && next != '(' /* {( - special */
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004726 && next != '&' /* }& and }&& ... - special */
4727 && next != '|' /* }|| ... - special */
4728 && !strchr(defifs, next) /* {word - non-special */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02004729 )
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004730 ) {
4731 /* They are not special, skip "{}" */
4732 is_special += 2;
4733 }
4734 is_special = strchr(is_special, ch);
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004735 is_blank = strchr(defifs, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004736
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004737 if (!is_special && !is_blank) { /* ordinary char */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00004738 ordinary_char:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004739 o_addQchr(&dest, ch);
4740 if ((dest.o_assignment == MAYBE_ASSIGNMENT
4741 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00004742 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004743 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00004744 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004745 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004746 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko55789c62008-06-18 16:30:42 +00004747 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004748 continue;
4749 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004750
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004751 if (is_blank) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004752 if (done_word(&dest, &ctx)) {
4753 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00004754 }
Denis Vlasenko37181682009-04-03 03:19:15 +00004755 if (ch == '\n') {
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004756 /* Is this a case when newline is simply ignored?
4757 * Some examples:
4758 * "cmd | <newline> cmd ..."
4759 * "case ... in <newline> word) ..."
4760 */
4761 if (IS_NULL_CMD(ctx.command)
4762 && dest.length == 0 && !dest.has_quoted_part
Denis Vlasenkof1736072008-07-31 10:09:26 +00004763 ) {
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004764 /* This newline can be ignored. But...
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004765 * Without check #1, interactive shell
4766 * ignores even bare <newline>,
4767 * and shows the continuation prompt:
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004768 * ps1_prompt$ <enter>
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004769 * ps2> _ <=== wrong, should be ps1
4770 * Without check #2, "cmd & <newline>"
4771 * is similarly mistreated.
4772 * (BTW, this makes "cmd & cmd"
4773 * and "cmd && cmd" non-orthogonal.
4774 * Really, ask yourself, why
4775 * "cmd && <newline>" doesn't start
4776 * cmd but waits for more input?
4777 * No reason...)
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004778 */
4779 struct pipe *pi = ctx.list_head;
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004780 if (pi->num_cmds != 0 /* check #1 */
4781 && pi->followup != PIPE_BG /* check #2 */
4782 ) {
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004783 continue;
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004784 }
Denis Vlasenkof1736072008-07-31 10:09:26 +00004785 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004786 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004787 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004788 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
4789 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004790 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004791 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004792 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004793 heredoc_cnt = 0;
4794 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004795 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004796 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko240c2552009-04-03 03:45:05 +00004797 ch = ';';
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004798 /* note: if (is_blank) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004799 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004800 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004801 }
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00004802
4803 /* "cmd}" or "cmd }..." without semicolon or &:
4804 * } is an ordinary char in this case, even inside { cmd; }
4805 * Pathological example: { ""}; } should exec "}" cmd
4806 */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004807 if (ch == '}') {
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004808 if (dest.length != 0 /* word} */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004809 || dest.has_quoted_part /* ""} */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004810 ) {
4811 goto ordinary_char;
4812 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004813 if (!IS_NULL_CMD(ctx.command)) { /* cmd } */
4814 /* Generally, there should be semicolon: "cmd; }"
4815 * However, bash allows to omit it if "cmd" is
4816 * a group. Examples:
4817 * { { echo 1; } }
4818 * {(echo 1)}
4819 * { echo 0 >&2 | { echo 1; } }
4820 * { while false; do :; done }
4821 * { case a in b) ;; esac }
4822 */
4823 if (ctx.command->group)
4824 goto term_group;
4825 goto ordinary_char;
4826 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004827 if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004828 /* Can't be an end of {cmd}, skip the check */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004829 goto skip_end_trigger;
4830 /* else: } does terminate a group */
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00004831 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004832 term_group:
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004833 if (end_trigger && end_trigger == ch
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004834 && (ch != ';' || heredoc_cnt == 0)
4835#if ENABLE_HUSH_CASE
4836 && (ch != ')'
4837 || ctx.ctx_res_w != RES_MATCH
Denys Vlasenko38292b62010-09-05 14:49:40 +02004838 || (!dest.has_quoted_part && strcmp(dest.data, "esac") == 0)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004839 )
4840#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004841 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004842 if (heredoc_cnt) {
4843 /* This is technically valid:
4844 * { cat <<HERE; }; echo Ok
4845 * heredoc
4846 * heredoc
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004847 * HERE
4848 * but we don't support this.
4849 * We require heredoc to be in enclosing {}/(),
4850 * if any.
4851 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004852 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004853 goto parse_error;
4854 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004855 if (done_word(&dest, &ctx)) {
4856 goto parse_error;
4857 }
4858 done_pipe(&ctx, PIPE_SEQ);
4859 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004860 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko240c2552009-04-03 03:45:05 +00004861 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00004862 if (!HAS_KEYWORDS
Denys Vlasenko60cb48c2013-01-14 15:57:44 +01004863 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00004864 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004865 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004866#if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02004867 debug_printf_parse("as_string2 '%s'\n", ctx.as_string.data);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004868 if (pstring)
4869 *pstring = ctx.as_string.data;
4870 else
4871 o_free_unsafe(&ctx.as_string);
4872#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004873 debug_leave();
4874 debug_printf_parse("parse_stream return %p: "
4875 "end_trigger char found\n",
4876 ctx.list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004877 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004878 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004879 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004880 skip_end_trigger:
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004881 if (is_blank)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004882 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004883
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004884 /* Catch <, > before deciding whether this word is
4885 * an assignment. a=1 2>z b=2: b=2 is still assignment */
4886 switch (ch) {
4887 case '>':
4888 redir_fd = redirect_opt_num(&dest);
4889 if (done_word(&dest, &ctx)) {
4890 goto parse_error;
4891 }
4892 redir_style = REDIRECT_OVERWRITE;
4893 if (next == '>') {
4894 redir_style = REDIRECT_APPEND;
4895 ch = i_getch(input);
4896 nommu_addchr(&ctx.as_string, ch);
4897 }
4898#if 0
4899 else if (next == '(') {
4900 syntax_error(">(process) not supported");
4901 goto parse_error;
4902 }
4903#endif
4904 if (parse_redirect(&ctx, redir_fd, redir_style, input))
4905 goto parse_error;
4906 continue; /* back to top of while (1) */
4907 case '<':
4908 redir_fd = redirect_opt_num(&dest);
4909 if (done_word(&dest, &ctx)) {
4910 goto parse_error;
4911 }
4912 redir_style = REDIRECT_INPUT;
4913 if (next == '<') {
4914 redir_style = REDIRECT_HEREDOC;
4915 heredoc_cnt++;
4916 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
4917 ch = i_getch(input);
4918 nommu_addchr(&ctx.as_string, ch);
4919 } else if (next == '>') {
4920 redir_style = REDIRECT_IO;
4921 ch = i_getch(input);
4922 nommu_addchr(&ctx.as_string, ch);
4923 }
4924#if 0
4925 else if (next == '(') {
4926 syntax_error("<(process) not supported");
4927 goto parse_error;
4928 }
4929#endif
4930 if (parse_redirect(&ctx, redir_fd, redir_style, input))
4931 goto parse_error;
4932 continue; /* back to top of while (1) */
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004933 case '#':
4934 if (dest.length == 0 && !dest.has_quoted_part) {
4935 /* skip "#comment" */
4936 while (1) {
4937 ch = i_peek(input);
4938 if (ch == EOF || ch == '\n')
4939 break;
4940 i_getch(input);
4941 /* note: we do not add it to &ctx.as_string */
4942 }
4943 nommu_addchr(&ctx.as_string, '\n');
4944 continue; /* back to top of while (1) */
4945 }
4946 break;
4947 case '\\':
4948 if (next == '\n') {
4949 /* It's "\<newline>" */
4950#if !BB_MMU
4951 /* Remove trailing '\' from ctx.as_string */
4952 ctx.as_string.data[--ctx.as_string.length] = '\0';
4953#endif
4954 ch = i_getch(input); /* eat it */
4955 continue; /* back to top of while (1) */
4956 }
4957 break;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004958 }
4959
4960 if (dest.o_assignment == MAYBE_ASSIGNMENT
4961 /* check that we are not in word in "a=1 2>word b=1": */
4962 && !ctx.pending_redirect
4963 ) {
4964 /* ch is a special char and thus this word
4965 * cannot be an assignment */
4966 dest.o_assignment = NOT_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004967 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004968 }
4969
Denys Vlasenkocbfe6ad2009-08-12 19:47:44 +02004970 /* Note: nommu_addchr(&ctx.as_string, ch) is already done */
4971
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004972 switch (ch) {
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004973 case '#': /* non-comment #: "echo a#b" etc */
4974 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004975 break;
4976 case '\\':
4977 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004978 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004979 xfunc_die();
Eric Andersen25f27032001-04-26 23:22:31 +00004980 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004981 ch = i_getch(input);
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004982 /* note: ch != '\n' (that case does not reach this place) */
4983 o_addchr(&dest, '\\');
4984 /*nommu_addchr(&ctx.as_string, '\\'); - already done */
4985 o_addchr(&dest, ch);
4986 nommu_addchr(&ctx.as_string, ch);
4987 /* Example: echo Hello \2>file
4988 * we need to know that word 2 is quoted */
4989 dest.has_quoted_part = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004990 break;
4991 case '$':
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004992 if (!parse_dollar(&ctx.as_string, &dest, input, /*quote_mask:*/ 0)) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004993 debug_printf_parse("parse_stream parse error: "
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004994 "parse_dollar returned 0 (error)\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004995 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004996 }
Eric Andersen25f27032001-04-26 23:22:31 +00004997 break;
4998 case '\'':
Denys Vlasenko38292b62010-09-05 14:49:40 +02004999 dest.has_quoted_part = 1;
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005000 if (next == '\'' && !ctx.pending_redirect) {
5001 insert_empty_quoted_str_marker:
5002 nommu_addchr(&ctx.as_string, next);
5003 i_getch(input); /* eat second ' */
5004 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5005 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5006 } else {
5007 while (1) {
5008 ch = i_getch(input);
5009 if (ch == EOF) {
5010 syntax_error_unterm_ch('\'');
5011 goto parse_error;
5012 }
5013 nommu_addchr(&ctx.as_string, ch);
5014 if (ch == '\'')
5015 break;
5016 o_addqchr(&dest, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005017 }
Eric Andersen25f27032001-04-26 23:22:31 +00005018 }
Eric Andersen25f27032001-04-26 23:22:31 +00005019 break;
5020 case '"':
Denys Vlasenko38292b62010-09-05 14:49:40 +02005021 dest.has_quoted_part = 1;
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005022 if (next == '"' && !ctx.pending_redirect)
5023 goto insert_empty_quoted_str_marker;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005024 if (dest.o_assignment == NOT_ASSIGNMENT)
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02005025 dest.o_expflags |= EXP_FLAG_ESC_GLOB_CHARS;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005026 if (!encode_string(&ctx.as_string, &dest, input, '"', /*process_bkslash:*/ 1))
Denys Vlasenko77a7b552010-09-09 12:40:03 +02005027 goto parse_error;
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02005028 dest.o_expflags &= ~EXP_FLAG_ESC_GLOB_CHARS;
Eric Andersen25f27032001-04-26 23:22:31 +00005029 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005030#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005031 case '`': {
Denys Vlasenko60a94142011-05-13 20:57:01 +02005032 USE_FOR_NOMMU(unsigned pos;)
Denys Vlasenko2e48d532010-05-22 17:30:39 +02005033
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005034 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5035 o_addchr(&dest, '`');
Denys Vlasenko60a94142011-05-13 20:57:01 +02005036 USE_FOR_NOMMU(pos = dest.length;)
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005037 if (!add_till_backquote(&dest, input, /*in_dquote:*/ 0))
5038 goto parse_error;
Denys Vlasenko2e48d532010-05-22 17:30:39 +02005039# if !BB_MMU
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005040 o_addstr(&ctx.as_string, dest.data + pos);
5041 o_addchr(&ctx.as_string, '`');
Denys Vlasenko2e48d532010-05-22 17:30:39 +02005042# endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005043 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5044 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00005045 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005046 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005047#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005048 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005049#if ENABLE_HUSH_CASE
5050 case_semi:
5051#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005052 if (done_word(&dest, &ctx)) {
5053 goto parse_error;
5054 }
5055 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005056#if ENABLE_HUSH_CASE
5057 /* Eat multiple semicolons, detect
5058 * whether it means something special */
5059 while (1) {
5060 ch = i_peek(input);
5061 if (ch != ';')
5062 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005063 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005064 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02005065 if (ctx.ctx_res_w == RES_CASE_BODY) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005066 ctx.ctx_dsemicolon = 1;
5067 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005068 break;
5069 }
5070 }
5071#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005072 new_cmd:
5073 /* We just finished a cmd. New one may start
5074 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005075 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02005076 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Eric Andersen25f27032001-04-26 23:22:31 +00005077 break;
5078 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005079 if (done_word(&dest, &ctx)) {
5080 goto parse_error;
5081 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005082 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005083 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005084 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005085 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00005086 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005087 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00005088 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005089 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005090 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005091 if (done_word(&dest, &ctx)) {
5092 goto parse_error;
5093 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005094#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005095 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00005096 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005097#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005098 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005099 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005100 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005101 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00005102 } else {
5103 /* we could pick up a file descriptor choice here
5104 * with redirect_opt_num(), but bash doesn't do it.
5105 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005106 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00005107 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005108 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005109 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005110#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00005111 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005112 if (ctx.ctx_res_w == RES_MATCH
5113 && ctx.command->argv == NULL /* not (word|(... */
5114 && dest.length == 0 /* not word(... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02005115 && dest.has_quoted_part == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005116 ) {
5117 continue;
5118 }
5119#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005120 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005121 if (parse_group(&dest, &ctx, input, ch) != 0) {
5122 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005123 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005124 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005125 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005126#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005127 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005128 goto case_semi;
5129#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005130 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005131 /* proper use of this character is caught by end_trigger:
5132 * if we see {, we call parse_group(..., end_trigger='}')
5133 * and it will match } earlier (not here). */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005134 syntax_error_unexpected_ch(ch);
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01005135 G.last_exitcode = 2;
5136 goto parse_error1;
Eric Andersen25f27032001-04-26 23:22:31 +00005137 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005138 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005139 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005140 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005141 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005142
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005143 parse_error:
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01005144 G.last_exitcode = 1;
5145 parse_error1:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005146 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005147 struct parse_context *pctx;
5148 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005149
5150 /* Clean up allocated tree.
Denys Vlasenko764b2f02009-06-07 16:05:04 +02005151 * Sample for finding leaks on syntax error recovery path.
5152 * Run it from interactive shell, watch pmap `pidof hush`.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005153 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00005154 * Samples to catch leaks at execution:
Denys Vlasenko5d5a6112016-11-07 19:36:50 +01005155 * while if (true | { true;}); then echo ok; fi; do break; done
5156 * 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 +00005157 */
5158 pctx = &ctx;
5159 do {
5160 /* Update pipe/command counts,
5161 * otherwise freeing may miss some */
5162 done_pipe(pctx, PIPE_SEQ);
5163 debug_printf_clean("freeing list %p from ctx %p\n",
5164 pctx->list_head, pctx);
5165 debug_print_tree(pctx->list_head, 0);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005166 free_pipe_list(pctx->list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005167 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005168#if !BB_MMU
5169 o_free_unsafe(&pctx->as_string);
5170#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005171 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005172 if (pctx != &ctx) {
5173 free(pctx);
5174 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005175 IF_HAS_KEYWORDS(pctx = p2;)
5176 } while (HAS_KEYWORDS && pctx);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005177
Denys Vlasenkoa439fa92011-03-30 19:11:46 +02005178 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005179#if !BB_MMU
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005180 if (pstring)
5181 *pstring = NULL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005182#endif
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005183 debug_leave();
5184 return ERR_PTR;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005185 }
Eric Andersen25f27032001-04-26 23:22:31 +00005186}
5187
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005188
5189/*** Execution routines ***/
5190
5191/* Expansion can recurse, need forward decls: */
Denys Vlasenko637982f2017-07-06 01:52:23 +02005192#if !BASH_PATTERN_SUBST && !ENABLE_HUSH_CASE
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005193/* only ${var/pattern/repl} (its pattern part) needs additional mode */
5194#define expand_string_to_string(str, do_unbackslash) \
5195 expand_string_to_string(str)
5196#endif
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005197static char *expand_string_to_string(const char *str, int do_unbackslash);
Denys Vlasenko26777aa2010-11-22 23:49:10 +01005198#if ENABLE_HUSH_TICK
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005199static int process_command_subs(o_string *dest, const char *s);
Denys Vlasenko26777aa2010-11-22 23:49:10 +01005200#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005201
5202/* expand_strvec_to_strvec() takes a list of strings, expands
5203 * all variable references within and returns a pointer to
5204 * a list of expanded strings, possibly with larger number
5205 * of strings. (Think VAR="a b"; echo $VAR).
5206 * This new list is allocated as a single malloc block.
5207 * NULL-terminated list of char* pointers is at the beginning of it,
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005208 * followed by strings themselves.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005209 * Caller can deallocate entire list by single free(list). */
5210
Denys Vlasenko238081f2010-10-03 14:26:26 +02005211/* A horde of its helpers come first: */
5212
5213static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
5214{
5215 while (--len >= 0) {
Denys Vlasenko9e800222010-10-03 14:28:04 +02005216 char c = *str++;
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005217
Denys Vlasenko9e800222010-10-03 14:28:04 +02005218#if ENABLE_HUSH_BRACE_EXPANSION
5219 if (c == '{' || c == '}') {
5220 /* { -> \{, } -> \} */
5221 o_addchr(o, '\\');
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005222 /* And now we want to add { or } and continue:
5223 * o_addchr(o, c);
5224 * continue;
Denys Vlasenko10ad6222017-04-17 16:13:32 +02005225 * luckily, just falling through achieves this.
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005226 */
Denys Vlasenko9e800222010-10-03 14:28:04 +02005227 }
5228#endif
5229 o_addchr(o, c);
5230 if (c == '\\') {
Denys Vlasenko238081f2010-10-03 14:26:26 +02005231 /* \z -> \\\z; \<eol> -> \\<eol> */
5232 o_addchr(o, '\\');
5233 if (len) {
5234 len--;
5235 o_addchr(o, '\\');
5236 o_addchr(o, *str++);
5237 }
5238 }
5239 }
5240}
5241
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005242/* Store given string, finalizing the word and starting new one whenever
5243 * we encounter IFS char(s). This is used for expanding variable values.
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005244 * End-of-string does NOT finalize word: think about 'echo -$VAR-'.
5245 * Return in *ended_with_ifs:
5246 * 1 - ended with IFS char, else 0 (this includes case of empty str).
5247 */
5248static int expand_on_ifs(int *ended_with_ifs, o_string *output, int n, const char *str)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005249{
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005250 int last_is_ifs = 0;
5251
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005252 while (1) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005253 int word_len;
5254
5255 if (!*str) /* EOL - do not finalize word */
5256 break;
5257 word_len = strcspn(str, G.ifs);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005258 if (word_len) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005259 /* We have WORD_LEN leading non-IFS chars */
Denys Vlasenko238081f2010-10-03 14:26:26 +02005260 if (!(output->o_expflags & EXP_FLAG_GLOB)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005261 o_addblock(output, str, word_len);
Denys Vlasenko238081f2010-10-03 14:26:26 +02005262 } else {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005263 /* Protect backslashes against globbing up :)
Denys Vlasenkoa769e022010-09-10 10:12:34 +02005264 * Example: "v='\*'; echo b$v" prints "b\*"
5265 * (and does not try to glob on "*")
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005266 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005267 o_addblock_duplicate_backslash(output, str, word_len);
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005268 /*/ Why can't we do it easier? */
5269 /*o_addblock(output, str, word_len); - WRONG: "v='\*'; echo Z$v" prints "Z*" instead of "Z\*" */
5270 /*o_addqblock(output, str, word_len); - WRONG: "v='*'; echo Z$v" prints "Z*" instead of Z* files */
5271 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005272 last_is_ifs = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005273 str += word_len;
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005274 if (!*str) /* EOL - do not finalize word */
5275 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005276 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005277
5278 /* We know str here points to at least one IFS char */
5279 last_is_ifs = 1;
5280 str += strspn(str, G.ifs); /* skip IFS chars */
5281 if (!*str) /* EOL - do not finalize word */
5282 break;
5283
5284 /* Start new word... but not always! */
5285 /* Case "v=' a'; echo ''$v": we do need to finalize empty word: */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005286 if (output->has_quoted_part
5287 /* Case "v=' a'; echo $v":
5288 * here nothing precedes the space in $v expansion,
5289 * therefore we should not finish the word
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005290 * (IOW: if there *is* word to finalize, only then do it):
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005291 */
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005292 || (n > 0 && output->data[output->length - 1])
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005293 ) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005294 o_addchr(output, '\0');
5295 debug_print_list("expand_on_ifs", output, n);
5296 n = o_save_ptr(output, n);
5297 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005298 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005299
5300 if (ended_with_ifs)
5301 *ended_with_ifs = last_is_ifs;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005302 debug_print_list("expand_on_ifs[1]", output, n);
5303 return n;
5304}
5305
5306/* Helper to expand $((...)) and heredoc body. These act as if
5307 * they are in double quotes, with the exception that they are not :).
5308 * Just the rules are similar: "expand only $var and `cmd`"
5309 *
5310 * Returns malloced string.
5311 * As an optimization, we return NULL if expansion is not needed.
5312 */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005313#if !BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005314/* only ${var/pattern/repl} (its pattern part) needs additional mode */
5315#define encode_then_expand_string(str, process_bkslash, do_unbackslash) \
5316 encode_then_expand_string(str)
5317#endif
5318static char *encode_then_expand_string(const char *str, int process_bkslash, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005319{
Denys Vlasenko637982f2017-07-06 01:52:23 +02005320#if !BASH_PATTERN_SUBST
5321 const int do_unbackslash = 1;
5322#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005323 char *exp_str;
5324 struct in_str input;
5325 o_string dest = NULL_O_STRING;
5326
5327 if (!strchr(str, '$')
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02005328 && !strchr(str, '\\')
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005329#if ENABLE_HUSH_TICK
5330 && !strchr(str, '`')
5331#endif
5332 ) {
5333 return NULL;
5334 }
5335
5336 /* We need to expand. Example:
5337 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
5338 */
5339 setup_string_in_str(&input, str);
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005340 encode_string(NULL, &dest, &input, EOF, process_bkslash);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005341//TODO: error check (encode_string returns 0 on error)?
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005342 //bb_error_msg("'%s' -> '%s'", str, dest.data);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005343 exp_str = expand_string_to_string(dest.data, /*unbackslash:*/ do_unbackslash);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005344 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
5345 o_free_unsafe(&dest);
5346 return exp_str;
5347}
5348
Denys Vlasenko0b883582016-12-23 16:49:07 +01005349#if ENABLE_FEATURE_SH_MATH
Denys Vlasenko063847d2010-09-15 13:33:02 +02005350static arith_t expand_and_evaluate_arith(const char *arg, const char **errmsg_p)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005351{
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005352 arith_state_t math_state;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005353 arith_t res;
5354 char *exp_str;
5355
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005356 math_state.lookupvar = get_local_var_value;
5357 math_state.setvar = set_local_var_from_halves;
5358 //math_state.endofname = endofname;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005359 exp_str = encode_then_expand_string(arg, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005360 res = arith(&math_state, exp_str ? exp_str : arg);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005361 free(exp_str);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005362 if (errmsg_p)
5363 *errmsg_p = math_state.errmsg;
5364 if (math_state.errmsg)
5365 die_if_script(math_state.errmsg);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005366 return res;
5367}
5368#endif
5369
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005370#if BASH_PATTERN_SUBST
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005371/* ${var/[/]pattern[/repl]} helpers */
5372static char *strstr_pattern(char *val, const char *pattern, int *size)
5373{
5374 while (1) {
5375 char *end = scan_and_match(val, pattern, SCAN_MOVE_FROM_RIGHT + SCAN_MATCH_LEFT_HALF);
5376 debug_printf_varexp("val:'%s' pattern:'%s' end:'%s'\n", val, pattern, end);
5377 if (end) {
5378 *size = end - val;
5379 return val;
5380 }
5381 if (*val == '\0')
5382 return NULL;
5383 /* Optimization: if "*pat" did not match the start of "string",
5384 * we know that "tring", "ring" etc will not match too:
5385 */
5386 if (pattern[0] == '*')
5387 return NULL;
5388 val++;
5389 }
5390}
5391static char *replace_pattern(char *val, const char *pattern, const char *repl, char exp_op)
5392{
5393 char *result = NULL;
5394 unsigned res_len = 0;
5395 unsigned repl_len = strlen(repl);
5396
5397 while (1) {
5398 int size;
5399 char *s = strstr_pattern(val, pattern, &size);
5400 if (!s)
5401 break;
5402
5403 result = xrealloc(result, res_len + (s - val) + repl_len + 1);
5404 memcpy(result + res_len, val, s - val);
5405 res_len += s - val;
5406 strcpy(result + res_len, repl);
5407 res_len += repl_len;
5408 debug_printf_varexp("val:'%s' s:'%s' result:'%s'\n", val, s, result);
5409
5410 val = s + size;
5411 if (exp_op == '/')
5412 break;
5413 }
5414 if (val[0] && result) {
5415 result = xrealloc(result, res_len + strlen(val) + 1);
5416 strcpy(result + res_len, val);
5417 debug_printf_varexp("val:'%s' result:'%s'\n", val, result);
5418 }
5419 debug_printf_varexp("result:'%s'\n", result);
5420 return result;
5421}
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005422#endif /* BASH_PATTERN_SUBST */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005423
5424/* Helper:
5425 * Handles <SPECIAL_VAR_SYMBOL>varname...<SPECIAL_VAR_SYMBOL> construct.
5426 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005427static NOINLINE const char *expand_one_var(char **to_be_freed_pp, char *arg, char **pp)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005428{
5429 const char *val = NULL;
5430 char *to_be_freed = NULL;
5431 char *p = *pp;
5432 char *var;
5433 char first_char;
5434 char exp_op;
5435 char exp_save = exp_save; /* for compiler */
5436 char *exp_saveptr; /* points to expansion operator */
5437 char *exp_word = exp_word; /* for compiler */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005438 char arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005439
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005440 *p = '\0'; /* replace trailing SPECIAL_VAR_SYMBOL */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005441 var = arg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005442 exp_saveptr = arg[1] ? strchr(VAR_ENCODED_SUBST_OPS, arg[1]) : NULL;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005443 arg0 = arg[0];
5444 first_char = arg[0] = arg0 & 0x7f;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005445 exp_op = 0;
5446
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005447 if (first_char == '#' /* ${#... */
5448 && arg[1] && !exp_saveptr /* not ${#} and not ${#<op_char>...} */
5449 ) {
5450 /* It must be length operator: ${#var} */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005451 var++;
5452 exp_op = 'L';
5453 } else {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005454 /* Maybe handle parameter expansion */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005455 if (exp_saveptr /* if 2nd char is one of expansion operators */
5456 && strchr(NUMERIC_SPECVARS_STR, first_char) /* 1st char is special variable */
5457 ) {
5458 /* ${?:0}, ${#[:]%0} etc */
5459 exp_saveptr = var + 1;
5460 } else {
5461 /* ${?}, ${var}, ${var:0}, ${var[:]%0} etc */
5462 exp_saveptr = var+1 + strcspn(var+1, VAR_ENCODED_SUBST_OPS);
5463 }
5464 exp_op = exp_save = *exp_saveptr;
5465 if (exp_op) {
5466 exp_word = exp_saveptr + 1;
5467 if (exp_op == ':') {
5468 exp_op = *exp_word++;
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005469//TODO: try ${var:} and ${var:bogus} in non-bash config
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005470 if (BASH_SUBSTR
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005471 && (!exp_op || !strchr(MINUS_PLUS_EQUAL_QUESTION, exp_op))
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005472 ) {
5473 /* oops... it's ${var:N[:M]}, not ${var:?xxx} or some such */
5474 exp_op = ':';
5475 exp_word--;
5476 }
5477 }
5478 *exp_saveptr = '\0';
5479 } /* else: it's not an expansion op, but bare ${var} */
5480 }
5481
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005482 /* Look up the variable in question */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005483 if (isdigit(var[0])) {
Denys Vlasenko77a7b552010-09-09 12:40:03 +02005484 /* parse_dollar should have vetted var for us */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005485 int n = xatoi_positive(var);
5486 if (n < G.global_argc)
5487 val = G.global_argv[n];
5488 /* else val remains NULL: $N with too big N */
5489 } else {
5490 switch (var[0]) {
5491 case '$': /* pid */
5492 val = utoa(G.root_pid);
5493 break;
5494 case '!': /* bg pid */
5495 val = G.last_bg_pid ? utoa(G.last_bg_pid) : "";
5496 break;
5497 case '?': /* exitcode */
5498 val = utoa(G.last_exitcode);
5499 break;
5500 case '#': /* argc */
5501 val = utoa(G.global_argc ? G.global_argc-1 : 0);
5502 break;
5503 default:
5504 val = get_local_var_value(var);
5505 }
5506 }
5507
5508 /* Handle any expansions */
5509 if (exp_op == 'L') {
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02005510 reinit_unicode_for_hush();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005511 debug_printf_expand("expand: length(%s)=", val);
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02005512 val = utoa(val ? unicode_strlen(val) : 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005513 debug_printf_expand("%s\n", val);
5514 } else if (exp_op) {
5515 if (exp_op == '%' || exp_op == '#') {
5516 /* Standard-mandated substring removal ops:
5517 * ${parameter%word} - remove smallest suffix pattern
5518 * ${parameter%%word} - remove largest suffix pattern
5519 * ${parameter#word} - remove smallest prefix pattern
5520 * ${parameter##word} - remove largest prefix pattern
5521 *
5522 * Word is expanded to produce a glob pattern.
5523 * Then var's value is matched to it and matching part removed.
5524 */
5525 if (val && val[0]) {
Denys Vlasenko4f870492010-09-10 11:06:01 +02005526 char *t;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005527 char *exp_exp_word;
5528 char *loc;
5529 unsigned scan_flags = pick_scan(exp_op, *exp_word);
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02005530 if (exp_op == *exp_word) /* ## or %% */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005531 exp_word++;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005532 exp_exp_word = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005533 if (exp_exp_word)
5534 exp_word = exp_exp_word;
Denys Vlasenko4f870492010-09-10 11:06:01 +02005535 /* HACK ALERT. We depend here on the fact that
5536 * G.global_argv and results of utoa and get_local_var_value
5537 * are actually in writable memory:
5538 * scan_and_match momentarily stores NULs there. */
5539 t = (char*)val;
5540 loc = scan_and_match(t, exp_word, scan_flags);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005541 //bb_error_msg("op:%c str:'%s' pat:'%s' res:'%s'",
Denys Vlasenko4f870492010-09-10 11:06:01 +02005542 // exp_op, t, exp_word, loc);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005543 free(exp_exp_word);
5544 if (loc) { /* match was found */
5545 if (scan_flags & SCAN_MATCH_LEFT_HALF) /* #[#] */
Denys Vlasenko4f870492010-09-10 11:06:01 +02005546 val = loc; /* take right part */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005547 else /* %[%] */
Denys Vlasenko4f870492010-09-10 11:06:01 +02005548 val = to_be_freed = xstrndup(val, loc - val); /* left */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005549 }
5550 }
5551 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005552#if BASH_PATTERN_SUBST
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005553 else if (exp_op == '/' || exp_op == '\\') {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005554 /* It's ${var/[/]pattern[/repl]} thing.
5555 * Note that in encoded form it has TWO parts:
5556 * var/pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
Denys Vlasenko4f870492010-09-10 11:06:01 +02005557 * and if // is used, it is encoded as \:
5558 * var\pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005559 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005560 /* Empty variable always gives nothing: */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005561 // "v=''; echo ${v/*/w}" prints "", not "w"
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005562 if (val && val[0]) {
Denys Vlasenko4f870492010-09-10 11:06:01 +02005563 /* pattern uses non-standard expansion.
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005564 * repl should be unbackslashed and globbed
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005565 * by the usual expansion rules:
5566 * >az; >bz;
5567 * v='a bz'; echo "${v/a*z/a*z}" prints "a*z"
5568 * v='a bz'; echo "${v/a*z/\z}" prints "\z"
5569 * v='a bz'; echo ${v/a*z/a*z} prints "az"
5570 * v='a bz'; echo ${v/a*z/\z} prints "z"
5571 * (note that a*z _pattern_ is never globbed!)
5572 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005573 char *pattern, *repl, *t;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005574 pattern = encode_then_expand_string(exp_word, /*process_bkslash:*/ 0, /*unbackslash:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005575 if (!pattern)
5576 pattern = xstrdup(exp_word);
5577 debug_printf_varexp("pattern:'%s'->'%s'\n", exp_word, pattern);
5578 *p++ = SPECIAL_VAR_SYMBOL;
5579 exp_word = p;
5580 p = strchr(p, SPECIAL_VAR_SYMBOL);
5581 *p = '\0';
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005582 repl = encode_then_expand_string(exp_word, /*process_bkslash:*/ arg0 & 0x80, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005583 debug_printf_varexp("repl:'%s'->'%s'\n", exp_word, repl);
5584 /* HACK ALERT. We depend here on the fact that
5585 * G.global_argv and results of utoa and get_local_var_value
5586 * are actually in writable memory:
5587 * replace_pattern momentarily stores NULs there. */
5588 t = (char*)val;
5589 to_be_freed = replace_pattern(t,
5590 pattern,
5591 (repl ? repl : exp_word),
5592 exp_op);
5593 if (to_be_freed) /* at least one replace happened */
5594 val = to_be_freed;
5595 free(pattern);
5596 free(repl);
5597 }
5598 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005599#endif /* BASH_PATTERN_SUBST */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005600 else if (exp_op == ':') {
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005601#if BASH_SUBSTR && ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005602 /* It's ${var:N[:M]} bashism.
5603 * Note that in encoded form it has TWO parts:
5604 * var:N<SPECIAL_VAR_SYMBOL>M<SPECIAL_VAR_SYMBOL>
5605 */
5606 arith_t beg, len;
Denys Vlasenko063847d2010-09-15 13:33:02 +02005607 const char *errmsg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005608
Denys Vlasenko063847d2010-09-15 13:33:02 +02005609 beg = expand_and_evaluate_arith(exp_word, &errmsg);
5610 if (errmsg)
5611 goto arith_err;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005612 debug_printf_varexp("beg:'%s'=%lld\n", exp_word, (long long)beg);
5613 *p++ = SPECIAL_VAR_SYMBOL;
5614 exp_word = p;
5615 p = strchr(p, SPECIAL_VAR_SYMBOL);
5616 *p = '\0';
Denys Vlasenko063847d2010-09-15 13:33:02 +02005617 len = expand_and_evaluate_arith(exp_word, &errmsg);
5618 if (errmsg)
5619 goto arith_err;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005620 debug_printf_varexp("len:'%s'=%lld\n", exp_word, (long long)len);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005621 if (len >= 0) { /* bash compat: len < 0 is illegal */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005622 if (beg < 0) /* bash compat */
5623 beg = 0;
5624 debug_printf_varexp("from val:'%s'\n", val);
Denys Vlasenkob771c652010-09-13 00:34:26 +02005625 if (len == 0 || !val || beg >= strlen(val)) {
Denys Vlasenko063847d2010-09-15 13:33:02 +02005626 arith_err:
Denys Vlasenkob771c652010-09-13 00:34:26 +02005627 val = NULL;
5628 } else {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005629 /* Paranoia. What if user entered 9999999999999
5630 * which fits in arith_t but not int? */
5631 if (len >= INT_MAX)
5632 len = INT_MAX;
5633 val = to_be_freed = xstrndup(val + beg, len);
5634 }
5635 debug_printf_varexp("val:'%s'\n", val);
5636 } else
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005637#endif /* HUSH_SUBSTR_EXPANSION && FEATURE_SH_MATH */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005638 {
5639 die_if_script("malformed ${%s:...}", var);
Denys Vlasenkob771c652010-09-13 00:34:26 +02005640 val = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005641 }
5642 } else { /* one of "-=+?" */
5643 /* Standard-mandated substitution ops:
5644 * ${var?word} - indicate error if unset
5645 * If var is unset, word (or a message indicating it is unset
5646 * if word is null) is written to standard error
5647 * and the shell exits with a non-zero exit status.
5648 * Otherwise, the value of var is substituted.
5649 * ${var-word} - use default value
5650 * If var is unset, word is substituted.
5651 * ${var=word} - assign and use default value
5652 * If var is unset, word is assigned to var.
5653 * In all cases, final value of var is substituted.
5654 * ${var+word} - use alternative value
5655 * If var is unset, null is substituted.
5656 * Otherwise, word is substituted.
5657 *
5658 * Word is subjected to tilde expansion, parameter expansion,
5659 * command substitution, and arithmetic expansion.
5660 * If word is not needed, it is not expanded.
5661 *
5662 * Colon forms (${var:-word}, ${var:=word} etc) do the same,
5663 * but also treat null var as if it is unset.
5664 */
5665 int use_word = (!val || ((exp_save == ':') && !val[0]));
5666 if (exp_op == '+')
5667 use_word = !use_word;
5668 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
5669 (exp_save == ':') ? "true" : "false", use_word);
5670 if (use_word) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005671 to_be_freed = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005672 if (to_be_freed)
5673 exp_word = to_be_freed;
5674 if (exp_op == '?') {
5675 /* mimic bash message */
5676 die_if_script("%s: %s",
5677 var,
5678 exp_word[0] ? exp_word : "parameter null or not set"
5679 );
5680//TODO: how interactive bash aborts expansion mid-command?
5681 } else {
5682 val = exp_word;
5683 }
5684
5685 if (exp_op == '=') {
5686 /* ${var=[word]} or ${var:=[word]} */
5687 if (isdigit(var[0]) || var[0] == '#') {
5688 /* mimic bash message */
5689 die_if_script("$%s: cannot assign in this way", var);
5690 val = NULL;
5691 } else {
5692 char *new_var = xasprintf("%s=%s", var, val);
5693 set_local_var(new_var, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
5694 }
5695 }
5696 }
5697 } /* one of "-=+?" */
5698
5699 *exp_saveptr = exp_save;
5700 } /* if (exp_op) */
5701
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005702 arg[0] = arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005703
5704 *pp = p;
5705 *to_be_freed_pp = to_be_freed;
5706 return val;
5707}
5708
5709/* Expand all variable references in given string, adding words to list[]
5710 * at n, n+1,... positions. Return updated n (so that list[n] is next one
5711 * to be filled). This routine is extremely tricky: has to deal with
5712 * variables/parameters with whitespace, $* and $@, and constructs like
5713 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005714static NOINLINE int expand_vars_to_list(o_string *output, int n, char *arg)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005715{
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005716 /* output->o_expflags & EXP_FLAG_SINGLEWORD (0x80) if we are in
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005717 * expansion of right-hand side of assignment == 1-element expand.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005718 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005719 char cant_be_null = 0; /* only bit 0x80 matters */
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005720 int ended_in_ifs = 0; /* did last unquoted expansion end with IFS chars? */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005721 char *p;
5722
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005723 debug_printf_expand("expand_vars_to_list: arg:'%s' singleword:%x\n", arg,
5724 !!(output->o_expflags & EXP_FLAG_SINGLEWORD));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005725 debug_print_list("expand_vars_to_list", output, n);
5726 n = o_save_ptr(output, n);
5727 debug_print_list("expand_vars_to_list[0]", output, n);
5728
5729 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
5730 char first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005731 char *to_be_freed = NULL;
5732 const char *val = NULL;
5733#if ENABLE_HUSH_TICK
5734 o_string subst_result = NULL_O_STRING;
5735#endif
Denys Vlasenko0b883582016-12-23 16:49:07 +01005736#if ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005737 char arith_buf[sizeof(arith_t)*3 + 2];
5738#endif
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005739
5740 if (ended_in_ifs) {
5741 o_addchr(output, '\0');
5742 n = o_save_ptr(output, n);
5743 ended_in_ifs = 0;
5744 }
5745
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005746 o_addblock(output, arg, p - arg);
5747 debug_print_list("expand_vars_to_list[1]", output, n);
5748 arg = ++p;
5749 p = strchr(p, SPECIAL_VAR_SYMBOL);
5750
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005751 /* Fetch special var name (if it is indeed one of them)
5752 * and quote bit, force the bit on if singleword expansion -
5753 * important for not getting v=$@ expand to many words. */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005754 first_ch = arg[0] | (output->o_expflags & EXP_FLAG_SINGLEWORD);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005755
5756 /* Is this variable quoted and thus expansion can't be null?
5757 * "$@" is special. Even if quoted, it can still
5758 * expand to nothing (not even an empty string),
5759 * thus it is excluded. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005760 if ((first_ch & 0x7f) != '@')
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005761 cant_be_null |= first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005762
5763 switch (first_ch & 0x7f) {
5764 /* Highest bit in first_ch indicates that var is double-quoted */
5765 case '*':
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005766 case '@': {
5767 int i;
5768 if (!G.global_argv[1])
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005769 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005770 i = 1;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005771 cant_be_null |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005772 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005773 while (G.global_argv[i]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005774 n = expand_on_ifs(NULL, output, n, G.global_argv[i]);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005775 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
5776 if (G.global_argv[i++][0] && G.global_argv[i]) {
5777 /* this argv[] is not empty and not last:
5778 * put terminating NUL, start new word */
5779 o_addchr(output, '\0');
5780 debug_print_list("expand_vars_to_list[2]", output, n);
5781 n = o_save_ptr(output, n);
5782 debug_print_list("expand_vars_to_list[3]", output, n);
5783 }
5784 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005785 } else
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005786 /* If EXP_FLAG_SINGLEWORD, we handle assignment 'a=....$@.....'
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005787 * and in this case should treat it like '$*' - see 'else...' below */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005788 if (first_ch == ('@'|0x80) /* quoted $@ */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005789 && !(output->o_expflags & EXP_FLAG_SINGLEWORD) /* not v="$@" case */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005790 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005791 while (1) {
5792 o_addQstr(output, G.global_argv[i]);
5793 if (++i >= G.global_argc)
5794 break;
5795 o_addchr(output, '\0');
5796 debug_print_list("expand_vars_to_list[4]", output, n);
5797 n = o_save_ptr(output, n);
5798 }
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005799 } else { /* quoted $* (or v="$@" case): add as one word */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005800 while (1) {
5801 o_addQstr(output, G.global_argv[i]);
5802 if (!G.global_argv[++i])
5803 break;
5804 if (G.ifs[0])
5805 o_addchr(output, G.ifs[0]);
5806 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005807 output->has_quoted_part = 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005808 }
5809 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005810 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005811 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
5812 /* "Empty variable", used to make "" etc to not disappear */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005813 output->has_quoted_part = 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005814 arg++;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005815 cant_be_null = 0x80;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005816 break;
5817#if ENABLE_HUSH_TICK
5818 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005819 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005820 arg++;
5821 /* Can't just stuff it into output o_string,
5822 * expanded result may need to be globbed
Denys Vlasenko10ad6222017-04-17 16:13:32 +02005823 * and $IFS-split */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005824 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
5825 G.last_exitcode = process_command_subs(&subst_result, arg);
5826 debug_printf_subst("SUBST RES:%d '%s'\n", G.last_exitcode, subst_result.data);
5827 val = subst_result.data;
5828 goto store_val;
5829#endif
Denys Vlasenko0b883582016-12-23 16:49:07 +01005830#if ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005831 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
5832 arith_t res;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005833
5834 arg++; /* skip '+' */
5835 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
5836 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005837 res = expand_and_evaluate_arith(arg, NULL);
Denys Vlasenkobed7c812010-09-16 11:50:46 +02005838 debug_printf_subst("ARITH RES '"ARITH_FMT"'\n", res);
5839 sprintf(arith_buf, ARITH_FMT, res);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005840 val = arith_buf;
5841 break;
5842 }
5843#endif
5844 default:
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005845 val = expand_one_var(&to_be_freed, arg, &p);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005846 IF_HUSH_TICK(store_val:)
5847 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005848 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val,
5849 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005850 if (val && val[0]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005851 n = expand_on_ifs(&ended_in_ifs, output, n, val);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005852 val = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005853 }
5854 } else { /* quoted $VAR, val will be appended below */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005855 output->has_quoted_part = 1;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005856 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val,
5857 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005858 }
5859 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005860 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
5861
5862 if (val && val[0]) {
5863 o_addQstr(output, val);
5864 }
5865 free(to_be_freed);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005866
5867 /* Restore NULL'ed SPECIAL_VAR_SYMBOL.
5868 * Do the check to avoid writing to a const string. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005869 if (*p != SPECIAL_VAR_SYMBOL)
5870 *p = SPECIAL_VAR_SYMBOL;
5871
5872#if ENABLE_HUSH_TICK
5873 o_free(&subst_result);
5874#endif
5875 arg = ++p;
5876 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
5877
5878 if (arg[0]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005879 if (ended_in_ifs) {
5880 o_addchr(output, '\0');
5881 n = o_save_ptr(output, n);
5882 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005883 debug_print_list("expand_vars_to_list[a]", output, n);
5884 /* this part is literal, and it was already pre-quoted
5885 * if needed (much earlier), do not use o_addQstr here! */
5886 o_addstr_with_NUL(output, arg);
5887 debug_print_list("expand_vars_to_list[b]", output, n);
5888 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005889 && !(cant_be_null & 0x80) /* and all vars were not quoted. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005890 ) {
5891 n--;
5892 /* allow to reuse list[n] later without re-growth */
5893 output->has_empty_slot = 1;
5894 } else {
5895 o_addchr(output, '\0');
5896 }
5897
5898 return n;
5899}
5900
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005901static char **expand_variables(char **argv, unsigned expflags)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005902{
5903 int n;
5904 char **list;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005905 o_string output = NULL_O_STRING;
5906
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005907 output.o_expflags = expflags;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005908
5909 n = 0;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005910 while (*argv) {
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005911 n = expand_vars_to_list(&output, n, *argv);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005912 argv++;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005913 }
5914 debug_print_list("expand_variables", &output, n);
5915
5916 /* output.data (malloced in one block) gets returned in "list" */
5917 list = o_finalize_list(&output, n);
5918 debug_print_strings("expand_variables[1]", list);
5919 return list;
5920}
5921
5922static char **expand_strvec_to_strvec(char **argv)
5923{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005924 return expand_variables(argv, EXP_FLAG_GLOB | EXP_FLAG_ESC_GLOB_CHARS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005925}
5926
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005927#if BASH_TEST2
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005928static char **expand_strvec_to_strvec_singleword_noglob(char **argv)
5929{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005930 return expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005931}
5932#endif
5933
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005934/* Used for expansion of right hand of assignments,
5935 * $((...)), heredocs, variable espansion parts.
5936 *
5937 * NB: should NOT do globbing!
5938 * "export v=/bin/c*; env | grep ^v=" outputs "v=/bin/c*"
5939 */
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005940static char *expand_string_to_string(const char *str, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005941{
Denys Vlasenko637982f2017-07-06 01:52:23 +02005942#if !BASH_PATTERN_SUBST && !ENABLE_HUSH_CASE
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005943 const int do_unbackslash = 1;
5944#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005945 char *argv[2], **list;
5946
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005947 debug_printf_expand("string_to_string<='%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005948 /* This is generally an optimization, but it also
5949 * handles "", which otherwise trips over !list[0] check below.
5950 * (is this ever happens that we actually get str="" here?)
5951 */
5952 if (!strchr(str, SPECIAL_VAR_SYMBOL) && !strchr(str, '\\')) {
5953 //TODO: Can use on strings with \ too, just unbackslash() them?
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005954 debug_printf_expand("string_to_string(fast)=>'%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005955 return xstrdup(str);
5956 }
5957
5958 argv[0] = (char*)str;
5959 argv[1] = NULL;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005960 list = expand_variables(argv, do_unbackslash
5961 ? EXP_FLAG_ESC_GLOB_CHARS | EXP_FLAG_SINGLEWORD
5962 : EXP_FLAG_SINGLEWORD
5963 );
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005964 if (HUSH_DEBUG)
5965 if (!list[0] || list[1])
5966 bb_error_msg_and_die("BUG in varexp2");
5967 /* actually, just move string 2*sizeof(char*) bytes back */
5968 overlapping_strcpy((char*)list, list[0]);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005969 if (do_unbackslash)
5970 unbackslash((char*)list);
5971 debug_printf_expand("string_to_string=>'%s'\n", (char*)list);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005972 return (char*)list;
5973}
5974
Denys Vlasenkobd43c672017-07-05 23:12:15 +02005975/* Used for "eval" builtin and case string */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005976static char* expand_strvec_to_string(char **argv)
5977{
5978 char **list;
5979
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005980 list = expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005981 /* Convert all NULs to spaces */
5982 if (list[0]) {
5983 int n = 1;
5984 while (list[n]) {
5985 if (HUSH_DEBUG)
5986 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
5987 bb_error_msg_and_die("BUG in varexp3");
5988 /* bash uses ' ' regardless of $IFS contents */
5989 list[n][-1] = ' ';
5990 n++;
5991 }
5992 }
Denys Vlasenko78c9c732016-09-29 01:44:17 +02005993 overlapping_strcpy((char*)list, list[0] ? list[0] : "");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005994 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
5995 return (char*)list;
5996}
5997
5998static char **expand_assignments(char **argv, int count)
5999{
6000 int i;
6001 char **p;
6002
6003 G.expanded_assignments = p = NULL;
6004 /* Expand assignments into one string each */
6005 for (i = 0; i < count; i++) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006006 G.expanded_assignments = p = add_string_to_strings(p, expand_string_to_string(argv[i], /*unbackslash:*/ 1));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006007 }
6008 G.expanded_assignments = NULL;
6009 return p;
6010}
6011
6012
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006013static void switch_off_special_sigs(unsigned mask)
6014{
6015 unsigned sig = 0;
6016 while ((mask >>= 1) != 0) {
6017 sig++;
6018 if (!(mask & 1))
6019 continue;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006020#if ENABLE_HUSH_TRAP
6021 if (G_traps) {
6022 if (G_traps[sig] && !G_traps[sig][0])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006023 /* trap is '', has to remain SIG_IGN */
6024 continue;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006025 free(G_traps[sig]);
6026 G_traps[sig] = NULL;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006027 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006028#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006029 /* We are here only if no trap or trap was not '' */
Denys Vlasenko0806e402011-05-12 23:06:20 +02006030 install_sighandler(sig, SIG_DFL);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006031 }
6032}
6033
Denys Vlasenkob347df92011-08-09 22:49:15 +02006034#if BB_MMU
6035/* never called */
6036void re_execute_shell(char ***to_free, const char *s,
6037 char *g_argv0, char **g_argv,
6038 char **builtin_argv) NORETURN;
6039
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006040static void reset_traps_to_defaults(void)
6041{
6042 /* This function is always called in a child shell
6043 * after fork (not vfork, NOMMU doesn't use this function).
6044 */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006045 IF_HUSH_TRAP(unsigned sig;)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006046 unsigned mask;
6047
6048 /* Child shells are not interactive.
6049 * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
6050 * Testcase: (while :; do :; done) + ^Z should background.
6051 * Same goes for SIGTERM, SIGHUP, SIGINT.
6052 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006053 mask = (G.special_sig_mask & SPECIAL_INTERACTIVE_SIGS) | G_fatal_sig_mask;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006054 if (!G_traps && !mask)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006055 return; /* already no traps and no special sigs */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006056
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006057 /* Switch off special sigs */
6058 switch_off_special_sigs(mask);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006059# if ENABLE_HUSH_JOB
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006060 G_fatal_sig_mask = 0;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006061# endif
Denys Vlasenko10c01312011-05-11 11:49:21 +02006062 G.special_sig_mask &= ~SPECIAL_INTERACTIVE_SIGS;
Denys Vlasenkof58f7052011-05-12 02:10:33 +02006063 /* SIGQUIT,SIGCHLD and maybe SPECIAL_JOBSTOP_SIGS
6064 * remain set in G.special_sig_mask */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006065
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006066# if ENABLE_HUSH_TRAP
6067 if (!G_traps)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006068 return;
6069
6070 /* Reset all sigs to default except ones with empty traps */
6071 for (sig = 0; sig < NSIG; sig++) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006072 if (!G_traps[sig])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006073 continue; /* no trap: nothing to do */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006074 if (!G_traps[sig][0])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006075 continue; /* empty trap: has to remain SIG_IGN */
6076 /* sig has non-empty trap, reset it: */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006077 free(G_traps[sig]);
6078 G_traps[sig] = NULL;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006079 /* There is no signal for trap 0 (EXIT) */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006080 if (sig == 0)
6081 continue;
Denys Vlasenko0806e402011-05-12 23:06:20 +02006082 install_sighandler(sig, pick_sighandler(sig));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006083 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006084# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006085}
6086
6087#else /* !BB_MMU */
6088
6089static void re_execute_shell(char ***to_free, const char *s,
6090 char *g_argv0, char **g_argv,
6091 char **builtin_argv) NORETURN;
6092static void re_execute_shell(char ***to_free, const char *s,
6093 char *g_argv0, char **g_argv,
6094 char **builtin_argv)
6095{
6096# define NOMMU_HACK_FMT ("-$%x:%x:%x:%x:%x:%llx" IF_HUSH_LOOPS(":%x"))
6097 /* delims + 2 * (number of bytes in printed hex numbers) */
6098 char param_buf[sizeof(NOMMU_HACK_FMT) + 2 * (sizeof(int)*6 + sizeof(long long)*1)];
6099 char *heredoc_argv[4];
6100 struct variable *cur;
6101# if ENABLE_HUSH_FUNCTIONS
6102 struct function *funcp;
6103# endif
6104 char **argv, **pp;
6105 unsigned cnt;
6106 unsigned long long empty_trap_mask;
6107
6108 if (!g_argv0) { /* heredoc */
6109 argv = heredoc_argv;
6110 argv[0] = (char *) G.argv0_for_re_execing;
6111 argv[1] = (char *) "-<";
6112 argv[2] = (char *) s;
6113 argv[3] = NULL;
6114 pp = &argv[3]; /* used as pointer to empty environment */
6115 goto do_exec;
6116 }
6117
6118 cnt = 0;
6119 pp = builtin_argv;
6120 if (pp) while (*pp++)
6121 cnt++;
6122
6123 empty_trap_mask = 0;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006124 if (G_traps) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006125 int sig;
6126 for (sig = 1; sig < NSIG; sig++) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006127 if (G_traps[sig] && !G_traps[sig][0])
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006128 empty_trap_mask |= 1LL << sig;
6129 }
6130 }
6131
6132 sprintf(param_buf, NOMMU_HACK_FMT
6133 , (unsigned) G.root_pid
6134 , (unsigned) G.root_ppid
6135 , (unsigned) G.last_bg_pid
6136 , (unsigned) G.last_exitcode
6137 , cnt
6138 , empty_trap_mask
6139 IF_HUSH_LOOPS(, G.depth_of_loop)
6140 );
6141# undef NOMMU_HACK_FMT
6142 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<etc...> <vars...> <funcs...>
6143 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
6144 */
6145 cnt += 6;
6146 for (cur = G.top_var; cur; cur = cur->next) {
6147 if (!cur->flg_export || cur->flg_read_only)
6148 cnt += 2;
6149 }
6150# if ENABLE_HUSH_FUNCTIONS
6151 for (funcp = G.top_func; funcp; funcp = funcp->next)
6152 cnt += 3;
6153# endif
6154 pp = g_argv;
6155 while (*pp++)
6156 cnt++;
6157 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
6158 *pp++ = (char *) G.argv0_for_re_execing;
6159 *pp++ = param_buf;
6160 for (cur = G.top_var; cur; cur = cur->next) {
6161 if (strcmp(cur->varstr, hush_version_str) == 0)
6162 continue;
6163 if (cur->flg_read_only) {
6164 *pp++ = (char *) "-R";
6165 *pp++ = cur->varstr;
6166 } else if (!cur->flg_export) {
6167 *pp++ = (char *) "-V";
6168 *pp++ = cur->varstr;
6169 }
6170 }
6171# if ENABLE_HUSH_FUNCTIONS
6172 for (funcp = G.top_func; funcp; funcp = funcp->next) {
6173 *pp++ = (char *) "-F";
6174 *pp++ = funcp->name;
6175 *pp++ = funcp->body_as_string;
6176 }
6177# endif
6178 /* We can pass activated traps here. Say, -Tnn:trap_string
6179 *
6180 * However, POSIX says that subshells reset signals with traps
6181 * to SIG_DFL.
6182 * I tested bash-3.2 and it not only does that with true subshells
6183 * of the form ( list ), but with any forked children shells.
6184 * I set trap "echo W" WINCH; and then tried:
6185 *
6186 * { echo 1; sleep 20; echo 2; } &
6187 * while true; do echo 1; sleep 20; echo 2; break; done &
6188 * true | { echo 1; sleep 20; echo 2; } | cat
6189 *
6190 * In all these cases sending SIGWINCH to the child shell
6191 * did not run the trap. If I add trap "echo V" WINCH;
6192 * _inside_ group (just before echo 1), it works.
6193 *
6194 * I conclude it means we don't need to pass active traps here.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006195 */
6196 *pp++ = (char *) "-c";
6197 *pp++ = (char *) s;
6198 if (builtin_argv) {
6199 while (*++builtin_argv)
6200 *pp++ = *builtin_argv;
6201 *pp++ = (char *) "";
6202 }
6203 *pp++ = g_argv0;
6204 while (*g_argv)
6205 *pp++ = *g_argv++;
6206 /* *pp = NULL; - is already there */
6207 pp = environ;
6208
6209 do_exec:
6210 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02006211 /* Don't propagate SIG_IGN to the child */
6212 if (SPECIAL_JOBSTOP_SIGS != 0)
6213 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006214 execve(bb_busybox_exec_path, argv, pp);
6215 /* Fallback. Useful for init=/bin/hush usage etc */
6216 if (argv[0][0] == '/')
6217 execve(argv[0], argv, pp);
6218 xfunc_error_retval = 127;
6219 bb_error_msg_and_die("can't re-execute the shell");
6220}
6221#endif /* !BB_MMU */
6222
6223
6224static int run_and_free_list(struct pipe *pi);
6225
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006226/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006227 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
6228 * end_trigger controls how often we stop parsing
6229 * NUL: parse all, execute, return
6230 * ';': parse till ';' or newline, execute, repeat till EOF
6231 */
6232static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00006233{
Denys Vlasenko00243b02009-11-16 02:00:03 +01006234 /* Why we need empty flag?
6235 * An obscure corner case "false; ``; echo $?":
6236 * empty command in `` should still set $? to 0.
6237 * But we can't just set $? to 0 at the start,
6238 * this breaks "false; echo `echo $?`" case.
6239 */
6240 bool empty = 1;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006241 while (1) {
6242 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006243
Denys Vlasenkoa1463192011-01-18 17:55:04 +01006244#if ENABLE_HUSH_INTERACTIVE
6245 if (end_trigger == ';')
6246 inp->promptmode = 0; /* PS1 */
6247#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006248 pipe_list = parse_stream(NULL, inp, end_trigger);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02006249 if (!pipe_list || pipe_list == ERR_PTR) { /* EOF/error */
6250 /* If we are in "big" script
6251 * (not in `cmd` or something similar)...
6252 */
6253 if (pipe_list == ERR_PTR && end_trigger == ';') {
6254 /* Discard cached input (rest of line) */
6255 int ch = inp->last_char;
6256 while (ch != EOF && ch != '\n') {
6257 //bb_error_msg("Discarded:'%c'", ch);
6258 ch = i_getch(inp);
6259 }
6260 /* Force prompt */
6261 inp->p = NULL;
6262 /* This stream isn't empty */
6263 empty = 0;
6264 continue;
6265 }
6266 if (!pipe_list && empty)
Denys Vlasenko00243b02009-11-16 02:00:03 +01006267 G.last_exitcode = 0;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006268 break;
Denys Vlasenko00243b02009-11-16 02:00:03 +01006269 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006270 debug_print_tree(pipe_list, 0);
6271 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
6272 run_and_free_list(pipe_list);
Denys Vlasenko00243b02009-11-16 02:00:03 +01006273 empty = 0;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006274 if (G_flag_return_in_progress == 1)
Denys Vlasenko68d5cb52011-03-24 02:50:03 +01006275 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006276 }
Eric Andersen25f27032001-04-26 23:22:31 +00006277}
6278
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006279static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00006280{
6281 struct in_str input;
6282 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006283 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00006284}
6285
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006286static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00006287{
Eric Andersen25f27032001-04-26 23:22:31 +00006288 struct in_str input;
6289 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006290 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00006291}
6292
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006293#if ENABLE_HUSH_TICK
6294static FILE *generate_stream_from_string(const char *s, pid_t *pid_p)
6295{
6296 pid_t pid;
6297 int channel[2];
6298# if !BB_MMU
6299 char **to_free = NULL;
6300# endif
6301
6302 xpipe(channel);
6303 pid = BB_MMU ? xfork() : xvfork();
6304 if (pid == 0) { /* child */
6305 disable_restore_tty_pgrp_on_exit();
6306 /* Process substitution is not considered to be usual
6307 * 'command execution'.
6308 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
6309 */
6310 bb_signals(0
6311 + (1 << SIGTSTP)
6312 + (1 << SIGTTIN)
6313 + (1 << SIGTTOU)
6314 , SIG_IGN);
6315 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
6316 close(channel[0]); /* NB: close _first_, then move fd! */
6317 xmove_fd(channel[1], 1);
6318 /* Prevent it from trying to handle ctrl-z etc */
6319 IF_HUSH_JOB(G.run_list_level = 1;)
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006320# if ENABLE_HUSH_TRAP
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006321 /* Awful hack for `trap` or $(trap).
6322 *
6323 * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html
6324 * contains an example where "trap" is executed in a subshell:
6325 *
6326 * save_traps=$(trap)
6327 * ...
6328 * eval "$save_traps"
6329 *
6330 * Standard does not say that "trap" in subshell shall print
6331 * parent shell's traps. It only says that its output
6332 * must have suitable form, but then, in the above example
6333 * (which is not supposed to be normative), it implies that.
6334 *
6335 * bash (and probably other shell) does implement it
6336 * (traps are reset to defaults, but "trap" still shows them),
6337 * but as a result, "trap" logic is hopelessly messed up:
6338 *
6339 * # trap
6340 * trap -- 'echo Ho' SIGWINCH <--- we have a handler
6341 * # (trap) <--- trap is in subshell - no output (correct, traps are reset)
6342 * # true | trap <--- trap is in subshell - no output (ditto)
6343 * # echo `true | trap` <--- in subshell - output (but traps are reset!)
6344 * trap -- 'echo Ho' SIGWINCH
6345 * # echo `(trap)` <--- in subshell in subshell - output
6346 * trap -- 'echo Ho' SIGWINCH
6347 * # echo `true | (trap)` <--- in subshell in subshell in subshell - output!
6348 * trap -- 'echo Ho' SIGWINCH
6349 *
6350 * The rules when to forget and when to not forget traps
6351 * get really complex and nonsensical.
6352 *
6353 * Our solution: ONLY bare $(trap) or `trap` is special.
6354 */
6355 s = skip_whitespace(s);
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01006356 if (is_prefixed_with(s, "trap")
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006357 && skip_whitespace(s + 4)[0] == '\0'
6358 ) {
6359 static const char *const argv[] = { NULL, NULL };
6360 builtin_trap((char**)argv);
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02006361 fflush_all(); /* important */
6362 _exit(0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006363 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006364# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006365# if BB_MMU
6366 reset_traps_to_defaults();
6367 parse_and_run_string(s);
6368 _exit(G.last_exitcode);
6369# else
6370 /* We re-execute after vfork on NOMMU. This makes this script safe:
6371 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
6372 * huge=`cat BIG` # was blocking here forever
6373 * echo OK
6374 */
6375 re_execute_shell(&to_free,
6376 s,
6377 G.global_argv[0],
6378 G.global_argv + 1,
6379 NULL);
6380# endif
6381 }
6382
6383 /* parent */
6384 *pid_p = pid;
6385# if ENABLE_HUSH_FAST
6386 G.count_SIGCHLD++;
6387//bb_error_msg("[%d] fork in generate_stream_from_string:"
6388// " G.count_SIGCHLD:%d G.handled_SIGCHLD:%d",
6389// getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6390# endif
6391 enable_restore_tty_pgrp_on_exit();
6392# if !BB_MMU
6393 free(to_free);
6394# endif
6395 close(channel[1]);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02006396 return remember_FILE(xfdopen_for_read(channel[0]));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006397}
6398
6399/* Return code is exit status of the process that is run. */
6400static int process_command_subs(o_string *dest, const char *s)
6401{
6402 FILE *fp;
6403 struct in_str pipe_str;
6404 pid_t pid;
6405 int status, ch, eol_cnt;
6406
6407 fp = generate_stream_from_string(s, &pid);
6408
6409 /* Now send results of command back into original context */
6410 setup_file_in_str(&pipe_str, fp);
6411 eol_cnt = 0;
6412 while ((ch = i_getch(&pipe_str)) != EOF) {
6413 if (ch == '\n') {
6414 eol_cnt++;
6415 continue;
6416 }
6417 while (eol_cnt) {
6418 o_addchr(dest, '\n');
6419 eol_cnt--;
6420 }
6421 o_addQchr(dest, ch);
6422 }
6423
6424 debug_printf("done reading from `cmd` pipe, closing it\n");
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02006425 fclose_and_forget(fp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006426 /* We need to extract exitcode. Test case
6427 * "true; echo `sleep 1; false` $?"
6428 * should print 1 */
6429 safe_waitpid(pid, &status, 0);
6430 debug_printf("child exited. returning its exitcode:%d\n", WEXITSTATUS(status));
6431 return WEXITSTATUS(status);
6432}
6433#endif /* ENABLE_HUSH_TICK */
6434
6435
6436static void setup_heredoc(struct redir_struct *redir)
6437{
6438 struct fd_pair pair;
6439 pid_t pid;
6440 int len, written;
6441 /* the _body_ of heredoc (misleading field name) */
6442 const char *heredoc = redir->rd_filename;
6443 char *expanded;
6444#if !BB_MMU
6445 char **to_free;
6446#endif
6447
6448 expanded = NULL;
6449 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02006450 expanded = encode_then_expand_string(heredoc, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006451 if (expanded)
6452 heredoc = expanded;
6453 }
6454 len = strlen(heredoc);
6455
6456 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
6457 xpiped_pair(pair);
6458 xmove_fd(pair.rd, redir->rd_fd);
6459
6460 /* Try writing without forking. Newer kernels have
6461 * dynamically growing pipes. Must use non-blocking write! */
6462 ndelay_on(pair.wr);
6463 while (1) {
6464 written = write(pair.wr, heredoc, len);
6465 if (written <= 0)
6466 break;
6467 len -= written;
6468 if (len == 0) {
6469 close(pair.wr);
6470 free(expanded);
6471 return;
6472 }
6473 heredoc += written;
6474 }
6475 ndelay_off(pair.wr);
6476
6477 /* Okay, pipe buffer was not big enough */
6478 /* Note: we must not create a stray child (bastard? :)
6479 * for the unsuspecting parent process. Child creates a grandchild
6480 * and exits before parent execs the process which consumes heredoc
6481 * (that exec happens after we return from this function) */
6482#if !BB_MMU
6483 to_free = NULL;
6484#endif
6485 pid = xvfork();
6486 if (pid == 0) {
6487 /* child */
6488 disable_restore_tty_pgrp_on_exit();
6489 pid = BB_MMU ? xfork() : xvfork();
6490 if (pid != 0)
6491 _exit(0);
6492 /* grandchild */
6493 close(redir->rd_fd); /* read side of the pipe */
6494#if BB_MMU
6495 full_write(pair.wr, heredoc, len); /* may loop or block */
6496 _exit(0);
6497#else
6498 /* Delegate blocking writes to another process */
6499 xmove_fd(pair.wr, STDOUT_FILENO);
6500 re_execute_shell(&to_free, heredoc, NULL, NULL, NULL);
6501#endif
6502 }
6503 /* parent */
6504#if ENABLE_HUSH_FAST
6505 G.count_SIGCHLD++;
6506//bb_error_msg("[%d] fork in setup_heredoc: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6507#endif
6508 enable_restore_tty_pgrp_on_exit();
6509#if !BB_MMU
6510 free(to_free);
6511#endif
6512 close(pair.wr);
6513 free(expanded);
6514 wait(NULL); /* wait till child has died */
6515}
6516
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006517/* fd: redirect wants this fd to be used (e.g. 3>file).
6518 * Move all conflicting internally used fds,
6519 * and remember them so that we can restore them later.
6520 */
6521static int save_fds_on_redirect(int fd, int squirrel[3])
6522{
6523 if (squirrel) {
6524 /* Handle redirects of fds 0,1,2 */
6525
6526 /* If we collide with an already moved stdio fd... */
6527 if (fd == squirrel[0]) {
6528 squirrel[0] = xdup_and_close(squirrel[0], F_DUPFD);
6529 return 1;
6530 }
6531 if (fd == squirrel[1]) {
6532 squirrel[1] = xdup_and_close(squirrel[1], F_DUPFD);
6533 return 1;
6534 }
6535 if (fd == squirrel[2]) {
6536 squirrel[2] = xdup_and_close(squirrel[2], F_DUPFD);
6537 return 1;
6538 }
6539 /* If we are about to redirect stdio fd, and did not yet move it... */
6540 if (fd <= 2 && squirrel[fd] < 0) {
6541 /* We avoid taking stdio fds */
6542 squirrel[fd] = fcntl(fd, F_DUPFD, 10);
6543 if (squirrel[fd] < 0 && errno != EBADF)
6544 xfunc_die();
6545 return 0; /* "we did not close fd" */
6546 }
6547 }
6548
6549#if ENABLE_HUSH_INTERACTIVE
6550 if (fd != 0 && fd == G.interactive_fd) {
6551 G.interactive_fd = xdup_and_close(G.interactive_fd, F_DUPFD_CLOEXEC);
6552 return 1;
6553 }
6554#endif
6555
6556 /* Are we called from setup_redirects(squirrel==NULL)? Two cases:
6557 * (1) Redirect in a forked child. No need to save FILEs' fds,
6558 * we aren't going to use them anymore, ok to trash.
6559 * (2) "exec 3>FILE". Bummer. We can save FILEs' fds,
6560 * but how are we doing to use them?
6561 * "fileno(fd) = new_fd" can't be done.
6562 */
6563 if (!squirrel)
6564 return 0;
6565
6566 return save_FILEs_on_redirect(fd);
6567}
6568
6569static void restore_redirects(int squirrel[3])
6570{
6571 int i, fd;
6572 for (i = 0; i <= 2; i++) {
6573 fd = squirrel[i];
6574 if (fd != -1) {
6575 /* We simply die on error */
6576 xmove_fd(fd, i);
6577 }
6578 }
6579
6580 /* Moved G.interactive_fd stays on new fd, not doing anything for it */
6581
6582 restore_redirected_FILEs();
6583}
6584
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006585/* squirrel != NULL means we squirrel away copies of stdin, stdout,
6586 * and stderr if they are redirected. */
6587static int setup_redirects(struct command *prog, int squirrel[])
6588{
6589 int openfd, mode;
6590 struct redir_struct *redir;
6591
6592 for (redir = prog->redirects; redir; redir = redir->next) {
6593 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006594 /* "rd_fd<<HERE" case */
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006595 save_fds_on_redirect(redir->rd_fd, squirrel);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006596 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
6597 * of the heredoc */
6598 debug_printf_parse("set heredoc '%s'\n",
6599 redir->rd_filename);
6600 setup_heredoc(redir);
6601 continue;
6602 }
6603
6604 if (redir->rd_dup == REDIRFD_TO_FILE) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006605 /* "rd_fd<*>file" case (<*> is <,>,>>,<>) */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006606 char *p;
6607 if (redir->rd_filename == NULL) {
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02006608 /*
6609 * Examples:
6610 * "cmd >" (no filename)
6611 * "cmd > <file" (2nd redirect starts too early)
6612 */
6613 die_if_script("syntax error: %s", "invalid redirect");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006614 continue;
6615 }
6616 mode = redir_table[redir->rd_type].mode;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006617 p = expand_string_to_string(redir->rd_filename, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006618 openfd = open_or_warn(p, mode);
6619 free(p);
6620 if (openfd < 0) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006621 /* Error message from open_or_warn can be lost
6622 * if stderr has been redirected, but bash
6623 * and ash both lose it as well
6624 * (though zsh doesn't!)
6625 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006626 return 1;
6627 }
6628 } else {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006629 /* "rd_fd<*>rd_dup" or "rd_fd<*>-" cases */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006630 openfd = redir->rd_dup;
6631 }
6632
6633 if (openfd != redir->rd_fd) {
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006634 int closed = save_fds_on_redirect(redir->rd_fd, squirrel);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006635 if (openfd == REDIRFD_CLOSE) {
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006636 /* "rd_fd >&-" means "close me" */
6637 if (!closed) {
6638 /* ^^^ optimization: saving may already
6639 * have closed it. If not... */
6640 close(redir->rd_fd);
6641 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006642 } else {
6643 xdup2(openfd, redir->rd_fd);
6644 if (redir->rd_dup == REDIRFD_TO_FILE)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006645 /* "rd_fd > FILE" */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006646 close(openfd);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006647 /* else: "rd_fd > rd_dup" */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006648 }
6649 }
6650 }
6651 return 0;
6652}
6653
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006654static char *find_in_path(const char *arg)
6655{
6656 char *ret = NULL;
6657 const char *PATH = get_local_var_value("PATH");
6658
6659 if (!PATH)
6660 return NULL;
6661
6662 while (1) {
6663 const char *end = strchrnul(PATH, ':');
6664 int sz = end - PATH; /* must be int! */
6665
6666 free(ret);
6667 if (sz != 0) {
6668 ret = xasprintf("%.*s/%s", sz, PATH, arg);
6669 } else {
6670 /* We have xxx::yyyy in $PATH,
6671 * it means "use current dir" */
6672 ret = xstrdup(arg);
6673 }
6674 if (access(ret, F_OK) == 0)
6675 break;
6676
6677 if (*end == '\0') {
6678 free(ret);
6679 return NULL;
6680 }
6681 PATH = end + 1;
6682 }
6683
6684 return ret;
6685}
6686
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006687static const struct built_in_command *find_builtin_helper(const char *name,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006688 const struct built_in_command *x,
6689 const struct built_in_command *end)
6690{
6691 while (x != end) {
6692 if (strcmp(name, x->b_cmd) != 0) {
6693 x++;
6694 continue;
6695 }
6696 debug_printf_exec("found builtin '%s'\n", name);
6697 return x;
6698 }
6699 return NULL;
6700}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006701static const struct built_in_command *find_builtin1(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006702{
6703 return find_builtin_helper(name, bltins1, &bltins1[ARRAY_SIZE(bltins1)]);
6704}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006705static const struct built_in_command *find_builtin(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006706{
6707 const struct built_in_command *x = find_builtin1(name);
6708 if (x)
6709 return x;
6710 return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]);
6711}
6712
6713#if ENABLE_HUSH_FUNCTIONS
6714static struct function **find_function_slot(const char *name)
6715{
6716 struct function **funcpp = &G.top_func;
6717 while (*funcpp) {
6718 if (strcmp(name, (*funcpp)->name) == 0) {
6719 break;
6720 }
6721 funcpp = &(*funcpp)->next;
6722 }
6723 return funcpp;
6724}
6725
6726static const struct function *find_function(const char *name)
6727{
6728 const struct function *funcp = *find_function_slot(name);
6729 if (funcp)
6730 debug_printf_exec("found function '%s'\n", name);
6731 return funcp;
6732}
6733
6734/* Note: takes ownership on name ptr */
6735static struct function *new_function(char *name)
6736{
6737 struct function **funcpp = find_function_slot(name);
6738 struct function *funcp = *funcpp;
6739
6740 if (funcp != NULL) {
6741 struct command *cmd = funcp->parent_cmd;
6742 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
6743 if (!cmd) {
6744 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
6745 free(funcp->name);
6746 /* Note: if !funcp->body, do not free body_as_string!
6747 * This is a special case of "-F name body" function:
6748 * body_as_string was not malloced! */
6749 if (funcp->body) {
6750 free_pipe_list(funcp->body);
6751# if !BB_MMU
6752 free(funcp->body_as_string);
6753# endif
6754 }
6755 } else {
6756 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
6757 cmd->argv[0] = funcp->name;
6758 cmd->group = funcp->body;
6759# if !BB_MMU
6760 cmd->group_as_string = funcp->body_as_string;
6761# endif
6762 }
6763 } else {
6764 debug_printf_exec("remembering new function '%s'\n", name);
6765 funcp = *funcpp = xzalloc(sizeof(*funcp));
6766 /*funcp->next = NULL;*/
6767 }
6768
6769 funcp->name = name;
6770 return funcp;
6771}
6772
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006773# if ENABLE_HUSH_UNSET
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006774static void unset_func(const char *name)
6775{
6776 struct function **funcpp = find_function_slot(name);
6777 struct function *funcp = *funcpp;
6778
6779 if (funcp != NULL) {
6780 debug_printf_exec("freeing function '%s'\n", funcp->name);
6781 *funcpp = funcp->next;
6782 /* funcp is unlinked now, deleting it.
6783 * Note: if !funcp->body, the function was created by
6784 * "-F name body", do not free ->body_as_string
6785 * and ->name as they were not malloced. */
6786 if (funcp->body) {
6787 free_pipe_list(funcp->body);
6788 free(funcp->name);
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006789# if !BB_MMU
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006790 free(funcp->body_as_string);
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006791# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006792 }
6793 free(funcp);
6794 }
6795}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006796# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006797
6798# if BB_MMU
6799#define exec_function(to_free, funcp, argv) \
6800 exec_function(funcp, argv)
6801# endif
6802static void exec_function(char ***to_free,
6803 const struct function *funcp,
6804 char **argv) NORETURN;
6805static void exec_function(char ***to_free,
6806 const struct function *funcp,
6807 char **argv)
6808{
6809# if BB_MMU
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02006810 int n;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006811
6812 argv[0] = G.global_argv[0];
6813 G.global_argv = argv;
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02006814 G.global_argc = n = 1 + string_array_len(argv + 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006815 /* On MMU, funcp->body is always non-NULL */
6816 n = run_list(funcp->body);
6817 fflush_all();
6818 _exit(n);
6819# else
6820 re_execute_shell(to_free,
6821 funcp->body_as_string,
6822 G.global_argv[0],
6823 argv + 1,
6824 NULL);
6825# endif
6826}
6827
6828static int run_function(const struct function *funcp, char **argv)
6829{
6830 int rc;
6831 save_arg_t sv;
6832 smallint sv_flg;
6833
6834 save_and_replace_G_args(&sv, argv);
6835
6836 /* "we are in function, ok to use return" */
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006837 sv_flg = G_flag_return_in_progress;
6838 G_flag_return_in_progress = -1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006839# if ENABLE_HUSH_LOCAL
6840 G.func_nest_level++;
6841# endif
6842
6843 /* On MMU, funcp->body is always non-NULL */
6844# if !BB_MMU
6845 if (!funcp->body) {
6846 /* Function defined by -F */
6847 parse_and_run_string(funcp->body_as_string);
6848 rc = G.last_exitcode;
6849 } else
6850# endif
6851 {
6852 rc = run_list(funcp->body);
6853 }
6854
6855# if ENABLE_HUSH_LOCAL
6856 {
6857 struct variable *var;
6858 struct variable **var_pp;
6859
6860 var_pp = &G.top_var;
6861 while ((var = *var_pp) != NULL) {
6862 if (var->func_nest_level < G.func_nest_level) {
6863 var_pp = &var->next;
6864 continue;
6865 }
6866 /* Unexport */
6867 if (var->flg_export)
6868 bb_unsetenv(var->varstr);
6869 /* Remove from global list */
6870 *var_pp = var->next;
6871 /* Free */
6872 if (!var->max_len)
6873 free(var->varstr);
6874 free(var);
6875 }
6876 G.func_nest_level--;
6877 }
6878# endif
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006879 G_flag_return_in_progress = sv_flg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006880
6881 restore_G_args(&sv, argv);
6882
6883 return rc;
6884}
6885#endif /* ENABLE_HUSH_FUNCTIONS */
6886
6887
6888#if BB_MMU
6889#define exec_builtin(to_free, x, argv) \
6890 exec_builtin(x, argv)
6891#else
6892#define exec_builtin(to_free, x, argv) \
6893 exec_builtin(to_free, argv)
6894#endif
6895static void exec_builtin(char ***to_free,
6896 const struct built_in_command *x,
6897 char **argv) NORETURN;
6898static void exec_builtin(char ***to_free,
6899 const struct built_in_command *x,
6900 char **argv)
6901{
6902#if BB_MMU
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01006903 int rcode;
6904 fflush_all();
6905 rcode = x->b_function(argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006906 fflush_all();
6907 _exit(rcode);
6908#else
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01006909 fflush_all();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006910 /* On NOMMU, we must never block!
6911 * Example: { sleep 99 | read line; } & echo Ok
6912 */
6913 re_execute_shell(to_free,
6914 argv[0],
6915 G.global_argv[0],
6916 G.global_argv + 1,
6917 argv);
6918#endif
6919}
6920
6921
6922static void execvp_or_die(char **argv) NORETURN;
6923static void execvp_or_die(char **argv)
6924{
Denys Vlasenko04465da2016-10-03 01:01:15 +02006925 int e;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006926 debug_printf_exec("execing '%s'\n", argv[0]);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02006927 /* Don't propagate SIG_IGN to the child */
6928 if (SPECIAL_JOBSTOP_SIGS != 0)
6929 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006930 execvp(argv[0], argv);
Denys Vlasenko04465da2016-10-03 01:01:15 +02006931 e = 2;
6932 if (errno == EACCES) e = 126;
6933 if (errno == ENOENT) e = 127;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006934 bb_perror_msg("can't execute '%s'", argv[0]);
Denys Vlasenko04465da2016-10-03 01:01:15 +02006935 _exit(e);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006936}
6937
6938#if ENABLE_HUSH_MODE_X
6939static void dump_cmd_in_x_mode(char **argv)
6940{
6941 if (G_x_mode && argv) {
6942 /* We want to output the line in one write op */
6943 char *buf, *p;
6944 int len;
6945 int n;
6946
6947 len = 3;
6948 n = 0;
6949 while (argv[n])
6950 len += strlen(argv[n++]) + 1;
6951 buf = xmalloc(len);
6952 buf[0] = '+';
6953 p = buf + 1;
6954 n = 0;
6955 while (argv[n])
6956 p += sprintf(p, " %s", argv[n++]);
6957 *p++ = '\n';
6958 *p = '\0';
6959 fputs(buf, stderr);
6960 free(buf);
6961 }
6962}
6963#else
6964# define dump_cmd_in_x_mode(argv) ((void)0)
6965#endif
6966
6967#if BB_MMU
6968#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
6969 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
6970#define pseudo_exec(nommu_save, command, argv_expanded) \
6971 pseudo_exec(command, argv_expanded)
6972#endif
6973
6974/* Called after [v]fork() in run_pipe, or from builtin_exec.
6975 * Never returns.
6976 * Don't exit() here. If you don't exec, use _exit instead.
6977 * The at_exit handlers apparently confuse the calling process,
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02006978 * in particular stdin handling. Not sure why? -- because of vfork! (vda)
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02006979 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006980static void pseudo_exec_argv(nommu_save_t *nommu_save,
6981 char **argv, int assignment_cnt,
6982 char **argv_expanded) NORETURN;
6983static NOINLINE void pseudo_exec_argv(nommu_save_t *nommu_save,
6984 char **argv, int assignment_cnt,
6985 char **argv_expanded)
6986{
6987 char **new_env;
6988
6989 new_env = expand_assignments(argv, assignment_cnt);
6990 dump_cmd_in_x_mode(new_env);
6991
6992 if (!argv[assignment_cnt]) {
6993 /* Case when we are here: ... | var=val | ...
6994 * (note that we do not exit early, i.e., do not optimize out
6995 * expand_assignments(): think about ... | var=`sleep 1` | ...
6996 */
6997 free_strings(new_env);
6998 _exit(EXIT_SUCCESS);
6999 }
7000
7001#if BB_MMU
7002 set_vars_and_save_old(new_env);
7003 free(new_env); /* optional */
7004 /* we can also destroy set_vars_and_save_old's return value,
7005 * to save memory */
7006#else
7007 nommu_save->new_env = new_env;
7008 nommu_save->old_vars = set_vars_and_save_old(new_env);
7009#endif
7010
7011 if (argv_expanded) {
7012 argv = argv_expanded;
7013 } else {
7014 argv = expand_strvec_to_strvec(argv + assignment_cnt);
7015#if !BB_MMU
7016 nommu_save->argv = argv;
7017#endif
7018 }
7019 dump_cmd_in_x_mode(argv);
7020
7021#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
7022 if (strchr(argv[0], '/') != NULL)
7023 goto skip;
7024#endif
7025
7026 /* Check if the command matches any of the builtins.
7027 * Depending on context, this might be redundant. But it's
7028 * easier to waste a few CPU cycles than it is to figure out
7029 * if this is one of those cases.
7030 */
7031 {
7032 /* On NOMMU, it is more expensive to re-execute shell
7033 * just in order to run echo or test builtin.
7034 * It's better to skip it here and run corresponding
7035 * non-builtin later. */
7036 const struct built_in_command *x;
7037 x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]);
7038 if (x) {
7039 exec_builtin(&nommu_save->argv_from_re_execing, x, argv);
7040 }
7041 }
7042#if ENABLE_HUSH_FUNCTIONS
7043 /* Check if the command matches any functions */
7044 {
7045 const struct function *funcp = find_function(argv[0]);
7046 if (funcp) {
7047 exec_function(&nommu_save->argv_from_re_execing, funcp, argv);
7048 }
7049 }
7050#endif
7051
7052#if ENABLE_FEATURE_SH_STANDALONE
7053 /* Check if the command matches any busybox applets */
7054 {
7055 int a = find_applet_by_name(argv[0]);
7056 if (a >= 0) {
7057# if BB_MMU /* see above why on NOMMU it is not allowed */
7058 if (APPLET_IS_NOEXEC(a)) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02007059 /* Do not leak open fds from opened script files etc */
7060 close_all_FILE_list();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007061 debug_printf_exec("running applet '%s'\n", argv[0]);
7062 run_applet_no_and_exit(a, argv);
7063 }
7064# endif
7065 /* Re-exec ourselves */
7066 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02007067 /* Don't propagate SIG_IGN to the child */
7068 if (SPECIAL_JOBSTOP_SIGS != 0)
7069 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007070 execv(bb_busybox_exec_path, argv);
7071 /* If they called chroot or otherwise made the binary no longer
7072 * executable, fall through */
7073 }
7074 }
7075#endif
7076
7077#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
7078 skip:
7079#endif
7080 execvp_or_die(argv);
7081}
7082
7083/* Called after [v]fork() in run_pipe
7084 */
7085static void pseudo_exec(nommu_save_t *nommu_save,
7086 struct command *command,
7087 char **argv_expanded) NORETURN;
7088static void pseudo_exec(nommu_save_t *nommu_save,
7089 struct command *command,
7090 char **argv_expanded)
7091{
7092 if (command->argv) {
7093 pseudo_exec_argv(nommu_save, command->argv,
7094 command->assignment_cnt, argv_expanded);
7095 }
7096
7097 if (command->group) {
7098 /* Cases when we are here:
7099 * ( list )
7100 * { list } &
7101 * ... | ( list ) | ...
7102 * ... | { list } | ...
7103 */
7104#if BB_MMU
7105 int rcode;
7106 debug_printf_exec("pseudo_exec: run_list\n");
7107 reset_traps_to_defaults();
7108 rcode = run_list(command->group);
7109 /* OK to leak memory by not calling free_pipe_list,
7110 * since this process is about to exit */
7111 _exit(rcode);
7112#else
7113 re_execute_shell(&nommu_save->argv_from_re_execing,
7114 command->group_as_string,
7115 G.global_argv[0],
7116 G.global_argv + 1,
7117 NULL);
7118#endif
7119 }
7120
7121 /* Case when we are here: ... | >file */
7122 debug_printf_exec("pseudo_exec'ed null command\n");
7123 _exit(EXIT_SUCCESS);
7124}
7125
7126#if ENABLE_HUSH_JOB
7127static const char *get_cmdtext(struct pipe *pi)
7128{
7129 char **argv;
7130 char *p;
7131 int len;
7132
7133 /* This is subtle. ->cmdtext is created only on first backgrounding.
7134 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
7135 * On subsequent bg argv is trashed, but we won't use it */
7136 if (pi->cmdtext)
7137 return pi->cmdtext;
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007138
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007139 argv = pi->cmds[0].argv;
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007140 if (!argv) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007141 pi->cmdtext = xzalloc(1);
7142 return pi->cmdtext;
7143 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007144 len = 0;
7145 do {
7146 len += strlen(*argv) + 1;
7147 } while (*++argv);
7148 p = xmalloc(len);
7149 pi->cmdtext = p;
7150 argv = pi->cmds[0].argv;
7151 do {
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007152 p = stpcpy(p, *argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007153 *p++ = ' ';
7154 } while (*++argv);
7155 p[-1] = '\0';
7156 return pi->cmdtext;
7157}
7158
7159static void insert_bg_job(struct pipe *pi)
7160{
7161 struct pipe *job, **jobp;
7162 int i;
7163
7164 /* Linear search for the ID of the job to use */
7165 pi->jobid = 1;
7166 for (job = G.job_list; job; job = job->next)
7167 if (job->jobid >= pi->jobid)
7168 pi->jobid = job->jobid + 1;
7169
7170 /* Add job to the list of running jobs */
7171 jobp = &G.job_list;
7172 while ((job = *jobp) != NULL)
7173 jobp = &job->next;
7174 job = *jobp = xmalloc(sizeof(*job));
7175
7176 *job = *pi; /* physical copy */
7177 job->next = NULL;
7178 job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
7179 /* Cannot copy entire pi->cmds[] vector! This causes double frees */
7180 for (i = 0; i < pi->num_cmds; i++) {
7181 job->cmds[i].pid = pi->cmds[i].pid;
7182 /* all other fields are not used and stay zero */
7183 }
7184 job->cmdtext = xstrdup(get_cmdtext(pi));
7185
7186 if (G_interactive_fd)
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01007187 printf("[%u] %u %s\n", job->jobid, (unsigned)job->cmds[0].pid, job->cmdtext);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007188 G.last_jobid = job->jobid;
7189}
7190
7191static void remove_bg_job(struct pipe *pi)
7192{
7193 struct pipe *prev_pipe;
7194
7195 if (pi == G.job_list) {
7196 G.job_list = pi->next;
7197 } else {
7198 prev_pipe = G.job_list;
7199 while (prev_pipe->next != pi)
7200 prev_pipe = prev_pipe->next;
7201 prev_pipe->next = pi->next;
7202 }
7203 if (G.job_list)
7204 G.last_jobid = G.job_list->jobid;
7205 else
7206 G.last_jobid = 0;
7207}
7208
7209/* Remove a backgrounded job */
7210static void delete_finished_bg_job(struct pipe *pi)
7211{
7212 remove_bg_job(pi);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007213 free_pipe(pi);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007214}
7215#endif /* JOB */
7216
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007217static int job_exited_or_stopped(struct pipe *pi)
7218{
7219 int rcode, i;
7220
7221 if (pi->alive_cmds != pi->stopped_cmds)
7222 return -1;
7223
7224 /* All processes in fg pipe have exited or stopped */
7225 rcode = 0;
7226 i = pi->num_cmds;
7227 while (--i >= 0) {
7228 rcode = pi->cmds[i].cmd_exitcode;
7229 /* usually last process gives overall exitstatus,
7230 * but with "set -o pipefail", last *failed* process does */
7231 if (G.o_opt[OPT_O_PIPEFAIL] == 0 || rcode != 0)
7232 break;
7233 }
7234 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7235 return rcode;
7236}
7237
Denys Vlasenko7e675362016-10-28 21:57:31 +02007238static int process_wait_result(struct pipe *fg_pipe, pid_t childpid, int status)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007239{
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007240#if ENABLE_HUSH_JOB
7241 struct pipe *pi;
7242#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02007243 int i, dead;
7244
7245 dead = WIFEXITED(status) || WIFSIGNALED(status);
7246
7247#if DEBUG_JOBS
7248 if (WIFSTOPPED(status))
7249 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
7250 childpid, WSTOPSIG(status), WEXITSTATUS(status));
7251 if (WIFSIGNALED(status))
7252 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
7253 childpid, WTERMSIG(status), WEXITSTATUS(status));
7254 if (WIFEXITED(status))
7255 debug_printf_jobs("pid %d exited, exitcode %d\n",
7256 childpid, WEXITSTATUS(status));
7257#endif
7258 /* Were we asked to wait for a fg pipe? */
7259 if (fg_pipe) {
7260 i = fg_pipe->num_cmds;
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007261
Denys Vlasenko7e675362016-10-28 21:57:31 +02007262 while (--i >= 0) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007263 int rcode;
7264
Denys Vlasenko7e675362016-10-28 21:57:31 +02007265 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
7266 if (fg_pipe->cmds[i].pid != childpid)
7267 continue;
7268 if (dead) {
7269 int ex;
7270 fg_pipe->cmds[i].pid = 0;
7271 fg_pipe->alive_cmds--;
7272 ex = WEXITSTATUS(status);
7273 /* bash prints killer signal's name for *last*
7274 * process in pipe (prints just newline for SIGINT/SIGPIPE).
7275 * Mimic this. Example: "sleep 5" + (^\ or kill -QUIT)
7276 */
7277 if (WIFSIGNALED(status)) {
7278 int sig = WTERMSIG(status);
7279 if (i == fg_pipe->num_cmds-1)
7280 /* TODO: use strsignal() instead for bash compat? but that's bloat... */
7281 puts(sig == SIGINT || sig == SIGPIPE ? "" : get_signame(sig));
7282 /* TODO: if (WCOREDUMP(status)) + " (core dumped)"; */
7283 /* TODO: MIPS has 128 sigs (1..128), what if sig==128 here?
7284 * Maybe we need to use sig | 128? */
7285 ex = sig + 128;
7286 }
7287 fg_pipe->cmds[i].cmd_exitcode = ex;
7288 } else {
7289 fg_pipe->stopped_cmds++;
7290 }
7291 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
7292 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007293 rcode = job_exited_or_stopped(fg_pipe);
7294 if (rcode >= 0) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007295/* Note: *non-interactive* bash does not continue if all processes in fg pipe
7296 * are stopped. Testcase: "cat | cat" in a script (not on command line!)
7297 * and "killall -STOP cat" */
7298 if (G_interactive_fd) {
7299#if ENABLE_HUSH_JOB
7300 if (fg_pipe->alive_cmds != 0)
7301 insert_bg_job(fg_pipe);
7302#endif
7303 return rcode;
7304 }
7305 if (fg_pipe->alive_cmds == 0)
7306 return rcode;
7307 }
7308 /* There are still running processes in the fg_pipe */
7309 return -1;
7310 }
Denys Vlasenko10ad6222017-04-17 16:13:32 +02007311 /* It wasn't in fg_pipe, look for process in bg pipes */
Denys Vlasenko7e675362016-10-28 21:57:31 +02007312 }
7313
7314#if ENABLE_HUSH_JOB
7315 /* We were asked to wait for bg or orphaned children */
7316 /* No need to remember exitcode in this case */
7317 for (pi = G.job_list; pi; pi = pi->next) {
7318 for (i = 0; i < pi->num_cmds; i++) {
7319 if (pi->cmds[i].pid == childpid)
7320 goto found_pi_and_prognum;
7321 }
7322 }
7323 /* Happens when shell is used as init process (init=/bin/sh) */
7324 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
7325 return -1; /* this wasn't a process from fg_pipe */
7326
7327 found_pi_and_prognum:
7328 if (dead) {
7329 /* child exited */
7330 pi->cmds[i].pid = 0;
7331 pi->cmds[i].cmd_exitcode = WEXITSTATUS(status);
7332 if (WIFSIGNALED(status))
7333 pi->cmds[i].cmd_exitcode = 128 + WTERMSIG(status);
7334 pi->alive_cmds--;
7335 if (!pi->alive_cmds) {
7336 if (G_interactive_fd)
7337 printf(JOB_STATUS_FORMAT, pi->jobid,
7338 "Done", pi->cmdtext);
7339 delete_finished_bg_job(pi);
7340 }
7341 } else {
7342 /* child stopped */
7343 pi->stopped_cmds++;
7344 }
7345#endif
7346 return -1; /* this wasn't a process from fg_pipe */
7347}
7348
7349/* Check to see if any processes have exited -- if they have,
7350 * figure out why and see if a job has completed.
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007351 *
7352 * If non-NULL fg_pipe: wait for its completion or stop.
7353 * Return its exitcode or zero if stopped.
7354 *
7355 * Alternatively (fg_pipe == NULL, waitfor_pid != 0):
7356 * waitpid(WNOHANG), if waitfor_pid exits or stops, return exitcode+1,
7357 * else return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for)
7358 * or 0 if no children changed status.
7359 *
7360 * Alternatively (fg_pipe == NULL, waitfor_pid == 0),
7361 * return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for)
7362 * or 0 if no children changed status.
Denys Vlasenko7e675362016-10-28 21:57:31 +02007363 */
7364static int checkjobs(struct pipe *fg_pipe, pid_t waitfor_pid)
7365{
7366 int attributes;
7367 int status;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007368 int rcode = 0;
7369
7370 debug_printf_jobs("checkjobs %p\n", fg_pipe);
7371
7372 attributes = WUNTRACED;
7373 if (fg_pipe == NULL)
7374 attributes |= WNOHANG;
7375
7376 errno = 0;
7377#if ENABLE_HUSH_FAST
7378 if (G.handled_SIGCHLD == G.count_SIGCHLD) {
7379//bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p",
7380//getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe);
7381 /* There was neither fork nor SIGCHLD since last waitpid */
7382 /* Avoid doing waitpid syscall if possible */
7383 if (!G.we_have_children) {
7384 errno = ECHILD;
7385 return -1;
7386 }
7387 if (fg_pipe == NULL) { /* is WNOHANG set? */
7388 /* We have children, but they did not exit
7389 * or stop yet (we saw no SIGCHLD) */
7390 return 0;
7391 }
7392 /* else: !WNOHANG, waitpid will block, can't short-circuit */
7393 }
7394#endif
7395
7396/* Do we do this right?
7397 * bash-3.00# sleep 20 | false
7398 * <ctrl-Z pressed>
7399 * [3]+ Stopped sleep 20 | false
7400 * bash-3.00# echo $?
7401 * 1 <========== bg pipe is not fully done, but exitcode is already known!
7402 * [hush 1.14.0: yes we do it right]
7403 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007404 while (1) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007405 pid_t childpid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007406#if ENABLE_HUSH_FAST
Denys Vlasenko7e675362016-10-28 21:57:31 +02007407 int i;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007408 i = G.count_SIGCHLD;
7409#endif
7410 childpid = waitpid(-1, &status, attributes);
7411 if (childpid <= 0) {
7412 if (childpid && errno != ECHILD)
7413 bb_perror_msg("waitpid");
7414#if ENABLE_HUSH_FAST
7415 else { /* Until next SIGCHLD, waitpid's are useless */
7416 G.we_have_children = (childpid == 0);
7417 G.handled_SIGCHLD = i;
7418//bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
7419 }
7420#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02007421 /* ECHILD (no children), or 0 (no change in children status) */
7422 rcode = childpid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007423 break;
7424 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007425 rcode = process_wait_result(fg_pipe, childpid, status);
7426 if (rcode >= 0) {
7427 /* fg_pipe exited or stopped */
7428 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007429 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007430 if (childpid == waitfor_pid) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007431 debug_printf_exec("childpid==waitfor_pid:%d status:0x%08x\n", childpid, status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007432 rcode = WEXITSTATUS(status);
7433 if (WIFSIGNALED(status))
7434 rcode = 128 + WTERMSIG(status);
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007435 if (WIFSTOPPED(status))
7436 /* bash: "cmd & wait $!" and cmd stops: $? = 128 + stopsig */
7437 rcode = 128 + WSTOPSIG(status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007438 rcode++;
7439 break; /* "wait PID" called us, give it exitcode+1 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007440 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007441 /* This wasn't one of our processes, or */
7442 /* fg_pipe still has running processes, do waitpid again */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007443 } /* while (waitpid succeeds)... */
7444
7445 return rcode;
7446}
7447
7448#if ENABLE_HUSH_JOB
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02007449static int checkjobs_and_fg_shell(struct pipe *fg_pipe)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007450{
7451 pid_t p;
Denys Vlasenko7e675362016-10-28 21:57:31 +02007452 int rcode = checkjobs(fg_pipe, 0 /*(no pid to wait for)*/);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007453 if (G_saved_tty_pgrp) {
7454 /* Job finished, move the shell to the foreground */
7455 p = getpgrp(); /* our process group id */
7456 debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p);
7457 tcsetpgrp(G_interactive_fd, p);
7458 }
7459 return rcode;
7460}
7461#endif
7462
7463/* Start all the jobs, but don't wait for anything to finish.
7464 * See checkjobs().
7465 *
7466 * Return code is normally -1, when the caller has to wait for children
7467 * to finish to determine the exit status of the pipe. If the pipe
7468 * is a simple builtin command, however, the action is done by the
7469 * time run_pipe returns, and the exit code is provided as the
7470 * return value.
7471 *
7472 * Returns -1 only if started some children. IOW: we have to
7473 * mask out retvals of builtins etc with 0xff!
7474 *
7475 * The only case when we do not need to [v]fork is when the pipe
7476 * is single, non-backgrounded, non-subshell command. Examples:
7477 * cmd ; ... { list } ; ...
7478 * cmd && ... { list } && ...
7479 * cmd || ... { list } || ...
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007480 * If it is, then we can run cmd as a builtin, NOFORK,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007481 * or (if SH_STANDALONE) an applet, and we can run the { list }
7482 * with run_list. If it isn't one of these, we fork and exec cmd.
7483 *
7484 * Cases when we must fork:
7485 * non-single: cmd | cmd
7486 * backgrounded: cmd & { list } &
7487 * subshell: ( list ) [&]
7488 */
7489#if !ENABLE_HUSH_MODE_X
Denys Vlasenko26777aa2010-11-22 23:49:10 +01007490#define redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel, argv_expanded) \
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007491 redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel)
7492#endif
7493static int redirect_and_varexp_helper(char ***new_env_p,
7494 struct variable **old_vars_p,
7495 struct command *command,
7496 int squirrel[3],
7497 char **argv_expanded)
7498{
7499 /* setup_redirects acts on file descriptors, not FILEs.
7500 * This is perfect for work that comes after exec().
7501 * Is it really safe for inline use? Experimentally,
7502 * things seem to work. */
7503 int rcode = setup_redirects(command, squirrel);
7504 if (rcode == 0) {
7505 char **new_env = expand_assignments(command->argv, command->assignment_cnt);
7506 *new_env_p = new_env;
7507 dump_cmd_in_x_mode(new_env);
7508 dump_cmd_in_x_mode(argv_expanded);
7509 if (old_vars_p)
7510 *old_vars_p = set_vars_and_save_old(new_env);
7511 }
7512 return rcode;
7513}
7514static NOINLINE int run_pipe(struct pipe *pi)
7515{
7516 static const char *const null_ptr = NULL;
7517
7518 int cmd_no;
7519 int next_infd;
7520 struct command *command;
7521 char **argv_expanded;
7522 char **argv;
7523 /* it is not always needed, but we aim to smaller code */
7524 int squirrel[] = { -1, -1, -1 };
7525 int rcode;
7526
7527 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
7528 debug_enter();
7529
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02007530 /* Testcase: set -- q w e; (IFS='' echo "$*"; IFS=''; echo "$*"); echo "$*"
7531 * Result should be 3 lines: q w e, qwe, q w e
7532 */
7533 G.ifs = get_local_var_value("IFS");
7534 if (!G.ifs)
7535 G.ifs = defifs;
7536
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007537 IF_HUSH_JOB(pi->pgrp = -1;)
7538 pi->stopped_cmds = 0;
7539 command = &pi->cmds[0];
7540 argv_expanded = NULL;
7541
7542 if (pi->num_cmds != 1
7543 || pi->followup == PIPE_BG
7544 || command->cmd_type == CMD_SUBSHELL
7545 ) {
7546 goto must_fork;
7547 }
7548
7549 pi->alive_cmds = 1;
7550
7551 debug_printf_exec(": group:%p argv:'%s'\n",
7552 command->group, command->argv ? command->argv[0] : "NONE");
7553
7554 if (command->group) {
7555#if ENABLE_HUSH_FUNCTIONS
7556 if (command->cmd_type == CMD_FUNCDEF) {
7557 /* "executing" func () { list } */
7558 struct function *funcp;
7559
7560 funcp = new_function(command->argv[0]);
7561 /* funcp->name is already set to argv[0] */
7562 funcp->body = command->group;
7563# if !BB_MMU
7564 funcp->body_as_string = command->group_as_string;
7565 command->group_as_string = NULL;
7566# endif
7567 command->group = NULL;
7568 command->argv[0] = NULL;
7569 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
7570 funcp->parent_cmd = command;
7571 command->child_func = funcp;
7572
7573 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
7574 debug_leave();
7575 return EXIT_SUCCESS;
7576 }
7577#endif
7578 /* { list } */
7579 debug_printf("non-subshell group\n");
7580 rcode = 1; /* exitcode if redir failed */
7581 if (setup_redirects(command, squirrel) == 0) {
7582 debug_printf_exec(": run_list\n");
7583 rcode = run_list(command->group) & 0xff;
7584 }
7585 restore_redirects(squirrel);
7586 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7587 debug_leave();
7588 debug_printf_exec("run_pipe: return %d\n", rcode);
7589 return rcode;
7590 }
7591
7592 argv = command->argv ? command->argv : (char **) &null_ptr;
7593 {
7594 const struct built_in_command *x;
7595#if ENABLE_HUSH_FUNCTIONS
7596 const struct function *funcp;
7597#else
7598 enum { funcp = 0 };
7599#endif
7600 char **new_env = NULL;
7601 struct variable *old_vars = NULL;
7602
7603 if (argv[command->assignment_cnt] == NULL) {
7604 /* Assignments, but no command */
7605 /* Ensure redirects take effect (that is, create files).
7606 * Try "a=t >file" */
7607#if 0 /* A few cases in testsuite fail with this code. FIXME */
7608 rcode = redirect_and_varexp_helper(&new_env, /*old_vars:*/ NULL, command, squirrel, /*argv_expanded:*/ NULL);
7609 /* Set shell variables */
7610 if (new_env) {
7611 argv = new_env;
7612 while (*argv) {
7613 set_local_var(*argv, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
7614 /* Do we need to flag set_local_var() errors?
7615 * "assignment to readonly var" and "putenv error"
7616 */
7617 argv++;
7618 }
7619 }
7620 /* Redirect error sets $? to 1. Otherwise,
7621 * if evaluating assignment value set $?, retain it.
7622 * Try "false; q=`exit 2`; echo $?" - should print 2: */
7623 if (rcode == 0)
7624 rcode = G.last_exitcode;
7625 /* Exit, _skipping_ variable restoring code: */
7626 goto clean_up_and_ret0;
7627
7628#else /* Older, bigger, but more correct code */
7629
7630 rcode = setup_redirects(command, squirrel);
7631 restore_redirects(squirrel);
7632 /* Set shell variables */
7633 if (G_x_mode)
7634 bb_putchar_stderr('+');
7635 while (*argv) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02007636 char *p = expand_string_to_string(*argv, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007637 if (G_x_mode)
7638 fprintf(stderr, " %s", p);
7639 debug_printf_exec("set shell var:'%s'->'%s'\n",
7640 *argv, p);
7641 set_local_var(p, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
7642 /* Do we need to flag set_local_var() errors?
7643 * "assignment to readonly var" and "putenv error"
7644 */
7645 argv++;
7646 }
7647 if (G_x_mode)
7648 bb_putchar_stderr('\n');
7649 /* Redirect error sets $? to 1. Otherwise,
7650 * if evaluating assignment value set $?, retain it.
7651 * Try "false; q=`exit 2`; echo $?" - should print 2: */
7652 if (rcode == 0)
7653 rcode = G.last_exitcode;
7654 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7655 debug_leave();
7656 debug_printf_exec("run_pipe: return %d\n", rcode);
7657 return rcode;
7658#endif
7659 }
7660
7661 /* Expand the rest into (possibly) many strings each */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01007662#if BASH_TEST2
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007663 if (command->cmd_type == CMD_SINGLEWORD_NOGLOB) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007664 argv_expanded = expand_strvec_to_strvec_singleword_noglob(argv + command->assignment_cnt);
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007665 } else
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007666#endif
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007667 {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007668 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
7669 }
7670
7671 /* if someone gives us an empty string: `cmd with empty output` */
7672 if (!argv_expanded[0]) {
7673 free(argv_expanded);
7674 debug_leave();
7675 return G.last_exitcode;
7676 }
7677
7678 x = find_builtin(argv_expanded[0]);
7679#if ENABLE_HUSH_FUNCTIONS
7680 funcp = NULL;
7681 if (!x)
7682 funcp = find_function(argv_expanded[0]);
7683#endif
7684 if (x || funcp) {
7685 if (!funcp) {
7686 if (x->b_function == builtin_exec && argv_expanded[1] == NULL) {
7687 debug_printf("exec with redirects only\n");
7688 rcode = setup_redirects(command, NULL);
Denys Vlasenko869994c2016-08-20 15:16:00 +02007689 /* rcode=1 can be if redir file can't be opened */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007690 goto clean_up_and_ret1;
7691 }
7692 }
7693 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, squirrel, argv_expanded);
7694 if (rcode == 0) {
7695 if (!funcp) {
7696 debug_printf_exec(": builtin '%s' '%s'...\n",
7697 x->b_cmd, argv_expanded[1]);
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01007698 fflush_all();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007699 rcode = x->b_function(argv_expanded) & 0xff;
7700 fflush_all();
7701 }
7702#if ENABLE_HUSH_FUNCTIONS
7703 else {
7704# if ENABLE_HUSH_LOCAL
7705 struct variable **sv;
7706 sv = G.shadowed_vars_pp;
7707 G.shadowed_vars_pp = &old_vars;
7708# endif
7709 debug_printf_exec(": function '%s' '%s'...\n",
7710 funcp->name, argv_expanded[1]);
7711 rcode = run_function(funcp, argv_expanded) & 0xff;
7712# if ENABLE_HUSH_LOCAL
7713 G.shadowed_vars_pp = sv;
7714# endif
7715 }
7716#endif
7717 }
7718 clean_up_and_ret:
7719 unset_vars(new_env);
7720 add_vars(old_vars);
7721/* clean_up_and_ret0: */
7722 restore_redirects(squirrel);
7723 clean_up_and_ret1:
7724 free(argv_expanded);
7725 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7726 debug_leave();
7727 debug_printf_exec("run_pipe return %d\n", rcode);
7728 return rcode;
7729 }
7730
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007731 if (ENABLE_FEATURE_SH_NOFORK) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007732 int n = find_applet_by_name(argv_expanded[0]);
7733 if (n >= 0 && APPLET_IS_NOFORK(n)) {
7734 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, squirrel, argv_expanded);
7735 if (rcode == 0) {
7736 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
7737 argv_expanded[0], argv_expanded[1]);
7738 rcode = run_nofork_applet(n, argv_expanded);
7739 }
7740 goto clean_up_and_ret;
7741 }
7742 }
7743 /* It is neither builtin nor applet. We must fork. */
7744 }
7745
7746 must_fork:
7747 /* NB: argv_expanded may already be created, and that
7748 * might include `cmd` runs! Do not rerun it! We *must*
7749 * use argv_expanded if it's non-NULL */
7750
7751 /* Going to fork a child per each pipe member */
7752 pi->alive_cmds = 0;
7753 next_infd = 0;
7754
7755 cmd_no = 0;
7756 while (cmd_no < pi->num_cmds) {
7757 struct fd_pair pipefds;
7758#if !BB_MMU
7759 volatile nommu_save_t nommu_save;
7760 nommu_save.new_env = NULL;
7761 nommu_save.old_vars = NULL;
7762 nommu_save.argv = NULL;
7763 nommu_save.argv_from_re_execing = NULL;
7764#endif
7765 command = &pi->cmds[cmd_no];
7766 cmd_no++;
7767 if (command->argv) {
7768 debug_printf_exec(": pipe member '%s' '%s'...\n",
7769 command->argv[0], command->argv[1]);
7770 } else {
7771 debug_printf_exec(": pipe member with no argv\n");
7772 }
7773
7774 /* pipes are inserted between pairs of commands */
7775 pipefds.rd = 0;
7776 pipefds.wr = 1;
7777 if (cmd_no < pi->num_cmds)
7778 xpiped_pair(pipefds);
7779
7780 command->pid = BB_MMU ? fork() : vfork();
7781 if (!command->pid) { /* child */
7782#if ENABLE_HUSH_JOB
7783 disable_restore_tty_pgrp_on_exit();
7784 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
7785
7786 /* Every child adds itself to new process group
7787 * with pgid == pid_of_first_child_in_pipe */
7788 if (G.run_list_level == 1 && G_interactive_fd) {
7789 pid_t pgrp;
7790 pgrp = pi->pgrp;
7791 if (pgrp < 0) /* true for 1st process only */
7792 pgrp = getpid();
7793 if (setpgid(0, pgrp) == 0
7794 && pi->followup != PIPE_BG
7795 && G_saved_tty_pgrp /* we have ctty */
7796 ) {
7797 /* We do it in *every* child, not just first,
7798 * to avoid races */
7799 tcsetpgrp(G_interactive_fd, pgrp);
7800 }
7801 }
7802#endif
7803 if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
7804 /* 1st cmd in backgrounded pipe
7805 * should have its stdin /dev/null'ed */
7806 close(0);
7807 if (open(bb_dev_null, O_RDONLY))
7808 xopen("/", O_RDONLY);
7809 } else {
7810 xmove_fd(next_infd, 0);
7811 }
7812 xmove_fd(pipefds.wr, 1);
7813 if (pipefds.rd > 1)
7814 close(pipefds.rd);
7815 /* Like bash, explicit redirects override pipes,
Denys Vlasenko869994c2016-08-20 15:16:00 +02007816 * and the pipe fd (fd#1) is available for dup'ing:
7817 * "cmd1 2>&1 | cmd2": fd#1 is duped to fd#2, thus stderr
7818 * of cmd1 goes into pipe.
7819 */
7820 if (setup_redirects(command, NULL)) {
7821 /* Happens when redir file can't be opened:
7822 * $ hush -c 'echo FOO >&2 | echo BAR 3>/qwe/rty; echo BAZ'
7823 * FOO
7824 * hush: can't open '/qwe/rty': No such file or directory
7825 * BAZ
7826 * (echo BAR is not executed, it hits _exit(1) below)
7827 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007828 _exit(1);
Denys Vlasenko869994c2016-08-20 15:16:00 +02007829 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007830
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007831 /* Stores to nommu_save list of env vars putenv'ed
7832 * (NOMMU, on MMU we don't need that) */
7833 /* cast away volatility... */
7834 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
7835 /* pseudo_exec() does not return */
7836 }
7837
7838 /* parent or error */
7839#if ENABLE_HUSH_FAST
7840 G.count_SIGCHLD++;
7841//bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
7842#endif
7843 enable_restore_tty_pgrp_on_exit();
7844#if !BB_MMU
7845 /* Clean up after vforked child */
7846 free(nommu_save.argv);
7847 free(nommu_save.argv_from_re_execing);
7848 unset_vars(nommu_save.new_env);
7849 add_vars(nommu_save.old_vars);
7850#endif
7851 free(argv_expanded);
7852 argv_expanded = NULL;
7853 if (command->pid < 0) { /* [v]fork failed */
7854 /* Clearly indicate, was it fork or vfork */
7855 bb_perror_msg(BB_MMU ? "vfork"+1 : "vfork");
7856 } else {
7857 pi->alive_cmds++;
7858#if ENABLE_HUSH_JOB
7859 /* Second and next children need to know pid of first one */
7860 if (pi->pgrp < 0)
7861 pi->pgrp = command->pid;
7862#endif
7863 }
7864
7865 if (cmd_no > 1)
7866 close(next_infd);
7867 if (cmd_no < pi->num_cmds)
7868 close(pipefds.wr);
7869 /* Pass read (output) pipe end to next iteration */
7870 next_infd = pipefds.rd;
7871 }
7872
7873 if (!pi->alive_cmds) {
7874 debug_leave();
7875 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
7876 return 1;
7877 }
7878
7879 debug_leave();
7880 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
7881 return -1;
7882}
7883
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007884/* NB: called by pseudo_exec, and therefore must not modify any
7885 * global data until exec/_exit (we can be a child after vfork!) */
7886static int run_list(struct pipe *pi)
7887{
7888#if ENABLE_HUSH_CASE
7889 char *case_word = NULL;
7890#endif
7891#if ENABLE_HUSH_LOOPS
7892 struct pipe *loop_top = NULL;
7893 char **for_lcur = NULL;
7894 char **for_list = NULL;
7895#endif
7896 smallint last_followup;
7897 smalluint rcode;
7898#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
7899 smalluint cond_code = 0;
7900#else
7901 enum { cond_code = 0 };
7902#endif
7903#if HAS_KEYWORDS
Denys Vlasenko9b782552010-09-08 13:33:26 +02007904 smallint rword; /* RES_foo */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007905 smallint last_rword; /* ditto */
7906#endif
7907
7908 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
7909 debug_enter();
7910
7911#if ENABLE_HUSH_LOOPS
7912 /* Check syntax for "for" */
Denys Vlasenko0d6a4ec2010-12-18 01:34:49 +01007913 {
7914 struct pipe *cpipe;
7915 for (cpipe = pi; cpipe; cpipe = cpipe->next) {
7916 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
7917 continue;
7918 /* current word is FOR or IN (BOLD in comments below) */
7919 if (cpipe->next == NULL) {
7920 syntax_error("malformed for");
7921 debug_leave();
7922 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
7923 return 1;
7924 }
7925 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
7926 if (cpipe->next->res_word == RES_DO)
7927 continue;
7928 /* next word is not "do". It must be "in" then ("FOR v in ...") */
7929 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
7930 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
7931 ) {
7932 syntax_error("malformed for");
7933 debug_leave();
7934 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
7935 return 1;
7936 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007937 }
7938 }
7939#endif
7940
7941 /* Past this point, all code paths should jump to ret: label
7942 * in order to return, no direct "return" statements please.
7943 * This helps to ensure that no memory is leaked. */
7944
7945#if ENABLE_HUSH_JOB
7946 G.run_list_level++;
7947#endif
7948
7949#if HAS_KEYWORDS
7950 rword = RES_NONE;
7951 last_rword = RES_XXXX;
7952#endif
7953 last_followup = PIPE_SEQ;
7954 rcode = G.last_exitcode;
7955
7956 /* Go through list of pipes, (maybe) executing them. */
7957 for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01007958 int r;
7959
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007960 if (G.flag_SIGINT)
7961 break;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02007962 if (G_flag_return_in_progress == 1)
7963 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007964
7965 IF_HAS_KEYWORDS(rword = pi->res_word;)
7966 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
7967 rword, cond_code, last_rword);
7968#if ENABLE_HUSH_LOOPS
7969 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
7970 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
7971 ) {
7972 /* start of a loop: remember where loop starts */
7973 loop_top = pi;
7974 G.depth_of_loop++;
7975 }
7976#endif
7977 /* Still in the same "if...", "then..." or "do..." branch? */
7978 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
7979 if ((rcode == 0 && last_followup == PIPE_OR)
7980 || (rcode != 0 && last_followup == PIPE_AND)
7981 ) {
7982 /* It is "<true> || CMD" or "<false> && CMD"
7983 * and we should not execute CMD */
7984 debug_printf_exec("skipped cmd because of || or &&\n");
7985 last_followup = pi->followup;
Denys Vlasenko3beab832013-04-07 18:16:58 +02007986 goto dont_check_jobs_but_continue;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007987 }
7988 }
7989 last_followup = pi->followup;
7990 IF_HAS_KEYWORDS(last_rword = rword;)
7991#if ENABLE_HUSH_IF
7992 if (cond_code) {
7993 if (rword == RES_THEN) {
7994 /* if false; then ... fi has exitcode 0! */
7995 G.last_exitcode = rcode = EXIT_SUCCESS;
7996 /* "if <false> THEN cmd": skip cmd */
7997 continue;
7998 }
7999 } else {
8000 if (rword == RES_ELSE || rword == RES_ELIF) {
8001 /* "if <true> then ... ELSE/ELIF cmd":
8002 * skip cmd and all following ones */
8003 break;
8004 }
8005 }
8006#endif
8007#if ENABLE_HUSH_LOOPS
8008 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
8009 if (!for_lcur) {
8010 /* first loop through for */
8011
8012 static const char encoded_dollar_at[] ALIGN1 = {
8013 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
8014 }; /* encoded representation of "$@" */
8015 static const char *const encoded_dollar_at_argv[] = {
8016 encoded_dollar_at, NULL
8017 }; /* argv list with one element: "$@" */
8018 char **vals;
8019
8020 vals = (char**)encoded_dollar_at_argv;
8021 if (pi->next->res_word == RES_IN) {
8022 /* if no variable values after "in" we skip "for" */
8023 if (!pi->next->cmds[0].argv) {
8024 G.last_exitcode = rcode = EXIT_SUCCESS;
8025 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
8026 break;
8027 }
8028 vals = pi->next->cmds[0].argv;
8029 } /* else: "for var; do..." -> assume "$@" list */
8030 /* create list of variable values */
8031 debug_print_strings("for_list made from", vals);
8032 for_list = expand_strvec_to_strvec(vals);
8033 for_lcur = for_list;
8034 debug_print_strings("for_list", for_list);
8035 }
8036 if (!*for_lcur) {
8037 /* "for" loop is over, clean up */
8038 free(for_list);
8039 for_list = NULL;
8040 for_lcur = NULL;
8041 break;
8042 }
8043 /* Insert next value from for_lcur */
8044 /* note: *for_lcur already has quotes removed, $var expanded, etc */
8045 set_local_var(xasprintf("%s=%s", pi->cmds[0].argv[0], *for_lcur++), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
8046 continue;
8047 }
8048 if (rword == RES_IN) {
8049 continue; /* "for v IN list;..." - "in" has no cmds anyway */
8050 }
8051 if (rword == RES_DONE) {
8052 continue; /* "done" has no cmds too */
8053 }
8054#endif
8055#if ENABLE_HUSH_CASE
8056 if (rword == RES_CASE) {
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008057 debug_printf_exec("CASE cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008058 case_word = expand_strvec_to_string(pi->cmds->argv);
Denys Vlasenkobd43c672017-07-05 23:12:15 +02008059 unbackslash(case_word);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008060 continue;
8061 }
8062 if (rword == RES_MATCH) {
8063 char **argv;
8064
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008065 debug_printf_exec("MATCH cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008066 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
8067 break;
8068 /* all prev words didn't match, does this one match? */
8069 argv = pi->cmds->argv;
8070 while (*argv) {
Denys Vlasenkobd43c672017-07-05 23:12:15 +02008071 char *pattern = expand_string_to_string(*argv, /*unbackslash:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008072 /* TODO: which FNM_xxx flags to use? */
8073 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
Denys Vlasenkobd43c672017-07-05 23:12:15 +02008074 debug_printf_exec("fnmatch(pattern:'%s',str:'%s'):%d\n", pattern, case_word, cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008075 free(pattern);
8076 if (cond_code == 0) { /* match! we will execute this branch */
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008077 free(case_word);
8078 case_word = NULL; /* make future "word)" stop */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008079 break;
8080 }
8081 argv++;
8082 }
8083 continue;
8084 }
8085 if (rword == RES_CASE_BODY) { /* inside of a case branch */
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008086 debug_printf_exec("CASE_BODY cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008087 if (cond_code != 0)
8088 continue; /* not matched yet, skip this pipe */
8089 }
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008090 if (rword == RES_ESAC) {
8091 debug_printf_exec("ESAC cond_code:%d\n", cond_code);
8092 if (case_word) {
8093 /* "case" did not match anything: still set $? (to 0) */
8094 G.last_exitcode = rcode = EXIT_SUCCESS;
8095 }
8096 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008097#endif
8098 /* Just pressing <enter> in shell should check for jobs.
8099 * OTOH, in non-interactive shell this is useless
8100 * and only leads to extra job checks */
8101 if (pi->num_cmds == 0) {
8102 if (G_interactive_fd)
8103 goto check_jobs_and_continue;
8104 continue;
8105 }
8106
8107 /* After analyzing all keywords and conditions, we decided
8108 * to execute this pipe. NB: have to do checkjobs(NULL)
8109 * after run_pipe to collect any background children,
8110 * even if list execution is to be stopped. */
8111 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008112#if ENABLE_HUSH_LOOPS
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008113 G.flag_break_continue = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008114#endif
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008115 rcode = r = run_pipe(pi); /* NB: rcode is a smalluint, r is int */
8116 if (r != -1) {
8117 /* We ran a builtin, function, or group.
8118 * rcode is already known
8119 * and we don't need to wait for anything. */
8120 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
8121 G.last_exitcode = rcode;
8122 check_and_run_traps();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008123#if ENABLE_HUSH_LOOPS
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008124 /* Was it "break" or "continue"? */
8125 if (G.flag_break_continue) {
8126 smallint fbc = G.flag_break_continue;
8127 /* We might fall into outer *loop*,
8128 * don't want to break it too */
8129 if (loop_top) {
8130 G.depth_break_continue--;
8131 if (G.depth_break_continue == 0)
8132 G.flag_break_continue = 0;
8133 /* else: e.g. "continue 2" should *break* once, *then* continue */
8134 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
8135 if (G.depth_break_continue != 0 || fbc == BC_BREAK) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02008136 checkjobs(NULL, 0 /*(no pid to wait for)*/);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008137 break;
8138 }
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008139 /* "continue": simulate end of loop */
8140 rword = RES_DONE;
8141 continue;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008142 }
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008143#endif
8144 if (G_flag_return_in_progress == 1) {
8145 checkjobs(NULL, 0 /*(no pid to wait for)*/);
8146 break;
8147 }
8148 } else if (pi->followup == PIPE_BG) {
8149 /* What does bash do with attempts to background builtins? */
8150 /* even bash 3.2 doesn't do that well with nested bg:
8151 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
8152 * I'm NOT treating inner &'s as jobs */
8153#if ENABLE_HUSH_JOB
8154 if (G.run_list_level == 1)
8155 insert_bg_job(pi);
8156#endif
8157 /* Last command's pid goes to $! */
8158 G.last_bg_pid = pi->cmds[pi->num_cmds - 1].pid;
8159 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
8160/* Check pi->pi_inverted? "! sleep 1 & echo $?": bash says 1. dash and ash says 0 */
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008161 rcode = EXIT_SUCCESS;
8162 goto check_traps;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008163 } else {
8164#if ENABLE_HUSH_JOB
8165 if (G.run_list_level == 1 && G_interactive_fd) {
8166 /* Waits for completion, then fg's main shell */
8167 rcode = checkjobs_and_fg_shell(pi);
8168 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008169 goto check_traps;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008170 }
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008171#endif
8172 /* This one just waits for completion */
8173 rcode = checkjobs(pi, 0 /*(no pid to wait for)*/);
8174 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
8175 check_traps:
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008176 G.last_exitcode = rcode;
8177 check_and_run_traps();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008178 }
8179
8180 /* Analyze how result affects subsequent commands */
8181#if ENABLE_HUSH_IF
8182 if (rword == RES_IF || rword == RES_ELIF)
8183 cond_code = rcode;
8184#endif
Denys Vlasenko3beab832013-04-07 18:16:58 +02008185 check_jobs_and_continue:
Denys Vlasenko7e675362016-10-28 21:57:31 +02008186 checkjobs(NULL, 0 /*(no pid to wait for)*/);
Denys Vlasenko3beab832013-04-07 18:16:58 +02008187 dont_check_jobs_but_continue: ;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008188#if ENABLE_HUSH_LOOPS
8189 /* Beware of "while false; true; do ..."! */
Denys Vlasenko00ae9892011-05-31 17:35:45 +02008190 if (pi->next
8191 && (pi->next->res_word == RES_DO || pi->next->res_word == RES_DONE)
Denys Vlasenko56a3b822011-06-01 12:47:07 +02008192 /* check for RES_DONE is needed for "while ...; do \n done" case */
Denys Vlasenko00ae9892011-05-31 17:35:45 +02008193 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008194 if (rword == RES_WHILE) {
8195 if (rcode) {
8196 /* "while false; do...done" - exitcode 0 */
8197 G.last_exitcode = rcode = EXIT_SUCCESS;
8198 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
Denys Vlasenko3beab832013-04-07 18:16:58 +02008199 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008200 }
8201 }
8202 if (rword == RES_UNTIL) {
8203 if (!rcode) {
8204 debug_printf_exec(": until expr is true: breaking\n");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008205 break;
8206 }
8207 }
8208 }
8209#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008210 } /* for (pi) */
8211
8212#if ENABLE_HUSH_JOB
8213 G.run_list_level--;
8214#endif
8215#if ENABLE_HUSH_LOOPS
8216 if (loop_top)
8217 G.depth_of_loop--;
8218 free(for_list);
8219#endif
8220#if ENABLE_HUSH_CASE
8221 free(case_word);
8222#endif
8223 debug_leave();
8224 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
8225 return rcode;
8226}
8227
8228/* Select which version we will use */
8229static int run_and_free_list(struct pipe *pi)
8230{
8231 int rcode = 0;
8232 debug_printf_exec("run_and_free_list entered\n");
Dan Fandrich85c62472010-11-20 13:05:17 -08008233 if (!G.o_opt[OPT_O_NOEXEC]) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008234 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
8235 rcode = run_list(pi);
8236 }
8237 /* free_pipe_list has the side effect of clearing memory.
8238 * In the long run that function can be merged with run_list,
8239 * but doing that now would hobble the debugging effort. */
8240 free_pipe_list(pi);
8241 debug_printf_exec("run_and_free_list return %d\n", rcode);
8242 return rcode;
8243}
8244
8245
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008246static void install_sighandlers(unsigned mask)
Eric Andersen52a97ca2001-06-22 06:49:26 +00008247{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008248 sighandler_t old_handler;
8249 unsigned sig = 0;
8250 while ((mask >>= 1) != 0) {
8251 sig++;
8252 if (!(mask & 1))
8253 continue;
Denys Vlasenko0806e402011-05-12 23:06:20 +02008254 old_handler = install_sighandler(sig, pick_sighandler(sig));
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008255 /* POSIX allows shell to re-enable SIGCHLD
8256 * even if it was SIG_IGN on entry.
8257 * Therefore we skip IGN check for it:
8258 */
8259 if (sig == SIGCHLD)
8260 continue;
8261 if (old_handler == SIG_IGN) {
8262 /* oops... restore back to IGN, and record this fact */
Denys Vlasenko0806e402011-05-12 23:06:20 +02008263 install_sighandler(sig, old_handler);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008264#if ENABLE_HUSH_TRAP
8265 if (!G_traps)
8266 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
8267 free(G_traps[sig]);
8268 G_traps[sig] = xzalloc(1); /* == xstrdup(""); */
8269#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008270 }
8271 }
8272}
8273
8274/* Called a few times only (or even once if "sh -c") */
8275static void install_special_sighandlers(void)
8276{
Denis Vlasenkof9375282009-04-05 19:13:39 +00008277 unsigned mask;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008278
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008279 /* Which signals are shell-special? */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008280 mask = (1 << SIGQUIT) | (1 << SIGCHLD);
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008281 if (G_interactive_fd) {
8282 mask |= SPECIAL_INTERACTIVE_SIGS;
8283 if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008284 mask |= SPECIAL_JOBSTOP_SIGS;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008285 }
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008286 /* Careful, do not re-install handlers we already installed */
8287 if (G.special_sig_mask != mask) {
8288 unsigned diff = mask & ~G.special_sig_mask;
8289 G.special_sig_mask = mask;
8290 install_sighandlers(diff);
8291 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008292}
8293
8294#if ENABLE_HUSH_JOB
8295/* helper */
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008296/* Set handlers to restore tty pgrp and exit */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008297static void install_fatal_sighandlers(void)
Denis Vlasenkof9375282009-04-05 19:13:39 +00008298{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008299 unsigned mask;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008300
8301 /* We will restore tty pgrp on these signals */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008302 mask = 0
Denys Vlasenko830ea352016-11-08 04:59:11 +01008303 /*+ (1 << SIGILL ) * HUSH_DEBUG*/
8304 /*+ (1 << SIGFPE ) * HUSH_DEBUG*/
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008305 + (1 << SIGBUS ) * HUSH_DEBUG
8306 + (1 << SIGSEGV) * HUSH_DEBUG
Denys Vlasenko830ea352016-11-08 04:59:11 +01008307 /*+ (1 << SIGTRAP) * HUSH_DEBUG*/
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008308 + (1 << SIGABRT)
8309 /* bash 3.2 seems to handle these just like 'fatal' ones */
8310 + (1 << SIGPIPE)
8311 + (1 << SIGALRM)
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008312 /* if we are interactive, SIGHUP, SIGTERM and SIGINT are special sigs.
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008313 * if we aren't interactive... but in this case
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008314 * we never want to restore pgrp on exit, and this fn is not called
8315 */
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008316 /*+ (1 << SIGHUP )*/
8317 /*+ (1 << SIGTERM)*/
8318 /*+ (1 << SIGINT )*/
8319 ;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008320 G_fatal_sig_mask = mask;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008321
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008322 install_sighandlers(mask);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008323}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00008324#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00008325
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008326static int set_mode(int state, char mode, const char *o_opt)
Denis Vlasenkod5762932009-03-31 11:22:57 +00008327{
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008328 int idx;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008329 switch (mode) {
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008330 case 'n':
Dan Fandrich85c62472010-11-20 13:05:17 -08008331 G.o_opt[OPT_O_NOEXEC] = state;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008332 break;
8333 case 'x':
8334 IF_HUSH_MODE_X(G_x_mode = state;)
8335 break;
8336 case 'o':
8337 if (!o_opt) {
8338 /* "set -+o" without parameter.
8339 * in bash, set -o produces this output:
8340 * pipefail off
8341 * and set +o:
8342 * set +o pipefail
8343 * We always use the second form.
8344 */
8345 const char *p = o_opt_strings;
8346 idx = 0;
8347 while (*p) {
8348 printf("set %co %s\n", (G.o_opt[idx] ? '-' : '+'), p);
8349 idx++;
8350 p += strlen(p) + 1;
8351 }
8352 break;
8353 }
8354 idx = index_in_strings(o_opt_strings, o_opt);
8355 if (idx >= 0) {
8356 G.o_opt[idx] = state;
8357 break;
8358 }
8359 default:
8360 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008361 }
8362 return EXIT_SUCCESS;
8363}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008364
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00008365int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00008366int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00008367{
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008368 enum {
8369 OPT_login = (1 << 0),
8370 };
8371 unsigned flags;
Eric Andersen25f27032001-04-26 23:22:31 +00008372 int opt;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008373 unsigned builtin_argc;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008374 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008375 struct variable *cur_var;
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008376 struct variable *shell_ver;
Eric Andersenbc604a22001-05-16 05:24:03 +00008377
Denis Vlasenko574f2f42008-02-27 18:41:59 +00008378 INIT_G();
Denys Vlasenko10c01312011-05-11 11:49:21 +02008379 if (EXIT_SUCCESS != 0) /* if EXIT_SUCCESS == 0, it is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008380 G.last_exitcode = EXIT_SUCCESS;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02008381
Denys Vlasenko10c01312011-05-11 11:49:21 +02008382#if ENABLE_HUSH_FAST
8383 G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
8384#endif
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008385#if !BB_MMU
8386 G.argv0_for_re_execing = argv[0];
8387#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008388 /* Deal with HUSH_VERSION */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008389 shell_ver = xzalloc(sizeof(*shell_ver));
8390 shell_ver->flg_export = 1;
8391 shell_ver->flg_read_only = 1;
Denys Vlasenko4f870492010-09-10 11:06:01 +02008392 /* Code which handles ${var<op>...} needs writable values for all variables,
Denys Vlasenko36f774a2010-09-05 14:45:38 +02008393 * therefore we xstrdup: */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008394 shell_ver->varstr = xstrdup(hush_version_str);
Denys Vlasenko605067b2010-09-06 12:10:51 +02008395 /* Create shell local variables from the values
8396 * currently living in the environment */
Denis Vlasenkof886fd22008-10-13 12:36:05 +00008397 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008398 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008399 G.top_var = shell_ver;
Denis Vlasenko87a86552008-07-29 19:43:10 +00008400 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008401 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008402 if (e) while (*e) {
8403 char *value = strchr(*e, '=');
8404 if (value) { /* paranoia */
8405 cur_var->next = xzalloc(sizeof(*cur_var));
8406 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00008407 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008408 cur_var->max_len = strlen(*e);
8409 cur_var->flg_export = 1;
8410 }
8411 e++;
8412 }
Denys Vlasenko605067b2010-09-06 12:10:51 +02008413 /* (Re)insert HUSH_VERSION into env (AFTER we scanned the env!) */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008414 debug_printf_env("putenv '%s'\n", shell_ver->varstr);
8415 putenv(shell_ver->varstr);
Denys Vlasenko6db47842009-09-05 20:15:17 +02008416
8417 /* Export PWD */
8418 set_pwd_var(/*exp:*/ 1);
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008419
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01008420#if BASH_HOSTNAME_VAR
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008421 /* Set (but not export) HOSTNAME unless already set */
8422 if (!get_local_var_value("HOSTNAME")) {
8423 struct utsname uts;
8424 uname(&uts);
8425 set_local_var_from_halves("HOSTNAME", uts.nodename);
8426 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02008427 /* bash also exports SHLVL and _,
8428 * and sets (but doesn't export) the following variables:
8429 * BASH=/bin/bash
8430 * BASH_VERSINFO=([0]="3" [1]="2" [2]="0" [3]="1" [4]="release" [5]="i386-pc-linux-gnu")
8431 * BASH_VERSION='3.2.0(1)-release'
8432 * HOSTTYPE=i386
8433 * MACHTYPE=i386-pc-linux-gnu
8434 * OSTYPE=linux-gnu
Denys Vlasenkodea47882009-10-09 15:40:49 +02008435 * PPID=<NNNNN> - we also do it elsewhere
Denys Vlasenko6db47842009-09-05 20:15:17 +02008436 * EUID=<NNNNN>
8437 * UID=<NNNNN>
8438 * GROUPS=()
8439 * LINES=<NNN>
8440 * COLUMNS=<NNN>
8441 * BASH_ARGC=()
8442 * BASH_ARGV=()
8443 * BASH_LINENO=()
8444 * BASH_SOURCE=()
8445 * DIRSTACK=()
8446 * PIPESTATUS=([0]="0")
8447 * HISTFILE=/<xxx>/.bash_history
8448 * HISTFILESIZE=500
8449 * HISTSIZE=500
8450 * MAILCHECK=60
8451 * PATH=/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:.
8452 * SHELL=/bin/bash
8453 * SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor
8454 * TERM=dumb
8455 * OPTERR=1
8456 * OPTIND=1
8457 * IFS=$' \t\n'
8458 * PS1='\s-\v\$ '
8459 * PS2='> '
8460 * PS4='+ '
8461 */
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008462#endif
Denys Vlasenko6db47842009-09-05 20:15:17 +02008463
Denis Vlasenko38f63192007-01-22 09:03:07 +00008464#if ENABLE_FEATURE_EDITING
Denys Vlasenkoe45af7a2011-09-04 16:15:24 +02008465 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00008466#endif
Denys Vlasenko99862cb2010-09-12 17:34:13 +02008467
Eric Andersen94ac2442001-05-22 19:05:18 +00008468 /* Initialize some more globals to non-zero values */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00008469 cmdedit_update_prompt();
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00008470
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02008471 die_func = restore_ttypgrp_and__exit;
Denis Vlasenkoed782372009-04-10 00:45:02 +00008472
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008473 /* Shell is non-interactive at first. We need to call
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008474 * install_special_sighandlers() if we are going to execute "sh <script>",
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008475 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008476 * If we later decide that we are interactive, we run install_special_sighandlers()
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008477 * in order to intercept (more) signals.
8478 */
8479
8480 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00008481 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008482 flags = (argv[0] && argv[0][0] == '-') ? OPT_login : 0;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008483 builtin_argc = 0;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008484 while (1) {
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008485 opt = getopt(argc, argv, "+c:xinsl"
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008486#if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00008487 "<:$:R:V:"
8488# if ENABLE_HUSH_FUNCTIONS
8489 "F:"
8490# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008491#endif
8492 );
8493 if (opt <= 0)
8494 break;
Eric Andersen25f27032001-04-26 23:22:31 +00008495 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008496 case 'c':
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008497 /* Possibilities:
8498 * sh ... -c 'script'
8499 * sh ... -c 'script' ARG0 [ARG1...]
8500 * On NOMMU, if builtin_argc != 0,
Denys Vlasenko17323a62010-01-28 01:57:05 +01008501 * sh ... -c 'builtin' BARGV... "" ARG0 [ARG1...]
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008502 * "" needs to be replaced with NULL
8503 * and BARGV vector fed to builtin function.
Denys Vlasenko17323a62010-01-28 01:57:05 +01008504 * Note: the form without ARG0 never happens:
8505 * sh ... -c 'builtin' BARGV... ""
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008506 */
Denys Vlasenkodea47882009-10-09 15:40:49 +02008507 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008508 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02008509 G.root_ppid = getppid();
8510 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008511 G.global_argv = argv + optind;
8512 G.global_argc = argc - optind;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008513 if (builtin_argc) {
8514 /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */
8515 const struct built_in_command *x;
8516
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008517 install_special_sighandlers();
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008518 x = find_builtin(optarg);
8519 if (x) { /* paranoia */
8520 G.global_argc -= builtin_argc; /* skip [BARGV...] "" */
8521 G.global_argv += builtin_argc;
8522 G.global_argv[-1] = NULL; /* replace "" */
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01008523 fflush_all();
Denys Vlasenko17323a62010-01-28 01:57:05 +01008524 G.last_exitcode = x->b_function(argv + optind - 1);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008525 }
8526 goto final_return;
8527 }
8528 if (!G.global_argv[0]) {
8529 /* -c 'script' (no params): prevent empty $0 */
8530 G.global_argv--; /* points to argv[i] of 'script' */
8531 G.global_argv[0] = argv[0];
Denys Vlasenko5ae8f1c2010-05-22 06:32:11 +02008532 G.global_argc++;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008533 } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008534 install_special_sighandlers();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008535 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008536 goto final_return;
8537 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00008538 /* Well, we cannot just declare interactiveness,
8539 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008540 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008541 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00008542 case 's':
8543 /* "-s" means "read from stdin", but this is how we always
8544 * operate, so simply do nothing here. */
8545 break;
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008546 case 'l':
8547 flags |= OPT_login;
8548 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008549#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00008550 case '<': /* "big heredoc" support */
Denys Vlasenko729ecb82010-06-07 14:14:26 +02008551 full_write1_str(optarg);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00008552 _exit(0);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008553 case '$': {
8554 unsigned long long empty_trap_mask;
8555
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008556 G.root_pid = bb_strtou(optarg, &optarg, 16);
8557 optarg++;
Denys Vlasenkodea47882009-10-09 15:40:49 +02008558 G.root_ppid = bb_strtou(optarg, &optarg, 16);
8559 optarg++;
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008560 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
8561 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008562 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008563 optarg++;
8564 builtin_argc = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008565 optarg++;
8566 empty_trap_mask = bb_strtoull(optarg, &optarg, 16);
8567 if (empty_trap_mask != 0) {
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02008568 IF_HUSH_TRAP(int sig;)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008569 install_special_sighandlers();
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02008570# if ENABLE_HUSH_TRAP
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008571 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008572 for (sig = 1; sig < NSIG; sig++) {
8573 if (empty_trap_mask & (1LL << sig)) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008574 G_traps[sig] = xzalloc(1); /* == xstrdup(""); */
Denys Vlasenko0806e402011-05-12 23:06:20 +02008575 install_sighandler(sig, SIG_IGN);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008576 }
8577 }
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02008578# endif
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008579 }
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008580# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008581 optarg++;
8582 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008583# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008584 break;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008585 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008586 case 'R':
8587 case 'V':
Denys Vlasenko295fef82009-06-03 12:47:26 +02008588 set_local_var(xstrdup(optarg), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ opt == 'R');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008589 break;
Denis Vlasenkobc569742009-04-12 20:35:19 +00008590# if ENABLE_HUSH_FUNCTIONS
8591 case 'F': {
8592 struct function *funcp = new_function(optarg);
8593 /* funcp->name is already set to optarg */
8594 /* funcp->body is set to NULL. It's a special case. */
8595 funcp->body_as_string = argv[optind];
8596 optind++;
8597 break;
8598 }
8599# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008600#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008601 case 'n':
8602 case 'x':
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008603 if (set_mode(1, opt, NULL) == 0) /* no error */
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008604 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008605 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008606#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008607 fprintf(stderr, "Usage: sh [FILE]...\n"
8608 " or: sh -c command [args]...\n\n");
8609 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008610#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008611 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008612#endif
Eric Andersen25f27032001-04-26 23:22:31 +00008613 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008614 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008615
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008616 /* Skip options. Try "hush -l": $1 should not be "-l"! */
8617 G.global_argc = argc - (optind - 1);
8618 G.global_argv = argv + (optind - 1);
8619 G.global_argv[0] = argv[0];
8620
Denys Vlasenkodea47882009-10-09 15:40:49 +02008621 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008622 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02008623 G.root_ppid = getppid();
8624 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008625
8626 /* If we are login shell... */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008627 if (flags & OPT_login) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008628 FILE *input;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008629 debug_printf("sourcing /etc/profile\n");
8630 input = fopen_for_read("/etc/profile");
8631 if (input != NULL) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008632 remember_FILE(input);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008633 install_special_sighandlers();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008634 parse_and_run_file(input);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008635 fclose_and_forget(input);
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008636 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008637 /* bash: after sourcing /etc/profile,
8638 * tries to source (in the given order):
8639 * ~/.bash_profile, ~/.bash_login, ~/.profile,
Denys Vlasenko28a105d2009-06-01 11:26:30 +02008640 * stopping on first found. --noprofile turns this off.
Denis Vlasenkof9375282009-04-05 19:13:39 +00008641 * bash also sources ~/.bash_logout on exit.
8642 * If called as sh, skips .bash_XXX files.
8643 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008644 }
8645
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008646 if (G.global_argv[1]) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00008647 FILE *input;
8648 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008649 * "bash <script>" (which is never interactive (unless -i?))
8650 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00008651 * If called as sh, does the same but with $ENV.
Denys Vlasenko2eb0a7e2016-10-27 11:28:59 +02008652 * Also NB, per POSIX, $ENV should undergo parameter expansion.
Denis Vlasenkof9375282009-04-05 19:13:39 +00008653 */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008654 G.global_argc--;
8655 G.global_argv++;
8656 debug_printf("running script '%s'\n", G.global_argv[0]);
Denys Vlasenkob7adf7a2016-10-25 17:00:13 +02008657 xfunc_error_retval = 127; /* for "hush /does/not/exist" case */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008658 input = xfopen_for_read(G.global_argv[0]);
Denys Vlasenkob7adf7a2016-10-25 17:00:13 +02008659 xfunc_error_retval = 1;
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008660 remember_FILE(input);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008661 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00008662 parse_and_run_file(input);
8663#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008664 fclose_and_forget(input);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008665#endif
8666 goto final_return;
8667 }
8668
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008669 /* Up to here, shell was non-interactive. Now it may become one.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008670 * NB: don't forget to (re)run install_special_sighandlers() as needed.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008671 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00008672
Denys Vlasenko28a105d2009-06-01 11:26:30 +02008673 /* A shell is interactive if the '-i' flag was given,
8674 * or if all of the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00008675 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00008676 * no arguments remaining or the -s flag given
8677 * standard input is a terminal
8678 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00008679 * Refer to Posix.2, the description of the 'sh' utility.
8680 */
8681#if ENABLE_HUSH_JOB
8682 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Mike Frysinger38478a62009-05-20 04:48:06 -04008683 G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
8684 debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp);
8685 if (G_saved_tty_pgrp < 0)
8686 G_saved_tty_pgrp = 0;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008687
8688 /* try to dup stdin to high fd#, >= 255 */
8689 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
8690 if (G_interactive_fd < 0) {
8691 /* try to dup to any fd */
8692 G_interactive_fd = dup(STDIN_FILENO);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008693 if (G_interactive_fd < 0) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008694 /* give up */
8695 G_interactive_fd = 0;
Mike Frysinger38478a62009-05-20 04:48:06 -04008696 G_saved_tty_pgrp = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00008697 }
8698 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008699// TODO: track & disallow any attempts of user
8700// to (inadvertently) close/redirect G_interactive_fd
Eric Andersen25f27032001-04-26 23:22:31 +00008701 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008702 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008703 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00008704 close_on_exec_on(G_interactive_fd);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008705
Mike Frysinger38478a62009-05-20 04:48:06 -04008706 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008707 /* If we were run as 'hush &', sleep until we are
8708 * in the foreground (tty pgrp == our pgrp).
8709 * If we get started under a job aware app (like bash),
8710 * make sure we are now in charge so we don't fight over
8711 * who gets the foreground */
8712 while (1) {
8713 pid_t shell_pgrp = getpgrp();
Mike Frysinger38478a62009-05-20 04:48:06 -04008714 G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
8715 if (G_saved_tty_pgrp == shell_pgrp)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008716 break;
8717 /* send TTIN to ourself (should stop us) */
8718 kill(- shell_pgrp, SIGTTIN);
8719 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008720 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008721
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008722 /* Install more signal handlers */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008723 install_special_sighandlers();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008724
Mike Frysinger38478a62009-05-20 04:48:06 -04008725 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008726 /* Set other signals to restore saved_tty_pgrp */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008727 install_fatal_sighandlers();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008728 /* Put ourselves in our own process group
8729 * (bash, too, does this only if ctty is available) */
8730 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
8731 /* Grab control of the terminal */
8732 tcsetpgrp(G_interactive_fd, getpid());
8733 }
Denys Vlasenko550bf5b2015-10-09 16:42:57 +02008734 enable_restore_tty_pgrp_on_exit();
Denys Vlasenko4840ae82011-09-04 15:28:03 +02008735
8736# if ENABLE_HUSH_SAVEHISTORY && MAX_HISTORY > 0
8737 {
8738 const char *hp = get_local_var_value("HISTFILE");
8739 if (!hp) {
8740 hp = get_local_var_value("HOME");
8741 if (hp)
8742 hp = concat_path_file(hp, ".hush_history");
8743 } else {
8744 hp = xstrdup(hp);
8745 }
8746 if (hp) {
8747 G.line_input_state->hist_file = hp;
Denys Vlasenko4840ae82011-09-04 15:28:03 +02008748 //set_local_var(xasprintf("HISTFILE=%s", ...));
8749 }
8750# if ENABLE_FEATURE_SH_HISTFILESIZE
8751 hp = get_local_var_value("HISTFILESIZE");
8752 G.line_input_state->max_history = size_from_HISTFILESIZE(hp);
8753# endif
8754 }
8755# endif
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008756 } else {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008757 install_special_sighandlers();
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008758 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008759#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00008760 /* No job control compiled in, only prompt/line editing */
8761 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008762 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
8763 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008764 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008765 G_interactive_fd = dup(STDIN_FILENO);
8766 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008767 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008768 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008769 }
8770 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008771 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00008772 close_on_exec_on(G_interactive_fd);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008773 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008774 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00008775#else
8776 /* We have interactiveness code disabled */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008777 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00008778#endif
8779 /* bash:
8780 * if interactive but not a login shell, sources ~/.bashrc
8781 * (--norc turns this off, --rcfile <file> overrides)
8782 */
8783
8784 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Denys Vlasenkoc34c0332009-09-29 12:25:30 +02008785 /* note: ash and hush share this string */
8786 printf("\n\n%s %s\n"
8787 IF_HUSH_HELP("Enter 'help' for a list of built-in commands.\n")
8788 "\n",
8789 bb_banner,
8790 "hush - the humble shell"
8791 );
Mike Frysingerb2705e12009-03-23 08:44:02 +00008792 }
8793
Denis Vlasenkof9375282009-04-05 19:13:39 +00008794 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00008795
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008796 final_return:
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008797 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00008798}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00008799
8800
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008801/*
8802 * Built-ins
8803 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008804static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008805{
8806 return 0;
8807}
8808
Denys Vlasenko265062d2017-01-10 15:13:30 +01008809#if ENABLE_HUSH_TEST || ENABLE_HUSH_ECHO || ENABLE_HUSH_PRINTF || ENABLE_HUSH_KILL
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02008810static int run_applet_main(char **argv, int (*applet_main_func)(int argc, char **argv))
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008811{
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02008812 int argc = string_array_len(argv);
8813 return applet_main_func(argc, argv);
Mike Frysingerccb19592009-10-15 03:31:15 -04008814}
Denys Vlasenko265062d2017-01-10 15:13:30 +01008815#endif
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01008816#if ENABLE_HUSH_TEST || BASH_TEST2
Mike Frysingerccb19592009-10-15 03:31:15 -04008817static int FAST_FUNC builtin_test(char **argv)
8818{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008819 return run_applet_main(argv, test_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008820}
Denys Vlasenko265062d2017-01-10 15:13:30 +01008821#endif
Denys Vlasenko1cc68042017-01-09 17:10:04 +01008822#if ENABLE_HUSH_ECHO
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008823static int FAST_FUNC builtin_echo(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008824{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008825 return run_applet_main(argv, echo_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008826}
Denys Vlasenko1cc68042017-01-09 17:10:04 +01008827#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01008828#if ENABLE_HUSH_PRINTF
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04008829static int FAST_FUNC builtin_printf(char **argv)
8830{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008831 return run_applet_main(argv, printf_main);
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04008832}
8833#endif
8834
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01008835#if ENABLE_HUSH_HELP
8836static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM)
8837{
8838 const struct built_in_command *x;
8839
8840 printf(
8841 "Built-in commands:\n"
8842 "------------------\n");
8843 for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) {
8844 if (x->b_descr)
8845 printf("%-10s%s\n", x->b_cmd, x->b_descr);
8846 }
8847 return EXIT_SUCCESS;
8848}
8849#endif
8850
8851#if MAX_HISTORY && ENABLE_FEATURE_EDITING
8852static int FAST_FUNC builtin_history(char **argv UNUSED_PARAM)
8853{
8854 show_history(G.line_input_state);
8855 return EXIT_SUCCESS;
8856}
8857#endif
8858
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008859static char **skip_dash_dash(char **argv)
8860{
8861 argv++;
8862 if (argv[0] && argv[0][0] == '-' && argv[0][1] == '-' && argv[0][2] == '\0')
8863 argv++;
8864 return argv;
8865}
8866
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008867static int FAST_FUNC builtin_cd(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008868{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008869 const char *newdir;
8870
8871 argv = skip_dash_dash(argv);
8872 newdir = argv[0];
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008873 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008874 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00008875 * bash says "bash: cd: HOME not set" and does nothing
8876 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008877 */
Denys Vlasenko90a99042009-09-06 02:36:23 +02008878 const char *home = get_local_var_value("HOME");
8879 newdir = home ? home : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00008880 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008881 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008882 /* Mimic bash message exactly */
8883 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008884 return EXIT_FAILURE;
8885 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02008886 /* Read current dir (get_cwd(1) is inside) and set PWD.
8887 * Note: do not enforce exporting. If PWD was unset or unexported,
8888 * set it again, but do not export. bash does the same.
8889 */
8890 set_pwd_var(/*exp:*/ 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008891 return EXIT_SUCCESS;
8892}
8893
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01008894static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM)
8895{
8896 puts(get_cwd(0));
8897 return EXIT_SUCCESS;
8898}
8899
8900static int FAST_FUNC builtin_eval(char **argv)
8901{
8902 int rcode = EXIT_SUCCESS;
8903
8904 argv = skip_dash_dash(argv);
8905 if (*argv) {
8906 char *str = expand_strvec_to_string(argv);
8907 /* bash:
8908 * eval "echo Hi; done" ("done" is syntax error):
8909 * "echo Hi" will not execute too.
8910 */
8911 parse_and_run_string(str);
8912 free(str);
8913 rcode = G.last_exitcode;
8914 }
8915 return rcode;
8916}
8917
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008918static int FAST_FUNC builtin_exec(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008919{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008920 argv = skip_dash_dash(argv);
8921 if (argv[0] == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008922 return EXIT_SUCCESS; /* bash does this */
Denys Vlasenkof37eb392009-10-18 11:46:35 +02008923
Denys Vlasenkof37eb392009-10-18 11:46:35 +02008924 /* Careful: we can end up here after [v]fork. Do not restore
8925 * tty pgrp then, only top-level shell process does that */
8926 if (G_saved_tty_pgrp && getpid() == G.root_pid)
8927 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
8928
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02008929 /* TODO: if exec fails, bash does NOT exit! We do.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008930 * We'll need to undo trap cleanup (it's inside execvp_or_die)
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02008931 * and tcsetpgrp, and this is inherently racy.
8932 */
8933 execvp_or_die(argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008934}
8935
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008936static int FAST_FUNC builtin_exit(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008937{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00008938 debug_printf_exec("%s()\n", __func__);
Denis Vlasenko40e84372009-04-18 11:23:38 +00008939
8940 /* interactive bash:
8941 * # trap "echo EEE" EXIT
8942 * # exit
8943 * exit
8944 * There are stopped jobs.
8945 * (if there are _stopped_ jobs, running ones don't count)
8946 * # exit
8947 * exit
Denys Vlasenko6830ade2013-01-15 13:58:01 +01008948 * EEE (then bash exits)
Denis Vlasenko40e84372009-04-18 11:23:38 +00008949 *
Denys Vlasenkoa110c902010-09-12 15:38:04 +02008950 * TODO: we can use G.exiting = -1 as indicator "last cmd was exit"
Denis Vlasenko40e84372009-04-18 11:23:38 +00008951 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00008952
8953 /* note: EXIT trap is run by hush_exit */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008954 argv = skip_dash_dash(argv);
8955 if (argv[0] == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008956 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008957 /* mimic bash: exit 123abc == exit 255 + error msg */
8958 xfunc_error_retval = 255;
8959 /* bash: exit -2 == exit 254, no error msg */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008960 hush_exit(xatoi(argv[0]) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008961}
8962
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01008963#if ENABLE_HUSH_TYPE
8964/* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */
8965static int FAST_FUNC builtin_type(char **argv)
8966{
8967 int ret = EXIT_SUCCESS;
8968
8969 while (*++argv) {
8970 const char *type;
8971 char *path = NULL;
8972
8973 if (0) {} /* make conditional compile easier below */
8974 /*else if (find_alias(*argv))
8975 type = "an alias";*/
8976#if ENABLE_HUSH_FUNCTIONS
8977 else if (find_function(*argv))
8978 type = "a function";
8979#endif
8980 else if (find_builtin(*argv))
8981 type = "a shell builtin";
8982 else if ((path = find_in_path(*argv)) != NULL)
8983 type = path;
8984 else {
8985 bb_error_msg("type: %s: not found", *argv);
8986 ret = EXIT_FAILURE;
8987 continue;
8988 }
8989
8990 printf("%s is %s\n", *argv, type);
8991 free(path);
8992 }
8993
8994 return ret;
8995}
8996#endif
8997
8998#if ENABLE_HUSH_READ
8999/* Interruptibility of read builtin in bash
9000 * (tested on bash-4.2.8 by sending signals (not by ^C)):
9001 *
9002 * Empty trap makes read ignore corresponding signal, for any signal.
9003 *
9004 * SIGINT:
9005 * - terminates non-interactive shell;
9006 * - interrupts read in interactive shell;
9007 * if it has non-empty trap:
9008 * - executes trap and returns to command prompt in interactive shell;
9009 * - executes trap and returns to read in non-interactive shell;
9010 * SIGTERM:
9011 * - is ignored (does not interrupt) read in interactive shell;
9012 * - terminates non-interactive shell;
9013 * if it has non-empty trap:
9014 * - executes trap and returns to read;
9015 * SIGHUP:
9016 * - terminates shell (regardless of interactivity);
9017 * if it has non-empty trap:
9018 * - executes trap and returns to read;
Denys Vlasenkof5470412017-05-22 19:34:45 +02009019 * SIGCHLD from children:
9020 * - does not interrupt read regardless of interactivity:
9021 * try: sleep 1 & read x; echo $x
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009022 */
9023static int FAST_FUNC builtin_read(char **argv)
9024{
9025 const char *r;
9026 char *opt_n = NULL;
9027 char *opt_p = NULL;
9028 char *opt_t = NULL;
9029 char *opt_u = NULL;
9030 const char *ifs;
9031 int read_flags;
9032
9033 /* "!": do not abort on errors.
9034 * Option string must start with "sr" to match BUILTIN_READ_xxx
9035 */
9036 read_flags = getopt32(argv, "!srn:p:t:u:", &opt_n, &opt_p, &opt_t, &opt_u);
9037 if (read_flags == (uint32_t)-1)
9038 return EXIT_FAILURE;
9039 argv += optind;
9040 ifs = get_local_var_value("IFS"); /* can be NULL */
9041
9042 again:
9043 r = shell_builtin_read(set_local_var_from_halves,
9044 argv,
9045 ifs,
9046 read_flags,
9047 opt_n,
9048 opt_p,
9049 opt_t,
9050 opt_u
9051 );
9052
9053 if ((uintptr_t)r == 1 && errno == EINTR) {
9054 unsigned sig = check_and_run_traps();
Denys Vlasenkof5470412017-05-22 19:34:45 +02009055 if (sig != SIGINT)
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009056 goto again;
9057 }
9058
9059 if ((uintptr_t)r > 1) {
9060 bb_error_msg("%s", r);
9061 r = (char*)(uintptr_t)1;
9062 }
9063
9064 return (uintptr_t)r;
9065}
9066#endif
9067
9068#if ENABLE_HUSH_UMASK
9069static int FAST_FUNC builtin_umask(char **argv)
9070{
9071 int rc;
9072 mode_t mask;
9073
9074 rc = 1;
9075 mask = umask(0);
9076 argv = skip_dash_dash(argv);
9077 if (argv[0]) {
9078 mode_t old_mask = mask;
9079
9080 /* numeric umasks are taken as-is */
9081 /* symbolic umasks are inverted: "umask a=rx" calls umask(222) */
9082 if (!isdigit(argv[0][0]))
9083 mask ^= 0777;
9084 mask = bb_parse_mode(argv[0], mask);
9085 if (!isdigit(argv[0][0]))
9086 mask ^= 0777;
9087 if ((unsigned)mask > 0777) {
9088 mask = old_mask;
9089 /* bash messages:
9090 * bash: umask: 'q': invalid symbolic mode operator
9091 * bash: umask: 999: octal number out of range
9092 */
9093 bb_error_msg("%s: invalid mode '%s'", "umask", argv[0]);
9094 rc = 0;
9095 }
9096 } else {
9097 /* Mimic bash */
9098 printf("%04o\n", (unsigned) mask);
9099 /* fall through and restore mask which we set to 0 */
9100 }
9101 umask(mask);
9102
9103 return !rc; /* rc != 0 - success */
9104}
9105#endif
9106
Denys Vlasenko41ade052017-01-08 18:56:24 +01009107#if ENABLE_HUSH_EXPORT || ENABLE_HUSH_TRAP
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009108static void print_escaped(const char *s)
9109{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009110 if (*s == '\'')
9111 goto squote;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009112 do {
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009113 const char *p = strchrnul(s, '\'');
9114 /* print 'xxxx', possibly just '' */
9115 printf("'%.*s'", (int)(p - s), s);
9116 if (*p == '\0')
9117 break;
9118 s = p;
9119 squote:
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009120 /* s points to '; print "'''...'''" */
9121 putchar('"');
9122 do putchar('\''); while (*++s == '\'');
9123 putchar('"');
9124 } while (*s);
9125}
Denys Vlasenko41ade052017-01-08 18:56:24 +01009126#endif
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009127
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009128#if ENABLE_HUSH_EXPORT || ENABLE_HUSH_LOCAL
9129# if !ENABLE_HUSH_LOCAL
Denys Vlasenko295fef82009-06-03 12:47:26 +02009130#define helper_export_local(argv, exp, lvl) \
9131 helper_export_local(argv, exp)
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009132# endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02009133static void helper_export_local(char **argv, int exp, int lvl)
9134{
9135 do {
9136 char *name = *argv;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009137 char *name_end = strchrnul(name, '=');
Denys Vlasenko295fef82009-06-03 12:47:26 +02009138
9139 /* So far we do not check that name is valid (TODO?) */
9140
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009141 if (*name_end == '\0') {
9142 struct variable *var, **vpp;
Denys Vlasenko295fef82009-06-03 12:47:26 +02009143
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009144 vpp = get_ptr_to_local_var(name, name_end - name);
9145 var = vpp ? *vpp : NULL;
9146
Denys Vlasenko295fef82009-06-03 12:47:26 +02009147 if (exp == -1) { /* unexporting? */
9148 /* export -n NAME (without =VALUE) */
9149 if (var) {
9150 var->flg_export = 0;
9151 debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
9152 unsetenv(name);
9153 } /* else: export -n NOT_EXISTING_VAR: no-op */
9154 continue;
9155 }
9156 if (exp == 1) { /* exporting? */
9157 /* export NAME (without =VALUE) */
9158 if (var) {
9159 var->flg_export = 1;
9160 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
9161 putenv(var->varstr);
9162 continue;
9163 }
9164 }
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009165# if ENABLE_HUSH_LOCAL
Denys Vlasenko61508d92016-10-02 21:12:02 +02009166 if (exp == 0 /* local? */
9167 && var && var->func_nest_level == lvl
9168 ) {
9169 /* "local x=abc; ...; local x" - ignore second local decl */
Denys Vlasenko80729a42016-10-02 22:33:15 +02009170 continue;
Denys Vlasenko61508d92016-10-02 21:12:02 +02009171 }
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009172# endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02009173 /* Exporting non-existing variable.
9174 * bash does not put it in environment,
9175 * but remembers that it is exported,
9176 * and does put it in env when it is set later.
9177 * We just set it to "" and export. */
9178 /* Or, it's "local NAME" (without =VALUE).
9179 * bash sets the value to "". */
9180 name = xasprintf("%s=", name);
9181 } else {
9182 /* (Un)exporting/making local NAME=VALUE */
9183 name = xstrdup(name);
9184 }
9185 set_local_var(name, /*exp:*/ exp, /*lvl:*/ lvl, /*ro:*/ 0);
9186 } while (*++argv);
9187}
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009188#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02009189
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009190#if ENABLE_HUSH_EXPORT
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009191static int FAST_FUNC builtin_export(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009192{
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00009193 unsigned opt_unexport;
9194
Denys Vlasenkodf5131c2009-06-07 16:04:17 +02009195#if ENABLE_HUSH_EXPORT_N
9196 /* "!": do not abort on errors */
9197 opt_unexport = getopt32(argv, "!n");
9198 if (opt_unexport == (uint32_t)-1)
9199 return EXIT_FAILURE;
9200 argv += optind;
9201#else
9202 opt_unexport = 0;
9203 argv++;
9204#endif
9205
9206 if (argv[0] == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009207 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009208 if (e) {
9209 while (*e) {
9210#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009211 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009212#else
9213 /* ash emits: export VAR='VAL'
9214 * bash: declare -x VAR="VAL"
9215 * we follow ash example */
9216 const char *s = *e++;
9217 const char *p = strchr(s, '=');
9218
9219 if (!p) /* wtf? take next variable */
9220 continue;
9221 /* export var= */
9222 printf("export %.*s", (int)(p - s) + 1, s);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009223 print_escaped(p + 1);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009224 putchar('\n');
9225#endif
9226 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01009227 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009228 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009229 return EXIT_SUCCESS;
9230 }
9231
Denys Vlasenko295fef82009-06-03 12:47:26 +02009232 helper_export_local(argv, (opt_unexport ? -1 : 1), 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009233
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009234 return EXIT_SUCCESS;
9235}
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009236#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009237
Denys Vlasenko295fef82009-06-03 12:47:26 +02009238#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009239static int FAST_FUNC builtin_local(char **argv)
Denys Vlasenko295fef82009-06-03 12:47:26 +02009240{
9241 if (G.func_nest_level == 0) {
9242 bb_error_msg("%s: not in a function", argv[0]);
9243 return EXIT_FAILURE; /* bash compat */
9244 }
9245 helper_export_local(argv, 0, G.func_nest_level);
9246 return EXIT_SUCCESS;
9247}
9248#endif
9249
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009250#if ENABLE_HUSH_UNSET
Denys Vlasenko61508d92016-10-02 21:12:02 +02009251/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
9252static int FAST_FUNC builtin_unset(char **argv)
9253{
9254 int ret;
9255 unsigned opts;
9256
9257 /* "!": do not abort on errors */
9258 /* "+": stop at 1st non-option */
9259 opts = getopt32(argv, "!+vf");
9260 if (opts == (unsigned)-1)
9261 return EXIT_FAILURE;
9262 if (opts == 3) {
9263 bb_error_msg("unset: -v and -f are exclusive");
9264 return EXIT_FAILURE;
9265 }
9266 argv += optind;
9267
9268 ret = EXIT_SUCCESS;
9269 while (*argv) {
9270 if (!(opts & 2)) { /* not -f */
9271 if (unset_local_var(*argv)) {
9272 /* unset <nonexistent_var> doesn't fail.
9273 * Error is when one tries to unset RO var.
9274 * Message was printed by unset_local_var. */
9275 ret = EXIT_FAILURE;
9276 }
9277 }
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009278# if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko61508d92016-10-02 21:12:02 +02009279 else {
9280 unset_func(*argv);
9281 }
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009282# endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009283 argv++;
9284 }
9285 return ret;
9286}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009287#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009288
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009289#if ENABLE_HUSH_SET
Denys Vlasenko61508d92016-10-02 21:12:02 +02009290/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
9291 * built-in 'set' handler
9292 * SUSv3 says:
9293 * set [-abCefhmnuvx] [-o option] [argument...]
9294 * set [+abCefhmnuvx] [+o option] [argument...]
9295 * set -- [argument...]
9296 * set -o
9297 * set +o
9298 * Implementations shall support the options in both their hyphen and
9299 * plus-sign forms. These options can also be specified as options to sh.
9300 * Examples:
9301 * Write out all variables and their values: set
9302 * Set $1, $2, and $3 and set "$#" to 3: set c a b
9303 * Turn on the -x and -v options: set -xv
9304 * Unset all positional parameters: set --
9305 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
9306 * Set the positional parameters to the expansion of x, even if x expands
9307 * with a leading '-' or '+': set -- $x
9308 *
9309 * So far, we only support "set -- [argument...]" and some of the short names.
9310 */
9311static int FAST_FUNC builtin_set(char **argv)
9312{
9313 int n;
9314 char **pp, **g_argv;
9315 char *arg = *++argv;
9316
9317 if (arg == NULL) {
9318 struct variable *e;
9319 for (e = G.top_var; e; e = e->next)
9320 puts(e->varstr);
9321 return EXIT_SUCCESS;
9322 }
9323
9324 do {
9325 if (strcmp(arg, "--") == 0) {
9326 ++argv;
9327 goto set_argv;
9328 }
9329 if (arg[0] != '+' && arg[0] != '-')
9330 break;
9331 for (n = 1; arg[n]; ++n) {
9332 if (set_mode((arg[0] == '-'), arg[n], argv[1]))
9333 goto error;
9334 if (arg[n] == 'o' && argv[1])
9335 argv++;
9336 }
9337 } while ((arg = *++argv) != NULL);
9338 /* Now argv[0] is 1st argument */
9339
9340 if (arg == NULL)
9341 return EXIT_SUCCESS;
9342 set_argv:
9343
9344 /* NB: G.global_argv[0] ($0) is never freed/changed */
9345 g_argv = G.global_argv;
9346 if (G.global_args_malloced) {
9347 pp = g_argv;
9348 while (*++pp)
9349 free(*pp);
9350 g_argv[1] = NULL;
9351 } else {
9352 G.global_args_malloced = 1;
9353 pp = xzalloc(sizeof(pp[0]) * 2);
9354 pp[0] = g_argv[0]; /* retain $0 */
9355 g_argv = pp;
9356 }
9357 /* This realloc's G.global_argv */
9358 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
9359
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02009360 G.global_argc = 1 + string_array_len(pp + 1);
Denys Vlasenko61508d92016-10-02 21:12:02 +02009361
9362 return EXIT_SUCCESS;
9363
9364 /* Nothing known, so abort */
9365 error:
9366 bb_error_msg("set: %s: invalid option", arg);
9367 return EXIT_FAILURE;
9368}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009369#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009370
9371static int FAST_FUNC builtin_shift(char **argv)
9372{
9373 int n = 1;
9374 argv = skip_dash_dash(argv);
9375 if (argv[0]) {
9376 n = atoi(argv[0]);
9377 }
9378 if (n >= 0 && n < G.global_argc) {
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01009379 if (G_global_args_malloced) {
Denys Vlasenko61508d92016-10-02 21:12:02 +02009380 int m = 1;
9381 while (m <= n)
9382 free(G.global_argv[m++]);
9383 }
9384 G.global_argc -= n;
9385 memmove(&G.global_argv[1], &G.global_argv[n+1],
9386 G.global_argc * sizeof(G.global_argv[0]));
9387 return EXIT_SUCCESS;
9388 }
9389 return EXIT_FAILURE;
9390}
9391
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009392static int FAST_FUNC builtin_source(char **argv)
Denys Vlasenko61508d92016-10-02 21:12:02 +02009393{
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009394 char *arg_path, *filename;
9395 FILE *input;
9396 save_arg_t sv;
9397 char *args_need_save;
9398#if ENABLE_HUSH_FUNCTIONS
9399 smallint sv_flg;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009400#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009401
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009402 argv = skip_dash_dash(argv);
9403 filename = argv[0];
9404 if (!filename) {
9405 /* bash says: "bash: .: filename argument required" */
9406 return 2; /* bash compat */
9407 }
9408 arg_path = NULL;
9409 if (!strchr(filename, '/')) {
9410 arg_path = find_in_path(filename);
9411 if (arg_path)
9412 filename = arg_path;
9413 }
9414 input = remember_FILE(fopen_or_warn(filename, "r"));
9415 free(arg_path);
9416 if (!input) {
9417 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
9418 /* POSIX: non-interactive shell should abort here,
9419 * not merely fail. So far no one complained :)
9420 */
9421 return EXIT_FAILURE;
9422 }
9423
9424#if ENABLE_HUSH_FUNCTIONS
9425 sv_flg = G_flag_return_in_progress;
9426 /* "we are inside sourced file, ok to use return" */
9427 G_flag_return_in_progress = -1;
9428#endif
9429 args_need_save = argv[1]; /* used as a boolean variable */
9430 if (args_need_save)
9431 save_and_replace_G_args(&sv, argv);
9432
9433 /* "false; . ./empty_line; echo Zero:$?" should print 0 */
9434 G.last_exitcode = 0;
9435 parse_and_run_file(input);
9436 fclose_and_forget(input);
9437
9438 if (args_need_save) /* can't use argv[1] instead: "shift" can mangle it */
9439 restore_G_args(&sv, argv);
9440#if ENABLE_HUSH_FUNCTIONS
9441 G_flag_return_in_progress = sv_flg;
9442#endif
9443
9444 return G.last_exitcode;
9445}
9446
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009447#if ENABLE_HUSH_TRAP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009448static int FAST_FUNC builtin_trap(char **argv)
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009449{
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009450 int sig;
9451 char *new_cmd;
9452
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009453 if (!G_traps)
9454 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009455
9456 argv++;
9457 if (!*argv) {
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00009458 int i;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009459 /* No args: print all trapped */
9460 for (i = 0; i < NSIG; ++i) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009461 if (G_traps[i]) {
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009462 printf("trap -- ");
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009463 print_escaped(G_traps[i]);
Denys Vlasenkoe74aaf92009-09-27 02:05:45 +02009464 /* note: bash adds "SIG", but only if invoked
9465 * as "bash". If called as "sh", or if set -o posix,
9466 * then it prints short signal names.
9467 * We are printing short names: */
9468 printf(" %s\n", get_signame(i));
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009469 }
9470 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01009471 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009472 return EXIT_SUCCESS;
9473 }
9474
9475 new_cmd = NULL;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009476 /* If first arg is a number: reset all specified signals */
9477 sig = bb_strtou(*argv, NULL, 10);
9478 if (errno == 0) {
9479 int ret;
9480 process_sig_list:
9481 ret = EXIT_SUCCESS;
9482 while (*argv) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009483 sighandler_t handler;
9484
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009485 sig = get_signum(*argv++);
9486 if (sig < 0 || sig >= NSIG) {
9487 ret = EXIT_FAILURE;
9488 /* Mimic bash message exactly */
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00009489 bb_perror_msg("trap: %s: invalid signal specification", argv[-1]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009490 continue;
9491 }
9492
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009493 free(G_traps[sig]);
9494 G_traps[sig] = xstrdup(new_cmd);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009495
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01009496 debug_printf("trap: setting SIG%s (%i) to '%s'\n",
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009497 get_signame(sig), sig, G_traps[sig]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009498
9499 /* There is no signal for 0 (EXIT) */
9500 if (sig == 0)
9501 continue;
9502
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009503 if (new_cmd)
9504 handler = (new_cmd[0] ? record_pending_signo : SIG_IGN);
9505 else
9506 /* We are removing trap handler */
9507 handler = pick_sighandler(sig);
Denys Vlasenko0806e402011-05-12 23:06:20 +02009508 install_sighandler(sig, handler);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009509 }
9510 return ret;
9511 }
9512
9513 if (!argv[1]) { /* no second arg */
9514 bb_error_msg("trap: invalid arguments");
9515 return EXIT_FAILURE;
9516 }
9517
9518 /* First arg is "-": reset all specified to default */
9519 /* First arg is "--": skip it, the rest is "handler SIGs..." */
9520 /* Everything else: set arg as signal handler
9521 * (includes "" case, which ignores signal) */
9522 if (argv[0][0] == '-') {
9523 if (argv[0][1] == '\0') { /* "-" */
9524 /* new_cmd remains NULL: "reset these sigs" */
9525 goto reset_traps;
9526 }
9527 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
9528 argv++;
9529 }
9530 /* else: "-something", no special meaning */
9531 }
9532 new_cmd = *argv;
9533 reset_traps:
9534 argv++;
9535 goto process_sig_list;
9536}
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009537#endif
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009538
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009539#if ENABLE_HUSH_JOB
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009540static struct pipe *parse_jobspec(const char *str)
9541{
9542 struct pipe *pi;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009543 unsigned jobnum;
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009544
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009545 if (sscanf(str, "%%%u", &jobnum) != 1) {
9546 if (str[0] != '%'
9547 || (str[1] != '%' && str[1] != '+' && str[1] != '\0')
9548 ) {
9549 bb_error_msg("bad argument '%s'", str);
9550 return NULL;
9551 }
9552 /* It is "%%", "%+" or "%" - current job */
9553 jobnum = G.last_jobid;
9554 if (jobnum == 0) {
9555 bb_error_msg("no current job");
9556 return NULL;
9557 }
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009558 }
9559 for (pi = G.job_list; pi; pi = pi->next) {
9560 if (pi->jobid == jobnum) {
9561 return pi;
9562 }
9563 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009564 bb_error_msg("%u: no such job", jobnum);
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009565 return NULL;
9566}
9567
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009568static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM)
9569{
9570 struct pipe *job;
9571 const char *status_string;
9572
9573 checkjobs(NULL, 0 /*(no pid to wait for)*/);
9574 for (job = G.job_list; job; job = job->next) {
9575 if (job->alive_cmds == job->stopped_cmds)
9576 status_string = "Stopped";
9577 else
9578 status_string = "Running";
9579
9580 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
9581 }
9582 return EXIT_SUCCESS;
9583}
9584
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009585/* built-in 'fg' and 'bg' handler */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009586static int FAST_FUNC builtin_fg_bg(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009587{
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009588 int i;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009589 struct pipe *pi;
9590
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009591 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009592 return EXIT_FAILURE;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009593
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009594 /* If they gave us no args, assume they want the last backgrounded task */
9595 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00009596 for (pi = G.job_list; pi; pi = pi->next) {
9597 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009598 goto found;
9599 }
9600 }
9601 bb_error_msg("%s: no current job", argv[0]);
9602 return EXIT_FAILURE;
9603 }
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009604
9605 pi = parse_jobspec(argv[1]);
9606 if (!pi)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009607 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009608 found:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00009609 /* TODO: bash prints a string representation
9610 * of job being foregrounded (like "sleep 1 | cat") */
Mike Frysinger38478a62009-05-20 04:48:06 -04009611 if (argv[0][0] == 'f' && G_saved_tty_pgrp) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009612 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009613 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009614 }
9615
9616 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00009617 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
9618 for (i = 0; i < pi->num_cmds; i++) {
9619 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009620 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00009621 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009622
9623 i = kill(- pi->pgrp, SIGCONT);
9624 if (i < 0) {
9625 if (errno == ESRCH) {
9626 delete_finished_bg_job(pi);
9627 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009628 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00009629 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009630 }
9631
Denis Vlasenko34d4d892009-04-04 20:24:37 +00009632 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009633 remove_bg_job(pi);
9634 return checkjobs_and_fg_shell(pi);
9635 }
9636 return EXIT_SUCCESS;
9637}
9638#endif
9639
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009640#if ENABLE_HUSH_KILL
9641static int FAST_FUNC builtin_kill(char **argv)
9642{
9643 int ret = 0;
9644
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009645# if ENABLE_HUSH_JOB
9646 if (argv[1] && strcmp(argv[1], "-l") != 0) {
9647 int i = 1;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009648
9649 do {
9650 struct pipe *pi;
9651 char *dst;
9652 int j, n;
9653
9654 if (argv[i][0] != '%')
9655 continue;
9656 /*
9657 * "kill %N" - job kill
9658 * Converting to pgrp / pid kill
9659 */
9660 pi = parse_jobspec(argv[i]);
9661 if (!pi) {
9662 /* Eat bad jobspec */
9663 j = i;
9664 do {
9665 j++;
9666 argv[j - 1] = argv[j];
9667 } while (argv[j]);
9668 ret = 1;
9669 i--;
9670 continue;
9671 }
9672 /*
9673 * In jobs started under job control, we signal
9674 * entire process group by kill -PGRP_ID.
9675 * This happens, f.e., in interactive shell.
9676 *
9677 * Otherwise, we signal each child via
9678 * kill PID1 PID2 PID3.
9679 * Testcases:
9680 * sh -c 'sleep 1|sleep 1 & kill %1'
9681 * sh -c 'true|sleep 2 & sleep 1; kill %1'
9682 * sh -c 'true|sleep 1 & sleep 2; kill %1'
9683 */
Denys Vlasenko5362cc42017-01-09 05:57:13 +01009684 n = G_interactive_fd ? 1 : pi->num_cmds;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009685 dst = alloca(n * sizeof(int)*4);
9686 argv[i] = dst;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009687 if (G_interactive_fd)
9688 dst += sprintf(dst, " -%u", (int)pi->pgrp);
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009689 else for (j = 0; j < n; j++) {
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009690 struct command *cmd = &pi->cmds[j];
9691 /* Skip exited members of the job */
9692 if (cmd->pid == 0)
9693 continue;
9694 /*
9695 * kill_main has matching code to expect
9696 * leading space. Needed to not confuse
9697 * negative pids with "kill -SIGNAL_NO" syntax
9698 */
9699 dst += sprintf(dst, " %u", (int)cmd->pid);
9700 }
9701 *dst = '\0';
9702 } while (argv[++i]);
9703 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009704# endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009705
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009706 if (argv[1] || ret == 0) {
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009707 ret = run_applet_main(argv, kill_main);
9708 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009709 /* else: ret = 1, "kill %bad_jobspec" case */
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009710 return ret;
9711}
9712#endif
9713
9714#if ENABLE_HUSH_WAIT
Mike Frysinger56bdea12009-03-28 20:01:58 +00009715/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009716#if !ENABLE_HUSH_JOB
9717# define wait_for_child_or_signal(pipe,pid) wait_for_child_or_signal(pid)
9718#endif
9719static int wait_for_child_or_signal(struct pipe *waitfor_pipe, pid_t waitfor_pid)
Denys Vlasenko7e675362016-10-28 21:57:31 +02009720{
9721 int ret = 0;
9722 for (;;) {
9723 int sig;
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009724 sigset_t oldset;
Denys Vlasenko7e675362016-10-28 21:57:31 +02009725
Denys Vlasenko830ea352016-11-08 04:59:11 +01009726 if (!sigisemptyset(&G.pending_set))
9727 goto check_sig;
9728
Denys Vlasenko7e675362016-10-28 21:57:31 +02009729 /* waitpid is not interruptible by SA_RESTARTed
9730 * signals which we use. Thus, this ugly dance:
9731 */
9732
9733 /* Make sure possible SIGCHLD is stored in kernel's
9734 * pending signal mask before we call waitpid.
9735 * Or else we may race with SIGCHLD, lose it,
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009736 * and get stuck in sigsuspend...
Denys Vlasenko7e675362016-10-28 21:57:31 +02009737 */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009738 sigfillset(&oldset); /* block all signals, remember old set */
9739 sigprocmask(SIG_SETMASK, &oldset, &oldset);
Denys Vlasenko7e675362016-10-28 21:57:31 +02009740
9741 if (!sigisemptyset(&G.pending_set)) {
9742 /* Crap! we raced with some signal! */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009743 goto restore;
9744 }
9745
9746 /*errno = 0; - checkjobs does this */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009747/* Can't pass waitfor_pipe into checkjobs(): it won't be interruptible */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009748 ret = checkjobs(NULL, waitfor_pid); /* waitpid(WNOHANG) inside */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009749 debug_printf_exec("checkjobs:%d\n", ret);
9750#if ENABLE_HUSH_JOB
9751 if (waitfor_pipe) {
9752 int rcode = job_exited_or_stopped(waitfor_pipe);
9753 debug_printf_exec("job_exited_or_stopped:%d\n", rcode);
9754 if (rcode >= 0) {
9755 ret = rcode;
9756 sigprocmask(SIG_SETMASK, &oldset, NULL);
9757 break;
9758 }
9759 }
9760#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02009761 /* if ECHILD, there are no children (ret is -1 or 0) */
9762 /* if ret == 0, no children changed state */
9763 /* if ret != 0, it's exitcode+1 of exited waitfor_pid child */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009764 if (errno == ECHILD || ret) {
9765 ret--;
9766 if (ret < 0) /* if ECHILD, may need to fix "ret" */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009767 ret = 0;
9768 sigprocmask(SIG_SETMASK, &oldset, NULL);
9769 break;
9770 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02009771 /* Wait for SIGCHLD or any other signal */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009772 /* It is vitally important for sigsuspend that SIGCHLD has non-DFL handler! */
9773 /* Note: sigsuspend invokes signal handler */
9774 sigsuspend(&oldset);
9775 restore:
9776 sigprocmask(SIG_SETMASK, &oldset, NULL);
Denys Vlasenko830ea352016-11-08 04:59:11 +01009777 check_sig:
Denys Vlasenko7e675362016-10-28 21:57:31 +02009778 /* So, did we get a signal? */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009779 sig = check_and_run_traps();
9780 if (sig /*&& sig != SIGCHLD - always true */) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02009781 ret = 128 + sig;
9782 break;
9783 }
9784 /* SIGCHLD, or no signal, or ignored one, such as SIGQUIT. Repeat */
9785 }
9786 return ret;
9787}
9788
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009789static int FAST_FUNC builtin_wait(char **argv)
Mike Frysinger56bdea12009-03-28 20:01:58 +00009790{
Denys Vlasenko7e675362016-10-28 21:57:31 +02009791 int ret;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009792 int status;
Mike Frysinger56bdea12009-03-28 20:01:58 +00009793
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009794 argv = skip_dash_dash(argv);
9795 if (argv[0] == NULL) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +00009796 /* Don't care about wait results */
9797 /* Note 1: must wait until there are no more children */
9798 /* Note 2: must be interruptible */
9799 /* Examples:
9800 * $ sleep 3 & sleep 6 & wait
9801 * [1] 30934 sleep 3
9802 * [2] 30935 sleep 6
9803 * [1] Done sleep 3
9804 * [2] Done sleep 6
9805 * $ sleep 3 & sleep 6 & wait
9806 * [1] 30936 sleep 3
9807 * [2] 30937 sleep 6
9808 * [1] Done sleep 3
9809 * ^C <-- after ~4 sec from keyboard
9810 * $
9811 */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009812 return wait_for_child_or_signal(NULL, 0 /*(no job and no pid to wait for)*/);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00009813 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00009814
Denys Vlasenko7e675362016-10-28 21:57:31 +02009815 do {
Denis Vlasenkod5762932009-03-31 11:22:57 +00009816 pid_t pid = bb_strtou(*argv, NULL, 10);
Denys Vlasenko7e675362016-10-28 21:57:31 +02009817 if (errno || pid <= 0) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009818#if ENABLE_HUSH_JOB
9819 if (argv[0][0] == '%') {
Denys Vlasenko02affb42016-11-08 00:59:29 +01009820 struct pipe *wait_pipe;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009821 ret = 127; /* bash compat for bad jobspecs */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009822 wait_pipe = parse_jobspec(*argv);
9823 if (wait_pipe) {
Denys Vlasenko02affb42016-11-08 00:59:29 +01009824 ret = job_exited_or_stopped(wait_pipe);
9825 if (ret < 0)
9826 ret = wait_for_child_or_signal(wait_pipe, 0);
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009827 }
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009828 /* else: parse_jobspec() already emitted error msg */
9829 continue;
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009830 }
9831#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00009832 /* mimic bash message */
9833 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009834 ret = EXIT_FAILURE;
9835 continue; /* bash checks all argv[] */
Denis Vlasenkod5762932009-03-31 11:22:57 +00009836 }
Denys Vlasenko02affb42016-11-08 00:59:29 +01009837
Denys Vlasenko7e675362016-10-28 21:57:31 +02009838 /* Do we have such child? */
9839 ret = waitpid(pid, &status, WNOHANG);
9840 if (ret < 0) {
9841 /* No */
9842 if (errno == ECHILD) {
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009843 if (G.last_bg_pid > 0 && pid == G.last_bg_pid) {
9844 /* "wait $!" but last bg task has already exited. Try:
9845 * (sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $?
9846 * In bash it prints exitcode 0, then 3.
Denys Vlasenko26ad94b2016-11-07 23:07:21 +01009847 * In dash, it is 127.
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009848 */
Denys Vlasenko26ad94b2016-11-07 23:07:21 +01009849 /* ret = G.last_bg_pid_exitstatus - FIXME */
9850 } else {
9851 /* Example: "wait 1". mimic bash message */
9852 bb_error_msg("wait: pid %d is not a child of this shell", (int)pid);
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009853 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02009854 } else {
9855 /* ??? */
9856 bb_perror_msg("wait %s", *argv);
9857 }
9858 ret = 127;
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009859 continue; /* bash checks all argv[] */
9860 }
9861 if (ret == 0) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02009862 /* Yes, and it still runs */
Denys Vlasenko02affb42016-11-08 00:59:29 +01009863 ret = wait_for_child_or_signal(NULL, pid);
Denys Vlasenko7e675362016-10-28 21:57:31 +02009864 } else {
9865 /* Yes, and it just exited */
Denys Vlasenko02affb42016-11-08 00:59:29 +01009866 process_wait_result(NULL, pid, status);
Denys Vlasenko85378cd2015-10-11 21:47:11 +02009867 ret = WEXITSTATUS(status);
Mike Frysinger56bdea12009-03-28 20:01:58 +00009868 if (WIFSIGNALED(status))
9869 ret = 128 + WTERMSIG(status);
Mike Frysinger56bdea12009-03-28 20:01:58 +00009870 }
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009871 } while (*++argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00009872
9873 return ret;
9874}
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009875#endif
Mike Frysinger56bdea12009-03-28 20:01:58 +00009876
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009877#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
9878static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
9879{
9880 if (argv[1]) {
9881 def = bb_strtou(argv[1], NULL, 10);
9882 if (errno || def < def_min || argv[2]) {
9883 bb_error_msg("%s: bad arguments", argv[0]);
9884 def = UINT_MAX;
9885 }
9886 }
9887 return def;
9888}
9889#endif
9890
Denis Vlasenkodadfb492008-07-29 10:16:05 +00009891#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009892static int FAST_FUNC builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00009893{
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009894 unsigned depth;
Denis Vlasenko87a86552008-07-29 19:43:10 +00009895 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00009896 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denys Vlasenko49117b42016-07-21 14:40:08 +02009897 /* if we came from builtin_continue(), need to undo "= 1" */
9898 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00009899 return EXIT_SUCCESS; /* bash compat */
9900 }
Denys Vlasenko49117b42016-07-21 14:40:08 +02009901 G.flag_break_continue++; /* BC_BREAK = 1, or BC_CONTINUE = 2 */
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009902
9903 G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
9904 if (depth == UINT_MAX)
9905 G.flag_break_continue = BC_BREAK;
9906 if (G.depth_of_loop < depth)
Denis Vlasenko87a86552008-07-29 19:43:10 +00009907 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009908
Denis Vlasenkobcb25532008-07-28 23:04:34 +00009909 return EXIT_SUCCESS;
9910}
9911
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009912static int FAST_FUNC builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00009913{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00009914 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
9915 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00009916}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00009917#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009918
9919#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009920static int FAST_FUNC builtin_return(char **argv)
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009921{
9922 int rc;
9923
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02009924 if (G_flag_return_in_progress != -1) {
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009925 bb_error_msg("%s: not in a function or sourced script", argv[0]);
9926 return EXIT_FAILURE; /* bash compat */
9927 }
9928
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02009929 G_flag_return_in_progress = 1;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009930
9931 /* bash:
9932 * out of range: wraps around at 256, does not error out
9933 * non-numeric param:
9934 * f() { false; return qwe; }; f; echo $?
9935 * bash: return: qwe: numeric argument required <== we do this
9936 * 255 <== we also do this
9937 */
9938 rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
9939 return rc;
9940}
9941#endif
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009942
9943#if ENABLE_HUSH_MEMLEAK
9944static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM)
9945{
9946 void *p;
9947 unsigned long l;
9948
9949# ifdef M_TRIM_THRESHOLD
9950 /* Optional. Reduces probability of false positives */
9951 malloc_trim(0);
9952# endif
9953 /* Crude attempt to find where "free memory" starts,
9954 * sans fragmentation. */
9955 p = malloc(240);
9956 l = (unsigned long)p;
9957 free(p);
9958 p = malloc(3400);
9959 if (l < (unsigned long)p) l = (unsigned long)p;
9960 free(p);
9961
9962
9963# if 0 /* debug */
9964 {
9965 struct mallinfo mi = mallinfo();
9966 printf("top alloc:0x%lx malloced:%d+%d=%d\n", l,
9967 mi.arena, mi.hblkhd, mi.arena + mi.hblkhd);
9968 }
9969# endif
9970
9971 if (!G.memleak_value)
9972 G.memleak_value = l;
9973
9974 l -= G.memleak_value;
9975 if ((long)l < 0)
9976 l = 0;
9977 l /= 1024;
9978 if (l > 127)
9979 l = 127;
9980
9981 /* Exitcode is "how many kilobytes we leaked since 1st call" */
9982 return l;
9983}
9984#endif