blob: cf6d8cd9feab0062b22062641c1d4caa465578cb [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 Vlasenko5dad7bd2017-07-06 19:48:20 +02005622 if (beg < 0) {
5623 /* negative beg counts from the end */
5624 beg = (arith_t)strlen(val) + beg;
5625 if (beg < 0) /* ${v: -999999} is "" */
5626 beg = len = 0;
5627 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005628 debug_printf_varexp("from val:'%s'\n", val);
Denys Vlasenkob771c652010-09-13 00:34:26 +02005629 if (len == 0 || !val || beg >= strlen(val)) {
Denys Vlasenko063847d2010-09-15 13:33:02 +02005630 arith_err:
Denys Vlasenkob771c652010-09-13 00:34:26 +02005631 val = NULL;
5632 } else {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005633 /* Paranoia. What if user entered 9999999999999
5634 * which fits in arith_t but not int? */
5635 if (len >= INT_MAX)
5636 len = INT_MAX;
5637 val = to_be_freed = xstrndup(val + beg, len);
5638 }
5639 debug_printf_varexp("val:'%s'\n", val);
5640 } else
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005641#endif /* HUSH_SUBSTR_EXPANSION && FEATURE_SH_MATH */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005642 {
5643 die_if_script("malformed ${%s:...}", var);
Denys Vlasenkob771c652010-09-13 00:34:26 +02005644 val = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005645 }
5646 } else { /* one of "-=+?" */
5647 /* Standard-mandated substitution ops:
5648 * ${var?word} - indicate error if unset
5649 * If var is unset, word (or a message indicating it is unset
5650 * if word is null) is written to standard error
5651 * and the shell exits with a non-zero exit status.
5652 * Otherwise, the value of var is substituted.
5653 * ${var-word} - use default value
5654 * If var is unset, word is substituted.
5655 * ${var=word} - assign and use default value
5656 * If var is unset, word is assigned to var.
5657 * In all cases, final value of var is substituted.
5658 * ${var+word} - use alternative value
5659 * If var is unset, null is substituted.
5660 * Otherwise, word is substituted.
5661 *
5662 * Word is subjected to tilde expansion, parameter expansion,
5663 * command substitution, and arithmetic expansion.
5664 * If word is not needed, it is not expanded.
5665 *
5666 * Colon forms (${var:-word}, ${var:=word} etc) do the same,
5667 * but also treat null var as if it is unset.
5668 */
5669 int use_word = (!val || ((exp_save == ':') && !val[0]));
5670 if (exp_op == '+')
5671 use_word = !use_word;
5672 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
5673 (exp_save == ':') ? "true" : "false", use_word);
5674 if (use_word) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005675 to_be_freed = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005676 if (to_be_freed)
5677 exp_word = to_be_freed;
5678 if (exp_op == '?') {
5679 /* mimic bash message */
5680 die_if_script("%s: %s",
5681 var,
5682 exp_word[0] ? exp_word : "parameter null or not set"
5683 );
5684//TODO: how interactive bash aborts expansion mid-command?
5685 } else {
5686 val = exp_word;
5687 }
5688
5689 if (exp_op == '=') {
5690 /* ${var=[word]} or ${var:=[word]} */
5691 if (isdigit(var[0]) || var[0] == '#') {
5692 /* mimic bash message */
5693 die_if_script("$%s: cannot assign in this way", var);
5694 val = NULL;
5695 } else {
5696 char *new_var = xasprintf("%s=%s", var, val);
5697 set_local_var(new_var, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
5698 }
5699 }
5700 }
5701 } /* one of "-=+?" */
5702
5703 *exp_saveptr = exp_save;
5704 } /* if (exp_op) */
5705
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005706 arg[0] = arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005707
5708 *pp = p;
5709 *to_be_freed_pp = to_be_freed;
5710 return val;
5711}
5712
5713/* Expand all variable references in given string, adding words to list[]
5714 * at n, n+1,... positions. Return updated n (so that list[n] is next one
5715 * to be filled). This routine is extremely tricky: has to deal with
5716 * variables/parameters with whitespace, $* and $@, and constructs like
5717 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005718static NOINLINE int expand_vars_to_list(o_string *output, int n, char *arg)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005719{
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005720 /* output->o_expflags & EXP_FLAG_SINGLEWORD (0x80) if we are in
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005721 * expansion of right-hand side of assignment == 1-element expand.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005722 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005723 char cant_be_null = 0; /* only bit 0x80 matters */
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005724 int ended_in_ifs = 0; /* did last unquoted expansion end with IFS chars? */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005725 char *p;
5726
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005727 debug_printf_expand("expand_vars_to_list: arg:'%s' singleword:%x\n", arg,
5728 !!(output->o_expflags & EXP_FLAG_SINGLEWORD));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005729 debug_print_list("expand_vars_to_list", output, n);
5730 n = o_save_ptr(output, n);
5731 debug_print_list("expand_vars_to_list[0]", output, n);
5732
5733 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
5734 char first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005735 char *to_be_freed = NULL;
5736 const char *val = NULL;
5737#if ENABLE_HUSH_TICK
5738 o_string subst_result = NULL_O_STRING;
5739#endif
Denys Vlasenko0b883582016-12-23 16:49:07 +01005740#if ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005741 char arith_buf[sizeof(arith_t)*3 + 2];
5742#endif
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005743
5744 if (ended_in_ifs) {
5745 o_addchr(output, '\0');
5746 n = o_save_ptr(output, n);
5747 ended_in_ifs = 0;
5748 }
5749
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005750 o_addblock(output, arg, p - arg);
5751 debug_print_list("expand_vars_to_list[1]", output, n);
5752 arg = ++p;
5753 p = strchr(p, SPECIAL_VAR_SYMBOL);
5754
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005755 /* Fetch special var name (if it is indeed one of them)
5756 * and quote bit, force the bit on if singleword expansion -
5757 * important for not getting v=$@ expand to many words. */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005758 first_ch = arg[0] | (output->o_expflags & EXP_FLAG_SINGLEWORD);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005759
5760 /* Is this variable quoted and thus expansion can't be null?
5761 * "$@" is special. Even if quoted, it can still
5762 * expand to nothing (not even an empty string),
5763 * thus it is excluded. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005764 if ((first_ch & 0x7f) != '@')
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005765 cant_be_null |= first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005766
5767 switch (first_ch & 0x7f) {
5768 /* Highest bit in first_ch indicates that var is double-quoted */
5769 case '*':
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005770 case '@': {
5771 int i;
5772 if (!G.global_argv[1])
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005773 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005774 i = 1;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005775 cant_be_null |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005776 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005777 while (G.global_argv[i]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005778 n = expand_on_ifs(NULL, output, n, G.global_argv[i]);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005779 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
5780 if (G.global_argv[i++][0] && G.global_argv[i]) {
5781 /* this argv[] is not empty and not last:
5782 * put terminating NUL, start new word */
5783 o_addchr(output, '\0');
5784 debug_print_list("expand_vars_to_list[2]", output, n);
5785 n = o_save_ptr(output, n);
5786 debug_print_list("expand_vars_to_list[3]", output, n);
5787 }
5788 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005789 } else
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005790 /* If EXP_FLAG_SINGLEWORD, we handle assignment 'a=....$@.....'
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005791 * and in this case should treat it like '$*' - see 'else...' below */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005792 if (first_ch == ('@'|0x80) /* quoted $@ */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005793 && !(output->o_expflags & EXP_FLAG_SINGLEWORD) /* not v="$@" case */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005794 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005795 while (1) {
5796 o_addQstr(output, G.global_argv[i]);
5797 if (++i >= G.global_argc)
5798 break;
5799 o_addchr(output, '\0');
5800 debug_print_list("expand_vars_to_list[4]", output, n);
5801 n = o_save_ptr(output, n);
5802 }
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005803 } else { /* quoted $* (or v="$@" case): add as one word */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005804 while (1) {
5805 o_addQstr(output, G.global_argv[i]);
5806 if (!G.global_argv[++i])
5807 break;
5808 if (G.ifs[0])
5809 o_addchr(output, G.ifs[0]);
5810 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005811 output->has_quoted_part = 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005812 }
5813 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005814 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005815 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
5816 /* "Empty variable", used to make "" etc to not disappear */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005817 output->has_quoted_part = 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005818 arg++;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005819 cant_be_null = 0x80;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005820 break;
5821#if ENABLE_HUSH_TICK
5822 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005823 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005824 arg++;
5825 /* Can't just stuff it into output o_string,
5826 * expanded result may need to be globbed
Denys Vlasenko10ad6222017-04-17 16:13:32 +02005827 * and $IFS-split */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005828 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
5829 G.last_exitcode = process_command_subs(&subst_result, arg);
5830 debug_printf_subst("SUBST RES:%d '%s'\n", G.last_exitcode, subst_result.data);
5831 val = subst_result.data;
5832 goto store_val;
5833#endif
Denys Vlasenko0b883582016-12-23 16:49:07 +01005834#if ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005835 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
5836 arith_t res;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005837
5838 arg++; /* skip '+' */
5839 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
5840 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005841 res = expand_and_evaluate_arith(arg, NULL);
Denys Vlasenkobed7c812010-09-16 11:50:46 +02005842 debug_printf_subst("ARITH RES '"ARITH_FMT"'\n", res);
5843 sprintf(arith_buf, ARITH_FMT, res);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005844 val = arith_buf;
5845 break;
5846 }
5847#endif
5848 default:
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005849 val = expand_one_var(&to_be_freed, arg, &p);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005850 IF_HUSH_TICK(store_val:)
5851 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005852 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val,
5853 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005854 if (val && val[0]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005855 n = expand_on_ifs(&ended_in_ifs, output, n, val);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005856 val = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005857 }
5858 } else { /* quoted $VAR, val will be appended below */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005859 output->has_quoted_part = 1;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005860 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val,
5861 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005862 }
5863 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005864 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
5865
5866 if (val && val[0]) {
5867 o_addQstr(output, val);
5868 }
5869 free(to_be_freed);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005870
5871 /* Restore NULL'ed SPECIAL_VAR_SYMBOL.
5872 * Do the check to avoid writing to a const string. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005873 if (*p != SPECIAL_VAR_SYMBOL)
5874 *p = SPECIAL_VAR_SYMBOL;
5875
5876#if ENABLE_HUSH_TICK
5877 o_free(&subst_result);
5878#endif
5879 arg = ++p;
5880 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
5881
5882 if (arg[0]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005883 if (ended_in_ifs) {
5884 o_addchr(output, '\0');
5885 n = o_save_ptr(output, n);
5886 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005887 debug_print_list("expand_vars_to_list[a]", output, n);
5888 /* this part is literal, and it was already pre-quoted
5889 * if needed (much earlier), do not use o_addQstr here! */
5890 o_addstr_with_NUL(output, arg);
5891 debug_print_list("expand_vars_to_list[b]", output, n);
5892 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005893 && !(cant_be_null & 0x80) /* and all vars were not quoted. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005894 ) {
5895 n--;
5896 /* allow to reuse list[n] later without re-growth */
5897 output->has_empty_slot = 1;
5898 } else {
5899 o_addchr(output, '\0');
5900 }
5901
5902 return n;
5903}
5904
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005905static char **expand_variables(char **argv, unsigned expflags)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005906{
5907 int n;
5908 char **list;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005909 o_string output = NULL_O_STRING;
5910
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005911 output.o_expflags = expflags;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005912
5913 n = 0;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005914 while (*argv) {
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005915 n = expand_vars_to_list(&output, n, *argv);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005916 argv++;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005917 }
5918 debug_print_list("expand_variables", &output, n);
5919
5920 /* output.data (malloced in one block) gets returned in "list" */
5921 list = o_finalize_list(&output, n);
5922 debug_print_strings("expand_variables[1]", list);
5923 return list;
5924}
5925
5926static char **expand_strvec_to_strvec(char **argv)
5927{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005928 return expand_variables(argv, EXP_FLAG_GLOB | EXP_FLAG_ESC_GLOB_CHARS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005929}
5930
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005931#if BASH_TEST2
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005932static char **expand_strvec_to_strvec_singleword_noglob(char **argv)
5933{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005934 return expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005935}
5936#endif
5937
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005938/* Used for expansion of right hand of assignments,
5939 * $((...)), heredocs, variable espansion parts.
5940 *
5941 * NB: should NOT do globbing!
5942 * "export v=/bin/c*; env | grep ^v=" outputs "v=/bin/c*"
5943 */
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005944static char *expand_string_to_string(const char *str, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005945{
Denys Vlasenko637982f2017-07-06 01:52:23 +02005946#if !BASH_PATTERN_SUBST && !ENABLE_HUSH_CASE
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005947 const int do_unbackslash = 1;
5948#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005949 char *argv[2], **list;
5950
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005951 debug_printf_expand("string_to_string<='%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005952 /* This is generally an optimization, but it also
5953 * handles "", which otherwise trips over !list[0] check below.
5954 * (is this ever happens that we actually get str="" here?)
5955 */
5956 if (!strchr(str, SPECIAL_VAR_SYMBOL) && !strchr(str, '\\')) {
5957 //TODO: Can use on strings with \ too, just unbackslash() them?
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005958 debug_printf_expand("string_to_string(fast)=>'%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005959 return xstrdup(str);
5960 }
5961
5962 argv[0] = (char*)str;
5963 argv[1] = NULL;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005964 list = expand_variables(argv, do_unbackslash
5965 ? EXP_FLAG_ESC_GLOB_CHARS | EXP_FLAG_SINGLEWORD
5966 : EXP_FLAG_SINGLEWORD
5967 );
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005968 if (HUSH_DEBUG)
5969 if (!list[0] || list[1])
5970 bb_error_msg_and_die("BUG in varexp2");
5971 /* actually, just move string 2*sizeof(char*) bytes back */
5972 overlapping_strcpy((char*)list, list[0]);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005973 if (do_unbackslash)
5974 unbackslash((char*)list);
5975 debug_printf_expand("string_to_string=>'%s'\n", (char*)list);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005976 return (char*)list;
5977}
5978
Denys Vlasenkobd43c672017-07-05 23:12:15 +02005979/* Used for "eval" builtin and case string */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005980static char* expand_strvec_to_string(char **argv)
5981{
5982 char **list;
5983
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005984 list = expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005985 /* Convert all NULs to spaces */
5986 if (list[0]) {
5987 int n = 1;
5988 while (list[n]) {
5989 if (HUSH_DEBUG)
5990 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
5991 bb_error_msg_and_die("BUG in varexp3");
5992 /* bash uses ' ' regardless of $IFS contents */
5993 list[n][-1] = ' ';
5994 n++;
5995 }
5996 }
Denys Vlasenko78c9c732016-09-29 01:44:17 +02005997 overlapping_strcpy((char*)list, list[0] ? list[0] : "");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005998 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
5999 return (char*)list;
6000}
6001
6002static char **expand_assignments(char **argv, int count)
6003{
6004 int i;
6005 char **p;
6006
6007 G.expanded_assignments = p = NULL;
6008 /* Expand assignments into one string each */
6009 for (i = 0; i < count; i++) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006010 G.expanded_assignments = p = add_string_to_strings(p, expand_string_to_string(argv[i], /*unbackslash:*/ 1));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006011 }
6012 G.expanded_assignments = NULL;
6013 return p;
6014}
6015
6016
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006017static void switch_off_special_sigs(unsigned mask)
6018{
6019 unsigned sig = 0;
6020 while ((mask >>= 1) != 0) {
6021 sig++;
6022 if (!(mask & 1))
6023 continue;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006024#if ENABLE_HUSH_TRAP
6025 if (G_traps) {
6026 if (G_traps[sig] && !G_traps[sig][0])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006027 /* trap is '', has to remain SIG_IGN */
6028 continue;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006029 free(G_traps[sig]);
6030 G_traps[sig] = NULL;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006031 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006032#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006033 /* We are here only if no trap or trap was not '' */
Denys Vlasenko0806e402011-05-12 23:06:20 +02006034 install_sighandler(sig, SIG_DFL);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006035 }
6036}
6037
Denys Vlasenkob347df92011-08-09 22:49:15 +02006038#if BB_MMU
6039/* never called */
6040void re_execute_shell(char ***to_free, const char *s,
6041 char *g_argv0, char **g_argv,
6042 char **builtin_argv) NORETURN;
6043
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006044static void reset_traps_to_defaults(void)
6045{
6046 /* This function is always called in a child shell
6047 * after fork (not vfork, NOMMU doesn't use this function).
6048 */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006049 IF_HUSH_TRAP(unsigned sig;)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006050 unsigned mask;
6051
6052 /* Child shells are not interactive.
6053 * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
6054 * Testcase: (while :; do :; done) + ^Z should background.
6055 * Same goes for SIGTERM, SIGHUP, SIGINT.
6056 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006057 mask = (G.special_sig_mask & SPECIAL_INTERACTIVE_SIGS) | G_fatal_sig_mask;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006058 if (!G_traps && !mask)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006059 return; /* already no traps and no special sigs */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006060
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006061 /* Switch off special sigs */
6062 switch_off_special_sigs(mask);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006063# if ENABLE_HUSH_JOB
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006064 G_fatal_sig_mask = 0;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006065# endif
Denys Vlasenko10c01312011-05-11 11:49:21 +02006066 G.special_sig_mask &= ~SPECIAL_INTERACTIVE_SIGS;
Denys Vlasenkof58f7052011-05-12 02:10:33 +02006067 /* SIGQUIT,SIGCHLD and maybe SPECIAL_JOBSTOP_SIGS
6068 * remain set in G.special_sig_mask */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006069
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006070# if ENABLE_HUSH_TRAP
6071 if (!G_traps)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006072 return;
6073
6074 /* Reset all sigs to default except ones with empty traps */
6075 for (sig = 0; sig < NSIG; sig++) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006076 if (!G_traps[sig])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006077 continue; /* no trap: nothing to do */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006078 if (!G_traps[sig][0])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006079 continue; /* empty trap: has to remain SIG_IGN */
6080 /* sig has non-empty trap, reset it: */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006081 free(G_traps[sig]);
6082 G_traps[sig] = NULL;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006083 /* There is no signal for trap 0 (EXIT) */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006084 if (sig == 0)
6085 continue;
Denys Vlasenko0806e402011-05-12 23:06:20 +02006086 install_sighandler(sig, pick_sighandler(sig));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006087 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006088# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006089}
6090
6091#else /* !BB_MMU */
6092
6093static void re_execute_shell(char ***to_free, const char *s,
6094 char *g_argv0, char **g_argv,
6095 char **builtin_argv) NORETURN;
6096static void re_execute_shell(char ***to_free, const char *s,
6097 char *g_argv0, char **g_argv,
6098 char **builtin_argv)
6099{
6100# define NOMMU_HACK_FMT ("-$%x:%x:%x:%x:%x:%llx" IF_HUSH_LOOPS(":%x"))
6101 /* delims + 2 * (number of bytes in printed hex numbers) */
6102 char param_buf[sizeof(NOMMU_HACK_FMT) + 2 * (sizeof(int)*6 + sizeof(long long)*1)];
6103 char *heredoc_argv[4];
6104 struct variable *cur;
6105# if ENABLE_HUSH_FUNCTIONS
6106 struct function *funcp;
6107# endif
6108 char **argv, **pp;
6109 unsigned cnt;
6110 unsigned long long empty_trap_mask;
6111
6112 if (!g_argv0) { /* heredoc */
6113 argv = heredoc_argv;
6114 argv[0] = (char *) G.argv0_for_re_execing;
6115 argv[1] = (char *) "-<";
6116 argv[2] = (char *) s;
6117 argv[3] = NULL;
6118 pp = &argv[3]; /* used as pointer to empty environment */
6119 goto do_exec;
6120 }
6121
6122 cnt = 0;
6123 pp = builtin_argv;
6124 if (pp) while (*pp++)
6125 cnt++;
6126
6127 empty_trap_mask = 0;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006128 if (G_traps) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006129 int sig;
6130 for (sig = 1; sig < NSIG; sig++) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006131 if (G_traps[sig] && !G_traps[sig][0])
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006132 empty_trap_mask |= 1LL << sig;
6133 }
6134 }
6135
6136 sprintf(param_buf, NOMMU_HACK_FMT
6137 , (unsigned) G.root_pid
6138 , (unsigned) G.root_ppid
6139 , (unsigned) G.last_bg_pid
6140 , (unsigned) G.last_exitcode
6141 , cnt
6142 , empty_trap_mask
6143 IF_HUSH_LOOPS(, G.depth_of_loop)
6144 );
6145# undef NOMMU_HACK_FMT
6146 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<etc...> <vars...> <funcs...>
6147 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
6148 */
6149 cnt += 6;
6150 for (cur = G.top_var; cur; cur = cur->next) {
6151 if (!cur->flg_export || cur->flg_read_only)
6152 cnt += 2;
6153 }
6154# if ENABLE_HUSH_FUNCTIONS
6155 for (funcp = G.top_func; funcp; funcp = funcp->next)
6156 cnt += 3;
6157# endif
6158 pp = g_argv;
6159 while (*pp++)
6160 cnt++;
6161 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
6162 *pp++ = (char *) G.argv0_for_re_execing;
6163 *pp++ = param_buf;
6164 for (cur = G.top_var; cur; cur = cur->next) {
6165 if (strcmp(cur->varstr, hush_version_str) == 0)
6166 continue;
6167 if (cur->flg_read_only) {
6168 *pp++ = (char *) "-R";
6169 *pp++ = cur->varstr;
6170 } else if (!cur->flg_export) {
6171 *pp++ = (char *) "-V";
6172 *pp++ = cur->varstr;
6173 }
6174 }
6175# if ENABLE_HUSH_FUNCTIONS
6176 for (funcp = G.top_func; funcp; funcp = funcp->next) {
6177 *pp++ = (char *) "-F";
6178 *pp++ = funcp->name;
6179 *pp++ = funcp->body_as_string;
6180 }
6181# endif
6182 /* We can pass activated traps here. Say, -Tnn:trap_string
6183 *
6184 * However, POSIX says that subshells reset signals with traps
6185 * to SIG_DFL.
6186 * I tested bash-3.2 and it not only does that with true subshells
6187 * of the form ( list ), but with any forked children shells.
6188 * I set trap "echo W" WINCH; and then tried:
6189 *
6190 * { echo 1; sleep 20; echo 2; } &
6191 * while true; do echo 1; sleep 20; echo 2; break; done &
6192 * true | { echo 1; sleep 20; echo 2; } | cat
6193 *
6194 * In all these cases sending SIGWINCH to the child shell
6195 * did not run the trap. If I add trap "echo V" WINCH;
6196 * _inside_ group (just before echo 1), it works.
6197 *
6198 * I conclude it means we don't need to pass active traps here.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006199 */
6200 *pp++ = (char *) "-c";
6201 *pp++ = (char *) s;
6202 if (builtin_argv) {
6203 while (*++builtin_argv)
6204 *pp++ = *builtin_argv;
6205 *pp++ = (char *) "";
6206 }
6207 *pp++ = g_argv0;
6208 while (*g_argv)
6209 *pp++ = *g_argv++;
6210 /* *pp = NULL; - is already there */
6211 pp = environ;
6212
6213 do_exec:
6214 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02006215 /* Don't propagate SIG_IGN to the child */
6216 if (SPECIAL_JOBSTOP_SIGS != 0)
6217 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006218 execve(bb_busybox_exec_path, argv, pp);
6219 /* Fallback. Useful for init=/bin/hush usage etc */
6220 if (argv[0][0] == '/')
6221 execve(argv[0], argv, pp);
6222 xfunc_error_retval = 127;
6223 bb_error_msg_and_die("can't re-execute the shell");
6224}
6225#endif /* !BB_MMU */
6226
6227
6228static int run_and_free_list(struct pipe *pi);
6229
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006230/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006231 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
6232 * end_trigger controls how often we stop parsing
6233 * NUL: parse all, execute, return
6234 * ';': parse till ';' or newline, execute, repeat till EOF
6235 */
6236static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00006237{
Denys Vlasenko00243b02009-11-16 02:00:03 +01006238 /* Why we need empty flag?
6239 * An obscure corner case "false; ``; echo $?":
6240 * empty command in `` should still set $? to 0.
6241 * But we can't just set $? to 0 at the start,
6242 * this breaks "false; echo `echo $?`" case.
6243 */
6244 bool empty = 1;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006245 while (1) {
6246 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006247
Denys Vlasenkoa1463192011-01-18 17:55:04 +01006248#if ENABLE_HUSH_INTERACTIVE
6249 if (end_trigger == ';')
6250 inp->promptmode = 0; /* PS1 */
6251#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006252 pipe_list = parse_stream(NULL, inp, end_trigger);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02006253 if (!pipe_list || pipe_list == ERR_PTR) { /* EOF/error */
6254 /* If we are in "big" script
6255 * (not in `cmd` or something similar)...
6256 */
6257 if (pipe_list == ERR_PTR && end_trigger == ';') {
6258 /* Discard cached input (rest of line) */
6259 int ch = inp->last_char;
6260 while (ch != EOF && ch != '\n') {
6261 //bb_error_msg("Discarded:'%c'", ch);
6262 ch = i_getch(inp);
6263 }
6264 /* Force prompt */
6265 inp->p = NULL;
6266 /* This stream isn't empty */
6267 empty = 0;
6268 continue;
6269 }
6270 if (!pipe_list && empty)
Denys Vlasenko00243b02009-11-16 02:00:03 +01006271 G.last_exitcode = 0;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006272 break;
Denys Vlasenko00243b02009-11-16 02:00:03 +01006273 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006274 debug_print_tree(pipe_list, 0);
6275 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
6276 run_and_free_list(pipe_list);
Denys Vlasenko00243b02009-11-16 02:00:03 +01006277 empty = 0;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006278 if (G_flag_return_in_progress == 1)
Denys Vlasenko68d5cb52011-03-24 02:50:03 +01006279 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006280 }
Eric Andersen25f27032001-04-26 23:22:31 +00006281}
6282
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006283static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00006284{
6285 struct in_str input;
6286 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006287 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00006288}
6289
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006290static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00006291{
Eric Andersen25f27032001-04-26 23:22:31 +00006292 struct in_str input;
6293 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006294 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00006295}
6296
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006297#if ENABLE_HUSH_TICK
6298static FILE *generate_stream_from_string(const char *s, pid_t *pid_p)
6299{
6300 pid_t pid;
6301 int channel[2];
6302# if !BB_MMU
6303 char **to_free = NULL;
6304# endif
6305
6306 xpipe(channel);
6307 pid = BB_MMU ? xfork() : xvfork();
6308 if (pid == 0) { /* child */
6309 disable_restore_tty_pgrp_on_exit();
6310 /* Process substitution is not considered to be usual
6311 * 'command execution'.
6312 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
6313 */
6314 bb_signals(0
6315 + (1 << SIGTSTP)
6316 + (1 << SIGTTIN)
6317 + (1 << SIGTTOU)
6318 , SIG_IGN);
6319 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
6320 close(channel[0]); /* NB: close _first_, then move fd! */
6321 xmove_fd(channel[1], 1);
6322 /* Prevent it from trying to handle ctrl-z etc */
6323 IF_HUSH_JOB(G.run_list_level = 1;)
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006324# if ENABLE_HUSH_TRAP
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006325 /* Awful hack for `trap` or $(trap).
6326 *
6327 * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html
6328 * contains an example where "trap" is executed in a subshell:
6329 *
6330 * save_traps=$(trap)
6331 * ...
6332 * eval "$save_traps"
6333 *
6334 * Standard does not say that "trap" in subshell shall print
6335 * parent shell's traps. It only says that its output
6336 * must have suitable form, but then, in the above example
6337 * (which is not supposed to be normative), it implies that.
6338 *
6339 * bash (and probably other shell) does implement it
6340 * (traps are reset to defaults, but "trap" still shows them),
6341 * but as a result, "trap" logic is hopelessly messed up:
6342 *
6343 * # trap
6344 * trap -- 'echo Ho' SIGWINCH <--- we have a handler
6345 * # (trap) <--- trap is in subshell - no output (correct, traps are reset)
6346 * # true | trap <--- trap is in subshell - no output (ditto)
6347 * # echo `true | trap` <--- in subshell - output (but traps are reset!)
6348 * trap -- 'echo Ho' SIGWINCH
6349 * # echo `(trap)` <--- in subshell in subshell - output
6350 * trap -- 'echo Ho' SIGWINCH
6351 * # echo `true | (trap)` <--- in subshell in subshell in subshell - output!
6352 * trap -- 'echo Ho' SIGWINCH
6353 *
6354 * The rules when to forget and when to not forget traps
6355 * get really complex and nonsensical.
6356 *
6357 * Our solution: ONLY bare $(trap) or `trap` is special.
6358 */
6359 s = skip_whitespace(s);
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01006360 if (is_prefixed_with(s, "trap")
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006361 && skip_whitespace(s + 4)[0] == '\0'
6362 ) {
6363 static const char *const argv[] = { NULL, NULL };
6364 builtin_trap((char**)argv);
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02006365 fflush_all(); /* important */
6366 _exit(0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006367 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006368# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006369# if BB_MMU
6370 reset_traps_to_defaults();
6371 parse_and_run_string(s);
6372 _exit(G.last_exitcode);
6373# else
6374 /* We re-execute after vfork on NOMMU. This makes this script safe:
6375 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
6376 * huge=`cat BIG` # was blocking here forever
6377 * echo OK
6378 */
6379 re_execute_shell(&to_free,
6380 s,
6381 G.global_argv[0],
6382 G.global_argv + 1,
6383 NULL);
6384# endif
6385 }
6386
6387 /* parent */
6388 *pid_p = pid;
6389# if ENABLE_HUSH_FAST
6390 G.count_SIGCHLD++;
6391//bb_error_msg("[%d] fork in generate_stream_from_string:"
6392// " G.count_SIGCHLD:%d G.handled_SIGCHLD:%d",
6393// getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6394# endif
6395 enable_restore_tty_pgrp_on_exit();
6396# if !BB_MMU
6397 free(to_free);
6398# endif
6399 close(channel[1]);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02006400 return remember_FILE(xfdopen_for_read(channel[0]));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006401}
6402
6403/* Return code is exit status of the process that is run. */
6404static int process_command_subs(o_string *dest, const char *s)
6405{
6406 FILE *fp;
6407 struct in_str pipe_str;
6408 pid_t pid;
6409 int status, ch, eol_cnt;
6410
6411 fp = generate_stream_from_string(s, &pid);
6412
6413 /* Now send results of command back into original context */
6414 setup_file_in_str(&pipe_str, fp);
6415 eol_cnt = 0;
6416 while ((ch = i_getch(&pipe_str)) != EOF) {
6417 if (ch == '\n') {
6418 eol_cnt++;
6419 continue;
6420 }
6421 while (eol_cnt) {
6422 o_addchr(dest, '\n');
6423 eol_cnt--;
6424 }
6425 o_addQchr(dest, ch);
6426 }
6427
6428 debug_printf("done reading from `cmd` pipe, closing it\n");
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02006429 fclose_and_forget(fp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006430 /* We need to extract exitcode. Test case
6431 * "true; echo `sleep 1; false` $?"
6432 * should print 1 */
6433 safe_waitpid(pid, &status, 0);
6434 debug_printf("child exited. returning its exitcode:%d\n", WEXITSTATUS(status));
6435 return WEXITSTATUS(status);
6436}
6437#endif /* ENABLE_HUSH_TICK */
6438
6439
6440static void setup_heredoc(struct redir_struct *redir)
6441{
6442 struct fd_pair pair;
6443 pid_t pid;
6444 int len, written;
6445 /* the _body_ of heredoc (misleading field name) */
6446 const char *heredoc = redir->rd_filename;
6447 char *expanded;
6448#if !BB_MMU
6449 char **to_free;
6450#endif
6451
6452 expanded = NULL;
6453 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02006454 expanded = encode_then_expand_string(heredoc, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006455 if (expanded)
6456 heredoc = expanded;
6457 }
6458 len = strlen(heredoc);
6459
6460 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
6461 xpiped_pair(pair);
6462 xmove_fd(pair.rd, redir->rd_fd);
6463
6464 /* Try writing without forking. Newer kernels have
6465 * dynamically growing pipes. Must use non-blocking write! */
6466 ndelay_on(pair.wr);
6467 while (1) {
6468 written = write(pair.wr, heredoc, len);
6469 if (written <= 0)
6470 break;
6471 len -= written;
6472 if (len == 0) {
6473 close(pair.wr);
6474 free(expanded);
6475 return;
6476 }
6477 heredoc += written;
6478 }
6479 ndelay_off(pair.wr);
6480
6481 /* Okay, pipe buffer was not big enough */
6482 /* Note: we must not create a stray child (bastard? :)
6483 * for the unsuspecting parent process. Child creates a grandchild
6484 * and exits before parent execs the process which consumes heredoc
6485 * (that exec happens after we return from this function) */
6486#if !BB_MMU
6487 to_free = NULL;
6488#endif
6489 pid = xvfork();
6490 if (pid == 0) {
6491 /* child */
6492 disable_restore_tty_pgrp_on_exit();
6493 pid = BB_MMU ? xfork() : xvfork();
6494 if (pid != 0)
6495 _exit(0);
6496 /* grandchild */
6497 close(redir->rd_fd); /* read side of the pipe */
6498#if BB_MMU
6499 full_write(pair.wr, heredoc, len); /* may loop or block */
6500 _exit(0);
6501#else
6502 /* Delegate blocking writes to another process */
6503 xmove_fd(pair.wr, STDOUT_FILENO);
6504 re_execute_shell(&to_free, heredoc, NULL, NULL, NULL);
6505#endif
6506 }
6507 /* parent */
6508#if ENABLE_HUSH_FAST
6509 G.count_SIGCHLD++;
6510//bb_error_msg("[%d] fork in setup_heredoc: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6511#endif
6512 enable_restore_tty_pgrp_on_exit();
6513#if !BB_MMU
6514 free(to_free);
6515#endif
6516 close(pair.wr);
6517 free(expanded);
6518 wait(NULL); /* wait till child has died */
6519}
6520
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006521/* fd: redirect wants this fd to be used (e.g. 3>file).
6522 * Move all conflicting internally used fds,
6523 * and remember them so that we can restore them later.
6524 */
6525static int save_fds_on_redirect(int fd, int squirrel[3])
6526{
6527 if (squirrel) {
6528 /* Handle redirects of fds 0,1,2 */
6529
6530 /* If we collide with an already moved stdio fd... */
6531 if (fd == squirrel[0]) {
6532 squirrel[0] = xdup_and_close(squirrel[0], F_DUPFD);
6533 return 1;
6534 }
6535 if (fd == squirrel[1]) {
6536 squirrel[1] = xdup_and_close(squirrel[1], F_DUPFD);
6537 return 1;
6538 }
6539 if (fd == squirrel[2]) {
6540 squirrel[2] = xdup_and_close(squirrel[2], F_DUPFD);
6541 return 1;
6542 }
6543 /* If we are about to redirect stdio fd, and did not yet move it... */
6544 if (fd <= 2 && squirrel[fd] < 0) {
6545 /* We avoid taking stdio fds */
6546 squirrel[fd] = fcntl(fd, F_DUPFD, 10);
6547 if (squirrel[fd] < 0 && errno != EBADF)
6548 xfunc_die();
6549 return 0; /* "we did not close fd" */
6550 }
6551 }
6552
6553#if ENABLE_HUSH_INTERACTIVE
6554 if (fd != 0 && fd == G.interactive_fd) {
6555 G.interactive_fd = xdup_and_close(G.interactive_fd, F_DUPFD_CLOEXEC);
6556 return 1;
6557 }
6558#endif
6559
6560 /* Are we called from setup_redirects(squirrel==NULL)? Two cases:
6561 * (1) Redirect in a forked child. No need to save FILEs' fds,
6562 * we aren't going to use them anymore, ok to trash.
6563 * (2) "exec 3>FILE". Bummer. We can save FILEs' fds,
6564 * but how are we doing to use them?
6565 * "fileno(fd) = new_fd" can't be done.
6566 */
6567 if (!squirrel)
6568 return 0;
6569
6570 return save_FILEs_on_redirect(fd);
6571}
6572
6573static void restore_redirects(int squirrel[3])
6574{
6575 int i, fd;
6576 for (i = 0; i <= 2; i++) {
6577 fd = squirrel[i];
6578 if (fd != -1) {
6579 /* We simply die on error */
6580 xmove_fd(fd, i);
6581 }
6582 }
6583
6584 /* Moved G.interactive_fd stays on new fd, not doing anything for it */
6585
6586 restore_redirected_FILEs();
6587}
6588
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006589/* squirrel != NULL means we squirrel away copies of stdin, stdout,
6590 * and stderr if they are redirected. */
6591static int setup_redirects(struct command *prog, int squirrel[])
6592{
6593 int openfd, mode;
6594 struct redir_struct *redir;
6595
6596 for (redir = prog->redirects; redir; redir = redir->next) {
6597 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006598 /* "rd_fd<<HERE" case */
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006599 save_fds_on_redirect(redir->rd_fd, squirrel);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006600 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
6601 * of the heredoc */
6602 debug_printf_parse("set heredoc '%s'\n",
6603 redir->rd_filename);
6604 setup_heredoc(redir);
6605 continue;
6606 }
6607
6608 if (redir->rd_dup == REDIRFD_TO_FILE) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006609 /* "rd_fd<*>file" case (<*> is <,>,>>,<>) */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006610 char *p;
6611 if (redir->rd_filename == NULL) {
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02006612 /*
6613 * Examples:
6614 * "cmd >" (no filename)
6615 * "cmd > <file" (2nd redirect starts too early)
6616 */
6617 die_if_script("syntax error: %s", "invalid redirect");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006618 continue;
6619 }
6620 mode = redir_table[redir->rd_type].mode;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006621 p = expand_string_to_string(redir->rd_filename, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006622 openfd = open_or_warn(p, mode);
6623 free(p);
6624 if (openfd < 0) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006625 /* Error message from open_or_warn can be lost
6626 * if stderr has been redirected, but bash
6627 * and ash both lose it as well
6628 * (though zsh doesn't!)
6629 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006630 return 1;
6631 }
6632 } else {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006633 /* "rd_fd<*>rd_dup" or "rd_fd<*>-" cases */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006634 openfd = redir->rd_dup;
6635 }
6636
6637 if (openfd != redir->rd_fd) {
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006638 int closed = save_fds_on_redirect(redir->rd_fd, squirrel);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006639 if (openfd == REDIRFD_CLOSE) {
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006640 /* "rd_fd >&-" means "close me" */
6641 if (!closed) {
6642 /* ^^^ optimization: saving may already
6643 * have closed it. If not... */
6644 close(redir->rd_fd);
6645 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006646 } else {
6647 xdup2(openfd, redir->rd_fd);
6648 if (redir->rd_dup == REDIRFD_TO_FILE)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006649 /* "rd_fd > FILE" */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006650 close(openfd);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006651 /* else: "rd_fd > rd_dup" */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006652 }
6653 }
6654 }
6655 return 0;
6656}
6657
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006658static char *find_in_path(const char *arg)
6659{
6660 char *ret = NULL;
6661 const char *PATH = get_local_var_value("PATH");
6662
6663 if (!PATH)
6664 return NULL;
6665
6666 while (1) {
6667 const char *end = strchrnul(PATH, ':');
6668 int sz = end - PATH; /* must be int! */
6669
6670 free(ret);
6671 if (sz != 0) {
6672 ret = xasprintf("%.*s/%s", sz, PATH, arg);
6673 } else {
6674 /* We have xxx::yyyy in $PATH,
6675 * it means "use current dir" */
6676 ret = xstrdup(arg);
6677 }
6678 if (access(ret, F_OK) == 0)
6679 break;
6680
6681 if (*end == '\0') {
6682 free(ret);
6683 return NULL;
6684 }
6685 PATH = end + 1;
6686 }
6687
6688 return ret;
6689}
6690
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006691static const struct built_in_command *find_builtin_helper(const char *name,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006692 const struct built_in_command *x,
6693 const struct built_in_command *end)
6694{
6695 while (x != end) {
6696 if (strcmp(name, x->b_cmd) != 0) {
6697 x++;
6698 continue;
6699 }
6700 debug_printf_exec("found builtin '%s'\n", name);
6701 return x;
6702 }
6703 return NULL;
6704}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006705static const struct built_in_command *find_builtin1(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006706{
6707 return find_builtin_helper(name, bltins1, &bltins1[ARRAY_SIZE(bltins1)]);
6708}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006709static const struct built_in_command *find_builtin(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006710{
6711 const struct built_in_command *x = find_builtin1(name);
6712 if (x)
6713 return x;
6714 return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]);
6715}
6716
6717#if ENABLE_HUSH_FUNCTIONS
6718static struct function **find_function_slot(const char *name)
6719{
6720 struct function **funcpp = &G.top_func;
6721 while (*funcpp) {
6722 if (strcmp(name, (*funcpp)->name) == 0) {
6723 break;
6724 }
6725 funcpp = &(*funcpp)->next;
6726 }
6727 return funcpp;
6728}
6729
6730static const struct function *find_function(const char *name)
6731{
6732 const struct function *funcp = *find_function_slot(name);
6733 if (funcp)
6734 debug_printf_exec("found function '%s'\n", name);
6735 return funcp;
6736}
6737
6738/* Note: takes ownership on name ptr */
6739static struct function *new_function(char *name)
6740{
6741 struct function **funcpp = find_function_slot(name);
6742 struct function *funcp = *funcpp;
6743
6744 if (funcp != NULL) {
6745 struct command *cmd = funcp->parent_cmd;
6746 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
6747 if (!cmd) {
6748 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
6749 free(funcp->name);
6750 /* Note: if !funcp->body, do not free body_as_string!
6751 * This is a special case of "-F name body" function:
6752 * body_as_string was not malloced! */
6753 if (funcp->body) {
6754 free_pipe_list(funcp->body);
6755# if !BB_MMU
6756 free(funcp->body_as_string);
6757# endif
6758 }
6759 } else {
6760 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
6761 cmd->argv[0] = funcp->name;
6762 cmd->group = funcp->body;
6763# if !BB_MMU
6764 cmd->group_as_string = funcp->body_as_string;
6765# endif
6766 }
6767 } else {
6768 debug_printf_exec("remembering new function '%s'\n", name);
6769 funcp = *funcpp = xzalloc(sizeof(*funcp));
6770 /*funcp->next = NULL;*/
6771 }
6772
6773 funcp->name = name;
6774 return funcp;
6775}
6776
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006777# if ENABLE_HUSH_UNSET
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006778static void unset_func(const char *name)
6779{
6780 struct function **funcpp = find_function_slot(name);
6781 struct function *funcp = *funcpp;
6782
6783 if (funcp != NULL) {
6784 debug_printf_exec("freeing function '%s'\n", funcp->name);
6785 *funcpp = funcp->next;
6786 /* funcp is unlinked now, deleting it.
6787 * Note: if !funcp->body, the function was created by
6788 * "-F name body", do not free ->body_as_string
6789 * and ->name as they were not malloced. */
6790 if (funcp->body) {
6791 free_pipe_list(funcp->body);
6792 free(funcp->name);
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006793# if !BB_MMU
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006794 free(funcp->body_as_string);
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006795# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006796 }
6797 free(funcp);
6798 }
6799}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006800# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006801
6802# if BB_MMU
6803#define exec_function(to_free, funcp, argv) \
6804 exec_function(funcp, argv)
6805# endif
6806static void exec_function(char ***to_free,
6807 const struct function *funcp,
6808 char **argv) NORETURN;
6809static void exec_function(char ***to_free,
6810 const struct function *funcp,
6811 char **argv)
6812{
6813# if BB_MMU
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02006814 int n;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006815
6816 argv[0] = G.global_argv[0];
6817 G.global_argv = argv;
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02006818 G.global_argc = n = 1 + string_array_len(argv + 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006819 /* On MMU, funcp->body is always non-NULL */
6820 n = run_list(funcp->body);
6821 fflush_all();
6822 _exit(n);
6823# else
6824 re_execute_shell(to_free,
6825 funcp->body_as_string,
6826 G.global_argv[0],
6827 argv + 1,
6828 NULL);
6829# endif
6830}
6831
6832static int run_function(const struct function *funcp, char **argv)
6833{
6834 int rc;
6835 save_arg_t sv;
6836 smallint sv_flg;
6837
6838 save_and_replace_G_args(&sv, argv);
6839
6840 /* "we are in function, ok to use return" */
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006841 sv_flg = G_flag_return_in_progress;
6842 G_flag_return_in_progress = -1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006843# if ENABLE_HUSH_LOCAL
6844 G.func_nest_level++;
6845# endif
6846
6847 /* On MMU, funcp->body is always non-NULL */
6848# if !BB_MMU
6849 if (!funcp->body) {
6850 /* Function defined by -F */
6851 parse_and_run_string(funcp->body_as_string);
6852 rc = G.last_exitcode;
6853 } else
6854# endif
6855 {
6856 rc = run_list(funcp->body);
6857 }
6858
6859# if ENABLE_HUSH_LOCAL
6860 {
6861 struct variable *var;
6862 struct variable **var_pp;
6863
6864 var_pp = &G.top_var;
6865 while ((var = *var_pp) != NULL) {
6866 if (var->func_nest_level < G.func_nest_level) {
6867 var_pp = &var->next;
6868 continue;
6869 }
6870 /* Unexport */
6871 if (var->flg_export)
6872 bb_unsetenv(var->varstr);
6873 /* Remove from global list */
6874 *var_pp = var->next;
6875 /* Free */
6876 if (!var->max_len)
6877 free(var->varstr);
6878 free(var);
6879 }
6880 G.func_nest_level--;
6881 }
6882# endif
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006883 G_flag_return_in_progress = sv_flg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006884
6885 restore_G_args(&sv, argv);
6886
6887 return rc;
6888}
6889#endif /* ENABLE_HUSH_FUNCTIONS */
6890
6891
6892#if BB_MMU
6893#define exec_builtin(to_free, x, argv) \
6894 exec_builtin(x, argv)
6895#else
6896#define exec_builtin(to_free, x, argv) \
6897 exec_builtin(to_free, argv)
6898#endif
6899static void exec_builtin(char ***to_free,
6900 const struct built_in_command *x,
6901 char **argv) NORETURN;
6902static void exec_builtin(char ***to_free,
6903 const struct built_in_command *x,
6904 char **argv)
6905{
6906#if BB_MMU
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01006907 int rcode;
6908 fflush_all();
6909 rcode = x->b_function(argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006910 fflush_all();
6911 _exit(rcode);
6912#else
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01006913 fflush_all();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006914 /* On NOMMU, we must never block!
6915 * Example: { sleep 99 | read line; } & echo Ok
6916 */
6917 re_execute_shell(to_free,
6918 argv[0],
6919 G.global_argv[0],
6920 G.global_argv + 1,
6921 argv);
6922#endif
6923}
6924
6925
6926static void execvp_or_die(char **argv) NORETURN;
6927static void execvp_or_die(char **argv)
6928{
Denys Vlasenko04465da2016-10-03 01:01:15 +02006929 int e;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006930 debug_printf_exec("execing '%s'\n", argv[0]);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02006931 /* Don't propagate SIG_IGN to the child */
6932 if (SPECIAL_JOBSTOP_SIGS != 0)
6933 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006934 execvp(argv[0], argv);
Denys Vlasenko04465da2016-10-03 01:01:15 +02006935 e = 2;
6936 if (errno == EACCES) e = 126;
6937 if (errno == ENOENT) e = 127;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006938 bb_perror_msg("can't execute '%s'", argv[0]);
Denys Vlasenko04465da2016-10-03 01:01:15 +02006939 _exit(e);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006940}
6941
6942#if ENABLE_HUSH_MODE_X
6943static void dump_cmd_in_x_mode(char **argv)
6944{
6945 if (G_x_mode && argv) {
6946 /* We want to output the line in one write op */
6947 char *buf, *p;
6948 int len;
6949 int n;
6950
6951 len = 3;
6952 n = 0;
6953 while (argv[n])
6954 len += strlen(argv[n++]) + 1;
6955 buf = xmalloc(len);
6956 buf[0] = '+';
6957 p = buf + 1;
6958 n = 0;
6959 while (argv[n])
6960 p += sprintf(p, " %s", argv[n++]);
6961 *p++ = '\n';
6962 *p = '\0';
6963 fputs(buf, stderr);
6964 free(buf);
6965 }
6966}
6967#else
6968# define dump_cmd_in_x_mode(argv) ((void)0)
6969#endif
6970
6971#if BB_MMU
6972#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
6973 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
6974#define pseudo_exec(nommu_save, command, argv_expanded) \
6975 pseudo_exec(command, argv_expanded)
6976#endif
6977
6978/* Called after [v]fork() in run_pipe, or from builtin_exec.
6979 * Never returns.
6980 * Don't exit() here. If you don't exec, use _exit instead.
6981 * The at_exit handlers apparently confuse the calling process,
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02006982 * in particular stdin handling. Not sure why? -- because of vfork! (vda)
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02006983 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006984static void pseudo_exec_argv(nommu_save_t *nommu_save,
6985 char **argv, int assignment_cnt,
6986 char **argv_expanded) NORETURN;
6987static NOINLINE void pseudo_exec_argv(nommu_save_t *nommu_save,
6988 char **argv, int assignment_cnt,
6989 char **argv_expanded)
6990{
6991 char **new_env;
6992
6993 new_env = expand_assignments(argv, assignment_cnt);
6994 dump_cmd_in_x_mode(new_env);
6995
6996 if (!argv[assignment_cnt]) {
6997 /* Case when we are here: ... | var=val | ...
6998 * (note that we do not exit early, i.e., do not optimize out
6999 * expand_assignments(): think about ... | var=`sleep 1` | ...
7000 */
7001 free_strings(new_env);
7002 _exit(EXIT_SUCCESS);
7003 }
7004
7005#if BB_MMU
7006 set_vars_and_save_old(new_env);
7007 free(new_env); /* optional */
7008 /* we can also destroy set_vars_and_save_old's return value,
7009 * to save memory */
7010#else
7011 nommu_save->new_env = new_env;
7012 nommu_save->old_vars = set_vars_and_save_old(new_env);
7013#endif
7014
7015 if (argv_expanded) {
7016 argv = argv_expanded;
7017 } else {
7018 argv = expand_strvec_to_strvec(argv + assignment_cnt);
7019#if !BB_MMU
7020 nommu_save->argv = argv;
7021#endif
7022 }
7023 dump_cmd_in_x_mode(argv);
7024
7025#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
7026 if (strchr(argv[0], '/') != NULL)
7027 goto skip;
7028#endif
7029
7030 /* Check if the command matches any of the builtins.
7031 * Depending on context, this might be redundant. But it's
7032 * easier to waste a few CPU cycles than it is to figure out
7033 * if this is one of those cases.
7034 */
7035 {
7036 /* On NOMMU, it is more expensive to re-execute shell
7037 * just in order to run echo or test builtin.
7038 * It's better to skip it here and run corresponding
7039 * non-builtin later. */
7040 const struct built_in_command *x;
7041 x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]);
7042 if (x) {
7043 exec_builtin(&nommu_save->argv_from_re_execing, x, argv);
7044 }
7045 }
7046#if ENABLE_HUSH_FUNCTIONS
7047 /* Check if the command matches any functions */
7048 {
7049 const struct function *funcp = find_function(argv[0]);
7050 if (funcp) {
7051 exec_function(&nommu_save->argv_from_re_execing, funcp, argv);
7052 }
7053 }
7054#endif
7055
7056#if ENABLE_FEATURE_SH_STANDALONE
7057 /* Check if the command matches any busybox applets */
7058 {
7059 int a = find_applet_by_name(argv[0]);
7060 if (a >= 0) {
7061# if BB_MMU /* see above why on NOMMU it is not allowed */
7062 if (APPLET_IS_NOEXEC(a)) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02007063 /* Do not leak open fds from opened script files etc */
7064 close_all_FILE_list();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007065 debug_printf_exec("running applet '%s'\n", argv[0]);
Denys Vlasenko69a5ec92017-07-07 19:08:56 +02007066 run_applet_no_and_exit(a, argv[0], argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007067 }
7068# endif
7069 /* Re-exec ourselves */
7070 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02007071 /* Don't propagate SIG_IGN to the child */
7072 if (SPECIAL_JOBSTOP_SIGS != 0)
7073 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007074 execv(bb_busybox_exec_path, argv);
7075 /* If they called chroot or otherwise made the binary no longer
7076 * executable, fall through */
7077 }
7078 }
7079#endif
7080
7081#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
7082 skip:
7083#endif
7084 execvp_or_die(argv);
7085}
7086
7087/* Called after [v]fork() in run_pipe
7088 */
7089static void pseudo_exec(nommu_save_t *nommu_save,
7090 struct command *command,
7091 char **argv_expanded) NORETURN;
7092static void pseudo_exec(nommu_save_t *nommu_save,
7093 struct command *command,
7094 char **argv_expanded)
7095{
7096 if (command->argv) {
7097 pseudo_exec_argv(nommu_save, command->argv,
7098 command->assignment_cnt, argv_expanded);
7099 }
7100
7101 if (command->group) {
7102 /* Cases when we are here:
7103 * ( list )
7104 * { list } &
7105 * ... | ( list ) | ...
7106 * ... | { list } | ...
7107 */
7108#if BB_MMU
7109 int rcode;
7110 debug_printf_exec("pseudo_exec: run_list\n");
7111 reset_traps_to_defaults();
7112 rcode = run_list(command->group);
7113 /* OK to leak memory by not calling free_pipe_list,
7114 * since this process is about to exit */
7115 _exit(rcode);
7116#else
7117 re_execute_shell(&nommu_save->argv_from_re_execing,
7118 command->group_as_string,
7119 G.global_argv[0],
7120 G.global_argv + 1,
7121 NULL);
7122#endif
7123 }
7124
7125 /* Case when we are here: ... | >file */
7126 debug_printf_exec("pseudo_exec'ed null command\n");
7127 _exit(EXIT_SUCCESS);
7128}
7129
7130#if ENABLE_HUSH_JOB
7131static const char *get_cmdtext(struct pipe *pi)
7132{
7133 char **argv;
7134 char *p;
7135 int len;
7136
7137 /* This is subtle. ->cmdtext is created only on first backgrounding.
7138 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
7139 * On subsequent bg argv is trashed, but we won't use it */
7140 if (pi->cmdtext)
7141 return pi->cmdtext;
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007142
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007143 argv = pi->cmds[0].argv;
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007144 if (!argv) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007145 pi->cmdtext = xzalloc(1);
7146 return pi->cmdtext;
7147 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007148 len = 0;
7149 do {
7150 len += strlen(*argv) + 1;
7151 } while (*++argv);
7152 p = xmalloc(len);
7153 pi->cmdtext = p;
7154 argv = pi->cmds[0].argv;
7155 do {
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007156 p = stpcpy(p, *argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007157 *p++ = ' ';
7158 } while (*++argv);
7159 p[-1] = '\0';
7160 return pi->cmdtext;
7161}
7162
7163static void insert_bg_job(struct pipe *pi)
7164{
7165 struct pipe *job, **jobp;
7166 int i;
7167
7168 /* Linear search for the ID of the job to use */
7169 pi->jobid = 1;
7170 for (job = G.job_list; job; job = job->next)
7171 if (job->jobid >= pi->jobid)
7172 pi->jobid = job->jobid + 1;
7173
7174 /* Add job to the list of running jobs */
7175 jobp = &G.job_list;
7176 while ((job = *jobp) != NULL)
7177 jobp = &job->next;
7178 job = *jobp = xmalloc(sizeof(*job));
7179
7180 *job = *pi; /* physical copy */
7181 job->next = NULL;
7182 job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
7183 /* Cannot copy entire pi->cmds[] vector! This causes double frees */
7184 for (i = 0; i < pi->num_cmds; i++) {
7185 job->cmds[i].pid = pi->cmds[i].pid;
7186 /* all other fields are not used and stay zero */
7187 }
7188 job->cmdtext = xstrdup(get_cmdtext(pi));
7189
7190 if (G_interactive_fd)
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01007191 printf("[%u] %u %s\n", job->jobid, (unsigned)job->cmds[0].pid, job->cmdtext);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007192 G.last_jobid = job->jobid;
7193}
7194
7195static void remove_bg_job(struct pipe *pi)
7196{
7197 struct pipe *prev_pipe;
7198
7199 if (pi == G.job_list) {
7200 G.job_list = pi->next;
7201 } else {
7202 prev_pipe = G.job_list;
7203 while (prev_pipe->next != pi)
7204 prev_pipe = prev_pipe->next;
7205 prev_pipe->next = pi->next;
7206 }
7207 if (G.job_list)
7208 G.last_jobid = G.job_list->jobid;
7209 else
7210 G.last_jobid = 0;
7211}
7212
7213/* Remove a backgrounded job */
7214static void delete_finished_bg_job(struct pipe *pi)
7215{
7216 remove_bg_job(pi);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007217 free_pipe(pi);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007218}
7219#endif /* JOB */
7220
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007221static int job_exited_or_stopped(struct pipe *pi)
7222{
7223 int rcode, i;
7224
7225 if (pi->alive_cmds != pi->stopped_cmds)
7226 return -1;
7227
7228 /* All processes in fg pipe have exited or stopped */
7229 rcode = 0;
7230 i = pi->num_cmds;
7231 while (--i >= 0) {
7232 rcode = pi->cmds[i].cmd_exitcode;
7233 /* usually last process gives overall exitstatus,
7234 * but with "set -o pipefail", last *failed* process does */
7235 if (G.o_opt[OPT_O_PIPEFAIL] == 0 || rcode != 0)
7236 break;
7237 }
7238 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7239 return rcode;
7240}
7241
Denys Vlasenko7e675362016-10-28 21:57:31 +02007242static int process_wait_result(struct pipe *fg_pipe, pid_t childpid, int status)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007243{
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007244#if ENABLE_HUSH_JOB
7245 struct pipe *pi;
7246#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02007247 int i, dead;
7248
7249 dead = WIFEXITED(status) || WIFSIGNALED(status);
7250
7251#if DEBUG_JOBS
7252 if (WIFSTOPPED(status))
7253 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
7254 childpid, WSTOPSIG(status), WEXITSTATUS(status));
7255 if (WIFSIGNALED(status))
7256 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
7257 childpid, WTERMSIG(status), WEXITSTATUS(status));
7258 if (WIFEXITED(status))
7259 debug_printf_jobs("pid %d exited, exitcode %d\n",
7260 childpid, WEXITSTATUS(status));
7261#endif
7262 /* Were we asked to wait for a fg pipe? */
7263 if (fg_pipe) {
7264 i = fg_pipe->num_cmds;
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007265
Denys Vlasenko7e675362016-10-28 21:57:31 +02007266 while (--i >= 0) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007267 int rcode;
7268
Denys Vlasenko7e675362016-10-28 21:57:31 +02007269 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
7270 if (fg_pipe->cmds[i].pid != childpid)
7271 continue;
7272 if (dead) {
7273 int ex;
7274 fg_pipe->cmds[i].pid = 0;
7275 fg_pipe->alive_cmds--;
7276 ex = WEXITSTATUS(status);
7277 /* bash prints killer signal's name for *last*
7278 * process in pipe (prints just newline for SIGINT/SIGPIPE).
7279 * Mimic this. Example: "sleep 5" + (^\ or kill -QUIT)
7280 */
7281 if (WIFSIGNALED(status)) {
7282 int sig = WTERMSIG(status);
7283 if (i == fg_pipe->num_cmds-1)
7284 /* TODO: use strsignal() instead for bash compat? but that's bloat... */
7285 puts(sig == SIGINT || sig == SIGPIPE ? "" : get_signame(sig));
7286 /* TODO: if (WCOREDUMP(status)) + " (core dumped)"; */
7287 /* TODO: MIPS has 128 sigs (1..128), what if sig==128 here?
7288 * Maybe we need to use sig | 128? */
7289 ex = sig + 128;
7290 }
7291 fg_pipe->cmds[i].cmd_exitcode = ex;
7292 } else {
7293 fg_pipe->stopped_cmds++;
7294 }
7295 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
7296 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007297 rcode = job_exited_or_stopped(fg_pipe);
7298 if (rcode >= 0) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007299/* Note: *non-interactive* bash does not continue if all processes in fg pipe
7300 * are stopped. Testcase: "cat | cat" in a script (not on command line!)
7301 * and "killall -STOP cat" */
7302 if (G_interactive_fd) {
7303#if ENABLE_HUSH_JOB
7304 if (fg_pipe->alive_cmds != 0)
7305 insert_bg_job(fg_pipe);
7306#endif
7307 return rcode;
7308 }
7309 if (fg_pipe->alive_cmds == 0)
7310 return rcode;
7311 }
7312 /* There are still running processes in the fg_pipe */
7313 return -1;
7314 }
Denys Vlasenko10ad6222017-04-17 16:13:32 +02007315 /* It wasn't in fg_pipe, look for process in bg pipes */
Denys Vlasenko7e675362016-10-28 21:57:31 +02007316 }
7317
7318#if ENABLE_HUSH_JOB
7319 /* We were asked to wait for bg or orphaned children */
7320 /* No need to remember exitcode in this case */
7321 for (pi = G.job_list; pi; pi = pi->next) {
7322 for (i = 0; i < pi->num_cmds; i++) {
7323 if (pi->cmds[i].pid == childpid)
7324 goto found_pi_and_prognum;
7325 }
7326 }
7327 /* Happens when shell is used as init process (init=/bin/sh) */
7328 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
7329 return -1; /* this wasn't a process from fg_pipe */
7330
7331 found_pi_and_prognum:
7332 if (dead) {
7333 /* child exited */
7334 pi->cmds[i].pid = 0;
7335 pi->cmds[i].cmd_exitcode = WEXITSTATUS(status);
7336 if (WIFSIGNALED(status))
7337 pi->cmds[i].cmd_exitcode = 128 + WTERMSIG(status);
7338 pi->alive_cmds--;
7339 if (!pi->alive_cmds) {
7340 if (G_interactive_fd)
7341 printf(JOB_STATUS_FORMAT, pi->jobid,
7342 "Done", pi->cmdtext);
7343 delete_finished_bg_job(pi);
7344 }
7345 } else {
7346 /* child stopped */
7347 pi->stopped_cmds++;
7348 }
7349#endif
7350 return -1; /* this wasn't a process from fg_pipe */
7351}
7352
7353/* Check to see if any processes have exited -- if they have,
7354 * figure out why and see if a job has completed.
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007355 *
7356 * If non-NULL fg_pipe: wait for its completion or stop.
7357 * Return its exitcode or zero if stopped.
7358 *
7359 * Alternatively (fg_pipe == NULL, waitfor_pid != 0):
7360 * waitpid(WNOHANG), if waitfor_pid exits or stops, return exitcode+1,
7361 * else return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for)
7362 * or 0 if no children changed status.
7363 *
7364 * Alternatively (fg_pipe == NULL, waitfor_pid == 0),
7365 * return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for)
7366 * or 0 if no children changed status.
Denys Vlasenko7e675362016-10-28 21:57:31 +02007367 */
7368static int checkjobs(struct pipe *fg_pipe, pid_t waitfor_pid)
7369{
7370 int attributes;
7371 int status;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007372 int rcode = 0;
7373
7374 debug_printf_jobs("checkjobs %p\n", fg_pipe);
7375
7376 attributes = WUNTRACED;
7377 if (fg_pipe == NULL)
7378 attributes |= WNOHANG;
7379
7380 errno = 0;
7381#if ENABLE_HUSH_FAST
7382 if (G.handled_SIGCHLD == G.count_SIGCHLD) {
7383//bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p",
7384//getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe);
7385 /* There was neither fork nor SIGCHLD since last waitpid */
7386 /* Avoid doing waitpid syscall if possible */
7387 if (!G.we_have_children) {
7388 errno = ECHILD;
7389 return -1;
7390 }
7391 if (fg_pipe == NULL) { /* is WNOHANG set? */
7392 /* We have children, but they did not exit
7393 * or stop yet (we saw no SIGCHLD) */
7394 return 0;
7395 }
7396 /* else: !WNOHANG, waitpid will block, can't short-circuit */
7397 }
7398#endif
7399
7400/* Do we do this right?
7401 * bash-3.00# sleep 20 | false
7402 * <ctrl-Z pressed>
7403 * [3]+ Stopped sleep 20 | false
7404 * bash-3.00# echo $?
7405 * 1 <========== bg pipe is not fully done, but exitcode is already known!
7406 * [hush 1.14.0: yes we do it right]
7407 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007408 while (1) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007409 pid_t childpid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007410#if ENABLE_HUSH_FAST
Denys Vlasenko7e675362016-10-28 21:57:31 +02007411 int i;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007412 i = G.count_SIGCHLD;
7413#endif
7414 childpid = waitpid(-1, &status, attributes);
7415 if (childpid <= 0) {
7416 if (childpid && errno != ECHILD)
7417 bb_perror_msg("waitpid");
7418#if ENABLE_HUSH_FAST
7419 else { /* Until next SIGCHLD, waitpid's are useless */
7420 G.we_have_children = (childpid == 0);
7421 G.handled_SIGCHLD = i;
7422//bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
7423 }
7424#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02007425 /* ECHILD (no children), or 0 (no change in children status) */
7426 rcode = childpid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007427 break;
7428 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007429 rcode = process_wait_result(fg_pipe, childpid, status);
7430 if (rcode >= 0) {
7431 /* fg_pipe exited or stopped */
7432 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007433 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007434 if (childpid == waitfor_pid) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007435 debug_printf_exec("childpid==waitfor_pid:%d status:0x%08x\n", childpid, status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007436 rcode = WEXITSTATUS(status);
7437 if (WIFSIGNALED(status))
7438 rcode = 128 + WTERMSIG(status);
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007439 if (WIFSTOPPED(status))
7440 /* bash: "cmd & wait $!" and cmd stops: $? = 128 + stopsig */
7441 rcode = 128 + WSTOPSIG(status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007442 rcode++;
7443 break; /* "wait PID" called us, give it exitcode+1 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007444 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007445 /* This wasn't one of our processes, or */
7446 /* fg_pipe still has running processes, do waitpid again */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007447 } /* while (waitpid succeeds)... */
7448
7449 return rcode;
7450}
7451
7452#if ENABLE_HUSH_JOB
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02007453static int checkjobs_and_fg_shell(struct pipe *fg_pipe)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007454{
7455 pid_t p;
Denys Vlasenko7e675362016-10-28 21:57:31 +02007456 int rcode = checkjobs(fg_pipe, 0 /*(no pid to wait for)*/);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007457 if (G_saved_tty_pgrp) {
7458 /* Job finished, move the shell to the foreground */
7459 p = getpgrp(); /* our process group id */
7460 debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p);
7461 tcsetpgrp(G_interactive_fd, p);
7462 }
7463 return rcode;
7464}
7465#endif
7466
7467/* Start all the jobs, but don't wait for anything to finish.
7468 * See checkjobs().
7469 *
7470 * Return code is normally -1, when the caller has to wait for children
7471 * to finish to determine the exit status of the pipe. If the pipe
7472 * is a simple builtin command, however, the action is done by the
7473 * time run_pipe returns, and the exit code is provided as the
7474 * return value.
7475 *
7476 * Returns -1 only if started some children. IOW: we have to
7477 * mask out retvals of builtins etc with 0xff!
7478 *
7479 * The only case when we do not need to [v]fork is when the pipe
7480 * is single, non-backgrounded, non-subshell command. Examples:
7481 * cmd ; ... { list } ; ...
7482 * cmd && ... { list } && ...
7483 * cmd || ... { list } || ...
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007484 * If it is, then we can run cmd as a builtin, NOFORK,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007485 * or (if SH_STANDALONE) an applet, and we can run the { list }
7486 * with run_list. If it isn't one of these, we fork and exec cmd.
7487 *
7488 * Cases when we must fork:
7489 * non-single: cmd | cmd
7490 * backgrounded: cmd & { list } &
7491 * subshell: ( list ) [&]
7492 */
7493#if !ENABLE_HUSH_MODE_X
Denys Vlasenko26777aa2010-11-22 23:49:10 +01007494#define redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel, argv_expanded) \
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007495 redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel)
7496#endif
7497static int redirect_and_varexp_helper(char ***new_env_p,
7498 struct variable **old_vars_p,
7499 struct command *command,
7500 int squirrel[3],
7501 char **argv_expanded)
7502{
7503 /* setup_redirects acts on file descriptors, not FILEs.
7504 * This is perfect for work that comes after exec().
7505 * Is it really safe for inline use? Experimentally,
7506 * things seem to work. */
7507 int rcode = setup_redirects(command, squirrel);
7508 if (rcode == 0) {
7509 char **new_env = expand_assignments(command->argv, command->assignment_cnt);
7510 *new_env_p = new_env;
7511 dump_cmd_in_x_mode(new_env);
7512 dump_cmd_in_x_mode(argv_expanded);
7513 if (old_vars_p)
7514 *old_vars_p = set_vars_and_save_old(new_env);
7515 }
7516 return rcode;
7517}
7518static NOINLINE int run_pipe(struct pipe *pi)
7519{
7520 static const char *const null_ptr = NULL;
7521
7522 int cmd_no;
7523 int next_infd;
7524 struct command *command;
7525 char **argv_expanded;
7526 char **argv;
7527 /* it is not always needed, but we aim to smaller code */
7528 int squirrel[] = { -1, -1, -1 };
7529 int rcode;
7530
7531 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
7532 debug_enter();
7533
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02007534 /* Testcase: set -- q w e; (IFS='' echo "$*"; IFS=''; echo "$*"); echo "$*"
7535 * Result should be 3 lines: q w e, qwe, q w e
7536 */
7537 G.ifs = get_local_var_value("IFS");
7538 if (!G.ifs)
7539 G.ifs = defifs;
7540
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007541 IF_HUSH_JOB(pi->pgrp = -1;)
7542 pi->stopped_cmds = 0;
7543 command = &pi->cmds[0];
7544 argv_expanded = NULL;
7545
7546 if (pi->num_cmds != 1
7547 || pi->followup == PIPE_BG
7548 || command->cmd_type == CMD_SUBSHELL
7549 ) {
7550 goto must_fork;
7551 }
7552
7553 pi->alive_cmds = 1;
7554
7555 debug_printf_exec(": group:%p argv:'%s'\n",
7556 command->group, command->argv ? command->argv[0] : "NONE");
7557
7558 if (command->group) {
7559#if ENABLE_HUSH_FUNCTIONS
7560 if (command->cmd_type == CMD_FUNCDEF) {
7561 /* "executing" func () { list } */
7562 struct function *funcp;
7563
7564 funcp = new_function(command->argv[0]);
7565 /* funcp->name is already set to argv[0] */
7566 funcp->body = command->group;
7567# if !BB_MMU
7568 funcp->body_as_string = command->group_as_string;
7569 command->group_as_string = NULL;
7570# endif
7571 command->group = NULL;
7572 command->argv[0] = NULL;
7573 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
7574 funcp->parent_cmd = command;
7575 command->child_func = funcp;
7576
7577 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
7578 debug_leave();
7579 return EXIT_SUCCESS;
7580 }
7581#endif
7582 /* { list } */
7583 debug_printf("non-subshell group\n");
7584 rcode = 1; /* exitcode if redir failed */
7585 if (setup_redirects(command, squirrel) == 0) {
7586 debug_printf_exec(": run_list\n");
7587 rcode = run_list(command->group) & 0xff;
7588 }
7589 restore_redirects(squirrel);
7590 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7591 debug_leave();
7592 debug_printf_exec("run_pipe: return %d\n", rcode);
7593 return rcode;
7594 }
7595
7596 argv = command->argv ? command->argv : (char **) &null_ptr;
7597 {
7598 const struct built_in_command *x;
7599#if ENABLE_HUSH_FUNCTIONS
7600 const struct function *funcp;
7601#else
7602 enum { funcp = 0 };
7603#endif
7604 char **new_env = NULL;
7605 struct variable *old_vars = NULL;
7606
7607 if (argv[command->assignment_cnt] == NULL) {
7608 /* Assignments, but no command */
7609 /* Ensure redirects take effect (that is, create files).
7610 * Try "a=t >file" */
7611#if 0 /* A few cases in testsuite fail with this code. FIXME */
7612 rcode = redirect_and_varexp_helper(&new_env, /*old_vars:*/ NULL, command, squirrel, /*argv_expanded:*/ NULL);
7613 /* Set shell variables */
7614 if (new_env) {
7615 argv = new_env;
7616 while (*argv) {
7617 set_local_var(*argv, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
7618 /* Do we need to flag set_local_var() errors?
7619 * "assignment to readonly var" and "putenv error"
7620 */
7621 argv++;
7622 }
7623 }
7624 /* Redirect error sets $? to 1. Otherwise,
7625 * if evaluating assignment value set $?, retain it.
7626 * Try "false; q=`exit 2`; echo $?" - should print 2: */
7627 if (rcode == 0)
7628 rcode = G.last_exitcode;
7629 /* Exit, _skipping_ variable restoring code: */
7630 goto clean_up_and_ret0;
7631
7632#else /* Older, bigger, but more correct code */
7633
7634 rcode = setup_redirects(command, squirrel);
7635 restore_redirects(squirrel);
7636 /* Set shell variables */
7637 if (G_x_mode)
7638 bb_putchar_stderr('+');
7639 while (*argv) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02007640 char *p = expand_string_to_string(*argv, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007641 if (G_x_mode)
7642 fprintf(stderr, " %s", p);
7643 debug_printf_exec("set shell var:'%s'->'%s'\n",
7644 *argv, p);
7645 set_local_var(p, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
7646 /* Do we need to flag set_local_var() errors?
7647 * "assignment to readonly var" and "putenv error"
7648 */
7649 argv++;
7650 }
7651 if (G_x_mode)
7652 bb_putchar_stderr('\n');
7653 /* Redirect error sets $? to 1. Otherwise,
7654 * if evaluating assignment value set $?, retain it.
7655 * Try "false; q=`exit 2`; echo $?" - should print 2: */
7656 if (rcode == 0)
7657 rcode = G.last_exitcode;
7658 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7659 debug_leave();
7660 debug_printf_exec("run_pipe: return %d\n", rcode);
7661 return rcode;
7662#endif
7663 }
7664
7665 /* Expand the rest into (possibly) many strings each */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01007666#if BASH_TEST2
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007667 if (command->cmd_type == CMD_SINGLEWORD_NOGLOB) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007668 argv_expanded = expand_strvec_to_strvec_singleword_noglob(argv + command->assignment_cnt);
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007669 } else
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007670#endif
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007671 {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007672 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
7673 }
7674
7675 /* if someone gives us an empty string: `cmd with empty output` */
7676 if (!argv_expanded[0]) {
7677 free(argv_expanded);
7678 debug_leave();
7679 return G.last_exitcode;
7680 }
7681
7682 x = find_builtin(argv_expanded[0]);
7683#if ENABLE_HUSH_FUNCTIONS
7684 funcp = NULL;
7685 if (!x)
7686 funcp = find_function(argv_expanded[0]);
7687#endif
7688 if (x || funcp) {
7689 if (!funcp) {
7690 if (x->b_function == builtin_exec && argv_expanded[1] == NULL) {
7691 debug_printf("exec with redirects only\n");
7692 rcode = setup_redirects(command, NULL);
Denys Vlasenko869994c2016-08-20 15:16:00 +02007693 /* rcode=1 can be if redir file can't be opened */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007694 goto clean_up_and_ret1;
7695 }
7696 }
7697 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, squirrel, argv_expanded);
7698 if (rcode == 0) {
7699 if (!funcp) {
7700 debug_printf_exec(": builtin '%s' '%s'...\n",
7701 x->b_cmd, argv_expanded[1]);
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01007702 fflush_all();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007703 rcode = x->b_function(argv_expanded) & 0xff;
7704 fflush_all();
7705 }
7706#if ENABLE_HUSH_FUNCTIONS
7707 else {
7708# if ENABLE_HUSH_LOCAL
7709 struct variable **sv;
7710 sv = G.shadowed_vars_pp;
7711 G.shadowed_vars_pp = &old_vars;
7712# endif
7713 debug_printf_exec(": function '%s' '%s'...\n",
7714 funcp->name, argv_expanded[1]);
7715 rcode = run_function(funcp, argv_expanded) & 0xff;
7716# if ENABLE_HUSH_LOCAL
7717 G.shadowed_vars_pp = sv;
7718# endif
7719 }
7720#endif
7721 }
7722 clean_up_and_ret:
7723 unset_vars(new_env);
7724 add_vars(old_vars);
7725/* clean_up_and_ret0: */
Denys Vlasenko50b8b292017-07-06 20:57:37 +02007726
7727//FIXME: this restores stdio fds, but does not close other redirects!
7728//Example: after "echo TEST 9>/dev/null" fd#9 is not closed!
7729//The squirreling code needs rework to remember all fds, not just 0,1,2.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007730 restore_redirects(squirrel);
7731 clean_up_and_ret1:
7732 free(argv_expanded);
7733 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7734 debug_leave();
7735 debug_printf_exec("run_pipe return %d\n", rcode);
7736 return rcode;
7737 }
7738
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007739 if (ENABLE_FEATURE_SH_NOFORK) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007740 int n = find_applet_by_name(argv_expanded[0]);
7741 if (n >= 0 && APPLET_IS_NOFORK(n)) {
7742 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, squirrel, argv_expanded);
7743 if (rcode == 0) {
7744 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
7745 argv_expanded[0], argv_expanded[1]);
7746 rcode = run_nofork_applet(n, argv_expanded);
7747 }
7748 goto clean_up_and_ret;
7749 }
7750 }
7751 /* It is neither builtin nor applet. We must fork. */
7752 }
7753
7754 must_fork:
7755 /* NB: argv_expanded may already be created, and that
7756 * might include `cmd` runs! Do not rerun it! We *must*
7757 * use argv_expanded if it's non-NULL */
7758
7759 /* Going to fork a child per each pipe member */
7760 pi->alive_cmds = 0;
7761 next_infd = 0;
7762
7763 cmd_no = 0;
7764 while (cmd_no < pi->num_cmds) {
7765 struct fd_pair pipefds;
7766#if !BB_MMU
7767 volatile nommu_save_t nommu_save;
7768 nommu_save.new_env = NULL;
7769 nommu_save.old_vars = NULL;
7770 nommu_save.argv = NULL;
7771 nommu_save.argv_from_re_execing = NULL;
7772#endif
7773 command = &pi->cmds[cmd_no];
7774 cmd_no++;
7775 if (command->argv) {
7776 debug_printf_exec(": pipe member '%s' '%s'...\n",
7777 command->argv[0], command->argv[1]);
7778 } else {
7779 debug_printf_exec(": pipe member with no argv\n");
7780 }
7781
7782 /* pipes are inserted between pairs of commands */
7783 pipefds.rd = 0;
7784 pipefds.wr = 1;
7785 if (cmd_no < pi->num_cmds)
7786 xpiped_pair(pipefds);
7787
7788 command->pid = BB_MMU ? fork() : vfork();
7789 if (!command->pid) { /* child */
7790#if ENABLE_HUSH_JOB
7791 disable_restore_tty_pgrp_on_exit();
7792 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
7793
7794 /* Every child adds itself to new process group
7795 * with pgid == pid_of_first_child_in_pipe */
7796 if (G.run_list_level == 1 && G_interactive_fd) {
7797 pid_t pgrp;
7798 pgrp = pi->pgrp;
7799 if (pgrp < 0) /* true for 1st process only */
7800 pgrp = getpid();
7801 if (setpgid(0, pgrp) == 0
7802 && pi->followup != PIPE_BG
7803 && G_saved_tty_pgrp /* we have ctty */
7804 ) {
7805 /* We do it in *every* child, not just first,
7806 * to avoid races */
7807 tcsetpgrp(G_interactive_fd, pgrp);
7808 }
7809 }
7810#endif
7811 if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
7812 /* 1st cmd in backgrounded pipe
7813 * should have its stdin /dev/null'ed */
7814 close(0);
7815 if (open(bb_dev_null, O_RDONLY))
7816 xopen("/", O_RDONLY);
7817 } else {
7818 xmove_fd(next_infd, 0);
7819 }
7820 xmove_fd(pipefds.wr, 1);
7821 if (pipefds.rd > 1)
7822 close(pipefds.rd);
7823 /* Like bash, explicit redirects override pipes,
Denys Vlasenko869994c2016-08-20 15:16:00 +02007824 * and the pipe fd (fd#1) is available for dup'ing:
7825 * "cmd1 2>&1 | cmd2": fd#1 is duped to fd#2, thus stderr
7826 * of cmd1 goes into pipe.
7827 */
7828 if (setup_redirects(command, NULL)) {
7829 /* Happens when redir file can't be opened:
7830 * $ hush -c 'echo FOO >&2 | echo BAR 3>/qwe/rty; echo BAZ'
7831 * FOO
7832 * hush: can't open '/qwe/rty': No such file or directory
7833 * BAZ
7834 * (echo BAR is not executed, it hits _exit(1) below)
7835 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007836 _exit(1);
Denys Vlasenko869994c2016-08-20 15:16:00 +02007837 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007838
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007839 /* Stores to nommu_save list of env vars putenv'ed
7840 * (NOMMU, on MMU we don't need that) */
7841 /* cast away volatility... */
7842 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
7843 /* pseudo_exec() does not return */
7844 }
7845
7846 /* parent or error */
7847#if ENABLE_HUSH_FAST
7848 G.count_SIGCHLD++;
7849//bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
7850#endif
7851 enable_restore_tty_pgrp_on_exit();
7852#if !BB_MMU
7853 /* Clean up after vforked child */
7854 free(nommu_save.argv);
7855 free(nommu_save.argv_from_re_execing);
7856 unset_vars(nommu_save.new_env);
7857 add_vars(nommu_save.old_vars);
7858#endif
7859 free(argv_expanded);
7860 argv_expanded = NULL;
7861 if (command->pid < 0) { /* [v]fork failed */
7862 /* Clearly indicate, was it fork or vfork */
7863 bb_perror_msg(BB_MMU ? "vfork"+1 : "vfork");
7864 } else {
7865 pi->alive_cmds++;
7866#if ENABLE_HUSH_JOB
7867 /* Second and next children need to know pid of first one */
7868 if (pi->pgrp < 0)
7869 pi->pgrp = command->pid;
7870#endif
7871 }
7872
7873 if (cmd_no > 1)
7874 close(next_infd);
7875 if (cmd_no < pi->num_cmds)
7876 close(pipefds.wr);
7877 /* Pass read (output) pipe end to next iteration */
7878 next_infd = pipefds.rd;
7879 }
7880
7881 if (!pi->alive_cmds) {
7882 debug_leave();
7883 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
7884 return 1;
7885 }
7886
7887 debug_leave();
7888 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
7889 return -1;
7890}
7891
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007892/* NB: called by pseudo_exec, and therefore must not modify any
7893 * global data until exec/_exit (we can be a child after vfork!) */
7894static int run_list(struct pipe *pi)
7895{
7896#if ENABLE_HUSH_CASE
7897 char *case_word = NULL;
7898#endif
7899#if ENABLE_HUSH_LOOPS
7900 struct pipe *loop_top = NULL;
7901 char **for_lcur = NULL;
7902 char **for_list = NULL;
7903#endif
7904 smallint last_followup;
7905 smalluint rcode;
7906#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
7907 smalluint cond_code = 0;
7908#else
7909 enum { cond_code = 0 };
7910#endif
7911#if HAS_KEYWORDS
Denys Vlasenko9b782552010-09-08 13:33:26 +02007912 smallint rword; /* RES_foo */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007913 smallint last_rword; /* ditto */
7914#endif
7915
7916 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
7917 debug_enter();
7918
7919#if ENABLE_HUSH_LOOPS
7920 /* Check syntax for "for" */
Denys Vlasenko0d6a4ec2010-12-18 01:34:49 +01007921 {
7922 struct pipe *cpipe;
7923 for (cpipe = pi; cpipe; cpipe = cpipe->next) {
7924 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
7925 continue;
7926 /* current word is FOR or IN (BOLD in comments below) */
7927 if (cpipe->next == NULL) {
7928 syntax_error("malformed for");
7929 debug_leave();
7930 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
7931 return 1;
7932 }
7933 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
7934 if (cpipe->next->res_word == RES_DO)
7935 continue;
7936 /* next word is not "do". It must be "in" then ("FOR v in ...") */
7937 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
7938 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
7939 ) {
7940 syntax_error("malformed for");
7941 debug_leave();
7942 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
7943 return 1;
7944 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007945 }
7946 }
7947#endif
7948
7949 /* Past this point, all code paths should jump to ret: label
7950 * in order to return, no direct "return" statements please.
7951 * This helps to ensure that no memory is leaked. */
7952
7953#if ENABLE_HUSH_JOB
7954 G.run_list_level++;
7955#endif
7956
7957#if HAS_KEYWORDS
7958 rword = RES_NONE;
7959 last_rword = RES_XXXX;
7960#endif
7961 last_followup = PIPE_SEQ;
7962 rcode = G.last_exitcode;
7963
7964 /* Go through list of pipes, (maybe) executing them. */
7965 for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01007966 int r;
7967
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007968 if (G.flag_SIGINT)
7969 break;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02007970 if (G_flag_return_in_progress == 1)
7971 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007972
7973 IF_HAS_KEYWORDS(rword = pi->res_word;)
7974 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
7975 rword, cond_code, last_rword);
7976#if ENABLE_HUSH_LOOPS
7977 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
7978 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
7979 ) {
7980 /* start of a loop: remember where loop starts */
7981 loop_top = pi;
7982 G.depth_of_loop++;
7983 }
7984#endif
7985 /* Still in the same "if...", "then..." or "do..." branch? */
7986 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
7987 if ((rcode == 0 && last_followup == PIPE_OR)
7988 || (rcode != 0 && last_followup == PIPE_AND)
7989 ) {
7990 /* It is "<true> || CMD" or "<false> && CMD"
7991 * and we should not execute CMD */
7992 debug_printf_exec("skipped cmd because of || or &&\n");
7993 last_followup = pi->followup;
Denys Vlasenko3beab832013-04-07 18:16:58 +02007994 goto dont_check_jobs_but_continue;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007995 }
7996 }
7997 last_followup = pi->followup;
7998 IF_HAS_KEYWORDS(last_rword = rword;)
7999#if ENABLE_HUSH_IF
8000 if (cond_code) {
8001 if (rword == RES_THEN) {
8002 /* if false; then ... fi has exitcode 0! */
8003 G.last_exitcode = rcode = EXIT_SUCCESS;
8004 /* "if <false> THEN cmd": skip cmd */
8005 continue;
8006 }
8007 } else {
8008 if (rword == RES_ELSE || rword == RES_ELIF) {
8009 /* "if <true> then ... ELSE/ELIF cmd":
8010 * skip cmd and all following ones */
8011 break;
8012 }
8013 }
8014#endif
8015#if ENABLE_HUSH_LOOPS
8016 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
8017 if (!for_lcur) {
8018 /* first loop through for */
8019
8020 static const char encoded_dollar_at[] ALIGN1 = {
8021 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
8022 }; /* encoded representation of "$@" */
8023 static const char *const encoded_dollar_at_argv[] = {
8024 encoded_dollar_at, NULL
8025 }; /* argv list with one element: "$@" */
8026 char **vals;
8027
8028 vals = (char**)encoded_dollar_at_argv;
8029 if (pi->next->res_word == RES_IN) {
8030 /* if no variable values after "in" we skip "for" */
8031 if (!pi->next->cmds[0].argv) {
8032 G.last_exitcode = rcode = EXIT_SUCCESS;
8033 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
8034 break;
8035 }
8036 vals = pi->next->cmds[0].argv;
8037 } /* else: "for var; do..." -> assume "$@" list */
8038 /* create list of variable values */
8039 debug_print_strings("for_list made from", vals);
8040 for_list = expand_strvec_to_strvec(vals);
8041 for_lcur = for_list;
8042 debug_print_strings("for_list", for_list);
8043 }
8044 if (!*for_lcur) {
8045 /* "for" loop is over, clean up */
8046 free(for_list);
8047 for_list = NULL;
8048 for_lcur = NULL;
8049 break;
8050 }
8051 /* Insert next value from for_lcur */
8052 /* note: *for_lcur already has quotes removed, $var expanded, etc */
8053 set_local_var(xasprintf("%s=%s", pi->cmds[0].argv[0], *for_lcur++), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
8054 continue;
8055 }
8056 if (rword == RES_IN) {
8057 continue; /* "for v IN list;..." - "in" has no cmds anyway */
8058 }
8059 if (rword == RES_DONE) {
8060 continue; /* "done" has no cmds too */
8061 }
8062#endif
8063#if ENABLE_HUSH_CASE
8064 if (rword == RES_CASE) {
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008065 debug_printf_exec("CASE cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008066 case_word = expand_strvec_to_string(pi->cmds->argv);
Denys Vlasenkobd43c672017-07-05 23:12:15 +02008067 unbackslash(case_word);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008068 continue;
8069 }
8070 if (rword == RES_MATCH) {
8071 char **argv;
8072
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008073 debug_printf_exec("MATCH cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008074 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
8075 break;
8076 /* all prev words didn't match, does this one match? */
8077 argv = pi->cmds->argv;
8078 while (*argv) {
Denys Vlasenkobd43c672017-07-05 23:12:15 +02008079 char *pattern = expand_string_to_string(*argv, /*unbackslash:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008080 /* TODO: which FNM_xxx flags to use? */
8081 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
Denys Vlasenkobd43c672017-07-05 23:12:15 +02008082 debug_printf_exec("fnmatch(pattern:'%s',str:'%s'):%d\n", pattern, case_word, cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008083 free(pattern);
8084 if (cond_code == 0) { /* match! we will execute this branch */
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008085 free(case_word);
8086 case_word = NULL; /* make future "word)" stop */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008087 break;
8088 }
8089 argv++;
8090 }
8091 continue;
8092 }
8093 if (rword == RES_CASE_BODY) { /* inside of a case branch */
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008094 debug_printf_exec("CASE_BODY cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008095 if (cond_code != 0)
8096 continue; /* not matched yet, skip this pipe */
8097 }
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008098 if (rword == RES_ESAC) {
8099 debug_printf_exec("ESAC cond_code:%d\n", cond_code);
8100 if (case_word) {
8101 /* "case" did not match anything: still set $? (to 0) */
8102 G.last_exitcode = rcode = EXIT_SUCCESS;
8103 }
8104 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008105#endif
8106 /* Just pressing <enter> in shell should check for jobs.
8107 * OTOH, in non-interactive shell this is useless
8108 * and only leads to extra job checks */
8109 if (pi->num_cmds == 0) {
8110 if (G_interactive_fd)
8111 goto check_jobs_and_continue;
8112 continue;
8113 }
8114
8115 /* After analyzing all keywords and conditions, we decided
8116 * to execute this pipe. NB: have to do checkjobs(NULL)
8117 * after run_pipe to collect any background children,
8118 * even if list execution is to be stopped. */
8119 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008120#if ENABLE_HUSH_LOOPS
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008121 G.flag_break_continue = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008122#endif
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008123 rcode = r = run_pipe(pi); /* NB: rcode is a smalluint, r is int */
8124 if (r != -1) {
8125 /* We ran a builtin, function, or group.
8126 * rcode is already known
8127 * and we don't need to wait for anything. */
8128 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
8129 G.last_exitcode = rcode;
8130 check_and_run_traps();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008131#if ENABLE_HUSH_LOOPS
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008132 /* Was it "break" or "continue"? */
8133 if (G.flag_break_continue) {
8134 smallint fbc = G.flag_break_continue;
8135 /* We might fall into outer *loop*,
8136 * don't want to break it too */
8137 if (loop_top) {
8138 G.depth_break_continue--;
8139 if (G.depth_break_continue == 0)
8140 G.flag_break_continue = 0;
8141 /* else: e.g. "continue 2" should *break* once, *then* continue */
8142 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
8143 if (G.depth_break_continue != 0 || fbc == BC_BREAK) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02008144 checkjobs(NULL, 0 /*(no pid to wait for)*/);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008145 break;
8146 }
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008147 /* "continue": simulate end of loop */
8148 rword = RES_DONE;
8149 continue;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008150 }
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008151#endif
8152 if (G_flag_return_in_progress == 1) {
8153 checkjobs(NULL, 0 /*(no pid to wait for)*/);
8154 break;
8155 }
8156 } else if (pi->followup == PIPE_BG) {
8157 /* What does bash do with attempts to background builtins? */
8158 /* even bash 3.2 doesn't do that well with nested bg:
8159 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
8160 * I'm NOT treating inner &'s as jobs */
8161#if ENABLE_HUSH_JOB
8162 if (G.run_list_level == 1)
8163 insert_bg_job(pi);
8164#endif
8165 /* Last command's pid goes to $! */
8166 G.last_bg_pid = pi->cmds[pi->num_cmds - 1].pid;
8167 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
8168/* Check pi->pi_inverted? "! sleep 1 & echo $?": bash says 1. dash and ash says 0 */
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008169 rcode = EXIT_SUCCESS;
8170 goto check_traps;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008171 } else {
8172#if ENABLE_HUSH_JOB
8173 if (G.run_list_level == 1 && G_interactive_fd) {
8174 /* Waits for completion, then fg's main shell */
8175 rcode = checkjobs_and_fg_shell(pi);
8176 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008177 goto check_traps;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008178 }
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008179#endif
8180 /* This one just waits for completion */
8181 rcode = checkjobs(pi, 0 /*(no pid to wait for)*/);
8182 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
8183 check_traps:
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008184 G.last_exitcode = rcode;
8185 check_and_run_traps();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008186 }
8187
8188 /* Analyze how result affects subsequent commands */
8189#if ENABLE_HUSH_IF
8190 if (rword == RES_IF || rword == RES_ELIF)
8191 cond_code = rcode;
8192#endif
Denys Vlasenko3beab832013-04-07 18:16:58 +02008193 check_jobs_and_continue:
Denys Vlasenko7e675362016-10-28 21:57:31 +02008194 checkjobs(NULL, 0 /*(no pid to wait for)*/);
Denys Vlasenko3beab832013-04-07 18:16:58 +02008195 dont_check_jobs_but_continue: ;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008196#if ENABLE_HUSH_LOOPS
8197 /* Beware of "while false; true; do ..."! */
Denys Vlasenko00ae9892011-05-31 17:35:45 +02008198 if (pi->next
8199 && (pi->next->res_word == RES_DO || pi->next->res_word == RES_DONE)
Denys Vlasenko56a3b822011-06-01 12:47:07 +02008200 /* check for RES_DONE is needed for "while ...; do \n done" case */
Denys Vlasenko00ae9892011-05-31 17:35:45 +02008201 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008202 if (rword == RES_WHILE) {
8203 if (rcode) {
8204 /* "while false; do...done" - exitcode 0 */
8205 G.last_exitcode = rcode = EXIT_SUCCESS;
8206 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
Denys Vlasenko3beab832013-04-07 18:16:58 +02008207 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008208 }
8209 }
8210 if (rword == RES_UNTIL) {
8211 if (!rcode) {
8212 debug_printf_exec(": until expr is true: breaking\n");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008213 break;
8214 }
8215 }
8216 }
8217#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008218 } /* for (pi) */
8219
8220#if ENABLE_HUSH_JOB
8221 G.run_list_level--;
8222#endif
8223#if ENABLE_HUSH_LOOPS
8224 if (loop_top)
8225 G.depth_of_loop--;
8226 free(for_list);
8227#endif
8228#if ENABLE_HUSH_CASE
8229 free(case_word);
8230#endif
8231 debug_leave();
8232 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
8233 return rcode;
8234}
8235
8236/* Select which version we will use */
8237static int run_and_free_list(struct pipe *pi)
8238{
8239 int rcode = 0;
8240 debug_printf_exec("run_and_free_list entered\n");
Dan Fandrich85c62472010-11-20 13:05:17 -08008241 if (!G.o_opt[OPT_O_NOEXEC]) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008242 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
8243 rcode = run_list(pi);
8244 }
8245 /* free_pipe_list has the side effect of clearing memory.
8246 * In the long run that function can be merged with run_list,
8247 * but doing that now would hobble the debugging effort. */
8248 free_pipe_list(pi);
8249 debug_printf_exec("run_and_free_list return %d\n", rcode);
8250 return rcode;
8251}
8252
8253
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008254static void install_sighandlers(unsigned mask)
Eric Andersen52a97ca2001-06-22 06:49:26 +00008255{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008256 sighandler_t old_handler;
8257 unsigned sig = 0;
8258 while ((mask >>= 1) != 0) {
8259 sig++;
8260 if (!(mask & 1))
8261 continue;
Denys Vlasenko0806e402011-05-12 23:06:20 +02008262 old_handler = install_sighandler(sig, pick_sighandler(sig));
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008263 /* POSIX allows shell to re-enable SIGCHLD
8264 * even if it was SIG_IGN on entry.
8265 * Therefore we skip IGN check for it:
8266 */
8267 if (sig == SIGCHLD)
8268 continue;
8269 if (old_handler == SIG_IGN) {
8270 /* oops... restore back to IGN, and record this fact */
Denys Vlasenko0806e402011-05-12 23:06:20 +02008271 install_sighandler(sig, old_handler);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008272#if ENABLE_HUSH_TRAP
8273 if (!G_traps)
8274 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
8275 free(G_traps[sig]);
8276 G_traps[sig] = xzalloc(1); /* == xstrdup(""); */
8277#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008278 }
8279 }
8280}
8281
8282/* Called a few times only (or even once if "sh -c") */
8283static void install_special_sighandlers(void)
8284{
Denis Vlasenkof9375282009-04-05 19:13:39 +00008285 unsigned mask;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008286
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008287 /* Which signals are shell-special? */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008288 mask = (1 << SIGQUIT) | (1 << SIGCHLD);
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008289 if (G_interactive_fd) {
8290 mask |= SPECIAL_INTERACTIVE_SIGS;
8291 if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008292 mask |= SPECIAL_JOBSTOP_SIGS;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008293 }
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008294 /* Careful, do not re-install handlers we already installed */
8295 if (G.special_sig_mask != mask) {
8296 unsigned diff = mask & ~G.special_sig_mask;
8297 G.special_sig_mask = mask;
8298 install_sighandlers(diff);
8299 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008300}
8301
8302#if ENABLE_HUSH_JOB
8303/* helper */
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008304/* Set handlers to restore tty pgrp and exit */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008305static void install_fatal_sighandlers(void)
Denis Vlasenkof9375282009-04-05 19:13:39 +00008306{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008307 unsigned mask;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008308
8309 /* We will restore tty pgrp on these signals */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008310 mask = 0
Denys Vlasenko830ea352016-11-08 04:59:11 +01008311 /*+ (1 << SIGILL ) * HUSH_DEBUG*/
8312 /*+ (1 << SIGFPE ) * HUSH_DEBUG*/
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008313 + (1 << SIGBUS ) * HUSH_DEBUG
8314 + (1 << SIGSEGV) * HUSH_DEBUG
Denys Vlasenko830ea352016-11-08 04:59:11 +01008315 /*+ (1 << SIGTRAP) * HUSH_DEBUG*/
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008316 + (1 << SIGABRT)
8317 /* bash 3.2 seems to handle these just like 'fatal' ones */
8318 + (1 << SIGPIPE)
8319 + (1 << SIGALRM)
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008320 /* if we are interactive, SIGHUP, SIGTERM and SIGINT are special sigs.
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008321 * if we aren't interactive... but in this case
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008322 * we never want to restore pgrp on exit, and this fn is not called
8323 */
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008324 /*+ (1 << SIGHUP )*/
8325 /*+ (1 << SIGTERM)*/
8326 /*+ (1 << SIGINT )*/
8327 ;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008328 G_fatal_sig_mask = mask;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008329
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008330 install_sighandlers(mask);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008331}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00008332#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00008333
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008334static int set_mode(int state, char mode, const char *o_opt)
Denis Vlasenkod5762932009-03-31 11:22:57 +00008335{
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008336 int idx;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008337 switch (mode) {
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008338 case 'n':
Dan Fandrich85c62472010-11-20 13:05:17 -08008339 G.o_opt[OPT_O_NOEXEC] = state;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008340 break;
8341 case 'x':
8342 IF_HUSH_MODE_X(G_x_mode = state;)
8343 break;
8344 case 'o':
8345 if (!o_opt) {
8346 /* "set -+o" without parameter.
8347 * in bash, set -o produces this output:
8348 * pipefail off
8349 * and set +o:
8350 * set +o pipefail
8351 * We always use the second form.
8352 */
8353 const char *p = o_opt_strings;
8354 idx = 0;
8355 while (*p) {
8356 printf("set %co %s\n", (G.o_opt[idx] ? '-' : '+'), p);
8357 idx++;
8358 p += strlen(p) + 1;
8359 }
8360 break;
8361 }
8362 idx = index_in_strings(o_opt_strings, o_opt);
8363 if (idx >= 0) {
8364 G.o_opt[idx] = state;
8365 break;
8366 }
8367 default:
8368 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008369 }
8370 return EXIT_SUCCESS;
8371}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008372
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00008373int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00008374int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00008375{
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008376 enum {
8377 OPT_login = (1 << 0),
8378 };
8379 unsigned flags;
Eric Andersen25f27032001-04-26 23:22:31 +00008380 int opt;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008381 unsigned builtin_argc;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008382 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008383 struct variable *cur_var;
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008384 struct variable *shell_ver;
Eric Andersenbc604a22001-05-16 05:24:03 +00008385
Denis Vlasenko574f2f42008-02-27 18:41:59 +00008386 INIT_G();
Denys Vlasenko10c01312011-05-11 11:49:21 +02008387 if (EXIT_SUCCESS != 0) /* if EXIT_SUCCESS == 0, it is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008388 G.last_exitcode = EXIT_SUCCESS;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02008389
Denys Vlasenko10c01312011-05-11 11:49:21 +02008390#if ENABLE_HUSH_FAST
8391 G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
8392#endif
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008393#if !BB_MMU
8394 G.argv0_for_re_execing = argv[0];
8395#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008396 /* Deal with HUSH_VERSION */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008397 shell_ver = xzalloc(sizeof(*shell_ver));
8398 shell_ver->flg_export = 1;
8399 shell_ver->flg_read_only = 1;
Denys Vlasenko4f870492010-09-10 11:06:01 +02008400 /* Code which handles ${var<op>...} needs writable values for all variables,
Denys Vlasenko36f774a2010-09-05 14:45:38 +02008401 * therefore we xstrdup: */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008402 shell_ver->varstr = xstrdup(hush_version_str);
Denys Vlasenko605067b2010-09-06 12:10:51 +02008403 /* Create shell local variables from the values
8404 * currently living in the environment */
Denis Vlasenkof886fd22008-10-13 12:36:05 +00008405 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008406 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008407 G.top_var = shell_ver;
Denis Vlasenko87a86552008-07-29 19:43:10 +00008408 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008409 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008410 if (e) while (*e) {
8411 char *value = strchr(*e, '=');
8412 if (value) { /* paranoia */
8413 cur_var->next = xzalloc(sizeof(*cur_var));
8414 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00008415 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008416 cur_var->max_len = strlen(*e);
8417 cur_var->flg_export = 1;
8418 }
8419 e++;
8420 }
Denys Vlasenko605067b2010-09-06 12:10:51 +02008421 /* (Re)insert HUSH_VERSION into env (AFTER we scanned the env!) */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008422 debug_printf_env("putenv '%s'\n", shell_ver->varstr);
8423 putenv(shell_ver->varstr);
Denys Vlasenko6db47842009-09-05 20:15:17 +02008424
8425 /* Export PWD */
8426 set_pwd_var(/*exp:*/ 1);
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008427
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01008428#if BASH_HOSTNAME_VAR
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008429 /* Set (but not export) HOSTNAME unless already set */
8430 if (!get_local_var_value("HOSTNAME")) {
8431 struct utsname uts;
8432 uname(&uts);
8433 set_local_var_from_halves("HOSTNAME", uts.nodename);
8434 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02008435 /* bash also exports SHLVL and _,
8436 * and sets (but doesn't export) the following variables:
8437 * BASH=/bin/bash
8438 * BASH_VERSINFO=([0]="3" [1]="2" [2]="0" [3]="1" [4]="release" [5]="i386-pc-linux-gnu")
8439 * BASH_VERSION='3.2.0(1)-release'
8440 * HOSTTYPE=i386
8441 * MACHTYPE=i386-pc-linux-gnu
8442 * OSTYPE=linux-gnu
Denys Vlasenkodea47882009-10-09 15:40:49 +02008443 * PPID=<NNNNN> - we also do it elsewhere
Denys Vlasenko6db47842009-09-05 20:15:17 +02008444 * EUID=<NNNNN>
8445 * UID=<NNNNN>
8446 * GROUPS=()
8447 * LINES=<NNN>
8448 * COLUMNS=<NNN>
8449 * BASH_ARGC=()
8450 * BASH_ARGV=()
8451 * BASH_LINENO=()
8452 * BASH_SOURCE=()
8453 * DIRSTACK=()
8454 * PIPESTATUS=([0]="0")
8455 * HISTFILE=/<xxx>/.bash_history
8456 * HISTFILESIZE=500
8457 * HISTSIZE=500
8458 * MAILCHECK=60
8459 * PATH=/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:.
8460 * SHELL=/bin/bash
8461 * SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor
8462 * TERM=dumb
8463 * OPTERR=1
8464 * OPTIND=1
8465 * IFS=$' \t\n'
8466 * PS1='\s-\v\$ '
8467 * PS2='> '
8468 * PS4='+ '
8469 */
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008470#endif
Denys Vlasenko6db47842009-09-05 20:15:17 +02008471
Denis Vlasenko38f63192007-01-22 09:03:07 +00008472#if ENABLE_FEATURE_EDITING
Denys Vlasenkoe45af7a2011-09-04 16:15:24 +02008473 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00008474#endif
Denys Vlasenko99862cb2010-09-12 17:34:13 +02008475
Eric Andersen94ac2442001-05-22 19:05:18 +00008476 /* Initialize some more globals to non-zero values */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00008477 cmdedit_update_prompt();
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00008478
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02008479 die_func = restore_ttypgrp_and__exit;
Denis Vlasenkoed782372009-04-10 00:45:02 +00008480
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008481 /* Shell is non-interactive at first. We need to call
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008482 * install_special_sighandlers() if we are going to execute "sh <script>",
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008483 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008484 * If we later decide that we are interactive, we run install_special_sighandlers()
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008485 * in order to intercept (more) signals.
8486 */
8487
8488 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00008489 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008490 flags = (argv[0] && argv[0][0] == '-') ? OPT_login : 0;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008491 builtin_argc = 0;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008492 while (1) {
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008493 opt = getopt(argc, argv, "+c:xinsl"
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008494#if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00008495 "<:$:R:V:"
8496# if ENABLE_HUSH_FUNCTIONS
8497 "F:"
8498# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008499#endif
8500 );
8501 if (opt <= 0)
8502 break;
Eric Andersen25f27032001-04-26 23:22:31 +00008503 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008504 case 'c':
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008505 /* Possibilities:
8506 * sh ... -c 'script'
8507 * sh ... -c 'script' ARG0 [ARG1...]
8508 * On NOMMU, if builtin_argc != 0,
Denys Vlasenko17323a62010-01-28 01:57:05 +01008509 * sh ... -c 'builtin' BARGV... "" ARG0 [ARG1...]
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008510 * "" needs to be replaced with NULL
8511 * and BARGV vector fed to builtin function.
Denys Vlasenko17323a62010-01-28 01:57:05 +01008512 * Note: the form without ARG0 never happens:
8513 * sh ... -c 'builtin' BARGV... ""
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008514 */
Denys Vlasenkodea47882009-10-09 15:40:49 +02008515 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008516 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02008517 G.root_ppid = getppid();
8518 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008519 G.global_argv = argv + optind;
8520 G.global_argc = argc - optind;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008521 if (builtin_argc) {
8522 /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */
8523 const struct built_in_command *x;
8524
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008525 install_special_sighandlers();
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008526 x = find_builtin(optarg);
8527 if (x) { /* paranoia */
8528 G.global_argc -= builtin_argc; /* skip [BARGV...] "" */
8529 G.global_argv += builtin_argc;
8530 G.global_argv[-1] = NULL; /* replace "" */
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01008531 fflush_all();
Denys Vlasenko17323a62010-01-28 01:57:05 +01008532 G.last_exitcode = x->b_function(argv + optind - 1);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008533 }
8534 goto final_return;
8535 }
8536 if (!G.global_argv[0]) {
8537 /* -c 'script' (no params): prevent empty $0 */
8538 G.global_argv--; /* points to argv[i] of 'script' */
8539 G.global_argv[0] = argv[0];
Denys Vlasenko5ae8f1c2010-05-22 06:32:11 +02008540 G.global_argc++;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008541 } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008542 install_special_sighandlers();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008543 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008544 goto final_return;
8545 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00008546 /* Well, we cannot just declare interactiveness,
8547 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008548 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008549 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00008550 case 's':
8551 /* "-s" means "read from stdin", but this is how we always
8552 * operate, so simply do nothing here. */
8553 break;
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008554 case 'l':
8555 flags |= OPT_login;
8556 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008557#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00008558 case '<': /* "big heredoc" support */
Denys Vlasenko729ecb82010-06-07 14:14:26 +02008559 full_write1_str(optarg);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00008560 _exit(0);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008561 case '$': {
8562 unsigned long long empty_trap_mask;
8563
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008564 G.root_pid = bb_strtou(optarg, &optarg, 16);
8565 optarg++;
Denys Vlasenkodea47882009-10-09 15:40:49 +02008566 G.root_ppid = bb_strtou(optarg, &optarg, 16);
8567 optarg++;
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008568 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
8569 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008570 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008571 optarg++;
8572 builtin_argc = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008573 optarg++;
8574 empty_trap_mask = bb_strtoull(optarg, &optarg, 16);
8575 if (empty_trap_mask != 0) {
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02008576 IF_HUSH_TRAP(int sig;)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008577 install_special_sighandlers();
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02008578# if ENABLE_HUSH_TRAP
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008579 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008580 for (sig = 1; sig < NSIG; sig++) {
8581 if (empty_trap_mask & (1LL << sig)) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008582 G_traps[sig] = xzalloc(1); /* == xstrdup(""); */
Denys Vlasenko0806e402011-05-12 23:06:20 +02008583 install_sighandler(sig, SIG_IGN);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008584 }
8585 }
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02008586# endif
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008587 }
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008588# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008589 optarg++;
8590 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008591# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008592 break;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008593 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008594 case 'R':
8595 case 'V':
Denys Vlasenko295fef82009-06-03 12:47:26 +02008596 set_local_var(xstrdup(optarg), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ opt == 'R');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008597 break;
Denis Vlasenkobc569742009-04-12 20:35:19 +00008598# if ENABLE_HUSH_FUNCTIONS
8599 case 'F': {
8600 struct function *funcp = new_function(optarg);
8601 /* funcp->name is already set to optarg */
8602 /* funcp->body is set to NULL. It's a special case. */
8603 funcp->body_as_string = argv[optind];
8604 optind++;
8605 break;
8606 }
8607# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008608#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008609 case 'n':
8610 case 'x':
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008611 if (set_mode(1, opt, NULL) == 0) /* no error */
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008612 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008613 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008614#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008615 fprintf(stderr, "Usage: sh [FILE]...\n"
8616 " or: sh -c command [args]...\n\n");
8617 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008618#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008619 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008620#endif
Eric Andersen25f27032001-04-26 23:22:31 +00008621 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008622 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008623
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008624 /* Skip options. Try "hush -l": $1 should not be "-l"! */
8625 G.global_argc = argc - (optind - 1);
8626 G.global_argv = argv + (optind - 1);
8627 G.global_argv[0] = argv[0];
8628
Denys Vlasenkodea47882009-10-09 15:40:49 +02008629 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008630 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02008631 G.root_ppid = getppid();
8632 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008633
8634 /* If we are login shell... */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008635 if (flags & OPT_login) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008636 FILE *input;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008637 debug_printf("sourcing /etc/profile\n");
8638 input = fopen_for_read("/etc/profile");
8639 if (input != NULL) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008640 remember_FILE(input);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008641 install_special_sighandlers();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008642 parse_and_run_file(input);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008643 fclose_and_forget(input);
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008644 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008645 /* bash: after sourcing /etc/profile,
8646 * tries to source (in the given order):
8647 * ~/.bash_profile, ~/.bash_login, ~/.profile,
Denys Vlasenko28a105d2009-06-01 11:26:30 +02008648 * stopping on first found. --noprofile turns this off.
Denis Vlasenkof9375282009-04-05 19:13:39 +00008649 * bash also sources ~/.bash_logout on exit.
8650 * If called as sh, skips .bash_XXX files.
8651 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008652 }
8653
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008654 if (G.global_argv[1]) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00008655 FILE *input;
8656 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008657 * "bash <script>" (which is never interactive (unless -i?))
8658 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00008659 * If called as sh, does the same but with $ENV.
Denys Vlasenko2eb0a7e2016-10-27 11:28:59 +02008660 * Also NB, per POSIX, $ENV should undergo parameter expansion.
Denis Vlasenkof9375282009-04-05 19:13:39 +00008661 */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008662 G.global_argc--;
8663 G.global_argv++;
8664 debug_printf("running script '%s'\n", G.global_argv[0]);
Denys Vlasenkob7adf7a2016-10-25 17:00:13 +02008665 xfunc_error_retval = 127; /* for "hush /does/not/exist" case */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008666 input = xfopen_for_read(G.global_argv[0]);
Denys Vlasenkob7adf7a2016-10-25 17:00:13 +02008667 xfunc_error_retval = 1;
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008668 remember_FILE(input);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008669 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00008670 parse_and_run_file(input);
8671#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008672 fclose_and_forget(input);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008673#endif
8674 goto final_return;
8675 }
8676
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008677 /* Up to here, shell was non-interactive. Now it may become one.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008678 * NB: don't forget to (re)run install_special_sighandlers() as needed.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008679 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00008680
Denys Vlasenko28a105d2009-06-01 11:26:30 +02008681 /* A shell is interactive if the '-i' flag was given,
8682 * or if all of the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00008683 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00008684 * no arguments remaining or the -s flag given
8685 * standard input is a terminal
8686 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00008687 * Refer to Posix.2, the description of the 'sh' utility.
8688 */
8689#if ENABLE_HUSH_JOB
8690 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Mike Frysinger38478a62009-05-20 04:48:06 -04008691 G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
8692 debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp);
8693 if (G_saved_tty_pgrp < 0)
8694 G_saved_tty_pgrp = 0;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008695
8696 /* try to dup stdin to high fd#, >= 255 */
8697 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
8698 if (G_interactive_fd < 0) {
8699 /* try to dup to any fd */
8700 G_interactive_fd = dup(STDIN_FILENO);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008701 if (G_interactive_fd < 0) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008702 /* give up */
8703 G_interactive_fd = 0;
Mike Frysinger38478a62009-05-20 04:48:06 -04008704 G_saved_tty_pgrp = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00008705 }
8706 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008707// TODO: track & disallow any attempts of user
8708// to (inadvertently) close/redirect G_interactive_fd
Eric Andersen25f27032001-04-26 23:22:31 +00008709 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008710 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008711 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00008712 close_on_exec_on(G_interactive_fd);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008713
Mike Frysinger38478a62009-05-20 04:48:06 -04008714 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008715 /* If we were run as 'hush &', sleep until we are
8716 * in the foreground (tty pgrp == our pgrp).
8717 * If we get started under a job aware app (like bash),
8718 * make sure we are now in charge so we don't fight over
8719 * who gets the foreground */
8720 while (1) {
8721 pid_t shell_pgrp = getpgrp();
Mike Frysinger38478a62009-05-20 04:48:06 -04008722 G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
8723 if (G_saved_tty_pgrp == shell_pgrp)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008724 break;
8725 /* send TTIN to ourself (should stop us) */
8726 kill(- shell_pgrp, SIGTTIN);
8727 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008728 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008729
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008730 /* Install more signal handlers */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008731 install_special_sighandlers();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008732
Mike Frysinger38478a62009-05-20 04:48:06 -04008733 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008734 /* Set other signals to restore saved_tty_pgrp */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008735 install_fatal_sighandlers();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008736 /* Put ourselves in our own process group
8737 * (bash, too, does this only if ctty is available) */
8738 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
8739 /* Grab control of the terminal */
8740 tcsetpgrp(G_interactive_fd, getpid());
8741 }
Denys Vlasenko550bf5b2015-10-09 16:42:57 +02008742 enable_restore_tty_pgrp_on_exit();
Denys Vlasenko4840ae82011-09-04 15:28:03 +02008743
8744# if ENABLE_HUSH_SAVEHISTORY && MAX_HISTORY > 0
8745 {
8746 const char *hp = get_local_var_value("HISTFILE");
8747 if (!hp) {
8748 hp = get_local_var_value("HOME");
8749 if (hp)
8750 hp = concat_path_file(hp, ".hush_history");
8751 } else {
8752 hp = xstrdup(hp);
8753 }
8754 if (hp) {
8755 G.line_input_state->hist_file = hp;
Denys Vlasenko4840ae82011-09-04 15:28:03 +02008756 //set_local_var(xasprintf("HISTFILE=%s", ...));
8757 }
8758# if ENABLE_FEATURE_SH_HISTFILESIZE
8759 hp = get_local_var_value("HISTFILESIZE");
8760 G.line_input_state->max_history = size_from_HISTFILESIZE(hp);
8761# endif
8762 }
8763# endif
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008764 } else {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008765 install_special_sighandlers();
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008766 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008767#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00008768 /* No job control compiled in, only prompt/line editing */
8769 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008770 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
8771 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008772 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008773 G_interactive_fd = dup(STDIN_FILENO);
8774 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008775 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008776 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008777 }
8778 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008779 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00008780 close_on_exec_on(G_interactive_fd);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008781 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008782 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00008783#else
8784 /* We have interactiveness code disabled */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008785 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00008786#endif
8787 /* bash:
8788 * if interactive but not a login shell, sources ~/.bashrc
8789 * (--norc turns this off, --rcfile <file> overrides)
8790 */
8791
8792 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Denys Vlasenkoc34c0332009-09-29 12:25:30 +02008793 /* note: ash and hush share this string */
8794 printf("\n\n%s %s\n"
8795 IF_HUSH_HELP("Enter 'help' for a list of built-in commands.\n")
8796 "\n",
8797 bb_banner,
8798 "hush - the humble shell"
8799 );
Mike Frysingerb2705e12009-03-23 08:44:02 +00008800 }
8801
Denis Vlasenkof9375282009-04-05 19:13:39 +00008802 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00008803
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008804 final_return:
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008805 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00008806}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00008807
8808
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008809/*
8810 * Built-ins
8811 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008812static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008813{
8814 return 0;
8815}
8816
Denys Vlasenko265062d2017-01-10 15:13:30 +01008817#if ENABLE_HUSH_TEST || ENABLE_HUSH_ECHO || ENABLE_HUSH_PRINTF || ENABLE_HUSH_KILL
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02008818static int run_applet_main(char **argv, int (*applet_main_func)(int argc, char **argv))
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008819{
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02008820 int argc = string_array_len(argv);
8821 return applet_main_func(argc, argv);
Mike Frysingerccb19592009-10-15 03:31:15 -04008822}
Denys Vlasenko265062d2017-01-10 15:13:30 +01008823#endif
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01008824#if ENABLE_HUSH_TEST || BASH_TEST2
Mike Frysingerccb19592009-10-15 03:31:15 -04008825static int FAST_FUNC builtin_test(char **argv)
8826{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008827 return run_applet_main(argv, test_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008828}
Denys Vlasenko265062d2017-01-10 15:13:30 +01008829#endif
Denys Vlasenko1cc68042017-01-09 17:10:04 +01008830#if ENABLE_HUSH_ECHO
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008831static int FAST_FUNC builtin_echo(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008832{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008833 return run_applet_main(argv, echo_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008834}
Denys Vlasenko1cc68042017-01-09 17:10:04 +01008835#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01008836#if ENABLE_HUSH_PRINTF
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04008837static int FAST_FUNC builtin_printf(char **argv)
8838{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008839 return run_applet_main(argv, printf_main);
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04008840}
8841#endif
8842
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01008843#if ENABLE_HUSH_HELP
8844static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM)
8845{
8846 const struct built_in_command *x;
8847
8848 printf(
8849 "Built-in commands:\n"
8850 "------------------\n");
8851 for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) {
8852 if (x->b_descr)
8853 printf("%-10s%s\n", x->b_cmd, x->b_descr);
8854 }
8855 return EXIT_SUCCESS;
8856}
8857#endif
8858
8859#if MAX_HISTORY && ENABLE_FEATURE_EDITING
8860static int FAST_FUNC builtin_history(char **argv UNUSED_PARAM)
8861{
8862 show_history(G.line_input_state);
8863 return EXIT_SUCCESS;
8864}
8865#endif
8866
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008867static char **skip_dash_dash(char **argv)
8868{
8869 argv++;
8870 if (argv[0] && argv[0][0] == '-' && argv[0][1] == '-' && argv[0][2] == '\0')
8871 argv++;
8872 return argv;
8873}
8874
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008875static int FAST_FUNC builtin_cd(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008876{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008877 const char *newdir;
8878
8879 argv = skip_dash_dash(argv);
8880 newdir = argv[0];
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008881 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008882 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00008883 * bash says "bash: cd: HOME not set" and does nothing
8884 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008885 */
Denys Vlasenko90a99042009-09-06 02:36:23 +02008886 const char *home = get_local_var_value("HOME");
8887 newdir = home ? home : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00008888 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008889 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008890 /* Mimic bash message exactly */
8891 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008892 return EXIT_FAILURE;
8893 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02008894 /* Read current dir (get_cwd(1) is inside) and set PWD.
8895 * Note: do not enforce exporting. If PWD was unset or unexported,
8896 * set it again, but do not export. bash does the same.
8897 */
8898 set_pwd_var(/*exp:*/ 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008899 return EXIT_SUCCESS;
8900}
8901
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01008902static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM)
8903{
8904 puts(get_cwd(0));
8905 return EXIT_SUCCESS;
8906}
8907
8908static int FAST_FUNC builtin_eval(char **argv)
8909{
8910 int rcode = EXIT_SUCCESS;
8911
8912 argv = skip_dash_dash(argv);
8913 if (*argv) {
8914 char *str = expand_strvec_to_string(argv);
8915 /* bash:
8916 * eval "echo Hi; done" ("done" is syntax error):
8917 * "echo Hi" will not execute too.
8918 */
8919 parse_and_run_string(str);
8920 free(str);
8921 rcode = G.last_exitcode;
8922 }
8923 return rcode;
8924}
8925
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008926static int FAST_FUNC builtin_exec(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008927{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008928 argv = skip_dash_dash(argv);
8929 if (argv[0] == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008930 return EXIT_SUCCESS; /* bash does this */
Denys Vlasenkof37eb392009-10-18 11:46:35 +02008931
Denys Vlasenkof37eb392009-10-18 11:46:35 +02008932 /* Careful: we can end up here after [v]fork. Do not restore
8933 * tty pgrp then, only top-level shell process does that */
8934 if (G_saved_tty_pgrp && getpid() == G.root_pid)
8935 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
8936
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02008937 /* TODO: if exec fails, bash does NOT exit! We do.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008938 * We'll need to undo trap cleanup (it's inside execvp_or_die)
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02008939 * and tcsetpgrp, and this is inherently racy.
8940 */
8941 execvp_or_die(argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008942}
8943
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008944static int FAST_FUNC builtin_exit(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008945{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00008946 debug_printf_exec("%s()\n", __func__);
Denis Vlasenko40e84372009-04-18 11:23:38 +00008947
8948 /* interactive bash:
8949 * # trap "echo EEE" EXIT
8950 * # exit
8951 * exit
8952 * There are stopped jobs.
8953 * (if there are _stopped_ jobs, running ones don't count)
8954 * # exit
8955 * exit
Denys Vlasenko6830ade2013-01-15 13:58:01 +01008956 * EEE (then bash exits)
Denis Vlasenko40e84372009-04-18 11:23:38 +00008957 *
Denys Vlasenkoa110c902010-09-12 15:38:04 +02008958 * TODO: we can use G.exiting = -1 as indicator "last cmd was exit"
Denis Vlasenko40e84372009-04-18 11:23:38 +00008959 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00008960
8961 /* note: EXIT trap is run by hush_exit */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008962 argv = skip_dash_dash(argv);
8963 if (argv[0] == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008964 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008965 /* mimic bash: exit 123abc == exit 255 + error msg */
8966 xfunc_error_retval = 255;
8967 /* bash: exit -2 == exit 254, no error msg */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008968 hush_exit(xatoi(argv[0]) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008969}
8970
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01008971#if ENABLE_HUSH_TYPE
8972/* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */
8973static int FAST_FUNC builtin_type(char **argv)
8974{
8975 int ret = EXIT_SUCCESS;
8976
8977 while (*++argv) {
8978 const char *type;
8979 char *path = NULL;
8980
8981 if (0) {} /* make conditional compile easier below */
8982 /*else if (find_alias(*argv))
8983 type = "an alias";*/
8984#if ENABLE_HUSH_FUNCTIONS
8985 else if (find_function(*argv))
8986 type = "a function";
8987#endif
8988 else if (find_builtin(*argv))
8989 type = "a shell builtin";
8990 else if ((path = find_in_path(*argv)) != NULL)
8991 type = path;
8992 else {
8993 bb_error_msg("type: %s: not found", *argv);
8994 ret = EXIT_FAILURE;
8995 continue;
8996 }
8997
8998 printf("%s is %s\n", *argv, type);
8999 free(path);
9000 }
9001
9002 return ret;
9003}
9004#endif
9005
9006#if ENABLE_HUSH_READ
9007/* Interruptibility of read builtin in bash
9008 * (tested on bash-4.2.8 by sending signals (not by ^C)):
9009 *
9010 * Empty trap makes read ignore corresponding signal, for any signal.
9011 *
9012 * SIGINT:
9013 * - terminates non-interactive shell;
9014 * - interrupts read in interactive shell;
9015 * if it has non-empty trap:
9016 * - executes trap and returns to command prompt in interactive shell;
9017 * - executes trap and returns to read in non-interactive shell;
9018 * SIGTERM:
9019 * - is ignored (does not interrupt) read in interactive shell;
9020 * - terminates non-interactive shell;
9021 * if it has non-empty trap:
9022 * - executes trap and returns to read;
9023 * SIGHUP:
9024 * - terminates shell (regardless of interactivity);
9025 * if it has non-empty trap:
9026 * - executes trap and returns to read;
Denys Vlasenkof5470412017-05-22 19:34:45 +02009027 * SIGCHLD from children:
9028 * - does not interrupt read regardless of interactivity:
9029 * try: sleep 1 & read x; echo $x
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009030 */
9031static int FAST_FUNC builtin_read(char **argv)
9032{
9033 const char *r;
9034 char *opt_n = NULL;
9035 char *opt_p = NULL;
9036 char *opt_t = NULL;
9037 char *opt_u = NULL;
9038 const char *ifs;
9039 int read_flags;
9040
9041 /* "!": do not abort on errors.
9042 * Option string must start with "sr" to match BUILTIN_READ_xxx
9043 */
9044 read_flags = getopt32(argv, "!srn:p:t:u:", &opt_n, &opt_p, &opt_t, &opt_u);
9045 if (read_flags == (uint32_t)-1)
9046 return EXIT_FAILURE;
9047 argv += optind;
9048 ifs = get_local_var_value("IFS"); /* can be NULL */
9049
9050 again:
9051 r = shell_builtin_read(set_local_var_from_halves,
9052 argv,
9053 ifs,
9054 read_flags,
9055 opt_n,
9056 opt_p,
9057 opt_t,
9058 opt_u
9059 );
9060
9061 if ((uintptr_t)r == 1 && errno == EINTR) {
9062 unsigned sig = check_and_run_traps();
Denys Vlasenkof5470412017-05-22 19:34:45 +02009063 if (sig != SIGINT)
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009064 goto again;
9065 }
9066
9067 if ((uintptr_t)r > 1) {
9068 bb_error_msg("%s", r);
9069 r = (char*)(uintptr_t)1;
9070 }
9071
9072 return (uintptr_t)r;
9073}
9074#endif
9075
9076#if ENABLE_HUSH_UMASK
9077static int FAST_FUNC builtin_umask(char **argv)
9078{
9079 int rc;
9080 mode_t mask;
9081
9082 rc = 1;
9083 mask = umask(0);
9084 argv = skip_dash_dash(argv);
9085 if (argv[0]) {
9086 mode_t old_mask = mask;
9087
9088 /* numeric umasks are taken as-is */
9089 /* symbolic umasks are inverted: "umask a=rx" calls umask(222) */
9090 if (!isdigit(argv[0][0]))
9091 mask ^= 0777;
9092 mask = bb_parse_mode(argv[0], mask);
9093 if (!isdigit(argv[0][0]))
9094 mask ^= 0777;
9095 if ((unsigned)mask > 0777) {
9096 mask = old_mask;
9097 /* bash messages:
9098 * bash: umask: 'q': invalid symbolic mode operator
9099 * bash: umask: 999: octal number out of range
9100 */
9101 bb_error_msg("%s: invalid mode '%s'", "umask", argv[0]);
9102 rc = 0;
9103 }
9104 } else {
9105 /* Mimic bash */
9106 printf("%04o\n", (unsigned) mask);
9107 /* fall through and restore mask which we set to 0 */
9108 }
9109 umask(mask);
9110
9111 return !rc; /* rc != 0 - success */
9112}
9113#endif
9114
Denys Vlasenko41ade052017-01-08 18:56:24 +01009115#if ENABLE_HUSH_EXPORT || ENABLE_HUSH_TRAP
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009116static void print_escaped(const char *s)
9117{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009118 if (*s == '\'')
9119 goto squote;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009120 do {
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009121 const char *p = strchrnul(s, '\'');
9122 /* print 'xxxx', possibly just '' */
9123 printf("'%.*s'", (int)(p - s), s);
9124 if (*p == '\0')
9125 break;
9126 s = p;
9127 squote:
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009128 /* s points to '; print "'''...'''" */
9129 putchar('"');
9130 do putchar('\''); while (*++s == '\'');
9131 putchar('"');
9132 } while (*s);
9133}
Denys Vlasenko41ade052017-01-08 18:56:24 +01009134#endif
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009135
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009136#if ENABLE_HUSH_EXPORT || ENABLE_HUSH_LOCAL
9137# if !ENABLE_HUSH_LOCAL
Denys Vlasenko295fef82009-06-03 12:47:26 +02009138#define helper_export_local(argv, exp, lvl) \
9139 helper_export_local(argv, exp)
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009140# endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02009141static void helper_export_local(char **argv, int exp, int lvl)
9142{
9143 do {
9144 char *name = *argv;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009145 char *name_end = strchrnul(name, '=');
Denys Vlasenko295fef82009-06-03 12:47:26 +02009146
9147 /* So far we do not check that name is valid (TODO?) */
9148
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009149 if (*name_end == '\0') {
9150 struct variable *var, **vpp;
Denys Vlasenko295fef82009-06-03 12:47:26 +02009151
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009152 vpp = get_ptr_to_local_var(name, name_end - name);
9153 var = vpp ? *vpp : NULL;
9154
Denys Vlasenko295fef82009-06-03 12:47:26 +02009155 if (exp == -1) { /* unexporting? */
9156 /* export -n NAME (without =VALUE) */
9157 if (var) {
9158 var->flg_export = 0;
9159 debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
9160 unsetenv(name);
9161 } /* else: export -n NOT_EXISTING_VAR: no-op */
9162 continue;
9163 }
9164 if (exp == 1) { /* exporting? */
9165 /* export NAME (without =VALUE) */
9166 if (var) {
9167 var->flg_export = 1;
9168 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
9169 putenv(var->varstr);
9170 continue;
9171 }
9172 }
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009173# if ENABLE_HUSH_LOCAL
Denys Vlasenko61508d92016-10-02 21:12:02 +02009174 if (exp == 0 /* local? */
9175 && var && var->func_nest_level == lvl
9176 ) {
9177 /* "local x=abc; ...; local x" - ignore second local decl */
Denys Vlasenko80729a42016-10-02 22:33:15 +02009178 continue;
Denys Vlasenko61508d92016-10-02 21:12:02 +02009179 }
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009180# endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02009181 /* Exporting non-existing variable.
9182 * bash does not put it in environment,
9183 * but remembers that it is exported,
9184 * and does put it in env when it is set later.
9185 * We just set it to "" and export. */
9186 /* Or, it's "local NAME" (without =VALUE).
9187 * bash sets the value to "". */
9188 name = xasprintf("%s=", name);
9189 } else {
9190 /* (Un)exporting/making local NAME=VALUE */
9191 name = xstrdup(name);
9192 }
9193 set_local_var(name, /*exp:*/ exp, /*lvl:*/ lvl, /*ro:*/ 0);
9194 } while (*++argv);
9195}
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009196#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02009197
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009198#if ENABLE_HUSH_EXPORT
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009199static int FAST_FUNC builtin_export(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009200{
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00009201 unsigned opt_unexport;
9202
Denys Vlasenkodf5131c2009-06-07 16:04:17 +02009203#if ENABLE_HUSH_EXPORT_N
9204 /* "!": do not abort on errors */
9205 opt_unexport = getopt32(argv, "!n");
9206 if (opt_unexport == (uint32_t)-1)
9207 return EXIT_FAILURE;
9208 argv += optind;
9209#else
9210 opt_unexport = 0;
9211 argv++;
9212#endif
9213
9214 if (argv[0] == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009215 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009216 if (e) {
9217 while (*e) {
9218#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009219 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009220#else
9221 /* ash emits: export VAR='VAL'
9222 * bash: declare -x VAR="VAL"
9223 * we follow ash example */
9224 const char *s = *e++;
9225 const char *p = strchr(s, '=');
9226
9227 if (!p) /* wtf? take next variable */
9228 continue;
9229 /* export var= */
9230 printf("export %.*s", (int)(p - s) + 1, s);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009231 print_escaped(p + 1);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009232 putchar('\n');
9233#endif
9234 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01009235 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009236 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009237 return EXIT_SUCCESS;
9238 }
9239
Denys Vlasenko295fef82009-06-03 12:47:26 +02009240 helper_export_local(argv, (opt_unexport ? -1 : 1), 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009241
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009242 return EXIT_SUCCESS;
9243}
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009244#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009245
Denys Vlasenko295fef82009-06-03 12:47:26 +02009246#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009247static int FAST_FUNC builtin_local(char **argv)
Denys Vlasenko295fef82009-06-03 12:47:26 +02009248{
9249 if (G.func_nest_level == 0) {
9250 bb_error_msg("%s: not in a function", argv[0]);
9251 return EXIT_FAILURE; /* bash compat */
9252 }
9253 helper_export_local(argv, 0, G.func_nest_level);
9254 return EXIT_SUCCESS;
9255}
9256#endif
9257
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009258#if ENABLE_HUSH_UNSET
Denys Vlasenko61508d92016-10-02 21:12:02 +02009259/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
9260static int FAST_FUNC builtin_unset(char **argv)
9261{
9262 int ret;
9263 unsigned opts;
9264
9265 /* "!": do not abort on errors */
9266 /* "+": stop at 1st non-option */
9267 opts = getopt32(argv, "!+vf");
9268 if (opts == (unsigned)-1)
9269 return EXIT_FAILURE;
9270 if (opts == 3) {
9271 bb_error_msg("unset: -v and -f are exclusive");
9272 return EXIT_FAILURE;
9273 }
9274 argv += optind;
9275
9276 ret = EXIT_SUCCESS;
9277 while (*argv) {
9278 if (!(opts & 2)) { /* not -f */
9279 if (unset_local_var(*argv)) {
9280 /* unset <nonexistent_var> doesn't fail.
9281 * Error is when one tries to unset RO var.
9282 * Message was printed by unset_local_var. */
9283 ret = EXIT_FAILURE;
9284 }
9285 }
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009286# if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko61508d92016-10-02 21:12:02 +02009287 else {
9288 unset_func(*argv);
9289 }
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009290# endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009291 argv++;
9292 }
9293 return ret;
9294}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009295#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009296
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009297#if ENABLE_HUSH_SET
Denys Vlasenko61508d92016-10-02 21:12:02 +02009298/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
9299 * built-in 'set' handler
9300 * SUSv3 says:
9301 * set [-abCefhmnuvx] [-o option] [argument...]
9302 * set [+abCefhmnuvx] [+o option] [argument...]
9303 * set -- [argument...]
9304 * set -o
9305 * set +o
9306 * Implementations shall support the options in both their hyphen and
9307 * plus-sign forms. These options can also be specified as options to sh.
9308 * Examples:
9309 * Write out all variables and their values: set
9310 * Set $1, $2, and $3 and set "$#" to 3: set c a b
9311 * Turn on the -x and -v options: set -xv
9312 * Unset all positional parameters: set --
9313 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
9314 * Set the positional parameters to the expansion of x, even if x expands
9315 * with a leading '-' or '+': set -- $x
9316 *
9317 * So far, we only support "set -- [argument...]" and some of the short names.
9318 */
9319static int FAST_FUNC builtin_set(char **argv)
9320{
9321 int n;
9322 char **pp, **g_argv;
9323 char *arg = *++argv;
9324
9325 if (arg == NULL) {
9326 struct variable *e;
9327 for (e = G.top_var; e; e = e->next)
9328 puts(e->varstr);
9329 return EXIT_SUCCESS;
9330 }
9331
9332 do {
9333 if (strcmp(arg, "--") == 0) {
9334 ++argv;
9335 goto set_argv;
9336 }
9337 if (arg[0] != '+' && arg[0] != '-')
9338 break;
9339 for (n = 1; arg[n]; ++n) {
9340 if (set_mode((arg[0] == '-'), arg[n], argv[1]))
9341 goto error;
9342 if (arg[n] == 'o' && argv[1])
9343 argv++;
9344 }
9345 } while ((arg = *++argv) != NULL);
9346 /* Now argv[0] is 1st argument */
9347
9348 if (arg == NULL)
9349 return EXIT_SUCCESS;
9350 set_argv:
9351
9352 /* NB: G.global_argv[0] ($0) is never freed/changed */
9353 g_argv = G.global_argv;
9354 if (G.global_args_malloced) {
9355 pp = g_argv;
9356 while (*++pp)
9357 free(*pp);
9358 g_argv[1] = NULL;
9359 } else {
9360 G.global_args_malloced = 1;
9361 pp = xzalloc(sizeof(pp[0]) * 2);
9362 pp[0] = g_argv[0]; /* retain $0 */
9363 g_argv = pp;
9364 }
9365 /* This realloc's G.global_argv */
9366 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
9367
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02009368 G.global_argc = 1 + string_array_len(pp + 1);
Denys Vlasenko61508d92016-10-02 21:12:02 +02009369
9370 return EXIT_SUCCESS;
9371
9372 /* Nothing known, so abort */
9373 error:
9374 bb_error_msg("set: %s: invalid option", arg);
9375 return EXIT_FAILURE;
9376}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009377#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009378
9379static int FAST_FUNC builtin_shift(char **argv)
9380{
9381 int n = 1;
9382 argv = skip_dash_dash(argv);
9383 if (argv[0]) {
Denys Vlasenkoe59591a2017-07-06 20:12:44 +02009384 n = bb_strtou(argv[0], NULL, 10);
9385 if (errno || n < 0) {
9386 /* shared string with ash.c */
9387 bb_error_msg("Illegal number: %s", argv[0]);
9388 /*
9389 * ash aborts in this case.
9390 * bash prints error message and set $? to 1.
9391 * Interestingly, for "shift 99999" bash does not
9392 * print error message, but does set $? to 1
9393 * (and does no shifting at all).
9394 */
9395 }
Denys Vlasenko61508d92016-10-02 21:12:02 +02009396 }
9397 if (n >= 0 && n < G.global_argc) {
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01009398 if (G_global_args_malloced) {
Denys Vlasenko61508d92016-10-02 21:12:02 +02009399 int m = 1;
9400 while (m <= n)
9401 free(G.global_argv[m++]);
9402 }
9403 G.global_argc -= n;
9404 memmove(&G.global_argv[1], &G.global_argv[n+1],
9405 G.global_argc * sizeof(G.global_argv[0]));
9406 return EXIT_SUCCESS;
9407 }
9408 return EXIT_FAILURE;
9409}
9410
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009411static int FAST_FUNC builtin_source(char **argv)
Denys Vlasenko61508d92016-10-02 21:12:02 +02009412{
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009413 char *arg_path, *filename;
9414 FILE *input;
9415 save_arg_t sv;
9416 char *args_need_save;
9417#if ENABLE_HUSH_FUNCTIONS
9418 smallint sv_flg;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009419#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009420
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009421 argv = skip_dash_dash(argv);
9422 filename = argv[0];
9423 if (!filename) {
9424 /* bash says: "bash: .: filename argument required" */
9425 return 2; /* bash compat */
9426 }
9427 arg_path = NULL;
9428 if (!strchr(filename, '/')) {
9429 arg_path = find_in_path(filename);
9430 if (arg_path)
9431 filename = arg_path;
9432 }
9433 input = remember_FILE(fopen_or_warn(filename, "r"));
9434 free(arg_path);
9435 if (!input) {
9436 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
9437 /* POSIX: non-interactive shell should abort here,
9438 * not merely fail. So far no one complained :)
9439 */
9440 return EXIT_FAILURE;
9441 }
9442
9443#if ENABLE_HUSH_FUNCTIONS
9444 sv_flg = G_flag_return_in_progress;
9445 /* "we are inside sourced file, ok to use return" */
9446 G_flag_return_in_progress = -1;
9447#endif
9448 args_need_save = argv[1]; /* used as a boolean variable */
9449 if (args_need_save)
9450 save_and_replace_G_args(&sv, argv);
9451
9452 /* "false; . ./empty_line; echo Zero:$?" should print 0 */
9453 G.last_exitcode = 0;
9454 parse_and_run_file(input);
9455 fclose_and_forget(input);
9456
9457 if (args_need_save) /* can't use argv[1] instead: "shift" can mangle it */
9458 restore_G_args(&sv, argv);
9459#if ENABLE_HUSH_FUNCTIONS
9460 G_flag_return_in_progress = sv_flg;
9461#endif
9462
9463 return G.last_exitcode;
9464}
9465
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009466#if ENABLE_HUSH_TRAP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009467static int FAST_FUNC builtin_trap(char **argv)
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009468{
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009469 int sig;
9470 char *new_cmd;
9471
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009472 if (!G_traps)
9473 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009474
9475 argv++;
9476 if (!*argv) {
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00009477 int i;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009478 /* No args: print all trapped */
9479 for (i = 0; i < NSIG; ++i) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009480 if (G_traps[i]) {
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009481 printf("trap -- ");
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009482 print_escaped(G_traps[i]);
Denys Vlasenkoe74aaf92009-09-27 02:05:45 +02009483 /* note: bash adds "SIG", but only if invoked
9484 * as "bash". If called as "sh", or if set -o posix,
9485 * then it prints short signal names.
9486 * We are printing short names: */
9487 printf(" %s\n", get_signame(i));
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009488 }
9489 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01009490 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009491 return EXIT_SUCCESS;
9492 }
9493
9494 new_cmd = NULL;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009495 /* If first arg is a number: reset all specified signals */
9496 sig = bb_strtou(*argv, NULL, 10);
9497 if (errno == 0) {
9498 int ret;
9499 process_sig_list:
9500 ret = EXIT_SUCCESS;
9501 while (*argv) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009502 sighandler_t handler;
9503
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009504 sig = get_signum(*argv++);
9505 if (sig < 0 || sig >= NSIG) {
9506 ret = EXIT_FAILURE;
9507 /* Mimic bash message exactly */
Denys Vlasenko74562982017-07-06 18:40:45 +02009508 bb_error_msg("trap: %s: invalid signal specification", argv[-1]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009509 continue;
9510 }
9511
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009512 free(G_traps[sig]);
9513 G_traps[sig] = xstrdup(new_cmd);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009514
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01009515 debug_printf("trap: setting SIG%s (%i) to '%s'\n",
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009516 get_signame(sig), sig, G_traps[sig]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009517
9518 /* There is no signal for 0 (EXIT) */
9519 if (sig == 0)
9520 continue;
9521
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009522 if (new_cmd)
9523 handler = (new_cmd[0] ? record_pending_signo : SIG_IGN);
9524 else
9525 /* We are removing trap handler */
9526 handler = pick_sighandler(sig);
Denys Vlasenko0806e402011-05-12 23:06:20 +02009527 install_sighandler(sig, handler);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009528 }
9529 return ret;
9530 }
9531
9532 if (!argv[1]) { /* no second arg */
9533 bb_error_msg("trap: invalid arguments");
9534 return EXIT_FAILURE;
9535 }
9536
9537 /* First arg is "-": reset all specified to default */
9538 /* First arg is "--": skip it, the rest is "handler SIGs..." */
9539 /* Everything else: set arg as signal handler
9540 * (includes "" case, which ignores signal) */
9541 if (argv[0][0] == '-') {
9542 if (argv[0][1] == '\0') { /* "-" */
9543 /* new_cmd remains NULL: "reset these sigs" */
9544 goto reset_traps;
9545 }
9546 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
9547 argv++;
9548 }
9549 /* else: "-something", no special meaning */
9550 }
9551 new_cmd = *argv;
9552 reset_traps:
9553 argv++;
9554 goto process_sig_list;
9555}
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009556#endif
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009557
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009558#if ENABLE_HUSH_JOB
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009559static struct pipe *parse_jobspec(const char *str)
9560{
9561 struct pipe *pi;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009562 unsigned jobnum;
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009563
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009564 if (sscanf(str, "%%%u", &jobnum) != 1) {
9565 if (str[0] != '%'
9566 || (str[1] != '%' && str[1] != '+' && str[1] != '\0')
9567 ) {
9568 bb_error_msg("bad argument '%s'", str);
9569 return NULL;
9570 }
9571 /* It is "%%", "%+" or "%" - current job */
9572 jobnum = G.last_jobid;
9573 if (jobnum == 0) {
9574 bb_error_msg("no current job");
9575 return NULL;
9576 }
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009577 }
9578 for (pi = G.job_list; pi; pi = pi->next) {
9579 if (pi->jobid == jobnum) {
9580 return pi;
9581 }
9582 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009583 bb_error_msg("%u: no such job", jobnum);
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009584 return NULL;
9585}
9586
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009587static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM)
9588{
9589 struct pipe *job;
9590 const char *status_string;
9591
9592 checkjobs(NULL, 0 /*(no pid to wait for)*/);
9593 for (job = G.job_list; job; job = job->next) {
9594 if (job->alive_cmds == job->stopped_cmds)
9595 status_string = "Stopped";
9596 else
9597 status_string = "Running";
9598
9599 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
9600 }
9601 return EXIT_SUCCESS;
9602}
9603
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009604/* built-in 'fg' and 'bg' handler */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009605static int FAST_FUNC builtin_fg_bg(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009606{
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009607 int i;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009608 struct pipe *pi;
9609
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009610 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009611 return EXIT_FAILURE;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009612
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009613 /* If they gave us no args, assume they want the last backgrounded task */
9614 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00009615 for (pi = G.job_list; pi; pi = pi->next) {
9616 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009617 goto found;
9618 }
9619 }
9620 bb_error_msg("%s: no current job", argv[0]);
9621 return EXIT_FAILURE;
9622 }
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009623
9624 pi = parse_jobspec(argv[1]);
9625 if (!pi)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009626 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009627 found:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00009628 /* TODO: bash prints a string representation
9629 * of job being foregrounded (like "sleep 1 | cat") */
Mike Frysinger38478a62009-05-20 04:48:06 -04009630 if (argv[0][0] == 'f' && G_saved_tty_pgrp) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009631 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009632 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009633 }
9634
9635 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00009636 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
9637 for (i = 0; i < pi->num_cmds; i++) {
9638 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009639 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00009640 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009641
9642 i = kill(- pi->pgrp, SIGCONT);
9643 if (i < 0) {
9644 if (errno == ESRCH) {
9645 delete_finished_bg_job(pi);
9646 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009647 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00009648 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009649 }
9650
Denis Vlasenko34d4d892009-04-04 20:24:37 +00009651 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009652 remove_bg_job(pi);
9653 return checkjobs_and_fg_shell(pi);
9654 }
9655 return EXIT_SUCCESS;
9656}
9657#endif
9658
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009659#if ENABLE_HUSH_KILL
9660static int FAST_FUNC builtin_kill(char **argv)
9661{
9662 int ret = 0;
9663
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009664# if ENABLE_HUSH_JOB
9665 if (argv[1] && strcmp(argv[1], "-l") != 0) {
9666 int i = 1;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009667
9668 do {
9669 struct pipe *pi;
9670 char *dst;
9671 int j, n;
9672
9673 if (argv[i][0] != '%')
9674 continue;
9675 /*
9676 * "kill %N" - job kill
9677 * Converting to pgrp / pid kill
9678 */
9679 pi = parse_jobspec(argv[i]);
9680 if (!pi) {
9681 /* Eat bad jobspec */
9682 j = i;
9683 do {
9684 j++;
9685 argv[j - 1] = argv[j];
9686 } while (argv[j]);
9687 ret = 1;
9688 i--;
9689 continue;
9690 }
9691 /*
9692 * In jobs started under job control, we signal
9693 * entire process group by kill -PGRP_ID.
9694 * This happens, f.e., in interactive shell.
9695 *
9696 * Otherwise, we signal each child via
9697 * kill PID1 PID2 PID3.
9698 * Testcases:
9699 * sh -c 'sleep 1|sleep 1 & kill %1'
9700 * sh -c 'true|sleep 2 & sleep 1; kill %1'
9701 * sh -c 'true|sleep 1 & sleep 2; kill %1'
9702 */
Denys Vlasenko5362cc42017-01-09 05:57:13 +01009703 n = G_interactive_fd ? 1 : pi->num_cmds;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009704 dst = alloca(n * sizeof(int)*4);
9705 argv[i] = dst;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009706 if (G_interactive_fd)
9707 dst += sprintf(dst, " -%u", (int)pi->pgrp);
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009708 else for (j = 0; j < n; j++) {
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009709 struct command *cmd = &pi->cmds[j];
9710 /* Skip exited members of the job */
9711 if (cmd->pid == 0)
9712 continue;
9713 /*
9714 * kill_main has matching code to expect
9715 * leading space. Needed to not confuse
9716 * negative pids with "kill -SIGNAL_NO" syntax
9717 */
9718 dst += sprintf(dst, " %u", (int)cmd->pid);
9719 }
9720 *dst = '\0';
9721 } while (argv[++i]);
9722 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009723# endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009724
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009725 if (argv[1] || ret == 0) {
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009726 ret = run_applet_main(argv, kill_main);
9727 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009728 /* else: ret = 1, "kill %bad_jobspec" case */
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009729 return ret;
9730}
9731#endif
9732
9733#if ENABLE_HUSH_WAIT
Mike Frysinger56bdea12009-03-28 20:01:58 +00009734/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009735#if !ENABLE_HUSH_JOB
9736# define wait_for_child_or_signal(pipe,pid) wait_for_child_or_signal(pid)
9737#endif
9738static int wait_for_child_or_signal(struct pipe *waitfor_pipe, pid_t waitfor_pid)
Denys Vlasenko7e675362016-10-28 21:57:31 +02009739{
9740 int ret = 0;
9741 for (;;) {
9742 int sig;
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009743 sigset_t oldset;
Denys Vlasenko7e675362016-10-28 21:57:31 +02009744
Denys Vlasenko830ea352016-11-08 04:59:11 +01009745 if (!sigisemptyset(&G.pending_set))
9746 goto check_sig;
9747
Denys Vlasenko7e675362016-10-28 21:57:31 +02009748 /* waitpid is not interruptible by SA_RESTARTed
9749 * signals which we use. Thus, this ugly dance:
9750 */
9751
9752 /* Make sure possible SIGCHLD is stored in kernel's
9753 * pending signal mask before we call waitpid.
9754 * Or else we may race with SIGCHLD, lose it,
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009755 * and get stuck in sigsuspend...
Denys Vlasenko7e675362016-10-28 21:57:31 +02009756 */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009757 sigfillset(&oldset); /* block all signals, remember old set */
9758 sigprocmask(SIG_SETMASK, &oldset, &oldset);
Denys Vlasenko7e675362016-10-28 21:57:31 +02009759
9760 if (!sigisemptyset(&G.pending_set)) {
9761 /* Crap! we raced with some signal! */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009762 goto restore;
9763 }
9764
9765 /*errno = 0; - checkjobs does this */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009766/* Can't pass waitfor_pipe into checkjobs(): it won't be interruptible */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009767 ret = checkjobs(NULL, waitfor_pid); /* waitpid(WNOHANG) inside */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009768 debug_printf_exec("checkjobs:%d\n", ret);
9769#if ENABLE_HUSH_JOB
9770 if (waitfor_pipe) {
9771 int rcode = job_exited_or_stopped(waitfor_pipe);
9772 debug_printf_exec("job_exited_or_stopped:%d\n", rcode);
9773 if (rcode >= 0) {
9774 ret = rcode;
9775 sigprocmask(SIG_SETMASK, &oldset, NULL);
9776 break;
9777 }
9778 }
9779#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02009780 /* if ECHILD, there are no children (ret is -1 or 0) */
9781 /* if ret == 0, no children changed state */
9782 /* if ret != 0, it's exitcode+1 of exited waitfor_pid child */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009783 if (errno == ECHILD || ret) {
9784 ret--;
9785 if (ret < 0) /* if ECHILD, may need to fix "ret" */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009786 ret = 0;
9787 sigprocmask(SIG_SETMASK, &oldset, NULL);
9788 break;
9789 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02009790 /* Wait for SIGCHLD or any other signal */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009791 /* It is vitally important for sigsuspend that SIGCHLD has non-DFL handler! */
9792 /* Note: sigsuspend invokes signal handler */
9793 sigsuspend(&oldset);
9794 restore:
9795 sigprocmask(SIG_SETMASK, &oldset, NULL);
Denys Vlasenko830ea352016-11-08 04:59:11 +01009796 check_sig:
Denys Vlasenko7e675362016-10-28 21:57:31 +02009797 /* So, did we get a signal? */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009798 sig = check_and_run_traps();
9799 if (sig /*&& sig != SIGCHLD - always true */) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02009800 ret = 128 + sig;
9801 break;
9802 }
9803 /* SIGCHLD, or no signal, or ignored one, such as SIGQUIT. Repeat */
9804 }
9805 return ret;
9806}
9807
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009808static int FAST_FUNC builtin_wait(char **argv)
Mike Frysinger56bdea12009-03-28 20:01:58 +00009809{
Denys Vlasenko7e675362016-10-28 21:57:31 +02009810 int ret;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009811 int status;
Mike Frysinger56bdea12009-03-28 20:01:58 +00009812
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009813 argv = skip_dash_dash(argv);
9814 if (argv[0] == NULL) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +00009815 /* Don't care about wait results */
9816 /* Note 1: must wait until there are no more children */
9817 /* Note 2: must be interruptible */
9818 /* Examples:
9819 * $ sleep 3 & sleep 6 & wait
9820 * [1] 30934 sleep 3
9821 * [2] 30935 sleep 6
9822 * [1] Done sleep 3
9823 * [2] Done sleep 6
9824 * $ sleep 3 & sleep 6 & wait
9825 * [1] 30936 sleep 3
9826 * [2] 30937 sleep 6
9827 * [1] Done sleep 3
9828 * ^C <-- after ~4 sec from keyboard
9829 * $
9830 */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009831 return wait_for_child_or_signal(NULL, 0 /*(no job and no pid to wait for)*/);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00009832 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00009833
Denys Vlasenko7e675362016-10-28 21:57:31 +02009834 do {
Denis Vlasenkod5762932009-03-31 11:22:57 +00009835 pid_t pid = bb_strtou(*argv, NULL, 10);
Denys Vlasenko7e675362016-10-28 21:57:31 +02009836 if (errno || pid <= 0) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009837#if ENABLE_HUSH_JOB
9838 if (argv[0][0] == '%') {
Denys Vlasenko02affb42016-11-08 00:59:29 +01009839 struct pipe *wait_pipe;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009840 ret = 127; /* bash compat for bad jobspecs */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009841 wait_pipe = parse_jobspec(*argv);
9842 if (wait_pipe) {
Denys Vlasenko02affb42016-11-08 00:59:29 +01009843 ret = job_exited_or_stopped(wait_pipe);
9844 if (ret < 0)
9845 ret = wait_for_child_or_signal(wait_pipe, 0);
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009846 }
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009847 /* else: parse_jobspec() already emitted error msg */
9848 continue;
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009849 }
9850#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00009851 /* mimic bash message */
9852 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009853 ret = EXIT_FAILURE;
9854 continue; /* bash checks all argv[] */
Denis Vlasenkod5762932009-03-31 11:22:57 +00009855 }
Denys Vlasenko02affb42016-11-08 00:59:29 +01009856
Denys Vlasenko7e675362016-10-28 21:57:31 +02009857 /* Do we have such child? */
9858 ret = waitpid(pid, &status, WNOHANG);
9859 if (ret < 0) {
9860 /* No */
9861 if (errno == ECHILD) {
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009862 if (G.last_bg_pid > 0 && pid == G.last_bg_pid) {
9863 /* "wait $!" but last bg task has already exited. Try:
9864 * (sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $?
9865 * In bash it prints exitcode 0, then 3.
Denys Vlasenko26ad94b2016-11-07 23:07:21 +01009866 * In dash, it is 127.
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009867 */
Denys Vlasenko26ad94b2016-11-07 23:07:21 +01009868 /* ret = G.last_bg_pid_exitstatus - FIXME */
9869 } else {
9870 /* Example: "wait 1". mimic bash message */
9871 bb_error_msg("wait: pid %d is not a child of this shell", (int)pid);
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009872 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02009873 } else {
9874 /* ??? */
9875 bb_perror_msg("wait %s", *argv);
9876 }
9877 ret = 127;
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009878 continue; /* bash checks all argv[] */
9879 }
9880 if (ret == 0) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02009881 /* Yes, and it still runs */
Denys Vlasenko02affb42016-11-08 00:59:29 +01009882 ret = wait_for_child_or_signal(NULL, pid);
Denys Vlasenko7e675362016-10-28 21:57:31 +02009883 } else {
9884 /* Yes, and it just exited */
Denys Vlasenko02affb42016-11-08 00:59:29 +01009885 process_wait_result(NULL, pid, status);
Denys Vlasenko85378cd2015-10-11 21:47:11 +02009886 ret = WEXITSTATUS(status);
Mike Frysinger56bdea12009-03-28 20:01:58 +00009887 if (WIFSIGNALED(status))
9888 ret = 128 + WTERMSIG(status);
Mike Frysinger56bdea12009-03-28 20:01:58 +00009889 }
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009890 } while (*++argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00009891
9892 return ret;
9893}
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009894#endif
Mike Frysinger56bdea12009-03-28 20:01:58 +00009895
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009896#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
9897static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
9898{
9899 if (argv[1]) {
9900 def = bb_strtou(argv[1], NULL, 10);
9901 if (errno || def < def_min || argv[2]) {
9902 bb_error_msg("%s: bad arguments", argv[0]);
9903 def = UINT_MAX;
9904 }
9905 }
9906 return def;
9907}
9908#endif
9909
Denis Vlasenkodadfb492008-07-29 10:16:05 +00009910#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009911static int FAST_FUNC builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00009912{
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009913 unsigned depth;
Denis Vlasenko87a86552008-07-29 19:43:10 +00009914 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00009915 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denys Vlasenko49117b42016-07-21 14:40:08 +02009916 /* if we came from builtin_continue(), need to undo "= 1" */
9917 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00009918 return EXIT_SUCCESS; /* bash compat */
9919 }
Denys Vlasenko49117b42016-07-21 14:40:08 +02009920 G.flag_break_continue++; /* BC_BREAK = 1, or BC_CONTINUE = 2 */
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009921
9922 G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
9923 if (depth == UINT_MAX)
9924 G.flag_break_continue = BC_BREAK;
9925 if (G.depth_of_loop < depth)
Denis Vlasenko87a86552008-07-29 19:43:10 +00009926 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009927
Denis Vlasenkobcb25532008-07-28 23:04:34 +00009928 return EXIT_SUCCESS;
9929}
9930
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009931static int FAST_FUNC builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00009932{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00009933 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
9934 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00009935}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00009936#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009937
9938#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009939static int FAST_FUNC builtin_return(char **argv)
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009940{
9941 int rc;
9942
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02009943 if (G_flag_return_in_progress != -1) {
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009944 bb_error_msg("%s: not in a function or sourced script", argv[0]);
9945 return EXIT_FAILURE; /* bash compat */
9946 }
9947
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02009948 G_flag_return_in_progress = 1;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009949
9950 /* bash:
9951 * out of range: wraps around at 256, does not error out
9952 * non-numeric param:
9953 * f() { false; return qwe; }; f; echo $?
9954 * bash: return: qwe: numeric argument required <== we do this
9955 * 255 <== we also do this
9956 */
9957 rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
9958 return rc;
9959}
9960#endif
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009961
9962#if ENABLE_HUSH_MEMLEAK
9963static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM)
9964{
9965 void *p;
9966 unsigned long l;
9967
9968# ifdef M_TRIM_THRESHOLD
9969 /* Optional. Reduces probability of false positives */
9970 malloc_trim(0);
9971# endif
9972 /* Crude attempt to find where "free memory" starts,
9973 * sans fragmentation. */
9974 p = malloc(240);
9975 l = (unsigned long)p;
9976 free(p);
9977 p = malloc(3400);
9978 if (l < (unsigned long)p) l = (unsigned long)p;
9979 free(p);
9980
9981
9982# if 0 /* debug */
9983 {
9984 struct mallinfo mi = mallinfo();
9985 printf("top alloc:0x%lx malloced:%d+%d=%d\n", l,
9986 mi.arena, mi.hblkhd, mi.arena + mi.hblkhd);
9987 }
9988# endif
9989
9990 if (!G.memleak_value)
9991 G.memleak_value = l;
9992
9993 l -= G.memleak_value;
9994 if ((long)l < 0)
9995 l = 0;
9996 l /= 1024;
9997 if (l > 127)
9998 l = 127;
9999
10000 /* Exitcode is "how many kilobytes we leaked since 1st call" */
10001 return l;
10002}
10003#endif