blob: 125463a56a0d4a295d9a7659f771b1a73c4646aa [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 Vlasenko44719692017-01-08 18:44:41 +0100271//config:
Denys Vlasenko6adf2aa2010-07-16 19:26:38 +0200272//config:config MSH
273//config: bool "msh (deprecated: aliased to hush)"
274//config: default n
275//config: select HUSH
276//config: help
277//config: msh is deprecated and will be removed, please migrate to hush.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200278
Denys Vlasenko20704f02011-03-23 17:59:27 +0100279//applet:IF_HUSH(APPLET(hush, BB_DIR_BIN, BB_SUID_DROP))
Denys Vlasenko205d48e2017-01-29 14:57:33 +0100280// APPLET_ODDNAME:name main location suid_type help
281//applet:IF_MSH( APPLET_ODDNAME(msh, hush, BB_DIR_BIN, BB_SUID_DROP, hush))
282//applet:IF_SH_IS_HUSH( APPLET_ODDNAME(sh, hush, BB_DIR_BIN, BB_SUID_DROP, hush))
Denys Vlasenko0b883582016-12-23 16:49:07 +0100283//applet:IF_BASH_IS_HUSH(APPLET_ODDNAME(bash, hush, BB_DIR_BIN, BB_SUID_DROP, hush))
Denys Vlasenko20704f02011-03-23 17:59:27 +0100284
285//kbuild:lib-$(CONFIG_HUSH) += hush.o match.o shell_common.o
Denys Vlasenko0b883582016-12-23 16:49:07 +0100286//kbuild:lib-$(CONFIG_SH_IS_HUSH) += hush.o match.o shell_common.o
287//kbuild:lib-$(CONFIG_BASH_IS_HUSH) += hush.o match.o shell_common.o
Denys Vlasenko20704f02011-03-23 17:59:27 +0100288//kbuild:lib-$(CONFIG_HUSH_RANDOM_SUPPORT) += random.o
289
Dan Fandrich89ca2f92010-11-28 01:54:39 +0100290/* -i (interactive) and -s (read stdin) are also accepted,
291 * but currently do nothing, therefore aren't shown in help.
292 * NOMMU-specific options are not meant to be used by users,
293 * therefore we don't show them either.
294 */
295//usage:#define hush_trivial_usage
Denys Vlasenkof58f7052011-05-12 02:10:33 +0200296//usage: "[-nxl] [-c 'SCRIPT' [ARG0 [ARGS]] / FILE [ARGS]]"
Denys Vlasenkob0b83432011-03-07 12:34:59 +0100297//usage:#define hush_full_usage "\n\n"
298//usage: "Unix shell interpreter"
299
Denys Vlasenko67047462016-12-22 15:21:58 +0100300#if !(defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) \
301 || defined(__APPLE__) \
302 )
303# include <malloc.h> /* for malloc_trim */
304#endif
305#include <glob.h>
306/* #include <dmalloc.h> */
307#if ENABLE_HUSH_CASE
308# include <fnmatch.h>
309#endif
310#include <sys/utsname.h> /* for setting $HOSTNAME */
311
312#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
313#include "unicode.h"
314#include "shell_common.h"
315#include "math.h"
316#include "match.h"
317#if ENABLE_HUSH_RANDOM_SUPPORT
318# include "random.h"
319#else
320# define CLEAR_RANDOM_T(rnd) ((void)0)
321#endif
322#ifndef F_DUPFD_CLOEXEC
323# define F_DUPFD_CLOEXEC F_DUPFD
324#endif
325#ifndef PIPE_BUF
326# define PIPE_BUF 4096 /* amount of buffering in a pipe */
327#endif
328
Denis Vlasenko1943aec2009-04-09 14:15:57 +0000329
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100330/* So far, all bash compat is controlled by one config option */
331/* Separate defines document which part of code implements what */
332#define BASH_PATTERN_SUBST ENABLE_HUSH_BASH_COMPAT
333#define BASH_SUBSTR ENABLE_HUSH_BASH_COMPAT
334#define BASH_TEST2 ENABLE_HUSH_BASH_COMPAT
335#define BASH_SOURCE ENABLE_HUSH_BASH_COMPAT
336#define BASH_HOSTNAME_VAR ENABLE_HUSH_BASH_COMPAT
337
338
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200339/* Build knobs */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000340#define LEAK_HUNTING 0
341#define BUILD_AS_NOMMU 0
342/* Enable/disable sanity checks. Ok to enable in production,
343 * only adds a bit of bloat. Set to >1 to get non-production level verbosity.
344 * Keeping 1 for now even in released versions.
345 */
346#define HUSH_DEBUG 1
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200347/* Slightly bigger (+200 bytes), but faster hush.
348 * So far it only enables a trick with counting SIGCHLDs and forks,
349 * which allows us to do fewer waitpid's.
350 * (we can detect a case where neither forks were done nor SIGCHLDs happened
351 * and therefore waitpid will return the same result as last time)
352 */
353#define ENABLE_HUSH_FAST 0
Denys Vlasenko9297dbc2010-07-05 21:37:12 +0200354/* TODO: implement simplified code for users which do not need ${var%...} ops
355 * So far ${var%...} ops are always enabled:
356 */
357#define ENABLE_HUSH_DOLLAR_OPS 1
Denis Vlasenko1943aec2009-04-09 14:15:57 +0000358
359
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000360#if BUILD_AS_NOMMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000361# undef BB_MMU
362# undef USE_FOR_NOMMU
363# undef USE_FOR_MMU
364# define BB_MMU 0
365# define USE_FOR_NOMMU(...) __VA_ARGS__
366# define USE_FOR_MMU(...)
367#endif
368
Denys Vlasenko1fcbff22010-06-26 02:40:08 +0200369#include "NUM_APPLETS.h"
Denys Vlasenko14974842010-03-23 01:08:26 +0100370#if NUM_APPLETS == 1
Denis Vlasenko61befda2008-11-25 01:36:03 +0000371/* STANDALONE does not make sense, and won't compile */
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000372# undef CONFIG_FEATURE_SH_STANDALONE
373# undef ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000374# undef IF_FEATURE_SH_STANDALONE
Denys Vlasenko14974842010-03-23 01:08:26 +0100375# undef IF_NOT_FEATURE_SH_STANDALONE
376# define ENABLE_FEATURE_SH_STANDALONE 0
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000377# define IF_FEATURE_SH_STANDALONE(...)
378# define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__
Denis Vlasenko61befda2008-11-25 01:36:03 +0000379#endif
380
Denis Vlasenko05743d72008-02-10 12:10:08 +0000381#if !ENABLE_HUSH_INTERACTIVE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000382# undef ENABLE_FEATURE_EDITING
383# define ENABLE_FEATURE_EDITING 0
384# undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
385# define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denys Vlasenko8cab6672012-04-20 14:48:00 +0200386# undef ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
387# define ENABLE_FEATURE_EDITING_SAVE_ON_EXIT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000388#endif
389
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000390/* Do we support ANY keywords? */
391#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000392# define HAS_KEYWORDS 1
393# define IF_HAS_KEYWORDS(...) __VA_ARGS__
394# define IF_HAS_NO_KEYWORDS(...)
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000395#else
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000396# define HAS_KEYWORDS 0
397# define IF_HAS_KEYWORDS(...)
398# define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000399#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000400
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000401/* If you comment out one of these below, it will be #defined later
402 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000403#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000404/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000405#define debug_printf_parse(...) do {} while (0)
406#define debug_print_tree(a, b) do {} while (0)
407#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000408#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000409#define debug_printf_jobs(...) do {} while (0)
410#define debug_printf_expand(...) do {} while (0)
Denys Vlasenko1e811b12010-05-22 03:12:29 +0200411#define debug_printf_varexp(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000412#define debug_printf_glob(...) do {} while (0)
413#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000414#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000415#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000416
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000417#define ERR_PTR ((void*)(long)1)
418
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +0100419#define JOB_STATUS_FORMAT "[%u] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000420
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200421#define _SPECIAL_VARS_STR "_*@$!?#"
422#define SPECIAL_VARS_STR ("_*@$!?#" + 1)
423#define NUMERIC_SPECVARS_STR ("_*@$!?#" + 3)
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100424#if BASH_PATTERN_SUBST
Denys Vlasenko36f774a2010-09-05 14:45:38 +0200425/* Support / and // replace ops */
426/* Note that // is stored as \ in "encoded" string representation */
427# define VAR_ENCODED_SUBST_OPS "\\/%#:-=+?"
428# define VAR_SUBST_OPS ("\\/%#:-=+?" + 1)
429# define MINUS_PLUS_EQUAL_QUESTION ("\\/%#:-=+?" + 5)
430#else
431# define VAR_ENCODED_SUBST_OPS "%#:-=+?"
432# define VAR_SUBST_OPS "%#:-=+?"
433# define MINUS_PLUS_EQUAL_QUESTION ("%#:-=+?" + 3)
434#endif
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200435
436#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000437
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200438struct variable;
439
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000440static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
441
442/* This supports saving pointers malloced in vfork child,
Denis Vlasenkoc376db32009-04-15 21:49:48 +0000443 * to be freed in the parent.
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000444 */
445#if !BB_MMU
446typedef struct nommu_save_t {
447 char **new_env;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200448 struct variable *old_vars;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000449 char **argv;
Denis Vlasenko27014ed2009-04-15 21:48:23 +0000450 char **argv_from_re_execing;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000451} nommu_save_t;
452#endif
453
Denys Vlasenko9b782552010-09-08 13:33:26 +0200454enum {
Eric Andersen25f27032001-04-26 23:22:31 +0000455 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000456#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000457 RES_IF ,
458 RES_THEN ,
459 RES_ELIF ,
460 RES_ELSE ,
461 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000462#endif
463#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000464 RES_FOR ,
465 RES_WHILE ,
466 RES_UNTIL ,
467 RES_DO ,
468 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000469#endif
470#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000471 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000472#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000473#if ENABLE_HUSH_CASE
474 RES_CASE ,
Denys Vlasenkoe9bda902009-05-23 16:50:07 +0200475 /* three pseudo-keywords support contrived "case" syntax: */
476 RES_CASE_IN, /* "case ... IN", turns into RES_MATCH when IN is observed */
477 RES_MATCH , /* "word)" */
478 RES_CASE_BODY, /* "this command is inside CASE" */
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000479 RES_ESAC ,
480#endif
481 RES_XXXX ,
482 RES_SNTX
Denys Vlasenko9b782552010-09-08 13:33:26 +0200483};
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000484
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000485typedef struct o_string {
486 char *data;
487 int length; /* position where data is appended */
488 int maxlen;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +0200489 int o_expflags;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000490 /* At least some part of the string was inside '' or "",
491 * possibly empty one: word"", wo''rd etc. */
Denys Vlasenko38292b62010-09-05 14:49:40 +0200492 smallint has_quoted_part;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000493 smallint has_empty_slot;
494 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
495} o_string;
496enum {
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200497 EXP_FLAG_SINGLEWORD = 0x80, /* must be 0x80 */
498 EXP_FLAG_GLOB = 0x2,
499 /* Protect newly added chars against globbing
500 * by prepending \ to *, ?, [, \ */
501 EXP_FLAG_ESC_GLOB_CHARS = 0x1,
502};
503enum {
504 MAYBE_ASSIGNMENT = 0,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000505 DEFINITELY_ASSIGNMENT = 1,
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200506 NOT_ASSIGNMENT = 2,
Maninder Singh97c64912015-05-25 13:46:36 +0200507 /* Not an assignment, but next word may be: "if v=xyz cmd;" */
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200508 WORD_IS_KEYWORD = 3,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000509};
510/* Used for initialization: o_string foo = NULL_O_STRING; */
511#define NULL_O_STRING { NULL }
512
Denys Vlasenko29f9b722011-05-14 11:27:36 +0200513#ifndef debug_printf_parse
514static const char *const assignment_flag[] = {
515 "MAYBE_ASSIGNMENT",
516 "DEFINITELY_ASSIGNMENT",
517 "NOT_ASSIGNMENT",
518 "WORD_IS_KEYWORD",
519};
520#endif
521
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000522typedef struct in_str {
523 const char *p;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000524#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000525 smallint promptmode; /* 0: PS1, 1: PS2 */
526#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +0200527 int peek_buf[2];
Denys Vlasenkocecbc982011-03-30 18:54:52 +0200528 int last_char;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000529 FILE *file;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000530} in_str;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000531
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200532/* The descrip member of this structure is only used to make
533 * debugging output pretty */
534static const struct {
535 int mode;
536 signed char default_fd;
537 char descrip[3];
538} redir_table[] = {
539 { O_RDONLY, 0, "<" },
540 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
541 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
542 { O_CREAT|O_RDWR, 1, "<>" },
543 { O_RDONLY, 0, "<<" },
544/* Should not be needed. Bogus default_fd helps in debugging */
545/* { O_RDONLY, 77, "<<" }, */
546};
547
Eric Andersen25f27032001-04-26 23:22:31 +0000548struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000549 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000550 char *rd_filename; /* filename */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000551 int rd_fd; /* fd to redirect */
552 /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
553 int rd_dup;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000554 smallint rd_type; /* (enum redir_type) */
555 /* note: for heredocs, rd_filename contains heredoc delimiter,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000556 * and subsequently heredoc itself; and rd_dup is a bitmask:
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200557 * bit 0: do we need to trim leading tabs?
558 * bit 1: is heredoc quoted (<<'delim' syntax) ?
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000559 */
Eric Andersen25f27032001-04-26 23:22:31 +0000560};
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000561typedef enum redir_type {
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200562 REDIRECT_INPUT = 0,
563 REDIRECT_OVERWRITE = 1,
564 REDIRECT_APPEND = 2,
565 REDIRECT_IO = 3,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000566 REDIRECT_HEREDOC = 4,
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200567 REDIRECT_HEREDOC2 = 5, /* REDIRECT_HEREDOC after heredoc is loaded */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000568
569 REDIRFD_CLOSE = -3,
570 REDIRFD_SYNTAX_ERR = -2,
Denis Vlasenko835fcfd2009-04-10 13:51:56 +0000571 REDIRFD_TO_FILE = -1,
572 /* otherwise, rd_fd is redirected to rd_dup */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000573
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000574 HEREDOC_SKIPTABS = 1,
575 HEREDOC_QUOTED = 2,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000576} redir_type;
577
Eric Andersen25f27032001-04-26 23:22:31 +0000578
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000579struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000580 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000581 int assignment_cnt; /* how many argv[i] are assignments? */
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200582 smallint cmd_type; /* CMD_xxx */
583#define CMD_NORMAL 0
584#define CMD_SUBSHELL 1
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100585#if BASH_TEST2
Denys Vlasenkod383b492010-09-06 10:22:13 +0200586/* used for "[[ EXPR ]]" */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200587# define CMD_SINGLEWORD_NOGLOB 2
Denis Vlasenkoed055212009-04-11 10:37:10 +0000588#endif
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200589#if ENABLE_HUSH_FUNCTIONS
590# define CMD_FUNCDEF 3
591#endif
592
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100593 smalluint cmd_exitcode;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200594 /* if non-NULL, this "command" is { list }, ( list ), or a compound statement */
595 struct pipe *group;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000596#if !BB_MMU
597 char *group_as_string;
598#endif
Denis Vlasenkoed055212009-04-11 10:37:10 +0000599#if ENABLE_HUSH_FUNCTIONS
600 struct function *child_func;
601/* This field is used to prevent a bug here:
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200602 * while...do f1() {a;}; f1; f1() {b;}; f1; done
Denis Vlasenkoed055212009-04-11 10:37:10 +0000603 * When we execute "f1() {a;}" cmd, we create new function and clear
604 * cmd->group, cmd->group_as_string, cmd->argv[0].
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200605 * When we execute "f1() {b;}", we notice that f1 exists,
606 * and that its "parent cmd" struct is still "alive",
Denis Vlasenkoed055212009-04-11 10:37:10 +0000607 * we put those fields back into cmd->xxx
608 * (struct function has ->parent_cmd ptr to facilitate that).
609 * When we loop back, we can execute "f1() {a;}" again and set f1 correctly.
610 * Without this trick, loop would execute a;b;b;b;...
611 * instead of correct sequence a;b;a;b;...
612 * When command is freed, it severs the link
613 * (sets ->child_func->parent_cmd to NULL).
614 */
615#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000616 char **argv; /* command name and arguments */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000617/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
618 * and on execution these are substituted with their values.
619 * Substitution can make _several_ words out of one argv[n]!
620 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000621 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000622 */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000623 struct redir_struct *redirects; /* I/O redirections */
624};
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000625/* Is there anything in this command at all? */
626#define IS_NULL_CMD(cmd) \
627 (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects)
628
Eric Andersen25f27032001-04-26 23:22:31 +0000629struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000630 struct pipe *next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000631 int num_cmds; /* total number of commands in pipe */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000632 int alive_cmds; /* number of commands running (not exited) */
633 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000634#if ENABLE_HUSH_JOB
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +0100635 unsigned jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000636 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000637 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000638#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000639 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000640 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000641 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
642 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000643};
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000644typedef enum pipe_style {
Denys Vlasenko00a06b92016-11-08 20:35:53 +0100645 PIPE_SEQ = 0,
646 PIPE_AND = 1,
647 PIPE_OR = 2,
648 PIPE_BG = 3,
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000649} pipe_style;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000650/* Is there anything in this pipe at all? */
651#define IS_NULL_PIPE(pi) \
652 ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE))
Eric Andersen25f27032001-04-26 23:22:31 +0000653
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000654/* This holds pointers to the various results of parsing */
655struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000656 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000657 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000658 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000659 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000660 /* last command in pipe (being constructed right now) */
661 struct command *command;
662 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000663 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000664#if !BB_MMU
665 o_string as_string;
666#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000667#if HAS_KEYWORDS
668 smallint ctx_res_w;
669 smallint ctx_inverted; /* "! cmd | cmd" */
670#if ENABLE_HUSH_CASE
671 smallint ctx_dsemicolon; /* ";;" seen */
672#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000673 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
674 int old_flag;
675 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000676 * example: "if pipe1; pipe2; then pipe3; fi"
677 * when we see "if" or "then", we malloc and copy current context,
678 * and make ->stack point to it. then we parse pipeN.
679 * when closing "then" / fi" / whatever is found,
680 * we move list_head into ->stack->command->group,
681 * copy ->stack into current context, and delete ->stack.
682 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000683 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000684 struct parse_context *stack;
685#endif
686};
687
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000688/* On program start, environ points to initial environment.
689 * putenv adds new pointers into it, unsetenv removes them.
690 * Neither of these (de)allocates the strings.
691 * setenv allocates new strings in malloc space and does putenv,
692 * and thus setenv is unusable (leaky) for shell's purposes */
693#define setenv(...) setenv_is_leaky_dont_use()
694struct variable {
695 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000696 char *varstr; /* points to "name=" portion */
Denys Vlasenko295fef82009-06-03 12:47:26 +0200697#if ENABLE_HUSH_LOCAL
698 unsigned func_nest_level;
699#endif
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000700 int max_len; /* if > 0, name is part of initial env; else name is malloced */
701 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000702 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000703};
704
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000705enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000706 BC_BREAK = 1,
707 BC_CONTINUE = 2,
708};
709
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000710#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000711struct function {
712 struct function *next;
713 char *name;
Denis Vlasenkoed055212009-04-11 10:37:10 +0000714 struct command *parent_cmd;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000715 struct pipe *body;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200716# if !BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000717 char *body_as_string;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200718# endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000719};
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000720#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000721
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000722
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100723/* set -/+o OPT support. (TODO: make it optional)
724 * bash supports the following opts:
725 * allexport off
726 * braceexpand on
727 * emacs on
728 * errexit off
729 * errtrace off
730 * functrace off
731 * hashall on
732 * histexpand off
733 * history on
734 * ignoreeof off
735 * interactive-comments on
736 * keyword off
737 * monitor on
738 * noclobber off
739 * noexec off
740 * noglob off
741 * nolog off
742 * notify off
743 * nounset off
744 * onecmd off
745 * physical off
746 * pipefail off
747 * posix off
748 * privileged off
749 * verbose off
750 * vi off
751 * xtrace off
752 */
Dan Fandrich85c62472010-11-20 13:05:17 -0800753static const char o_opt_strings[] ALIGN1 =
754 "pipefail\0"
755 "noexec\0"
756#if ENABLE_HUSH_MODE_X
757 "xtrace\0"
758#endif
759 ;
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100760enum {
761 OPT_O_PIPEFAIL,
Dan Fandrich85c62472010-11-20 13:05:17 -0800762 OPT_O_NOEXEC,
763#if ENABLE_HUSH_MODE_X
764 OPT_O_XTRACE,
765#endif
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100766 NUM_OPT_O
767};
768
769
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +0200770struct FILE_list {
771 struct FILE_list *next;
772 FILE *fp;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +0200773 int fd;
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +0200774};
775
776
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000777/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000778/* Sorted roughly by size (smaller offsets == smaller code) */
779struct globals {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000780 /* interactive_fd != 0 means we are an interactive shell.
781 * If we are, then saved_tty_pgrp can also be != 0, meaning
782 * that controlling tty is available. With saved_tty_pgrp == 0,
783 * job control still works, but terminal signals
784 * (^C, ^Z, ^Y, ^\) won't work at all, and background
785 * process groups can only be created with "cmd &".
786 * With saved_tty_pgrp != 0, hush will use tcsetpgrp()
787 * to give tty to the foreground process group,
788 * and will take it back when the group is stopped (^Z)
789 * or killed (^C).
790 */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000791#if ENABLE_HUSH_INTERACTIVE
792 /* 'interactive_fd' is a fd# open to ctty, if we have one
793 * _AND_ if we decided to act interactively */
794 int interactive_fd;
795 const char *PS1;
796 const char *PS2;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000797# define G_interactive_fd (G.interactive_fd)
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000798#else
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000799# define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000800#endif
801#if ENABLE_FEATURE_EDITING
802 line_input_t *line_input_state;
803#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000804 pid_t root_pid;
Denys Vlasenkodea47882009-10-09 15:40:49 +0200805 pid_t root_ppid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000806 pid_t last_bg_pid;
Denys Vlasenko20b3d142009-10-09 20:59:39 +0200807#if ENABLE_HUSH_RANDOM_SUPPORT
808 random_t random_gen;
809#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000810#if ENABLE_HUSH_JOB
811 int run_list_level;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +0100812 unsigned last_jobid;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000813 pid_t saved_tty_pgrp;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000814 struct pipe *job_list;
Mike Frysinger38478a62009-05-20 04:48:06 -0400815# define G_saved_tty_pgrp (G.saved_tty_pgrp)
816#else
817# define G_saved_tty_pgrp 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000818#endif
Denys Vlasenko26777aa2010-11-22 23:49:10 +0100819 char o_opt[NUM_OPT_O];
Denys Vlasenko57542eb2010-11-28 03:59:30 +0100820#if ENABLE_HUSH_MODE_X
821# define G_x_mode (G.o_opt[OPT_O_XTRACE])
822#else
823# define G_x_mode 0
824#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000825 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000826#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000827 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000828#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000829#if ENABLE_HUSH_FUNCTIONS
830 /* 0: outside of a function (or sourced file)
831 * -1: inside of a function, ok to use return builtin
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000832 * 1: return is invoked, skip all till end of func
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000833 */
834 smallint flag_return_in_progress;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +0200835# define G_flag_return_in_progress (G.flag_return_in_progress)
836#else
837# define G_flag_return_in_progress 0
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000838#endif
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000839 smallint exiting; /* used to prevent EXIT trap recursion */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000840 /* These four support $?, $#, and $1 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000841 smalluint last_exitcode;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +0100842#if ENABLE_HUSH_SET
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000843 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000844 smalluint global_args_malloced;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +0100845# define G_global_args_malloced (G.global_args_malloced)
846#else
847# define G_global_args_malloced 0
848#endif
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000849 /* how many non-NULL argv's we have. NB: $# + 1 */
850 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000851 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000852#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000853 char *argv0_for_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000854#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000855#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000856 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000857 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000858#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000859 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000860 const char *cwd;
Denys Vlasenko52e460b2010-09-16 16:12:00 +0200861 struct variable *top_var;
Denys Vlasenko29082232010-07-16 13:52:32 +0200862 char **expanded_assignments;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000863#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000864 struct function *top_func;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200865# if ENABLE_HUSH_LOCAL
866 struct variable **shadowed_vars_pp;
867 unsigned func_nest_level;
868# endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000869#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000870 /* Signal and trap handling */
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200871#if ENABLE_HUSH_FAST
872 unsigned count_SIGCHLD;
873 unsigned handled_SIGCHLD;
Denys Vlasenkoe2df5f42009-05-26 14:34:10 +0200874 smallint we_have_children;
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200875#endif
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +0200876 struct FILE_list *FILE_list;
Denys Vlasenko10c01312011-05-11 11:49:21 +0200877 /* Which signals have non-DFL handler (even with no traps set)?
878 * Set at the start to:
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200879 * (SIGQUIT + maybe SPECIAL_INTERACTIVE_SIGS + maybe SPECIAL_JOBSTOP_SIGS)
Denys Vlasenko10c01312011-05-11 11:49:21 +0200880 * SPECIAL_INTERACTIVE_SIGS are cleared after fork.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200881 * The rest is cleared right before execv syscalls.
Denys Vlasenko10c01312011-05-11 11:49:21 +0200882 * Other than these two times, never modified.
883 */
884 unsigned special_sig_mask;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200885#if ENABLE_HUSH_JOB
886 unsigned fatal_sig_mask;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +0100887# define G_fatal_sig_mask (G.fatal_sig_mask)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200888#else
Denys Vlasenko75e77de2011-05-12 13:12:47 +0200889# define G_fatal_sig_mask 0
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200890#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100891#if ENABLE_HUSH_TRAP
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000892 char **traps; /* char *traps[NSIG] */
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100893# define G_traps G.traps
894#else
895# define G_traps ((char**)NULL)
896#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200897 sigset_t pending_set;
Denys Vlasenko44719692017-01-08 18:44:41 +0100898#if ENABLE_HUSH_MEMLEAK
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000899 unsigned long memleak_value;
Denys Vlasenko44719692017-01-08 18:44:41 +0100900#endif
901#if HUSH_DEBUG
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000902 int debug_indent;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000903#endif
Denys Vlasenko0806e402011-05-12 23:06:20 +0200904 struct sigaction sa;
Denys Vlasenko0448c552016-09-29 20:25:44 +0200905#if ENABLE_FEATURE_EDITING
906 char user_input_buf[CONFIG_FEATURE_EDITING_MAX_LEN];
907#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000908};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000909#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000910/* Not #defining name to G.name - this quickly gets unwieldy
911 * (too many defines). Also, I actually prefer to see when a variable
912 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000913#define INIT_G() do { \
914 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denys Vlasenko0806e402011-05-12 23:06:20 +0200915 /* memset(&G.sa, 0, sizeof(G.sa)); */ \
916 sigfillset(&G.sa.sa_mask); \
917 G.sa.sa_flags = SA_RESTART; \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000918} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000919
920
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000921/* Function prototypes for builtins */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200922static int builtin_cd(char **argv) FAST_FUNC;
Denys Vlasenko1cc68042017-01-09 17:10:04 +0100923#if ENABLE_HUSH_ECHO
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200924static int builtin_echo(char **argv) FAST_FUNC;
Denys Vlasenko1cc68042017-01-09 17:10:04 +0100925#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200926static int builtin_eval(char **argv) FAST_FUNC;
927static int builtin_exec(char **argv) FAST_FUNC;
928static int builtin_exit(char **argv) FAST_FUNC;
Denys Vlasenko6ec76d82017-01-08 18:40:41 +0100929#if ENABLE_HUSH_EXPORT
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200930static int builtin_export(char **argv) FAST_FUNC;
Denys Vlasenko6ec76d82017-01-08 18:40:41 +0100931#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000932#if ENABLE_HUSH_JOB
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200933static int builtin_fg_bg(char **argv) FAST_FUNC;
934static int builtin_jobs(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000935#endif
936#if ENABLE_HUSH_HELP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200937static int builtin_help(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000938#endif
Denys Vlasenkoff463a82013-05-12 02:45:23 +0200939#if MAX_HISTORY && ENABLE_FEATURE_EDITING
Flemming Madsend96ffda2013-04-07 18:47:24 +0200940static int builtin_history(char **argv) FAST_FUNC;
941#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +0200942#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200943static int builtin_local(char **argv) FAST_FUNC;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200944#endif
Denys Vlasenko44719692017-01-08 18:44:41 +0100945#if ENABLE_HUSH_MEMLEAK
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200946static int builtin_memleak(char **argv) FAST_FUNC;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000947#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +0100948#if ENABLE_HUSH_PRINTF
Mike Frysinger4ebc76c2009-10-15 03:32:39 -0400949static int builtin_printf(char **argv) FAST_FUNC;
950#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200951static int builtin_pwd(char **argv) FAST_FUNC;
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100952#if ENABLE_HUSH_READ
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200953static int builtin_read(char **argv) FAST_FUNC;
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100954#endif
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100955#if ENABLE_HUSH_SET
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200956static int builtin_set(char **argv) FAST_FUNC;
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100957#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200958static int builtin_shift(char **argv) FAST_FUNC;
959static int builtin_source(char **argv) FAST_FUNC;
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100960#if ENABLE_HUSH_TEST || BASH_TEST2
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200961static int builtin_test(char **argv) FAST_FUNC;
Denys Vlasenko265062d2017-01-10 15:13:30 +0100962#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100963#if ENABLE_HUSH_TRAP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200964static int builtin_trap(char **argv) FAST_FUNC;
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100965#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +0100966#if ENABLE_HUSH_TYPE
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200967static int builtin_type(char **argv) FAST_FUNC;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +0100968#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200969static int builtin_true(char **argv) FAST_FUNC;
Denys Vlasenkod5933b12017-01-08 18:31:39 +0100970#if ENABLE_HUSH_UMASK
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200971static int builtin_umask(char **argv) FAST_FUNC;
Denys Vlasenkod5933b12017-01-08 18:31:39 +0100972#endif
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100973#if ENABLE_HUSH_UNSET
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200974static int builtin_unset(char **argv) FAST_FUNC;
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100975#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +0100976#if ENABLE_HUSH_KILL
977static int builtin_kill(char **argv) FAST_FUNC;
978#endif
979#if ENABLE_HUSH_WAIT
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200980static int builtin_wait(char **argv) FAST_FUNC;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +0100981#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000982#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200983static int builtin_break(char **argv) FAST_FUNC;
984static int builtin_continue(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000985#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000986#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200987static int builtin_return(char **argv) FAST_FUNC;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000988#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000989
990/* Table of built-in functions. They can be forked or not, depending on
991 * context: within pipes, they fork. As simple commands, they do not.
992 * When used in non-forking context, they can change global variables
993 * in the parent shell process. If forked, of course they cannot.
994 * For example, 'unset foo | whatever' will parse and run, but foo will
995 * still be set at the end. */
996struct built_in_command {
Denys Vlasenko17323a62010-01-28 01:57:05 +0100997 const char *b_cmd;
998 int (*b_function)(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000999#if ENABLE_HUSH_HELP
Denys Vlasenko17323a62010-01-28 01:57:05 +01001000 const char *b_descr;
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001001# define BLTIN(cmd, func, help) { cmd, func, help }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001002#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001003# define BLTIN(cmd, func, help) { cmd, func }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001004#endif
1005};
1006
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001007static const struct built_in_command bltins1[] = {
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001008 BLTIN("." , builtin_source , "Run commands in file"),
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001009 BLTIN(":" , builtin_true , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001010#if ENABLE_HUSH_JOB
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001011 BLTIN("bg" , builtin_fg_bg , "Resume job in background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001012#endif
1013#if ENABLE_HUSH_LOOPS
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001014 BLTIN("break" , builtin_break , "Exit loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001015#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001016 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001017#if ENABLE_HUSH_LOOPS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001018 BLTIN("continue" , builtin_continue, "Start new loop iteration"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001019#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001020 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
1021 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001022 BLTIN("exit" , builtin_exit , NULL),
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01001023#if ENABLE_HUSH_EXPORT
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001024 BLTIN("export" , builtin_export , "Set environment variables"),
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01001025#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001026#if ENABLE_HUSH_JOB
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001027 BLTIN("fg" , builtin_fg_bg , "Bring job into foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001028#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001029#if ENABLE_HUSH_HELP
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001030 BLTIN("help" , builtin_help , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001031#endif
Denys Vlasenkoff463a82013-05-12 02:45:23 +02001032#if MAX_HISTORY && ENABLE_FEATURE_EDITING
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001033 BLTIN("history" , builtin_history , "Show history"),
Flemming Madsend96ffda2013-04-07 18:47:24 +02001034#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +00001035#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001036 BLTIN("jobs" , builtin_jobs , "List jobs"),
Denis Vlasenko34d4d892009-04-04 20:24:37 +00001037#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001038#if ENABLE_HUSH_KILL
1039 BLTIN("kill" , builtin_kill , "Send signals to processes"),
1040#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02001041#if ENABLE_HUSH_LOCAL
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001042 BLTIN("local" , builtin_local , "Set local variables"),
Denys Vlasenko295fef82009-06-03 12:47:26 +02001043#endif
Denys Vlasenko44719692017-01-08 18:44:41 +01001044#if ENABLE_HUSH_MEMLEAK
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001045 BLTIN("memleak" , builtin_memleak , NULL),
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00001046#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001047#if ENABLE_HUSH_READ
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001048 BLTIN("read" , builtin_read , "Input into variable"),
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001049#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00001050#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001051 BLTIN("return" , builtin_return , "Return from function"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00001052#endif
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001053#if ENABLE_HUSH_SET
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001054 BLTIN("set" , builtin_set , "Set positional parameters"),
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001055#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001056 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01001057#if BASH_SOURCE
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001058 BLTIN("source" , builtin_source , NULL),
Denys Vlasenko82731b42010-05-17 17:49:52 +02001059#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001060#if ENABLE_HUSH_TRAP
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001061 BLTIN("trap" , builtin_trap , "Trap signals"),
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001062#endif
Denys Vlasenko2bba5912014-03-14 12:43:57 +01001063 BLTIN("true" , builtin_true , NULL),
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001064#if ENABLE_HUSH_TYPE
Denys Vlasenko651a2692010-03-23 16:25:17 +01001065 BLTIN("type" , builtin_type , "Show command type"),
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001066#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001067#if ENABLE_HUSH_ULIMIT
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001068 BLTIN("ulimit" , shell_builtin_ulimit, "Control resource limits"),
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001069#endif
Denys Vlasenkod5933b12017-01-08 18:31:39 +01001070#if ENABLE_HUSH_UMASK
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001071 BLTIN("umask" , builtin_umask , "Set file creation mask"),
Denys Vlasenkod5933b12017-01-08 18:31:39 +01001072#endif
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001073#if ENABLE_HUSH_UNSET
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001074 BLTIN("unset" , builtin_unset , "Unset variables"),
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001075#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001076#if ENABLE_HUSH_WAIT
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001077 BLTIN("wait" , builtin_wait , "Wait for process"),
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001078#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001079};
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001080/* These builtins won't be used if we are on NOMMU and need to re-exec
1081 * (it's cheaper to run an external program in this case):
1082 */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001083static const struct built_in_command bltins2[] = {
Denys Vlasenko265062d2017-01-10 15:13:30 +01001084#if ENABLE_HUSH_TEST
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001085 BLTIN("[" , builtin_test , NULL),
Denys Vlasenko265062d2017-01-10 15:13:30 +01001086#endif
Denys Vlasenko8944c672017-01-11 14:22:00 +01001087#if BASH_TEST2
1088 BLTIN("[[" , builtin_test , NULL),
1089#endif
Denys Vlasenko1cc68042017-01-09 17:10:04 +01001090#if ENABLE_HUSH_ECHO
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001091 BLTIN("echo" , builtin_echo , NULL),
Denys Vlasenko1cc68042017-01-09 17:10:04 +01001092#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001093#if ENABLE_HUSH_PRINTF
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04001094 BLTIN("printf" , builtin_printf , NULL),
1095#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001096 BLTIN("pwd" , builtin_pwd , NULL),
Denys Vlasenko265062d2017-01-10 15:13:30 +01001097#if ENABLE_HUSH_TEST
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001098 BLTIN("test" , builtin_test , NULL),
Denys Vlasenko265062d2017-01-10 15:13:30 +01001099#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001100};
1101
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001102
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001103/* Debug printouts.
1104 */
1105#if HUSH_DEBUG
1106/* prevent disasters with G.debug_indent < 0 */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001107# define indent() fdprintf(2, "%*s", (G.debug_indent * 2) & 0xff, "")
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001108# define debug_enter() (G.debug_indent++)
1109# define debug_leave() (G.debug_indent--)
1110#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001111# define indent() ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001112# define debug_enter() ((void)0)
1113# define debug_leave() ((void)0)
1114#endif
1115
1116#ifndef debug_printf
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001117# define debug_printf(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001118#endif
1119
1120#ifndef debug_printf_parse
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001121# define debug_printf_parse(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001122#endif
1123
1124#ifndef debug_printf_exec
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001125#define debug_printf_exec(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001126#endif
1127
1128#ifndef debug_printf_env
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001129# define debug_printf_env(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001130#endif
1131
1132#ifndef debug_printf_jobs
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001133# define debug_printf_jobs(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001134# define DEBUG_JOBS 1
1135#else
1136# define DEBUG_JOBS 0
1137#endif
1138
1139#ifndef debug_printf_expand
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001140# define debug_printf_expand(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001141# define DEBUG_EXPAND 1
1142#else
1143# define DEBUG_EXPAND 0
1144#endif
1145
Denys Vlasenko1e811b12010-05-22 03:12:29 +02001146#ifndef debug_printf_varexp
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001147# define debug_printf_varexp(...) (indent(), fdprintf(2, __VA_ARGS__))
Denys Vlasenko1e811b12010-05-22 03:12:29 +02001148#endif
1149
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001150#ifndef debug_printf_glob
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001151# define debug_printf_glob(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001152# define DEBUG_GLOB 1
1153#else
1154# define DEBUG_GLOB 0
1155#endif
1156
1157#ifndef debug_printf_list
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001158# define debug_printf_list(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001159#endif
1160
1161#ifndef debug_printf_subst
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001162# define debug_printf_subst(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001163#endif
1164
1165#ifndef debug_printf_clean
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001166# define debug_printf_clean(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001167# define DEBUG_CLEAN 1
1168#else
1169# define DEBUG_CLEAN 0
1170#endif
1171
1172#if DEBUG_EXPAND
1173static void debug_print_strings(const char *prefix, char **vv)
1174{
1175 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001176 fdprintf(2, "%s:\n", prefix);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001177 while (*vv)
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001178 fdprintf(2, " '%s'\n", *vv++);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001179}
1180#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001181# define debug_print_strings(prefix, vv) ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001182#endif
1183
1184
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001185/* Leak hunting. Use hush_leaktool.sh for post-processing.
1186 */
1187#if LEAK_HUNTING
1188static void *xxmalloc(int lineno, size_t size)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001189{
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001190 void *ptr = xmalloc((size + 0xff) & ~0xff);
1191 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
1192 return ptr;
1193}
1194static void *xxrealloc(int lineno, void *ptr, size_t size)
1195{
1196 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
1197 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
1198 return ptr;
1199}
1200static char *xxstrdup(int lineno, const char *str)
1201{
1202 char *ptr = xstrdup(str);
1203 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
1204 return ptr;
1205}
1206static void xxfree(void *ptr)
1207{
1208 fdprintf(2, "free %p\n", ptr);
1209 free(ptr);
1210}
Denys Vlasenko8391c482010-05-22 17:50:43 +02001211# define xmalloc(s) xxmalloc(__LINE__, s)
1212# define xrealloc(p, s) xxrealloc(__LINE__, p, s)
1213# define xstrdup(s) xxstrdup(__LINE__, s)
1214# define free(p) xxfree(p)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001215#endif
1216
1217
1218/* Syntax and runtime errors. They always abort scripts.
1219 * In interactive use they usually discard unparsed and/or unexecuted commands
1220 * and return to the prompt.
1221 * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
1222 */
1223#if HUSH_DEBUG < 2
Denys Vlasenko606291b2009-09-23 23:15:43 +02001224# define die_if_script(lineno, ...) die_if_script(__VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001225# define syntax_error(lineno, msg) syntax_error(msg)
1226# define syntax_error_at(lineno, msg) syntax_error_at(msg)
1227# define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch)
1228# define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s)
1229# define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001230#endif
1231
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001232static void die_if_script(unsigned lineno, const char *fmt, ...)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001233{
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001234 va_list p;
1235
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001236#if HUSH_DEBUG >= 2
1237 bb_error_msg("hush.c:%u", lineno);
1238#endif
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001239 va_start(p, fmt);
1240 bb_verror_msg(fmt, p, NULL);
1241 va_end(p);
1242 if (!G_interactive_fd)
1243 xfunc_die();
Mike Frysinger6379bb42009-03-28 18:55:03 +00001244}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001245
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001246static void syntax_error(unsigned lineno UNUSED_PARAM, const char *msg)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001247{
1248 if (msg)
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001249 bb_error_msg("syntax error: %s", msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001250 else
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001251 bb_error_msg("syntax error");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001252}
1253
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001254static void syntax_error_at(unsigned lineno UNUSED_PARAM, const char *msg)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001255{
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001256 bb_error_msg("syntax error at '%s'", msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001257}
1258
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001259static void syntax_error_unterm_str(unsigned lineno UNUSED_PARAM, const char *s)
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001260{
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001261 bb_error_msg("syntax error: unterminated %s", s);
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001262}
1263
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001264static void syntax_error_unterm_ch(unsigned lineno, char ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001265{
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001266 char msg[2] = { ch, '\0' };
1267 syntax_error_unterm_str(lineno, msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001268}
1269
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001270static void syntax_error_unexpected_ch(unsigned lineno UNUSED_PARAM, int ch)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001271{
1272 char msg[2];
1273 msg[0] = ch;
1274 msg[1] = '\0';
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01001275#if HUSH_DEBUG >= 2
1276 bb_error_msg("hush.c:%u", lineno);
1277#endif
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001278 bb_error_msg("syntax error: unexpected %s", ch == EOF ? "EOF" : msg);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001279}
1280
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001281#if HUSH_DEBUG < 2
1282# undef die_if_script
1283# undef syntax_error
1284# undef syntax_error_at
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001285# undef syntax_error_unterm_ch
1286# undef syntax_error_unterm_str
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001287# undef syntax_error_unexpected_ch
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001288#else
Denys Vlasenko606291b2009-09-23 23:15:43 +02001289# define die_if_script(...) die_if_script(__LINE__, __VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001290# define syntax_error(msg) syntax_error(__LINE__, msg)
1291# define syntax_error_at(msg) syntax_error_at(__LINE__, msg)
1292# define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch)
1293# define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s)
1294# define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001295#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001296
Denis Vlasenko552433b2009-04-04 19:29:21 +00001297
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001298#if ENABLE_HUSH_INTERACTIVE
1299static void cmdedit_update_prompt(void);
1300#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001301# define cmdedit_update_prompt() ((void)0)
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001302#endif
1303
1304
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001305/* Utility functions
1306 */
Denis Vlasenko55789c62008-06-18 16:30:42 +00001307/* Replace each \x with x in place, return ptr past NUL. */
1308static char *unbackslash(char *src)
1309{
Denys Vlasenko71885402009-09-24 01:44:13 +02001310 char *dst = src = strchrnul(src, '\\');
Denis Vlasenko55789c62008-06-18 16:30:42 +00001311 while (1) {
1312 if (*src == '\\')
1313 src++;
1314 if ((*dst++ = *src++) == '\0')
1315 break;
1316 }
1317 return dst;
1318}
1319
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001320static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001321{
1322 int i;
1323 unsigned count1;
1324 unsigned count2;
1325 char **v;
1326
1327 v = strings;
1328 count1 = 0;
1329 if (v) {
1330 while (*v) {
1331 count1++;
1332 v++;
1333 }
1334 }
1335 count2 = 0;
1336 v = add;
1337 while (*v) {
1338 count2++;
1339 v++;
1340 }
1341 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
1342 v[count1 + count2] = NULL;
1343 i = count2;
1344 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001345 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001346 return v;
1347}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001348#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001349static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
1350{
1351 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
1352 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
1353 return ptr;
1354}
1355#define add_strings_to_strings(strings, add, need_to_dup) \
1356 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
1357#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001358
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001359/* Note: takes ownership of "add" ptr (it is not strdup'ed) */
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001360static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001361{
1362 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001363 v[0] = add;
1364 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001365 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001366}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001367#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001368static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
1369{
1370 char **ptr = add_string_to_strings(strings, add);
1371 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
1372 return ptr;
1373}
1374#define add_string_to_strings(strings, add) \
1375 xx_add_string_to_strings(__LINE__, strings, add)
1376#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001377
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001378static void free_strings(char **strings)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001379{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001380 char **v;
1381
1382 if (!strings)
1383 return;
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001384 v = strings;
1385 while (*v) {
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001386 free(*v);
1387 v++;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001388 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001389 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001390}
1391
Denis Vlasenko76d50412008-06-10 16:19:39 +00001392
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001393static int xdup_and_close(int fd, int F_DUPFD_maybe_CLOEXEC)
1394{
1395 /* We avoid taking stdio fds. Mimicking ash: use fds above 9 */
1396 int newfd = fcntl(fd, F_DUPFD_maybe_CLOEXEC, 10);
1397 if (newfd < 0) {
1398 /* fd was not open? */
1399 if (errno == EBADF)
1400 return fd;
1401 xfunc_die();
1402 }
1403 close(fd);
1404 return newfd;
1405}
1406
1407
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001408/* Manipulating the list of open FILEs */
1409static FILE *remember_FILE(FILE *fp)
1410{
1411 if (fp) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001412 struct FILE_list *n = xmalloc(sizeof(*n));
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001413 n->next = G.FILE_list;
1414 G.FILE_list = n;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001415 n->fp = fp;
1416 n->fd = fileno(fp);
1417 close_on_exec_on(n->fd);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001418 }
1419 return fp;
1420}
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001421static void fclose_and_forget(FILE *fp)
1422{
1423 struct FILE_list **pp = &G.FILE_list;
1424 while (*pp) {
1425 struct FILE_list *cur = *pp;
1426 if (cur->fp == fp) {
1427 *pp = cur->next;
1428 free(cur);
1429 break;
1430 }
1431 pp = &cur->next;
1432 }
1433 fclose(fp);
1434}
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001435static int save_FILEs_on_redirect(int fd)
1436{
1437 struct FILE_list *fl = G.FILE_list;
1438 while (fl) {
1439 if (fd == fl->fd) {
1440 /* We use it only on script files, they are all CLOEXEC */
1441 fl->fd = xdup_and_close(fd, F_DUPFD_CLOEXEC);
1442 return 1;
1443 }
1444 fl = fl->next;
1445 }
1446 return 0;
1447}
1448static void restore_redirected_FILEs(void)
1449{
1450 struct FILE_list *fl = G.FILE_list;
1451 while (fl) {
1452 int should_be = fileno(fl->fp);
1453 if (fl->fd != should_be) {
1454 xmove_fd(fl->fd, should_be);
1455 fl->fd = should_be;
1456 }
1457 fl = fl->next;
1458 }
1459}
1460#if ENABLE_FEATURE_SH_STANDALONE
1461static void close_all_FILE_list(void)
1462{
1463 struct FILE_list *fl = G.FILE_list;
1464 while (fl) {
1465 /* fclose would also free FILE object.
1466 * It is disastrous if we share memory with a vforked parent.
1467 * I'm not sure we never come here after vfork.
1468 * Therefore just close fd, nothing more.
1469 */
1470 /*fclose(fl->fp); - unsafe */
1471 close(fl->fd);
1472 fl = fl->next;
1473 }
1474}
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001475#endif
1476
1477
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001478/* Helpers for setting new $n and restoring them back
1479 */
1480typedef struct save_arg_t {
1481 char *sv_argv0;
1482 char **sv_g_argv;
1483 int sv_g_argc;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001484 IF_HUSH_SET(smallint sv_g_malloced;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001485} save_arg_t;
1486
1487static void save_and_replace_G_args(save_arg_t *sv, char **argv)
1488{
1489 int n;
1490
1491 sv->sv_argv0 = argv[0];
1492 sv->sv_g_argv = G.global_argv;
1493 sv->sv_g_argc = G.global_argc;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001494 IF_HUSH_SET(sv->sv_g_malloced = G.global_args_malloced;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001495
1496 argv[0] = G.global_argv[0]; /* retain $0 */
1497 G.global_argv = argv;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001498 IF_HUSH_SET(G.global_args_malloced = 0;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001499
1500 n = 1;
1501 while (*++argv)
1502 n++;
1503 G.global_argc = n;
1504}
1505
1506static void restore_G_args(save_arg_t *sv, char **argv)
1507{
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001508#if ENABLE_HUSH_SET
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001509 if (G.global_args_malloced) {
1510 /* someone ran "set -- arg1 arg2 ...", undo */
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001511 char **pp = G.global_argv;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001512 while (*++pp) /* note: does not free $0 */
1513 free(*pp);
1514 free(G.global_argv);
1515 }
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001516#endif
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001517 argv[0] = sv->sv_argv0;
1518 G.global_argv = sv->sv_g_argv;
1519 G.global_argc = sv->sv_g_argc;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001520 IF_HUSH_SET(G.global_args_malloced = sv->sv_g_malloced;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001521}
1522
1523
Denis Vlasenkod5762932009-03-31 11:22:57 +00001524/* Basic theory of signal handling in shell
1525 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001526 * This does not describe what hush does, rather, it is current understanding
1527 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001528 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
1529 *
1530 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
1531 * is finished or backgrounded. It is the same in interactive and
1532 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001533 * a user trap handler is installed or a shell special one is in effect.
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001534 * ^C or ^Z from keyboard seems to execute "at once" because it usually
Denis Vlasenkod5762932009-03-31 11:22:57 +00001535 * backgrounds (i.e. stops) or kills all members of currently running
1536 * pipe.
1537 *
Denys Vlasenko8bd810b2013-11-28 01:50:01 +01001538 * Wait builtin is interruptible by signals for which user trap is set
Denis Vlasenkod5762932009-03-31 11:22:57 +00001539 * or by SIGINT in interactive shell.
1540 *
1541 * Trap handlers will execute even within trap handlers. (right?)
1542 *
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001543 * User trap handlers are forgotten when subshell ("(cmd)") is entered,
1544 * except for handlers set to '' (empty string).
Denis Vlasenkod5762932009-03-31 11:22:57 +00001545 *
1546 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001547 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001548 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001549 * Commands which are run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001550 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001551 *
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001552 * Ordinary commands have signals set to SIG_IGN/DFL as inherited
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001553 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001554 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001555 * Signals which differ from SIG_DFL action
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001556 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +00001557 *
1558 * SIGQUIT: ignore
1559 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001560 * SIGHUP (interactive):
1561 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +00001562 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00001563 * Note that ^Z is handled not by trapping SIGTSTP, but by seeing
1564 * that all pipe members are stopped. Try this in bash:
1565 * while :; do :; done - ^Z does not background it
1566 * (while :; do :; done) - ^Z backgrounds it
Denis Vlasenkod5762932009-03-31 11:22:57 +00001567 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001568 * of the command line, show prompt. NB: ^C does not send SIGINT
1569 * to interactive shell while shell is waiting for a pipe,
1570 * since shell is bg'ed (is not in foreground process group).
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001571 * Example 1: this waits 5 sec, but does not execute ls:
1572 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
1573 * Example 2: this does not wait and does not execute ls:
1574 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
1575 * Example 3: this does not wait 5 sec, but executes ls:
1576 * "sleep 5; ls -l" + press ^C
Denys Vlasenkob8709032011-05-08 21:20:01 +02001577 * Example 4: this does not wait and does not execute ls:
1578 * "sleep 5 & wait; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +00001579 *
1580 * (What happens to signals which are IGN on shell start?)
1581 * (What happens with signal mask on shell start?)
1582 *
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001583 * Old implementation
1584 * ==================
Denis Vlasenkod5762932009-03-31 11:22:57 +00001585 * We use in-kernel pending signal mask to determine which signals were sent.
1586 * We block all signals which we don't want to take action immediately,
1587 * i.e. we block all signals which need to have special handling as described
1588 * above, and all signals which have traps set.
1589 * After each pipe execution, we extract any pending signals via sigtimedwait()
1590 * and act on them.
1591 *
Denys Vlasenko10c01312011-05-11 11:49:21 +02001592 * unsigned special_sig_mask: a mask of such "special" signals
Denis Vlasenkod5762932009-03-31 11:22:57 +00001593 * sigset_t blocked_set: current blocked signal set
1594 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001595 * "trap - SIGxxx":
Denys Vlasenko10c01312011-05-11 11:49:21 +02001596 * clear bit in blocked_set unless it is also in special_sig_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001597 * "trap 'cmd' SIGxxx":
1598 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +00001599 * after [v]fork, if we plan to be a shell:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001600 * unblock signals with special interactive handling
1601 * (child shell is not interactive),
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001602 * unset all traps except '' (note: regardless of child shell's type - {}, (), etc)
Denis Vlasenkod5762932009-03-31 11:22:57 +00001603 * after [v]fork, if we plan to exec:
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001604 * POSIX says fork clears pending signal mask in child - no need to clear it.
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001605 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001606 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001607 * Note: as a result, we do not use signal handlers much. The only uses
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001608 * are to count SIGCHLDs
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001609 * and to restore tty pgrp on signal-induced exit.
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001610 *
Denys Vlasenko67f71862009-09-25 14:21:06 +02001611 * Note 2 (compat):
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001612 * Standard says "When a subshell is entered, traps that are not being ignored
1613 * are set to the default actions". bash interprets it so that traps which
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001614 * are set to '' (ignore) are NOT reset to defaults. We do the same.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001615 *
1616 * Problem: the above approach makes it unwieldy to catch signals while
Denys Vlasenkoe95738f2013-07-08 03:13:08 +02001617 * we are in read builtin, or while we read commands from stdin:
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001618 * masked signals are not visible!
1619 *
1620 * New implementation
1621 * ==================
1622 * We record each signal we are interested in by installing signal handler
1623 * for them - a bit like emulating kernel pending signal mask in userspace.
1624 * We are interested in: signals which need to have special handling
1625 * as described above, and all signals which have traps set.
Denys Vlasenko8bd810b2013-11-28 01:50:01 +01001626 * Signals are recorded in pending_set.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001627 * After each pipe execution, we extract any pending signals
1628 * and act on them.
1629 *
1630 * unsigned special_sig_mask: a mask of shell-special signals.
1631 * unsigned fatal_sig_mask: a mask of signals on which we restore tty pgrp.
1632 * char *traps[sig] if trap for sig is set (even if it's '').
1633 * sigset_t pending_set: set of sigs we received.
1634 *
1635 * "trap - SIGxxx":
1636 * if sig is in special_sig_mask, set handler back to:
1637 * record_pending_signo, or to IGN if it's a tty stop signal
1638 * if sig is in fatal_sig_mask, set handler back to sigexit.
1639 * else: set handler back to SIG_DFL
1640 * "trap 'cmd' SIGxxx":
1641 * set handler to record_pending_signo.
1642 * "trap '' SIGxxx":
1643 * set handler to SIG_IGN.
1644 * after [v]fork, if we plan to be a shell:
1645 * set signals with special interactive handling to SIG_DFL
1646 * (because child shell is not interactive),
1647 * unset all traps except '' (note: regardless of child shell's type - {}, (), etc)
1648 * after [v]fork, if we plan to exec:
1649 * POSIX says fork clears pending signal mask in child - no need to clear it.
1650 *
1651 * To make wait builtin interruptible, we handle SIGCHLD as special signal,
1652 * otherwise (if we leave it SIG_DFL) sigsuspend in wait builtin will not wake up on it.
1653 *
1654 * Note (compat):
1655 * Standard says "When a subshell is entered, traps that are not being ignored
1656 * are set to the default actions". bash interprets it so that traps which
1657 * are set to '' (ignore) are NOT reset to defaults. We do the same.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001658 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001659enum {
1660 SPECIAL_INTERACTIVE_SIGS = 0
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001661 | (1 << SIGTERM)
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001662 | (1 << SIGINT)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001663 | (1 << SIGHUP)
1664 ,
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001665 SPECIAL_JOBSTOP_SIGS = 0
Mike Frysinger38478a62009-05-20 04:48:06 -04001666#if ENABLE_HUSH_JOB
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001667 | (1 << SIGTTIN)
1668 | (1 << SIGTTOU)
1669 | (1 << SIGTSTP)
1670#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001671 ,
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001672};
Denis Vlasenkod5762932009-03-31 11:22:57 +00001673
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001674static void record_pending_signo(int sig)
Denys Vlasenko54e9e122011-05-09 00:52:15 +02001675{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001676 sigaddset(&G.pending_set, sig);
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001677#if ENABLE_HUSH_FAST
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001678 if (sig == SIGCHLD) {
1679 G.count_SIGCHLD++;
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001680//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 +02001681 }
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001682#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001683}
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001684
Denys Vlasenko0806e402011-05-12 23:06:20 +02001685static sighandler_t install_sighandler(int sig, sighandler_t handler)
1686{
1687 struct sigaction old_sa;
1688
1689 /* We could use signal() to install handlers... almost:
1690 * except that we need to mask ALL signals while handlers run.
1691 * I saw signal nesting in strace, race window isn't small.
1692 * SA_RESTART is also needed, but in Linux, signal()
1693 * sets SA_RESTART too.
1694 */
1695 /* memset(&G.sa, 0, sizeof(G.sa)); - already done */
1696 /* sigfillset(&G.sa.sa_mask); - already done */
1697 /* G.sa.sa_flags = SA_RESTART; - already done */
1698 G.sa.sa_handler = handler;
1699 sigaction(sig, &G.sa, &old_sa);
1700 return old_sa.sa_handler;
1701}
1702
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001703static void hush_exit(int exitcode) NORETURN;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001704
Denys Vlasenkob6afcc72016-12-12 16:30:20 +01001705static void restore_ttypgrp_and__exit(void) NORETURN;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001706static void restore_ttypgrp_and__exit(void)
1707{
1708 /* xfunc has failed! die die die */
1709 /* no EXIT traps, this is an escape hatch! */
1710 G.exiting = 1;
1711 hush_exit(xfunc_error_retval);
1712}
1713
Denys Vlasenkob6afcc72016-12-12 16:30:20 +01001714#if ENABLE_HUSH_JOB
1715
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001716/* Needed only on some libc:
1717 * It was observed that on exit(), fgetc'ed buffered data
1718 * gets "unwound" via lseek(fd, -NUM, SEEK_CUR).
1719 * With the net effect that even after fork(), not vfork(),
1720 * exit() in NOEXECed applet in "sh SCRIPT":
1721 * noexec_applet_here
1722 * echo END_OF_SCRIPT
1723 * lseeks fd in input FILE object from EOF to "e" in "echo END_OF_SCRIPT".
1724 * This makes "echo END_OF_SCRIPT" executed twice.
1725 * Similar problems can be seen with die_if_script() -> xfunc_die()
1726 * and in `cmd` handling.
1727 * If set as die_func(), this makes xfunc_die() exit via _exit(), not exit():
1728 */
Denys Vlasenkob6afcc72016-12-12 16:30:20 +01001729static void fflush_and__exit(void) NORETURN;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001730static void fflush_and__exit(void)
1731{
1732 fflush_all();
1733 _exit(xfunc_error_retval);
1734}
1735
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001736/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001737# define disable_restore_tty_pgrp_on_exit() (die_func = fflush_and__exit)
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001738/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001739# define enable_restore_tty_pgrp_on_exit() (die_func = restore_ttypgrp_and__exit)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001740
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001741/* Restores tty foreground process group, and exits.
1742 * May be called as signal handler for fatal signal
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001743 * (will resend signal to itself, producing correct exit state)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001744 * or called directly with -EXITCODE.
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001745 * We also call it if xfunc is exiting.
1746 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001747static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001748static void sigexit(int sig)
1749{
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001750 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001751 * tty pgrp then, only top-level shell process does that */
Denys Vlasenkoebc1ee22011-05-12 10:59:18 +02001752 if (G_saved_tty_pgrp && getpid() == G.root_pid) {
1753 /* Disable all signals: job control, SIGPIPE, etc.
1754 * Mostly paranoid measure, to prevent infinite SIGTTOU.
1755 */
1756 sigprocmask_allsigs(SIG_BLOCK);
Mike Frysinger38478a62009-05-20 04:48:06 -04001757 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
Denys Vlasenkoebc1ee22011-05-12 10:59:18 +02001758 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001759
1760 /* Not a signal, just exit */
1761 if (sig <= 0)
1762 _exit(- sig);
1763
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001764 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001765}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001766#else
1767
Denys Vlasenko8391c482010-05-22 17:50:43 +02001768# define disable_restore_tty_pgrp_on_exit() ((void)0)
1769# define enable_restore_tty_pgrp_on_exit() ((void)0)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001770
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001771#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001772
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001773static sighandler_t pick_sighandler(unsigned sig)
1774{
1775 sighandler_t handler = SIG_DFL;
1776 if (sig < sizeof(unsigned)*8) {
1777 unsigned sigmask = (1 << sig);
1778
1779#if ENABLE_HUSH_JOB
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001780 /* is sig fatal? */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001781 if (G_fatal_sig_mask & sigmask)
1782 handler = sigexit;
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001783 else
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001784#endif
1785 /* sig has special handling? */
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001786 if (G.special_sig_mask & sigmask) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001787 handler = record_pending_signo;
Denys Vlasenko0c40a732011-05-12 09:50:12 +02001788 /* TTIN/TTOU/TSTP can't be set to record_pending_signo
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001789 * in order to ignore them: they will be raised
Denys Vlasenkof58f7052011-05-12 02:10:33 +02001790 * in an endless loop when we try to do some
1791 * terminal ioctls! We do have to _ignore_ these.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001792 */
1793 if (SPECIAL_JOBSTOP_SIGS & sigmask)
1794 handler = SIG_IGN;
Denys Vlasenko0c40a732011-05-12 09:50:12 +02001795 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001796 }
1797 return handler;
1798}
1799
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001800/* Restores tty foreground process group, and exits. */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001801static void hush_exit(int exitcode)
1802{
Denys Vlasenkobede2152011-09-04 16:12:33 +02001803#if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1804 save_history(G.line_input_state);
1805#endif
1806
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01001807 fflush_all();
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001808 if (G.exiting <= 0 && G_traps && G_traps[0] && G_traps[0][0]) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001809 char *argv[3];
1810 /* argv[0] is unused */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001811 argv[1] = G_traps[0];
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001812 argv[2] = NULL;
Denys Vlasenkoa110c902010-09-12 15:38:04 +02001813 G.exiting = 1; /* prevent EXIT trap recursion */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001814 /* Note: G_traps[0] is not cleared!
Denys Vlasenkode8c3f62010-09-12 16:13:44 +02001815 * "trap" will still show it, if executed
1816 * in the handler */
1817 builtin_eval(argv);
Denis Vlasenkod5762932009-03-31 11:22:57 +00001818 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001819
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001820#if ENABLE_FEATURE_CLEAN_UP
1821 {
1822 struct variable *cur_var;
1823 if (G.cwd != bb_msg_unknown)
1824 free((char*)G.cwd);
1825 cur_var = G.top_var;
1826 while (cur_var) {
1827 struct variable *tmp = cur_var;
1828 if (!cur_var->max_len)
1829 free(cur_var->varstr);
1830 cur_var = cur_var->next;
1831 free(tmp);
1832 }
1833 }
1834#endif
1835
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001836 fflush_all();
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02001837#if ENABLE_HUSH_JOB
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001838 sigexit(- (exitcode & 0xff));
1839#else
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02001840 _exit(exitcode);
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001841#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001842}
1843
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02001844
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001845//TODO: return a mask of ALL handled sigs?
1846static int check_and_run_traps(void)
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001847{
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001848 int last_sig = 0;
1849
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001850 while (1) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001851 int sig;
Denys Vlasenko80542ba2011-05-08 21:23:43 +02001852
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001853 if (sigisemptyset(&G.pending_set))
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001854 break;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001855 sig = 0;
1856 do {
1857 sig++;
1858 if (sigismember(&G.pending_set, sig)) {
1859 sigdelset(&G.pending_set, sig);
1860 goto got_sig;
1861 }
1862 } while (sig < NSIG);
1863 break;
Denys Vlasenkob8709032011-05-08 21:20:01 +02001864 got_sig:
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001865 if (G_traps && G_traps[sig]) {
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001866 debug_printf_exec("%s: sig:%d handler:'%s'\n", __func__, sig, G.traps[sig]);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001867 if (G_traps[sig][0]) {
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001868 /* We have user-defined handler */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001869 smalluint save_rcode;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001870 char *argv[3];
1871 /* argv[0] is unused */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001872 argv[1] = G_traps[sig];
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001873 argv[2] = NULL;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001874 save_rcode = G.last_exitcode;
1875 builtin_eval(argv);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01001876//FIXME: shouldn't it be set to 128 + sig instead?
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001877 G.last_exitcode = save_rcode;
Denys Vlasenkob8709032011-05-08 21:20:01 +02001878 last_sig = sig;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001879 } /* else: "" trap, ignoring signal */
1880 continue;
1881 }
1882 /* not a trap: special action */
1883 switch (sig) {
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001884 case SIGINT:
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001885 debug_printf_exec("%s: sig:%d default SIGINT handler\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001886 G.flag_SIGINT = 1;
Denys Vlasenkob8709032011-05-08 21:20:01 +02001887 last_sig = sig;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001888 break;
1889#if ENABLE_HUSH_JOB
1890 case SIGHUP: {
1891 struct pipe *job;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001892 debug_printf_exec("%s: sig:%d default SIGHUP handler\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001893 /* bash is observed to signal whole process groups,
1894 * not individual processes */
1895 for (job = G.job_list; job; job = job->next) {
1896 if (job->pgrp <= 0)
1897 continue;
1898 debug_printf_exec("HUPing pgrp %d\n", job->pgrp);
1899 if (kill(- job->pgrp, SIGHUP) == 0)
1900 kill(- job->pgrp, SIGCONT);
1901 }
1902 sigexit(SIGHUP);
1903 }
1904#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001905#if ENABLE_HUSH_FAST
1906 case SIGCHLD:
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001907 debug_printf_exec("%s: sig:%d default SIGCHLD handler\n", __func__, sig);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001908 G.count_SIGCHLD++;
1909//bb_error_msg("[%d] check_and_run_traps: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
1910 /* Note:
Denys Vlasenko10ad6222017-04-17 16:13:32 +02001911 * We don't do 'last_sig = sig' here -> NOT returning this sig.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001912 * This simplifies wait builtin a bit.
1913 */
1914 break;
1915#endif
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001916 default: /* ignored: */
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001917 debug_printf_exec("%s: sig:%d default handling is to ignore\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001918 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001919 /* Note:
Denys Vlasenko10ad6222017-04-17 16:13:32 +02001920 * We don't do 'last_sig = sig' here -> NOT returning this sig.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001921 * Example: wait is not interrupted by TERM
Denys Vlasenkob8709032011-05-08 21:20:01 +02001922 * in interactive shell, because TERM is ignored.
1923 */
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001924 break;
1925 }
1926 }
1927 return last_sig;
1928}
1929
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001930
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001931static const char *get_cwd(int force)
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001932{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001933 if (force || G.cwd == NULL) {
1934 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1935 * we must not try to free(bb_msg_unknown) */
1936 if (G.cwd == bb_msg_unknown)
1937 G.cwd = NULL;
1938 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1939 if (!G.cwd)
1940 G.cwd = bb_msg_unknown;
1941 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00001942 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001943}
1944
Denis Vlasenko83506862007-11-23 13:11:42 +00001945
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001946/*
1947 * Shell and environment variable support
1948 */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001949static struct variable **get_ptr_to_local_var(const char *name, unsigned len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001950{
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001951 struct variable **pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001952 struct variable *cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001953
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001954 pp = &G.top_var;
1955 while ((cur = *pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001956 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001957 return pp;
1958 pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001959 }
1960 return NULL;
1961}
1962
Denys Vlasenko03dad222010-01-12 23:29:57 +01001963static const char* FAST_FUNC get_local_var_value(const char *name)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001964{
Denys Vlasenko29082232010-07-16 13:52:32 +02001965 struct variable **vpp;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001966 unsigned len = strlen(name);
Denys Vlasenko29082232010-07-16 13:52:32 +02001967
1968 if (G.expanded_assignments) {
1969 char **cpp = G.expanded_assignments;
Denys Vlasenko29082232010-07-16 13:52:32 +02001970 while (*cpp) {
1971 char *cp = *cpp;
1972 if (strncmp(cp, name, len) == 0 && cp[len] == '=')
1973 return cp + len + 1;
1974 cpp++;
1975 }
1976 }
1977
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001978 vpp = get_ptr_to_local_var(name, len);
Denys Vlasenko29082232010-07-16 13:52:32 +02001979 if (vpp)
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001980 return (*vpp)->varstr + len + 1;
Denys Vlasenko29082232010-07-16 13:52:32 +02001981
Denys Vlasenkodea47882009-10-09 15:40:49 +02001982 if (strcmp(name, "PPID") == 0)
1983 return utoa(G.root_ppid);
1984 // bash compat: UID? EUID?
Denys Vlasenko20b3d142009-10-09 20:59:39 +02001985#if ENABLE_HUSH_RANDOM_SUPPORT
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001986 if (strcmp(name, "RANDOM") == 0)
Denys Vlasenko20b3d142009-10-09 20:59:39 +02001987 return utoa(next_random(&G.random_gen));
1988#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001989 return NULL;
1990}
1991
1992/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001993 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001994 * flg_export:
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001995 * 0: do not change export flag
1996 * (if creating new variable, flag will be 0)
1997 * 1: set export flag and putenv the variable
1998 * -1: clear export flag and unsetenv the variable
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001999 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00002000 */
Denys Vlasenko295fef82009-06-03 12:47:26 +02002001#if !BB_MMU && ENABLE_HUSH_LOCAL
2002/* all params are used */
2003#elif BB_MMU && ENABLE_HUSH_LOCAL
2004#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
2005 set_local_var(str, flg_export, local_lvl)
2006#elif BB_MMU && !ENABLE_HUSH_LOCAL
2007#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002008 set_local_var(str, flg_export)
Denys Vlasenko295fef82009-06-03 12:47:26 +02002009#elif !BB_MMU && !ENABLE_HUSH_LOCAL
2010#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
2011 set_local_var(str, flg_export, flg_read_only)
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002012#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02002013static int set_local_var(char *str, int flg_export, int local_lvl, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002014{
Denys Vlasenko295fef82009-06-03 12:47:26 +02002015 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002016 struct variable *cur;
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002017 char *free_me = NULL;
Denis Vlasenko950bd722009-04-21 11:23:56 +00002018 char *eq_sign;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002019 int name_len;
2020
Denis Vlasenko950bd722009-04-21 11:23:56 +00002021 eq_sign = strchr(str, '=');
2022 if (!eq_sign) { /* not expected to ever happen? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002023 free(str);
2024 return -1;
2025 }
2026
Denis Vlasenko950bd722009-04-21 11:23:56 +00002027 name_len = eq_sign - str + 1; /* including '=' */
Denys Vlasenko295fef82009-06-03 12:47:26 +02002028 var_pp = &G.top_var;
2029 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002030 if (strncmp(cur->varstr, str, name_len) != 0) {
Denys Vlasenko295fef82009-06-03 12:47:26 +02002031 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002032 continue;
2033 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002034
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002035 /* We found an existing var with this name */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002036 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002037#if !BB_MMU
2038 if (!flg_read_only)
2039#endif
2040 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002041 free(str);
2042 return -1;
2043 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02002044 if (flg_export == -1) { // "&& cur->flg_export" ?
Denis Vlasenko950bd722009-04-21 11:23:56 +00002045 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
2046 *eq_sign = '\0';
2047 unsetenv(str);
2048 *eq_sign = '=';
2049 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02002050#if ENABLE_HUSH_LOCAL
2051 if (cur->func_nest_level < local_lvl) {
2052 /* New variable is declared as local,
2053 * and existing one is global, or local
2054 * from enclosing function.
2055 * Remove and save old one: */
2056 *var_pp = cur->next;
2057 cur->next = *G.shadowed_vars_pp;
2058 *G.shadowed_vars_pp = cur;
2059 /* bash 3.2.33(1) and exported vars:
2060 * # export z=z
2061 * # f() { local z=a; env | grep ^z; }
2062 * # f
2063 * z=a
2064 * # env | grep ^z
2065 * z=z
2066 */
2067 if (cur->flg_export)
2068 flg_export = 1;
2069 break;
2070 }
2071#endif
Denis Vlasenko950bd722009-04-21 11:23:56 +00002072 if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002073 free_and_exp:
2074 free(str);
2075 goto exp;
2076 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02002077 if (cur->max_len != 0) {
2078 if (cur->max_len >= strlen(str)) {
2079 /* This one is from startup env, reuse space */
2080 strcpy(cur->varstr, str);
2081 goto free_and_exp;
2082 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002083 /* Can't reuse */
2084 cur->max_len = 0;
2085 goto set_str_and_exp;
Denys Vlasenko295fef82009-06-03 12:47:26 +02002086 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002087 /* max_len == 0 signifies "malloced" var, which we can
2088 * (and have to) free. But we can't free(cur->varstr) here:
2089 * if cur->flg_export is 1, it is in the environment.
2090 * We should either unsetenv+free, or wait until putenv,
2091 * then putenv(new)+free(old).
2092 */
2093 free_me = cur->varstr;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002094 goto set_str_and_exp;
2095 }
2096
Denys Vlasenko295fef82009-06-03 12:47:26 +02002097 /* Not found - create new variable struct */
2098 cur = xzalloc(sizeof(*cur));
2099#if ENABLE_HUSH_LOCAL
2100 cur->func_nest_level = local_lvl;
2101#endif
2102 cur->next = *var_pp;
2103 *var_pp = cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002104
2105 set_str_and_exp:
2106 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00002107#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002108 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00002109#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002110 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00002111 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002112 cur->flg_export = 1;
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002113 if (name_len == 4 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
2114 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002115 if (cur->flg_export) {
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002116 if (flg_export == -1) {
2117 cur->flg_export = 0;
2118 /* unsetenv was already done */
2119 } else {
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002120 int i;
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002121 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002122 i = putenv(cur->varstr);
2123 /* only now we can free old exported malloced string */
2124 free(free_me);
2125 return i;
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002126 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002127 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002128 free(free_me);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002129 return 0;
2130}
2131
Denys Vlasenko6db47842009-09-05 20:15:17 +02002132/* Used at startup and after each cd */
2133static void set_pwd_var(int exp)
2134{
2135 set_local_var(xasprintf("PWD=%s", get_cwd(/*force:*/ 1)),
2136 /*exp:*/ exp, /*lvl:*/ 0, /*ro:*/ 0);
2137}
2138
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002139static int unset_local_var_len(const char *name, int name_len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002140{
2141 struct variable *cur;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002142 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002143
2144 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00002145 return EXIT_SUCCESS;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002146 var_pp = &G.top_var;
2147 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002148 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
2149 if (cur->flg_read_only) {
2150 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00002151 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002152 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002153 *var_pp = cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002154 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
2155 bb_unsetenv(cur->varstr);
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002156 if (name_len == 3 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
2157 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002158 if (!cur->max_len)
2159 free(cur->varstr);
2160 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00002161 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002162 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002163 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002164 }
Mike Frysingerd690f682009-03-30 06:50:54 +00002165 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002166}
2167
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01002168#if ENABLE_HUSH_UNSET
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002169static int unset_local_var(const char *name)
2170{
2171 return unset_local_var_len(name, strlen(name));
2172}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01002173#endif
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002174
2175static void unset_vars(char **strings)
2176{
2177 char **v;
2178
2179 if (!strings)
2180 return;
2181 v = strings;
2182 while (*v) {
2183 const char *eq = strchrnul(*v, '=');
2184 unset_local_var_len(*v, (int)(eq - *v));
2185 v++;
2186 }
2187 free(strings);
2188}
2189
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01002190#if BASH_HOSTNAME_VAR || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_READ
Denys Vlasenko03dad222010-01-12 23:29:57 +01002191static void FAST_FUNC set_local_var_from_halves(const char *name, const char *val)
Mike Frysinger98c52642009-04-02 10:02:37 +00002192{
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002193 char *var = xasprintf("%s=%s", name, val);
Denys Vlasenko03dad222010-01-12 23:29:57 +01002194 set_local_var(var, /*flags:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00002195}
Denys Vlasenkocc2fd5a2017-01-09 06:19:55 +01002196#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002197
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002198
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002199/*
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002200 * Helpers for "var1=val1 var2=val2 cmd" feature
2201 */
2202static void add_vars(struct variable *var)
2203{
2204 struct variable *next;
2205
2206 while (var) {
2207 next = var->next;
2208 var->next = G.top_var;
2209 G.top_var = var;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002210 if (var->flg_export) {
2211 debug_printf_env("%s: restoring exported '%s'\n", __func__, var->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002212 putenv(var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002213 } else {
Denys Vlasenko295fef82009-06-03 12:47:26 +02002214 debug_printf_env("%s: restoring variable '%s'\n", __func__, var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002215 }
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002216 var = next;
2217 }
2218}
2219
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002220static struct variable *set_vars_and_save_old(char **strings)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002221{
2222 char **s;
2223 struct variable *old = NULL;
2224
2225 if (!strings)
2226 return old;
2227 s = strings;
2228 while (*s) {
2229 struct variable *var_p;
2230 struct variable **var_pp;
2231 char *eq;
2232
2233 eq = strchr(*s, '=');
2234 if (eq) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002235 var_pp = get_ptr_to_local_var(*s, eq - *s);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002236 if (var_pp) {
2237 /* Remove variable from global linked list */
2238 var_p = *var_pp;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002239 debug_printf_env("%s: removing '%s'\n", __func__, var_p->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002240 *var_pp = var_p->next;
2241 /* Add it to returned list */
2242 var_p->next = old;
2243 old = var_p;
2244 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02002245 set_local_var(*s, /*exp:*/ 1, /*lvl:*/ 0, /*ro:*/ 0);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002246 }
2247 s++;
2248 }
2249 return old;
2250}
2251
2252
2253/*
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002254 * Unicode helper
2255 */
2256static void reinit_unicode_for_hush(void)
2257{
2258 /* Unicode support should be activated even if LANG is set
2259 * _during_ shell execution, not only if it was set when
2260 * shell was started. Therefore, re-check LANG every time:
2261 */
Denys Vlasenko841f8332014-08-13 10:09:49 +02002262 if (ENABLE_FEATURE_CHECK_UNICODE_IN_ENV
2263 || ENABLE_UNICODE_USING_LOCALE
2264 ) {
2265 const char *s = get_local_var_value("LC_ALL");
2266 if (!s) s = get_local_var_value("LC_CTYPE");
2267 if (!s) s = get_local_var_value("LANG");
2268 reinit_unicode(s);
2269 }
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002270}
2271
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002272/*
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002273 * in_str support (strings, and "strings" read from files).
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002274 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002275
2276#if ENABLE_HUSH_INTERACTIVE
Denys Vlasenko4074d492016-09-30 01:49:53 +02002277/* To test correct lineedit/interactive behavior, type from command line:
2278 * echo $P\
2279 * \
2280 * AT\
2281 * H\
2282 * \
Denys Vlasenko10ad6222017-04-17 16:13:32 +02002283 * It exercises a lot of corner cases.
Denys Vlasenko4074d492016-09-30 01:49:53 +02002284 */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002285static void cmdedit_update_prompt(void)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002286{
Mike Frysingerec2c6552009-03-28 12:24:44 +00002287 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002288 G.PS1 = get_local_var_value("PS1");
Mike Frysingerec2c6552009-03-28 12:24:44 +00002289 if (G.PS1 == NULL)
2290 G.PS1 = "\\w \\$ ";
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002291 G.PS2 = get_local_var_value("PS2");
Denys Vlasenko690ad242009-04-30 21:24:24 +02002292 } else {
Mike Frysingerec2c6552009-03-28 12:24:44 +00002293 G.PS1 = NULL;
Denys Vlasenko690ad242009-04-30 21:24:24 +02002294 }
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002295 if (G.PS2 == NULL)
2296 G.PS2 = "> ";
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002297}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002298static const char *setup_prompt_string(int promptmode)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002299{
2300 const char *prompt_str;
2301 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00002302 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
2303 /* Set up the prompt */
2304 if (promptmode == 0) { /* PS1 */
2305 free((char*)G.PS1);
Denys Vlasenko6db47842009-09-05 20:15:17 +02002306 /* bash uses $PWD value, even if it is set by user.
2307 * It uses current dir only if PWD is unset.
2308 * We always use current dir. */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002309 G.PS1 = xasprintf("%s %c ", get_cwd(0), (geteuid() != 0) ? '$' : '#');
Mike Frysingerec2c6552009-03-28 12:24:44 +00002310 prompt_str = G.PS1;
2311 } else
2312 prompt_str = G.PS2;
2313 } else
2314 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denys Vlasenko4074d492016-09-30 01:49:53 +02002315 debug_printf("prompt_str '%s'\n", prompt_str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002316 return prompt_str;
2317}
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002318static int get_user_input(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002319{
2320 int r;
2321 const char *prompt_str;
2322
2323 prompt_str = setup_prompt_string(i->promptmode);
Denys Vlasenko8391c482010-05-22 17:50:43 +02002324# if ENABLE_FEATURE_EDITING
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002325 for (;;) {
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002326 reinit_unicode_for_hush();
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002327 if (G.flag_SIGINT) {
2328 /* There was ^C'ed, make it look prettier: */
2329 bb_putchar('\n');
2330 G.flag_SIGINT = 0;
2331 }
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00002332 /* buglet: SIGINT will not make new prompt to appear _at once_,
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002333 * only after <Enter>. (^C works immediately) */
Denys Vlasenko0448c552016-09-29 20:25:44 +02002334 r = read_line_input(G.line_input_state, prompt_str,
2335 G.user_input_buf, CONFIG_FEATURE_EDITING_MAX_LEN-1,
2336 /*timeout*/ -1
2337 );
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002338 /* read_line_input intercepts ^C, "convert" it to SIGINT */
2339 if (r == 0) {
2340 write(STDOUT_FILENO, "^C", 2);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002341 raise(SIGINT);
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002342 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002343 check_and_run_traps();
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002344 if (r != 0 && !G.flag_SIGINT)
2345 break;
2346 /* ^C or SIGINT: repeat */
2347 G.last_exitcode = 128 + SIGINT;
2348 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002349 if (r < 0) {
2350 /* EOF/error detected */
Denys Vlasenko4074d492016-09-30 01:49:53 +02002351 i->p = NULL;
2352 i->peek_buf[0] = r = EOF;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002353 return r;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002354 }
Denys Vlasenko4074d492016-09-30 01:49:53 +02002355 i->p = G.user_input_buf;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002356 return (unsigned char)*i->p++;
Denys Vlasenko8391c482010-05-22 17:50:43 +02002357# else
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002358 for (;;) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00002359 G.flag_SIGINT = 0;
Denys Vlasenkob8709032011-05-08 21:20:01 +02002360 if (i->last_char == '\0' || i->last_char == '\n') {
2361 /* Why check_and_run_traps here? Try this interactively:
2362 * $ trap 'echo INT' INT; (sleep 2; kill -INT $$) &
2363 * $ <[enter], repeatedly...>
2364 * Without check_and_run_traps, handler never runs.
2365 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002366 check_and_run_traps();
Denys Vlasenkob8709032011-05-08 21:20:01 +02002367 fputs(prompt_str, stdout);
2368 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002369 fflush_all();
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002370//FIXME: here ^C or SIGINT will have effect only after <Enter>
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002371 r = fgetc(i->file);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002372 /* In !ENABLE_FEATURE_EDITING we don't use read_line_input,
2373 * no ^C masking happens during fgetc, no special code for ^C:
2374 * it generates SIGINT as usual.
2375 */
2376 check_and_run_traps();
2377 if (G.flag_SIGINT)
2378 G.last_exitcode = 128 + SIGINT;
2379 if (r != '\0')
2380 break;
2381 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002382 return r;
Denys Vlasenko8391c482010-05-22 17:50:43 +02002383# endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002384}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002385/* This is the magic location that prints prompts
2386 * and gets data back from the user */
Denys Vlasenko4074d492016-09-30 01:49:53 +02002387static int fgetc_interactive(struct in_str *i)
2388{
2389 int ch;
2390 /* If it's interactive stdin, get new line. */
2391 if (G_interactive_fd && i->file == stdin) {
2392 /* Returns first char (or EOF), the rest is in i->p[] */
2393 ch = get_user_input(i);
2394 i->promptmode = 1; /* PS2 */
2395 } else {
2396 /* Not stdin: script file, sourced file, etc */
2397 do ch = fgetc(i->file); while (ch == '\0');
2398 }
2399 return ch;
2400}
2401#else
2402static inline int fgetc_interactive(struct in_str *i)
2403{
2404 int ch;
2405 do ch = fgetc(i->file); while (ch == '\0');
2406 return ch;
2407}
2408#endif /* INTERACTIVE */
2409
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002410static int i_getch(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002411{
2412 int ch;
2413
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002414 if (!i->file) {
2415 /* string-based in_str */
2416 ch = (unsigned char)*i->p;
2417 if (ch != '\0') {
2418 i->p++;
2419 i->last_char = ch;
2420 return ch;
2421 }
2422 return EOF;
2423 }
2424
2425 /* FILE-based in_str */
2426
Denys Vlasenko4074d492016-09-30 01:49:53 +02002427#if ENABLE_FEATURE_EDITING
2428 /* This can be stdin, check line editing char[] buffer */
2429 if (i->p && *i->p != '\0') {
2430 ch = (unsigned char)*i->p++;
2431 goto out;
2432 }
2433#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002434 /* peek_buf[] is an int array, not char. Can contain EOF. */
2435 ch = i->peek_buf[0];
Denys Vlasenko4074d492016-09-30 01:49:53 +02002436 if (ch != 0) {
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002437 int ch2 = i->peek_buf[1];
2438 i->peek_buf[0] = ch2;
2439 if (ch2 == 0) /* very likely, avoid redundant write */
2440 goto out;
2441 i->peek_buf[1] = 0;
2442 goto out;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002443 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002444
Denys Vlasenko4074d492016-09-30 01:49:53 +02002445 ch = fgetc_interactive(i);
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002446 out:
Denis Vlasenko913a2012009-04-05 22:17:04 +00002447 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02002448 i->last_char = ch;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002449 return ch;
2450}
2451
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002452static int i_peek(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002453{
2454 int ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002455
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002456 if (!i->file) {
2457 /* string-based in_str */
2458 /* Doesn't report EOF on NUL. None of the callers care. */
2459 return (unsigned char)*i->p;
2460 }
2461
2462 /* FILE-based in_str */
2463
Denys Vlasenko4074d492016-09-30 01:49:53 +02002464#if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002465 /* This can be stdin, check line editing char[] buffer */
2466 if (i->p && *i->p != '\0')
2467 return (unsigned char)*i->p;
2468#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002469 /* peek_buf[] is an int array, not char. Can contain EOF. */
2470 ch = i->peek_buf[0];
Denys Vlasenko4074d492016-09-30 01:49:53 +02002471 if (ch != 0)
2472 return ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002473
Denys Vlasenko4074d492016-09-30 01:49:53 +02002474 /* Need to get a new char */
2475 ch = fgetc_interactive(i);
2476 debug_printf("file_peek: got '%c' %d\n", ch, ch);
2477
2478 /* Save it by either rolling back line editing buffer, or in i->peek_buf[0] */
2479#if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE
2480 if (i->p) {
2481 i->p -= 1;
2482 return ch;
2483 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002484#endif
Denys Vlasenko4074d492016-09-30 01:49:53 +02002485 i->peek_buf[0] = ch;
2486 /*i->peek_buf[1] = 0; - already is */
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002487 return ch;
2488}
2489
Denys Vlasenko4074d492016-09-30 01:49:53 +02002490/* Only ever called if i_peek() was called, and did not return EOF.
2491 * IOW: we know the previous peek saw an ordinary char, not EOF, not NUL,
2492 * not end-of-line. Therefore we never need to read a new editing line here.
2493 */
2494static int i_peek2(struct in_str *i)
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002495{
Denys Vlasenko4074d492016-09-30 01:49:53 +02002496 int ch;
2497
2498 /* There are two cases when i->p[] buffer exists.
2499 * (1) it's a string in_str.
Denys Vlasenko08755f92016-09-30 02:02:25 +02002500 * (2) It's a file, and we have a saved line editing buffer.
Denys Vlasenko4074d492016-09-30 01:49:53 +02002501 * In both cases, we know that i->p[0] exists and not NUL, and
2502 * the peek2 result is in i->p[1].
2503 */
2504 if (i->p)
2505 return (unsigned char)i->p[1];
2506
2507 /* Now we know it is a file-based in_str. */
2508
2509 /* peek_buf[] is an int array, not char. Can contain EOF. */
2510 /* Is there 2nd char? */
2511 ch = i->peek_buf[1];
2512 if (ch == 0) {
2513 /* We did not read it yet, get it now */
2514 do ch = fgetc(i->file); while (ch == '\0');
2515 i->peek_buf[1] = ch;
2516 }
2517
2518 debug_printf("file_peek2: got '%c' %d\n", ch, ch);
2519 return ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002520}
2521
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002522static void setup_file_in_str(struct in_str *i, FILE *f)
2523{
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002524 memset(i, 0, sizeof(*i));
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002525 /* i->promptmode = 0; - PS1 (memset did it) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002526 i->file = f;
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002527 /* i->p = NULL; */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002528}
2529
2530static void setup_string_in_str(struct in_str *i, const char *s)
2531{
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002532 memset(i, 0, sizeof(*i));
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002533 /* i->promptmode = 0; - PS1 (memset did it) */
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002534 /*i->file = NULL */;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002535 i->p = s;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002536}
2537
2538
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002539/*
2540 * o_string support
2541 */
2542#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00002543
Denis Vlasenko0b677d82009-04-10 13:49:10 +00002544static void o_reset_to_empty_unquoted(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00002545{
2546 o->length = 0;
Denys Vlasenko38292b62010-09-05 14:49:40 +02002547 o->has_quoted_part = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002548 if (o->data)
2549 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002550}
2551
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002552static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00002553{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00002554 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002555 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00002556}
2557
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002558static ALWAYS_INLINE void o_free_unsafe(o_string *o)
2559{
2560 free(o->data);
2561}
2562
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002563static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002564{
2565 if (o->length + len > o->maxlen) {
Denys Vlasenko46e64982016-09-29 19:50:55 +02002566 o->maxlen += (2 * len) | (B_CHUNK-1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002567 o->data = xrealloc(o->data, 1 + o->maxlen);
2568 }
2569}
2570
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002571static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002572{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002573 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
Denys Vlasenko46e64982016-09-29 19:50:55 +02002574 if (o->length < o->maxlen) {
2575 /* likely. avoid o_grow_by() call */
2576 add:
2577 o->data[o->length] = ch;
2578 o->length++;
2579 o->data[o->length] = '\0';
2580 return;
2581 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002582 o_grow_by(o, 1);
Denys Vlasenko46e64982016-09-29 19:50:55 +02002583 goto add;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002584}
2585
Denys Vlasenko657086a2016-09-29 18:07:42 +02002586#if 0
2587/* Valid only if we know o_string is not empty */
2588static void o_delchr(o_string *o)
2589{
2590 o->length--;
2591 o->data[o->length] = '\0';
2592}
2593#endif
2594
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002595static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002596{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002597 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002598 memcpy(&o->data[o->length], str, len);
2599 o->length += len;
2600 o->data[o->length] = '\0';
2601}
2602
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002603static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00002604{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002605 o_addblock(o, str, strlen(str));
2606}
Denys Vlasenko2e48d532010-05-22 17:30:39 +02002607
Denys Vlasenko1e811b12010-05-22 03:12:29 +02002608#if !BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002609static void nommu_addchr(o_string *o, int ch)
2610{
2611 if (o)
2612 o_addchr(o, ch);
2613}
2614#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002615# define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002616#endif
2617
2618static void o_addstr_with_NUL(o_string *o, const char *str)
2619{
2620 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00002621}
2622
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002623/*
Denys Vlasenko238081f2010-10-03 14:26:26 +02002624 * HUSH_BRACE_EXPANSION code needs corresponding quoting on variable expansion side.
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002625 * Currently, "v='{q,w}'; echo $v" erroneously expands braces in $v.
2626 * Apparently, on unquoted $v bash still does globbing
2627 * ("v='*.txt'; echo $v" prints all .txt files),
2628 * but NOT brace expansion! Thus, there should be TWO independent
2629 * quoting mechanisms on $v expansion side: one protects
2630 * $v from brace expansion, and other additionally protects "$v" against globbing.
2631 * We have only second one.
2632 */
2633
Denys Vlasenko9e800222010-10-03 14:28:04 +02002634#if ENABLE_HUSH_BRACE_EXPANSION
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002635# define MAYBE_BRACES "{}"
2636#else
2637# define MAYBE_BRACES ""
2638#endif
2639
Eric Andersen25f27032001-04-26 23:22:31 +00002640/* My analysis of quoting semantics tells me that state information
2641 * is associated with a destination, not a source.
2642 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002643static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00002644{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002645 int sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002646 char *found = strchr("*?[\\" MAYBE_BRACES, ch);
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002647 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002648 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002649 o_grow_by(o, sz);
2650 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002651 o->data[o->length] = '\\';
2652 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00002653 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002654 o->data[o->length] = ch;
2655 o->length++;
2656 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002657}
2658
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002659static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002660{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002661 int sz = 1;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002662 if ((o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)
2663 && strchr("*?[\\" MAYBE_BRACES, ch)
2664 ) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002665 sz++;
2666 o->data[o->length] = '\\';
2667 o->length++;
2668 }
2669 o_grow_by(o, sz);
2670 o->data[o->length] = ch;
2671 o->length++;
2672 o->data[o->length] = '\0';
2673}
2674
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002675static void o_addqblock(o_string *o, const char *str, int len)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002676{
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002677 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002678 char ch;
2679 int sz;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002680 int ordinary_cnt = strcspn(str, "*?[\\" MAYBE_BRACES);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002681 if (ordinary_cnt > len) /* paranoia */
2682 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002683 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002684 if (ordinary_cnt == len)
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002685 return; /* NUL is already added by o_addblock */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002686 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002687 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002688
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002689 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002690 sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002691 if (ch) { /* it is necessarily one of "*?[\\" MAYBE_BRACES */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002692 sz++;
2693 o->data[o->length] = '\\';
2694 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002695 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002696 o_grow_by(o, sz);
2697 o->data[o->length] = ch;
2698 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002699 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002700 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002701}
2702
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002703static void o_addQblock(o_string *o, const char *str, int len)
2704{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002705 if (!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002706 o_addblock(o, str, len);
2707 return;
2708 }
2709 o_addqblock(o, str, len);
2710}
2711
Denys Vlasenko38292b62010-09-05 14:49:40 +02002712static void o_addQstr(o_string *o, const char *str)
2713{
2714 o_addQblock(o, str, strlen(str));
2715}
2716
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002717/* A special kind of o_string for $VAR and `cmd` expansion.
2718 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002719 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002720 * list[i] contains an INDEX (int!) into this string data.
2721 * It means that if list[] needs to grow, data needs to be moved higher up
2722 * but list[i]'s need not be modified.
2723 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002724 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002725 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
2726 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002727#if DEBUG_EXPAND || DEBUG_GLOB
2728static void debug_print_list(const char *prefix, o_string *o, int n)
2729{
2730 char **list = (char**)o->data;
2731 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2732 int i = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002733
2734 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002735 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 +02002736 prefix, list, n, string_start, o->length, o->maxlen,
2737 !!(o->o_expflags & EXP_FLAG_GLOB),
2738 o->has_quoted_part,
2739 !!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002740 while (i < n) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002741 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002742 fdprintf(2, " list[%d]=%d '%s' %p\n", i, (int)(uintptr_t)list[i],
2743 o->data + (int)(uintptr_t)list[i] + string_start,
2744 o->data + (int)(uintptr_t)list[i] + string_start);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002745 i++;
2746 }
2747 if (n) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002748 const char *p = o->data + (int)(uintptr_t)list[n - 1] + string_start;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002749 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002750 fdprintf(2, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002751 }
2752}
2753#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002754# define debug_print_list(prefix, o, n) ((void)0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002755#endif
2756
2757/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
2758 * in list[n] so that it points past last stored byte so far.
2759 * It returns n+1. */
2760static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002761{
2762 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00002763 int string_start;
2764 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002765
2766 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00002767 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2768 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002769 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002770 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002771 /* list[n] points to string_start, make space for 16 more pointers */
2772 o->maxlen += 0x10 * sizeof(list[0]);
2773 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00002774 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002775 memmove(list + n + 0x10, list + n, string_len);
2776 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002777 } else {
2778 debug_printf_list("list[%d]=%d string_start=%d\n",
2779 n, string_len, string_start);
2780 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002781 } else {
2782 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00002783 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
2784 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002785 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
2786 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002787 o->has_empty_slot = 0;
2788 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002789 o->has_quoted_part = 0;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002790 list[n] = (char*)(uintptr_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002791 return n + 1;
2792}
2793
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002794/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002795static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002796{
2797 char **list = (char**)o->data;
2798 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2799
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002800 return ((int)(uintptr_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002801}
2802
Denys Vlasenko9e800222010-10-03 14:28:04 +02002803#if ENABLE_HUSH_BRACE_EXPANSION
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002804/* There in a GNU extension, GLOB_BRACE, but it is not usable:
2805 * first, it processes even {a} (no commas), second,
2806 * I didn't manage to make it return strings when they don't match
Denys Vlasenko160746b2009-11-16 05:51:18 +01002807 * existing files. Need to re-implement it.
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002808 */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002809
2810/* Helper */
2811static int glob_needed(const char *s)
2812{
2813 while (*s) {
2814 if (*s == '\\') {
2815 if (!s[1])
2816 return 0;
2817 s += 2;
2818 continue;
2819 }
2820 if (*s == '*' || *s == '[' || *s == '?' || *s == '{')
2821 return 1;
2822 s++;
2823 }
2824 return 0;
2825}
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002826/* Return pointer to next closing brace or to comma */
2827static const char *next_brace_sub(const char *cp)
2828{
2829 unsigned depth = 0;
2830 cp++;
2831 while (*cp != '\0') {
2832 if (*cp == '\\') {
2833 if (*++cp == '\0')
2834 break;
2835 cp++;
2836 continue;
Denys Vlasenko3581c622010-01-25 13:39:24 +01002837 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002838 if ((*cp == '}' && depth-- == 0) || (*cp == ',' && depth == 0))
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002839 break;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002840 if (*cp++ == '{')
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002841 depth++;
2842 }
2843
2844 return *cp != '\0' ? cp : NULL;
2845}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002846/* Recursive brace globber. Note: may garble pattern[]. */
2847static int glob_brace(char *pattern, o_string *o, int n)
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002848{
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002849 char *new_pattern_buf;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002850 const char *begin;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002851 const char *next;
2852 const char *rest;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002853 const char *p;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002854 size_t rest_len;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002855
2856 debug_printf_glob("glob_brace('%s')\n", pattern);
2857
2858 begin = pattern;
2859 while (1) {
2860 if (*begin == '\0')
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002861 goto simple_glob;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002862 if (*begin == '{') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002863 /* Find the first sub-pattern and at the same time
2864 * find the rest after the closing brace */
2865 next = next_brace_sub(begin);
2866 if (next == NULL) {
2867 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002868 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002869 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002870 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002871 /* "{abc}" with no commas - illegal
2872 * brace expr, disregard and skip it */
2873 begin = next + 1;
2874 continue;
2875 }
2876 break;
2877 }
2878 if (*begin == '\\' && begin[1] != '\0')
2879 begin++;
2880 begin++;
2881 }
2882 debug_printf_glob("begin:%s\n", begin);
2883 debug_printf_glob("next:%s\n", next);
2884
2885 /* Now find the end of the whole brace expression */
2886 rest = next;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002887 while (*rest != '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002888 rest = next_brace_sub(rest);
2889 if (rest == NULL) {
2890 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002891 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002892 }
2893 debug_printf_glob("rest:%s\n", rest);
2894 }
2895 rest_len = strlen(++rest) + 1;
2896
2897 /* We are sure the brace expression is well-formed */
2898
2899 /* Allocate working buffer large enough for our work */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002900 new_pattern_buf = xmalloc(strlen(pattern));
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002901
2902 /* We have a brace expression. BEGIN points to the opening {,
2903 * NEXT points past the terminator of the first element, and REST
2904 * points past the final }. We will accumulate result names from
2905 * recursive runs for each brace alternative in the buffer using
2906 * GLOB_APPEND. */
2907
2908 p = begin + 1;
2909 while (1) {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002910 /* Construct the new glob expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002911 memcpy(
2912 mempcpy(
2913 mempcpy(new_pattern_buf,
2914 /* We know the prefix for all sub-patterns */
2915 pattern, begin - pattern),
2916 p, next - p),
2917 rest, rest_len);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002918
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002919 /* Note: glob_brace() may garble new_pattern_buf[].
2920 * That's why we re-copy prefix every time (1st memcpy above).
2921 */
2922 n = glob_brace(new_pattern_buf, o, n);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002923 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002924 /* We saw the last entry */
2925 break;
2926 }
2927 p = next + 1;
2928 next = next_brace_sub(next);
2929 }
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002930 free(new_pattern_buf);
2931 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002932
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002933 simple_glob:
2934 {
2935 int gr;
2936 glob_t globdata;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002937
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002938 memset(&globdata, 0, sizeof(globdata));
2939 gr = glob(pattern, 0, NULL, &globdata);
2940 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
2941 if (gr != 0) {
2942 if (gr == GLOB_NOMATCH) {
2943 globfree(&globdata);
2944 /* NB: garbles parameter */
2945 unbackslash(pattern);
2946 o_addstr_with_NUL(o, pattern);
2947 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2948 return o_save_ptr_helper(o, n);
2949 }
2950 if (gr == GLOB_NOSPACE)
2951 bb_error_msg_and_die(bb_msg_memory_exhausted);
2952 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
2953 * but we didn't specify it. Paranoia again. */
2954 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
2955 }
2956 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
2957 char **argv = globdata.gl_pathv;
2958 while (1) {
2959 o_addstr_with_NUL(o, *argv);
2960 n = o_save_ptr_helper(o, n);
2961 argv++;
2962 if (!*argv)
2963 break;
2964 }
2965 }
2966 globfree(&globdata);
2967 }
2968 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002969}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002970/* Performs globbing on last list[],
2971 * saving each result as a new list[].
2972 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002973static int perform_glob(o_string *o, int n)
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002974{
2975 char *pattern, *copy;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002976
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002977 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002978 if (!o->data)
2979 return o_save_ptr_helper(o, n);
2980 pattern = o->data + o_get_last_ptr(o, n);
2981 debug_printf_glob("glob pattern '%s'\n", pattern);
2982 if (!glob_needed(pattern)) {
2983 /* unbackslash last string in o in place, fix length */
2984 o->length = unbackslash(pattern) - o->data;
2985 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2986 return o_save_ptr_helper(o, n);
2987 }
2988
2989 copy = xstrdup(pattern);
2990 /* "forget" pattern in o */
2991 o->length = pattern - o->data;
2992 n = glob_brace(copy, o, n);
2993 free(copy);
2994 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002995 debug_print_list("perform_glob returning", o, n);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002996 return n;
2997}
2998
Denys Vlasenko238081f2010-10-03 14:26:26 +02002999#else /* !HUSH_BRACE_EXPANSION */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003000
3001/* Helper */
3002static int glob_needed(const char *s)
3003{
3004 while (*s) {
3005 if (*s == '\\') {
3006 if (!s[1])
3007 return 0;
3008 s += 2;
3009 continue;
3010 }
3011 if (*s == '*' || *s == '[' || *s == '?')
3012 return 1;
3013 s++;
3014 }
3015 return 0;
3016}
3017/* Performs globbing on last list[],
3018 * saving each result as a new list[].
3019 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003020static int perform_glob(o_string *o, int n)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003021{
3022 glob_t globdata;
3023 int gr;
3024 char *pattern;
3025
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003026 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003027 if (!o->data)
3028 return o_save_ptr_helper(o, n);
3029 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003030 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003031 if (!glob_needed(pattern)) {
3032 literal:
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003033 /* unbackslash last string in o in place, fix length */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003034 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003035 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003036 return o_save_ptr_helper(o, n);
3037 }
3038
3039 memset(&globdata, 0, sizeof(globdata));
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003040 /* Can't use GLOB_NOCHECK: it does not unescape the string.
3041 * If we glob "*.\*" and don't find anything, we need
3042 * to fall back to using literal "*.*", but GLOB_NOCHECK
3043 * will return "*.\*"!
3044 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003045 gr = glob(pattern, 0, NULL, &globdata);
3046 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003047 if (gr != 0) {
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003048 if (gr == GLOB_NOMATCH) {
3049 globfree(&globdata);
3050 goto literal;
3051 }
3052 if (gr == GLOB_NOSPACE)
3053 bb_error_msg_and_die(bb_msg_memory_exhausted);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003054 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
3055 * but we didn't specify it. Paranoia again. */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003056 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003057 }
3058 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
3059 char **argv = globdata.gl_pathv;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003060 /* "forget" pattern in o */
3061 o->length = pattern - o->data;
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003062 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003063 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003064 n = o_save_ptr_helper(o, n);
3065 argv++;
3066 if (!*argv)
3067 break;
3068 }
3069 }
3070 globfree(&globdata);
3071 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003072 debug_print_list("perform_glob returning", o, n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003073 return n;
3074}
3075
Denys Vlasenko238081f2010-10-03 14:26:26 +02003076#endif /* !HUSH_BRACE_EXPANSION */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003077
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02003078/* If o->o_expflags & EXP_FLAG_GLOB, glob the string so far remembered.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003079 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003080static int o_save_ptr(o_string *o, int n)
3081{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02003082 if (o->o_expflags & EXP_FLAG_GLOB) {
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00003083 /* If o->has_empty_slot, list[n] was already globbed
3084 * (if it was requested back then when it was filled)
3085 * so don't do that again! */
3086 if (!o->has_empty_slot)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003087 return perform_glob(o, n); /* o_save_ptr_helper is inside */
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00003088 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003089 return o_save_ptr_helper(o, n);
3090}
3091
3092/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003093static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003094{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003095 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003096 int string_start;
3097
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003098 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
3099 if (DEBUG_EXPAND)
3100 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003101 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003102 list = (char**)o->data;
3103 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
3104 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003105 while (n) {
3106 n--;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003107 list[n] = o->data + (int)(uintptr_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003108 }
3109 return list;
3110}
3111
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003112static void free_pipe_list(struct pipe *pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003113
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003114/* Returns pi->next - next pipe in the list */
3115static struct pipe *free_pipe(struct pipe *pi)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003116{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003117 struct pipe *next;
3118 int i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003119
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003120 debug_printf_clean("free_pipe (pid %d)\n", getpid());
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003121 for (i = 0; i < pi->num_cmds; i++) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003122 struct command *command;
3123 struct redir_struct *r, *rnext;
3124
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003125 command = &pi->cmds[i];
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003126 debug_printf_clean(" command %d:\n", i);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003127 if (command->argv) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003128 if (DEBUG_CLEAN) {
3129 int a;
3130 char **p;
3131 for (a = 0, p = command->argv; *p; a++, p++) {
3132 debug_printf_clean(" argv[%d] = %s\n", a, *p);
3133 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003134 }
3135 free_strings(command->argv);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003136 //command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003137 }
3138 /* not "else if": on syntax error, we may have both! */
3139 if (command->group) {
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003140 debug_printf_clean(" begin group (cmd_type:%d)\n",
3141 command->cmd_type);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003142 free_pipe_list(command->group);
3143 debug_printf_clean(" end group\n");
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003144 //command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003145 }
Denis Vlasenkoed055212009-04-11 10:37:10 +00003146 /* else is crucial here.
3147 * If group != NULL, child_func is meaningless */
3148#if ENABLE_HUSH_FUNCTIONS
3149 else if (command->child_func) {
3150 debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
3151 command->child_func->parent_cmd = NULL;
3152 }
3153#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003154#if !BB_MMU
3155 free(command->group_as_string);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003156 //command->group_as_string = NULL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003157#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003158 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003159 debug_printf_clean(" redirect %d%s",
3160 r->rd_fd, redir_table[r->rd_type].descrip);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003161 /* guard against the case >$FOO, where foo is unset or blank */
3162 if (r->rd_filename) {
3163 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
3164 free(r->rd_filename);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003165 //r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003166 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003167 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003168 rnext = r->next;
3169 free(r);
3170 }
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003171 //command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003172 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003173 free(pi->cmds); /* children are an array, they get freed all at once */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003174 //pi->cmds = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003175#if ENABLE_HUSH_JOB
3176 free(pi->cmdtext);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003177 //pi->cmdtext = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003178#endif
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003179
3180 next = pi->next;
3181 free(pi);
3182 return next;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003183}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003184
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003185static void free_pipe_list(struct pipe *pi)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003186{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003187 while (pi) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003188#if HAS_KEYWORDS
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003189 debug_printf_clean("pipe reserved word %d\n", pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003190#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003191 debug_printf_clean("pipe followup code %d\n", pi->followup);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003192 pi = free_pipe(pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003193 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003194}
3195
3196
Denys Vlasenkob36abf22010-09-05 14:50:59 +02003197/*** Parsing routines ***/
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003198
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003199#ifndef debug_print_tree
3200static void debug_print_tree(struct pipe *pi, int lvl)
3201{
3202 static const char *const PIPE[] = {
3203 [PIPE_SEQ] = "SEQ",
3204 [PIPE_AND] = "AND",
3205 [PIPE_OR ] = "OR" ,
3206 [PIPE_BG ] = "BG" ,
3207 };
3208 static const char *RES[] = {
3209 [RES_NONE ] = "NONE" ,
3210# if ENABLE_HUSH_IF
3211 [RES_IF ] = "IF" ,
3212 [RES_THEN ] = "THEN" ,
3213 [RES_ELIF ] = "ELIF" ,
3214 [RES_ELSE ] = "ELSE" ,
3215 [RES_FI ] = "FI" ,
3216# endif
3217# if ENABLE_HUSH_LOOPS
3218 [RES_FOR ] = "FOR" ,
3219 [RES_WHILE] = "WHILE",
3220 [RES_UNTIL] = "UNTIL",
3221 [RES_DO ] = "DO" ,
3222 [RES_DONE ] = "DONE" ,
3223# endif
3224# if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
3225 [RES_IN ] = "IN" ,
3226# endif
3227# if ENABLE_HUSH_CASE
3228 [RES_CASE ] = "CASE" ,
3229 [RES_CASE_IN ] = "CASE_IN" ,
3230 [RES_MATCH] = "MATCH",
3231 [RES_CASE_BODY] = "CASE_BODY",
3232 [RES_ESAC ] = "ESAC" ,
3233# endif
3234 [RES_XXXX ] = "XXXX" ,
3235 [RES_SNTX ] = "SNTX" ,
3236 };
3237 static const char *const CMDTYPE[] = {
3238 "{}",
3239 "()",
3240 "[noglob]",
3241# if ENABLE_HUSH_FUNCTIONS
3242 "func()",
3243# endif
3244 };
3245
3246 int pin, prn;
3247
3248 pin = 0;
3249 while (pi) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003250 fdprintf(2, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003251 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
3252 prn = 0;
3253 while (prn < pi->num_cmds) {
3254 struct command *command = &pi->cmds[prn];
3255 char **argv = command->argv;
3256
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003257 fdprintf(2, "%*s cmd %d assignment_cnt:%d",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003258 lvl*2, "", prn,
3259 command->assignment_cnt);
3260 if (command->group) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003261 fdprintf(2, " group %s: (argv=%p)%s%s\n",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003262 CMDTYPE[command->cmd_type],
3263 argv
3264# if !BB_MMU
3265 , " group_as_string:", command->group_as_string
3266# else
3267 , "", ""
3268# endif
3269 );
3270 debug_print_tree(command->group, lvl+1);
3271 prn++;
3272 continue;
3273 }
3274 if (argv) while (*argv) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003275 fdprintf(2, " '%s'", *argv);
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003276 argv++;
3277 }
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003278 fdprintf(2, "\n");
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003279 prn++;
3280 }
3281 pi = pi->next;
3282 pin++;
3283 }
3284}
3285#endif /* debug_print_tree */
3286
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00003287static struct pipe *new_pipe(void)
3288{
Eric Andersen25f27032001-04-26 23:22:31 +00003289 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003290 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003291 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00003292 return pi;
3293}
3294
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003295/* Command (member of a pipe) is complete, or we start a new pipe
3296 * if ctx->command is NULL.
3297 * No errors possible here.
3298 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003299static int done_command(struct parse_context *ctx)
3300{
3301 /* The command is really already in the pipe structure, so
3302 * advance the pipe counter and make a new, null command. */
3303 struct pipe *pi = ctx->pipe;
3304 struct command *command = ctx->command;
3305
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02003306#if 0 /* Instead we emit error message at run time */
3307 if (ctx->pending_redirect) {
3308 /* For example, "cmd >" (no filename to redirect to) */
3309 die_if_script("syntax error: %s", "invalid redirect");
3310 ctx->pending_redirect = NULL;
3311 }
3312#endif
3313
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003314 if (command) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003315 if (IS_NULL_CMD(command)) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003316 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003317 goto clear_and_ret;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003318 }
3319 pi->num_cmds++;
3320 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003321 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003322 } else {
3323 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
3324 }
3325
3326 /* Only real trickiness here is that the uncommitted
3327 * command structure is not counted in pi->num_cmds. */
3328 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003329 ctx->command = command = &pi->cmds[pi->num_cmds];
3330 clear_and_ret:
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003331 memset(command, 0, sizeof(*command));
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003332 return pi->num_cmds; /* used only for 0/nonzero check */
3333}
3334
3335static void done_pipe(struct parse_context *ctx, pipe_style type)
3336{
3337 int not_null;
3338
3339 debug_printf_parse("done_pipe entered, followup %d\n", type);
3340 /* Close previous command */
3341 not_null = done_command(ctx);
3342 ctx->pipe->followup = type;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003343#if HAS_KEYWORDS
3344 ctx->pipe->pi_inverted = ctx->ctx_inverted;
3345 ctx->ctx_inverted = 0;
3346 ctx->pipe->res_word = ctx->ctx_res_w;
3347#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003348
3349 /* Without this check, even just <enter> on command line generates
3350 * tree of three NOPs (!). Which is harmless but annoying.
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003351 * IOW: it is safe to do it unconditionally. */
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003352 if (not_null
Denis Vlasenko7f959372009-04-14 08:06:59 +00003353#if ENABLE_HUSH_IF
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003354 || ctx->ctx_res_w == RES_FI
Denis Vlasenko7f959372009-04-14 08:06:59 +00003355#endif
3356#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003357 || ctx->ctx_res_w == RES_DONE
3358 || ctx->ctx_res_w == RES_FOR
3359 || ctx->ctx_res_w == RES_IN
Denis Vlasenko7f959372009-04-14 08:06:59 +00003360#endif
3361#if ENABLE_HUSH_CASE
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003362 || ctx->ctx_res_w == RES_ESAC
3363#endif
3364 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003365 struct pipe *new_p;
3366 debug_printf_parse("done_pipe: adding new pipe: "
3367 "not_null:%d ctx->ctx_res_w:%d\n",
3368 not_null, ctx->ctx_res_w);
3369 new_p = new_pipe();
3370 ctx->pipe->next = new_p;
3371 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003372 /* RES_THEN, RES_DO etc are "sticky" -
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003373 * they remain set for pipes inside if/while.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003374 * This is used to control execution.
3375 * RES_FOR and RES_IN are NOT sticky (needed to support
3376 * cases where variable or value happens to match a keyword):
3377 */
3378#if ENABLE_HUSH_LOOPS
3379 if (ctx->ctx_res_w == RES_FOR
3380 || ctx->ctx_res_w == RES_IN)
3381 ctx->ctx_res_w = RES_NONE;
3382#endif
3383#if ENABLE_HUSH_CASE
3384 if (ctx->ctx_res_w == RES_MATCH)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003385 ctx->ctx_res_w = RES_CASE_BODY;
3386 if (ctx->ctx_res_w == RES_CASE)
3387 ctx->ctx_res_w = RES_CASE_IN;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003388#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003389 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003390 /* Create the memory for command, roughly:
3391 * ctx->pipe->cmds = new struct command;
3392 * ctx->command = &ctx->pipe->cmds[0];
3393 */
3394 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003395 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003396 }
3397 debug_printf_parse("done_pipe return\n");
3398}
3399
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003400static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003401{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003402 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00003403 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003404 /* Create the memory for command, roughly:
3405 * ctx->pipe->cmds = new struct command;
3406 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003407 */
3408 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00003409}
3410
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003411/* If a reserved word is found and processed, parse context is modified
3412 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00003413 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003414#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003415struct reserved_combo {
3416 char literal[6];
3417 unsigned char res;
3418 unsigned char assignment_flag;
3419 int flag;
3420};
3421enum {
3422 FLAG_END = (1 << RES_NONE ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003423# if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003424 FLAG_IF = (1 << RES_IF ),
3425 FLAG_THEN = (1 << RES_THEN ),
3426 FLAG_ELIF = (1 << RES_ELIF ),
3427 FLAG_ELSE = (1 << RES_ELSE ),
3428 FLAG_FI = (1 << RES_FI ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003429# endif
3430# if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003431 FLAG_FOR = (1 << RES_FOR ),
3432 FLAG_WHILE = (1 << RES_WHILE),
3433 FLAG_UNTIL = (1 << RES_UNTIL),
3434 FLAG_DO = (1 << RES_DO ),
3435 FLAG_DONE = (1 << RES_DONE ),
3436 FLAG_IN = (1 << RES_IN ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003437# endif
3438# if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003439 FLAG_MATCH = (1 << RES_MATCH),
3440 FLAG_ESAC = (1 << RES_ESAC ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003441# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003442 FLAG_START = (1 << RES_XXXX ),
3443};
3444
3445static const struct reserved_combo* match_reserved_word(o_string *word)
3446{
Eric Andersen25f27032001-04-26 23:22:31 +00003447 /* Mostly a list of accepted follow-up reserved words.
3448 * FLAG_END means we are done with the sequence, and are ready
3449 * to turn the compound list into a command.
3450 * FLAG_START means the word must start a new compound list.
3451 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003452 static const struct reserved_combo reserved_list[] = {
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003453# if ENABLE_HUSH_IF
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003454 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
3455 { "if", RES_IF, MAYBE_ASSIGNMENT, FLAG_THEN | FLAG_START },
3456 { "then", RES_THEN, MAYBE_ASSIGNMENT, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
3457 { "elif", RES_ELIF, MAYBE_ASSIGNMENT, FLAG_THEN },
3458 { "else", RES_ELSE, MAYBE_ASSIGNMENT, FLAG_FI },
3459 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003460# endif
3461# if ENABLE_HUSH_LOOPS
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003462 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
3463 { "while", RES_WHILE, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START },
3464 { "until", RES_UNTIL, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START },
3465 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
3466 { "do", RES_DO, MAYBE_ASSIGNMENT, FLAG_DONE },
3467 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003468# endif
3469# if ENABLE_HUSH_CASE
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003470 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
3471 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003472# endif
Eric Andersen25f27032001-04-26 23:22:31 +00003473 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003474 const struct reserved_combo *r;
3475
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02003476 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003477 if (strcmp(word->data, r->literal) == 0)
3478 return r;
3479 }
3480 return NULL;
3481}
Denis Vlasenkobb929512009-04-16 10:59:40 +00003482/* Return 0: not a keyword, 1: keyword
3483 */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003484static int reserved_word(o_string *word, struct parse_context *ctx)
3485{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003486# if ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003487 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003488 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003489 };
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003490# endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003491 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003492
Denys Vlasenko38292b62010-09-05 14:49:40 +02003493 if (word->has_quoted_part)
Denis Vlasenkobb929512009-04-16 10:59:40 +00003494 return 0;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003495 r = match_reserved_word(word);
3496 if (!r)
3497 return 0;
3498
3499 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003500# if ENABLE_HUSH_CASE
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003501 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE_IN) {
3502 /* "case word IN ..." - IN part starts first MATCH part */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003503 r = &reserved_match;
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003504 } else
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003505# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003506 if (r->flag == 0) { /* '!' */
3507 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003508 syntax_error("! ! command");
Denis Vlasenkobb929512009-04-16 10:59:40 +00003509 ctx->ctx_res_w = RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00003510 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003511 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00003512 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003513 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003514 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003515 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003516
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003517 old = xmalloc(sizeof(*old));
3518 debug_printf_parse("push stack %p\n", old);
3519 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003520 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003521 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003522 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003523 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003524 ctx->ctx_res_w = RES_SNTX;
3525 return 1;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003526 } else {
3527 /* "{...} fi" is ok. "{...} if" is not
3528 * Example:
3529 * if { echo foo; } then { echo bar; } fi */
3530 if (ctx->command->group)
3531 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003532 }
Denis Vlasenkobb929512009-04-16 10:59:40 +00003533
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003534 ctx->ctx_res_w = r->res;
3535 ctx->old_flag = r->flag;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003536 word->o_assignment = r->assignment_flag;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003537 debug_printf_parse("word->o_assignment='%s'\n", assignment_flag[word->o_assignment]);
Denis Vlasenkobb929512009-04-16 10:59:40 +00003538
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003539 if (ctx->old_flag & FLAG_END) {
3540 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003541
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003542 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003543 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003544 old = ctx->stack;
3545 old->command->group = ctx->list_head;
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003546 old->command->cmd_type = CMD_NORMAL;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003547# if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02003548 /* At this point, the compound command's string is in
3549 * ctx->as_string... except for the leading keyword!
3550 * Consider this example: "echo a | if true; then echo a; fi"
3551 * ctx->as_string will contain "true; then echo a; fi",
3552 * with "if " remaining in old->as_string!
3553 */
3554 {
3555 char *str;
3556 int len = old->as_string.length;
3557 /* Concatenate halves */
3558 o_addstr(&old->as_string, ctx->as_string.data);
3559 o_free_unsafe(&ctx->as_string);
3560 /* Find where leading keyword starts in first half */
3561 str = old->as_string.data + len;
3562 if (str > old->as_string.data)
3563 str--; /* skip whitespace after keyword */
3564 while (str > old->as_string.data && isalpha(str[-1]))
3565 str--;
3566 /* Ugh, we're done with this horrid hack */
3567 old->command->group_as_string = xstrdup(str);
3568 debug_printf_parse("pop, remembering as:'%s'\n",
3569 old->command->group_as_string);
3570 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003571# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003572 *ctx = *old; /* physical copy */
3573 free(old);
3574 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003575 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003576}
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003577#endif /* HAS_KEYWORDS */
Eric Andersen25f27032001-04-26 23:22:31 +00003578
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003579/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003580 * Normal return is 0. Syntax errors return 1.
3581 * Note: on return, word is reset, but not o_free'd!
3582 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003583static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003584{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003585 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00003586
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003587 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denys Vlasenko38292b62010-09-05 14:49:40 +02003588 if (word->length == 0 && !word->has_quoted_part) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003589 debug_printf_parse("done_word return 0: true null, ignored\n");
3590 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003591 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003592
Eric Andersen25f27032001-04-26 23:22:31 +00003593 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003594 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
3595 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003596 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3597 * "2.7 Redirection
3598 * ...the word that follows the redirection operator
3599 * shall be subjected to tilde expansion, parameter expansion,
3600 * command substitution, arithmetic expansion, and quote
3601 * removal. Pathname expansion shall not be performed
3602 * on the word by a non-interactive shell; an interactive
3603 * shell may perform it, but shall do so only when
3604 * the expansion would result in one word."
3605 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003606 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003607 /* Cater for >\file case:
3608 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
3609 * Same with heredocs:
3610 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
3611 */
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003612 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC) {
3613 unbackslash(ctx->pending_redirect->rd_filename);
3614 /* Is it <<"HEREDOC"? */
Denys Vlasenko38292b62010-09-05 14:49:40 +02003615 if (word->has_quoted_part) {
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003616 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
3617 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003618 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003619 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003620 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003621 } else {
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003622#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003623# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00003624 if (ctx->ctx_dsemicolon
3625 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
3626 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003627 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003628 /* ctx->ctx_res_w = RES_MATCH; */
3629 ctx->ctx_dsemicolon = 0;
3630 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003631# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003632 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003633# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003634 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
3635 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003636# endif
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003637# if ENABLE_HUSH_CASE
3638 && ctx->ctx_res_w != RES_CASE
3639# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003640 ) {
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003641 int reserved = reserved_word(word, ctx);
3642 debug_printf_parse("checking for reserved-ness: %d\n", reserved);
3643 if (reserved) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003644 o_reset_to_empty_unquoted(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003645 debug_printf_parse("done_word return %d\n",
3646 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003647 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003648 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01003649# if BASH_TEST2
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003650 if (strcmp(word->data, "[[") == 0) {
3651 command->cmd_type = CMD_SINGLEWORD_NOGLOB;
3652 }
3653 /* fall through */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02003654# endif
Eric Andersen25f27032001-04-26 23:22:31 +00003655 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003656#endif
Denis Vlasenkobb929512009-04-16 10:59:40 +00003657 if (command->group) {
3658 /* "{ echo foo; } echo bar" - bad */
3659 syntax_error_at(word->data);
3660 debug_printf_parse("done_word return 1: syntax error, "
3661 "groups and arglists don't mix\n");
3662 return 1;
3663 }
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003664
3665 /* If this word wasn't an assignment, next ones definitely
3666 * can't be assignments. Even if they look like ones. */
3667 if (word->o_assignment != DEFINITELY_ASSIGNMENT
3668 && word->o_assignment != WORD_IS_KEYWORD
3669 ) {
3670 word->o_assignment = NOT_ASSIGNMENT;
3671 } else {
3672 if (word->o_assignment == DEFINITELY_ASSIGNMENT) {
3673 command->assignment_cnt++;
3674 debug_printf_parse("++assignment_cnt=%d\n", command->assignment_cnt);
3675 }
3676 debug_printf_parse("word->o_assignment was:'%s'\n", assignment_flag[word->o_assignment]);
3677 word->o_assignment = MAYBE_ASSIGNMENT;
3678 }
3679 debug_printf_parse("word->o_assignment='%s'\n", assignment_flag[word->o_assignment]);
3680
Denys Vlasenko38292b62010-09-05 14:49:40 +02003681 if (word->has_quoted_part
Denis Vlasenko55789c62008-06-18 16:30:42 +00003682 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
3683 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003684 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003685 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003686 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003687 char *p = word->data;
3688 while (p[0] == SPECIAL_VAR_SYMBOL
3689 && (p[1] & 0x7f) == '@'
3690 && p[2] == SPECIAL_VAR_SYMBOL
3691 ) {
3692 p += 3;
3693 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00003694 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003695 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003696 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003697 }
Eric Andersen25f27032001-04-26 23:22:31 +00003698
Denis Vlasenko06810332007-05-21 23:30:54 +00003699#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003700 if (ctx->ctx_res_w == RES_FOR) {
Denys Vlasenko38292b62010-09-05 14:49:40 +02003701 if (word->has_quoted_part
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003702 || !is_well_formed_var_name(command->argv[0], '\0')
3703 ) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003704 /* bash says just "not a valid identifier" */
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003705 syntax_error("not a valid identifier in for");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003706 return 1;
3707 }
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003708 /* Force FOR to have just one word (variable name) */
3709 /* NB: basically, this makes hush see "for v in ..."
3710 * syntax as if it is "for v; in ...". FOR and IN become
3711 * two pipe structs in parse tree. */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003712 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003713 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003714#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003715#if ENABLE_HUSH_CASE
3716 /* Force CASE to have just one word */
3717 if (ctx->ctx_res_w == RES_CASE) {
3718 done_pipe(ctx, PIPE_SEQ);
3719 }
3720#endif
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003721
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003722 o_reset_to_empty_unquoted(word);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003723
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003724 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003725 return 0;
3726}
3727
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003728
3729/* Peek ahead in the input to find out if we have a "&n" construct,
3730 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003731 * Return:
3732 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
3733 * REDIRFD_SYNTAX_ERR if syntax error,
3734 * REDIRFD_TO_FILE if no & was seen,
3735 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003736 */
3737#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003738#define parse_redir_right_fd(as_string, input) \
3739 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003740#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003741static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003742{
3743 int ch, d, ok;
3744
3745 ch = i_peek(input);
3746 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003747 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003748
3749 ch = i_getch(input); /* get the & */
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 if (ch == '-') {
3753 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003754 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003755 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003756 }
3757 d = 0;
3758 ok = 0;
3759 while (ch != EOF && isdigit(ch)) {
3760 d = d*10 + (ch-'0');
3761 ok = 1;
3762 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003763 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003764 ch = i_peek(input);
3765 }
3766 if (ok) return d;
3767
3768//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
3769
3770 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003771 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003772}
3773
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003774/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003775 */
3776static int parse_redirect(struct parse_context *ctx,
3777 int fd,
3778 redir_type style,
3779 struct in_str *input)
3780{
3781 struct command *command = ctx->command;
3782 struct redir_struct *redir;
3783 struct redir_struct **redirp;
3784 int dup_num;
3785
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003786 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003787 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003788 /* Check for a '>&1' type redirect */
3789 dup_num = parse_redir_right_fd(&ctx->as_string, input);
3790 if (dup_num == REDIRFD_SYNTAX_ERR)
3791 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003792 } else {
3793 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003794 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003795 if (dup_num) { /* <<-... */
3796 ch = i_getch(input);
3797 nommu_addchr(&ctx->as_string, ch);
3798 ch = i_peek(input);
3799 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003800 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003801
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003802 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003803 int ch = i_peek(input);
3804 if (ch == '|') {
3805 /* >|FILE redirect ("clobbering" >).
3806 * Since we do not support "set -o noclobber" yet,
3807 * >| and > are the same for now. Just eat |.
3808 */
3809 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003810 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003811 }
3812 }
3813
3814 /* Create a new redir_struct and append it to the linked list */
3815 redirp = &command->redirects;
3816 while ((redir = *redirp) != NULL) {
3817 redirp = &(redir->next);
3818 }
3819 *redirp = redir = xzalloc(sizeof(*redir));
3820 /* redir->next = NULL; */
3821 /* redir->rd_filename = NULL; */
3822 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003823 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003824
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003825 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
3826 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003827
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003828 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003829 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003830 /* Erik had a check here that the file descriptor in question
3831 * is legit; I postpone that to "run time"
3832 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003833 debug_printf_parse("duplicating redirect '%d>&%d'\n",
3834 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003835 } else {
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02003836#if 0 /* Instead we emit error message at run time */
3837 if (ctx->pending_redirect) {
3838 /* For example, "cmd > <file" */
3839 die_if_script("syntax error: %s", "invalid redirect");
3840 }
3841#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003842 /* Set ctx->pending_redirect, so we know what to do at the
3843 * end of the next parsed word. */
3844 ctx->pending_redirect = redir;
3845 }
3846 return 0;
3847}
3848
Eric Andersen25f27032001-04-26 23:22:31 +00003849/* If a redirect is immediately preceded by a number, that number is
3850 * supposed to tell which file descriptor to redirect. This routine
3851 * looks for such preceding numbers. In an ideal world this routine
3852 * needs to handle all the following classes of redirects...
3853 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
3854 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
3855 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
3856 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003857 *
3858 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3859 * "2.7 Redirection
3860 * ... If n is quoted, the number shall not be recognized as part of
3861 * the redirection expression. For example:
3862 * echo \2>a
3863 * writes the character 2 into file a"
Denys Vlasenko38292b62010-09-05 14:49:40 +02003864 * We are getting it right by setting ->has_quoted_part on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003865 *
3866 * A -1 return means no valid number was found,
3867 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00003868 */
3869static int redirect_opt_num(o_string *o)
3870{
3871 int num;
3872
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003873 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003874 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003875 num = bb_strtou(o->data, NULL, 10);
3876 if (errno || num < 0)
3877 return -1;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003878 o_reset_to_empty_unquoted(o);
Eric Andersen25f27032001-04-26 23:22:31 +00003879 return num;
3880}
3881
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003882#if BB_MMU
3883#define fetch_till_str(as_string, input, word, skip_tabs) \
3884 fetch_till_str(input, word, skip_tabs)
3885#endif
3886static char *fetch_till_str(o_string *as_string,
3887 struct in_str *input,
3888 const char *word,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003889 int heredoc_flags)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003890{
3891 o_string heredoc = NULL_O_STRING;
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003892 unsigned past_EOL;
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003893 int prev = 0; /* not \ */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003894 int ch;
3895
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003896 goto jump_in;
Denys Vlasenkob8709032011-05-08 21:20:01 +02003897
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003898 while (1) {
3899 ch = i_getch(input);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003900 if (ch != EOF)
3901 nommu_addchr(as_string, ch);
3902 if ((ch == '\n' || ch == EOF)
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003903 && ((heredoc_flags & HEREDOC_QUOTED) || prev != '\\')
3904 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003905 if (strcmp(heredoc.data + past_EOL, word) == 0) {
3906 heredoc.data[past_EOL] = '\0';
3907 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
3908 return heredoc.data;
3909 }
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003910 while (ch == '\n') {
3911 o_addchr(&heredoc, ch);
3912 prev = ch;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003913 jump_in:
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003914 past_EOL = heredoc.length;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003915 do {
3916 ch = i_getch(input);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003917 if (ch != EOF)
3918 nommu_addchr(as_string, ch);
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003919 } while ((heredoc_flags & HEREDOC_SKIPTABS) && ch == '\t');
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003920 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003921 }
3922 if (ch == EOF) {
3923 o_free_unsafe(&heredoc);
3924 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003925 }
3926 o_addchr(&heredoc, ch);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003927 nommu_addchr(as_string, ch);
Denys Vlasenkoc3adfac2010-09-06 11:46:03 +02003928 if (prev == '\\' && ch == '\\')
3929 /* Correctly handle foo\\<eol> (not a line cont.) */
3930 prev = 0; /* not \ */
3931 else
3932 prev = ch;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003933 }
3934}
3935
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003936/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
3937 * and load them all. There should be exactly heredoc_cnt of them.
3938 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003939static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
3940{
3941 struct pipe *pi = ctx->list_head;
3942
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003943 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003944 int i;
3945 struct command *cmd = pi->cmds;
3946
3947 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
3948 pi->num_cmds,
3949 cmd->argv ? cmd->argv[0] : "NONE");
3950 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003951 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003952
3953 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
3954 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003955 while (redir) {
3956 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003957 char *p;
3958
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003959 redir->rd_type = REDIRECT_HEREDOC2;
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003960 /* redir->rd_dup is (ab)used to indicate <<- */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003961 p = fetch_till_str(&ctx->as_string, input,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003962 redir->rd_filename, redir->rd_dup);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003963 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003964 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003965 return 1;
3966 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003967 free(redir->rd_filename);
3968 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003969 heredoc_cnt--;
3970 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003971 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003972 }
3973 cmd++;
3974 }
3975 pi = pi->next;
3976 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003977#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003978 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003979 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003980 bb_error_msg_and_die("heredoc BUG 2");
3981#endif
3982 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003983}
3984
3985
Denys Vlasenkob36abf22010-09-05 14:50:59 +02003986static int run_list(struct pipe *pi);
3987#if BB_MMU
3988#define parse_stream(pstring, input, end_trigger) \
3989 parse_stream(input, end_trigger)
3990#endif
3991static struct pipe *parse_stream(char **pstring,
3992 struct in_str *input,
3993 int end_trigger);
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003994
Eric Andersen25f27032001-04-26 23:22:31 +00003995
Denys Vlasenkoc2704542009-11-20 19:14:19 +01003996#if !ENABLE_HUSH_FUNCTIONS
3997#define parse_group(dest, ctx, input, ch) \
3998 parse_group(ctx, input, ch)
3999#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004000static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00004001 struct in_str *input, int ch)
4002{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004003 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004004 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004005 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004006 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004007 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004008 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004009
4010 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004011#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko38292b62010-09-05 14:49:40 +02004012 if (ch == '(' && !dest->has_quoted_part) {
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004013 if (dest->length)
Denis Vlasenkobb929512009-04-16 10:59:40 +00004014 if (done_word(dest, ctx))
4015 return 1;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004016 if (!command->argv)
4017 goto skip; /* (... */
4018 if (command->argv[1]) { /* word word ... (... */
4019 syntax_error_unexpected_ch('(');
4020 return 1;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004021 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004022 /* it is "word(..." or "word (..." */
4023 do
4024 ch = i_getch(input);
4025 while (ch == ' ' || ch == '\t');
4026 if (ch != ')') {
4027 syntax_error_unexpected_ch(ch);
4028 return 1;
4029 }
4030 nommu_addchr(&ctx->as_string, ch);
4031 do
4032 ch = i_getch(input);
4033 while (ch == ' ' || ch == '\t' || ch == '\n');
4034 if (ch != '{') {
4035 syntax_error_unexpected_ch(ch);
4036 return 1;
4037 }
4038 nommu_addchr(&ctx->as_string, ch);
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004039 command->cmd_type = CMD_FUNCDEF;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004040 goto skip;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004041 }
4042#endif
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004043
4044#if 0 /* Prevented by caller */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004045 if (command->argv /* word [word]{... */
4046 || dest->length /* word{... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004047 || dest->has_quoted_part /* ""{... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004048 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004049 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004050 debug_printf_parse("parse_group return 1: "
4051 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004052 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004053 }
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004054#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004055
4056#if ENABLE_HUSH_FUNCTIONS
4057 skip:
4058#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00004059 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004060 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00004061 endch = ')';
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004062 command->cmd_type = CMD_SUBSHELL;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004063 } else {
4064 /* bash does not allow "{echo...", requires whitespace */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004065 ch = i_peek(input);
4066 if (ch != ' ' && ch != '\t' && ch != '\n'
4067 && ch != '(' /* but "{(..." is allowed (without whitespace) */
4068 ) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004069 syntax_error_unexpected_ch(ch);
4070 return 1;
4071 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004072 if (ch != '(') {
4073 ch = i_getch(input);
4074 nommu_addchr(&ctx->as_string, ch);
4075 }
Eric Andersen25f27032001-04-26 23:22:31 +00004076 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004077
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004078 {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004079#if BB_MMU
4080# define as_string NULL
4081#else
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004082 char *as_string = NULL;
4083#endif
4084 pipe_list = parse_stream(&as_string, input, endch);
4085#if !BB_MMU
4086 if (as_string)
4087 o_addstr(&ctx->as_string, as_string);
4088#endif
4089 /* empty ()/{} or parse error? */
4090 if (!pipe_list || pipe_list == ERR_PTR) {
Denis Vlasenkobb929512009-04-16 10:59:40 +00004091 /* parse_stream already emitted error msg */
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004092 if (!BB_MMU)
4093 free(as_string);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004094 debug_printf_parse("parse_group return 1: "
4095 "parse_stream returned %p\n", pipe_list);
4096 return 1;
4097 }
4098 command->group = pipe_list;
4099#if !BB_MMU
4100 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
4101 command->group_as_string = as_string;
4102 debug_printf_parse("end of group, remembering as:'%s'\n",
4103 command->group_as_string);
4104#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004105#undef as_string
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004106 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004107 debug_printf_parse("parse_group return 0\n");
4108 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004109 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00004110}
4111
Denys Vlasenko46e64982016-09-29 19:50:55 +02004112static int i_getch_and_eat_bkslash_nl(struct in_str *input)
4113{
4114 for (;;) {
4115 int ch, ch2;
4116
4117 ch = i_getch(input);
4118 if (ch != '\\')
4119 return ch;
4120 ch2 = i_peek(input);
4121 if (ch2 != '\n')
4122 return ch;
4123 /* backslash+newline, skip it */
4124 i_getch(input);
4125 }
4126}
4127
Denys Vlasenko657086a2016-09-29 18:07:42 +02004128static int i_peek_and_eat_bkslash_nl(struct in_str *input)
4129{
4130 for (;;) {
4131 int ch, ch2;
4132
4133 ch = i_peek(input);
4134 if (ch != '\\')
4135 return ch;
4136 ch2 = i_peek2(input);
4137 if (ch2 != '\n')
4138 return ch;
4139 /* backslash+newline, skip it */
4140 i_getch(input);
4141 i_getch(input);
4142 }
4143}
4144
Denys Vlasenko0b883582016-12-23 16:49:07 +01004145#if ENABLE_HUSH_TICK || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_DOLLAR_OPS
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004146/* Subroutines for copying $(...) and `...` things */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004147static int add_till_backquote(o_string *dest, struct in_str *input, int in_dquote);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004148/* '...' */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004149static int add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004150{
4151 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004152 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004153 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004154 syntax_error_unterm_ch('\'');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004155 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004156 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004157 if (ch == '\'')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004158 return 1;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004159 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004160 }
4161}
4162/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004163static int add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004164{
4165 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004166 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004167 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004168 syntax_error_unterm_ch('"');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004169 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004170 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004171 if (ch == '"')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004172 return 1;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004173 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004174 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004175 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004176 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004177 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004178 if (ch == '`') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004179 if (!add_till_backquote(dest, input, /*in_dquote:*/ 1))
4180 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004181 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004182 continue;
4183 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00004184 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004185 }
4186}
4187/* Process `cmd` - copy contents until "`" is seen. Complicated by
4188 * \` quoting.
4189 * "Within the backquoted style of command substitution, backslash
4190 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
4191 * The search for the matching backquote shall be satisfied by the first
4192 * backquote found without a preceding backslash; during this search,
4193 * if a non-escaped backquote is encountered within a shell comment,
4194 * a here-document, an embedded command substitution of the $(command)
4195 * form, or a quoted string, undefined results occur. A single-quoted
4196 * or double-quoted string that begins, but does not end, within the
4197 * "`...`" sequence produces undefined results."
4198 * Example Output
4199 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
4200 */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004201static int add_till_backquote(o_string *dest, struct in_str *input, int in_dquote)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004202{
4203 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004204 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004205 if (ch == '`')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004206 return 1;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004207 if (ch == '\\') {
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02004208 /* \x. Copy both unless it is \`, \$, \\ and maybe \" */
4209 ch = i_getch(input);
4210 if (ch != '`'
4211 && ch != '$'
4212 && ch != '\\'
4213 && (!in_dquote || ch != '"')
4214 ) {
4215 o_addchr(dest, '\\');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004216 }
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02004217 }
4218 if (ch == EOF) {
4219 syntax_error_unterm_ch('`');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004220 return 0;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004221 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004222 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004223 }
4224}
4225/* Process $(cmd) - copy contents until ")" is seen. Complicated by
4226 * quoting and nested ()s.
4227 * "With the $(command) style of command substitution, all characters
4228 * following the open parenthesis to the matching closing parenthesis
4229 * constitute the command. Any valid shell script can be used for command,
4230 * except a script consisting solely of redirections which produces
4231 * unspecified results."
4232 * Example Output
4233 * echo $(echo '(TEST)' BEST) (TEST) BEST
4234 * echo $(echo 'TEST)' BEST) TEST) BEST
4235 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
Denys Vlasenko74369502010-05-21 19:52:01 +02004236 *
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004237 * Also adapted to eat ${var%...} and $((...)) constructs, since ... part
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004238 * can contain arbitrary constructs, just like $(cmd).
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004239 * In bash compat mode, it needs to also be able to stop on ':' or '/'
4240 * for ${var:N[:M]} and ${var/P[/R]} parsing.
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004241 */
Denys Vlasenko74369502010-05-21 19:52:01 +02004242#define DOUBLE_CLOSE_CHAR_FLAG 0x80
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004243static int add_till_closing_bracket(o_string *dest, struct in_str *input, unsigned end_ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004244{
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004245 int ch;
Denys Vlasenko74369502010-05-21 19:52:01 +02004246 char dbl = end_ch & DOUBLE_CLOSE_CHAR_FLAG;
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004247# if BASH_SUBSTR || BASH_PATTERN_SUBST
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004248 char end_char2 = end_ch >> 8;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004249# endif
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004250 end_ch &= (DOUBLE_CLOSE_CHAR_FLAG - 1);
4251
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004252 while (1) {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004253 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004254 if (ch == EOF) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004255 syntax_error_unterm_ch(end_ch);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004256 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004257 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004258 if (ch == end_ch
4259# if BASH_SUBSTR || BASH_PATTERN_SUBST
4260 || ch == end_char2
4261# endif
4262 ) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004263 if (!dbl)
4264 break;
4265 /* we look for closing )) of $((EXPR)) */
Denys Vlasenko657086a2016-09-29 18:07:42 +02004266 if (i_peek_and_eat_bkslash_nl(input) == end_ch) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004267 i_getch(input); /* eat second ')' */
4268 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004269 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004270 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004271 o_addchr(dest, ch);
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004272 if (ch == '(' || ch == '{') {
4273 ch = (ch == '(' ? ')' : '}');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004274 if (!add_till_closing_bracket(dest, input, ch))
4275 return 0;
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004276 o_addchr(dest, ch);
4277 continue;
4278 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004279 if (ch == '\'') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004280 if (!add_till_single_quote(dest, input))
4281 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004282 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004283 continue;
4284 }
4285 if (ch == '"') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004286 if (!add_till_double_quote(dest, input))
4287 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004288 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004289 continue;
4290 }
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004291 if (ch == '`') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004292 if (!add_till_backquote(dest, input, /*in_dquote:*/ 0))
4293 return 0;
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004294 o_addchr(dest, ch);
4295 continue;
4296 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004297 if (ch == '\\') {
4298 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004299 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004300 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004301 syntax_error_unterm_ch(')');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004302 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004303 }
Denys Vlasenko657086a2016-09-29 18:07:42 +02004304#if 0
4305 if (ch == '\n') {
4306 /* "backslash+newline", ignore both */
4307 o_delchr(dest); /* undo insertion of '\' */
4308 continue;
4309 }
4310#endif
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004311 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004312 continue;
4313 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004314 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004315 return ch;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004316}
Denys Vlasenko0b883582016-12-23 16:49:07 +01004317#endif /* ENABLE_HUSH_TICK || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_DOLLAR_OPS */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004318
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004319/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004320#if BB_MMU
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004321#define parse_dollar(as_string, dest, input, quote_mask) \
4322 parse_dollar(dest, input, quote_mask)
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004323#define as_string NULL
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004324#endif
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004325static int parse_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004326 o_string *dest,
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004327 struct in_str *input, unsigned char quote_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00004328{
Denys Vlasenko657086a2016-09-29 18:07:42 +02004329 int ch = i_peek_and_eat_bkslash_nl(input); /* first character after the $ */
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004330
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004331 debug_printf_parse("parse_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004332 if (isalpha(ch)) {
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);
Denis Vlasenkod4981312008-07-31 10:34:48 +00004335 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004336 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004337 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004338 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004339 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004340 quote_mask = 0;
Denys Vlasenko657086a2016-09-29 18:07:42 +02004341 ch = i_peek_and_eat_bkslash_nl(input);
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004342 if (!isalnum(ch) && ch != '_') {
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004343 /* End of variable name reached */
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004344 break;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004345 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004346 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004347 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004348 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004349 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004350 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004351 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004352 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004353 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004354 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004355 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004356 o_addchr(dest, ch | quote_mask);
4357 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004358 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004359 case '$': /* pid */
4360 case '!': /* last bg pid */
4361 case '?': /* last exit code */
4362 case '#': /* number of args */
4363 case '*': /* args */
4364 case '@': /* args */
4365 goto make_one_char_var;
4366 case '{': {
Mike Frysingeref3e7fd2009-06-01 14:13:39 -04004367 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4368
Denys Vlasenko74369502010-05-21 19:52:01 +02004369 ch = i_getch(input); /* eat '{' */
4370 nommu_addchr(as_string, ch);
4371
Denys Vlasenko46e64982016-09-29 19:50:55 +02004372 ch = i_getch_and_eat_bkslash_nl(input); /* first char after '{' */
Denys Vlasenko74369502010-05-21 19:52:01 +02004373 /* It should be ${?}, or ${#var},
4374 * or even ${?+subst} - operator acting on a special variable,
4375 * or the beginning of variable name.
4376 */
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004377 if (ch == EOF
4378 || (!strchr(_SPECIAL_VARS_STR, ch) && !isalnum(ch)) /* not one of those */
4379 ) {
Denys Vlasenko74369502010-05-21 19:52:01 +02004380 bad_dollar_syntax:
4381 syntax_error_unterm_str("${name}");
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004382 debug_printf_parse("parse_dollar return 0: unterminated ${name}\n");
4383 return 0;
Denys Vlasenko74369502010-05-21 19:52:01 +02004384 }
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004385 nommu_addchr(as_string, ch);
Denys Vlasenko74369502010-05-21 19:52:01 +02004386 ch |= quote_mask;
4387
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004388 /* It's possible to just call add_till_closing_bracket() at this point.
Denys Vlasenko74369502010-05-21 19:52:01 +02004389 * However, this regresses some of our testsuite cases
4390 * which check invalid constructs like ${%}.
4391 * Oh well... let's check that the var name part is fine... */
4392
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004393 while (1) {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004394 unsigned pos;
4395
Denys Vlasenko74369502010-05-21 19:52:01 +02004396 o_addchr(dest, ch);
4397 debug_printf_parse(": '%c'\n", ch);
4398
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004399 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004400 nommu_addchr(as_string, ch);
Denys Vlasenko74369502010-05-21 19:52:01 +02004401 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00004402 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004403
Denys Vlasenko74369502010-05-21 19:52:01 +02004404 if (!isalnum(ch) && ch != '_') {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004405 unsigned end_ch;
4406 unsigned char last_ch;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004407 /* handle parameter expansions
4408 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
4409 */
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004410 if (!strchr(VAR_SUBST_OPS, ch)) /* ${var<bad_char>... */
Denys Vlasenko74369502010-05-21 19:52:01 +02004411 goto bad_dollar_syntax;
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004412
4413 /* Eat everything until closing '}' (or ':') */
4414 end_ch = '}';
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004415 if (BASH_SUBSTR
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004416 && ch == ':'
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004417 && !strchr(MINUS_PLUS_EQUAL_QUESTION, i_peek(input))
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004418 ) {
4419 /* It's ${var:N[:M]} thing */
4420 end_ch = '}' * 0x100 + ':';
4421 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004422 if (BASH_PATTERN_SUBST
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004423 && ch == '/'
4424 ) {
4425 /* It's ${var/[/]pattern[/repl]} thing */
4426 if (i_peek(input) == '/') { /* ${var//pattern[/repl]}? */
4427 i_getch(input);
4428 nommu_addchr(as_string, '/');
4429 ch = '\\';
4430 }
4431 end_ch = '}' * 0x100 + '/';
4432 }
4433 o_addchr(dest, ch);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004434 again:
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004435 if (!BB_MMU)
4436 pos = dest->length;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004437#if ENABLE_HUSH_DOLLAR_OPS
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004438 last_ch = add_till_closing_bracket(dest, input, end_ch);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004439 if (last_ch == 0) /* error? */
4440 return 0;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004441#else
4442#error Simple code to only allow ${var} is not implemented
4443#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004444 if (as_string) {
4445 o_addstr(as_string, dest->data + pos);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004446 o_addchr(as_string, last_ch);
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004447 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004448
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004449 if ((BASH_SUBSTR || BASH_PATTERN_SUBST)
4450 && (end_ch & 0xff00)
4451 ) {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004452 /* close the first block: */
4453 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004454 /* while parsing N from ${var:N[:M]}
4455 * or pattern from ${var/[/]pattern[/repl]} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004456 if ((end_ch & 0xff) == last_ch) {
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004457 /* got ':' or '/'- parse the rest */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004458 end_ch = '}';
4459 goto again;
4460 }
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004461 /* got '}' */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004462 if (BASH_SUBSTR && end_ch == '}' * 0x100 + ':') {
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004463 /* it's ${var:N} - emulate :999999999 */
4464 o_addstr(dest, "999999999");
4465 } /* else: it's ${var/[/]pattern} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004466 }
Denys Vlasenko74369502010-05-21 19:52:01 +02004467 break;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004468 }
Denys Vlasenko74369502010-05-21 19:52:01 +02004469 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004470 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4471 break;
4472 }
Denys Vlasenko0b883582016-12-23 16:49:07 +01004473#if ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004474 case '(': {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004475 unsigned pos;
4476
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004477 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004478 nommu_addchr(as_string, ch);
Denys Vlasenko0b883582016-12-23 16:49:07 +01004479# if ENABLE_FEATURE_SH_MATH
Denys Vlasenko657086a2016-09-29 18:07:42 +02004480 if (i_peek_and_eat_bkslash_nl(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004481 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004482 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004483 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4484 o_addchr(dest, /*quote_mask |*/ '+');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004485 if (!BB_MMU)
4486 pos = dest->length;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004487 if (!add_till_closing_bracket(dest, input, ')' | DOUBLE_CLOSE_CHAR_FLAG))
4488 return 0; /* error */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004489 if (as_string) {
4490 o_addstr(as_string, dest->data + pos);
4491 o_addchr(as_string, ')');
4492 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004493 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004494 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004495 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004496 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004497# endif
4498# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004499 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4500 o_addchr(dest, quote_mask | '`');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004501 if (!BB_MMU)
4502 pos = dest->length;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004503 if (!add_till_closing_bracket(dest, input, ')'))
4504 return 0; /* error */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004505 if (as_string) {
4506 o_addstr(as_string, dest->data + pos);
Denys Vlasenkob70cef72010-01-12 13:45:45 +01004507 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004508 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004509 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004510# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004511 break;
4512 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004513#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004514 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004515 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004516 nommu_addchr(as_string, ch);
Denys Vlasenko657086a2016-09-29 18:07:42 +02004517 ch = i_peek_and_eat_bkslash_nl(input);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004518 if (isalnum(ch)) { /* it's $_name or $_123 */
4519 ch = '_';
4520 goto make_var;
4521 }
4522 /* else: it's $_ */
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02004523 /* TODO: $_ and $-: */
4524 /* $_ Shell or shell script name; or last argument of last command
4525 * (if last command wasn't a pipe; if it was, bash sets $_ to "");
4526 * but in command's env, set to full pathname used to invoke it */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004527 /* $- Option flags set by set builtin or shell options (-i etc) */
4528 default:
4529 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00004530 }
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004531 debug_printf_parse("parse_dollar return 1 (ok)\n");
4532 return 1;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004533#undef as_string
Eric Andersen25f27032001-04-26 23:22:31 +00004534}
4535
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004536#if BB_MMU
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004537# if BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004538#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4539 encode_string(dest, input, dquote_end, process_bkslash)
4540# else
4541/* only ${var/pattern/repl} (its pattern part) needs additional mode */
4542#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4543 encode_string(dest, input, dquote_end)
4544# endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004545#define as_string NULL
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004546
4547#else /* !MMU */
4548
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004549# if BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004550/* all parameters are needed, no macro tricks */
4551# else
4552#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4553 encode_string(as_string, dest, input, dquote_end)
4554# endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004555#endif
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004556static int encode_string(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004557 o_string *dest,
4558 struct in_str *input,
Denys Vlasenko14e289b2010-09-10 10:15:18 +02004559 int dquote_end,
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004560 int process_bkslash)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004561{
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004562#if !BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004563 const int process_bkslash = 1;
4564#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004565 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004566 int next;
4567
4568 again:
4569 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004570 if (ch != EOF)
4571 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004572 if (ch == dquote_end) { /* may be only '"' or EOF */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004573 debug_printf_parse("encode_string return 1 (ok)\n");
4574 return 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004575 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004576 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004577 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004578 syntax_error_unterm_ch('"');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004579 return 0; /* error */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004580 }
4581 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004582 if (ch != '\n') {
4583 next = i_peek(input);
4584 }
Denys Vlasenkof37eb392009-10-18 11:46:35 +02004585 debug_printf_parse("\" ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004586 ch, ch, !!(dest->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004587 if (process_bkslash && ch == '\\') {
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004588 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004589 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004590 xfunc_die();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004591 }
4592 /* bash:
4593 * "The backslash retains its special meaning [in "..."]
4594 * only when followed by one of the following characters:
4595 * $, `, ", \, or <newline>. A double quote may be quoted
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02004596 * within double quotes by preceding it with a backslash."
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004597 * NB: in (unquoted) heredoc, above does not apply to ",
4598 * therefore we check for it by "next == dquote_end" cond.
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004599 */
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004600 if (next == dquote_end || strchr("$`\\\n", next)) {
Denys Vlasenko850b15b2010-09-09 12:58:19 +02004601 ch = i_getch(input); /* eat next */
4602 if (ch == '\n')
4603 goto again; /* skip \<newline> */
Denys Vlasenko4f870492010-09-10 11:06:01 +02004604 } /* else: ch remains == '\\', and we double it below: */
4605 o_addqchr(dest, ch); /* \c if c is a glob char, else just c */
Denys Vlasenko850b15b2010-09-09 12:58:19 +02004606 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004607 goto again;
4608 }
4609 if (ch == '$') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004610 if (!parse_dollar(as_string, dest, input, /*quote_mask:*/ 0x80)) {
4611 debug_printf_parse("encode_string return 0: "
4612 "parse_dollar returned 0 (error)\n");
4613 return 0;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004614 }
4615 goto again;
4616 }
4617#if ENABLE_HUSH_TICK
4618 if (ch == '`') {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004619 //unsigned pos = dest->length;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004620 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4621 o_addchr(dest, 0x80 | '`');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004622 if (!add_till_backquote(dest, input, /*in_dquote:*/ dquote_end == '"'))
4623 return 0; /* error */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004624 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4625 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00004626 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004627 }
4628#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00004629 o_addQchr(dest, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004630 goto again;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004631#undef as_string
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004632}
4633
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004634/*
4635 * Scan input until EOF or end_trigger char.
4636 * Return a list of pipes to execute, or NULL on EOF
4637 * or if end_trigger character is met.
Denys Vlasenkocecbc982011-03-30 18:54:52 +02004638 * On syntax error, exit if shell is not interactive,
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004639 * reset parsing machinery and start parsing anew,
4640 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004641 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004642static struct pipe *parse_stream(char **pstring,
4643 struct in_str *input,
4644 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00004645{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004646 struct parse_context ctx;
4647 o_string dest = NULL_O_STRING;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004648 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00004649
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004650 /* Single-quote triggers a bypass of the main loop until its mate is
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004651 * found. When recursing, quote state is passed in via dest->o_expflags.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004652 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004653 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
Denys Vlasenko90a99042009-09-06 02:36:23 +02004654 end_trigger ? end_trigger : 'X');
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004655 debug_enter();
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004656
Denys Vlasenkof37eb392009-10-18 11:46:35 +02004657 /* If very first arg is "" or '', dest.data may end up NULL.
4658 * Preventing this: */
4659 o_addchr(&dest, '\0');
4660 dest.length = 0;
4661
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004662 /* We used to separate words on $IFS here. This was wrong.
4663 * $IFS is used only for word splitting when $var is expanded,
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004664 * here we should use blank chars as separators, not $IFS
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004665 */
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004666
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004667 if (MAYBE_ASSIGNMENT != 0)
4668 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004669 initialize_context(&ctx);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004670 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004671 while (1) {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004672 const char *is_blank;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004673 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004674 int ch;
4675 int next;
4676 int redir_fd;
4677 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004678
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004679 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004680 debug_printf_parse(": ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004681 ch, ch, !!(dest.o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004682 if (ch == EOF) {
4683 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004684
4685 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004686 syntax_error_unterm_str("here document");
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004687 goto parse_error;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004688 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004689 if (end_trigger == ')') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004690 syntax_error_unterm_ch('(');
4691 goto parse_error;
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004692 }
Denys Vlasenko42246472016-11-07 16:22:35 +01004693 if (end_trigger == '}') {
4694 syntax_error_unterm_ch('{');
4695 goto parse_error;
4696 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004697
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004698 if (done_word(&dest, &ctx)) {
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004699 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004700 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004701 o_free(&dest);
4702 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004703 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004704 /* If we got nothing... */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004705 /* (this makes bare "&" cmd a no-op.
4706 * bash says: "syntax error near unexpected token '&'") */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004707 if (pi->num_cmds == 0
Denys Vlasenko60cb48c2013-01-14 15:57:44 +01004708 IF_HAS_KEYWORDS(&& pi->res_word == RES_NONE)
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004709 ) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004710 free_pipe_list(pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004711 pi = NULL;
4712 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004713#if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02004714 debug_printf_parse("as_string1 '%s'\n", ctx.as_string.data);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004715 if (pstring)
4716 *pstring = ctx.as_string.data;
4717 else
4718 o_free_unsafe(&ctx.as_string);
4719#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004720 debug_leave();
4721 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004722 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004723 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004724 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004725
4726 next = '\0';
4727 if (ch != '\n')
4728 next = i_peek(input);
4729
4730 is_special = "{}<>;&|()#'" /* special outside of "str" */
4731 "\\$\"" IF_HUSH_TICK("`"); /* always special */
4732 /* Are { and } special here? */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02004733 if (ctx.command->argv /* word [word]{... - non-special */
4734 || dest.length /* word{... - non-special */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004735 || dest.has_quoted_part /* ""{... - non-special */
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004736 || (next != ';' /* }; - special */
4737 && next != ')' /* }) - special */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004738 && next != '(' /* {( - special */
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004739 && next != '&' /* }& and }&& ... - special */
4740 && next != '|' /* }|| ... - special */
4741 && !strchr(defifs, next) /* {word - non-special */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02004742 )
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004743 ) {
4744 /* They are not special, skip "{}" */
4745 is_special += 2;
4746 }
4747 is_special = strchr(is_special, ch);
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004748 is_blank = strchr(defifs, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004749
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004750 if (!is_special && !is_blank) { /* ordinary char */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00004751 ordinary_char:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004752 o_addQchr(&dest, ch);
4753 if ((dest.o_assignment == MAYBE_ASSIGNMENT
4754 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00004755 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004756 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00004757 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004758 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004759 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko55789c62008-06-18 16:30:42 +00004760 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004761 continue;
4762 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004763
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004764 if (is_blank) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004765 if (done_word(&dest, &ctx)) {
4766 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00004767 }
Denis Vlasenko37181682009-04-03 03:19:15 +00004768 if (ch == '\n') {
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004769 /* Is this a case when newline is simply ignored?
4770 * Some examples:
4771 * "cmd | <newline> cmd ..."
4772 * "case ... in <newline> word) ..."
4773 */
4774 if (IS_NULL_CMD(ctx.command)
4775 && dest.length == 0 && !dest.has_quoted_part
Denis Vlasenkof1736072008-07-31 10:09:26 +00004776 ) {
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004777 /* This newline can be ignored. But...
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004778 * Without check #1, interactive shell
4779 * ignores even bare <newline>,
4780 * and shows the continuation prompt:
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004781 * ps1_prompt$ <enter>
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004782 * ps2> _ <=== wrong, should be ps1
4783 * Without check #2, "cmd & <newline>"
4784 * is similarly mistreated.
4785 * (BTW, this makes "cmd & cmd"
4786 * and "cmd && cmd" non-orthogonal.
4787 * Really, ask yourself, why
4788 * "cmd && <newline>" doesn't start
4789 * cmd but waits for more input?
4790 * No reason...)
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004791 */
4792 struct pipe *pi = ctx.list_head;
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004793 if (pi->num_cmds != 0 /* check #1 */
4794 && pi->followup != PIPE_BG /* check #2 */
4795 ) {
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004796 continue;
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004797 }
Denis Vlasenkof1736072008-07-31 10:09:26 +00004798 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004799 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004800 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004801 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
4802 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004803 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004804 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004805 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004806 heredoc_cnt = 0;
4807 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004808 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004809 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko240c2552009-04-03 03:45:05 +00004810 ch = ';';
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004811 /* note: if (is_blank) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004812 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004813 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004814 }
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00004815
4816 /* "cmd}" or "cmd }..." without semicolon or &:
4817 * } is an ordinary char in this case, even inside { cmd; }
4818 * Pathological example: { ""}; } should exec "}" cmd
4819 */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004820 if (ch == '}') {
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004821 if (dest.length != 0 /* word} */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004822 || dest.has_quoted_part /* ""} */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004823 ) {
4824 goto ordinary_char;
4825 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004826 if (!IS_NULL_CMD(ctx.command)) { /* cmd } */
4827 /* Generally, there should be semicolon: "cmd; }"
4828 * However, bash allows to omit it if "cmd" is
4829 * a group. Examples:
4830 * { { echo 1; } }
4831 * {(echo 1)}
4832 * { echo 0 >&2 | { echo 1; } }
4833 * { while false; do :; done }
4834 * { case a in b) ;; esac }
4835 */
4836 if (ctx.command->group)
4837 goto term_group;
4838 goto ordinary_char;
4839 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004840 if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004841 /* Can't be an end of {cmd}, skip the check */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004842 goto skip_end_trigger;
4843 /* else: } does terminate a group */
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00004844 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004845 term_group:
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004846 if (end_trigger && end_trigger == ch
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004847 && (ch != ';' || heredoc_cnt == 0)
4848#if ENABLE_HUSH_CASE
4849 && (ch != ')'
4850 || ctx.ctx_res_w != RES_MATCH
Denys Vlasenko38292b62010-09-05 14:49:40 +02004851 || (!dest.has_quoted_part && strcmp(dest.data, "esac") == 0)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004852 )
4853#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004854 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004855 if (heredoc_cnt) {
4856 /* This is technically valid:
4857 * { cat <<HERE; }; echo Ok
4858 * heredoc
4859 * heredoc
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004860 * HERE
4861 * but we don't support this.
4862 * We require heredoc to be in enclosing {}/(),
4863 * if any.
4864 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004865 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004866 goto parse_error;
4867 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004868 if (done_word(&dest, &ctx)) {
4869 goto parse_error;
4870 }
4871 done_pipe(&ctx, PIPE_SEQ);
4872 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004873 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko240c2552009-04-03 03:45:05 +00004874 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00004875 if (!HAS_KEYWORDS
Denys Vlasenko60cb48c2013-01-14 15:57:44 +01004876 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00004877 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004878 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004879#if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02004880 debug_printf_parse("as_string2 '%s'\n", ctx.as_string.data);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004881 if (pstring)
4882 *pstring = ctx.as_string.data;
4883 else
4884 o_free_unsafe(&ctx.as_string);
4885#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004886 debug_leave();
4887 debug_printf_parse("parse_stream return %p: "
4888 "end_trigger char found\n",
4889 ctx.list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004890 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004891 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004892 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004893 skip_end_trigger:
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004894 if (is_blank)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004895 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004896
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004897 /* Catch <, > before deciding whether this word is
4898 * an assignment. a=1 2>z b=2: b=2 is still assignment */
4899 switch (ch) {
4900 case '>':
4901 redir_fd = redirect_opt_num(&dest);
4902 if (done_word(&dest, &ctx)) {
4903 goto parse_error;
4904 }
4905 redir_style = REDIRECT_OVERWRITE;
4906 if (next == '>') {
4907 redir_style = REDIRECT_APPEND;
4908 ch = i_getch(input);
4909 nommu_addchr(&ctx.as_string, ch);
4910 }
4911#if 0
4912 else if (next == '(') {
4913 syntax_error(">(process) not supported");
4914 goto parse_error;
4915 }
4916#endif
4917 if (parse_redirect(&ctx, redir_fd, redir_style, input))
4918 goto parse_error;
4919 continue; /* back to top of while (1) */
4920 case '<':
4921 redir_fd = redirect_opt_num(&dest);
4922 if (done_word(&dest, &ctx)) {
4923 goto parse_error;
4924 }
4925 redir_style = REDIRECT_INPUT;
4926 if (next == '<') {
4927 redir_style = REDIRECT_HEREDOC;
4928 heredoc_cnt++;
4929 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
4930 ch = i_getch(input);
4931 nommu_addchr(&ctx.as_string, ch);
4932 } else if (next == '>') {
4933 redir_style = REDIRECT_IO;
4934 ch = i_getch(input);
4935 nommu_addchr(&ctx.as_string, ch);
4936 }
4937#if 0
4938 else if (next == '(') {
4939 syntax_error("<(process) not supported");
4940 goto parse_error;
4941 }
4942#endif
4943 if (parse_redirect(&ctx, redir_fd, redir_style, input))
4944 goto parse_error;
4945 continue; /* back to top of while (1) */
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004946 case '#':
4947 if (dest.length == 0 && !dest.has_quoted_part) {
4948 /* skip "#comment" */
4949 while (1) {
4950 ch = i_peek(input);
4951 if (ch == EOF || ch == '\n')
4952 break;
4953 i_getch(input);
4954 /* note: we do not add it to &ctx.as_string */
4955 }
4956 nommu_addchr(&ctx.as_string, '\n');
4957 continue; /* back to top of while (1) */
4958 }
4959 break;
4960 case '\\':
4961 if (next == '\n') {
4962 /* It's "\<newline>" */
4963#if !BB_MMU
4964 /* Remove trailing '\' from ctx.as_string */
4965 ctx.as_string.data[--ctx.as_string.length] = '\0';
4966#endif
4967 ch = i_getch(input); /* eat it */
4968 continue; /* back to top of while (1) */
4969 }
4970 break;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004971 }
4972
4973 if (dest.o_assignment == MAYBE_ASSIGNMENT
4974 /* check that we are not in word in "a=1 2>word b=1": */
4975 && !ctx.pending_redirect
4976 ) {
4977 /* ch is a special char and thus this word
4978 * cannot be an assignment */
4979 dest.o_assignment = NOT_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004980 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004981 }
4982
Denys Vlasenkocbfe6ad2009-08-12 19:47:44 +02004983 /* Note: nommu_addchr(&ctx.as_string, ch) is already done */
4984
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004985 switch (ch) {
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004986 case '#': /* non-comment #: "echo a#b" etc */
4987 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004988 break;
4989 case '\\':
4990 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004991 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004992 xfunc_die();
Eric Andersen25f27032001-04-26 23:22:31 +00004993 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004994 ch = i_getch(input);
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004995 /* note: ch != '\n' (that case does not reach this place) */
4996 o_addchr(&dest, '\\');
4997 /*nommu_addchr(&ctx.as_string, '\\'); - already done */
4998 o_addchr(&dest, ch);
4999 nommu_addchr(&ctx.as_string, ch);
5000 /* Example: echo Hello \2>file
5001 * we need to know that word 2 is quoted */
5002 dest.has_quoted_part = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005003 break;
5004 case '$':
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005005 if (!parse_dollar(&ctx.as_string, &dest, input, /*quote_mask:*/ 0)) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005006 debug_printf_parse("parse_stream parse error: "
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005007 "parse_dollar returned 0 (error)\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005008 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005009 }
Eric Andersen25f27032001-04-26 23:22:31 +00005010 break;
5011 case '\'':
Denys Vlasenko38292b62010-09-05 14:49:40 +02005012 dest.has_quoted_part = 1;
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005013 if (next == '\'' && !ctx.pending_redirect) {
5014 insert_empty_quoted_str_marker:
5015 nommu_addchr(&ctx.as_string, next);
5016 i_getch(input); /* eat second ' */
5017 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5018 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5019 } else {
5020 while (1) {
5021 ch = i_getch(input);
5022 if (ch == EOF) {
5023 syntax_error_unterm_ch('\'');
5024 goto parse_error;
5025 }
5026 nommu_addchr(&ctx.as_string, ch);
5027 if (ch == '\'')
5028 break;
5029 o_addqchr(&dest, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005030 }
Eric Andersen25f27032001-04-26 23:22:31 +00005031 }
Eric Andersen25f27032001-04-26 23:22:31 +00005032 break;
5033 case '"':
Denys Vlasenko38292b62010-09-05 14:49:40 +02005034 dest.has_quoted_part = 1;
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005035 if (next == '"' && !ctx.pending_redirect)
5036 goto insert_empty_quoted_str_marker;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005037 if (dest.o_assignment == NOT_ASSIGNMENT)
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02005038 dest.o_expflags |= EXP_FLAG_ESC_GLOB_CHARS;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005039 if (!encode_string(&ctx.as_string, &dest, input, '"', /*process_bkslash:*/ 1))
Denys Vlasenko77a7b552010-09-09 12:40:03 +02005040 goto parse_error;
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02005041 dest.o_expflags &= ~EXP_FLAG_ESC_GLOB_CHARS;
Eric Andersen25f27032001-04-26 23:22:31 +00005042 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005043#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005044 case '`': {
Denys Vlasenko60a94142011-05-13 20:57:01 +02005045 USE_FOR_NOMMU(unsigned pos;)
Denys Vlasenko2e48d532010-05-22 17:30:39 +02005046
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005047 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5048 o_addchr(&dest, '`');
Denys Vlasenko60a94142011-05-13 20:57:01 +02005049 USE_FOR_NOMMU(pos = dest.length;)
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005050 if (!add_till_backquote(&dest, input, /*in_dquote:*/ 0))
5051 goto parse_error;
Denys Vlasenko2e48d532010-05-22 17:30:39 +02005052# if !BB_MMU
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005053 o_addstr(&ctx.as_string, dest.data + pos);
5054 o_addchr(&ctx.as_string, '`');
Denys Vlasenko2e48d532010-05-22 17:30:39 +02005055# endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005056 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5057 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00005058 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005059 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005060#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005061 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005062#if ENABLE_HUSH_CASE
5063 case_semi:
5064#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005065 if (done_word(&dest, &ctx)) {
5066 goto parse_error;
5067 }
5068 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005069#if ENABLE_HUSH_CASE
5070 /* Eat multiple semicolons, detect
5071 * whether it means something special */
5072 while (1) {
5073 ch = i_peek(input);
5074 if (ch != ';')
5075 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005076 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005077 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02005078 if (ctx.ctx_res_w == RES_CASE_BODY) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005079 ctx.ctx_dsemicolon = 1;
5080 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005081 break;
5082 }
5083 }
5084#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005085 new_cmd:
5086 /* We just finished a cmd. New one may start
5087 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005088 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02005089 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Eric Andersen25f27032001-04-26 23:22:31 +00005090 break;
5091 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005092 if (done_word(&dest, &ctx)) {
5093 goto parse_error;
5094 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005095 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005096 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005097 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005098 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00005099 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005100 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00005101 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005102 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005103 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005104 if (done_word(&dest, &ctx)) {
5105 goto parse_error;
5106 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005107#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005108 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00005109 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005110#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005111 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005112 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005113 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005114 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00005115 } else {
5116 /* we could pick up a file descriptor choice here
5117 * with redirect_opt_num(), but bash doesn't do it.
5118 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005119 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00005120 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005121 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005122 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005123#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00005124 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005125 if (ctx.ctx_res_w == RES_MATCH
5126 && ctx.command->argv == NULL /* not (word|(... */
5127 && dest.length == 0 /* not word(... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02005128 && dest.has_quoted_part == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005129 ) {
5130 continue;
5131 }
5132#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005133 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005134 if (parse_group(&dest, &ctx, input, ch) != 0) {
5135 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005136 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005137 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005138 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005139#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005140 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005141 goto case_semi;
5142#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005143 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005144 /* proper use of this character is caught by end_trigger:
5145 * if we see {, we call parse_group(..., end_trigger='}')
5146 * and it will match } earlier (not here). */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005147 syntax_error_unexpected_ch(ch);
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01005148 G.last_exitcode = 2;
5149 goto parse_error1;
Eric Andersen25f27032001-04-26 23:22:31 +00005150 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005151 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005152 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005153 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005154 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005155
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005156 parse_error:
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01005157 G.last_exitcode = 1;
5158 parse_error1:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005159 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005160 struct parse_context *pctx;
5161 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005162
5163 /* Clean up allocated tree.
Denys Vlasenko764b2f02009-06-07 16:05:04 +02005164 * Sample for finding leaks on syntax error recovery path.
5165 * Run it from interactive shell, watch pmap `pidof hush`.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005166 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00005167 * Samples to catch leaks at execution:
Denys Vlasenko5d5a6112016-11-07 19:36:50 +01005168 * while if (true | { true;}); then echo ok; fi; do break; done
5169 * 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 +00005170 */
5171 pctx = &ctx;
5172 do {
5173 /* Update pipe/command counts,
5174 * otherwise freeing may miss some */
5175 done_pipe(pctx, PIPE_SEQ);
5176 debug_printf_clean("freeing list %p from ctx %p\n",
5177 pctx->list_head, pctx);
5178 debug_print_tree(pctx->list_head, 0);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005179 free_pipe_list(pctx->list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005180 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005181#if !BB_MMU
5182 o_free_unsafe(&pctx->as_string);
5183#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005184 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005185 if (pctx != &ctx) {
5186 free(pctx);
5187 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005188 IF_HAS_KEYWORDS(pctx = p2;)
5189 } while (HAS_KEYWORDS && pctx);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005190
Denys Vlasenkoa439fa92011-03-30 19:11:46 +02005191 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005192#if !BB_MMU
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005193 if (pstring)
5194 *pstring = NULL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005195#endif
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005196 debug_leave();
5197 return ERR_PTR;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005198 }
Eric Andersen25f27032001-04-26 23:22:31 +00005199}
5200
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005201
5202/*** Execution routines ***/
5203
5204/* Expansion can recurse, need forward decls: */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005205#if !BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005206/* only ${var/pattern/repl} (its pattern part) needs additional mode */
5207#define expand_string_to_string(str, do_unbackslash) \
5208 expand_string_to_string(str)
5209#endif
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005210static char *expand_string_to_string(const char *str, int do_unbackslash);
Denys Vlasenko26777aa2010-11-22 23:49:10 +01005211#if ENABLE_HUSH_TICK
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005212static int process_command_subs(o_string *dest, const char *s);
Denys Vlasenko26777aa2010-11-22 23:49:10 +01005213#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005214
5215/* expand_strvec_to_strvec() takes a list of strings, expands
5216 * all variable references within and returns a pointer to
5217 * a list of expanded strings, possibly with larger number
5218 * of strings. (Think VAR="a b"; echo $VAR).
5219 * This new list is allocated as a single malloc block.
5220 * NULL-terminated list of char* pointers is at the beginning of it,
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005221 * followed by strings themselves.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005222 * Caller can deallocate entire list by single free(list). */
5223
Denys Vlasenko238081f2010-10-03 14:26:26 +02005224/* A horde of its helpers come first: */
5225
5226static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
5227{
5228 while (--len >= 0) {
Denys Vlasenko9e800222010-10-03 14:28:04 +02005229 char c = *str++;
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005230
Denys Vlasenko9e800222010-10-03 14:28:04 +02005231#if ENABLE_HUSH_BRACE_EXPANSION
5232 if (c == '{' || c == '}') {
5233 /* { -> \{, } -> \} */
5234 o_addchr(o, '\\');
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005235 /* And now we want to add { or } and continue:
5236 * o_addchr(o, c);
5237 * continue;
Denys Vlasenko10ad6222017-04-17 16:13:32 +02005238 * luckily, just falling through achieves this.
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005239 */
Denys Vlasenko9e800222010-10-03 14:28:04 +02005240 }
5241#endif
5242 o_addchr(o, c);
5243 if (c == '\\') {
Denys Vlasenko238081f2010-10-03 14:26:26 +02005244 /* \z -> \\\z; \<eol> -> \\<eol> */
5245 o_addchr(o, '\\');
5246 if (len) {
5247 len--;
5248 o_addchr(o, '\\');
5249 o_addchr(o, *str++);
5250 }
5251 }
5252 }
5253}
5254
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005255/* Store given string, finalizing the word and starting new one whenever
5256 * we encounter IFS char(s). This is used for expanding variable values.
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005257 * End-of-string does NOT finalize word: think about 'echo -$VAR-'.
5258 * Return in *ended_with_ifs:
5259 * 1 - ended with IFS char, else 0 (this includes case of empty str).
5260 */
5261static int expand_on_ifs(int *ended_with_ifs, o_string *output, int n, const char *str)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005262{
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005263 int last_is_ifs = 0;
5264
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005265 while (1) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005266 int word_len;
5267
5268 if (!*str) /* EOL - do not finalize word */
5269 break;
5270 word_len = strcspn(str, G.ifs);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005271 if (word_len) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005272 /* We have WORD_LEN leading non-IFS chars */
Denys Vlasenko238081f2010-10-03 14:26:26 +02005273 if (!(output->o_expflags & EXP_FLAG_GLOB)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005274 o_addblock(output, str, word_len);
Denys Vlasenko238081f2010-10-03 14:26:26 +02005275 } else {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005276 /* Protect backslashes against globbing up :)
Denys Vlasenkoa769e022010-09-10 10:12:34 +02005277 * Example: "v='\*'; echo b$v" prints "b\*"
5278 * (and does not try to glob on "*")
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005279 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005280 o_addblock_duplicate_backslash(output, str, word_len);
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005281 /*/ Why can't we do it easier? */
5282 /*o_addblock(output, str, word_len); - WRONG: "v='\*'; echo Z$v" prints "Z*" instead of "Z\*" */
5283 /*o_addqblock(output, str, word_len); - WRONG: "v='*'; echo Z$v" prints "Z*" instead of Z* files */
5284 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005285 last_is_ifs = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005286 str += word_len;
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005287 if (!*str) /* EOL - do not finalize word */
5288 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005289 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005290
5291 /* We know str here points to at least one IFS char */
5292 last_is_ifs = 1;
5293 str += strspn(str, G.ifs); /* skip IFS chars */
5294 if (!*str) /* EOL - do not finalize word */
5295 break;
5296
5297 /* Start new word... but not always! */
5298 /* Case "v=' a'; echo ''$v": we do need to finalize empty word: */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005299 if (output->has_quoted_part
5300 /* Case "v=' a'; echo $v":
5301 * here nothing precedes the space in $v expansion,
5302 * therefore we should not finish the word
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005303 * (IOW: if there *is* word to finalize, only then do it):
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005304 */
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005305 || (n > 0 && output->data[output->length - 1])
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005306 ) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005307 o_addchr(output, '\0');
5308 debug_print_list("expand_on_ifs", output, n);
5309 n = o_save_ptr(output, n);
5310 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005311 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005312
5313 if (ended_with_ifs)
5314 *ended_with_ifs = last_is_ifs;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005315 debug_print_list("expand_on_ifs[1]", output, n);
5316 return n;
5317}
5318
5319/* Helper to expand $((...)) and heredoc body. These act as if
5320 * they are in double quotes, with the exception that they are not :).
5321 * Just the rules are similar: "expand only $var and `cmd`"
5322 *
5323 * Returns malloced string.
5324 * As an optimization, we return NULL if expansion is not needed.
5325 */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005326#if !BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005327/* only ${var/pattern/repl} (its pattern part) needs additional mode */
5328#define encode_then_expand_string(str, process_bkslash, do_unbackslash) \
5329 encode_then_expand_string(str)
5330#endif
5331static char *encode_then_expand_string(const char *str, int process_bkslash, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005332{
5333 char *exp_str;
5334 struct in_str input;
5335 o_string dest = NULL_O_STRING;
5336
5337 if (!strchr(str, '$')
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02005338 && !strchr(str, '\\')
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005339#if ENABLE_HUSH_TICK
5340 && !strchr(str, '`')
5341#endif
5342 ) {
5343 return NULL;
5344 }
5345
5346 /* We need to expand. Example:
5347 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
5348 */
5349 setup_string_in_str(&input, str);
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005350 encode_string(NULL, &dest, &input, EOF, process_bkslash);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005351//TODO: error check (encode_string returns 0 on error)?
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005352 //bb_error_msg("'%s' -> '%s'", str, dest.data);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005353 exp_str = expand_string_to_string(dest.data, /*unbackslash:*/ do_unbackslash);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005354 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
5355 o_free_unsafe(&dest);
5356 return exp_str;
5357}
5358
Denys Vlasenko0b883582016-12-23 16:49:07 +01005359#if ENABLE_FEATURE_SH_MATH
Denys Vlasenko063847d2010-09-15 13:33:02 +02005360static arith_t expand_and_evaluate_arith(const char *arg, const char **errmsg_p)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005361{
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005362 arith_state_t math_state;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005363 arith_t res;
5364 char *exp_str;
5365
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005366 math_state.lookupvar = get_local_var_value;
5367 math_state.setvar = set_local_var_from_halves;
5368 //math_state.endofname = endofname;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005369 exp_str = encode_then_expand_string(arg, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005370 res = arith(&math_state, exp_str ? exp_str : arg);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005371 free(exp_str);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005372 if (errmsg_p)
5373 *errmsg_p = math_state.errmsg;
5374 if (math_state.errmsg)
5375 die_if_script(math_state.errmsg);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005376 return res;
5377}
5378#endif
5379
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005380#if BASH_PATTERN_SUBST
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005381/* ${var/[/]pattern[/repl]} helpers */
5382static char *strstr_pattern(char *val, const char *pattern, int *size)
5383{
5384 while (1) {
5385 char *end = scan_and_match(val, pattern, SCAN_MOVE_FROM_RIGHT + SCAN_MATCH_LEFT_HALF);
5386 debug_printf_varexp("val:'%s' pattern:'%s' end:'%s'\n", val, pattern, end);
5387 if (end) {
5388 *size = end - val;
5389 return val;
5390 }
5391 if (*val == '\0')
5392 return NULL;
5393 /* Optimization: if "*pat" did not match the start of "string",
5394 * we know that "tring", "ring" etc will not match too:
5395 */
5396 if (pattern[0] == '*')
5397 return NULL;
5398 val++;
5399 }
5400}
5401static char *replace_pattern(char *val, const char *pattern, const char *repl, char exp_op)
5402{
5403 char *result = NULL;
5404 unsigned res_len = 0;
5405 unsigned repl_len = strlen(repl);
5406
5407 while (1) {
5408 int size;
5409 char *s = strstr_pattern(val, pattern, &size);
5410 if (!s)
5411 break;
5412
5413 result = xrealloc(result, res_len + (s - val) + repl_len + 1);
5414 memcpy(result + res_len, val, s - val);
5415 res_len += s - val;
5416 strcpy(result + res_len, repl);
5417 res_len += repl_len;
5418 debug_printf_varexp("val:'%s' s:'%s' result:'%s'\n", val, s, result);
5419
5420 val = s + size;
5421 if (exp_op == '/')
5422 break;
5423 }
5424 if (val[0] && result) {
5425 result = xrealloc(result, res_len + strlen(val) + 1);
5426 strcpy(result + res_len, val);
5427 debug_printf_varexp("val:'%s' result:'%s'\n", val, result);
5428 }
5429 debug_printf_varexp("result:'%s'\n", result);
5430 return result;
5431}
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005432#endif /* BASH_PATTERN_SUBST */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005433
5434/* Helper:
5435 * Handles <SPECIAL_VAR_SYMBOL>varname...<SPECIAL_VAR_SYMBOL> construct.
5436 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005437static NOINLINE const char *expand_one_var(char **to_be_freed_pp, char *arg, char **pp)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005438{
5439 const char *val = NULL;
5440 char *to_be_freed = NULL;
5441 char *p = *pp;
5442 char *var;
5443 char first_char;
5444 char exp_op;
5445 char exp_save = exp_save; /* for compiler */
5446 char *exp_saveptr; /* points to expansion operator */
5447 char *exp_word = exp_word; /* for compiler */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005448 char arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005449
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005450 *p = '\0'; /* replace trailing SPECIAL_VAR_SYMBOL */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005451 var = arg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005452 exp_saveptr = arg[1] ? strchr(VAR_ENCODED_SUBST_OPS, arg[1]) : NULL;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005453 arg0 = arg[0];
5454 first_char = arg[0] = arg0 & 0x7f;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005455 exp_op = 0;
5456
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005457 if (first_char == '#' /* ${#... */
5458 && arg[1] && !exp_saveptr /* not ${#} and not ${#<op_char>...} */
5459 ) {
5460 /* It must be length operator: ${#var} */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005461 var++;
5462 exp_op = 'L';
5463 } else {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005464 /* Maybe handle parameter expansion */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005465 if (exp_saveptr /* if 2nd char is one of expansion operators */
5466 && strchr(NUMERIC_SPECVARS_STR, first_char) /* 1st char is special variable */
5467 ) {
5468 /* ${?:0}, ${#[:]%0} etc */
5469 exp_saveptr = var + 1;
5470 } else {
5471 /* ${?}, ${var}, ${var:0}, ${var[:]%0} etc */
5472 exp_saveptr = var+1 + strcspn(var+1, VAR_ENCODED_SUBST_OPS);
5473 }
5474 exp_op = exp_save = *exp_saveptr;
5475 if (exp_op) {
5476 exp_word = exp_saveptr + 1;
5477 if (exp_op == ':') {
5478 exp_op = *exp_word++;
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005479//TODO: try ${var:} and ${var:bogus} in non-bash config
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005480 if (BASH_SUBSTR
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005481 && (!exp_op || !strchr(MINUS_PLUS_EQUAL_QUESTION, exp_op))
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005482 ) {
5483 /* oops... it's ${var:N[:M]}, not ${var:?xxx} or some such */
5484 exp_op = ':';
5485 exp_word--;
5486 }
5487 }
5488 *exp_saveptr = '\0';
5489 } /* else: it's not an expansion op, but bare ${var} */
5490 }
5491
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005492 /* Look up the variable in question */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005493 if (isdigit(var[0])) {
Denys Vlasenko77a7b552010-09-09 12:40:03 +02005494 /* parse_dollar should have vetted var for us */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005495 int n = xatoi_positive(var);
5496 if (n < G.global_argc)
5497 val = G.global_argv[n];
5498 /* else val remains NULL: $N with too big N */
5499 } else {
5500 switch (var[0]) {
5501 case '$': /* pid */
5502 val = utoa(G.root_pid);
5503 break;
5504 case '!': /* bg pid */
5505 val = G.last_bg_pid ? utoa(G.last_bg_pid) : "";
5506 break;
5507 case '?': /* exitcode */
5508 val = utoa(G.last_exitcode);
5509 break;
5510 case '#': /* argc */
5511 val = utoa(G.global_argc ? G.global_argc-1 : 0);
5512 break;
5513 default:
5514 val = get_local_var_value(var);
5515 }
5516 }
5517
5518 /* Handle any expansions */
5519 if (exp_op == 'L') {
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02005520 reinit_unicode_for_hush();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005521 debug_printf_expand("expand: length(%s)=", val);
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02005522 val = utoa(val ? unicode_strlen(val) : 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005523 debug_printf_expand("%s\n", val);
5524 } else if (exp_op) {
5525 if (exp_op == '%' || exp_op == '#') {
5526 /* Standard-mandated substring removal ops:
5527 * ${parameter%word} - remove smallest suffix pattern
5528 * ${parameter%%word} - remove largest suffix pattern
5529 * ${parameter#word} - remove smallest prefix pattern
5530 * ${parameter##word} - remove largest prefix pattern
5531 *
5532 * Word is expanded to produce a glob pattern.
5533 * Then var's value is matched to it and matching part removed.
5534 */
5535 if (val && val[0]) {
Denys Vlasenko4f870492010-09-10 11:06:01 +02005536 char *t;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005537 char *exp_exp_word;
5538 char *loc;
5539 unsigned scan_flags = pick_scan(exp_op, *exp_word);
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02005540 if (exp_op == *exp_word) /* ## or %% */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005541 exp_word++;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005542 exp_exp_word = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005543 if (exp_exp_word)
5544 exp_word = exp_exp_word;
Denys Vlasenko4f870492010-09-10 11:06:01 +02005545 /* HACK ALERT. We depend here on the fact that
5546 * G.global_argv and results of utoa and get_local_var_value
5547 * are actually in writable memory:
5548 * scan_and_match momentarily stores NULs there. */
5549 t = (char*)val;
5550 loc = scan_and_match(t, exp_word, scan_flags);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005551 //bb_error_msg("op:%c str:'%s' pat:'%s' res:'%s'",
Denys Vlasenko4f870492010-09-10 11:06:01 +02005552 // exp_op, t, exp_word, loc);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005553 free(exp_exp_word);
5554 if (loc) { /* match was found */
5555 if (scan_flags & SCAN_MATCH_LEFT_HALF) /* #[#] */
Denys Vlasenko4f870492010-09-10 11:06:01 +02005556 val = loc; /* take right part */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005557 else /* %[%] */
Denys Vlasenko4f870492010-09-10 11:06:01 +02005558 val = to_be_freed = xstrndup(val, loc - val); /* left */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005559 }
5560 }
5561 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005562#if BASH_PATTERN_SUBST
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005563 else if (exp_op == '/' || exp_op == '\\') {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005564 /* It's ${var/[/]pattern[/repl]} thing.
5565 * Note that in encoded form it has TWO parts:
5566 * var/pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
Denys Vlasenko4f870492010-09-10 11:06:01 +02005567 * and if // is used, it is encoded as \:
5568 * var\pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005569 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005570 /* Empty variable always gives nothing: */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005571 // "v=''; echo ${v/*/w}" prints "", not "w"
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005572 if (val && val[0]) {
Denys Vlasenko4f870492010-09-10 11:06:01 +02005573 /* pattern uses non-standard expansion.
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005574 * repl should be unbackslashed and globbed
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005575 * by the usual expansion rules:
5576 * >az; >bz;
5577 * v='a bz'; echo "${v/a*z/a*z}" prints "a*z"
5578 * v='a bz'; echo "${v/a*z/\z}" prints "\z"
5579 * v='a bz'; echo ${v/a*z/a*z} prints "az"
5580 * v='a bz'; echo ${v/a*z/\z} prints "z"
5581 * (note that a*z _pattern_ is never globbed!)
5582 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005583 char *pattern, *repl, *t;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005584 pattern = encode_then_expand_string(exp_word, /*process_bkslash:*/ 0, /*unbackslash:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005585 if (!pattern)
5586 pattern = xstrdup(exp_word);
5587 debug_printf_varexp("pattern:'%s'->'%s'\n", exp_word, pattern);
5588 *p++ = SPECIAL_VAR_SYMBOL;
5589 exp_word = p;
5590 p = strchr(p, SPECIAL_VAR_SYMBOL);
5591 *p = '\0';
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005592 repl = encode_then_expand_string(exp_word, /*process_bkslash:*/ arg0 & 0x80, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005593 debug_printf_varexp("repl:'%s'->'%s'\n", exp_word, repl);
5594 /* HACK ALERT. We depend here on the fact that
5595 * G.global_argv and results of utoa and get_local_var_value
5596 * are actually in writable memory:
5597 * replace_pattern momentarily stores NULs there. */
5598 t = (char*)val;
5599 to_be_freed = replace_pattern(t,
5600 pattern,
5601 (repl ? repl : exp_word),
5602 exp_op);
5603 if (to_be_freed) /* at least one replace happened */
5604 val = to_be_freed;
5605 free(pattern);
5606 free(repl);
5607 }
5608 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005609#endif /* BASH_PATTERN_SUBST */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005610 else if (exp_op == ':') {
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005611#if BASH_SUBSTR && ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005612 /* It's ${var:N[:M]} bashism.
5613 * Note that in encoded form it has TWO parts:
5614 * var:N<SPECIAL_VAR_SYMBOL>M<SPECIAL_VAR_SYMBOL>
5615 */
5616 arith_t beg, len;
Denys Vlasenko063847d2010-09-15 13:33:02 +02005617 const char *errmsg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005618
Denys Vlasenko063847d2010-09-15 13:33:02 +02005619 beg = expand_and_evaluate_arith(exp_word, &errmsg);
5620 if (errmsg)
5621 goto arith_err;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005622 debug_printf_varexp("beg:'%s'=%lld\n", exp_word, (long long)beg);
5623 *p++ = SPECIAL_VAR_SYMBOL;
5624 exp_word = p;
5625 p = strchr(p, SPECIAL_VAR_SYMBOL);
5626 *p = '\0';
Denys Vlasenko063847d2010-09-15 13:33:02 +02005627 len = expand_and_evaluate_arith(exp_word, &errmsg);
5628 if (errmsg)
5629 goto arith_err;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005630 debug_printf_varexp("len:'%s'=%lld\n", exp_word, (long long)len);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005631 if (len >= 0) { /* bash compat: len < 0 is illegal */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005632 if (beg < 0) /* bash compat */
5633 beg = 0;
5634 debug_printf_varexp("from val:'%s'\n", val);
Denys Vlasenkob771c652010-09-13 00:34:26 +02005635 if (len == 0 || !val || beg >= strlen(val)) {
Denys Vlasenko063847d2010-09-15 13:33:02 +02005636 arith_err:
Denys Vlasenkob771c652010-09-13 00:34:26 +02005637 val = NULL;
5638 } else {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005639 /* Paranoia. What if user entered 9999999999999
5640 * which fits in arith_t but not int? */
5641 if (len >= INT_MAX)
5642 len = INT_MAX;
5643 val = to_be_freed = xstrndup(val + beg, len);
5644 }
5645 debug_printf_varexp("val:'%s'\n", val);
5646 } else
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005647#endif /* HUSH_SUBSTR_EXPANSION && FEATURE_SH_MATH */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005648 {
5649 die_if_script("malformed ${%s:...}", var);
Denys Vlasenkob771c652010-09-13 00:34:26 +02005650 val = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005651 }
5652 } else { /* one of "-=+?" */
5653 /* Standard-mandated substitution ops:
5654 * ${var?word} - indicate error if unset
5655 * If var is unset, word (or a message indicating it is unset
5656 * if word is null) is written to standard error
5657 * and the shell exits with a non-zero exit status.
5658 * Otherwise, the value of var is substituted.
5659 * ${var-word} - use default value
5660 * If var is unset, word is substituted.
5661 * ${var=word} - assign and use default value
5662 * If var is unset, word is assigned to var.
5663 * In all cases, final value of var is substituted.
5664 * ${var+word} - use alternative value
5665 * If var is unset, null is substituted.
5666 * Otherwise, word is substituted.
5667 *
5668 * Word is subjected to tilde expansion, parameter expansion,
5669 * command substitution, and arithmetic expansion.
5670 * If word is not needed, it is not expanded.
5671 *
5672 * Colon forms (${var:-word}, ${var:=word} etc) do the same,
5673 * but also treat null var as if it is unset.
5674 */
5675 int use_word = (!val || ((exp_save == ':') && !val[0]));
5676 if (exp_op == '+')
5677 use_word = !use_word;
5678 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
5679 (exp_save == ':') ? "true" : "false", use_word);
5680 if (use_word) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005681 to_be_freed = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005682 if (to_be_freed)
5683 exp_word = to_be_freed;
5684 if (exp_op == '?') {
5685 /* mimic bash message */
5686 die_if_script("%s: %s",
5687 var,
5688 exp_word[0] ? exp_word : "parameter null or not set"
5689 );
5690//TODO: how interactive bash aborts expansion mid-command?
5691 } else {
5692 val = exp_word;
5693 }
5694
5695 if (exp_op == '=') {
5696 /* ${var=[word]} or ${var:=[word]} */
5697 if (isdigit(var[0]) || var[0] == '#') {
5698 /* mimic bash message */
5699 die_if_script("$%s: cannot assign in this way", var);
5700 val = NULL;
5701 } else {
5702 char *new_var = xasprintf("%s=%s", var, val);
5703 set_local_var(new_var, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
5704 }
5705 }
5706 }
5707 } /* one of "-=+?" */
5708
5709 *exp_saveptr = exp_save;
5710 } /* if (exp_op) */
5711
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005712 arg[0] = arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005713
5714 *pp = p;
5715 *to_be_freed_pp = to_be_freed;
5716 return val;
5717}
5718
5719/* Expand all variable references in given string, adding words to list[]
5720 * at n, n+1,... positions. Return updated n (so that list[n] is next one
5721 * to be filled). This routine is extremely tricky: has to deal with
5722 * variables/parameters with whitespace, $* and $@, and constructs like
5723 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005724static NOINLINE int expand_vars_to_list(o_string *output, int n, char *arg)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005725{
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005726 /* output->o_expflags & EXP_FLAG_SINGLEWORD (0x80) if we are in
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005727 * expansion of right-hand side of assignment == 1-element expand.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005728 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005729 char cant_be_null = 0; /* only bit 0x80 matters */
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005730 int ended_in_ifs = 0; /* did last unquoted expansion end with IFS chars? */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005731 char *p;
5732
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005733 debug_printf_expand("expand_vars_to_list: arg:'%s' singleword:%x\n", arg,
5734 !!(output->o_expflags & EXP_FLAG_SINGLEWORD));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005735 debug_print_list("expand_vars_to_list", output, n);
5736 n = o_save_ptr(output, n);
5737 debug_print_list("expand_vars_to_list[0]", output, n);
5738
5739 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
5740 char first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005741 char *to_be_freed = NULL;
5742 const char *val = NULL;
5743#if ENABLE_HUSH_TICK
5744 o_string subst_result = NULL_O_STRING;
5745#endif
Denys Vlasenko0b883582016-12-23 16:49:07 +01005746#if ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005747 char arith_buf[sizeof(arith_t)*3 + 2];
5748#endif
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005749
5750 if (ended_in_ifs) {
5751 o_addchr(output, '\0');
5752 n = o_save_ptr(output, n);
5753 ended_in_ifs = 0;
5754 }
5755
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005756 o_addblock(output, arg, p - arg);
5757 debug_print_list("expand_vars_to_list[1]", output, n);
5758 arg = ++p;
5759 p = strchr(p, SPECIAL_VAR_SYMBOL);
5760
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005761 /* Fetch special var name (if it is indeed one of them)
5762 * and quote bit, force the bit on if singleword expansion -
5763 * important for not getting v=$@ expand to many words. */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005764 first_ch = arg[0] | (output->o_expflags & EXP_FLAG_SINGLEWORD);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005765
5766 /* Is this variable quoted and thus expansion can't be null?
5767 * "$@" is special. Even if quoted, it can still
5768 * expand to nothing (not even an empty string),
5769 * thus it is excluded. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005770 if ((first_ch & 0x7f) != '@')
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005771 cant_be_null |= first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005772
5773 switch (first_ch & 0x7f) {
5774 /* Highest bit in first_ch indicates that var is double-quoted */
5775 case '*':
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005776 case '@': {
5777 int i;
5778 if (!G.global_argv[1])
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005779 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005780 i = 1;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005781 cant_be_null |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005782 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005783 while (G.global_argv[i]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005784 n = expand_on_ifs(NULL, output, n, G.global_argv[i]);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005785 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
5786 if (G.global_argv[i++][0] && G.global_argv[i]) {
5787 /* this argv[] is not empty and not last:
5788 * put terminating NUL, start new word */
5789 o_addchr(output, '\0');
5790 debug_print_list("expand_vars_to_list[2]", output, n);
5791 n = o_save_ptr(output, n);
5792 debug_print_list("expand_vars_to_list[3]", output, n);
5793 }
5794 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005795 } else
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005796 /* If EXP_FLAG_SINGLEWORD, we handle assignment 'a=....$@.....'
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005797 * and in this case should treat it like '$*' - see 'else...' below */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005798 if (first_ch == ('@'|0x80) /* quoted $@ */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005799 && !(output->o_expflags & EXP_FLAG_SINGLEWORD) /* not v="$@" case */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005800 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005801 while (1) {
5802 o_addQstr(output, G.global_argv[i]);
5803 if (++i >= G.global_argc)
5804 break;
5805 o_addchr(output, '\0');
5806 debug_print_list("expand_vars_to_list[4]", output, n);
5807 n = o_save_ptr(output, n);
5808 }
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005809 } else { /* quoted $* (or v="$@" case): add as one word */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005810 while (1) {
5811 o_addQstr(output, G.global_argv[i]);
5812 if (!G.global_argv[++i])
5813 break;
5814 if (G.ifs[0])
5815 o_addchr(output, G.ifs[0]);
5816 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005817 output->has_quoted_part = 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005818 }
5819 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005820 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005821 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
5822 /* "Empty variable", used to make "" etc to not disappear */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005823 output->has_quoted_part = 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005824 arg++;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005825 cant_be_null = 0x80;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005826 break;
5827#if ENABLE_HUSH_TICK
5828 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005829 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005830 arg++;
5831 /* Can't just stuff it into output o_string,
5832 * expanded result may need to be globbed
Denys Vlasenko10ad6222017-04-17 16:13:32 +02005833 * and $IFS-split */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005834 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
5835 G.last_exitcode = process_command_subs(&subst_result, arg);
5836 debug_printf_subst("SUBST RES:%d '%s'\n", G.last_exitcode, subst_result.data);
5837 val = subst_result.data;
5838 goto store_val;
5839#endif
Denys Vlasenko0b883582016-12-23 16:49:07 +01005840#if ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005841 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
5842 arith_t res;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005843
5844 arg++; /* skip '+' */
5845 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
5846 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005847 res = expand_and_evaluate_arith(arg, NULL);
Denys Vlasenkobed7c812010-09-16 11:50:46 +02005848 debug_printf_subst("ARITH RES '"ARITH_FMT"'\n", res);
5849 sprintf(arith_buf, ARITH_FMT, res);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005850 val = arith_buf;
5851 break;
5852 }
5853#endif
5854 default:
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005855 val = expand_one_var(&to_be_freed, arg, &p);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005856 IF_HUSH_TICK(store_val:)
5857 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005858 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val,
5859 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005860 if (val && val[0]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005861 n = expand_on_ifs(&ended_in_ifs, output, n, val);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005862 val = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005863 }
5864 } else { /* quoted $VAR, val will be appended below */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005865 output->has_quoted_part = 1;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005866 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val,
5867 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005868 }
5869 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005870 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
5871
5872 if (val && val[0]) {
5873 o_addQstr(output, val);
5874 }
5875 free(to_be_freed);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005876
5877 /* Restore NULL'ed SPECIAL_VAR_SYMBOL.
5878 * Do the check to avoid writing to a const string. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005879 if (*p != SPECIAL_VAR_SYMBOL)
5880 *p = SPECIAL_VAR_SYMBOL;
5881
5882#if ENABLE_HUSH_TICK
5883 o_free(&subst_result);
5884#endif
5885 arg = ++p;
5886 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
5887
5888 if (arg[0]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005889 if (ended_in_ifs) {
5890 o_addchr(output, '\0');
5891 n = o_save_ptr(output, n);
5892 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005893 debug_print_list("expand_vars_to_list[a]", output, n);
5894 /* this part is literal, and it was already pre-quoted
5895 * if needed (much earlier), do not use o_addQstr here! */
5896 o_addstr_with_NUL(output, arg);
5897 debug_print_list("expand_vars_to_list[b]", output, n);
5898 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005899 && !(cant_be_null & 0x80) /* and all vars were not quoted. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005900 ) {
5901 n--;
5902 /* allow to reuse list[n] later without re-growth */
5903 output->has_empty_slot = 1;
5904 } else {
5905 o_addchr(output, '\0');
5906 }
5907
5908 return n;
5909}
5910
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005911static char **expand_variables(char **argv, unsigned expflags)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005912{
5913 int n;
5914 char **list;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005915 o_string output = NULL_O_STRING;
5916
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005917 output.o_expflags = expflags;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005918
5919 n = 0;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005920 while (*argv) {
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005921 n = expand_vars_to_list(&output, n, *argv);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005922 argv++;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005923 }
5924 debug_print_list("expand_variables", &output, n);
5925
5926 /* output.data (malloced in one block) gets returned in "list" */
5927 list = o_finalize_list(&output, n);
5928 debug_print_strings("expand_variables[1]", list);
5929 return list;
5930}
5931
5932static char **expand_strvec_to_strvec(char **argv)
5933{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005934 return expand_variables(argv, EXP_FLAG_GLOB | EXP_FLAG_ESC_GLOB_CHARS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005935}
5936
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005937#if BASH_TEST2
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005938static char **expand_strvec_to_strvec_singleword_noglob(char **argv)
5939{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005940 return expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005941}
5942#endif
5943
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005944/* Used for expansion of right hand of assignments,
5945 * $((...)), heredocs, variable espansion parts.
5946 *
5947 * NB: should NOT do globbing!
5948 * "export v=/bin/c*; env | grep ^v=" outputs "v=/bin/c*"
5949 */
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005950static char *expand_string_to_string(const char *str, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005951{
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005952#if !BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005953 const int do_unbackslash = 1;
5954#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005955 char *argv[2], **list;
5956
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005957 debug_printf_expand("string_to_string<='%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005958 /* This is generally an optimization, but it also
5959 * handles "", which otherwise trips over !list[0] check below.
5960 * (is this ever happens that we actually get str="" here?)
5961 */
5962 if (!strchr(str, SPECIAL_VAR_SYMBOL) && !strchr(str, '\\')) {
5963 //TODO: Can use on strings with \ too, just unbackslash() them?
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005964 debug_printf_expand("string_to_string(fast)=>'%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005965 return xstrdup(str);
5966 }
5967
5968 argv[0] = (char*)str;
5969 argv[1] = NULL;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005970 list = expand_variables(argv, do_unbackslash
5971 ? EXP_FLAG_ESC_GLOB_CHARS | EXP_FLAG_SINGLEWORD
5972 : EXP_FLAG_SINGLEWORD
5973 );
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005974 if (HUSH_DEBUG)
5975 if (!list[0] || list[1])
5976 bb_error_msg_and_die("BUG in varexp2");
5977 /* actually, just move string 2*sizeof(char*) bytes back */
5978 overlapping_strcpy((char*)list, list[0]);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005979 if (do_unbackslash)
5980 unbackslash((char*)list);
5981 debug_printf_expand("string_to_string=>'%s'\n", (char*)list);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005982 return (char*)list;
5983}
5984
5985/* Used for "eval" builtin */
5986static char* expand_strvec_to_string(char **argv)
5987{
5988 char **list;
5989
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005990 list = expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005991 /* Convert all NULs to spaces */
5992 if (list[0]) {
5993 int n = 1;
5994 while (list[n]) {
5995 if (HUSH_DEBUG)
5996 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
5997 bb_error_msg_and_die("BUG in varexp3");
5998 /* bash uses ' ' regardless of $IFS contents */
5999 list[n][-1] = ' ';
6000 n++;
6001 }
6002 }
Denys Vlasenko78c9c732016-09-29 01:44:17 +02006003 overlapping_strcpy((char*)list, list[0] ? list[0] : "");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006004 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
6005 return (char*)list;
6006}
6007
6008static char **expand_assignments(char **argv, int count)
6009{
6010 int i;
6011 char **p;
6012
6013 G.expanded_assignments = p = NULL;
6014 /* Expand assignments into one string each */
6015 for (i = 0; i < count; i++) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006016 G.expanded_assignments = p = add_string_to_strings(p, expand_string_to_string(argv[i], /*unbackslash:*/ 1));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006017 }
6018 G.expanded_assignments = NULL;
6019 return p;
6020}
6021
6022
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006023static void switch_off_special_sigs(unsigned mask)
6024{
6025 unsigned sig = 0;
6026 while ((mask >>= 1) != 0) {
6027 sig++;
6028 if (!(mask & 1))
6029 continue;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006030#if ENABLE_HUSH_TRAP
6031 if (G_traps) {
6032 if (G_traps[sig] && !G_traps[sig][0])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006033 /* trap is '', has to remain SIG_IGN */
6034 continue;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006035 free(G_traps[sig]);
6036 G_traps[sig] = NULL;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006037 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006038#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006039 /* We are here only if no trap or trap was not '' */
Denys Vlasenko0806e402011-05-12 23:06:20 +02006040 install_sighandler(sig, SIG_DFL);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006041 }
6042}
6043
Denys Vlasenkob347df92011-08-09 22:49:15 +02006044#if BB_MMU
6045/* never called */
6046void re_execute_shell(char ***to_free, const char *s,
6047 char *g_argv0, char **g_argv,
6048 char **builtin_argv) NORETURN;
6049
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006050static void reset_traps_to_defaults(void)
6051{
6052 /* This function is always called in a child shell
6053 * after fork (not vfork, NOMMU doesn't use this function).
6054 */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006055 IF_HUSH_TRAP(unsigned sig;)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006056 unsigned mask;
6057
6058 /* Child shells are not interactive.
6059 * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
6060 * Testcase: (while :; do :; done) + ^Z should background.
6061 * Same goes for SIGTERM, SIGHUP, SIGINT.
6062 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006063 mask = (G.special_sig_mask & SPECIAL_INTERACTIVE_SIGS) | G_fatal_sig_mask;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006064 if (!G_traps && !mask)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006065 return; /* already no traps and no special sigs */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006066
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006067 /* Switch off special sigs */
6068 switch_off_special_sigs(mask);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006069# if ENABLE_HUSH_JOB
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006070 G_fatal_sig_mask = 0;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006071# endif
Denys Vlasenko10c01312011-05-11 11:49:21 +02006072 G.special_sig_mask &= ~SPECIAL_INTERACTIVE_SIGS;
Denys Vlasenkof58f7052011-05-12 02:10:33 +02006073 /* SIGQUIT,SIGCHLD and maybe SPECIAL_JOBSTOP_SIGS
6074 * remain set in G.special_sig_mask */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006075
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006076# if ENABLE_HUSH_TRAP
6077 if (!G_traps)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006078 return;
6079
6080 /* Reset all sigs to default except ones with empty traps */
6081 for (sig = 0; sig < NSIG; sig++) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006082 if (!G_traps[sig])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006083 continue; /* no trap: nothing to do */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006084 if (!G_traps[sig][0])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006085 continue; /* empty trap: has to remain SIG_IGN */
6086 /* sig has non-empty trap, reset it: */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006087 free(G_traps[sig]);
6088 G_traps[sig] = NULL;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006089 /* There is no signal for trap 0 (EXIT) */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006090 if (sig == 0)
6091 continue;
Denys Vlasenko0806e402011-05-12 23:06:20 +02006092 install_sighandler(sig, pick_sighandler(sig));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006093 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006094# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006095}
6096
6097#else /* !BB_MMU */
6098
6099static void re_execute_shell(char ***to_free, const char *s,
6100 char *g_argv0, char **g_argv,
6101 char **builtin_argv) NORETURN;
6102static void re_execute_shell(char ***to_free, const char *s,
6103 char *g_argv0, char **g_argv,
6104 char **builtin_argv)
6105{
6106# define NOMMU_HACK_FMT ("-$%x:%x:%x:%x:%x:%llx" IF_HUSH_LOOPS(":%x"))
6107 /* delims + 2 * (number of bytes in printed hex numbers) */
6108 char param_buf[sizeof(NOMMU_HACK_FMT) + 2 * (sizeof(int)*6 + sizeof(long long)*1)];
6109 char *heredoc_argv[4];
6110 struct variable *cur;
6111# if ENABLE_HUSH_FUNCTIONS
6112 struct function *funcp;
6113# endif
6114 char **argv, **pp;
6115 unsigned cnt;
6116 unsigned long long empty_trap_mask;
6117
6118 if (!g_argv0) { /* heredoc */
6119 argv = heredoc_argv;
6120 argv[0] = (char *) G.argv0_for_re_execing;
6121 argv[1] = (char *) "-<";
6122 argv[2] = (char *) s;
6123 argv[3] = NULL;
6124 pp = &argv[3]; /* used as pointer to empty environment */
6125 goto do_exec;
6126 }
6127
6128 cnt = 0;
6129 pp = builtin_argv;
6130 if (pp) while (*pp++)
6131 cnt++;
6132
6133 empty_trap_mask = 0;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006134 if (G_traps) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006135 int sig;
6136 for (sig = 1; sig < NSIG; sig++) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006137 if (G_traps[sig] && !G_traps[sig][0])
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006138 empty_trap_mask |= 1LL << sig;
6139 }
6140 }
6141
6142 sprintf(param_buf, NOMMU_HACK_FMT
6143 , (unsigned) G.root_pid
6144 , (unsigned) G.root_ppid
6145 , (unsigned) G.last_bg_pid
6146 , (unsigned) G.last_exitcode
6147 , cnt
6148 , empty_trap_mask
6149 IF_HUSH_LOOPS(, G.depth_of_loop)
6150 );
6151# undef NOMMU_HACK_FMT
6152 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<etc...> <vars...> <funcs...>
6153 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
6154 */
6155 cnt += 6;
6156 for (cur = G.top_var; cur; cur = cur->next) {
6157 if (!cur->flg_export || cur->flg_read_only)
6158 cnt += 2;
6159 }
6160# if ENABLE_HUSH_FUNCTIONS
6161 for (funcp = G.top_func; funcp; funcp = funcp->next)
6162 cnt += 3;
6163# endif
6164 pp = g_argv;
6165 while (*pp++)
6166 cnt++;
6167 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
6168 *pp++ = (char *) G.argv0_for_re_execing;
6169 *pp++ = param_buf;
6170 for (cur = G.top_var; cur; cur = cur->next) {
6171 if (strcmp(cur->varstr, hush_version_str) == 0)
6172 continue;
6173 if (cur->flg_read_only) {
6174 *pp++ = (char *) "-R";
6175 *pp++ = cur->varstr;
6176 } else if (!cur->flg_export) {
6177 *pp++ = (char *) "-V";
6178 *pp++ = cur->varstr;
6179 }
6180 }
6181# if ENABLE_HUSH_FUNCTIONS
6182 for (funcp = G.top_func; funcp; funcp = funcp->next) {
6183 *pp++ = (char *) "-F";
6184 *pp++ = funcp->name;
6185 *pp++ = funcp->body_as_string;
6186 }
6187# endif
6188 /* We can pass activated traps here. Say, -Tnn:trap_string
6189 *
6190 * However, POSIX says that subshells reset signals with traps
6191 * to SIG_DFL.
6192 * I tested bash-3.2 and it not only does that with true subshells
6193 * of the form ( list ), but with any forked children shells.
6194 * I set trap "echo W" WINCH; and then tried:
6195 *
6196 * { echo 1; sleep 20; echo 2; } &
6197 * while true; do echo 1; sleep 20; echo 2; break; done &
6198 * true | { echo 1; sleep 20; echo 2; } | cat
6199 *
6200 * In all these cases sending SIGWINCH to the child shell
6201 * did not run the trap. If I add trap "echo V" WINCH;
6202 * _inside_ group (just before echo 1), it works.
6203 *
6204 * I conclude it means we don't need to pass active traps here.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006205 */
6206 *pp++ = (char *) "-c";
6207 *pp++ = (char *) s;
6208 if (builtin_argv) {
6209 while (*++builtin_argv)
6210 *pp++ = *builtin_argv;
6211 *pp++ = (char *) "";
6212 }
6213 *pp++ = g_argv0;
6214 while (*g_argv)
6215 *pp++ = *g_argv++;
6216 /* *pp = NULL; - is already there */
6217 pp = environ;
6218
6219 do_exec:
6220 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02006221 /* Don't propagate SIG_IGN to the child */
6222 if (SPECIAL_JOBSTOP_SIGS != 0)
6223 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006224 execve(bb_busybox_exec_path, argv, pp);
6225 /* Fallback. Useful for init=/bin/hush usage etc */
6226 if (argv[0][0] == '/')
6227 execve(argv[0], argv, pp);
6228 xfunc_error_retval = 127;
6229 bb_error_msg_and_die("can't re-execute the shell");
6230}
6231#endif /* !BB_MMU */
6232
6233
6234static int run_and_free_list(struct pipe *pi);
6235
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006236/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006237 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
6238 * end_trigger controls how often we stop parsing
6239 * NUL: parse all, execute, return
6240 * ';': parse till ';' or newline, execute, repeat till EOF
6241 */
6242static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00006243{
Denys Vlasenko00243b02009-11-16 02:00:03 +01006244 /* Why we need empty flag?
6245 * An obscure corner case "false; ``; echo $?":
6246 * empty command in `` should still set $? to 0.
6247 * But we can't just set $? to 0 at the start,
6248 * this breaks "false; echo `echo $?`" case.
6249 */
6250 bool empty = 1;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006251 while (1) {
6252 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006253
Denys Vlasenkoa1463192011-01-18 17:55:04 +01006254#if ENABLE_HUSH_INTERACTIVE
6255 if (end_trigger == ';')
6256 inp->promptmode = 0; /* PS1 */
6257#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006258 pipe_list = parse_stream(NULL, inp, end_trigger);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02006259 if (!pipe_list || pipe_list == ERR_PTR) { /* EOF/error */
6260 /* If we are in "big" script
6261 * (not in `cmd` or something similar)...
6262 */
6263 if (pipe_list == ERR_PTR && end_trigger == ';') {
6264 /* Discard cached input (rest of line) */
6265 int ch = inp->last_char;
6266 while (ch != EOF && ch != '\n') {
6267 //bb_error_msg("Discarded:'%c'", ch);
6268 ch = i_getch(inp);
6269 }
6270 /* Force prompt */
6271 inp->p = NULL;
6272 /* This stream isn't empty */
6273 empty = 0;
6274 continue;
6275 }
6276 if (!pipe_list && empty)
Denys Vlasenko00243b02009-11-16 02:00:03 +01006277 G.last_exitcode = 0;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006278 break;
Denys Vlasenko00243b02009-11-16 02:00:03 +01006279 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006280 debug_print_tree(pipe_list, 0);
6281 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
6282 run_and_free_list(pipe_list);
Denys Vlasenko00243b02009-11-16 02:00:03 +01006283 empty = 0;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006284 if (G_flag_return_in_progress == 1)
Denys Vlasenko68d5cb52011-03-24 02:50:03 +01006285 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006286 }
Eric Andersen25f27032001-04-26 23:22:31 +00006287}
6288
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006289static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00006290{
6291 struct in_str input;
6292 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006293 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00006294}
6295
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006296static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00006297{
Eric Andersen25f27032001-04-26 23:22:31 +00006298 struct in_str input;
6299 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006300 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00006301}
6302
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006303#if ENABLE_HUSH_TICK
6304static FILE *generate_stream_from_string(const char *s, pid_t *pid_p)
6305{
6306 pid_t pid;
6307 int channel[2];
6308# if !BB_MMU
6309 char **to_free = NULL;
6310# endif
6311
6312 xpipe(channel);
6313 pid = BB_MMU ? xfork() : xvfork();
6314 if (pid == 0) { /* child */
6315 disable_restore_tty_pgrp_on_exit();
6316 /* Process substitution is not considered to be usual
6317 * 'command execution'.
6318 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
6319 */
6320 bb_signals(0
6321 + (1 << SIGTSTP)
6322 + (1 << SIGTTIN)
6323 + (1 << SIGTTOU)
6324 , SIG_IGN);
6325 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
6326 close(channel[0]); /* NB: close _first_, then move fd! */
6327 xmove_fd(channel[1], 1);
6328 /* Prevent it from trying to handle ctrl-z etc */
6329 IF_HUSH_JOB(G.run_list_level = 1;)
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006330# if ENABLE_HUSH_TRAP
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006331 /* Awful hack for `trap` or $(trap).
6332 *
6333 * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html
6334 * contains an example where "trap" is executed in a subshell:
6335 *
6336 * save_traps=$(trap)
6337 * ...
6338 * eval "$save_traps"
6339 *
6340 * Standard does not say that "trap" in subshell shall print
6341 * parent shell's traps. It only says that its output
6342 * must have suitable form, but then, in the above example
6343 * (which is not supposed to be normative), it implies that.
6344 *
6345 * bash (and probably other shell) does implement it
6346 * (traps are reset to defaults, but "trap" still shows them),
6347 * but as a result, "trap" logic is hopelessly messed up:
6348 *
6349 * # trap
6350 * trap -- 'echo Ho' SIGWINCH <--- we have a handler
6351 * # (trap) <--- trap is in subshell - no output (correct, traps are reset)
6352 * # true | trap <--- trap is in subshell - no output (ditto)
6353 * # echo `true | trap` <--- in subshell - output (but traps are reset!)
6354 * trap -- 'echo Ho' SIGWINCH
6355 * # echo `(trap)` <--- in subshell in subshell - output
6356 * trap -- 'echo Ho' SIGWINCH
6357 * # echo `true | (trap)` <--- in subshell in subshell in subshell - output!
6358 * trap -- 'echo Ho' SIGWINCH
6359 *
6360 * The rules when to forget and when to not forget traps
6361 * get really complex and nonsensical.
6362 *
6363 * Our solution: ONLY bare $(trap) or `trap` is special.
6364 */
6365 s = skip_whitespace(s);
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01006366 if (is_prefixed_with(s, "trap")
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006367 && skip_whitespace(s + 4)[0] == '\0'
6368 ) {
6369 static const char *const argv[] = { NULL, NULL };
6370 builtin_trap((char**)argv);
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02006371 fflush_all(); /* important */
6372 _exit(0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006373 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006374# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006375# if BB_MMU
6376 reset_traps_to_defaults();
6377 parse_and_run_string(s);
6378 _exit(G.last_exitcode);
6379# else
6380 /* We re-execute after vfork on NOMMU. This makes this script safe:
6381 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
6382 * huge=`cat BIG` # was blocking here forever
6383 * echo OK
6384 */
6385 re_execute_shell(&to_free,
6386 s,
6387 G.global_argv[0],
6388 G.global_argv + 1,
6389 NULL);
6390# endif
6391 }
6392
6393 /* parent */
6394 *pid_p = pid;
6395# if ENABLE_HUSH_FAST
6396 G.count_SIGCHLD++;
6397//bb_error_msg("[%d] fork in generate_stream_from_string:"
6398// " G.count_SIGCHLD:%d G.handled_SIGCHLD:%d",
6399// getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6400# endif
6401 enable_restore_tty_pgrp_on_exit();
6402# if !BB_MMU
6403 free(to_free);
6404# endif
6405 close(channel[1]);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02006406 return remember_FILE(xfdopen_for_read(channel[0]));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006407}
6408
6409/* Return code is exit status of the process that is run. */
6410static int process_command_subs(o_string *dest, const char *s)
6411{
6412 FILE *fp;
6413 struct in_str pipe_str;
6414 pid_t pid;
6415 int status, ch, eol_cnt;
6416
6417 fp = generate_stream_from_string(s, &pid);
6418
6419 /* Now send results of command back into original context */
6420 setup_file_in_str(&pipe_str, fp);
6421 eol_cnt = 0;
6422 while ((ch = i_getch(&pipe_str)) != EOF) {
6423 if (ch == '\n') {
6424 eol_cnt++;
6425 continue;
6426 }
6427 while (eol_cnt) {
6428 o_addchr(dest, '\n');
6429 eol_cnt--;
6430 }
6431 o_addQchr(dest, ch);
6432 }
6433
6434 debug_printf("done reading from `cmd` pipe, closing it\n");
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02006435 fclose_and_forget(fp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006436 /* We need to extract exitcode. Test case
6437 * "true; echo `sleep 1; false` $?"
6438 * should print 1 */
6439 safe_waitpid(pid, &status, 0);
6440 debug_printf("child exited. returning its exitcode:%d\n", WEXITSTATUS(status));
6441 return WEXITSTATUS(status);
6442}
6443#endif /* ENABLE_HUSH_TICK */
6444
6445
6446static void setup_heredoc(struct redir_struct *redir)
6447{
6448 struct fd_pair pair;
6449 pid_t pid;
6450 int len, written;
6451 /* the _body_ of heredoc (misleading field name) */
6452 const char *heredoc = redir->rd_filename;
6453 char *expanded;
6454#if !BB_MMU
6455 char **to_free;
6456#endif
6457
6458 expanded = NULL;
6459 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02006460 expanded = encode_then_expand_string(heredoc, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006461 if (expanded)
6462 heredoc = expanded;
6463 }
6464 len = strlen(heredoc);
6465
6466 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
6467 xpiped_pair(pair);
6468 xmove_fd(pair.rd, redir->rd_fd);
6469
6470 /* Try writing without forking. Newer kernels have
6471 * dynamically growing pipes. Must use non-blocking write! */
6472 ndelay_on(pair.wr);
6473 while (1) {
6474 written = write(pair.wr, heredoc, len);
6475 if (written <= 0)
6476 break;
6477 len -= written;
6478 if (len == 0) {
6479 close(pair.wr);
6480 free(expanded);
6481 return;
6482 }
6483 heredoc += written;
6484 }
6485 ndelay_off(pair.wr);
6486
6487 /* Okay, pipe buffer was not big enough */
6488 /* Note: we must not create a stray child (bastard? :)
6489 * for the unsuspecting parent process. Child creates a grandchild
6490 * and exits before parent execs the process which consumes heredoc
6491 * (that exec happens after we return from this function) */
6492#if !BB_MMU
6493 to_free = NULL;
6494#endif
6495 pid = xvfork();
6496 if (pid == 0) {
6497 /* child */
6498 disable_restore_tty_pgrp_on_exit();
6499 pid = BB_MMU ? xfork() : xvfork();
6500 if (pid != 0)
6501 _exit(0);
6502 /* grandchild */
6503 close(redir->rd_fd); /* read side of the pipe */
6504#if BB_MMU
6505 full_write(pair.wr, heredoc, len); /* may loop or block */
6506 _exit(0);
6507#else
6508 /* Delegate blocking writes to another process */
6509 xmove_fd(pair.wr, STDOUT_FILENO);
6510 re_execute_shell(&to_free, heredoc, NULL, NULL, NULL);
6511#endif
6512 }
6513 /* parent */
6514#if ENABLE_HUSH_FAST
6515 G.count_SIGCHLD++;
6516//bb_error_msg("[%d] fork in setup_heredoc: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6517#endif
6518 enable_restore_tty_pgrp_on_exit();
6519#if !BB_MMU
6520 free(to_free);
6521#endif
6522 close(pair.wr);
6523 free(expanded);
6524 wait(NULL); /* wait till child has died */
6525}
6526
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006527/* fd: redirect wants this fd to be used (e.g. 3>file).
6528 * Move all conflicting internally used fds,
6529 * and remember them so that we can restore them later.
6530 */
6531static int save_fds_on_redirect(int fd, int squirrel[3])
6532{
6533 if (squirrel) {
6534 /* Handle redirects of fds 0,1,2 */
6535
6536 /* If we collide with an already moved stdio fd... */
6537 if (fd == squirrel[0]) {
6538 squirrel[0] = xdup_and_close(squirrel[0], F_DUPFD);
6539 return 1;
6540 }
6541 if (fd == squirrel[1]) {
6542 squirrel[1] = xdup_and_close(squirrel[1], F_DUPFD);
6543 return 1;
6544 }
6545 if (fd == squirrel[2]) {
6546 squirrel[2] = xdup_and_close(squirrel[2], F_DUPFD);
6547 return 1;
6548 }
6549 /* If we are about to redirect stdio fd, and did not yet move it... */
6550 if (fd <= 2 && squirrel[fd] < 0) {
6551 /* We avoid taking stdio fds */
6552 squirrel[fd] = fcntl(fd, F_DUPFD, 10);
6553 if (squirrel[fd] < 0 && errno != EBADF)
6554 xfunc_die();
6555 return 0; /* "we did not close fd" */
6556 }
6557 }
6558
6559#if ENABLE_HUSH_INTERACTIVE
6560 if (fd != 0 && fd == G.interactive_fd) {
6561 G.interactive_fd = xdup_and_close(G.interactive_fd, F_DUPFD_CLOEXEC);
6562 return 1;
6563 }
6564#endif
6565
6566 /* Are we called from setup_redirects(squirrel==NULL)? Two cases:
6567 * (1) Redirect in a forked child. No need to save FILEs' fds,
6568 * we aren't going to use them anymore, ok to trash.
6569 * (2) "exec 3>FILE". Bummer. We can save FILEs' fds,
6570 * but how are we doing to use them?
6571 * "fileno(fd) = new_fd" can't be done.
6572 */
6573 if (!squirrel)
6574 return 0;
6575
6576 return save_FILEs_on_redirect(fd);
6577}
6578
6579static void restore_redirects(int squirrel[3])
6580{
6581 int i, fd;
6582 for (i = 0; i <= 2; i++) {
6583 fd = squirrel[i];
6584 if (fd != -1) {
6585 /* We simply die on error */
6586 xmove_fd(fd, i);
6587 }
6588 }
6589
6590 /* Moved G.interactive_fd stays on new fd, not doing anything for it */
6591
6592 restore_redirected_FILEs();
6593}
6594
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006595/* squirrel != NULL means we squirrel away copies of stdin, stdout,
6596 * and stderr if they are redirected. */
6597static int setup_redirects(struct command *prog, int squirrel[])
6598{
6599 int openfd, mode;
6600 struct redir_struct *redir;
6601
6602 for (redir = prog->redirects; redir; redir = redir->next) {
6603 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006604 /* "rd_fd<<HERE" case */
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006605 save_fds_on_redirect(redir->rd_fd, squirrel);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006606 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
6607 * of the heredoc */
6608 debug_printf_parse("set heredoc '%s'\n",
6609 redir->rd_filename);
6610 setup_heredoc(redir);
6611 continue;
6612 }
6613
6614 if (redir->rd_dup == REDIRFD_TO_FILE) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006615 /* "rd_fd<*>file" case (<*> is <,>,>>,<>) */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006616 char *p;
6617 if (redir->rd_filename == NULL) {
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02006618 /*
6619 * Examples:
6620 * "cmd >" (no filename)
6621 * "cmd > <file" (2nd redirect starts too early)
6622 */
6623 die_if_script("syntax error: %s", "invalid redirect");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006624 continue;
6625 }
6626 mode = redir_table[redir->rd_type].mode;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006627 p = expand_string_to_string(redir->rd_filename, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006628 openfd = open_or_warn(p, mode);
6629 free(p);
6630 if (openfd < 0) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006631 /* Error message from open_or_warn can be lost
6632 * if stderr has been redirected, but bash
6633 * and ash both lose it as well
6634 * (though zsh doesn't!)
6635 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006636 return 1;
6637 }
6638 } else {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006639 /* "rd_fd<*>rd_dup" or "rd_fd<*>-" cases */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006640 openfd = redir->rd_dup;
6641 }
6642
6643 if (openfd != redir->rd_fd) {
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006644 int closed = save_fds_on_redirect(redir->rd_fd, squirrel);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006645 if (openfd == REDIRFD_CLOSE) {
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006646 /* "rd_fd >&-" means "close me" */
6647 if (!closed) {
6648 /* ^^^ optimization: saving may already
6649 * have closed it. If not... */
6650 close(redir->rd_fd);
6651 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006652 } else {
6653 xdup2(openfd, redir->rd_fd);
6654 if (redir->rd_dup == REDIRFD_TO_FILE)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006655 /* "rd_fd > FILE" */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006656 close(openfd);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006657 /* else: "rd_fd > rd_dup" */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006658 }
6659 }
6660 }
6661 return 0;
6662}
6663
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006664static char *find_in_path(const char *arg)
6665{
6666 char *ret = NULL;
6667 const char *PATH = get_local_var_value("PATH");
6668
6669 if (!PATH)
6670 return NULL;
6671
6672 while (1) {
6673 const char *end = strchrnul(PATH, ':');
6674 int sz = end - PATH; /* must be int! */
6675
6676 free(ret);
6677 if (sz != 0) {
6678 ret = xasprintf("%.*s/%s", sz, PATH, arg);
6679 } else {
6680 /* We have xxx::yyyy in $PATH,
6681 * it means "use current dir" */
6682 ret = xstrdup(arg);
6683 }
6684 if (access(ret, F_OK) == 0)
6685 break;
6686
6687 if (*end == '\0') {
6688 free(ret);
6689 return NULL;
6690 }
6691 PATH = end + 1;
6692 }
6693
6694 return ret;
6695}
6696
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006697static const struct built_in_command *find_builtin_helper(const char *name,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006698 const struct built_in_command *x,
6699 const struct built_in_command *end)
6700{
6701 while (x != end) {
6702 if (strcmp(name, x->b_cmd) != 0) {
6703 x++;
6704 continue;
6705 }
6706 debug_printf_exec("found builtin '%s'\n", name);
6707 return x;
6708 }
6709 return NULL;
6710}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006711static const struct built_in_command *find_builtin1(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006712{
6713 return find_builtin_helper(name, bltins1, &bltins1[ARRAY_SIZE(bltins1)]);
6714}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006715static const struct built_in_command *find_builtin(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006716{
6717 const struct built_in_command *x = find_builtin1(name);
6718 if (x)
6719 return x;
6720 return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]);
6721}
6722
6723#if ENABLE_HUSH_FUNCTIONS
6724static struct function **find_function_slot(const char *name)
6725{
6726 struct function **funcpp = &G.top_func;
6727 while (*funcpp) {
6728 if (strcmp(name, (*funcpp)->name) == 0) {
6729 break;
6730 }
6731 funcpp = &(*funcpp)->next;
6732 }
6733 return funcpp;
6734}
6735
6736static const struct function *find_function(const char *name)
6737{
6738 const struct function *funcp = *find_function_slot(name);
6739 if (funcp)
6740 debug_printf_exec("found function '%s'\n", name);
6741 return funcp;
6742}
6743
6744/* Note: takes ownership on name ptr */
6745static struct function *new_function(char *name)
6746{
6747 struct function **funcpp = find_function_slot(name);
6748 struct function *funcp = *funcpp;
6749
6750 if (funcp != NULL) {
6751 struct command *cmd = funcp->parent_cmd;
6752 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
6753 if (!cmd) {
6754 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
6755 free(funcp->name);
6756 /* Note: if !funcp->body, do not free body_as_string!
6757 * This is a special case of "-F name body" function:
6758 * body_as_string was not malloced! */
6759 if (funcp->body) {
6760 free_pipe_list(funcp->body);
6761# if !BB_MMU
6762 free(funcp->body_as_string);
6763# endif
6764 }
6765 } else {
6766 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
6767 cmd->argv[0] = funcp->name;
6768 cmd->group = funcp->body;
6769# if !BB_MMU
6770 cmd->group_as_string = funcp->body_as_string;
6771# endif
6772 }
6773 } else {
6774 debug_printf_exec("remembering new function '%s'\n", name);
6775 funcp = *funcpp = xzalloc(sizeof(*funcp));
6776 /*funcp->next = NULL;*/
6777 }
6778
6779 funcp->name = name;
6780 return funcp;
6781}
6782
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006783# if ENABLE_HUSH_UNSET
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006784static void unset_func(const char *name)
6785{
6786 struct function **funcpp = find_function_slot(name);
6787 struct function *funcp = *funcpp;
6788
6789 if (funcp != NULL) {
6790 debug_printf_exec("freeing function '%s'\n", funcp->name);
6791 *funcpp = funcp->next;
6792 /* funcp is unlinked now, deleting it.
6793 * Note: if !funcp->body, the function was created by
6794 * "-F name body", do not free ->body_as_string
6795 * and ->name as they were not malloced. */
6796 if (funcp->body) {
6797 free_pipe_list(funcp->body);
6798 free(funcp->name);
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006799# if !BB_MMU
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006800 free(funcp->body_as_string);
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006801# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006802 }
6803 free(funcp);
6804 }
6805}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006806# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006807
6808# if BB_MMU
6809#define exec_function(to_free, funcp, argv) \
6810 exec_function(funcp, argv)
6811# endif
6812static void exec_function(char ***to_free,
6813 const struct function *funcp,
6814 char **argv) NORETURN;
6815static void exec_function(char ***to_free,
6816 const struct function *funcp,
6817 char **argv)
6818{
6819# if BB_MMU
6820 int n = 1;
6821
6822 argv[0] = G.global_argv[0];
6823 G.global_argv = argv;
6824 while (*++argv)
6825 n++;
6826 G.global_argc = n;
6827 /* On MMU, funcp->body is always non-NULL */
6828 n = run_list(funcp->body);
6829 fflush_all();
6830 _exit(n);
6831# else
6832 re_execute_shell(to_free,
6833 funcp->body_as_string,
6834 G.global_argv[0],
6835 argv + 1,
6836 NULL);
6837# endif
6838}
6839
6840static int run_function(const struct function *funcp, char **argv)
6841{
6842 int rc;
6843 save_arg_t sv;
6844 smallint sv_flg;
6845
6846 save_and_replace_G_args(&sv, argv);
6847
6848 /* "we are in function, ok to use return" */
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006849 sv_flg = G_flag_return_in_progress;
6850 G_flag_return_in_progress = -1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006851# if ENABLE_HUSH_LOCAL
6852 G.func_nest_level++;
6853# endif
6854
6855 /* On MMU, funcp->body is always non-NULL */
6856# if !BB_MMU
6857 if (!funcp->body) {
6858 /* Function defined by -F */
6859 parse_and_run_string(funcp->body_as_string);
6860 rc = G.last_exitcode;
6861 } else
6862# endif
6863 {
6864 rc = run_list(funcp->body);
6865 }
6866
6867# if ENABLE_HUSH_LOCAL
6868 {
6869 struct variable *var;
6870 struct variable **var_pp;
6871
6872 var_pp = &G.top_var;
6873 while ((var = *var_pp) != NULL) {
6874 if (var->func_nest_level < G.func_nest_level) {
6875 var_pp = &var->next;
6876 continue;
6877 }
6878 /* Unexport */
6879 if (var->flg_export)
6880 bb_unsetenv(var->varstr);
6881 /* Remove from global list */
6882 *var_pp = var->next;
6883 /* Free */
6884 if (!var->max_len)
6885 free(var->varstr);
6886 free(var);
6887 }
6888 G.func_nest_level--;
6889 }
6890# endif
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006891 G_flag_return_in_progress = sv_flg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006892
6893 restore_G_args(&sv, argv);
6894
6895 return rc;
6896}
6897#endif /* ENABLE_HUSH_FUNCTIONS */
6898
6899
6900#if BB_MMU
6901#define exec_builtin(to_free, x, argv) \
6902 exec_builtin(x, argv)
6903#else
6904#define exec_builtin(to_free, x, argv) \
6905 exec_builtin(to_free, argv)
6906#endif
6907static void exec_builtin(char ***to_free,
6908 const struct built_in_command *x,
6909 char **argv) NORETURN;
6910static void exec_builtin(char ***to_free,
6911 const struct built_in_command *x,
6912 char **argv)
6913{
6914#if BB_MMU
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01006915 int rcode;
6916 fflush_all();
6917 rcode = x->b_function(argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006918 fflush_all();
6919 _exit(rcode);
6920#else
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01006921 fflush_all();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006922 /* On NOMMU, we must never block!
6923 * Example: { sleep 99 | read line; } & echo Ok
6924 */
6925 re_execute_shell(to_free,
6926 argv[0],
6927 G.global_argv[0],
6928 G.global_argv + 1,
6929 argv);
6930#endif
6931}
6932
6933
6934static void execvp_or_die(char **argv) NORETURN;
6935static void execvp_or_die(char **argv)
6936{
Denys Vlasenko04465da2016-10-03 01:01:15 +02006937 int e;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006938 debug_printf_exec("execing '%s'\n", argv[0]);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02006939 /* Don't propagate SIG_IGN to the child */
6940 if (SPECIAL_JOBSTOP_SIGS != 0)
6941 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006942 execvp(argv[0], argv);
Denys Vlasenko04465da2016-10-03 01:01:15 +02006943 e = 2;
6944 if (errno == EACCES) e = 126;
6945 if (errno == ENOENT) e = 127;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006946 bb_perror_msg("can't execute '%s'", argv[0]);
Denys Vlasenko04465da2016-10-03 01:01:15 +02006947 _exit(e);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006948}
6949
6950#if ENABLE_HUSH_MODE_X
6951static void dump_cmd_in_x_mode(char **argv)
6952{
6953 if (G_x_mode && argv) {
6954 /* We want to output the line in one write op */
6955 char *buf, *p;
6956 int len;
6957 int n;
6958
6959 len = 3;
6960 n = 0;
6961 while (argv[n])
6962 len += strlen(argv[n++]) + 1;
6963 buf = xmalloc(len);
6964 buf[0] = '+';
6965 p = buf + 1;
6966 n = 0;
6967 while (argv[n])
6968 p += sprintf(p, " %s", argv[n++]);
6969 *p++ = '\n';
6970 *p = '\0';
6971 fputs(buf, stderr);
6972 free(buf);
6973 }
6974}
6975#else
6976# define dump_cmd_in_x_mode(argv) ((void)0)
6977#endif
6978
6979#if BB_MMU
6980#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
6981 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
6982#define pseudo_exec(nommu_save, command, argv_expanded) \
6983 pseudo_exec(command, argv_expanded)
6984#endif
6985
6986/* Called after [v]fork() in run_pipe, or from builtin_exec.
6987 * Never returns.
6988 * Don't exit() here. If you don't exec, use _exit instead.
6989 * The at_exit handlers apparently confuse the calling process,
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02006990 * in particular stdin handling. Not sure why? -- because of vfork! (vda)
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02006991 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006992static void pseudo_exec_argv(nommu_save_t *nommu_save,
6993 char **argv, int assignment_cnt,
6994 char **argv_expanded) NORETURN;
6995static NOINLINE void pseudo_exec_argv(nommu_save_t *nommu_save,
6996 char **argv, int assignment_cnt,
6997 char **argv_expanded)
6998{
6999 char **new_env;
7000
7001 new_env = expand_assignments(argv, assignment_cnt);
7002 dump_cmd_in_x_mode(new_env);
7003
7004 if (!argv[assignment_cnt]) {
7005 /* Case when we are here: ... | var=val | ...
7006 * (note that we do not exit early, i.e., do not optimize out
7007 * expand_assignments(): think about ... | var=`sleep 1` | ...
7008 */
7009 free_strings(new_env);
7010 _exit(EXIT_SUCCESS);
7011 }
7012
7013#if BB_MMU
7014 set_vars_and_save_old(new_env);
7015 free(new_env); /* optional */
7016 /* we can also destroy set_vars_and_save_old's return value,
7017 * to save memory */
7018#else
7019 nommu_save->new_env = new_env;
7020 nommu_save->old_vars = set_vars_and_save_old(new_env);
7021#endif
7022
7023 if (argv_expanded) {
7024 argv = argv_expanded;
7025 } else {
7026 argv = expand_strvec_to_strvec(argv + assignment_cnt);
7027#if !BB_MMU
7028 nommu_save->argv = argv;
7029#endif
7030 }
7031 dump_cmd_in_x_mode(argv);
7032
7033#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
7034 if (strchr(argv[0], '/') != NULL)
7035 goto skip;
7036#endif
7037
7038 /* Check if the command matches any of the builtins.
7039 * Depending on context, this might be redundant. But it's
7040 * easier to waste a few CPU cycles than it is to figure out
7041 * if this is one of those cases.
7042 */
7043 {
7044 /* On NOMMU, it is more expensive to re-execute shell
7045 * just in order to run echo or test builtin.
7046 * It's better to skip it here and run corresponding
7047 * non-builtin later. */
7048 const struct built_in_command *x;
7049 x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]);
7050 if (x) {
7051 exec_builtin(&nommu_save->argv_from_re_execing, x, argv);
7052 }
7053 }
7054#if ENABLE_HUSH_FUNCTIONS
7055 /* Check if the command matches any functions */
7056 {
7057 const struct function *funcp = find_function(argv[0]);
7058 if (funcp) {
7059 exec_function(&nommu_save->argv_from_re_execing, funcp, argv);
7060 }
7061 }
7062#endif
7063
7064#if ENABLE_FEATURE_SH_STANDALONE
7065 /* Check if the command matches any busybox applets */
7066 {
7067 int a = find_applet_by_name(argv[0]);
7068 if (a >= 0) {
7069# if BB_MMU /* see above why on NOMMU it is not allowed */
7070 if (APPLET_IS_NOEXEC(a)) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02007071 /* Do not leak open fds from opened script files etc */
7072 close_all_FILE_list();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007073 debug_printf_exec("running applet '%s'\n", argv[0]);
7074 run_applet_no_and_exit(a, argv);
7075 }
7076# endif
7077 /* Re-exec ourselves */
7078 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02007079 /* Don't propagate SIG_IGN to the child */
7080 if (SPECIAL_JOBSTOP_SIGS != 0)
7081 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007082 execv(bb_busybox_exec_path, argv);
7083 /* If they called chroot or otherwise made the binary no longer
7084 * executable, fall through */
7085 }
7086 }
7087#endif
7088
7089#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
7090 skip:
7091#endif
7092 execvp_or_die(argv);
7093}
7094
7095/* Called after [v]fork() in run_pipe
7096 */
7097static void pseudo_exec(nommu_save_t *nommu_save,
7098 struct command *command,
7099 char **argv_expanded) NORETURN;
7100static void pseudo_exec(nommu_save_t *nommu_save,
7101 struct command *command,
7102 char **argv_expanded)
7103{
7104 if (command->argv) {
7105 pseudo_exec_argv(nommu_save, command->argv,
7106 command->assignment_cnt, argv_expanded);
7107 }
7108
7109 if (command->group) {
7110 /* Cases when we are here:
7111 * ( list )
7112 * { list } &
7113 * ... | ( list ) | ...
7114 * ... | { list } | ...
7115 */
7116#if BB_MMU
7117 int rcode;
7118 debug_printf_exec("pseudo_exec: run_list\n");
7119 reset_traps_to_defaults();
7120 rcode = run_list(command->group);
7121 /* OK to leak memory by not calling free_pipe_list,
7122 * since this process is about to exit */
7123 _exit(rcode);
7124#else
7125 re_execute_shell(&nommu_save->argv_from_re_execing,
7126 command->group_as_string,
7127 G.global_argv[0],
7128 G.global_argv + 1,
7129 NULL);
7130#endif
7131 }
7132
7133 /* Case when we are here: ... | >file */
7134 debug_printf_exec("pseudo_exec'ed null command\n");
7135 _exit(EXIT_SUCCESS);
7136}
7137
7138#if ENABLE_HUSH_JOB
7139static const char *get_cmdtext(struct pipe *pi)
7140{
7141 char **argv;
7142 char *p;
7143 int len;
7144
7145 /* This is subtle. ->cmdtext is created only on first backgrounding.
7146 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
7147 * On subsequent bg argv is trashed, but we won't use it */
7148 if (pi->cmdtext)
7149 return pi->cmdtext;
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007150
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007151 argv = pi->cmds[0].argv;
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007152 if (!argv) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007153 pi->cmdtext = xzalloc(1);
7154 return pi->cmdtext;
7155 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007156 len = 0;
7157 do {
7158 len += strlen(*argv) + 1;
7159 } while (*++argv);
7160 p = xmalloc(len);
7161 pi->cmdtext = p;
7162 argv = pi->cmds[0].argv;
7163 do {
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007164 p = stpcpy(p, *argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007165 *p++ = ' ';
7166 } while (*++argv);
7167 p[-1] = '\0';
7168 return pi->cmdtext;
7169}
7170
7171static void insert_bg_job(struct pipe *pi)
7172{
7173 struct pipe *job, **jobp;
7174 int i;
7175
7176 /* Linear search for the ID of the job to use */
7177 pi->jobid = 1;
7178 for (job = G.job_list; job; job = job->next)
7179 if (job->jobid >= pi->jobid)
7180 pi->jobid = job->jobid + 1;
7181
7182 /* Add job to the list of running jobs */
7183 jobp = &G.job_list;
7184 while ((job = *jobp) != NULL)
7185 jobp = &job->next;
7186 job = *jobp = xmalloc(sizeof(*job));
7187
7188 *job = *pi; /* physical copy */
7189 job->next = NULL;
7190 job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
7191 /* Cannot copy entire pi->cmds[] vector! This causes double frees */
7192 for (i = 0; i < pi->num_cmds; i++) {
7193 job->cmds[i].pid = pi->cmds[i].pid;
7194 /* all other fields are not used and stay zero */
7195 }
7196 job->cmdtext = xstrdup(get_cmdtext(pi));
7197
7198 if (G_interactive_fd)
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01007199 printf("[%u] %u %s\n", job->jobid, (unsigned)job->cmds[0].pid, job->cmdtext);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007200 G.last_jobid = job->jobid;
7201}
7202
7203static void remove_bg_job(struct pipe *pi)
7204{
7205 struct pipe *prev_pipe;
7206
7207 if (pi == G.job_list) {
7208 G.job_list = pi->next;
7209 } else {
7210 prev_pipe = G.job_list;
7211 while (prev_pipe->next != pi)
7212 prev_pipe = prev_pipe->next;
7213 prev_pipe->next = pi->next;
7214 }
7215 if (G.job_list)
7216 G.last_jobid = G.job_list->jobid;
7217 else
7218 G.last_jobid = 0;
7219}
7220
7221/* Remove a backgrounded job */
7222static void delete_finished_bg_job(struct pipe *pi)
7223{
7224 remove_bg_job(pi);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007225 free_pipe(pi);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007226}
7227#endif /* JOB */
7228
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007229static int job_exited_or_stopped(struct pipe *pi)
7230{
7231 int rcode, i;
7232
7233 if (pi->alive_cmds != pi->stopped_cmds)
7234 return -1;
7235
7236 /* All processes in fg pipe have exited or stopped */
7237 rcode = 0;
7238 i = pi->num_cmds;
7239 while (--i >= 0) {
7240 rcode = pi->cmds[i].cmd_exitcode;
7241 /* usually last process gives overall exitstatus,
7242 * but with "set -o pipefail", last *failed* process does */
7243 if (G.o_opt[OPT_O_PIPEFAIL] == 0 || rcode != 0)
7244 break;
7245 }
7246 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7247 return rcode;
7248}
7249
Denys Vlasenko7e675362016-10-28 21:57:31 +02007250static int process_wait_result(struct pipe *fg_pipe, pid_t childpid, int status)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007251{
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007252#if ENABLE_HUSH_JOB
7253 struct pipe *pi;
7254#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02007255 int i, dead;
7256
7257 dead = WIFEXITED(status) || WIFSIGNALED(status);
7258
7259#if DEBUG_JOBS
7260 if (WIFSTOPPED(status))
7261 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
7262 childpid, WSTOPSIG(status), WEXITSTATUS(status));
7263 if (WIFSIGNALED(status))
7264 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
7265 childpid, WTERMSIG(status), WEXITSTATUS(status));
7266 if (WIFEXITED(status))
7267 debug_printf_jobs("pid %d exited, exitcode %d\n",
7268 childpid, WEXITSTATUS(status));
7269#endif
7270 /* Were we asked to wait for a fg pipe? */
7271 if (fg_pipe) {
7272 i = fg_pipe->num_cmds;
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007273
Denys Vlasenko7e675362016-10-28 21:57:31 +02007274 while (--i >= 0) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007275 int rcode;
7276
Denys Vlasenko7e675362016-10-28 21:57:31 +02007277 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
7278 if (fg_pipe->cmds[i].pid != childpid)
7279 continue;
7280 if (dead) {
7281 int ex;
7282 fg_pipe->cmds[i].pid = 0;
7283 fg_pipe->alive_cmds--;
7284 ex = WEXITSTATUS(status);
7285 /* bash prints killer signal's name for *last*
7286 * process in pipe (prints just newline for SIGINT/SIGPIPE).
7287 * Mimic this. Example: "sleep 5" + (^\ or kill -QUIT)
7288 */
7289 if (WIFSIGNALED(status)) {
7290 int sig = WTERMSIG(status);
7291 if (i == fg_pipe->num_cmds-1)
7292 /* TODO: use strsignal() instead for bash compat? but that's bloat... */
7293 puts(sig == SIGINT || sig == SIGPIPE ? "" : get_signame(sig));
7294 /* TODO: if (WCOREDUMP(status)) + " (core dumped)"; */
7295 /* TODO: MIPS has 128 sigs (1..128), what if sig==128 here?
7296 * Maybe we need to use sig | 128? */
7297 ex = sig + 128;
7298 }
7299 fg_pipe->cmds[i].cmd_exitcode = ex;
7300 } else {
7301 fg_pipe->stopped_cmds++;
7302 }
7303 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
7304 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007305 rcode = job_exited_or_stopped(fg_pipe);
7306 if (rcode >= 0) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007307/* Note: *non-interactive* bash does not continue if all processes in fg pipe
7308 * are stopped. Testcase: "cat | cat" in a script (not on command line!)
7309 * and "killall -STOP cat" */
7310 if (G_interactive_fd) {
7311#if ENABLE_HUSH_JOB
7312 if (fg_pipe->alive_cmds != 0)
7313 insert_bg_job(fg_pipe);
7314#endif
7315 return rcode;
7316 }
7317 if (fg_pipe->alive_cmds == 0)
7318 return rcode;
7319 }
7320 /* There are still running processes in the fg_pipe */
7321 return -1;
7322 }
Denys Vlasenko10ad6222017-04-17 16:13:32 +02007323 /* It wasn't in fg_pipe, look for process in bg pipes */
Denys Vlasenko7e675362016-10-28 21:57:31 +02007324 }
7325
7326#if ENABLE_HUSH_JOB
7327 /* We were asked to wait for bg or orphaned children */
7328 /* No need to remember exitcode in this case */
7329 for (pi = G.job_list; pi; pi = pi->next) {
7330 for (i = 0; i < pi->num_cmds; i++) {
7331 if (pi->cmds[i].pid == childpid)
7332 goto found_pi_and_prognum;
7333 }
7334 }
7335 /* Happens when shell is used as init process (init=/bin/sh) */
7336 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
7337 return -1; /* this wasn't a process from fg_pipe */
7338
7339 found_pi_and_prognum:
7340 if (dead) {
7341 /* child exited */
7342 pi->cmds[i].pid = 0;
7343 pi->cmds[i].cmd_exitcode = WEXITSTATUS(status);
7344 if (WIFSIGNALED(status))
7345 pi->cmds[i].cmd_exitcode = 128 + WTERMSIG(status);
7346 pi->alive_cmds--;
7347 if (!pi->alive_cmds) {
7348 if (G_interactive_fd)
7349 printf(JOB_STATUS_FORMAT, pi->jobid,
7350 "Done", pi->cmdtext);
7351 delete_finished_bg_job(pi);
7352 }
7353 } else {
7354 /* child stopped */
7355 pi->stopped_cmds++;
7356 }
7357#endif
7358 return -1; /* this wasn't a process from fg_pipe */
7359}
7360
7361/* Check to see if any processes have exited -- if they have,
7362 * figure out why and see if a job has completed.
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007363 *
7364 * If non-NULL fg_pipe: wait for its completion or stop.
7365 * Return its exitcode or zero if stopped.
7366 *
7367 * Alternatively (fg_pipe == NULL, waitfor_pid != 0):
7368 * waitpid(WNOHANG), if waitfor_pid exits or stops, return exitcode+1,
7369 * else return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for)
7370 * or 0 if no children changed status.
7371 *
7372 * Alternatively (fg_pipe == NULL, waitfor_pid == 0),
7373 * return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for)
7374 * or 0 if no children changed status.
Denys Vlasenko7e675362016-10-28 21:57:31 +02007375 */
7376static int checkjobs(struct pipe *fg_pipe, pid_t waitfor_pid)
7377{
7378 int attributes;
7379 int status;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007380 int rcode = 0;
7381
7382 debug_printf_jobs("checkjobs %p\n", fg_pipe);
7383
7384 attributes = WUNTRACED;
7385 if (fg_pipe == NULL)
7386 attributes |= WNOHANG;
7387
7388 errno = 0;
7389#if ENABLE_HUSH_FAST
7390 if (G.handled_SIGCHLD == G.count_SIGCHLD) {
7391//bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p",
7392//getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe);
7393 /* There was neither fork nor SIGCHLD since last waitpid */
7394 /* Avoid doing waitpid syscall if possible */
7395 if (!G.we_have_children) {
7396 errno = ECHILD;
7397 return -1;
7398 }
7399 if (fg_pipe == NULL) { /* is WNOHANG set? */
7400 /* We have children, but they did not exit
7401 * or stop yet (we saw no SIGCHLD) */
7402 return 0;
7403 }
7404 /* else: !WNOHANG, waitpid will block, can't short-circuit */
7405 }
7406#endif
7407
7408/* Do we do this right?
7409 * bash-3.00# sleep 20 | false
7410 * <ctrl-Z pressed>
7411 * [3]+ Stopped sleep 20 | false
7412 * bash-3.00# echo $?
7413 * 1 <========== bg pipe is not fully done, but exitcode is already known!
7414 * [hush 1.14.0: yes we do it right]
7415 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007416 while (1) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007417 pid_t childpid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007418#if ENABLE_HUSH_FAST
Denys Vlasenko7e675362016-10-28 21:57:31 +02007419 int i;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007420 i = G.count_SIGCHLD;
7421#endif
7422 childpid = waitpid(-1, &status, attributes);
7423 if (childpid <= 0) {
7424 if (childpid && errno != ECHILD)
7425 bb_perror_msg("waitpid");
7426#if ENABLE_HUSH_FAST
7427 else { /* Until next SIGCHLD, waitpid's are useless */
7428 G.we_have_children = (childpid == 0);
7429 G.handled_SIGCHLD = i;
7430//bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
7431 }
7432#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02007433 /* ECHILD (no children), or 0 (no change in children status) */
7434 rcode = childpid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007435 break;
7436 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007437 rcode = process_wait_result(fg_pipe, childpid, status);
7438 if (rcode >= 0) {
7439 /* fg_pipe exited or stopped */
7440 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007441 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007442 if (childpid == waitfor_pid) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007443 debug_printf_exec("childpid==waitfor_pid:%d status:0x%08x\n", childpid, status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007444 rcode = WEXITSTATUS(status);
7445 if (WIFSIGNALED(status))
7446 rcode = 128 + WTERMSIG(status);
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007447 if (WIFSTOPPED(status))
7448 /* bash: "cmd & wait $!" and cmd stops: $? = 128 + stopsig */
7449 rcode = 128 + WSTOPSIG(status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007450 rcode++;
7451 break; /* "wait PID" called us, give it exitcode+1 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007452 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007453 /* This wasn't one of our processes, or */
7454 /* fg_pipe still has running processes, do waitpid again */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007455 } /* while (waitpid succeeds)... */
7456
7457 return rcode;
7458}
7459
7460#if ENABLE_HUSH_JOB
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02007461static int checkjobs_and_fg_shell(struct pipe *fg_pipe)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007462{
7463 pid_t p;
Denys Vlasenko7e675362016-10-28 21:57:31 +02007464 int rcode = checkjobs(fg_pipe, 0 /*(no pid to wait for)*/);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007465 if (G_saved_tty_pgrp) {
7466 /* Job finished, move the shell to the foreground */
7467 p = getpgrp(); /* our process group id */
7468 debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p);
7469 tcsetpgrp(G_interactive_fd, p);
7470 }
7471 return rcode;
7472}
7473#endif
7474
7475/* Start all the jobs, but don't wait for anything to finish.
7476 * See checkjobs().
7477 *
7478 * Return code is normally -1, when the caller has to wait for children
7479 * to finish to determine the exit status of the pipe. If the pipe
7480 * is a simple builtin command, however, the action is done by the
7481 * time run_pipe returns, and the exit code is provided as the
7482 * return value.
7483 *
7484 * Returns -1 only if started some children. IOW: we have to
7485 * mask out retvals of builtins etc with 0xff!
7486 *
7487 * The only case when we do not need to [v]fork is when the pipe
7488 * is single, non-backgrounded, non-subshell command. Examples:
7489 * cmd ; ... { list } ; ...
7490 * cmd && ... { list } && ...
7491 * cmd || ... { list } || ...
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007492 * If it is, then we can run cmd as a builtin, NOFORK,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007493 * or (if SH_STANDALONE) an applet, and we can run the { list }
7494 * with run_list. If it isn't one of these, we fork and exec cmd.
7495 *
7496 * Cases when we must fork:
7497 * non-single: cmd | cmd
7498 * backgrounded: cmd & { list } &
7499 * subshell: ( list ) [&]
7500 */
7501#if !ENABLE_HUSH_MODE_X
Denys Vlasenko26777aa2010-11-22 23:49:10 +01007502#define redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel, argv_expanded) \
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007503 redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel)
7504#endif
7505static int redirect_and_varexp_helper(char ***new_env_p,
7506 struct variable **old_vars_p,
7507 struct command *command,
7508 int squirrel[3],
7509 char **argv_expanded)
7510{
7511 /* setup_redirects acts on file descriptors, not FILEs.
7512 * This is perfect for work that comes after exec().
7513 * Is it really safe for inline use? Experimentally,
7514 * things seem to work. */
7515 int rcode = setup_redirects(command, squirrel);
7516 if (rcode == 0) {
7517 char **new_env = expand_assignments(command->argv, command->assignment_cnt);
7518 *new_env_p = new_env;
7519 dump_cmd_in_x_mode(new_env);
7520 dump_cmd_in_x_mode(argv_expanded);
7521 if (old_vars_p)
7522 *old_vars_p = set_vars_and_save_old(new_env);
7523 }
7524 return rcode;
7525}
7526static NOINLINE int run_pipe(struct pipe *pi)
7527{
7528 static const char *const null_ptr = NULL;
7529
7530 int cmd_no;
7531 int next_infd;
7532 struct command *command;
7533 char **argv_expanded;
7534 char **argv;
7535 /* it is not always needed, but we aim to smaller code */
7536 int squirrel[] = { -1, -1, -1 };
7537 int rcode;
7538
7539 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
7540 debug_enter();
7541
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02007542 /* Testcase: set -- q w e; (IFS='' echo "$*"; IFS=''; echo "$*"); echo "$*"
7543 * Result should be 3 lines: q w e, qwe, q w e
7544 */
7545 G.ifs = get_local_var_value("IFS");
7546 if (!G.ifs)
7547 G.ifs = defifs;
7548
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007549 IF_HUSH_JOB(pi->pgrp = -1;)
7550 pi->stopped_cmds = 0;
7551 command = &pi->cmds[0];
7552 argv_expanded = NULL;
7553
7554 if (pi->num_cmds != 1
7555 || pi->followup == PIPE_BG
7556 || command->cmd_type == CMD_SUBSHELL
7557 ) {
7558 goto must_fork;
7559 }
7560
7561 pi->alive_cmds = 1;
7562
7563 debug_printf_exec(": group:%p argv:'%s'\n",
7564 command->group, command->argv ? command->argv[0] : "NONE");
7565
7566 if (command->group) {
7567#if ENABLE_HUSH_FUNCTIONS
7568 if (command->cmd_type == CMD_FUNCDEF) {
7569 /* "executing" func () { list } */
7570 struct function *funcp;
7571
7572 funcp = new_function(command->argv[0]);
7573 /* funcp->name is already set to argv[0] */
7574 funcp->body = command->group;
7575# if !BB_MMU
7576 funcp->body_as_string = command->group_as_string;
7577 command->group_as_string = NULL;
7578# endif
7579 command->group = NULL;
7580 command->argv[0] = NULL;
7581 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
7582 funcp->parent_cmd = command;
7583 command->child_func = funcp;
7584
7585 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
7586 debug_leave();
7587 return EXIT_SUCCESS;
7588 }
7589#endif
7590 /* { list } */
7591 debug_printf("non-subshell group\n");
7592 rcode = 1; /* exitcode if redir failed */
7593 if (setup_redirects(command, squirrel) == 0) {
7594 debug_printf_exec(": run_list\n");
7595 rcode = run_list(command->group) & 0xff;
7596 }
7597 restore_redirects(squirrel);
7598 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7599 debug_leave();
7600 debug_printf_exec("run_pipe: return %d\n", rcode);
7601 return rcode;
7602 }
7603
7604 argv = command->argv ? command->argv : (char **) &null_ptr;
7605 {
7606 const struct built_in_command *x;
7607#if ENABLE_HUSH_FUNCTIONS
7608 const struct function *funcp;
7609#else
7610 enum { funcp = 0 };
7611#endif
7612 char **new_env = NULL;
7613 struct variable *old_vars = NULL;
7614
7615 if (argv[command->assignment_cnt] == NULL) {
7616 /* Assignments, but no command */
7617 /* Ensure redirects take effect (that is, create files).
7618 * Try "a=t >file" */
7619#if 0 /* A few cases in testsuite fail with this code. FIXME */
7620 rcode = redirect_and_varexp_helper(&new_env, /*old_vars:*/ NULL, command, squirrel, /*argv_expanded:*/ NULL);
7621 /* Set shell variables */
7622 if (new_env) {
7623 argv = new_env;
7624 while (*argv) {
7625 set_local_var(*argv, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
7626 /* Do we need to flag set_local_var() errors?
7627 * "assignment to readonly var" and "putenv error"
7628 */
7629 argv++;
7630 }
7631 }
7632 /* Redirect error sets $? to 1. Otherwise,
7633 * if evaluating assignment value set $?, retain it.
7634 * Try "false; q=`exit 2`; echo $?" - should print 2: */
7635 if (rcode == 0)
7636 rcode = G.last_exitcode;
7637 /* Exit, _skipping_ variable restoring code: */
7638 goto clean_up_and_ret0;
7639
7640#else /* Older, bigger, but more correct code */
7641
7642 rcode = setup_redirects(command, squirrel);
7643 restore_redirects(squirrel);
7644 /* Set shell variables */
7645 if (G_x_mode)
7646 bb_putchar_stderr('+');
7647 while (*argv) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02007648 char *p = expand_string_to_string(*argv, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007649 if (G_x_mode)
7650 fprintf(stderr, " %s", p);
7651 debug_printf_exec("set shell var:'%s'->'%s'\n",
7652 *argv, p);
7653 set_local_var(p, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
7654 /* Do we need to flag set_local_var() errors?
7655 * "assignment to readonly var" and "putenv error"
7656 */
7657 argv++;
7658 }
7659 if (G_x_mode)
7660 bb_putchar_stderr('\n');
7661 /* Redirect error sets $? to 1. Otherwise,
7662 * if evaluating assignment value set $?, retain it.
7663 * Try "false; q=`exit 2`; echo $?" - should print 2: */
7664 if (rcode == 0)
7665 rcode = G.last_exitcode;
7666 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7667 debug_leave();
7668 debug_printf_exec("run_pipe: return %d\n", rcode);
7669 return rcode;
7670#endif
7671 }
7672
7673 /* Expand the rest into (possibly) many strings each */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01007674#if BASH_TEST2
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007675 if (command->cmd_type == CMD_SINGLEWORD_NOGLOB) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007676 argv_expanded = expand_strvec_to_strvec_singleword_noglob(argv + command->assignment_cnt);
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007677 } else
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007678#endif
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007679 {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007680 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
7681 }
7682
7683 /* if someone gives us an empty string: `cmd with empty output` */
7684 if (!argv_expanded[0]) {
7685 free(argv_expanded);
7686 debug_leave();
7687 return G.last_exitcode;
7688 }
7689
7690 x = find_builtin(argv_expanded[0]);
7691#if ENABLE_HUSH_FUNCTIONS
7692 funcp = NULL;
7693 if (!x)
7694 funcp = find_function(argv_expanded[0]);
7695#endif
7696 if (x || funcp) {
7697 if (!funcp) {
7698 if (x->b_function == builtin_exec && argv_expanded[1] == NULL) {
7699 debug_printf("exec with redirects only\n");
7700 rcode = setup_redirects(command, NULL);
Denys Vlasenko869994c2016-08-20 15:16:00 +02007701 /* rcode=1 can be if redir file can't be opened */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007702 goto clean_up_and_ret1;
7703 }
7704 }
7705 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, squirrel, argv_expanded);
7706 if (rcode == 0) {
7707 if (!funcp) {
7708 debug_printf_exec(": builtin '%s' '%s'...\n",
7709 x->b_cmd, argv_expanded[1]);
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01007710 fflush_all();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007711 rcode = x->b_function(argv_expanded) & 0xff;
7712 fflush_all();
7713 }
7714#if ENABLE_HUSH_FUNCTIONS
7715 else {
7716# if ENABLE_HUSH_LOCAL
7717 struct variable **sv;
7718 sv = G.shadowed_vars_pp;
7719 G.shadowed_vars_pp = &old_vars;
7720# endif
7721 debug_printf_exec(": function '%s' '%s'...\n",
7722 funcp->name, argv_expanded[1]);
7723 rcode = run_function(funcp, argv_expanded) & 0xff;
7724# if ENABLE_HUSH_LOCAL
7725 G.shadowed_vars_pp = sv;
7726# endif
7727 }
7728#endif
7729 }
7730 clean_up_and_ret:
7731 unset_vars(new_env);
7732 add_vars(old_vars);
7733/* clean_up_and_ret0: */
7734 restore_redirects(squirrel);
7735 clean_up_and_ret1:
7736 free(argv_expanded);
7737 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7738 debug_leave();
7739 debug_printf_exec("run_pipe return %d\n", rcode);
7740 return rcode;
7741 }
7742
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007743 if (ENABLE_FEATURE_SH_NOFORK) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007744 int n = find_applet_by_name(argv_expanded[0]);
7745 if (n >= 0 && APPLET_IS_NOFORK(n)) {
7746 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, squirrel, argv_expanded);
7747 if (rcode == 0) {
7748 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
7749 argv_expanded[0], argv_expanded[1]);
7750 rcode = run_nofork_applet(n, argv_expanded);
7751 }
7752 goto clean_up_and_ret;
7753 }
7754 }
7755 /* It is neither builtin nor applet. We must fork. */
7756 }
7757
7758 must_fork:
7759 /* NB: argv_expanded may already be created, and that
7760 * might include `cmd` runs! Do not rerun it! We *must*
7761 * use argv_expanded if it's non-NULL */
7762
7763 /* Going to fork a child per each pipe member */
7764 pi->alive_cmds = 0;
7765 next_infd = 0;
7766
7767 cmd_no = 0;
7768 while (cmd_no < pi->num_cmds) {
7769 struct fd_pair pipefds;
7770#if !BB_MMU
7771 volatile nommu_save_t nommu_save;
7772 nommu_save.new_env = NULL;
7773 nommu_save.old_vars = NULL;
7774 nommu_save.argv = NULL;
7775 nommu_save.argv_from_re_execing = NULL;
7776#endif
7777 command = &pi->cmds[cmd_no];
7778 cmd_no++;
7779 if (command->argv) {
7780 debug_printf_exec(": pipe member '%s' '%s'...\n",
7781 command->argv[0], command->argv[1]);
7782 } else {
7783 debug_printf_exec(": pipe member with no argv\n");
7784 }
7785
7786 /* pipes are inserted between pairs of commands */
7787 pipefds.rd = 0;
7788 pipefds.wr = 1;
7789 if (cmd_no < pi->num_cmds)
7790 xpiped_pair(pipefds);
7791
7792 command->pid = BB_MMU ? fork() : vfork();
7793 if (!command->pid) { /* child */
7794#if ENABLE_HUSH_JOB
7795 disable_restore_tty_pgrp_on_exit();
7796 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
7797
7798 /* Every child adds itself to new process group
7799 * with pgid == pid_of_first_child_in_pipe */
7800 if (G.run_list_level == 1 && G_interactive_fd) {
7801 pid_t pgrp;
7802 pgrp = pi->pgrp;
7803 if (pgrp < 0) /* true for 1st process only */
7804 pgrp = getpid();
7805 if (setpgid(0, pgrp) == 0
7806 && pi->followup != PIPE_BG
7807 && G_saved_tty_pgrp /* we have ctty */
7808 ) {
7809 /* We do it in *every* child, not just first,
7810 * to avoid races */
7811 tcsetpgrp(G_interactive_fd, pgrp);
7812 }
7813 }
7814#endif
7815 if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
7816 /* 1st cmd in backgrounded pipe
7817 * should have its stdin /dev/null'ed */
7818 close(0);
7819 if (open(bb_dev_null, O_RDONLY))
7820 xopen("/", O_RDONLY);
7821 } else {
7822 xmove_fd(next_infd, 0);
7823 }
7824 xmove_fd(pipefds.wr, 1);
7825 if (pipefds.rd > 1)
7826 close(pipefds.rd);
7827 /* Like bash, explicit redirects override pipes,
Denys Vlasenko869994c2016-08-20 15:16:00 +02007828 * and the pipe fd (fd#1) is available for dup'ing:
7829 * "cmd1 2>&1 | cmd2": fd#1 is duped to fd#2, thus stderr
7830 * of cmd1 goes into pipe.
7831 */
7832 if (setup_redirects(command, NULL)) {
7833 /* Happens when redir file can't be opened:
7834 * $ hush -c 'echo FOO >&2 | echo BAR 3>/qwe/rty; echo BAZ'
7835 * FOO
7836 * hush: can't open '/qwe/rty': No such file or directory
7837 * BAZ
7838 * (echo BAR is not executed, it hits _exit(1) below)
7839 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007840 _exit(1);
Denys Vlasenko869994c2016-08-20 15:16:00 +02007841 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007842
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007843 /* Stores to nommu_save list of env vars putenv'ed
7844 * (NOMMU, on MMU we don't need that) */
7845 /* cast away volatility... */
7846 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
7847 /* pseudo_exec() does not return */
7848 }
7849
7850 /* parent or error */
7851#if ENABLE_HUSH_FAST
7852 G.count_SIGCHLD++;
7853//bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
7854#endif
7855 enable_restore_tty_pgrp_on_exit();
7856#if !BB_MMU
7857 /* Clean up after vforked child */
7858 free(nommu_save.argv);
7859 free(nommu_save.argv_from_re_execing);
7860 unset_vars(nommu_save.new_env);
7861 add_vars(nommu_save.old_vars);
7862#endif
7863 free(argv_expanded);
7864 argv_expanded = NULL;
7865 if (command->pid < 0) { /* [v]fork failed */
7866 /* Clearly indicate, was it fork or vfork */
7867 bb_perror_msg(BB_MMU ? "vfork"+1 : "vfork");
7868 } else {
7869 pi->alive_cmds++;
7870#if ENABLE_HUSH_JOB
7871 /* Second and next children need to know pid of first one */
7872 if (pi->pgrp < 0)
7873 pi->pgrp = command->pid;
7874#endif
7875 }
7876
7877 if (cmd_no > 1)
7878 close(next_infd);
7879 if (cmd_no < pi->num_cmds)
7880 close(pipefds.wr);
7881 /* Pass read (output) pipe end to next iteration */
7882 next_infd = pipefds.rd;
7883 }
7884
7885 if (!pi->alive_cmds) {
7886 debug_leave();
7887 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
7888 return 1;
7889 }
7890
7891 debug_leave();
7892 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
7893 return -1;
7894}
7895
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007896/* NB: called by pseudo_exec, and therefore must not modify any
7897 * global data until exec/_exit (we can be a child after vfork!) */
7898static int run_list(struct pipe *pi)
7899{
7900#if ENABLE_HUSH_CASE
7901 char *case_word = NULL;
7902#endif
7903#if ENABLE_HUSH_LOOPS
7904 struct pipe *loop_top = NULL;
7905 char **for_lcur = NULL;
7906 char **for_list = NULL;
7907#endif
7908 smallint last_followup;
7909 smalluint rcode;
7910#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
7911 smalluint cond_code = 0;
7912#else
7913 enum { cond_code = 0 };
7914#endif
7915#if HAS_KEYWORDS
Denys Vlasenko9b782552010-09-08 13:33:26 +02007916 smallint rword; /* RES_foo */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007917 smallint last_rword; /* ditto */
7918#endif
7919
7920 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
7921 debug_enter();
7922
7923#if ENABLE_HUSH_LOOPS
7924 /* Check syntax for "for" */
Denys Vlasenko0d6a4ec2010-12-18 01:34:49 +01007925 {
7926 struct pipe *cpipe;
7927 for (cpipe = pi; cpipe; cpipe = cpipe->next) {
7928 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
7929 continue;
7930 /* current word is FOR or IN (BOLD in comments below) */
7931 if (cpipe->next == NULL) {
7932 syntax_error("malformed for");
7933 debug_leave();
7934 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
7935 return 1;
7936 }
7937 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
7938 if (cpipe->next->res_word == RES_DO)
7939 continue;
7940 /* next word is not "do". It must be "in" then ("FOR v in ...") */
7941 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
7942 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
7943 ) {
7944 syntax_error("malformed for");
7945 debug_leave();
7946 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
7947 return 1;
7948 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007949 }
7950 }
7951#endif
7952
7953 /* Past this point, all code paths should jump to ret: label
7954 * in order to return, no direct "return" statements please.
7955 * This helps to ensure that no memory is leaked. */
7956
7957#if ENABLE_HUSH_JOB
7958 G.run_list_level++;
7959#endif
7960
7961#if HAS_KEYWORDS
7962 rword = RES_NONE;
7963 last_rword = RES_XXXX;
7964#endif
7965 last_followup = PIPE_SEQ;
7966 rcode = G.last_exitcode;
7967
7968 /* Go through list of pipes, (maybe) executing them. */
7969 for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01007970 int r;
7971
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007972 if (G.flag_SIGINT)
7973 break;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02007974 if (G_flag_return_in_progress == 1)
7975 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007976
7977 IF_HAS_KEYWORDS(rword = pi->res_word;)
7978 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
7979 rword, cond_code, last_rword);
7980#if ENABLE_HUSH_LOOPS
7981 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
7982 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
7983 ) {
7984 /* start of a loop: remember where loop starts */
7985 loop_top = pi;
7986 G.depth_of_loop++;
7987 }
7988#endif
7989 /* Still in the same "if...", "then..." or "do..." branch? */
7990 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
7991 if ((rcode == 0 && last_followup == PIPE_OR)
7992 || (rcode != 0 && last_followup == PIPE_AND)
7993 ) {
7994 /* It is "<true> || CMD" or "<false> && CMD"
7995 * and we should not execute CMD */
7996 debug_printf_exec("skipped cmd because of || or &&\n");
7997 last_followup = pi->followup;
Denys Vlasenko3beab832013-04-07 18:16:58 +02007998 goto dont_check_jobs_but_continue;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007999 }
8000 }
8001 last_followup = pi->followup;
8002 IF_HAS_KEYWORDS(last_rword = rword;)
8003#if ENABLE_HUSH_IF
8004 if (cond_code) {
8005 if (rword == RES_THEN) {
8006 /* if false; then ... fi has exitcode 0! */
8007 G.last_exitcode = rcode = EXIT_SUCCESS;
8008 /* "if <false> THEN cmd": skip cmd */
8009 continue;
8010 }
8011 } else {
8012 if (rword == RES_ELSE || rword == RES_ELIF) {
8013 /* "if <true> then ... ELSE/ELIF cmd":
8014 * skip cmd and all following ones */
8015 break;
8016 }
8017 }
8018#endif
8019#if ENABLE_HUSH_LOOPS
8020 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
8021 if (!for_lcur) {
8022 /* first loop through for */
8023
8024 static const char encoded_dollar_at[] ALIGN1 = {
8025 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
8026 }; /* encoded representation of "$@" */
8027 static const char *const encoded_dollar_at_argv[] = {
8028 encoded_dollar_at, NULL
8029 }; /* argv list with one element: "$@" */
8030 char **vals;
8031
8032 vals = (char**)encoded_dollar_at_argv;
8033 if (pi->next->res_word == RES_IN) {
8034 /* if no variable values after "in" we skip "for" */
8035 if (!pi->next->cmds[0].argv) {
8036 G.last_exitcode = rcode = EXIT_SUCCESS;
8037 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
8038 break;
8039 }
8040 vals = pi->next->cmds[0].argv;
8041 } /* else: "for var; do..." -> assume "$@" list */
8042 /* create list of variable values */
8043 debug_print_strings("for_list made from", vals);
8044 for_list = expand_strvec_to_strvec(vals);
8045 for_lcur = for_list;
8046 debug_print_strings("for_list", for_list);
8047 }
8048 if (!*for_lcur) {
8049 /* "for" loop is over, clean up */
8050 free(for_list);
8051 for_list = NULL;
8052 for_lcur = NULL;
8053 break;
8054 }
8055 /* Insert next value from for_lcur */
8056 /* note: *for_lcur already has quotes removed, $var expanded, etc */
8057 set_local_var(xasprintf("%s=%s", pi->cmds[0].argv[0], *for_lcur++), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
8058 continue;
8059 }
8060 if (rword == RES_IN) {
8061 continue; /* "for v IN list;..." - "in" has no cmds anyway */
8062 }
8063 if (rword == RES_DONE) {
8064 continue; /* "done" has no cmds too */
8065 }
8066#endif
8067#if ENABLE_HUSH_CASE
8068 if (rword == RES_CASE) {
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008069 debug_printf_exec("CASE cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008070 case_word = expand_strvec_to_string(pi->cmds->argv);
8071 continue;
8072 }
8073 if (rword == RES_MATCH) {
8074 char **argv;
8075
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008076 debug_printf_exec("MATCH cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008077 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
8078 break;
8079 /* all prev words didn't match, does this one match? */
8080 argv = pi->cmds->argv;
8081 while (*argv) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02008082 char *pattern = expand_string_to_string(*argv, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008083 /* TODO: which FNM_xxx flags to use? */
8084 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
8085 free(pattern);
8086 if (cond_code == 0) { /* match! we will execute this branch */
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008087 free(case_word);
8088 case_word = NULL; /* make future "word)" stop */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008089 break;
8090 }
8091 argv++;
8092 }
8093 continue;
8094 }
8095 if (rword == RES_CASE_BODY) { /* inside of a case branch */
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008096 debug_printf_exec("CASE_BODY cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008097 if (cond_code != 0)
8098 continue; /* not matched yet, skip this pipe */
8099 }
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008100 if (rword == RES_ESAC) {
8101 debug_printf_exec("ESAC cond_code:%d\n", cond_code);
8102 if (case_word) {
8103 /* "case" did not match anything: still set $? (to 0) */
8104 G.last_exitcode = rcode = EXIT_SUCCESS;
8105 }
8106 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008107#endif
8108 /* Just pressing <enter> in shell should check for jobs.
8109 * OTOH, in non-interactive shell this is useless
8110 * and only leads to extra job checks */
8111 if (pi->num_cmds == 0) {
8112 if (G_interactive_fd)
8113 goto check_jobs_and_continue;
8114 continue;
8115 }
8116
8117 /* After analyzing all keywords and conditions, we decided
8118 * to execute this pipe. NB: have to do checkjobs(NULL)
8119 * after run_pipe to collect any background children,
8120 * even if list execution is to be stopped. */
8121 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008122#if ENABLE_HUSH_LOOPS
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008123 G.flag_break_continue = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008124#endif
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008125 rcode = r = run_pipe(pi); /* NB: rcode is a smalluint, r is int */
8126 if (r != -1) {
8127 /* We ran a builtin, function, or group.
8128 * rcode is already known
8129 * and we don't need to wait for anything. */
8130 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
8131 G.last_exitcode = rcode;
8132 check_and_run_traps();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008133#if ENABLE_HUSH_LOOPS
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008134 /* Was it "break" or "continue"? */
8135 if (G.flag_break_continue) {
8136 smallint fbc = G.flag_break_continue;
8137 /* We might fall into outer *loop*,
8138 * don't want to break it too */
8139 if (loop_top) {
8140 G.depth_break_continue--;
8141 if (G.depth_break_continue == 0)
8142 G.flag_break_continue = 0;
8143 /* else: e.g. "continue 2" should *break* once, *then* continue */
8144 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
8145 if (G.depth_break_continue != 0 || fbc == BC_BREAK) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02008146 checkjobs(NULL, 0 /*(no pid to wait for)*/);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008147 break;
8148 }
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008149 /* "continue": simulate end of loop */
8150 rword = RES_DONE;
8151 continue;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008152 }
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008153#endif
8154 if (G_flag_return_in_progress == 1) {
8155 checkjobs(NULL, 0 /*(no pid to wait for)*/);
8156 break;
8157 }
8158 } else if (pi->followup == PIPE_BG) {
8159 /* What does bash do with attempts to background builtins? */
8160 /* even bash 3.2 doesn't do that well with nested bg:
8161 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
8162 * I'm NOT treating inner &'s as jobs */
8163#if ENABLE_HUSH_JOB
8164 if (G.run_list_level == 1)
8165 insert_bg_job(pi);
8166#endif
8167 /* Last command's pid goes to $! */
8168 G.last_bg_pid = pi->cmds[pi->num_cmds - 1].pid;
8169 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
8170/* Check pi->pi_inverted? "! sleep 1 & echo $?": bash says 1. dash and ash says 0 */
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008171 rcode = EXIT_SUCCESS;
8172 goto check_traps;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008173 } else {
8174#if ENABLE_HUSH_JOB
8175 if (G.run_list_level == 1 && G_interactive_fd) {
8176 /* Waits for completion, then fg's main shell */
8177 rcode = checkjobs_and_fg_shell(pi);
8178 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008179 goto check_traps;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008180 }
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008181#endif
8182 /* This one just waits for completion */
8183 rcode = checkjobs(pi, 0 /*(no pid to wait for)*/);
8184 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
8185 check_traps:
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008186 G.last_exitcode = rcode;
8187 check_and_run_traps();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008188 }
8189
8190 /* Analyze how result affects subsequent commands */
8191#if ENABLE_HUSH_IF
8192 if (rword == RES_IF || rword == RES_ELIF)
8193 cond_code = rcode;
8194#endif
Denys Vlasenko3beab832013-04-07 18:16:58 +02008195 check_jobs_and_continue:
Denys Vlasenko7e675362016-10-28 21:57:31 +02008196 checkjobs(NULL, 0 /*(no pid to wait for)*/);
Denys Vlasenko3beab832013-04-07 18:16:58 +02008197 dont_check_jobs_but_continue: ;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008198#if ENABLE_HUSH_LOOPS
8199 /* Beware of "while false; true; do ..."! */
Denys Vlasenko00ae9892011-05-31 17:35:45 +02008200 if (pi->next
8201 && (pi->next->res_word == RES_DO || pi->next->res_word == RES_DONE)
Denys Vlasenko56a3b822011-06-01 12:47:07 +02008202 /* check for RES_DONE is needed for "while ...; do \n done" case */
Denys Vlasenko00ae9892011-05-31 17:35:45 +02008203 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008204 if (rword == RES_WHILE) {
8205 if (rcode) {
8206 /* "while false; do...done" - exitcode 0 */
8207 G.last_exitcode = rcode = EXIT_SUCCESS;
8208 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
Denys Vlasenko3beab832013-04-07 18:16:58 +02008209 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008210 }
8211 }
8212 if (rword == RES_UNTIL) {
8213 if (!rcode) {
8214 debug_printf_exec(": until expr is true: breaking\n");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008215 break;
8216 }
8217 }
8218 }
8219#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008220 } /* for (pi) */
8221
8222#if ENABLE_HUSH_JOB
8223 G.run_list_level--;
8224#endif
8225#if ENABLE_HUSH_LOOPS
8226 if (loop_top)
8227 G.depth_of_loop--;
8228 free(for_list);
8229#endif
8230#if ENABLE_HUSH_CASE
8231 free(case_word);
8232#endif
8233 debug_leave();
8234 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
8235 return rcode;
8236}
8237
8238/* Select which version we will use */
8239static int run_and_free_list(struct pipe *pi)
8240{
8241 int rcode = 0;
8242 debug_printf_exec("run_and_free_list entered\n");
Dan Fandrich85c62472010-11-20 13:05:17 -08008243 if (!G.o_opt[OPT_O_NOEXEC]) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008244 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
8245 rcode = run_list(pi);
8246 }
8247 /* free_pipe_list has the side effect of clearing memory.
8248 * In the long run that function can be merged with run_list,
8249 * but doing that now would hobble the debugging effort. */
8250 free_pipe_list(pi);
8251 debug_printf_exec("run_and_free_list return %d\n", rcode);
8252 return rcode;
8253}
8254
8255
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008256static void install_sighandlers(unsigned mask)
Eric Andersen52a97ca2001-06-22 06:49:26 +00008257{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008258 sighandler_t old_handler;
8259 unsigned sig = 0;
8260 while ((mask >>= 1) != 0) {
8261 sig++;
8262 if (!(mask & 1))
8263 continue;
Denys Vlasenko0806e402011-05-12 23:06:20 +02008264 old_handler = install_sighandler(sig, pick_sighandler(sig));
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008265 /* POSIX allows shell to re-enable SIGCHLD
8266 * even if it was SIG_IGN on entry.
8267 * Therefore we skip IGN check for it:
8268 */
8269 if (sig == SIGCHLD)
8270 continue;
8271 if (old_handler == SIG_IGN) {
8272 /* oops... restore back to IGN, and record this fact */
Denys Vlasenko0806e402011-05-12 23:06:20 +02008273 install_sighandler(sig, old_handler);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008274#if ENABLE_HUSH_TRAP
8275 if (!G_traps)
8276 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
8277 free(G_traps[sig]);
8278 G_traps[sig] = xzalloc(1); /* == xstrdup(""); */
8279#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008280 }
8281 }
8282}
8283
8284/* Called a few times only (or even once if "sh -c") */
8285static void install_special_sighandlers(void)
8286{
Denis Vlasenkof9375282009-04-05 19:13:39 +00008287 unsigned mask;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008288
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008289 /* Which signals are shell-special? */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008290 mask = (1 << SIGQUIT) | (1 << SIGCHLD);
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008291 if (G_interactive_fd) {
8292 mask |= SPECIAL_INTERACTIVE_SIGS;
8293 if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008294 mask |= SPECIAL_JOBSTOP_SIGS;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008295 }
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008296 /* Careful, do not re-install handlers we already installed */
8297 if (G.special_sig_mask != mask) {
8298 unsigned diff = mask & ~G.special_sig_mask;
8299 G.special_sig_mask = mask;
8300 install_sighandlers(diff);
8301 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008302}
8303
8304#if ENABLE_HUSH_JOB
8305/* helper */
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008306/* Set handlers to restore tty pgrp and exit */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008307static void install_fatal_sighandlers(void)
Denis Vlasenkof9375282009-04-05 19:13:39 +00008308{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008309 unsigned mask;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008310
8311 /* We will restore tty pgrp on these signals */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008312 mask = 0
Denys Vlasenko830ea352016-11-08 04:59:11 +01008313 /*+ (1 << SIGILL ) * HUSH_DEBUG*/
8314 /*+ (1 << SIGFPE ) * HUSH_DEBUG*/
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008315 + (1 << SIGBUS ) * HUSH_DEBUG
8316 + (1 << SIGSEGV) * HUSH_DEBUG
Denys Vlasenko830ea352016-11-08 04:59:11 +01008317 /*+ (1 << SIGTRAP) * HUSH_DEBUG*/
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008318 + (1 << SIGABRT)
8319 /* bash 3.2 seems to handle these just like 'fatal' ones */
8320 + (1 << SIGPIPE)
8321 + (1 << SIGALRM)
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008322 /* if we are interactive, SIGHUP, SIGTERM and SIGINT are special sigs.
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008323 * if we aren't interactive... but in this case
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008324 * we never want to restore pgrp on exit, and this fn is not called
8325 */
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008326 /*+ (1 << SIGHUP )*/
8327 /*+ (1 << SIGTERM)*/
8328 /*+ (1 << SIGINT )*/
8329 ;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008330 G_fatal_sig_mask = mask;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008331
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008332 install_sighandlers(mask);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008333}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00008334#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00008335
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008336static int set_mode(int state, char mode, const char *o_opt)
Denis Vlasenkod5762932009-03-31 11:22:57 +00008337{
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008338 int idx;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008339 switch (mode) {
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008340 case 'n':
Dan Fandrich85c62472010-11-20 13:05:17 -08008341 G.o_opt[OPT_O_NOEXEC] = state;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008342 break;
8343 case 'x':
8344 IF_HUSH_MODE_X(G_x_mode = state;)
8345 break;
8346 case 'o':
8347 if (!o_opt) {
8348 /* "set -+o" without parameter.
8349 * in bash, set -o produces this output:
8350 * pipefail off
8351 * and set +o:
8352 * set +o pipefail
8353 * We always use the second form.
8354 */
8355 const char *p = o_opt_strings;
8356 idx = 0;
8357 while (*p) {
8358 printf("set %co %s\n", (G.o_opt[idx] ? '-' : '+'), p);
8359 idx++;
8360 p += strlen(p) + 1;
8361 }
8362 break;
8363 }
8364 idx = index_in_strings(o_opt_strings, o_opt);
8365 if (idx >= 0) {
8366 G.o_opt[idx] = state;
8367 break;
8368 }
8369 default:
8370 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008371 }
8372 return EXIT_SUCCESS;
8373}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008374
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00008375int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00008376int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00008377{
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008378 enum {
8379 OPT_login = (1 << 0),
8380 };
8381 unsigned flags;
Eric Andersen25f27032001-04-26 23:22:31 +00008382 int opt;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008383 unsigned builtin_argc;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008384 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008385 struct variable *cur_var;
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008386 struct variable *shell_ver;
Eric Andersenbc604a22001-05-16 05:24:03 +00008387
Denis Vlasenko574f2f42008-02-27 18:41:59 +00008388 INIT_G();
Denys Vlasenko10c01312011-05-11 11:49:21 +02008389 if (EXIT_SUCCESS != 0) /* if EXIT_SUCCESS == 0, it is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008390 G.last_exitcode = EXIT_SUCCESS;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02008391
Denys Vlasenko10c01312011-05-11 11:49:21 +02008392#if ENABLE_HUSH_FAST
8393 G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
8394#endif
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008395#if !BB_MMU
8396 G.argv0_for_re_execing = argv[0];
8397#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008398 /* Deal with HUSH_VERSION */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008399 shell_ver = xzalloc(sizeof(*shell_ver));
8400 shell_ver->flg_export = 1;
8401 shell_ver->flg_read_only = 1;
Denys Vlasenko4f870492010-09-10 11:06:01 +02008402 /* Code which handles ${var<op>...} needs writable values for all variables,
Denys Vlasenko36f774a2010-09-05 14:45:38 +02008403 * therefore we xstrdup: */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008404 shell_ver->varstr = xstrdup(hush_version_str);
Denys Vlasenko605067b2010-09-06 12:10:51 +02008405 /* Create shell local variables from the values
8406 * currently living in the environment */
Denis Vlasenkof886fd22008-10-13 12:36:05 +00008407 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008408 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008409 G.top_var = shell_ver;
Denis Vlasenko87a86552008-07-29 19:43:10 +00008410 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008411 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008412 if (e) while (*e) {
8413 char *value = strchr(*e, '=');
8414 if (value) { /* paranoia */
8415 cur_var->next = xzalloc(sizeof(*cur_var));
8416 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00008417 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008418 cur_var->max_len = strlen(*e);
8419 cur_var->flg_export = 1;
8420 }
8421 e++;
8422 }
Denys Vlasenko605067b2010-09-06 12:10:51 +02008423 /* (Re)insert HUSH_VERSION into env (AFTER we scanned the env!) */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008424 debug_printf_env("putenv '%s'\n", shell_ver->varstr);
8425 putenv(shell_ver->varstr);
Denys Vlasenko6db47842009-09-05 20:15:17 +02008426
8427 /* Export PWD */
8428 set_pwd_var(/*exp:*/ 1);
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008429
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01008430#if BASH_HOSTNAME_VAR
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008431 /* Set (but not export) HOSTNAME unless already set */
8432 if (!get_local_var_value("HOSTNAME")) {
8433 struct utsname uts;
8434 uname(&uts);
8435 set_local_var_from_halves("HOSTNAME", uts.nodename);
8436 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02008437 /* bash also exports SHLVL and _,
8438 * and sets (but doesn't export) the following variables:
8439 * BASH=/bin/bash
8440 * BASH_VERSINFO=([0]="3" [1]="2" [2]="0" [3]="1" [4]="release" [5]="i386-pc-linux-gnu")
8441 * BASH_VERSION='3.2.0(1)-release'
8442 * HOSTTYPE=i386
8443 * MACHTYPE=i386-pc-linux-gnu
8444 * OSTYPE=linux-gnu
Denys Vlasenkodea47882009-10-09 15:40:49 +02008445 * PPID=<NNNNN> - we also do it elsewhere
Denys Vlasenko6db47842009-09-05 20:15:17 +02008446 * EUID=<NNNNN>
8447 * UID=<NNNNN>
8448 * GROUPS=()
8449 * LINES=<NNN>
8450 * COLUMNS=<NNN>
8451 * BASH_ARGC=()
8452 * BASH_ARGV=()
8453 * BASH_LINENO=()
8454 * BASH_SOURCE=()
8455 * DIRSTACK=()
8456 * PIPESTATUS=([0]="0")
8457 * HISTFILE=/<xxx>/.bash_history
8458 * HISTFILESIZE=500
8459 * HISTSIZE=500
8460 * MAILCHECK=60
8461 * PATH=/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:.
8462 * SHELL=/bin/bash
8463 * SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor
8464 * TERM=dumb
8465 * OPTERR=1
8466 * OPTIND=1
8467 * IFS=$' \t\n'
8468 * PS1='\s-\v\$ '
8469 * PS2='> '
8470 * PS4='+ '
8471 */
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008472#endif
Denys Vlasenko6db47842009-09-05 20:15:17 +02008473
Denis Vlasenko38f63192007-01-22 09:03:07 +00008474#if ENABLE_FEATURE_EDITING
Denys Vlasenkoe45af7a2011-09-04 16:15:24 +02008475 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00008476#endif
Denys Vlasenko99862cb2010-09-12 17:34:13 +02008477
Eric Andersen94ac2442001-05-22 19:05:18 +00008478 /* Initialize some more globals to non-zero values */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00008479 cmdedit_update_prompt();
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00008480
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02008481 die_func = restore_ttypgrp_and__exit;
Denis Vlasenkoed782372009-04-10 00:45:02 +00008482
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008483 /* Shell is non-interactive at first. We need to call
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008484 * install_special_sighandlers() if we are going to execute "sh <script>",
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008485 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008486 * If we later decide that we are interactive, we run install_special_sighandlers()
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008487 * in order to intercept (more) signals.
8488 */
8489
8490 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00008491 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008492 flags = (argv[0] && argv[0][0] == '-') ? OPT_login : 0;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008493 builtin_argc = 0;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008494 while (1) {
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008495 opt = getopt(argc, argv, "+c:xinsl"
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008496#if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00008497 "<:$:R:V:"
8498# if ENABLE_HUSH_FUNCTIONS
8499 "F:"
8500# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008501#endif
8502 );
8503 if (opt <= 0)
8504 break;
Eric Andersen25f27032001-04-26 23:22:31 +00008505 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008506 case 'c':
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008507 /* Possibilities:
8508 * sh ... -c 'script'
8509 * sh ... -c 'script' ARG0 [ARG1...]
8510 * On NOMMU, if builtin_argc != 0,
Denys Vlasenko17323a62010-01-28 01:57:05 +01008511 * sh ... -c 'builtin' BARGV... "" ARG0 [ARG1...]
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008512 * "" needs to be replaced with NULL
8513 * and BARGV vector fed to builtin function.
Denys Vlasenko17323a62010-01-28 01:57:05 +01008514 * Note: the form without ARG0 never happens:
8515 * sh ... -c 'builtin' BARGV... ""
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008516 */
Denys Vlasenkodea47882009-10-09 15:40:49 +02008517 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008518 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02008519 G.root_ppid = getppid();
8520 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008521 G.global_argv = argv + optind;
8522 G.global_argc = argc - optind;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008523 if (builtin_argc) {
8524 /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */
8525 const struct built_in_command *x;
8526
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008527 install_special_sighandlers();
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008528 x = find_builtin(optarg);
8529 if (x) { /* paranoia */
8530 G.global_argc -= builtin_argc; /* skip [BARGV...] "" */
8531 G.global_argv += builtin_argc;
8532 G.global_argv[-1] = NULL; /* replace "" */
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01008533 fflush_all();
Denys Vlasenko17323a62010-01-28 01:57:05 +01008534 G.last_exitcode = x->b_function(argv + optind - 1);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008535 }
8536 goto final_return;
8537 }
8538 if (!G.global_argv[0]) {
8539 /* -c 'script' (no params): prevent empty $0 */
8540 G.global_argv--; /* points to argv[i] of 'script' */
8541 G.global_argv[0] = argv[0];
Denys Vlasenko5ae8f1c2010-05-22 06:32:11 +02008542 G.global_argc++;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008543 } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008544 install_special_sighandlers();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008545 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008546 goto final_return;
8547 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00008548 /* Well, we cannot just declare interactiveness,
8549 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008550 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008551 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00008552 case 's':
8553 /* "-s" means "read from stdin", but this is how we always
8554 * operate, so simply do nothing here. */
8555 break;
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008556 case 'l':
8557 flags |= OPT_login;
8558 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008559#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00008560 case '<': /* "big heredoc" support */
Denys Vlasenko729ecb82010-06-07 14:14:26 +02008561 full_write1_str(optarg);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00008562 _exit(0);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008563 case '$': {
8564 unsigned long long empty_trap_mask;
8565
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008566 G.root_pid = bb_strtou(optarg, &optarg, 16);
8567 optarg++;
Denys Vlasenkodea47882009-10-09 15:40:49 +02008568 G.root_ppid = bb_strtou(optarg, &optarg, 16);
8569 optarg++;
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008570 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
8571 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008572 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008573 optarg++;
8574 builtin_argc = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008575 optarg++;
8576 empty_trap_mask = bb_strtoull(optarg, &optarg, 16);
8577 if (empty_trap_mask != 0) {
8578 int sig;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008579 install_special_sighandlers();
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008580 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008581 for (sig = 1; sig < NSIG; sig++) {
8582 if (empty_trap_mask & (1LL << sig)) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008583 G_traps[sig] = xzalloc(1); /* == xstrdup(""); */
Denys Vlasenko0806e402011-05-12 23:06:20 +02008584 install_sighandler(sig, SIG_IGN);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008585 }
8586 }
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
Denys Vlasenko1cc4b132009-08-21 00:05:51 +02008809#if ENABLE_MSH
8810int msh_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
8811int msh_main(int argc, char **argv)
8812{
Denys Vlasenkoed6ff5e2016-09-30 12:28:37 +02008813 bb_error_msg("msh is deprecated, please use hush instead");
Denys Vlasenko1cc4b132009-08-21 00:05:51 +02008814 return hush_main(argc, argv);
8815}
8816#endif
8817
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008818
8819/*
8820 * Built-ins
8821 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008822static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008823{
8824 return 0;
8825}
8826
Denys Vlasenko265062d2017-01-10 15:13:30 +01008827#if ENABLE_HUSH_TEST || ENABLE_HUSH_ECHO || ENABLE_HUSH_PRINTF || ENABLE_HUSH_KILL
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02008828static int run_applet_main(char **argv, int (*applet_main_func)(int argc, char **argv))
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008829{
8830 int argc = 0;
8831 while (*argv) {
8832 argc++;
8833 argv++;
8834 }
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02008835 return applet_main_func(argc, argv - argc);
Mike Frysingerccb19592009-10-15 03:31:15 -04008836}
Denys Vlasenko265062d2017-01-10 15:13:30 +01008837#endif
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01008838#if ENABLE_HUSH_TEST || BASH_TEST2
Mike Frysingerccb19592009-10-15 03:31:15 -04008839static int FAST_FUNC builtin_test(char **argv)
8840{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008841 return run_applet_main(argv, test_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008842}
Denys Vlasenko265062d2017-01-10 15:13:30 +01008843#endif
Denys Vlasenko1cc68042017-01-09 17:10:04 +01008844#if ENABLE_HUSH_ECHO
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008845static int FAST_FUNC builtin_echo(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008846{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008847 return run_applet_main(argv, echo_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008848}
Denys Vlasenko1cc68042017-01-09 17:10:04 +01008849#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01008850#if ENABLE_HUSH_PRINTF
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04008851static int FAST_FUNC builtin_printf(char **argv)
8852{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008853 return run_applet_main(argv, printf_main);
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04008854}
8855#endif
8856
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01008857#if ENABLE_HUSH_HELP
8858static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM)
8859{
8860 const struct built_in_command *x;
8861
8862 printf(
8863 "Built-in commands:\n"
8864 "------------------\n");
8865 for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) {
8866 if (x->b_descr)
8867 printf("%-10s%s\n", x->b_cmd, x->b_descr);
8868 }
8869 return EXIT_SUCCESS;
8870}
8871#endif
8872
8873#if MAX_HISTORY && ENABLE_FEATURE_EDITING
8874static int FAST_FUNC builtin_history(char **argv UNUSED_PARAM)
8875{
8876 show_history(G.line_input_state);
8877 return EXIT_SUCCESS;
8878}
8879#endif
8880
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008881static char **skip_dash_dash(char **argv)
8882{
8883 argv++;
8884 if (argv[0] && argv[0][0] == '-' && argv[0][1] == '-' && argv[0][2] == '\0')
8885 argv++;
8886 return argv;
8887}
8888
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008889static int FAST_FUNC builtin_cd(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008890{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008891 const char *newdir;
8892
8893 argv = skip_dash_dash(argv);
8894 newdir = argv[0];
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008895 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008896 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00008897 * bash says "bash: cd: HOME not set" and does nothing
8898 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008899 */
Denys Vlasenko90a99042009-09-06 02:36:23 +02008900 const char *home = get_local_var_value("HOME");
8901 newdir = home ? home : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00008902 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008903 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008904 /* Mimic bash message exactly */
8905 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008906 return EXIT_FAILURE;
8907 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02008908 /* Read current dir (get_cwd(1) is inside) and set PWD.
8909 * Note: do not enforce exporting. If PWD was unset or unexported,
8910 * set it again, but do not export. bash does the same.
8911 */
8912 set_pwd_var(/*exp:*/ 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008913 return EXIT_SUCCESS;
8914}
8915
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01008916static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM)
8917{
8918 puts(get_cwd(0));
8919 return EXIT_SUCCESS;
8920}
8921
8922static int FAST_FUNC builtin_eval(char **argv)
8923{
8924 int rcode = EXIT_SUCCESS;
8925
8926 argv = skip_dash_dash(argv);
8927 if (*argv) {
8928 char *str = expand_strvec_to_string(argv);
8929 /* bash:
8930 * eval "echo Hi; done" ("done" is syntax error):
8931 * "echo Hi" will not execute too.
8932 */
8933 parse_and_run_string(str);
8934 free(str);
8935 rcode = G.last_exitcode;
8936 }
8937 return rcode;
8938}
8939
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008940static int FAST_FUNC builtin_exec(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008941{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008942 argv = skip_dash_dash(argv);
8943 if (argv[0] == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008944 return EXIT_SUCCESS; /* bash does this */
Denys Vlasenkof37eb392009-10-18 11:46:35 +02008945
Denys Vlasenkof37eb392009-10-18 11:46:35 +02008946 /* Careful: we can end up here after [v]fork. Do not restore
8947 * tty pgrp then, only top-level shell process does that */
8948 if (G_saved_tty_pgrp && getpid() == G.root_pid)
8949 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
8950
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02008951 /* TODO: if exec fails, bash does NOT exit! We do.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008952 * We'll need to undo trap cleanup (it's inside execvp_or_die)
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02008953 * and tcsetpgrp, and this is inherently racy.
8954 */
8955 execvp_or_die(argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008956}
8957
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008958static int FAST_FUNC builtin_exit(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008959{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00008960 debug_printf_exec("%s()\n", __func__);
Denis Vlasenko40e84372009-04-18 11:23:38 +00008961
8962 /* interactive bash:
8963 * # trap "echo EEE" EXIT
8964 * # exit
8965 * exit
8966 * There are stopped jobs.
8967 * (if there are _stopped_ jobs, running ones don't count)
8968 * # exit
8969 * exit
Denys Vlasenko6830ade2013-01-15 13:58:01 +01008970 * EEE (then bash exits)
Denis Vlasenko40e84372009-04-18 11:23:38 +00008971 *
Denys Vlasenkoa110c902010-09-12 15:38:04 +02008972 * TODO: we can use G.exiting = -1 as indicator "last cmd was exit"
Denis Vlasenko40e84372009-04-18 11:23:38 +00008973 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00008974
8975 /* note: EXIT trap is run by hush_exit */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008976 argv = skip_dash_dash(argv);
8977 if (argv[0] == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008978 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008979 /* mimic bash: exit 123abc == exit 255 + error msg */
8980 xfunc_error_retval = 255;
8981 /* bash: exit -2 == exit 254, no error msg */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008982 hush_exit(xatoi(argv[0]) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008983}
8984
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01008985#if ENABLE_HUSH_TYPE
8986/* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */
8987static int FAST_FUNC builtin_type(char **argv)
8988{
8989 int ret = EXIT_SUCCESS;
8990
8991 while (*++argv) {
8992 const char *type;
8993 char *path = NULL;
8994
8995 if (0) {} /* make conditional compile easier below */
8996 /*else if (find_alias(*argv))
8997 type = "an alias";*/
8998#if ENABLE_HUSH_FUNCTIONS
8999 else if (find_function(*argv))
9000 type = "a function";
9001#endif
9002 else if (find_builtin(*argv))
9003 type = "a shell builtin";
9004 else if ((path = find_in_path(*argv)) != NULL)
9005 type = path;
9006 else {
9007 bb_error_msg("type: %s: not found", *argv);
9008 ret = EXIT_FAILURE;
9009 continue;
9010 }
9011
9012 printf("%s is %s\n", *argv, type);
9013 free(path);
9014 }
9015
9016 return ret;
9017}
9018#endif
9019
9020#if ENABLE_HUSH_READ
9021/* Interruptibility of read builtin in bash
9022 * (tested on bash-4.2.8 by sending signals (not by ^C)):
9023 *
9024 * Empty trap makes read ignore corresponding signal, for any signal.
9025 *
9026 * SIGINT:
9027 * - terminates non-interactive shell;
9028 * - interrupts read in interactive shell;
9029 * if it has non-empty trap:
9030 * - executes trap and returns to command prompt in interactive shell;
9031 * - executes trap and returns to read in non-interactive shell;
9032 * SIGTERM:
9033 * - is ignored (does not interrupt) read in interactive shell;
9034 * - terminates non-interactive shell;
9035 * if it has non-empty trap:
9036 * - executes trap and returns to read;
9037 * SIGHUP:
9038 * - terminates shell (regardless of interactivity);
9039 * if it has non-empty trap:
9040 * - executes trap and returns to read;
Denys Vlasenkof5470412017-05-22 19:34:45 +02009041 * SIGCHLD from children:
9042 * - does not interrupt read regardless of interactivity:
9043 * try: sleep 1 & read x; echo $x
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009044 */
9045static int FAST_FUNC builtin_read(char **argv)
9046{
9047 const char *r;
9048 char *opt_n = NULL;
9049 char *opt_p = NULL;
9050 char *opt_t = NULL;
9051 char *opt_u = NULL;
9052 const char *ifs;
9053 int read_flags;
9054
9055 /* "!": do not abort on errors.
9056 * Option string must start with "sr" to match BUILTIN_READ_xxx
9057 */
9058 read_flags = getopt32(argv, "!srn:p:t:u:", &opt_n, &opt_p, &opt_t, &opt_u);
9059 if (read_flags == (uint32_t)-1)
9060 return EXIT_FAILURE;
9061 argv += optind;
9062 ifs = get_local_var_value("IFS"); /* can be NULL */
9063
9064 again:
9065 r = shell_builtin_read(set_local_var_from_halves,
9066 argv,
9067 ifs,
9068 read_flags,
9069 opt_n,
9070 opt_p,
9071 opt_t,
9072 opt_u
9073 );
9074
9075 if ((uintptr_t)r == 1 && errno == EINTR) {
9076 unsigned sig = check_and_run_traps();
Denys Vlasenkof5470412017-05-22 19:34:45 +02009077 if (sig != SIGINT)
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009078 goto again;
9079 }
9080
9081 if ((uintptr_t)r > 1) {
9082 bb_error_msg("%s", r);
9083 r = (char*)(uintptr_t)1;
9084 }
9085
9086 return (uintptr_t)r;
9087}
9088#endif
9089
9090#if ENABLE_HUSH_UMASK
9091static int FAST_FUNC builtin_umask(char **argv)
9092{
9093 int rc;
9094 mode_t mask;
9095
9096 rc = 1;
9097 mask = umask(0);
9098 argv = skip_dash_dash(argv);
9099 if (argv[0]) {
9100 mode_t old_mask = mask;
9101
9102 /* numeric umasks are taken as-is */
9103 /* symbolic umasks are inverted: "umask a=rx" calls umask(222) */
9104 if (!isdigit(argv[0][0]))
9105 mask ^= 0777;
9106 mask = bb_parse_mode(argv[0], mask);
9107 if (!isdigit(argv[0][0]))
9108 mask ^= 0777;
9109 if ((unsigned)mask > 0777) {
9110 mask = old_mask;
9111 /* bash messages:
9112 * bash: umask: 'q': invalid symbolic mode operator
9113 * bash: umask: 999: octal number out of range
9114 */
9115 bb_error_msg("%s: invalid mode '%s'", "umask", argv[0]);
9116 rc = 0;
9117 }
9118 } else {
9119 /* Mimic bash */
9120 printf("%04o\n", (unsigned) mask);
9121 /* fall through and restore mask which we set to 0 */
9122 }
9123 umask(mask);
9124
9125 return !rc; /* rc != 0 - success */
9126}
9127#endif
9128
Denys Vlasenko41ade052017-01-08 18:56:24 +01009129#if ENABLE_HUSH_EXPORT || ENABLE_HUSH_TRAP
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009130static void print_escaped(const char *s)
9131{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009132 if (*s == '\'')
9133 goto squote;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009134 do {
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009135 const char *p = strchrnul(s, '\'');
9136 /* print 'xxxx', possibly just '' */
9137 printf("'%.*s'", (int)(p - s), s);
9138 if (*p == '\0')
9139 break;
9140 s = p;
9141 squote:
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009142 /* s points to '; print "'''...'''" */
9143 putchar('"');
9144 do putchar('\''); while (*++s == '\'');
9145 putchar('"');
9146 } while (*s);
9147}
Denys Vlasenko41ade052017-01-08 18:56:24 +01009148#endif
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009149
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009150#if ENABLE_HUSH_EXPORT || ENABLE_HUSH_LOCAL
9151# if !ENABLE_HUSH_LOCAL
Denys Vlasenko295fef82009-06-03 12:47:26 +02009152#define helper_export_local(argv, exp, lvl) \
9153 helper_export_local(argv, exp)
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009154# endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02009155static void helper_export_local(char **argv, int exp, int lvl)
9156{
9157 do {
9158 char *name = *argv;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009159 char *name_end = strchrnul(name, '=');
Denys Vlasenko295fef82009-06-03 12:47:26 +02009160
9161 /* So far we do not check that name is valid (TODO?) */
9162
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009163 if (*name_end == '\0') {
9164 struct variable *var, **vpp;
Denys Vlasenko295fef82009-06-03 12:47:26 +02009165
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009166 vpp = get_ptr_to_local_var(name, name_end - name);
9167 var = vpp ? *vpp : NULL;
9168
Denys Vlasenko295fef82009-06-03 12:47:26 +02009169 if (exp == -1) { /* unexporting? */
9170 /* export -n NAME (without =VALUE) */
9171 if (var) {
9172 var->flg_export = 0;
9173 debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
9174 unsetenv(name);
9175 } /* else: export -n NOT_EXISTING_VAR: no-op */
9176 continue;
9177 }
9178 if (exp == 1) { /* exporting? */
9179 /* export NAME (without =VALUE) */
9180 if (var) {
9181 var->flg_export = 1;
9182 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
9183 putenv(var->varstr);
9184 continue;
9185 }
9186 }
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009187# if ENABLE_HUSH_LOCAL
Denys Vlasenko61508d92016-10-02 21:12:02 +02009188 if (exp == 0 /* local? */
9189 && var && var->func_nest_level == lvl
9190 ) {
9191 /* "local x=abc; ...; local x" - ignore second local decl */
Denys Vlasenko80729a42016-10-02 22:33:15 +02009192 continue;
Denys Vlasenko61508d92016-10-02 21:12:02 +02009193 }
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009194# endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02009195 /* Exporting non-existing variable.
9196 * bash does not put it in environment,
9197 * but remembers that it is exported,
9198 * and does put it in env when it is set later.
9199 * We just set it to "" and export. */
9200 /* Or, it's "local NAME" (without =VALUE).
9201 * bash sets the value to "". */
9202 name = xasprintf("%s=", name);
9203 } else {
9204 /* (Un)exporting/making local NAME=VALUE */
9205 name = xstrdup(name);
9206 }
9207 set_local_var(name, /*exp:*/ exp, /*lvl:*/ lvl, /*ro:*/ 0);
9208 } while (*++argv);
9209}
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009210#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02009211
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009212#if ENABLE_HUSH_EXPORT
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009213static int FAST_FUNC builtin_export(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009214{
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00009215 unsigned opt_unexport;
9216
Denys Vlasenkodf5131c2009-06-07 16:04:17 +02009217#if ENABLE_HUSH_EXPORT_N
9218 /* "!": do not abort on errors */
9219 opt_unexport = getopt32(argv, "!n");
9220 if (opt_unexport == (uint32_t)-1)
9221 return EXIT_FAILURE;
9222 argv += optind;
9223#else
9224 opt_unexport = 0;
9225 argv++;
9226#endif
9227
9228 if (argv[0] == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009229 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009230 if (e) {
9231 while (*e) {
9232#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009233 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009234#else
9235 /* ash emits: export VAR='VAL'
9236 * bash: declare -x VAR="VAL"
9237 * we follow ash example */
9238 const char *s = *e++;
9239 const char *p = strchr(s, '=');
9240
9241 if (!p) /* wtf? take next variable */
9242 continue;
9243 /* export var= */
9244 printf("export %.*s", (int)(p - s) + 1, s);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009245 print_escaped(p + 1);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009246 putchar('\n');
9247#endif
9248 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01009249 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009250 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009251 return EXIT_SUCCESS;
9252 }
9253
Denys Vlasenko295fef82009-06-03 12:47:26 +02009254 helper_export_local(argv, (opt_unexport ? -1 : 1), 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009255
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009256 return EXIT_SUCCESS;
9257}
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009258#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009259
Denys Vlasenko295fef82009-06-03 12:47:26 +02009260#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009261static int FAST_FUNC builtin_local(char **argv)
Denys Vlasenko295fef82009-06-03 12:47:26 +02009262{
9263 if (G.func_nest_level == 0) {
9264 bb_error_msg("%s: not in a function", argv[0]);
9265 return EXIT_FAILURE; /* bash compat */
9266 }
9267 helper_export_local(argv, 0, G.func_nest_level);
9268 return EXIT_SUCCESS;
9269}
9270#endif
9271
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009272#if ENABLE_HUSH_UNSET
Denys Vlasenko61508d92016-10-02 21:12:02 +02009273/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
9274static int FAST_FUNC builtin_unset(char **argv)
9275{
9276 int ret;
9277 unsigned opts;
9278
9279 /* "!": do not abort on errors */
9280 /* "+": stop at 1st non-option */
9281 opts = getopt32(argv, "!+vf");
9282 if (opts == (unsigned)-1)
9283 return EXIT_FAILURE;
9284 if (opts == 3) {
9285 bb_error_msg("unset: -v and -f are exclusive");
9286 return EXIT_FAILURE;
9287 }
9288 argv += optind;
9289
9290 ret = EXIT_SUCCESS;
9291 while (*argv) {
9292 if (!(opts & 2)) { /* not -f */
9293 if (unset_local_var(*argv)) {
9294 /* unset <nonexistent_var> doesn't fail.
9295 * Error is when one tries to unset RO var.
9296 * Message was printed by unset_local_var. */
9297 ret = EXIT_FAILURE;
9298 }
9299 }
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009300# if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko61508d92016-10-02 21:12:02 +02009301 else {
9302 unset_func(*argv);
9303 }
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009304# endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009305 argv++;
9306 }
9307 return ret;
9308}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009309#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009310
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009311#if ENABLE_HUSH_SET
Denys Vlasenko61508d92016-10-02 21:12:02 +02009312/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
9313 * built-in 'set' handler
9314 * SUSv3 says:
9315 * set [-abCefhmnuvx] [-o option] [argument...]
9316 * set [+abCefhmnuvx] [+o option] [argument...]
9317 * set -- [argument...]
9318 * set -o
9319 * set +o
9320 * Implementations shall support the options in both their hyphen and
9321 * plus-sign forms. These options can also be specified as options to sh.
9322 * Examples:
9323 * Write out all variables and their values: set
9324 * Set $1, $2, and $3 and set "$#" to 3: set c a b
9325 * Turn on the -x and -v options: set -xv
9326 * Unset all positional parameters: set --
9327 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
9328 * Set the positional parameters to the expansion of x, even if x expands
9329 * with a leading '-' or '+': set -- $x
9330 *
9331 * So far, we only support "set -- [argument...]" and some of the short names.
9332 */
9333static int FAST_FUNC builtin_set(char **argv)
9334{
9335 int n;
9336 char **pp, **g_argv;
9337 char *arg = *++argv;
9338
9339 if (arg == NULL) {
9340 struct variable *e;
9341 for (e = G.top_var; e; e = e->next)
9342 puts(e->varstr);
9343 return EXIT_SUCCESS;
9344 }
9345
9346 do {
9347 if (strcmp(arg, "--") == 0) {
9348 ++argv;
9349 goto set_argv;
9350 }
9351 if (arg[0] != '+' && arg[0] != '-')
9352 break;
9353 for (n = 1; arg[n]; ++n) {
9354 if (set_mode((arg[0] == '-'), arg[n], argv[1]))
9355 goto error;
9356 if (arg[n] == 'o' && argv[1])
9357 argv++;
9358 }
9359 } while ((arg = *++argv) != NULL);
9360 /* Now argv[0] is 1st argument */
9361
9362 if (arg == NULL)
9363 return EXIT_SUCCESS;
9364 set_argv:
9365
9366 /* NB: G.global_argv[0] ($0) is never freed/changed */
9367 g_argv = G.global_argv;
9368 if (G.global_args_malloced) {
9369 pp = g_argv;
9370 while (*++pp)
9371 free(*pp);
9372 g_argv[1] = NULL;
9373 } else {
9374 G.global_args_malloced = 1;
9375 pp = xzalloc(sizeof(pp[0]) * 2);
9376 pp[0] = g_argv[0]; /* retain $0 */
9377 g_argv = pp;
9378 }
9379 /* This realloc's G.global_argv */
9380 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
9381
9382 n = 1;
9383 while (*++pp)
9384 n++;
9385 G.global_argc = n;
9386
9387 return EXIT_SUCCESS;
9388
9389 /* Nothing known, so abort */
9390 error:
9391 bb_error_msg("set: %s: invalid option", arg);
9392 return EXIT_FAILURE;
9393}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009394#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009395
9396static int FAST_FUNC builtin_shift(char **argv)
9397{
9398 int n = 1;
9399 argv = skip_dash_dash(argv);
9400 if (argv[0]) {
9401 n = atoi(argv[0]);
9402 }
9403 if (n >= 0 && n < G.global_argc) {
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01009404 if (G_global_args_malloced) {
Denys Vlasenko61508d92016-10-02 21:12:02 +02009405 int m = 1;
9406 while (m <= n)
9407 free(G.global_argv[m++]);
9408 }
9409 G.global_argc -= n;
9410 memmove(&G.global_argv[1], &G.global_argv[n+1],
9411 G.global_argc * sizeof(G.global_argv[0]));
9412 return EXIT_SUCCESS;
9413 }
9414 return EXIT_FAILURE;
9415}
9416
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009417static int FAST_FUNC builtin_source(char **argv)
Denys Vlasenko61508d92016-10-02 21:12:02 +02009418{
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009419 char *arg_path, *filename;
9420 FILE *input;
9421 save_arg_t sv;
9422 char *args_need_save;
9423#if ENABLE_HUSH_FUNCTIONS
9424 smallint sv_flg;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009425#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009426
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009427 argv = skip_dash_dash(argv);
9428 filename = argv[0];
9429 if (!filename) {
9430 /* bash says: "bash: .: filename argument required" */
9431 return 2; /* bash compat */
9432 }
9433 arg_path = NULL;
9434 if (!strchr(filename, '/')) {
9435 arg_path = find_in_path(filename);
9436 if (arg_path)
9437 filename = arg_path;
9438 }
9439 input = remember_FILE(fopen_or_warn(filename, "r"));
9440 free(arg_path);
9441 if (!input) {
9442 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
9443 /* POSIX: non-interactive shell should abort here,
9444 * not merely fail. So far no one complained :)
9445 */
9446 return EXIT_FAILURE;
9447 }
9448
9449#if ENABLE_HUSH_FUNCTIONS
9450 sv_flg = G_flag_return_in_progress;
9451 /* "we are inside sourced file, ok to use return" */
9452 G_flag_return_in_progress = -1;
9453#endif
9454 args_need_save = argv[1]; /* used as a boolean variable */
9455 if (args_need_save)
9456 save_and_replace_G_args(&sv, argv);
9457
9458 /* "false; . ./empty_line; echo Zero:$?" should print 0 */
9459 G.last_exitcode = 0;
9460 parse_and_run_file(input);
9461 fclose_and_forget(input);
9462
9463 if (args_need_save) /* can't use argv[1] instead: "shift" can mangle it */
9464 restore_G_args(&sv, argv);
9465#if ENABLE_HUSH_FUNCTIONS
9466 G_flag_return_in_progress = sv_flg;
9467#endif
9468
9469 return G.last_exitcode;
9470}
9471
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009472#if ENABLE_HUSH_TRAP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009473static int FAST_FUNC builtin_trap(char **argv)
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009474{
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009475 int sig;
9476 char *new_cmd;
9477
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009478 if (!G_traps)
9479 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009480
9481 argv++;
9482 if (!*argv) {
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00009483 int i;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009484 /* No args: print all trapped */
9485 for (i = 0; i < NSIG; ++i) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009486 if (G_traps[i]) {
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009487 printf("trap -- ");
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009488 print_escaped(G_traps[i]);
Denys Vlasenkoe74aaf92009-09-27 02:05:45 +02009489 /* note: bash adds "SIG", but only if invoked
9490 * as "bash". If called as "sh", or if set -o posix,
9491 * then it prints short signal names.
9492 * We are printing short names: */
9493 printf(" %s\n", get_signame(i));
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009494 }
9495 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01009496 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009497 return EXIT_SUCCESS;
9498 }
9499
9500 new_cmd = NULL;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009501 /* If first arg is a number: reset all specified signals */
9502 sig = bb_strtou(*argv, NULL, 10);
9503 if (errno == 0) {
9504 int ret;
9505 process_sig_list:
9506 ret = EXIT_SUCCESS;
9507 while (*argv) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009508 sighandler_t handler;
9509
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009510 sig = get_signum(*argv++);
9511 if (sig < 0 || sig >= NSIG) {
9512 ret = EXIT_FAILURE;
9513 /* Mimic bash message exactly */
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00009514 bb_perror_msg("trap: %s: invalid signal specification", argv[-1]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009515 continue;
9516 }
9517
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009518 free(G_traps[sig]);
9519 G_traps[sig] = xstrdup(new_cmd);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009520
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01009521 debug_printf("trap: setting SIG%s (%i) to '%s'\n",
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009522 get_signame(sig), sig, G_traps[sig]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009523
9524 /* There is no signal for 0 (EXIT) */
9525 if (sig == 0)
9526 continue;
9527
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009528 if (new_cmd)
9529 handler = (new_cmd[0] ? record_pending_signo : SIG_IGN);
9530 else
9531 /* We are removing trap handler */
9532 handler = pick_sighandler(sig);
Denys Vlasenko0806e402011-05-12 23:06:20 +02009533 install_sighandler(sig, handler);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009534 }
9535 return ret;
9536 }
9537
9538 if (!argv[1]) { /* no second arg */
9539 bb_error_msg("trap: invalid arguments");
9540 return EXIT_FAILURE;
9541 }
9542
9543 /* First arg is "-": reset all specified to default */
9544 /* First arg is "--": skip it, the rest is "handler SIGs..." */
9545 /* Everything else: set arg as signal handler
9546 * (includes "" case, which ignores signal) */
9547 if (argv[0][0] == '-') {
9548 if (argv[0][1] == '\0') { /* "-" */
9549 /* new_cmd remains NULL: "reset these sigs" */
9550 goto reset_traps;
9551 }
9552 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
9553 argv++;
9554 }
9555 /* else: "-something", no special meaning */
9556 }
9557 new_cmd = *argv;
9558 reset_traps:
9559 argv++;
9560 goto process_sig_list;
9561}
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009562#endif
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009563
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009564#if ENABLE_HUSH_JOB
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009565static struct pipe *parse_jobspec(const char *str)
9566{
9567 struct pipe *pi;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009568 unsigned jobnum;
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009569
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009570 if (sscanf(str, "%%%u", &jobnum) != 1) {
9571 if (str[0] != '%'
9572 || (str[1] != '%' && str[1] != '+' && str[1] != '\0')
9573 ) {
9574 bb_error_msg("bad argument '%s'", str);
9575 return NULL;
9576 }
9577 /* It is "%%", "%+" or "%" - current job */
9578 jobnum = G.last_jobid;
9579 if (jobnum == 0) {
9580 bb_error_msg("no current job");
9581 return NULL;
9582 }
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009583 }
9584 for (pi = G.job_list; pi; pi = pi->next) {
9585 if (pi->jobid == jobnum) {
9586 return pi;
9587 }
9588 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009589 bb_error_msg("%u: no such job", jobnum);
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009590 return NULL;
9591}
9592
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009593static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM)
9594{
9595 struct pipe *job;
9596 const char *status_string;
9597
9598 checkjobs(NULL, 0 /*(no pid to wait for)*/);
9599 for (job = G.job_list; job; job = job->next) {
9600 if (job->alive_cmds == job->stopped_cmds)
9601 status_string = "Stopped";
9602 else
9603 status_string = "Running";
9604
9605 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
9606 }
9607 return EXIT_SUCCESS;
9608}
9609
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009610/* built-in 'fg' and 'bg' handler */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009611static int FAST_FUNC builtin_fg_bg(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009612{
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009613 int i;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009614 struct pipe *pi;
9615
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009616 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009617 return EXIT_FAILURE;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009618
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009619 /* If they gave us no args, assume they want the last backgrounded task */
9620 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00009621 for (pi = G.job_list; pi; pi = pi->next) {
9622 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009623 goto found;
9624 }
9625 }
9626 bb_error_msg("%s: no current job", argv[0]);
9627 return EXIT_FAILURE;
9628 }
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009629
9630 pi = parse_jobspec(argv[1]);
9631 if (!pi)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009632 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009633 found:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00009634 /* TODO: bash prints a string representation
9635 * of job being foregrounded (like "sleep 1 | cat") */
Mike Frysinger38478a62009-05-20 04:48:06 -04009636 if (argv[0][0] == 'f' && G_saved_tty_pgrp) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009637 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009638 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009639 }
9640
9641 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00009642 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
9643 for (i = 0; i < pi->num_cmds; i++) {
9644 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009645 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00009646 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009647
9648 i = kill(- pi->pgrp, SIGCONT);
9649 if (i < 0) {
9650 if (errno == ESRCH) {
9651 delete_finished_bg_job(pi);
9652 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009653 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00009654 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009655 }
9656
Denis Vlasenko34d4d892009-04-04 20:24:37 +00009657 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009658 remove_bg_job(pi);
9659 return checkjobs_and_fg_shell(pi);
9660 }
9661 return EXIT_SUCCESS;
9662}
9663#endif
9664
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009665#if ENABLE_HUSH_KILL
9666static int FAST_FUNC builtin_kill(char **argv)
9667{
9668 int ret = 0;
9669
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009670# if ENABLE_HUSH_JOB
9671 if (argv[1] && strcmp(argv[1], "-l") != 0) {
9672 int i = 1;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009673
9674 do {
9675 struct pipe *pi;
9676 char *dst;
9677 int j, n;
9678
9679 if (argv[i][0] != '%')
9680 continue;
9681 /*
9682 * "kill %N" - job kill
9683 * Converting to pgrp / pid kill
9684 */
9685 pi = parse_jobspec(argv[i]);
9686 if (!pi) {
9687 /* Eat bad jobspec */
9688 j = i;
9689 do {
9690 j++;
9691 argv[j - 1] = argv[j];
9692 } while (argv[j]);
9693 ret = 1;
9694 i--;
9695 continue;
9696 }
9697 /*
9698 * In jobs started under job control, we signal
9699 * entire process group by kill -PGRP_ID.
9700 * This happens, f.e., in interactive shell.
9701 *
9702 * Otherwise, we signal each child via
9703 * kill PID1 PID2 PID3.
9704 * Testcases:
9705 * sh -c 'sleep 1|sleep 1 & kill %1'
9706 * sh -c 'true|sleep 2 & sleep 1; kill %1'
9707 * sh -c 'true|sleep 1 & sleep 2; kill %1'
9708 */
Denys Vlasenko5362cc42017-01-09 05:57:13 +01009709 n = G_interactive_fd ? 1 : pi->num_cmds;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009710 dst = alloca(n * sizeof(int)*4);
9711 argv[i] = dst;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009712 if (G_interactive_fd)
9713 dst += sprintf(dst, " -%u", (int)pi->pgrp);
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009714 else for (j = 0; j < n; j++) {
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009715 struct command *cmd = &pi->cmds[j];
9716 /* Skip exited members of the job */
9717 if (cmd->pid == 0)
9718 continue;
9719 /*
9720 * kill_main has matching code to expect
9721 * leading space. Needed to not confuse
9722 * negative pids with "kill -SIGNAL_NO" syntax
9723 */
9724 dst += sprintf(dst, " %u", (int)cmd->pid);
9725 }
9726 *dst = '\0';
9727 } while (argv[++i]);
9728 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009729# endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009730
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009731 if (argv[1] || ret == 0) {
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009732 ret = run_applet_main(argv, kill_main);
9733 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009734 /* else: ret = 1, "kill %bad_jobspec" case */
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009735 return ret;
9736}
9737#endif
9738
9739#if ENABLE_HUSH_WAIT
Mike Frysinger56bdea12009-03-28 20:01:58 +00009740/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009741#if !ENABLE_HUSH_JOB
9742# define wait_for_child_or_signal(pipe,pid) wait_for_child_or_signal(pid)
9743#endif
9744static int wait_for_child_or_signal(struct pipe *waitfor_pipe, pid_t waitfor_pid)
Denys Vlasenko7e675362016-10-28 21:57:31 +02009745{
9746 int ret = 0;
9747 for (;;) {
9748 int sig;
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009749 sigset_t oldset;
Denys Vlasenko7e675362016-10-28 21:57:31 +02009750
Denys Vlasenko830ea352016-11-08 04:59:11 +01009751 if (!sigisemptyset(&G.pending_set))
9752 goto check_sig;
9753
Denys Vlasenko7e675362016-10-28 21:57:31 +02009754 /* waitpid is not interruptible by SA_RESTARTed
9755 * signals which we use. Thus, this ugly dance:
9756 */
9757
9758 /* Make sure possible SIGCHLD is stored in kernel's
9759 * pending signal mask before we call waitpid.
9760 * Or else we may race with SIGCHLD, lose it,
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009761 * and get stuck in sigsuspend...
Denys Vlasenko7e675362016-10-28 21:57:31 +02009762 */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009763 sigfillset(&oldset); /* block all signals, remember old set */
9764 sigprocmask(SIG_SETMASK, &oldset, &oldset);
Denys Vlasenko7e675362016-10-28 21:57:31 +02009765
9766 if (!sigisemptyset(&G.pending_set)) {
9767 /* Crap! we raced with some signal! */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009768 goto restore;
9769 }
9770
9771 /*errno = 0; - checkjobs does this */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009772/* Can't pass waitfor_pipe into checkjobs(): it won't be interruptible */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009773 ret = checkjobs(NULL, waitfor_pid); /* waitpid(WNOHANG) inside */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009774 debug_printf_exec("checkjobs:%d\n", ret);
9775#if ENABLE_HUSH_JOB
9776 if (waitfor_pipe) {
9777 int rcode = job_exited_or_stopped(waitfor_pipe);
9778 debug_printf_exec("job_exited_or_stopped:%d\n", rcode);
9779 if (rcode >= 0) {
9780 ret = rcode;
9781 sigprocmask(SIG_SETMASK, &oldset, NULL);
9782 break;
9783 }
9784 }
9785#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02009786 /* if ECHILD, there are no children (ret is -1 or 0) */
9787 /* if ret == 0, no children changed state */
9788 /* if ret != 0, it's exitcode+1 of exited waitfor_pid child */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009789 if (errno == ECHILD || ret) {
9790 ret--;
9791 if (ret < 0) /* if ECHILD, may need to fix "ret" */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009792 ret = 0;
9793 sigprocmask(SIG_SETMASK, &oldset, NULL);
9794 break;
9795 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02009796 /* Wait for SIGCHLD or any other signal */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009797 /* It is vitally important for sigsuspend that SIGCHLD has non-DFL handler! */
9798 /* Note: sigsuspend invokes signal handler */
9799 sigsuspend(&oldset);
9800 restore:
9801 sigprocmask(SIG_SETMASK, &oldset, NULL);
Denys Vlasenko830ea352016-11-08 04:59:11 +01009802 check_sig:
Denys Vlasenko7e675362016-10-28 21:57:31 +02009803 /* So, did we get a signal? */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009804 sig = check_and_run_traps();
9805 if (sig /*&& sig != SIGCHLD - always true */) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02009806 ret = 128 + sig;
9807 break;
9808 }
9809 /* SIGCHLD, or no signal, or ignored one, such as SIGQUIT. Repeat */
9810 }
9811 return ret;
9812}
9813
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009814static int FAST_FUNC builtin_wait(char **argv)
Mike Frysinger56bdea12009-03-28 20:01:58 +00009815{
Denys Vlasenko7e675362016-10-28 21:57:31 +02009816 int ret;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009817 int status;
Mike Frysinger56bdea12009-03-28 20:01:58 +00009818
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009819 argv = skip_dash_dash(argv);
9820 if (argv[0] == NULL) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +00009821 /* Don't care about wait results */
9822 /* Note 1: must wait until there are no more children */
9823 /* Note 2: must be interruptible */
9824 /* Examples:
9825 * $ sleep 3 & sleep 6 & wait
9826 * [1] 30934 sleep 3
9827 * [2] 30935 sleep 6
9828 * [1] Done sleep 3
9829 * [2] Done sleep 6
9830 * $ sleep 3 & sleep 6 & wait
9831 * [1] 30936 sleep 3
9832 * [2] 30937 sleep 6
9833 * [1] Done sleep 3
9834 * ^C <-- after ~4 sec from keyboard
9835 * $
9836 */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009837 return wait_for_child_or_signal(NULL, 0 /*(no job and no pid to wait for)*/);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00009838 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00009839
Denys Vlasenko7e675362016-10-28 21:57:31 +02009840 do {
Denis Vlasenkod5762932009-03-31 11:22:57 +00009841 pid_t pid = bb_strtou(*argv, NULL, 10);
Denys Vlasenko7e675362016-10-28 21:57:31 +02009842 if (errno || pid <= 0) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009843#if ENABLE_HUSH_JOB
9844 if (argv[0][0] == '%') {
Denys Vlasenko02affb42016-11-08 00:59:29 +01009845 struct pipe *wait_pipe;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009846 ret = 127; /* bash compat for bad jobspecs */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009847 wait_pipe = parse_jobspec(*argv);
9848 if (wait_pipe) {
Denys Vlasenko02affb42016-11-08 00:59:29 +01009849 ret = job_exited_or_stopped(wait_pipe);
9850 if (ret < 0)
9851 ret = wait_for_child_or_signal(wait_pipe, 0);
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009852 }
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009853 /* else: parse_jobspec() already emitted error msg */
9854 continue;
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009855 }
9856#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00009857 /* mimic bash message */
9858 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009859 ret = EXIT_FAILURE;
9860 continue; /* bash checks all argv[] */
Denis Vlasenkod5762932009-03-31 11:22:57 +00009861 }
Denys Vlasenko02affb42016-11-08 00:59:29 +01009862
Denys Vlasenko7e675362016-10-28 21:57:31 +02009863 /* Do we have such child? */
9864 ret = waitpid(pid, &status, WNOHANG);
9865 if (ret < 0) {
9866 /* No */
9867 if (errno == ECHILD) {
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009868 if (G.last_bg_pid > 0 && pid == G.last_bg_pid) {
9869 /* "wait $!" but last bg task has already exited. Try:
9870 * (sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $?
9871 * In bash it prints exitcode 0, then 3.
Denys Vlasenko26ad94b2016-11-07 23:07:21 +01009872 * In dash, it is 127.
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009873 */
Denys Vlasenko26ad94b2016-11-07 23:07:21 +01009874 /* ret = G.last_bg_pid_exitstatus - FIXME */
9875 } else {
9876 /* Example: "wait 1". mimic bash message */
9877 bb_error_msg("wait: pid %d is not a child of this shell", (int)pid);
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009878 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02009879 } else {
9880 /* ??? */
9881 bb_perror_msg("wait %s", *argv);
9882 }
9883 ret = 127;
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009884 continue; /* bash checks all argv[] */
9885 }
9886 if (ret == 0) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02009887 /* Yes, and it still runs */
Denys Vlasenko02affb42016-11-08 00:59:29 +01009888 ret = wait_for_child_or_signal(NULL, pid);
Denys Vlasenko7e675362016-10-28 21:57:31 +02009889 } else {
9890 /* Yes, and it just exited */
Denys Vlasenko02affb42016-11-08 00:59:29 +01009891 process_wait_result(NULL, pid, status);
Denys Vlasenko85378cd2015-10-11 21:47:11 +02009892 ret = WEXITSTATUS(status);
Mike Frysinger56bdea12009-03-28 20:01:58 +00009893 if (WIFSIGNALED(status))
9894 ret = 128 + WTERMSIG(status);
Mike Frysinger56bdea12009-03-28 20:01:58 +00009895 }
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009896 } while (*++argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00009897
9898 return ret;
9899}
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009900#endif
Mike Frysinger56bdea12009-03-28 20:01:58 +00009901
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009902#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
9903static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
9904{
9905 if (argv[1]) {
9906 def = bb_strtou(argv[1], NULL, 10);
9907 if (errno || def < def_min || argv[2]) {
9908 bb_error_msg("%s: bad arguments", argv[0]);
9909 def = UINT_MAX;
9910 }
9911 }
9912 return def;
9913}
9914#endif
9915
Denis Vlasenkodadfb492008-07-29 10:16:05 +00009916#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009917static int FAST_FUNC builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00009918{
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009919 unsigned depth;
Denis Vlasenko87a86552008-07-29 19:43:10 +00009920 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00009921 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denys Vlasenko49117b42016-07-21 14:40:08 +02009922 /* if we came from builtin_continue(), need to undo "= 1" */
9923 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00009924 return EXIT_SUCCESS; /* bash compat */
9925 }
Denys Vlasenko49117b42016-07-21 14:40:08 +02009926 G.flag_break_continue++; /* BC_BREAK = 1, or BC_CONTINUE = 2 */
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009927
9928 G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
9929 if (depth == UINT_MAX)
9930 G.flag_break_continue = BC_BREAK;
9931 if (G.depth_of_loop < depth)
Denis Vlasenko87a86552008-07-29 19:43:10 +00009932 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009933
Denis Vlasenkobcb25532008-07-28 23:04:34 +00009934 return EXIT_SUCCESS;
9935}
9936
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009937static int FAST_FUNC builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00009938{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00009939 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
9940 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00009941}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00009942#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009943
9944#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009945static int FAST_FUNC builtin_return(char **argv)
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009946{
9947 int rc;
9948
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02009949 if (G_flag_return_in_progress != -1) {
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009950 bb_error_msg("%s: not in a function or sourced script", argv[0]);
9951 return EXIT_FAILURE; /* bash compat */
9952 }
9953
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02009954 G_flag_return_in_progress = 1;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009955
9956 /* bash:
9957 * out of range: wraps around at 256, does not error out
9958 * non-numeric param:
9959 * f() { false; return qwe; }; f; echo $?
9960 * bash: return: qwe: numeric argument required <== we do this
9961 * 255 <== we also do this
9962 */
9963 rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
9964 return rc;
9965}
9966#endif
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009967
9968#if ENABLE_HUSH_MEMLEAK
9969static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM)
9970{
9971 void *p;
9972 unsigned long l;
9973
9974# ifdef M_TRIM_THRESHOLD
9975 /* Optional. Reduces probability of false positives */
9976 malloc_trim(0);
9977# endif
9978 /* Crude attempt to find where "free memory" starts,
9979 * sans fragmentation. */
9980 p = malloc(240);
9981 l = (unsigned long)p;
9982 free(p);
9983 p = malloc(3400);
9984 if (l < (unsigned long)p) l = (unsigned long)p;
9985 free(p);
9986
9987
9988# if 0 /* debug */
9989 {
9990 struct mallinfo mi = mallinfo();
9991 printf("top alloc:0x%lx malloced:%d+%d=%d\n", l,
9992 mi.arena, mi.hblkhd, mi.arena + mi.hblkhd);
9993 }
9994# endif
9995
9996 if (!G.memleak_value)
9997 G.memleak_value = l;
9998
9999 l -= G.memleak_value;
10000 if ((long)l < 0)
10001 l = 0;
10002 l /= 1024;
10003 if (l > 127)
10004 l = 127;
10005
10006 /* Exitcode is "how many kilobytes we leaked since 1st call" */
10007 return l;
10008}
10009#endif