blob: c8356f4b8552745349bbe2742ff5994309374b4d [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)
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +020044 * make complex ${var%...} constructs support optional
45 * make here documents optional
Denys Vlasenko203fd7b2017-07-17 16:13:35 +020046 * special variables (done: PWD, PPID, RANDOM)
47 * follow IFS rules more precisely, including update semantics
48 * tilde expansion
49 * aliases
50 * builtins mandated by standards we don't support:
51 * [un]alias, command, fc, getopts, readonly, times:
52 * command -v CMD: print "/path/to/CMD"
53 * prints "CMD" for builtins
54 * prints "alias ALIAS='EXPANSION'" for aliases
55 * prints nothing and sets $? to 1 if not found
56 * command -V CMD: print "CMD is /path/CMD|a shell builtin|etc"
57 * command [-p] CMD: run CMD, even if a function CMD also exists
58 * (can use this to override standalone shell as well)
59 * -p: use default $PATH
60 * readonly VAR[=VAL]...: make VARs readonly
61 * readonly [-p]: list all such VARs (-p has no effect in bash)
62 * getopts: getopt() for shells
63 * times: print getrusage(SELF/CHILDREN).ru_utime/ru_stime
64 * fc -l[nr] [BEG] [END]: list range of commands in history
65 * fc [-e EDITOR] [BEG] [END]: edit/rerun range of commands
66 * fc -s [PAT=REP] [CMD]: rerun CMD, replacing PAT with REP
Mike Frysinger25a6ca02009-03-28 13:59:26 +000067 *
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020068 * Bash compat TODO:
69 * redirection of stdout+stderr: &> and >&
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020070 * reserved words: function select
71 * advanced test: [[ ]]
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020072 * process substitution: <(list) and >(list)
73 * =~: regex operator
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020074 * let EXPR [EXPR...]
Denys Vlasenko349ef962010-05-21 15:46:24 +020075 * Each EXPR is an arithmetic expression (ARITHMETIC EVALUATION)
76 * If the last arg evaluates to 0, let returns 1; 0 otherwise.
77 * NB: let `echo 'a=a + 1'` - error (IOW: multi-word expansion is used)
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020078 * ((EXPR))
Denys Vlasenko349ef962010-05-21 15:46:24 +020079 * The EXPR is evaluated according to ARITHMETIC EVALUATION.
80 * This is exactly equivalent to let "EXPR".
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020081 * $[EXPR]: synonym for $((EXPR))
Denys Vlasenko203fd7b2017-07-17 16:13:35 +020082 * indirect expansion: ${!VAR}
83 * substring op on @: ${@:n:m}
Denys Vlasenkobbecd742010-10-03 17:22:52 +020084 *
85 * Won't do:
Denys Vlasenko203fd7b2017-07-17 16:13:35 +020086 * Some builtins mandated by standards:
87 * newgrp [GRP]: not a builtin in bash but a suid binary
88 * which spawns a new shell with new group ID
Denys Vlasenkobbecd742010-10-03 17:22:52 +020089 * In bash, export builtin is special, its arguments are assignments
Denys Vlasenko08218012009-06-03 14:43:56 +020090 * and therefore expansion of them should be "one-word" expansion:
91 * $ export i=`echo 'a b'` # export has one arg: "i=a b"
92 * compare with:
93 * $ ls i=`echo 'a b'` # ls has two args: "i=a" and "b"
94 * ls: cannot access i=a: No such file or directory
95 * ls: cannot access b: No such file or directory
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020096 * Note1: same applies to local builtin.
Denys Vlasenko08218012009-06-03 14:43:56 +020097 * Note2: bash 3.2.33(1) does this only if export word itself
98 * is not quoted:
99 * $ export i=`echo 'aaa bbb'`; echo "$i"
100 * aaa bbb
101 * $ "export" i=`echo 'aaa bbb'`; echo "$i"
102 * aaa
Eric Andersen25f27032001-04-26 23:22:31 +0000103 */
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200104//config:config HUSH
105//config: bool "hush"
106//config: default y
107//config: help
Denys Vlasenko771f1992010-07-16 14:31:34 +0200108//config: hush is a small shell (25k). It handles the normal flow control
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200109//config: constructs such as if/then/elif/else/fi, for/in/do/done, while loops,
110//config: case/esac. Redirections, here documents, $((arithmetic))
111//config: and functions are supported.
112//config:
113//config: It will compile and work on no-mmu systems.
114//config:
Denys Vlasenkoe2069fb2010-10-04 00:01:47 +0200115//config: It does not handle select, aliases, tilde expansion,
116//config: &>file and >&file redirection of stdout+stderr.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200117//config:
118//config:config HUSH_BASH_COMPAT
119//config: bool "bash-compatible extensions"
120//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100121//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200122//config:
Denys Vlasenko9e800222010-10-03 14:28:04 +0200123//config:config HUSH_BRACE_EXPANSION
124//config: bool "Brace expansion"
125//config: default y
126//config: depends on HUSH_BASH_COMPAT
127//config: help
128//config: Enable {abc,def} extension.
129//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200130//config:config HUSH_INTERACTIVE
131//config: bool "Interactive mode"
132//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100133//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200134//config: help
135//config: Enable interactive mode (prompt and command editing).
136//config: Without this, hush simply reads and executes commands
137//config: from stdin just like a shell script from a file.
138//config: No prompt, no PS1/PS2 magic shell variables.
139//config:
Denys Vlasenko99862cb2010-09-12 17:34:13 +0200140//config:config HUSH_SAVEHISTORY
141//config: bool "Save command history to .hush_history"
142//config: default y
143//config: depends on HUSH_INTERACTIVE && FEATURE_EDITING_SAVEHISTORY
Denys Vlasenko99862cb2010-09-12 17:34:13 +0200144//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200145//config:config HUSH_JOB
146//config: bool "Job control"
147//config: default y
148//config: depends on HUSH_INTERACTIVE
149//config: help
150//config: Enable job control: Ctrl-Z backgrounds, Ctrl-C interrupts current
151//config: command (not entire shell), fg/bg builtins work. Without this option,
152//config: "cmd &" still works by simply spawning a process and immediately
153//config: prompting for next command (or executing next command in a script),
154//config: but no separate process group is formed.
155//config:
156//config:config HUSH_TICK
Denys Vlasenkof5604222017-01-10 14:58:54 +0100157//config: bool "Support process substitution"
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200158//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100159//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200160//config: help
Denys Vlasenkof5604222017-01-10 14:58:54 +0100161//config: Enable `command` and $(command).
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200162//config:
163//config:config HUSH_IF
164//config: bool "Support if/then/elif/else/fi"
165//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100166//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200167//config:
168//config:config HUSH_LOOPS
169//config: bool "Support for, while and until loops"
170//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100171//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200172//config:
173//config:config HUSH_CASE
174//config: bool "Support case ... esac statement"
175//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100176//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200177//config: help
Denys Vlasenkof5604222017-01-10 14:58:54 +0100178//config: Enable case ... esac statement. +400 bytes.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200179//config:
180//config:config HUSH_FUNCTIONS
181//config: bool "Support funcname() { commands; } syntax"
182//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100183//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200184//config: help
Denys Vlasenkof5604222017-01-10 14:58:54 +0100185//config: Enable support for shell functions. +800 bytes.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200186//config:
187//config:config HUSH_LOCAL
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100188//config: bool "local builtin"
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200189//config: default y
190//config: depends on HUSH_FUNCTIONS
191//config: help
192//config: Enable support for local variables in functions.
193//config:
194//config:config HUSH_RANDOM_SUPPORT
195//config: bool "Pseudorandom generator and $RANDOM variable"
196//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100197//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200198//config: help
199//config: Enable pseudorandom generator and dynamic variable "$RANDOM".
200//config: Each read of "$RANDOM" will generate a new pseudorandom value.
201//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200202//config:config HUSH_MODE_X
203//config: bool "Support 'hush -x' option and 'set -x' command"
204//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100205//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200206//config: help
Denys Vlasenko29082232010-07-16 13:52:32 +0200207//config: This instructs hush to print commands before execution.
208//config: Adds ~300 bytes.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200209//config:
Denys Vlasenko1cc68042017-01-09 17:10:04 +0100210//config:config HUSH_ECHO
211//config: bool "echo builtin"
212//config: default y
213//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko1cc68042017-01-09 17:10:04 +0100214//config:
215//config:config HUSH_PRINTF
216//config: bool "printf builtin"
217//config: default y
218//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenkof5604222017-01-10 14:58:54 +0100219//config:
Denys Vlasenko265062d2017-01-10 15:13:30 +0100220//config:config HUSH_TEST
221//config: bool "test builtin"
222//config: default y
223//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
224//config:
Denys Vlasenkof5604222017-01-10 14:58:54 +0100225//config:config HUSH_HELP
226//config: bool "help builtin"
227//config: default y
228//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko1cc68042017-01-09 17:10:04 +0100229//config:
Denys Vlasenko6ec76d82017-01-08 18:40:41 +0100230//config:config HUSH_EXPORT
231//config: bool "export builtin"
232//config: default y
233//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko6ec76d82017-01-08 18:40:41 +0100234//config:
235//config:config HUSH_EXPORT_N
236//config: bool "Support 'export -n' option"
237//config: default y
238//config: depends on HUSH_EXPORT
239//config: help
240//config: export -n unexports variables. It is a bash extension.
241//config:
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100242//config:config HUSH_KILL
Denys Vlasenkof5604222017-01-10 14:58:54 +0100243//config: bool "kill builtin (supports kill %jobspec)"
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100244//config: default y
245//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100246//config:
247//config:config HUSH_WAIT
248//config: bool "wait builtin"
249//config: default y
250//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100251//config:
252//config:config HUSH_TRAP
253//config: bool "trap builtin"
254//config: default y
255//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100256//config:
257//config:config HUSH_TYPE
258//config: bool "type builtin"
259//config: default y
260//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100261//config:
262//config:config HUSH_READ
263//config: bool "read builtin"
264//config: default y
265//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100266//config:
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100267//config:config HUSH_SET
268//config: bool "set builtin"
269//config: default y
270//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100271//config:
272//config:config HUSH_UNSET
273//config: bool "unset builtin"
274//config: default y
275//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenkof5604222017-01-10 14:58:54 +0100276//config:
277//config:config HUSH_ULIMIT
278//config: bool "ulimit builtin"
279//config: default y
280//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100281//config:
Denys Vlasenkod5933b12017-01-08 18:31:39 +0100282//config:config HUSH_UMASK
283//config: bool "umask builtin"
284//config: default y
285//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenkod5933b12017-01-08 18:31:39 +0100286//config:
Denys Vlasenko44719692017-01-08 18:44:41 +0100287//config:config HUSH_MEMLEAK
288//config: bool "memleak builtin (debugging)"
289//config: default n
290//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200291
Denys Vlasenko20704f02011-03-23 17:59:27 +0100292//applet:IF_HUSH(APPLET(hush, BB_DIR_BIN, BB_SUID_DROP))
Denys Vlasenko205d48e2017-01-29 14:57:33 +0100293// APPLET_ODDNAME:name main location suid_type help
Denys Vlasenko205d48e2017-01-29 14:57:33 +0100294//applet:IF_SH_IS_HUSH( APPLET_ODDNAME(sh, hush, BB_DIR_BIN, BB_SUID_DROP, hush))
Denys Vlasenko0b883582016-12-23 16:49:07 +0100295//applet:IF_BASH_IS_HUSH(APPLET_ODDNAME(bash, hush, BB_DIR_BIN, BB_SUID_DROP, hush))
Denys Vlasenko20704f02011-03-23 17:59:27 +0100296
297//kbuild:lib-$(CONFIG_HUSH) += hush.o match.o shell_common.o
Denys Vlasenko0b883582016-12-23 16:49:07 +0100298//kbuild:lib-$(CONFIG_SH_IS_HUSH) += hush.o match.o shell_common.o
299//kbuild:lib-$(CONFIG_BASH_IS_HUSH) += hush.o match.o shell_common.o
Denys Vlasenko20704f02011-03-23 17:59:27 +0100300//kbuild:lib-$(CONFIG_HUSH_RANDOM_SUPPORT) += random.o
301
Dan Fandrich89ca2f92010-11-28 01:54:39 +0100302/* -i (interactive) and -s (read stdin) are also accepted,
303 * but currently do nothing, therefore aren't shown in help.
304 * NOMMU-specific options are not meant to be used by users,
305 * therefore we don't show them either.
306 */
307//usage:#define hush_trivial_usage
Denys Vlasenko9fda6092017-07-14 13:36:48 +0200308//usage: "[-enxl] [-c 'SCRIPT' [ARG0 [ARGS]] / FILE [ARGS]]"
Denys Vlasenkob0b83432011-03-07 12:34:59 +0100309//usage:#define hush_full_usage "\n\n"
310//usage: "Unix shell interpreter"
311
Denys Vlasenko67047462016-12-22 15:21:58 +0100312#if !(defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) \
313 || defined(__APPLE__) \
314 )
315# include <malloc.h> /* for malloc_trim */
316#endif
317#include <glob.h>
318/* #include <dmalloc.h> */
319#if ENABLE_HUSH_CASE
320# include <fnmatch.h>
321#endif
322#include <sys/utsname.h> /* for setting $HOSTNAME */
323
324#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
325#include "unicode.h"
326#include "shell_common.h"
327#include "math.h"
328#include "match.h"
329#if ENABLE_HUSH_RANDOM_SUPPORT
330# include "random.h"
331#else
332# define CLEAR_RANDOM_T(rnd) ((void)0)
333#endif
334#ifndef F_DUPFD_CLOEXEC
335# define F_DUPFD_CLOEXEC F_DUPFD
336#endif
337#ifndef PIPE_BUF
338# define PIPE_BUF 4096 /* amount of buffering in a pipe */
339#endif
340
Denis Vlasenko1943aec2009-04-09 14:15:57 +0000341
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100342/* So far, all bash compat is controlled by one config option */
343/* Separate defines document which part of code implements what */
344#define BASH_PATTERN_SUBST ENABLE_HUSH_BASH_COMPAT
345#define BASH_SUBSTR ENABLE_HUSH_BASH_COMPAT
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100346#define BASH_SOURCE ENABLE_HUSH_BASH_COMPAT
347#define BASH_HOSTNAME_VAR ENABLE_HUSH_BASH_COMPAT
Denys Vlasenko4ee824f2017-07-03 01:22:13 +0200348#define BASH_TEST2 (ENABLE_HUSH_BASH_COMPAT && ENABLE_HUSH_TEST)
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100349
350
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200351/* Build knobs */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000352#define LEAK_HUNTING 0
353#define BUILD_AS_NOMMU 0
354/* Enable/disable sanity checks. Ok to enable in production,
355 * only adds a bit of bloat. Set to >1 to get non-production level verbosity.
356 * Keeping 1 for now even in released versions.
357 */
358#define HUSH_DEBUG 1
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200359/* Slightly bigger (+200 bytes), but faster hush.
360 * So far it only enables a trick with counting SIGCHLDs and forks,
361 * which allows us to do fewer waitpid's.
362 * (we can detect a case where neither forks were done nor SIGCHLDs happened
363 * and therefore waitpid will return the same result as last time)
364 */
365#define ENABLE_HUSH_FAST 0
Denys Vlasenko9297dbc2010-07-05 21:37:12 +0200366/* TODO: implement simplified code for users which do not need ${var%...} ops
367 * So far ${var%...} ops are always enabled:
368 */
369#define ENABLE_HUSH_DOLLAR_OPS 1
Denis Vlasenko1943aec2009-04-09 14:15:57 +0000370
371
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000372#if BUILD_AS_NOMMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000373# undef BB_MMU
374# undef USE_FOR_NOMMU
375# undef USE_FOR_MMU
376# define BB_MMU 0
377# define USE_FOR_NOMMU(...) __VA_ARGS__
378# define USE_FOR_MMU(...)
379#endif
380
Denys Vlasenko1fcbff22010-06-26 02:40:08 +0200381#include "NUM_APPLETS.h"
Denys Vlasenko14974842010-03-23 01:08:26 +0100382#if NUM_APPLETS == 1
Denis Vlasenko61befda2008-11-25 01:36:03 +0000383/* STANDALONE does not make sense, and won't compile */
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000384# undef CONFIG_FEATURE_SH_STANDALONE
385# undef ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000386# undef IF_FEATURE_SH_STANDALONE
Denys Vlasenko14974842010-03-23 01:08:26 +0100387# undef IF_NOT_FEATURE_SH_STANDALONE
388# define ENABLE_FEATURE_SH_STANDALONE 0
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000389# define IF_FEATURE_SH_STANDALONE(...)
390# define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__
Denis Vlasenko61befda2008-11-25 01:36:03 +0000391#endif
392
Denis Vlasenko05743d72008-02-10 12:10:08 +0000393#if !ENABLE_HUSH_INTERACTIVE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000394# undef ENABLE_FEATURE_EDITING
395# define ENABLE_FEATURE_EDITING 0
396# undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
397# define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denys Vlasenko8cab6672012-04-20 14:48:00 +0200398# undef ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
399# define ENABLE_FEATURE_EDITING_SAVE_ON_EXIT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000400#endif
401
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000402/* Do we support ANY keywords? */
403#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000404# define HAS_KEYWORDS 1
405# define IF_HAS_KEYWORDS(...) __VA_ARGS__
406# define IF_HAS_NO_KEYWORDS(...)
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000407#else
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000408# define HAS_KEYWORDS 0
409# define IF_HAS_KEYWORDS(...)
410# define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000411#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000412
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000413/* If you comment out one of these below, it will be #defined later
414 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000415#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000416/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000417#define debug_printf_parse(...) do {} while (0)
418#define debug_print_tree(a, b) do {} while (0)
419#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000420#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000421#define debug_printf_jobs(...) do {} while (0)
422#define debug_printf_expand(...) do {} while (0)
Denys Vlasenko1e811b12010-05-22 03:12:29 +0200423#define debug_printf_varexp(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000424#define debug_printf_glob(...) do {} while (0)
Denys Vlasenko2db74612017-07-07 22:07:28 +0200425#define debug_printf_redir(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000426#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000427#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000428#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000429
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000430#define ERR_PTR ((void*)(long)1)
431
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +0100432#define JOB_STATUS_FORMAT "[%u] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000433
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200434#define _SPECIAL_VARS_STR "_*@$!?#"
435#define SPECIAL_VARS_STR ("_*@$!?#" + 1)
436#define NUMERIC_SPECVARS_STR ("_*@$!?#" + 3)
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100437#if BASH_PATTERN_SUBST
Denys Vlasenko36f774a2010-09-05 14:45:38 +0200438/* Support / and // replace ops */
439/* Note that // is stored as \ in "encoded" string representation */
440# define VAR_ENCODED_SUBST_OPS "\\/%#:-=+?"
441# define VAR_SUBST_OPS ("\\/%#:-=+?" + 1)
442# define MINUS_PLUS_EQUAL_QUESTION ("\\/%#:-=+?" + 5)
443#else
444# define VAR_ENCODED_SUBST_OPS "%#:-=+?"
445# define VAR_SUBST_OPS "%#:-=+?"
446# define MINUS_PLUS_EQUAL_QUESTION ("%#:-=+?" + 3)
447#endif
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200448
449#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000450
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200451struct variable;
452
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000453static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
454
455/* This supports saving pointers malloced in vfork child,
Denis Vlasenkoc376db32009-04-15 21:49:48 +0000456 * to be freed in the parent.
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000457 */
458#if !BB_MMU
459typedef struct nommu_save_t {
460 char **new_env;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200461 struct variable *old_vars;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000462 char **argv;
Denis Vlasenko27014ed2009-04-15 21:48:23 +0000463 char **argv_from_re_execing;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000464} nommu_save_t;
465#endif
466
Denys Vlasenko9b782552010-09-08 13:33:26 +0200467enum {
Eric Andersen25f27032001-04-26 23:22:31 +0000468 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000469#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000470 RES_IF ,
471 RES_THEN ,
472 RES_ELIF ,
473 RES_ELSE ,
474 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000475#endif
476#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000477 RES_FOR ,
478 RES_WHILE ,
479 RES_UNTIL ,
480 RES_DO ,
481 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000482#endif
483#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000484 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000485#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000486#if ENABLE_HUSH_CASE
487 RES_CASE ,
Denys Vlasenkoe9bda902009-05-23 16:50:07 +0200488 /* three pseudo-keywords support contrived "case" syntax: */
489 RES_CASE_IN, /* "case ... IN", turns into RES_MATCH when IN is observed */
490 RES_MATCH , /* "word)" */
491 RES_CASE_BODY, /* "this command is inside CASE" */
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000492 RES_ESAC ,
493#endif
494 RES_XXXX ,
495 RES_SNTX
Denys Vlasenko9b782552010-09-08 13:33:26 +0200496};
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000497
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000498typedef struct o_string {
499 char *data;
500 int length; /* position where data is appended */
501 int maxlen;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +0200502 int o_expflags;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000503 /* At least some part of the string was inside '' or "",
504 * possibly empty one: word"", wo''rd etc. */
Denys Vlasenko38292b62010-09-05 14:49:40 +0200505 smallint has_quoted_part;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000506 smallint has_empty_slot;
507 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
508} o_string;
509enum {
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200510 EXP_FLAG_SINGLEWORD = 0x80, /* must be 0x80 */
511 EXP_FLAG_GLOB = 0x2,
512 /* Protect newly added chars against globbing
513 * by prepending \ to *, ?, [, \ */
514 EXP_FLAG_ESC_GLOB_CHARS = 0x1,
515};
516enum {
517 MAYBE_ASSIGNMENT = 0,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000518 DEFINITELY_ASSIGNMENT = 1,
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200519 NOT_ASSIGNMENT = 2,
Maninder Singh97c64912015-05-25 13:46:36 +0200520 /* Not an assignment, but next word may be: "if v=xyz cmd;" */
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200521 WORD_IS_KEYWORD = 3,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000522};
523/* Used for initialization: o_string foo = NULL_O_STRING; */
524#define NULL_O_STRING { NULL }
525
Denys Vlasenko29f9b722011-05-14 11:27:36 +0200526#ifndef debug_printf_parse
527static const char *const assignment_flag[] = {
528 "MAYBE_ASSIGNMENT",
529 "DEFINITELY_ASSIGNMENT",
530 "NOT_ASSIGNMENT",
531 "WORD_IS_KEYWORD",
532};
533#endif
534
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000535typedef struct in_str {
536 const char *p;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000537#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000538 smallint promptmode; /* 0: PS1, 1: PS2 */
539#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +0200540 int peek_buf[2];
Denys Vlasenkocecbc982011-03-30 18:54:52 +0200541 int last_char;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000542 FILE *file;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000543} in_str;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000544
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200545/* The descrip member of this structure is only used to make
546 * debugging output pretty */
547static const struct {
548 int mode;
549 signed char default_fd;
550 char descrip[3];
551} redir_table[] = {
552 { O_RDONLY, 0, "<" },
553 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
554 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
555 { O_CREAT|O_RDWR, 1, "<>" },
556 { O_RDONLY, 0, "<<" },
557/* Should not be needed. Bogus default_fd helps in debugging */
558/* { O_RDONLY, 77, "<<" }, */
559};
560
Eric Andersen25f27032001-04-26 23:22:31 +0000561struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000562 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000563 char *rd_filename; /* filename */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000564 int rd_fd; /* fd to redirect */
565 /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
566 int rd_dup;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000567 smallint rd_type; /* (enum redir_type) */
568 /* note: for heredocs, rd_filename contains heredoc delimiter,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000569 * and subsequently heredoc itself; and rd_dup is a bitmask:
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200570 * bit 0: do we need to trim leading tabs?
571 * bit 1: is heredoc quoted (<<'delim' syntax) ?
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000572 */
Eric Andersen25f27032001-04-26 23:22:31 +0000573};
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000574typedef enum redir_type {
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200575 REDIRECT_INPUT = 0,
576 REDIRECT_OVERWRITE = 1,
577 REDIRECT_APPEND = 2,
578 REDIRECT_IO = 3,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000579 REDIRECT_HEREDOC = 4,
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200580 REDIRECT_HEREDOC2 = 5, /* REDIRECT_HEREDOC after heredoc is loaded */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000581
582 REDIRFD_CLOSE = -3,
583 REDIRFD_SYNTAX_ERR = -2,
Denis Vlasenko835fcfd2009-04-10 13:51:56 +0000584 REDIRFD_TO_FILE = -1,
585 /* otherwise, rd_fd is redirected to rd_dup */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000586
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000587 HEREDOC_SKIPTABS = 1,
588 HEREDOC_QUOTED = 2,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000589} redir_type;
590
Eric Andersen25f27032001-04-26 23:22:31 +0000591
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000592struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000593 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000594 int assignment_cnt; /* how many argv[i] are assignments? */
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200595 smallint cmd_type; /* CMD_xxx */
596#define CMD_NORMAL 0
597#define CMD_SUBSHELL 1
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100598#if BASH_TEST2
Denys Vlasenkod383b492010-09-06 10:22:13 +0200599/* used for "[[ EXPR ]]" */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200600# define CMD_SINGLEWORD_NOGLOB 2
Denis Vlasenkoed055212009-04-11 10:37:10 +0000601#endif
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200602#if ENABLE_HUSH_FUNCTIONS
603# define CMD_FUNCDEF 3
604#endif
605
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100606 smalluint cmd_exitcode;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200607 /* if non-NULL, this "command" is { list }, ( list ), or a compound statement */
608 struct pipe *group;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000609#if !BB_MMU
610 char *group_as_string;
611#endif
Denis Vlasenkoed055212009-04-11 10:37:10 +0000612#if ENABLE_HUSH_FUNCTIONS
613 struct function *child_func;
614/* This field is used to prevent a bug here:
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200615 * while...do f1() {a;}; f1; f1() {b;}; f1; done
Denis Vlasenkoed055212009-04-11 10:37:10 +0000616 * When we execute "f1() {a;}" cmd, we create new function and clear
617 * cmd->group, cmd->group_as_string, cmd->argv[0].
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200618 * When we execute "f1() {b;}", we notice that f1 exists,
619 * and that its "parent cmd" struct is still "alive",
Denis Vlasenkoed055212009-04-11 10:37:10 +0000620 * we put those fields back into cmd->xxx
621 * (struct function has ->parent_cmd ptr to facilitate that).
622 * When we loop back, we can execute "f1() {a;}" again and set f1 correctly.
623 * Without this trick, loop would execute a;b;b;b;...
624 * instead of correct sequence a;b;a;b;...
625 * When command is freed, it severs the link
626 * (sets ->child_func->parent_cmd to NULL).
627 */
628#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000629 char **argv; /* command name and arguments */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000630/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
631 * and on execution these are substituted with their values.
632 * Substitution can make _several_ words out of one argv[n]!
633 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000634 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000635 */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000636 struct redir_struct *redirects; /* I/O redirections */
637};
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000638/* Is there anything in this command at all? */
639#define IS_NULL_CMD(cmd) \
640 (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects)
641
Eric Andersen25f27032001-04-26 23:22:31 +0000642struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000643 struct pipe *next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000644 int num_cmds; /* total number of commands in pipe */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000645 int alive_cmds; /* number of commands running (not exited) */
646 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000647#if ENABLE_HUSH_JOB
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +0100648 unsigned jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000649 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000650 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000651#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000652 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000653 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000654 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
655 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000656};
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000657typedef enum pipe_style {
Denys Vlasenko00a06b92016-11-08 20:35:53 +0100658 PIPE_SEQ = 0,
659 PIPE_AND = 1,
660 PIPE_OR = 2,
661 PIPE_BG = 3,
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000662} pipe_style;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000663/* Is there anything in this pipe at all? */
664#define IS_NULL_PIPE(pi) \
665 ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE))
Eric Andersen25f27032001-04-26 23:22:31 +0000666
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000667/* This holds pointers to the various results of parsing */
668struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000669 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000670 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000671 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000672 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000673 /* last command in pipe (being constructed right now) */
674 struct command *command;
675 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000676 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000677#if !BB_MMU
678 o_string as_string;
679#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000680#if HAS_KEYWORDS
681 smallint ctx_res_w;
682 smallint ctx_inverted; /* "! cmd | cmd" */
683#if ENABLE_HUSH_CASE
684 smallint ctx_dsemicolon; /* ";;" seen */
685#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000686 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
687 int old_flag;
688 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000689 * example: "if pipe1; pipe2; then pipe3; fi"
690 * when we see "if" or "then", we malloc and copy current context,
691 * and make ->stack point to it. then we parse pipeN.
692 * when closing "then" / fi" / whatever is found,
693 * we move list_head into ->stack->command->group,
694 * copy ->stack into current context, and delete ->stack.
695 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000696 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000697 struct parse_context *stack;
698#endif
699};
700
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000701/* On program start, environ points to initial environment.
702 * putenv adds new pointers into it, unsetenv removes them.
703 * Neither of these (de)allocates the strings.
704 * setenv allocates new strings in malloc space and does putenv,
705 * and thus setenv is unusable (leaky) for shell's purposes */
706#define setenv(...) setenv_is_leaky_dont_use()
707struct variable {
708 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000709 char *varstr; /* points to "name=" portion */
Denys Vlasenko295fef82009-06-03 12:47:26 +0200710#if ENABLE_HUSH_LOCAL
711 unsigned func_nest_level;
712#endif
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000713 int max_len; /* if > 0, name is part of initial env; else name is malloced */
714 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000715 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000716};
717
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000718enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000719 BC_BREAK = 1,
720 BC_CONTINUE = 2,
721};
722
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000723#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000724struct function {
725 struct function *next;
726 char *name;
Denis Vlasenkoed055212009-04-11 10:37:10 +0000727 struct command *parent_cmd;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000728 struct pipe *body;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200729# if !BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000730 char *body_as_string;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200731# endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000732};
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000733#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000734
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000735
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100736/* set -/+o OPT support. (TODO: make it optional)
737 * bash supports the following opts:
738 * allexport off
739 * braceexpand on
740 * emacs on
741 * errexit off
742 * errtrace off
743 * functrace off
744 * hashall on
745 * histexpand off
746 * history on
747 * ignoreeof off
748 * interactive-comments on
749 * keyword off
750 * monitor on
751 * noclobber off
752 * noexec off
753 * noglob off
754 * nolog off
755 * notify off
756 * nounset off
757 * onecmd off
758 * physical off
759 * pipefail off
760 * posix off
761 * privileged off
762 * verbose off
763 * vi off
764 * xtrace off
765 */
Dan Fandrich85c62472010-11-20 13:05:17 -0800766static const char o_opt_strings[] ALIGN1 =
767 "pipefail\0"
768 "noexec\0"
Denys Vlasenko9fda6092017-07-14 13:36:48 +0200769 "errexit\0"
Dan Fandrich85c62472010-11-20 13:05:17 -0800770#if ENABLE_HUSH_MODE_X
771 "xtrace\0"
772#endif
773 ;
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100774enum {
775 OPT_O_PIPEFAIL,
Dan Fandrich85c62472010-11-20 13:05:17 -0800776 OPT_O_NOEXEC,
Denys Vlasenko9fda6092017-07-14 13:36:48 +0200777 OPT_O_ERREXIT,
Dan Fandrich85c62472010-11-20 13:05:17 -0800778#if ENABLE_HUSH_MODE_X
779 OPT_O_XTRACE,
780#endif
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100781 NUM_OPT_O
782};
783
784
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +0200785struct FILE_list {
786 struct FILE_list *next;
787 FILE *fp;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +0200788 int fd;
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +0200789};
790
791
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000792/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000793/* Sorted roughly by size (smaller offsets == smaller code) */
794struct globals {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000795 /* interactive_fd != 0 means we are an interactive shell.
796 * If we are, then saved_tty_pgrp can also be != 0, meaning
797 * that controlling tty is available. With saved_tty_pgrp == 0,
798 * job control still works, but terminal signals
799 * (^C, ^Z, ^Y, ^\) won't work at all, and background
800 * process groups can only be created with "cmd &".
801 * With saved_tty_pgrp != 0, hush will use tcsetpgrp()
802 * to give tty to the foreground process group,
803 * and will take it back when the group is stopped (^Z)
804 * or killed (^C).
805 */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000806#if ENABLE_HUSH_INTERACTIVE
807 /* 'interactive_fd' is a fd# open to ctty, if we have one
808 * _AND_ if we decided to act interactively */
809 int interactive_fd;
810 const char *PS1;
811 const char *PS2;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000812# define G_interactive_fd (G.interactive_fd)
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000813#else
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000814# define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000815#endif
816#if ENABLE_FEATURE_EDITING
817 line_input_t *line_input_state;
818#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000819 pid_t root_pid;
Denys Vlasenkodea47882009-10-09 15:40:49 +0200820 pid_t root_ppid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000821 pid_t last_bg_pid;
Denys Vlasenko20b3d142009-10-09 20:59:39 +0200822#if ENABLE_HUSH_RANDOM_SUPPORT
823 random_t random_gen;
824#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000825#if ENABLE_HUSH_JOB
826 int run_list_level;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +0100827 unsigned last_jobid;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000828 pid_t saved_tty_pgrp;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000829 struct pipe *job_list;
Mike Frysinger38478a62009-05-20 04:48:06 -0400830# define G_saved_tty_pgrp (G.saved_tty_pgrp)
831#else
832# define G_saved_tty_pgrp 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000833#endif
Denys Vlasenko9fda6092017-07-14 13:36:48 +0200834 /* How deeply are we in context where "set -e" is ignored */
835 int errexit_depth;
836 /* "set -e" rules (do we follow them correctly?):
837 * Exit if pipe, list, or compound command exits with a non-zero status.
838 * Shell does not exit if failed command is part of condition in
839 * if/while, part of && or || list except the last command, any command
840 * in a pipe but the last, or if the command's return value is being
841 * inverted with !. If a compound command other than a subshell returns a
842 * non-zero status because a command failed while -e was being ignored, the
843 * shell does not exit. A trap on ERR, if set, is executed before the shell
844 * exits [ERR is a bashism].
845 *
846 * If a compound command or function executes in a context where -e is
847 * ignored, none of the commands executed within are affected by the -e
848 * setting. If a compound command or function sets -e while executing in a
849 * context where -e is ignored, that setting does not have any effect until
850 * the compound command or the command containing the function call completes.
851 */
852
Denys Vlasenko26777aa2010-11-22 23:49:10 +0100853 char o_opt[NUM_OPT_O];
Denys Vlasenko57542eb2010-11-28 03:59:30 +0100854#if ENABLE_HUSH_MODE_X
855# define G_x_mode (G.o_opt[OPT_O_XTRACE])
856#else
857# define G_x_mode 0
858#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000859 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000860#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000861 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000862#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000863#if ENABLE_HUSH_FUNCTIONS
864 /* 0: outside of a function (or sourced file)
865 * -1: inside of a function, ok to use return builtin
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000866 * 1: return is invoked, skip all till end of func
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000867 */
868 smallint flag_return_in_progress;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +0200869# define G_flag_return_in_progress (G.flag_return_in_progress)
870#else
871# define G_flag_return_in_progress 0
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000872#endif
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000873 smallint exiting; /* used to prevent EXIT trap recursion */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000874 /* These four support $?, $#, and $1 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000875 smalluint last_exitcode;
Denys Vlasenko840a4352017-07-07 22:56:02 +0200876 smalluint last_bg_pid_exitcode;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +0100877#if ENABLE_HUSH_SET
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000878 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000879 smalluint global_args_malloced;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +0100880# define G_global_args_malloced (G.global_args_malloced)
881#else
882# define G_global_args_malloced 0
883#endif
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000884 /* how many non-NULL argv's we have. NB: $# + 1 */
885 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000886 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000887#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000888 char *argv0_for_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000889#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000890#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000891 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000892 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000893#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000894 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000895 const char *cwd;
Denys Vlasenko52e460b2010-09-16 16:12:00 +0200896 struct variable *top_var;
Denys Vlasenko29082232010-07-16 13:52:32 +0200897 char **expanded_assignments;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000898#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000899 struct function *top_func;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200900# if ENABLE_HUSH_LOCAL
901 struct variable **shadowed_vars_pp;
902 unsigned func_nest_level;
903# endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000904#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000905 /* Signal and trap handling */
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200906#if ENABLE_HUSH_FAST
907 unsigned count_SIGCHLD;
908 unsigned handled_SIGCHLD;
Denys Vlasenkoe2df5f42009-05-26 14:34:10 +0200909 smallint we_have_children;
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200910#endif
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +0200911 struct FILE_list *FILE_list;
Denys Vlasenko10c01312011-05-11 11:49:21 +0200912 /* Which signals have non-DFL handler (even with no traps set)?
913 * Set at the start to:
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200914 * (SIGQUIT + maybe SPECIAL_INTERACTIVE_SIGS + maybe SPECIAL_JOBSTOP_SIGS)
Denys Vlasenko10c01312011-05-11 11:49:21 +0200915 * SPECIAL_INTERACTIVE_SIGS are cleared after fork.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200916 * The rest is cleared right before execv syscalls.
Denys Vlasenko10c01312011-05-11 11:49:21 +0200917 * Other than these two times, never modified.
918 */
919 unsigned special_sig_mask;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200920#if ENABLE_HUSH_JOB
921 unsigned fatal_sig_mask;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +0100922# define G_fatal_sig_mask (G.fatal_sig_mask)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200923#else
Denys Vlasenko75e77de2011-05-12 13:12:47 +0200924# define G_fatal_sig_mask 0
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200925#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100926#if ENABLE_HUSH_TRAP
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000927 char **traps; /* char *traps[NSIG] */
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100928# define G_traps G.traps
929#else
930# define G_traps ((char**)NULL)
931#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200932 sigset_t pending_set;
Denys Vlasenko44719692017-01-08 18:44:41 +0100933#if ENABLE_HUSH_MEMLEAK
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000934 unsigned long memleak_value;
Denys Vlasenko44719692017-01-08 18:44:41 +0100935#endif
936#if HUSH_DEBUG
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000937 int debug_indent;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000938#endif
Denys Vlasenko0806e402011-05-12 23:06:20 +0200939 struct sigaction sa;
Denys Vlasenko0448c552016-09-29 20:25:44 +0200940#if ENABLE_FEATURE_EDITING
941 char user_input_buf[CONFIG_FEATURE_EDITING_MAX_LEN];
942#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000943};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000944#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000945/* Not #defining name to G.name - this quickly gets unwieldy
946 * (too many defines). Also, I actually prefer to see when a variable
947 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000948#define INIT_G() do { \
949 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denys Vlasenko0806e402011-05-12 23:06:20 +0200950 /* memset(&G.sa, 0, sizeof(G.sa)); */ \
951 sigfillset(&G.sa.sa_mask); \
952 G.sa.sa_flags = SA_RESTART; \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000953} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000954
955
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000956/* Function prototypes for builtins */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200957static int builtin_cd(char **argv) FAST_FUNC;
Denys Vlasenko1cc68042017-01-09 17:10:04 +0100958#if ENABLE_HUSH_ECHO
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200959static int builtin_echo(char **argv) FAST_FUNC;
Denys Vlasenko1cc68042017-01-09 17:10:04 +0100960#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200961static int builtin_eval(char **argv) FAST_FUNC;
962static int builtin_exec(char **argv) FAST_FUNC;
963static int builtin_exit(char **argv) FAST_FUNC;
Denys Vlasenko6ec76d82017-01-08 18:40:41 +0100964#if ENABLE_HUSH_EXPORT
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200965static int builtin_export(char **argv) FAST_FUNC;
Denys Vlasenko6ec76d82017-01-08 18:40:41 +0100966#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000967#if ENABLE_HUSH_JOB
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200968static int builtin_fg_bg(char **argv) FAST_FUNC;
969static int builtin_jobs(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000970#endif
971#if ENABLE_HUSH_HELP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200972static int builtin_help(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000973#endif
Denys Vlasenkoff463a82013-05-12 02:45:23 +0200974#if MAX_HISTORY && ENABLE_FEATURE_EDITING
Flemming Madsend96ffda2013-04-07 18:47:24 +0200975static int builtin_history(char **argv) FAST_FUNC;
976#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +0200977#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200978static int builtin_local(char **argv) FAST_FUNC;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200979#endif
Denys Vlasenko44719692017-01-08 18:44:41 +0100980#if ENABLE_HUSH_MEMLEAK
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200981static int builtin_memleak(char **argv) FAST_FUNC;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000982#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +0100983#if ENABLE_HUSH_PRINTF
Mike Frysinger4ebc76c2009-10-15 03:32:39 -0400984static int builtin_printf(char **argv) FAST_FUNC;
985#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200986static int builtin_pwd(char **argv) FAST_FUNC;
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100987#if ENABLE_HUSH_READ
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200988static int builtin_read(char **argv) FAST_FUNC;
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100989#endif
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100990#if ENABLE_HUSH_SET
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200991static int builtin_set(char **argv) FAST_FUNC;
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100992#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200993static int builtin_shift(char **argv) FAST_FUNC;
994static int builtin_source(char **argv) FAST_FUNC;
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100995#if ENABLE_HUSH_TEST || BASH_TEST2
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200996static int builtin_test(char **argv) FAST_FUNC;
Denys Vlasenko265062d2017-01-10 15:13:30 +0100997#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100998#if ENABLE_HUSH_TRAP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200999static int builtin_trap(char **argv) FAST_FUNC;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001000#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001001#if ENABLE_HUSH_TYPE
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001002static int builtin_type(char **argv) FAST_FUNC;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001003#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001004static int builtin_true(char **argv) FAST_FUNC;
Denys Vlasenkod5933b12017-01-08 18:31:39 +01001005#if ENABLE_HUSH_UMASK
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001006static int builtin_umask(char **argv) FAST_FUNC;
Denys Vlasenkod5933b12017-01-08 18:31:39 +01001007#endif
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001008#if ENABLE_HUSH_UNSET
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001009static int builtin_unset(char **argv) FAST_FUNC;
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001010#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001011#if ENABLE_HUSH_KILL
1012static int builtin_kill(char **argv) FAST_FUNC;
1013#endif
1014#if ENABLE_HUSH_WAIT
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001015static int builtin_wait(char **argv) FAST_FUNC;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001016#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001017#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001018static int builtin_break(char **argv) FAST_FUNC;
1019static int builtin_continue(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001020#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00001021#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001022static int builtin_return(char **argv) FAST_FUNC;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00001023#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001024
1025/* Table of built-in functions. They can be forked or not, depending on
1026 * context: within pipes, they fork. As simple commands, they do not.
1027 * When used in non-forking context, they can change global variables
1028 * in the parent shell process. If forked, of course they cannot.
1029 * For example, 'unset foo | whatever' will parse and run, but foo will
1030 * still be set at the end. */
1031struct built_in_command {
Denys Vlasenko17323a62010-01-28 01:57:05 +01001032 const char *b_cmd;
1033 int (*b_function)(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001034#if ENABLE_HUSH_HELP
Denys Vlasenko17323a62010-01-28 01:57:05 +01001035 const char *b_descr;
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001036# define BLTIN(cmd, func, help) { cmd, func, help }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001037#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001038# define BLTIN(cmd, func, help) { cmd, func }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001039#endif
1040};
1041
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001042static const struct built_in_command bltins1[] = {
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001043 BLTIN("." , builtin_source , "Run commands in file"),
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001044 BLTIN(":" , builtin_true , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001045#if ENABLE_HUSH_JOB
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001046 BLTIN("bg" , builtin_fg_bg , "Resume job in background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001047#endif
1048#if ENABLE_HUSH_LOOPS
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001049 BLTIN("break" , builtin_break , "Exit loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001050#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001051 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001052#if ENABLE_HUSH_LOOPS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001053 BLTIN("continue" , builtin_continue, "Start new loop iteration"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001054#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001055 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
1056 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001057 BLTIN("exit" , builtin_exit , NULL),
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01001058#if ENABLE_HUSH_EXPORT
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001059 BLTIN("export" , builtin_export , "Set environment variables"),
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01001060#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001061#if ENABLE_HUSH_JOB
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001062 BLTIN("fg" , builtin_fg_bg , "Bring job into foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001063#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001064#if ENABLE_HUSH_HELP
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001065 BLTIN("help" , builtin_help , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001066#endif
Denys Vlasenkoff463a82013-05-12 02:45:23 +02001067#if MAX_HISTORY && ENABLE_FEATURE_EDITING
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001068 BLTIN("history" , builtin_history , "Show history"),
Flemming Madsend96ffda2013-04-07 18:47:24 +02001069#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +00001070#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001071 BLTIN("jobs" , builtin_jobs , "List jobs"),
Denis Vlasenko34d4d892009-04-04 20:24:37 +00001072#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001073#if ENABLE_HUSH_KILL
1074 BLTIN("kill" , builtin_kill , "Send signals to processes"),
1075#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02001076#if ENABLE_HUSH_LOCAL
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001077 BLTIN("local" , builtin_local , "Set local variables"),
Denys Vlasenko295fef82009-06-03 12:47:26 +02001078#endif
Denys Vlasenko44719692017-01-08 18:44:41 +01001079#if ENABLE_HUSH_MEMLEAK
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001080 BLTIN("memleak" , builtin_memleak , NULL),
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00001081#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001082#if ENABLE_HUSH_READ
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001083 BLTIN("read" , builtin_read , "Input into variable"),
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001084#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00001085#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001086 BLTIN("return" , builtin_return , "Return from function"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00001087#endif
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001088#if ENABLE_HUSH_SET
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001089 BLTIN("set" , builtin_set , "Set positional parameters"),
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001090#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001091 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01001092#if BASH_SOURCE
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001093 BLTIN("source" , builtin_source , NULL),
Denys Vlasenko82731b42010-05-17 17:49:52 +02001094#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001095#if ENABLE_HUSH_TRAP
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001096 BLTIN("trap" , builtin_trap , "Trap signals"),
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001097#endif
Denys Vlasenko2bba5912014-03-14 12:43:57 +01001098 BLTIN("true" , builtin_true , NULL),
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001099#if ENABLE_HUSH_TYPE
Denys Vlasenko651a2692010-03-23 16:25:17 +01001100 BLTIN("type" , builtin_type , "Show command type"),
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001101#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001102#if ENABLE_HUSH_ULIMIT
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001103 BLTIN("ulimit" , shell_builtin_ulimit, "Control resource limits"),
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001104#endif
Denys Vlasenkod5933b12017-01-08 18:31:39 +01001105#if ENABLE_HUSH_UMASK
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001106 BLTIN("umask" , builtin_umask , "Set file creation mask"),
Denys Vlasenkod5933b12017-01-08 18:31:39 +01001107#endif
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001108#if ENABLE_HUSH_UNSET
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001109 BLTIN("unset" , builtin_unset , "Unset variables"),
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001110#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001111#if ENABLE_HUSH_WAIT
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001112 BLTIN("wait" , builtin_wait , "Wait for process"),
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001113#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001114};
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001115/* These builtins won't be used if we are on NOMMU and need to re-exec
1116 * (it's cheaper to run an external program in this case):
1117 */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001118static const struct built_in_command bltins2[] = {
Denys Vlasenko265062d2017-01-10 15:13:30 +01001119#if ENABLE_HUSH_TEST
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001120 BLTIN("[" , builtin_test , NULL),
Denys Vlasenko265062d2017-01-10 15:13:30 +01001121#endif
Denys Vlasenko8944c672017-01-11 14:22:00 +01001122#if BASH_TEST2
1123 BLTIN("[[" , builtin_test , NULL),
1124#endif
Denys Vlasenko1cc68042017-01-09 17:10:04 +01001125#if ENABLE_HUSH_ECHO
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001126 BLTIN("echo" , builtin_echo , NULL),
Denys Vlasenko1cc68042017-01-09 17:10:04 +01001127#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001128#if ENABLE_HUSH_PRINTF
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04001129 BLTIN("printf" , builtin_printf , NULL),
1130#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001131 BLTIN("pwd" , builtin_pwd , NULL),
Denys Vlasenko265062d2017-01-10 15:13:30 +01001132#if ENABLE_HUSH_TEST
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001133 BLTIN("test" , builtin_test , NULL),
Denys Vlasenko265062d2017-01-10 15:13:30 +01001134#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001135};
1136
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001137
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001138/* Debug printouts.
1139 */
1140#if HUSH_DEBUG
1141/* prevent disasters with G.debug_indent < 0 */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001142# define indent() fdprintf(2, "%*s", (G.debug_indent * 2) & 0xff, "")
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001143# define debug_enter() (G.debug_indent++)
1144# define debug_leave() (G.debug_indent--)
1145#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001146# define indent() ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001147# define debug_enter() ((void)0)
1148# define debug_leave() ((void)0)
1149#endif
1150
1151#ifndef debug_printf
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001152# define debug_printf(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001153#endif
1154
1155#ifndef debug_printf_parse
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001156# define debug_printf_parse(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001157#endif
1158
1159#ifndef debug_printf_exec
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001160#define debug_printf_exec(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001161#endif
1162
1163#ifndef debug_printf_env
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001164# define debug_printf_env(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001165#endif
1166
1167#ifndef debug_printf_jobs
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001168# define debug_printf_jobs(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001169# define DEBUG_JOBS 1
1170#else
1171# define DEBUG_JOBS 0
1172#endif
1173
1174#ifndef debug_printf_expand
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001175# define debug_printf_expand(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001176# define DEBUG_EXPAND 1
1177#else
1178# define DEBUG_EXPAND 0
1179#endif
1180
Denys Vlasenko1e811b12010-05-22 03:12:29 +02001181#ifndef debug_printf_varexp
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001182# define debug_printf_varexp(...) (indent(), fdprintf(2, __VA_ARGS__))
Denys Vlasenko1e811b12010-05-22 03:12:29 +02001183#endif
1184
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001185#ifndef debug_printf_glob
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001186# define debug_printf_glob(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001187# define DEBUG_GLOB 1
1188#else
1189# define DEBUG_GLOB 0
1190#endif
1191
Denys Vlasenko2db74612017-07-07 22:07:28 +02001192#ifndef debug_printf_redir
1193# define debug_printf_redir(...) (indent(), fdprintf(2, __VA_ARGS__))
1194#endif
1195
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001196#ifndef debug_printf_list
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001197# define debug_printf_list(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001198#endif
1199
1200#ifndef debug_printf_subst
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001201# define debug_printf_subst(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001202#endif
1203
1204#ifndef debug_printf_clean
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001205# define debug_printf_clean(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001206# define DEBUG_CLEAN 1
1207#else
1208# define DEBUG_CLEAN 0
1209#endif
1210
1211#if DEBUG_EXPAND
1212static void debug_print_strings(const char *prefix, char **vv)
1213{
1214 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001215 fdprintf(2, "%s:\n", prefix);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001216 while (*vv)
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001217 fdprintf(2, " '%s'\n", *vv++);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001218}
1219#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001220# define debug_print_strings(prefix, vv) ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001221#endif
1222
1223
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001224/* Leak hunting. Use hush_leaktool.sh for post-processing.
1225 */
1226#if LEAK_HUNTING
1227static void *xxmalloc(int lineno, size_t size)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001228{
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001229 void *ptr = xmalloc((size + 0xff) & ~0xff);
1230 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
1231 return ptr;
1232}
1233static void *xxrealloc(int lineno, void *ptr, size_t size)
1234{
1235 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
1236 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
1237 return ptr;
1238}
1239static char *xxstrdup(int lineno, const char *str)
1240{
1241 char *ptr = xstrdup(str);
1242 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
1243 return ptr;
1244}
1245static void xxfree(void *ptr)
1246{
1247 fdprintf(2, "free %p\n", ptr);
1248 free(ptr);
1249}
Denys Vlasenko8391c482010-05-22 17:50:43 +02001250# define xmalloc(s) xxmalloc(__LINE__, s)
1251# define xrealloc(p, s) xxrealloc(__LINE__, p, s)
1252# define xstrdup(s) xxstrdup(__LINE__, s)
1253# define free(p) xxfree(p)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001254#endif
1255
1256
1257/* Syntax and runtime errors. They always abort scripts.
1258 * In interactive use they usually discard unparsed and/or unexecuted commands
1259 * and return to the prompt.
1260 * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
1261 */
1262#if HUSH_DEBUG < 2
Denys Vlasenko606291b2009-09-23 23:15:43 +02001263# define die_if_script(lineno, ...) die_if_script(__VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001264# define syntax_error(lineno, msg) syntax_error(msg)
1265# define syntax_error_at(lineno, msg) syntax_error_at(msg)
1266# define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch)
1267# define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s)
1268# define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001269#endif
1270
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001271static void die_if_script(unsigned lineno, const char *fmt, ...)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001272{
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001273 va_list p;
1274
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001275#if HUSH_DEBUG >= 2
1276 bb_error_msg("hush.c:%u", lineno);
1277#endif
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001278 va_start(p, fmt);
1279 bb_verror_msg(fmt, p, NULL);
1280 va_end(p);
1281 if (!G_interactive_fd)
1282 xfunc_die();
Mike Frysinger6379bb42009-03-28 18:55:03 +00001283}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001284
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001285static void syntax_error(unsigned lineno UNUSED_PARAM, const char *msg)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001286{
1287 if (msg)
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001288 bb_error_msg("syntax error: %s", msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001289 else
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001290 bb_error_msg("syntax error");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001291}
1292
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001293static void syntax_error_at(unsigned lineno UNUSED_PARAM, const char *msg)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001294{
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001295 bb_error_msg("syntax error at '%s'", msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001296}
1297
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001298static void syntax_error_unterm_str(unsigned lineno UNUSED_PARAM, const char *s)
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001299{
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001300 bb_error_msg("syntax error: unterminated %s", s);
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001301}
1302
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001303static void syntax_error_unterm_ch(unsigned lineno, char ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001304{
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001305 char msg[2] = { ch, '\0' };
1306 syntax_error_unterm_str(lineno, msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001307}
1308
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001309static void syntax_error_unexpected_ch(unsigned lineno UNUSED_PARAM, int ch)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001310{
1311 char msg[2];
1312 msg[0] = ch;
1313 msg[1] = '\0';
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01001314#if HUSH_DEBUG >= 2
1315 bb_error_msg("hush.c:%u", lineno);
1316#endif
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001317 bb_error_msg("syntax error: unexpected %s", ch == EOF ? "EOF" : msg);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001318}
1319
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001320#if HUSH_DEBUG < 2
1321# undef die_if_script
1322# undef syntax_error
1323# undef syntax_error_at
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001324# undef syntax_error_unterm_ch
1325# undef syntax_error_unterm_str
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001326# undef syntax_error_unexpected_ch
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001327#else
Denys Vlasenko606291b2009-09-23 23:15:43 +02001328# define die_if_script(...) die_if_script(__LINE__, __VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001329# define syntax_error(msg) syntax_error(__LINE__, msg)
1330# define syntax_error_at(msg) syntax_error_at(__LINE__, msg)
1331# define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch)
1332# define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s)
1333# define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001334#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001335
Denis Vlasenko552433b2009-04-04 19:29:21 +00001336
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001337#if ENABLE_HUSH_INTERACTIVE
1338static void cmdedit_update_prompt(void);
1339#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001340# define cmdedit_update_prompt() ((void)0)
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001341#endif
1342
1343
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001344/* Utility functions
1345 */
Denis Vlasenko55789c62008-06-18 16:30:42 +00001346/* Replace each \x with x in place, return ptr past NUL. */
1347static char *unbackslash(char *src)
1348{
Denys Vlasenko71885402009-09-24 01:44:13 +02001349 char *dst = src = strchrnul(src, '\\');
Denis Vlasenko55789c62008-06-18 16:30:42 +00001350 while (1) {
1351 if (*src == '\\')
1352 src++;
1353 if ((*dst++ = *src++) == '\0')
1354 break;
1355 }
1356 return dst;
1357}
1358
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001359static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001360{
1361 int i;
1362 unsigned count1;
1363 unsigned count2;
1364 char **v;
1365
1366 v = strings;
1367 count1 = 0;
1368 if (v) {
1369 while (*v) {
1370 count1++;
1371 v++;
1372 }
1373 }
1374 count2 = 0;
1375 v = add;
1376 while (*v) {
1377 count2++;
1378 v++;
1379 }
1380 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
1381 v[count1 + count2] = NULL;
1382 i = count2;
1383 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001384 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001385 return v;
1386}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001387#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001388static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
1389{
1390 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
1391 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
1392 return ptr;
1393}
1394#define add_strings_to_strings(strings, add, need_to_dup) \
1395 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
1396#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001397
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001398/* Note: takes ownership of "add" ptr (it is not strdup'ed) */
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001399static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001400{
1401 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001402 v[0] = add;
1403 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001404 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001405}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001406#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001407static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
1408{
1409 char **ptr = add_string_to_strings(strings, add);
1410 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
1411 return ptr;
1412}
1413#define add_string_to_strings(strings, add) \
1414 xx_add_string_to_strings(__LINE__, strings, add)
1415#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001416
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001417static void free_strings(char **strings)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001418{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001419 char **v;
1420
1421 if (!strings)
1422 return;
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001423 v = strings;
1424 while (*v) {
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001425 free(*v);
1426 v++;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001427 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001428 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001429}
1430
Denys Vlasenko2db74612017-07-07 22:07:28 +02001431static int fcntl_F_DUPFD(int fd, int avoid_fd)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001432{
Denys Vlasenko2db74612017-07-07 22:07:28 +02001433 int newfd;
1434 repeat:
1435 newfd = fcntl(fd, F_DUPFD, avoid_fd + 1);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001436 if (newfd < 0) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02001437 if (errno == EBUSY)
1438 goto repeat;
1439 if (errno == EINTR)
1440 goto repeat;
1441 }
1442 return newfd;
1443}
1444
1445static int xdup_and_close(int fd, int F_DUPFD_maybe_CLOEXEC, int avoid_fd)
1446{
1447 int newfd;
1448 repeat:
1449 newfd = fcntl(fd, F_DUPFD_maybe_CLOEXEC, avoid_fd + 1);
1450 if (newfd < 0) {
1451 if (errno == EBUSY)
1452 goto repeat;
1453 if (errno == EINTR)
1454 goto repeat;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001455 /* fd was not open? */
1456 if (errno == EBADF)
1457 return fd;
1458 xfunc_die();
1459 }
1460 close(fd);
1461 return newfd;
1462}
1463
1464
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001465/* Manipulating the list of open FILEs */
1466static FILE *remember_FILE(FILE *fp)
1467{
1468 if (fp) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001469 struct FILE_list *n = xmalloc(sizeof(*n));
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001470 n->next = G.FILE_list;
1471 G.FILE_list = n;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001472 n->fp = fp;
1473 n->fd = fileno(fp);
1474 close_on_exec_on(n->fd);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001475 }
1476 return fp;
1477}
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001478static void fclose_and_forget(FILE *fp)
1479{
1480 struct FILE_list **pp = &G.FILE_list;
1481 while (*pp) {
1482 struct FILE_list *cur = *pp;
1483 if (cur->fp == fp) {
1484 *pp = cur->next;
1485 free(cur);
1486 break;
1487 }
1488 pp = &cur->next;
1489 }
1490 fclose(fp);
1491}
Denys Vlasenko2db74612017-07-07 22:07:28 +02001492static int save_FILEs_on_redirect(int fd, int avoid_fd)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001493{
1494 struct FILE_list *fl = G.FILE_list;
1495 while (fl) {
1496 if (fd == fl->fd) {
1497 /* We use it only on script files, they are all CLOEXEC */
Denys Vlasenko2db74612017-07-07 22:07:28 +02001498 fl->fd = xdup_and_close(fd, F_DUPFD_CLOEXEC, avoid_fd);
1499 debug_printf_redir("redirect_fd %d: matches a script fd, moving it to %d\n", fd, fl->fd);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001500 return 1;
1501 }
1502 fl = fl->next;
1503 }
1504 return 0;
1505}
1506static void restore_redirected_FILEs(void)
1507{
1508 struct FILE_list *fl = G.FILE_list;
1509 while (fl) {
1510 int should_be = fileno(fl->fp);
1511 if (fl->fd != should_be) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02001512 debug_printf_redir("restoring script fd from %d to %d\n", fl->fd, should_be);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001513 xmove_fd(fl->fd, should_be);
1514 fl->fd = should_be;
1515 }
1516 fl = fl->next;
1517 }
1518}
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02001519#if ENABLE_FEATURE_SH_STANDALONE && BB_MMU
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001520static void close_all_FILE_list(void)
1521{
1522 struct FILE_list *fl = G.FILE_list;
1523 while (fl) {
1524 /* fclose would also free FILE object.
1525 * It is disastrous if we share memory with a vforked parent.
1526 * I'm not sure we never come here after vfork.
1527 * Therefore just close fd, nothing more.
1528 */
1529 /*fclose(fl->fp); - unsafe */
1530 close(fl->fd);
1531 fl = fl->next;
1532 }
1533}
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001534#endif
1535
1536
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001537/* Helpers for setting new $n and restoring them back
1538 */
1539typedef struct save_arg_t {
1540 char *sv_argv0;
1541 char **sv_g_argv;
1542 int sv_g_argc;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001543 IF_HUSH_SET(smallint sv_g_malloced;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001544} save_arg_t;
1545
1546static void save_and_replace_G_args(save_arg_t *sv, char **argv)
1547{
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001548 sv->sv_argv0 = argv[0];
1549 sv->sv_g_argv = G.global_argv;
1550 sv->sv_g_argc = G.global_argc;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001551 IF_HUSH_SET(sv->sv_g_malloced = G.global_args_malloced;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001552
1553 argv[0] = G.global_argv[0]; /* retain $0 */
1554 G.global_argv = argv;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001555 IF_HUSH_SET(G.global_args_malloced = 0;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001556
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02001557 G.global_argc = 1 + string_array_len(argv + 1);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001558}
1559
1560static void restore_G_args(save_arg_t *sv, char **argv)
1561{
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001562#if ENABLE_HUSH_SET
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001563 if (G.global_args_malloced) {
1564 /* someone ran "set -- arg1 arg2 ...", undo */
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001565 char **pp = G.global_argv;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001566 while (*++pp) /* note: does not free $0 */
1567 free(*pp);
1568 free(G.global_argv);
1569 }
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001570#endif
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001571 argv[0] = sv->sv_argv0;
1572 G.global_argv = sv->sv_g_argv;
1573 G.global_argc = sv->sv_g_argc;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001574 IF_HUSH_SET(G.global_args_malloced = sv->sv_g_malloced;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001575}
1576
1577
Denis Vlasenkod5762932009-03-31 11:22:57 +00001578/* Basic theory of signal handling in shell
1579 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001580 * This does not describe what hush does, rather, it is current understanding
1581 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001582 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
1583 *
1584 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
1585 * is finished or backgrounded. It is the same in interactive and
1586 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001587 * a user trap handler is installed or a shell special one is in effect.
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001588 * ^C or ^Z from keyboard seems to execute "at once" because it usually
Denis Vlasenkod5762932009-03-31 11:22:57 +00001589 * backgrounds (i.e. stops) or kills all members of currently running
1590 * pipe.
1591 *
Denys Vlasenko8bd810b2013-11-28 01:50:01 +01001592 * Wait builtin is interruptible by signals for which user trap is set
Denis Vlasenkod5762932009-03-31 11:22:57 +00001593 * or by SIGINT in interactive shell.
1594 *
1595 * Trap handlers will execute even within trap handlers. (right?)
1596 *
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001597 * User trap handlers are forgotten when subshell ("(cmd)") is entered,
1598 * except for handlers set to '' (empty string).
Denis Vlasenkod5762932009-03-31 11:22:57 +00001599 *
1600 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001601 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001602 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001603 * Commands which are run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001604 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001605 *
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001606 * Ordinary commands have signals set to SIG_IGN/DFL as inherited
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001607 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001608 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001609 * Signals which differ from SIG_DFL action
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001610 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +00001611 *
1612 * SIGQUIT: ignore
1613 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001614 * SIGHUP (interactive):
1615 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +00001616 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00001617 * Note that ^Z is handled not by trapping SIGTSTP, but by seeing
1618 * that all pipe members are stopped. Try this in bash:
1619 * while :; do :; done - ^Z does not background it
1620 * (while :; do :; done) - ^Z backgrounds it
Denis Vlasenkod5762932009-03-31 11:22:57 +00001621 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001622 * of the command line, show prompt. NB: ^C does not send SIGINT
1623 * to interactive shell while shell is waiting for a pipe,
1624 * since shell is bg'ed (is not in foreground process group).
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001625 * Example 1: this waits 5 sec, but does not execute ls:
1626 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
1627 * Example 2: this does not wait and does not execute ls:
1628 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
1629 * Example 3: this does not wait 5 sec, but executes ls:
1630 * "sleep 5; ls -l" + press ^C
Denys Vlasenkob8709032011-05-08 21:20:01 +02001631 * Example 4: this does not wait and does not execute ls:
1632 * "sleep 5 & wait; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +00001633 *
1634 * (What happens to signals which are IGN on shell start?)
1635 * (What happens with signal mask on shell start?)
1636 *
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001637 * Old implementation
1638 * ==================
Denis Vlasenkod5762932009-03-31 11:22:57 +00001639 * We use in-kernel pending signal mask to determine which signals were sent.
1640 * We block all signals which we don't want to take action immediately,
1641 * i.e. we block all signals which need to have special handling as described
1642 * above, and all signals which have traps set.
1643 * After each pipe execution, we extract any pending signals via sigtimedwait()
1644 * and act on them.
1645 *
Denys Vlasenko10c01312011-05-11 11:49:21 +02001646 * unsigned special_sig_mask: a mask of such "special" signals
Denis Vlasenkod5762932009-03-31 11:22:57 +00001647 * sigset_t blocked_set: current blocked signal set
1648 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001649 * "trap - SIGxxx":
Denys Vlasenko10c01312011-05-11 11:49:21 +02001650 * clear bit in blocked_set unless it is also in special_sig_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001651 * "trap 'cmd' SIGxxx":
1652 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +00001653 * after [v]fork, if we plan to be a shell:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001654 * unblock signals with special interactive handling
1655 * (child shell is not interactive),
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001656 * unset all traps except '' (note: regardless of child shell's type - {}, (), etc)
Denis Vlasenkod5762932009-03-31 11:22:57 +00001657 * after [v]fork, if we plan to exec:
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001658 * POSIX says fork clears pending signal mask in child - no need to clear it.
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001659 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001660 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001661 * Note: as a result, we do not use signal handlers much. The only uses
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001662 * are to count SIGCHLDs
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001663 * and to restore tty pgrp on signal-induced exit.
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001664 *
Denys Vlasenko67f71862009-09-25 14:21:06 +02001665 * Note 2 (compat):
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001666 * Standard says "When a subshell is entered, traps that are not being ignored
1667 * are set to the default actions". bash interprets it so that traps which
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001668 * are set to '' (ignore) are NOT reset to defaults. We do the same.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001669 *
1670 * Problem: the above approach makes it unwieldy to catch signals while
Denys Vlasenkoe95738f2013-07-08 03:13:08 +02001671 * we are in read builtin, or while we read commands from stdin:
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001672 * masked signals are not visible!
1673 *
1674 * New implementation
1675 * ==================
1676 * We record each signal we are interested in by installing signal handler
1677 * for them - a bit like emulating kernel pending signal mask in userspace.
1678 * We are interested in: signals which need to have special handling
1679 * as described above, and all signals which have traps set.
Denys Vlasenko8bd810b2013-11-28 01:50:01 +01001680 * Signals are recorded in pending_set.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001681 * After each pipe execution, we extract any pending signals
1682 * and act on them.
1683 *
1684 * unsigned special_sig_mask: a mask of shell-special signals.
1685 * unsigned fatal_sig_mask: a mask of signals on which we restore tty pgrp.
1686 * char *traps[sig] if trap for sig is set (even if it's '').
1687 * sigset_t pending_set: set of sigs we received.
1688 *
1689 * "trap - SIGxxx":
1690 * if sig is in special_sig_mask, set handler back to:
1691 * record_pending_signo, or to IGN if it's a tty stop signal
1692 * if sig is in fatal_sig_mask, set handler back to sigexit.
1693 * else: set handler back to SIG_DFL
1694 * "trap 'cmd' SIGxxx":
1695 * set handler to record_pending_signo.
1696 * "trap '' SIGxxx":
1697 * set handler to SIG_IGN.
1698 * after [v]fork, if we plan to be a shell:
1699 * set signals with special interactive handling to SIG_DFL
1700 * (because child shell is not interactive),
1701 * unset all traps except '' (note: regardless of child shell's type - {}, (), etc)
1702 * after [v]fork, if we plan to exec:
1703 * POSIX says fork clears pending signal mask in child - no need to clear it.
1704 *
1705 * To make wait builtin interruptible, we handle SIGCHLD as special signal,
1706 * otherwise (if we leave it SIG_DFL) sigsuspend in wait builtin will not wake up on it.
1707 *
1708 * Note (compat):
1709 * Standard says "When a subshell is entered, traps that are not being ignored
1710 * are set to the default actions". bash interprets it so that traps which
1711 * are set to '' (ignore) are NOT reset to defaults. We do the same.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001712 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001713enum {
1714 SPECIAL_INTERACTIVE_SIGS = 0
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001715 | (1 << SIGTERM)
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001716 | (1 << SIGINT)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001717 | (1 << SIGHUP)
1718 ,
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001719 SPECIAL_JOBSTOP_SIGS = 0
Mike Frysinger38478a62009-05-20 04:48:06 -04001720#if ENABLE_HUSH_JOB
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001721 | (1 << SIGTTIN)
1722 | (1 << SIGTTOU)
1723 | (1 << SIGTSTP)
1724#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001725 ,
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001726};
Denis Vlasenkod5762932009-03-31 11:22:57 +00001727
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001728static void record_pending_signo(int sig)
Denys Vlasenko54e9e122011-05-09 00:52:15 +02001729{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001730 sigaddset(&G.pending_set, sig);
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001731#if ENABLE_HUSH_FAST
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001732 if (sig == SIGCHLD) {
1733 G.count_SIGCHLD++;
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001734//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 +02001735 }
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001736#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001737}
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001738
Denys Vlasenko0806e402011-05-12 23:06:20 +02001739static sighandler_t install_sighandler(int sig, sighandler_t handler)
1740{
1741 struct sigaction old_sa;
1742
1743 /* We could use signal() to install handlers... almost:
1744 * except that we need to mask ALL signals while handlers run.
1745 * I saw signal nesting in strace, race window isn't small.
1746 * SA_RESTART is also needed, but in Linux, signal()
1747 * sets SA_RESTART too.
1748 */
1749 /* memset(&G.sa, 0, sizeof(G.sa)); - already done */
1750 /* sigfillset(&G.sa.sa_mask); - already done */
1751 /* G.sa.sa_flags = SA_RESTART; - already done */
1752 G.sa.sa_handler = handler;
1753 sigaction(sig, &G.sa, &old_sa);
1754 return old_sa.sa_handler;
1755}
1756
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001757static void hush_exit(int exitcode) NORETURN;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001758
Denys Vlasenkob6afcc72016-12-12 16:30:20 +01001759static void restore_ttypgrp_and__exit(void) NORETURN;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001760static void restore_ttypgrp_and__exit(void)
1761{
1762 /* xfunc has failed! die die die */
1763 /* no EXIT traps, this is an escape hatch! */
1764 G.exiting = 1;
1765 hush_exit(xfunc_error_retval);
1766}
1767
Denys Vlasenkob6afcc72016-12-12 16:30:20 +01001768#if ENABLE_HUSH_JOB
1769
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001770/* Needed only on some libc:
1771 * It was observed that on exit(), fgetc'ed buffered data
1772 * gets "unwound" via lseek(fd, -NUM, SEEK_CUR).
1773 * With the net effect that even after fork(), not vfork(),
1774 * exit() in NOEXECed applet in "sh SCRIPT":
1775 * noexec_applet_here
1776 * echo END_OF_SCRIPT
1777 * lseeks fd in input FILE object from EOF to "e" in "echo END_OF_SCRIPT".
1778 * This makes "echo END_OF_SCRIPT" executed twice.
1779 * Similar problems can be seen with die_if_script() -> xfunc_die()
1780 * and in `cmd` handling.
1781 * If set as die_func(), this makes xfunc_die() exit via _exit(), not exit():
1782 */
Denys Vlasenkob6afcc72016-12-12 16:30:20 +01001783static void fflush_and__exit(void) NORETURN;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001784static void fflush_and__exit(void)
1785{
1786 fflush_all();
1787 _exit(xfunc_error_retval);
1788}
1789
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001790/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001791# define disable_restore_tty_pgrp_on_exit() (die_func = fflush_and__exit)
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001792/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001793# define enable_restore_tty_pgrp_on_exit() (die_func = restore_ttypgrp_and__exit)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001794
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001795/* Restores tty foreground process group, and exits.
1796 * May be called as signal handler for fatal signal
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001797 * (will resend signal to itself, producing correct exit state)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001798 * or called directly with -EXITCODE.
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001799 * We also call it if xfunc is exiting.
1800 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001801static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001802static void sigexit(int sig)
1803{
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001804 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001805 * tty pgrp then, only top-level shell process does that */
Denys Vlasenkoebc1ee22011-05-12 10:59:18 +02001806 if (G_saved_tty_pgrp && getpid() == G.root_pid) {
1807 /* Disable all signals: job control, SIGPIPE, etc.
1808 * Mostly paranoid measure, to prevent infinite SIGTTOU.
1809 */
1810 sigprocmask_allsigs(SIG_BLOCK);
Mike Frysinger38478a62009-05-20 04:48:06 -04001811 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
Denys Vlasenkoebc1ee22011-05-12 10:59:18 +02001812 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001813
1814 /* Not a signal, just exit */
1815 if (sig <= 0)
1816 _exit(- sig);
1817
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001818 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001819}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001820#else
1821
Denys Vlasenko8391c482010-05-22 17:50:43 +02001822# define disable_restore_tty_pgrp_on_exit() ((void)0)
1823# define enable_restore_tty_pgrp_on_exit() ((void)0)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001824
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001825#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001826
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001827static sighandler_t pick_sighandler(unsigned sig)
1828{
1829 sighandler_t handler = SIG_DFL;
1830 if (sig < sizeof(unsigned)*8) {
1831 unsigned sigmask = (1 << sig);
1832
1833#if ENABLE_HUSH_JOB
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001834 /* is sig fatal? */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001835 if (G_fatal_sig_mask & sigmask)
1836 handler = sigexit;
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001837 else
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001838#endif
1839 /* sig has special handling? */
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001840 if (G.special_sig_mask & sigmask) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001841 handler = record_pending_signo;
Denys Vlasenko0c40a732011-05-12 09:50:12 +02001842 /* TTIN/TTOU/TSTP can't be set to record_pending_signo
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001843 * in order to ignore them: they will be raised
Denys Vlasenkof58f7052011-05-12 02:10:33 +02001844 * in an endless loop when we try to do some
1845 * terminal ioctls! We do have to _ignore_ these.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001846 */
1847 if (SPECIAL_JOBSTOP_SIGS & sigmask)
1848 handler = SIG_IGN;
Denys Vlasenko0c40a732011-05-12 09:50:12 +02001849 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001850 }
1851 return handler;
1852}
1853
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001854/* Restores tty foreground process group, and exits. */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001855static void hush_exit(int exitcode)
1856{
Denys Vlasenkobede2152011-09-04 16:12:33 +02001857#if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1858 save_history(G.line_input_state);
1859#endif
1860
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01001861 fflush_all();
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001862 if (G.exiting <= 0 && G_traps && G_traps[0] && G_traps[0][0]) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001863 char *argv[3];
1864 /* argv[0] is unused */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001865 argv[1] = G_traps[0];
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001866 argv[2] = NULL;
Denys Vlasenkoa110c902010-09-12 15:38:04 +02001867 G.exiting = 1; /* prevent EXIT trap recursion */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001868 /* Note: G_traps[0] is not cleared!
Denys Vlasenkode8c3f62010-09-12 16:13:44 +02001869 * "trap" will still show it, if executed
1870 * in the handler */
1871 builtin_eval(argv);
Denis Vlasenkod5762932009-03-31 11:22:57 +00001872 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001873
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001874#if ENABLE_FEATURE_CLEAN_UP
1875 {
1876 struct variable *cur_var;
1877 if (G.cwd != bb_msg_unknown)
1878 free((char*)G.cwd);
1879 cur_var = G.top_var;
1880 while (cur_var) {
1881 struct variable *tmp = cur_var;
1882 if (!cur_var->max_len)
1883 free(cur_var->varstr);
1884 cur_var = cur_var->next;
1885 free(tmp);
1886 }
1887 }
1888#endif
1889
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001890 fflush_all();
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02001891#if ENABLE_HUSH_JOB
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001892 sigexit(- (exitcode & 0xff));
1893#else
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02001894 _exit(exitcode);
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001895#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001896}
1897
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02001898
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001899//TODO: return a mask of ALL handled sigs?
1900static int check_and_run_traps(void)
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001901{
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001902 int last_sig = 0;
1903
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001904 while (1) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001905 int sig;
Denys Vlasenko80542ba2011-05-08 21:23:43 +02001906
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001907 if (sigisemptyset(&G.pending_set))
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001908 break;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001909 sig = 0;
1910 do {
1911 sig++;
1912 if (sigismember(&G.pending_set, sig)) {
1913 sigdelset(&G.pending_set, sig);
1914 goto got_sig;
1915 }
1916 } while (sig < NSIG);
1917 break;
Denys Vlasenkob8709032011-05-08 21:20:01 +02001918 got_sig:
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001919 if (G_traps && G_traps[sig]) {
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001920 debug_printf_exec("%s: sig:%d handler:'%s'\n", __func__, sig, G.traps[sig]);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001921 if (G_traps[sig][0]) {
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001922 /* We have user-defined handler */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001923 smalluint save_rcode;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001924 char *argv[3];
1925 /* argv[0] is unused */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001926 argv[1] = G_traps[sig];
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001927 argv[2] = NULL;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001928 save_rcode = G.last_exitcode;
1929 builtin_eval(argv);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01001930//FIXME: shouldn't it be set to 128 + sig instead?
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001931 G.last_exitcode = save_rcode;
Denys Vlasenkob8709032011-05-08 21:20:01 +02001932 last_sig = sig;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001933 } /* else: "" trap, ignoring signal */
1934 continue;
1935 }
1936 /* not a trap: special action */
1937 switch (sig) {
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001938 case SIGINT:
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001939 debug_printf_exec("%s: sig:%d default SIGINT handler\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001940 G.flag_SIGINT = 1;
Denys Vlasenkob8709032011-05-08 21:20:01 +02001941 last_sig = sig;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001942 break;
1943#if ENABLE_HUSH_JOB
1944 case SIGHUP: {
1945 struct pipe *job;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001946 debug_printf_exec("%s: sig:%d default SIGHUP handler\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001947 /* bash is observed to signal whole process groups,
1948 * not individual processes */
1949 for (job = G.job_list; job; job = job->next) {
1950 if (job->pgrp <= 0)
1951 continue;
1952 debug_printf_exec("HUPing pgrp %d\n", job->pgrp);
1953 if (kill(- job->pgrp, SIGHUP) == 0)
1954 kill(- job->pgrp, SIGCONT);
1955 }
1956 sigexit(SIGHUP);
1957 }
1958#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001959#if ENABLE_HUSH_FAST
1960 case SIGCHLD:
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001961 debug_printf_exec("%s: sig:%d default SIGCHLD handler\n", __func__, sig);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001962 G.count_SIGCHLD++;
1963//bb_error_msg("[%d] check_and_run_traps: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
1964 /* Note:
Denys Vlasenko10ad6222017-04-17 16:13:32 +02001965 * We don't do 'last_sig = sig' here -> NOT returning this sig.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001966 * This simplifies wait builtin a bit.
1967 */
1968 break;
1969#endif
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001970 default: /* ignored: */
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001971 debug_printf_exec("%s: sig:%d default handling is to ignore\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001972 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001973 /* Note:
Denys Vlasenko10ad6222017-04-17 16:13:32 +02001974 * We don't do 'last_sig = sig' here -> NOT returning this sig.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001975 * Example: wait is not interrupted by TERM
Denys Vlasenkob8709032011-05-08 21:20:01 +02001976 * in interactive shell, because TERM is ignored.
1977 */
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001978 break;
1979 }
1980 }
1981 return last_sig;
1982}
1983
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001984
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001985static const char *get_cwd(int force)
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001986{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001987 if (force || G.cwd == NULL) {
1988 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1989 * we must not try to free(bb_msg_unknown) */
1990 if (G.cwd == bb_msg_unknown)
1991 G.cwd = NULL;
1992 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1993 if (!G.cwd)
1994 G.cwd = bb_msg_unknown;
1995 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00001996 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001997}
1998
Denis Vlasenko83506862007-11-23 13:11:42 +00001999
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002000/*
2001 * Shell and environment variable support
2002 */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002003static struct variable **get_ptr_to_local_var(const char *name, unsigned len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002004{
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002005 struct variable **pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002006 struct variable *cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002007
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002008 pp = &G.top_var;
2009 while ((cur = *pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002010 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002011 return pp;
2012 pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002013 }
2014 return NULL;
2015}
2016
Denys Vlasenko03dad222010-01-12 23:29:57 +01002017static const char* FAST_FUNC get_local_var_value(const char *name)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002018{
Denys Vlasenko29082232010-07-16 13:52:32 +02002019 struct variable **vpp;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002020 unsigned len = strlen(name);
Denys Vlasenko29082232010-07-16 13:52:32 +02002021
2022 if (G.expanded_assignments) {
2023 char **cpp = G.expanded_assignments;
Denys Vlasenko29082232010-07-16 13:52:32 +02002024 while (*cpp) {
2025 char *cp = *cpp;
2026 if (strncmp(cp, name, len) == 0 && cp[len] == '=')
2027 return cp + len + 1;
2028 cpp++;
2029 }
2030 }
2031
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002032 vpp = get_ptr_to_local_var(name, len);
Denys Vlasenko29082232010-07-16 13:52:32 +02002033 if (vpp)
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002034 return (*vpp)->varstr + len + 1;
Denys Vlasenko29082232010-07-16 13:52:32 +02002035
Denys Vlasenkodea47882009-10-09 15:40:49 +02002036 if (strcmp(name, "PPID") == 0)
2037 return utoa(G.root_ppid);
2038 // bash compat: UID? EUID?
Denys Vlasenko20b3d142009-10-09 20:59:39 +02002039#if ENABLE_HUSH_RANDOM_SUPPORT
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002040 if (strcmp(name, "RANDOM") == 0)
Denys Vlasenko20b3d142009-10-09 20:59:39 +02002041 return utoa(next_random(&G.random_gen));
2042#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002043 return NULL;
2044}
2045
2046/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00002047 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002048 * flg_export:
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002049 * 0: do not change export flag
2050 * (if creating new variable, flag will be 0)
2051 * 1: set export flag and putenv the variable
2052 * -1: clear export flag and unsetenv the variable
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002053 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00002054 */
Denys Vlasenko295fef82009-06-03 12:47:26 +02002055#if !BB_MMU && ENABLE_HUSH_LOCAL
2056/* all params are used */
2057#elif BB_MMU && ENABLE_HUSH_LOCAL
2058#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
2059 set_local_var(str, flg_export, local_lvl)
2060#elif BB_MMU && !ENABLE_HUSH_LOCAL
2061#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002062 set_local_var(str, flg_export)
Denys Vlasenko295fef82009-06-03 12:47:26 +02002063#elif !BB_MMU && !ENABLE_HUSH_LOCAL
2064#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
2065 set_local_var(str, flg_export, flg_read_only)
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002066#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02002067static int set_local_var(char *str, int flg_export, int local_lvl, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002068{
Denys Vlasenko295fef82009-06-03 12:47:26 +02002069 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002070 struct variable *cur;
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002071 char *free_me = NULL;
Denis Vlasenko950bd722009-04-21 11:23:56 +00002072 char *eq_sign;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002073 int name_len;
2074
Denis Vlasenko950bd722009-04-21 11:23:56 +00002075 eq_sign = strchr(str, '=');
2076 if (!eq_sign) { /* not expected to ever happen? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002077 free(str);
2078 return -1;
2079 }
2080
Denis Vlasenko950bd722009-04-21 11:23:56 +00002081 name_len = eq_sign - str + 1; /* including '=' */
Denys Vlasenko295fef82009-06-03 12:47:26 +02002082 var_pp = &G.top_var;
2083 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002084 if (strncmp(cur->varstr, str, name_len) != 0) {
Denys Vlasenko295fef82009-06-03 12:47:26 +02002085 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002086 continue;
2087 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002088
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002089 /* We found an existing var with this name */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002090 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002091#if !BB_MMU
2092 if (!flg_read_only)
2093#endif
2094 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002095 free(str);
2096 return -1;
2097 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02002098 if (flg_export == -1) { // "&& cur->flg_export" ?
Denis Vlasenko950bd722009-04-21 11:23:56 +00002099 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
2100 *eq_sign = '\0';
2101 unsetenv(str);
2102 *eq_sign = '=';
2103 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02002104#if ENABLE_HUSH_LOCAL
2105 if (cur->func_nest_level < local_lvl) {
2106 /* New variable is declared as local,
2107 * and existing one is global, or local
2108 * from enclosing function.
2109 * Remove and save old one: */
2110 *var_pp = cur->next;
2111 cur->next = *G.shadowed_vars_pp;
2112 *G.shadowed_vars_pp = cur;
2113 /* bash 3.2.33(1) and exported vars:
2114 * # export z=z
2115 * # f() { local z=a; env | grep ^z; }
2116 * # f
2117 * z=a
2118 * # env | grep ^z
2119 * z=z
2120 */
2121 if (cur->flg_export)
2122 flg_export = 1;
2123 break;
2124 }
2125#endif
Denis Vlasenko950bd722009-04-21 11:23:56 +00002126 if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002127 free_and_exp:
2128 free(str);
2129 goto exp;
2130 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02002131 if (cur->max_len != 0) {
2132 if (cur->max_len >= strlen(str)) {
2133 /* This one is from startup env, reuse space */
2134 strcpy(cur->varstr, str);
2135 goto free_and_exp;
2136 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002137 /* Can't reuse */
2138 cur->max_len = 0;
2139 goto set_str_and_exp;
Denys Vlasenko295fef82009-06-03 12:47:26 +02002140 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002141 /* max_len == 0 signifies "malloced" var, which we can
2142 * (and have to) free. But we can't free(cur->varstr) here:
2143 * if cur->flg_export is 1, it is in the environment.
2144 * We should either unsetenv+free, or wait until putenv,
2145 * then putenv(new)+free(old).
2146 */
2147 free_me = cur->varstr;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002148 goto set_str_and_exp;
2149 }
2150
Denys Vlasenko295fef82009-06-03 12:47:26 +02002151 /* Not found - create new variable struct */
2152 cur = xzalloc(sizeof(*cur));
2153#if ENABLE_HUSH_LOCAL
2154 cur->func_nest_level = local_lvl;
2155#endif
2156 cur->next = *var_pp;
2157 *var_pp = cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002158
2159 set_str_and_exp:
2160 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00002161#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002162 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00002163#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002164 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00002165 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002166 cur->flg_export = 1;
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002167 if (name_len == 4 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
2168 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002169 if (cur->flg_export) {
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002170 if (flg_export == -1) {
2171 cur->flg_export = 0;
2172 /* unsetenv was already done */
2173 } else {
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002174 int i;
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002175 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002176 i = putenv(cur->varstr);
2177 /* only now we can free old exported malloced string */
2178 free(free_me);
2179 return i;
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002180 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002181 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002182 free(free_me);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002183 return 0;
2184}
2185
Denys Vlasenko6db47842009-09-05 20:15:17 +02002186/* Used at startup and after each cd */
2187static void set_pwd_var(int exp)
2188{
2189 set_local_var(xasprintf("PWD=%s", get_cwd(/*force:*/ 1)),
2190 /*exp:*/ exp, /*lvl:*/ 0, /*ro:*/ 0);
2191}
2192
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002193static int unset_local_var_len(const char *name, int name_len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002194{
2195 struct variable *cur;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002196 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002197
2198 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00002199 return EXIT_SUCCESS;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002200 var_pp = &G.top_var;
2201 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002202 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
2203 if (cur->flg_read_only) {
2204 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00002205 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002206 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002207 *var_pp = cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002208 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
2209 bb_unsetenv(cur->varstr);
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002210 if (name_len == 3 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
2211 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002212 if (!cur->max_len)
2213 free(cur->varstr);
2214 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00002215 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002216 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002217 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002218 }
Mike Frysingerd690f682009-03-30 06:50:54 +00002219 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002220}
2221
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01002222#if ENABLE_HUSH_UNSET
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002223static int unset_local_var(const char *name)
2224{
2225 return unset_local_var_len(name, strlen(name));
2226}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01002227#endif
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002228
2229static void unset_vars(char **strings)
2230{
2231 char **v;
2232
2233 if (!strings)
2234 return;
2235 v = strings;
2236 while (*v) {
2237 const char *eq = strchrnul(*v, '=');
2238 unset_local_var_len(*v, (int)(eq - *v));
2239 v++;
2240 }
2241 free(strings);
2242}
2243
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01002244#if BASH_HOSTNAME_VAR || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_READ
Denys Vlasenko03dad222010-01-12 23:29:57 +01002245static void FAST_FUNC set_local_var_from_halves(const char *name, const char *val)
Mike Frysinger98c52642009-04-02 10:02:37 +00002246{
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002247 char *var = xasprintf("%s=%s", name, val);
Denys Vlasenko03dad222010-01-12 23:29:57 +01002248 set_local_var(var, /*flags:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00002249}
Denys Vlasenkocc2fd5a2017-01-09 06:19:55 +01002250#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002251
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002252
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002253/*
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002254 * Helpers for "var1=val1 var2=val2 cmd" feature
2255 */
2256static void add_vars(struct variable *var)
2257{
2258 struct variable *next;
2259
2260 while (var) {
2261 next = var->next;
2262 var->next = G.top_var;
2263 G.top_var = var;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002264 if (var->flg_export) {
2265 debug_printf_env("%s: restoring exported '%s'\n", __func__, var->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002266 putenv(var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002267 } else {
Denys Vlasenko295fef82009-06-03 12:47:26 +02002268 debug_printf_env("%s: restoring variable '%s'\n", __func__, var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002269 }
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002270 var = next;
2271 }
2272}
2273
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002274static struct variable *set_vars_and_save_old(char **strings)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002275{
2276 char **s;
2277 struct variable *old = NULL;
2278
2279 if (!strings)
2280 return old;
2281 s = strings;
2282 while (*s) {
2283 struct variable *var_p;
2284 struct variable **var_pp;
2285 char *eq;
2286
2287 eq = strchr(*s, '=');
2288 if (eq) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002289 var_pp = get_ptr_to_local_var(*s, eq - *s);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002290 if (var_pp) {
2291 /* Remove variable from global linked list */
2292 var_p = *var_pp;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002293 debug_printf_env("%s: removing '%s'\n", __func__, var_p->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002294 *var_pp = var_p->next;
2295 /* Add it to returned list */
2296 var_p->next = old;
2297 old = var_p;
2298 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02002299 set_local_var(*s, /*exp:*/ 1, /*lvl:*/ 0, /*ro:*/ 0);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002300 }
2301 s++;
2302 }
2303 return old;
2304}
2305
2306
2307/*
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002308 * Unicode helper
2309 */
2310static void reinit_unicode_for_hush(void)
2311{
2312 /* Unicode support should be activated even if LANG is set
2313 * _during_ shell execution, not only if it was set when
2314 * shell was started. Therefore, re-check LANG every time:
2315 */
Denys Vlasenko841f8332014-08-13 10:09:49 +02002316 if (ENABLE_FEATURE_CHECK_UNICODE_IN_ENV
2317 || ENABLE_UNICODE_USING_LOCALE
2318 ) {
2319 const char *s = get_local_var_value("LC_ALL");
2320 if (!s) s = get_local_var_value("LC_CTYPE");
2321 if (!s) s = get_local_var_value("LANG");
2322 reinit_unicode(s);
2323 }
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002324}
2325
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002326/*
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002327 * in_str support (strings, and "strings" read from files).
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002328 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002329
2330#if ENABLE_HUSH_INTERACTIVE
Denys Vlasenko4074d492016-09-30 01:49:53 +02002331/* To test correct lineedit/interactive behavior, type from command line:
2332 * echo $P\
2333 * \
2334 * AT\
2335 * H\
2336 * \
Denys Vlasenko10ad6222017-04-17 16:13:32 +02002337 * It exercises a lot of corner cases.
Denys Vlasenko4074d492016-09-30 01:49:53 +02002338 */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002339static void cmdedit_update_prompt(void)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002340{
Mike Frysingerec2c6552009-03-28 12:24:44 +00002341 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002342 G.PS1 = get_local_var_value("PS1");
Mike Frysingerec2c6552009-03-28 12:24:44 +00002343 if (G.PS1 == NULL)
2344 G.PS1 = "\\w \\$ ";
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002345 G.PS2 = get_local_var_value("PS2");
Denys Vlasenko690ad242009-04-30 21:24:24 +02002346 } else {
Mike Frysingerec2c6552009-03-28 12:24:44 +00002347 G.PS1 = NULL;
Denys Vlasenko690ad242009-04-30 21:24:24 +02002348 }
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002349 if (G.PS2 == NULL)
2350 G.PS2 = "> ";
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002351}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002352static const char *setup_prompt_string(int promptmode)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002353{
2354 const char *prompt_str;
2355 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00002356 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
2357 /* Set up the prompt */
2358 if (promptmode == 0) { /* PS1 */
2359 free((char*)G.PS1);
Denys Vlasenko6db47842009-09-05 20:15:17 +02002360 /* bash uses $PWD value, even if it is set by user.
2361 * It uses current dir only if PWD is unset.
2362 * We always use current dir. */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002363 G.PS1 = xasprintf("%s %c ", get_cwd(0), (geteuid() != 0) ? '$' : '#');
Mike Frysingerec2c6552009-03-28 12:24:44 +00002364 prompt_str = G.PS1;
2365 } else
2366 prompt_str = G.PS2;
2367 } else
2368 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denys Vlasenko4074d492016-09-30 01:49:53 +02002369 debug_printf("prompt_str '%s'\n", prompt_str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002370 return prompt_str;
2371}
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002372static int get_user_input(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002373{
2374 int r;
2375 const char *prompt_str;
2376
2377 prompt_str = setup_prompt_string(i->promptmode);
Denys Vlasenko8391c482010-05-22 17:50:43 +02002378# if ENABLE_FEATURE_EDITING
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002379 for (;;) {
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002380 reinit_unicode_for_hush();
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002381 if (G.flag_SIGINT) {
2382 /* There was ^C'ed, make it look prettier: */
2383 bb_putchar('\n');
2384 G.flag_SIGINT = 0;
2385 }
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00002386 /* buglet: SIGINT will not make new prompt to appear _at once_,
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002387 * only after <Enter>. (^C works immediately) */
Denys Vlasenko0448c552016-09-29 20:25:44 +02002388 r = read_line_input(G.line_input_state, prompt_str,
2389 G.user_input_buf, CONFIG_FEATURE_EDITING_MAX_LEN-1,
2390 /*timeout*/ -1
2391 );
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002392 /* read_line_input intercepts ^C, "convert" it to SIGINT */
2393 if (r == 0) {
2394 write(STDOUT_FILENO, "^C", 2);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002395 raise(SIGINT);
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002396 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002397 check_and_run_traps();
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002398 if (r != 0 && !G.flag_SIGINT)
2399 break;
2400 /* ^C or SIGINT: repeat */
2401 G.last_exitcode = 128 + SIGINT;
2402 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002403 if (r < 0) {
2404 /* EOF/error detected */
Denys Vlasenko4074d492016-09-30 01:49:53 +02002405 i->p = NULL;
2406 i->peek_buf[0] = r = EOF;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002407 return r;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002408 }
Denys Vlasenko4074d492016-09-30 01:49:53 +02002409 i->p = G.user_input_buf;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002410 return (unsigned char)*i->p++;
Denys Vlasenko8391c482010-05-22 17:50:43 +02002411# else
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002412 for (;;) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00002413 G.flag_SIGINT = 0;
Denys Vlasenkob8709032011-05-08 21:20:01 +02002414 if (i->last_char == '\0' || i->last_char == '\n') {
2415 /* Why check_and_run_traps here? Try this interactively:
2416 * $ trap 'echo INT' INT; (sleep 2; kill -INT $$) &
2417 * $ <[enter], repeatedly...>
2418 * Without check_and_run_traps, handler never runs.
2419 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002420 check_and_run_traps();
Denys Vlasenkob8709032011-05-08 21:20:01 +02002421 fputs(prompt_str, stdout);
2422 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002423 fflush_all();
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002424//FIXME: here ^C or SIGINT will have effect only after <Enter>
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002425 r = fgetc(i->file);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002426 /* In !ENABLE_FEATURE_EDITING we don't use read_line_input,
2427 * no ^C masking happens during fgetc, no special code for ^C:
2428 * it generates SIGINT as usual.
2429 */
2430 check_and_run_traps();
2431 if (G.flag_SIGINT)
2432 G.last_exitcode = 128 + SIGINT;
2433 if (r != '\0')
2434 break;
2435 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002436 return r;
Denys Vlasenko8391c482010-05-22 17:50:43 +02002437# endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002438}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002439/* This is the magic location that prints prompts
2440 * and gets data back from the user */
Denys Vlasenko4074d492016-09-30 01:49:53 +02002441static int fgetc_interactive(struct in_str *i)
2442{
2443 int ch;
2444 /* If it's interactive stdin, get new line. */
2445 if (G_interactive_fd && i->file == stdin) {
2446 /* Returns first char (or EOF), the rest is in i->p[] */
2447 ch = get_user_input(i);
2448 i->promptmode = 1; /* PS2 */
2449 } else {
2450 /* Not stdin: script file, sourced file, etc */
2451 do ch = fgetc(i->file); while (ch == '\0');
2452 }
2453 return ch;
2454}
2455#else
2456static inline int fgetc_interactive(struct in_str *i)
2457{
2458 int ch;
2459 do ch = fgetc(i->file); while (ch == '\0');
2460 return ch;
2461}
2462#endif /* INTERACTIVE */
2463
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002464static int i_getch(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002465{
2466 int ch;
2467
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002468 if (!i->file) {
2469 /* string-based in_str */
2470 ch = (unsigned char)*i->p;
2471 if (ch != '\0') {
2472 i->p++;
2473 i->last_char = ch;
2474 return ch;
2475 }
2476 return EOF;
2477 }
2478
2479 /* FILE-based in_str */
2480
Denys Vlasenko4074d492016-09-30 01:49:53 +02002481#if ENABLE_FEATURE_EDITING
2482 /* This can be stdin, check line editing char[] buffer */
2483 if (i->p && *i->p != '\0') {
2484 ch = (unsigned char)*i->p++;
2485 goto out;
2486 }
2487#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002488 /* peek_buf[] is an int array, not char. Can contain EOF. */
2489 ch = i->peek_buf[0];
Denys Vlasenko4074d492016-09-30 01:49:53 +02002490 if (ch != 0) {
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002491 int ch2 = i->peek_buf[1];
2492 i->peek_buf[0] = ch2;
2493 if (ch2 == 0) /* very likely, avoid redundant write */
2494 goto out;
2495 i->peek_buf[1] = 0;
2496 goto out;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002497 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002498
Denys Vlasenko4074d492016-09-30 01:49:53 +02002499 ch = fgetc_interactive(i);
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002500 out:
Denis Vlasenko913a2012009-04-05 22:17:04 +00002501 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02002502 i->last_char = ch;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002503 return ch;
2504}
2505
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002506static int i_peek(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002507{
2508 int ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002509
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002510 if (!i->file) {
2511 /* string-based in_str */
2512 /* Doesn't report EOF on NUL. None of the callers care. */
2513 return (unsigned char)*i->p;
2514 }
2515
2516 /* FILE-based in_str */
2517
Denys Vlasenko4074d492016-09-30 01:49:53 +02002518#if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002519 /* This can be stdin, check line editing char[] buffer */
2520 if (i->p && *i->p != '\0')
2521 return (unsigned char)*i->p;
2522#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002523 /* peek_buf[] is an int array, not char. Can contain EOF. */
2524 ch = i->peek_buf[0];
Denys Vlasenko4074d492016-09-30 01:49:53 +02002525 if (ch != 0)
2526 return ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002527
Denys Vlasenko4074d492016-09-30 01:49:53 +02002528 /* Need to get a new char */
2529 ch = fgetc_interactive(i);
2530 debug_printf("file_peek: got '%c' %d\n", ch, ch);
2531
2532 /* Save it by either rolling back line editing buffer, or in i->peek_buf[0] */
2533#if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE
2534 if (i->p) {
2535 i->p -= 1;
2536 return ch;
2537 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002538#endif
Denys Vlasenko4074d492016-09-30 01:49:53 +02002539 i->peek_buf[0] = ch;
2540 /*i->peek_buf[1] = 0; - already is */
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002541 return ch;
2542}
2543
Denys Vlasenko4074d492016-09-30 01:49:53 +02002544/* Only ever called if i_peek() was called, and did not return EOF.
2545 * IOW: we know the previous peek saw an ordinary char, not EOF, not NUL,
2546 * not end-of-line. Therefore we never need to read a new editing line here.
2547 */
2548static int i_peek2(struct in_str *i)
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002549{
Denys Vlasenko4074d492016-09-30 01:49:53 +02002550 int ch;
2551
2552 /* There are two cases when i->p[] buffer exists.
2553 * (1) it's a string in_str.
Denys Vlasenko08755f92016-09-30 02:02:25 +02002554 * (2) It's a file, and we have a saved line editing buffer.
Denys Vlasenko4074d492016-09-30 01:49:53 +02002555 * In both cases, we know that i->p[0] exists and not NUL, and
2556 * the peek2 result is in i->p[1].
2557 */
2558 if (i->p)
2559 return (unsigned char)i->p[1];
2560
2561 /* Now we know it is a file-based in_str. */
2562
2563 /* peek_buf[] is an int array, not char. Can contain EOF. */
2564 /* Is there 2nd char? */
2565 ch = i->peek_buf[1];
2566 if (ch == 0) {
2567 /* We did not read it yet, get it now */
2568 do ch = fgetc(i->file); while (ch == '\0');
2569 i->peek_buf[1] = ch;
2570 }
2571
2572 debug_printf("file_peek2: got '%c' %d\n", ch, ch);
2573 return ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002574}
2575
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002576static void setup_file_in_str(struct in_str *i, FILE *f)
2577{
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002578 memset(i, 0, sizeof(*i));
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002579 /* i->promptmode = 0; - PS1 (memset did it) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002580 i->file = f;
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002581 /* i->p = NULL; */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002582}
2583
2584static void setup_string_in_str(struct in_str *i, const char *s)
2585{
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002586 memset(i, 0, sizeof(*i));
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002587 /* i->promptmode = 0; - PS1 (memset did it) */
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002588 /*i->file = NULL */;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002589 i->p = s;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002590}
2591
2592
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002593/*
2594 * o_string support
2595 */
2596#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00002597
Denis Vlasenko0b677d82009-04-10 13:49:10 +00002598static void o_reset_to_empty_unquoted(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00002599{
2600 o->length = 0;
Denys Vlasenko38292b62010-09-05 14:49:40 +02002601 o->has_quoted_part = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002602 if (o->data)
2603 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002604}
2605
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002606static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00002607{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00002608 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002609 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00002610}
2611
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002612static ALWAYS_INLINE void o_free_unsafe(o_string *o)
2613{
2614 free(o->data);
2615}
2616
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002617static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002618{
2619 if (o->length + len > o->maxlen) {
Denys Vlasenko46e64982016-09-29 19:50:55 +02002620 o->maxlen += (2 * len) | (B_CHUNK-1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002621 o->data = xrealloc(o->data, 1 + o->maxlen);
2622 }
2623}
2624
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002625static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002626{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002627 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
Denys Vlasenko46e64982016-09-29 19:50:55 +02002628 if (o->length < o->maxlen) {
2629 /* likely. avoid o_grow_by() call */
2630 add:
2631 o->data[o->length] = ch;
2632 o->length++;
2633 o->data[o->length] = '\0';
2634 return;
2635 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002636 o_grow_by(o, 1);
Denys Vlasenko46e64982016-09-29 19:50:55 +02002637 goto add;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002638}
2639
Denys Vlasenko657086a2016-09-29 18:07:42 +02002640#if 0
2641/* Valid only if we know o_string is not empty */
2642static void o_delchr(o_string *o)
2643{
2644 o->length--;
2645 o->data[o->length] = '\0';
2646}
2647#endif
2648
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002649static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002650{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002651 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002652 memcpy(&o->data[o->length], str, len);
2653 o->length += len;
2654 o->data[o->length] = '\0';
2655}
2656
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002657static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00002658{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002659 o_addblock(o, str, strlen(str));
2660}
Denys Vlasenko2e48d532010-05-22 17:30:39 +02002661
Denys Vlasenko1e811b12010-05-22 03:12:29 +02002662#if !BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002663static void nommu_addchr(o_string *o, int ch)
2664{
2665 if (o)
2666 o_addchr(o, ch);
2667}
2668#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002669# define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002670#endif
2671
2672static void o_addstr_with_NUL(o_string *o, const char *str)
2673{
2674 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00002675}
2676
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002677/*
Denys Vlasenko238081f2010-10-03 14:26:26 +02002678 * HUSH_BRACE_EXPANSION code needs corresponding quoting on variable expansion side.
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002679 * Currently, "v='{q,w}'; echo $v" erroneously expands braces in $v.
2680 * Apparently, on unquoted $v bash still does globbing
2681 * ("v='*.txt'; echo $v" prints all .txt files),
2682 * but NOT brace expansion! Thus, there should be TWO independent
2683 * quoting mechanisms on $v expansion side: one protects
2684 * $v from brace expansion, and other additionally protects "$v" against globbing.
2685 * We have only second one.
2686 */
2687
Denys Vlasenko9e800222010-10-03 14:28:04 +02002688#if ENABLE_HUSH_BRACE_EXPANSION
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002689# define MAYBE_BRACES "{}"
2690#else
2691# define MAYBE_BRACES ""
2692#endif
2693
Eric Andersen25f27032001-04-26 23:22:31 +00002694/* My analysis of quoting semantics tells me that state information
2695 * is associated with a destination, not a source.
2696 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002697static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00002698{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002699 int sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002700 char *found = strchr("*?[\\" MAYBE_BRACES, ch);
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002701 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002702 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002703 o_grow_by(o, sz);
2704 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002705 o->data[o->length] = '\\';
2706 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00002707 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002708 o->data[o->length] = ch;
2709 o->length++;
2710 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002711}
2712
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002713static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002714{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002715 int sz = 1;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002716 if ((o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)
2717 && strchr("*?[\\" MAYBE_BRACES, ch)
2718 ) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002719 sz++;
2720 o->data[o->length] = '\\';
2721 o->length++;
2722 }
2723 o_grow_by(o, sz);
2724 o->data[o->length] = ch;
2725 o->length++;
2726 o->data[o->length] = '\0';
2727}
2728
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002729static void o_addqblock(o_string *o, const char *str, int len)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002730{
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002731 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002732 char ch;
2733 int sz;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002734 int ordinary_cnt = strcspn(str, "*?[\\" MAYBE_BRACES);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002735 if (ordinary_cnt > len) /* paranoia */
2736 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002737 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002738 if (ordinary_cnt == len)
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002739 return; /* NUL is already added by o_addblock */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002740 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002741 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002742
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002743 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002744 sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002745 if (ch) { /* it is necessarily one of "*?[\\" MAYBE_BRACES */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002746 sz++;
2747 o->data[o->length] = '\\';
2748 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002749 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002750 o_grow_by(o, sz);
2751 o->data[o->length] = ch;
2752 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002753 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002754 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002755}
2756
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002757static void o_addQblock(o_string *o, const char *str, int len)
2758{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002759 if (!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002760 o_addblock(o, str, len);
2761 return;
2762 }
2763 o_addqblock(o, str, len);
2764}
2765
Denys Vlasenko38292b62010-09-05 14:49:40 +02002766static void o_addQstr(o_string *o, const char *str)
2767{
2768 o_addQblock(o, str, strlen(str));
2769}
2770
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002771/* A special kind of o_string for $VAR and `cmd` expansion.
2772 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002773 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002774 * list[i] contains an INDEX (int!) into this string data.
2775 * It means that if list[] needs to grow, data needs to be moved higher up
2776 * but list[i]'s need not be modified.
2777 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002778 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002779 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
2780 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002781#if DEBUG_EXPAND || DEBUG_GLOB
2782static void debug_print_list(const char *prefix, o_string *o, int n)
2783{
2784 char **list = (char**)o->data;
2785 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2786 int i = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002787
2788 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002789 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 +02002790 prefix, list, n, string_start, o->length, o->maxlen,
2791 !!(o->o_expflags & EXP_FLAG_GLOB),
2792 o->has_quoted_part,
2793 !!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002794 while (i < n) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002795 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002796 fdprintf(2, " list[%d]=%d '%s' %p\n", i, (int)(uintptr_t)list[i],
2797 o->data + (int)(uintptr_t)list[i] + string_start,
2798 o->data + (int)(uintptr_t)list[i] + string_start);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002799 i++;
2800 }
2801 if (n) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002802 const char *p = o->data + (int)(uintptr_t)list[n - 1] + string_start;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002803 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002804 fdprintf(2, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002805 }
2806}
2807#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002808# define debug_print_list(prefix, o, n) ((void)0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002809#endif
2810
2811/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
2812 * in list[n] so that it points past last stored byte so far.
2813 * It returns n+1. */
2814static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002815{
2816 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00002817 int string_start;
2818 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002819
2820 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00002821 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2822 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002823 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002824 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002825 /* list[n] points to string_start, make space for 16 more pointers */
2826 o->maxlen += 0x10 * sizeof(list[0]);
2827 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00002828 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002829 memmove(list + n + 0x10, list + n, string_len);
2830 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002831 } else {
2832 debug_printf_list("list[%d]=%d string_start=%d\n",
2833 n, string_len, string_start);
2834 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002835 } else {
2836 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00002837 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
2838 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002839 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
2840 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002841 o->has_empty_slot = 0;
2842 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002843 o->has_quoted_part = 0;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002844 list[n] = (char*)(uintptr_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002845 return n + 1;
2846}
2847
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002848/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002849static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002850{
2851 char **list = (char**)o->data;
2852 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2853
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002854 return ((int)(uintptr_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002855}
2856
Denys Vlasenko9e800222010-10-03 14:28:04 +02002857#if ENABLE_HUSH_BRACE_EXPANSION
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002858/* There in a GNU extension, GLOB_BRACE, but it is not usable:
2859 * first, it processes even {a} (no commas), second,
2860 * I didn't manage to make it return strings when they don't match
Denys Vlasenko160746b2009-11-16 05:51:18 +01002861 * existing files. Need to re-implement it.
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002862 */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002863
2864/* Helper */
2865static int glob_needed(const char *s)
2866{
2867 while (*s) {
2868 if (*s == '\\') {
2869 if (!s[1])
2870 return 0;
2871 s += 2;
2872 continue;
2873 }
2874 if (*s == '*' || *s == '[' || *s == '?' || *s == '{')
2875 return 1;
2876 s++;
2877 }
2878 return 0;
2879}
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002880/* Return pointer to next closing brace or to comma */
2881static const char *next_brace_sub(const char *cp)
2882{
2883 unsigned depth = 0;
2884 cp++;
2885 while (*cp != '\0') {
2886 if (*cp == '\\') {
2887 if (*++cp == '\0')
2888 break;
2889 cp++;
2890 continue;
Denys Vlasenko3581c622010-01-25 13:39:24 +01002891 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002892 if ((*cp == '}' && depth-- == 0) || (*cp == ',' && depth == 0))
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002893 break;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002894 if (*cp++ == '{')
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002895 depth++;
2896 }
2897
2898 return *cp != '\0' ? cp : NULL;
2899}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002900/* Recursive brace globber. Note: may garble pattern[]. */
2901static int glob_brace(char *pattern, o_string *o, int n)
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002902{
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002903 char *new_pattern_buf;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002904 const char *begin;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002905 const char *next;
2906 const char *rest;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002907 const char *p;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002908 size_t rest_len;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002909
2910 debug_printf_glob("glob_brace('%s')\n", pattern);
2911
2912 begin = pattern;
2913 while (1) {
2914 if (*begin == '\0')
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002915 goto simple_glob;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002916 if (*begin == '{') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002917 /* Find the first sub-pattern and at the same time
2918 * find the rest after the closing brace */
2919 next = next_brace_sub(begin);
2920 if (next == NULL) {
2921 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002922 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002923 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002924 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002925 /* "{abc}" with no commas - illegal
2926 * brace expr, disregard and skip it */
2927 begin = next + 1;
2928 continue;
2929 }
2930 break;
2931 }
2932 if (*begin == '\\' && begin[1] != '\0')
2933 begin++;
2934 begin++;
2935 }
2936 debug_printf_glob("begin:%s\n", begin);
2937 debug_printf_glob("next:%s\n", next);
2938
2939 /* Now find the end of the whole brace expression */
2940 rest = next;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002941 while (*rest != '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002942 rest = next_brace_sub(rest);
2943 if (rest == NULL) {
2944 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002945 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002946 }
2947 debug_printf_glob("rest:%s\n", rest);
2948 }
2949 rest_len = strlen(++rest) + 1;
2950
2951 /* We are sure the brace expression is well-formed */
2952
2953 /* Allocate working buffer large enough for our work */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002954 new_pattern_buf = xmalloc(strlen(pattern));
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002955
2956 /* We have a brace expression. BEGIN points to the opening {,
2957 * NEXT points past the terminator of the first element, and REST
2958 * points past the final }. We will accumulate result names from
2959 * recursive runs for each brace alternative in the buffer using
2960 * GLOB_APPEND. */
2961
2962 p = begin + 1;
2963 while (1) {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002964 /* Construct the new glob expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002965 memcpy(
2966 mempcpy(
2967 mempcpy(new_pattern_buf,
2968 /* We know the prefix for all sub-patterns */
2969 pattern, begin - pattern),
2970 p, next - p),
2971 rest, rest_len);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002972
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002973 /* Note: glob_brace() may garble new_pattern_buf[].
2974 * That's why we re-copy prefix every time (1st memcpy above).
2975 */
2976 n = glob_brace(new_pattern_buf, o, n);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002977 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002978 /* We saw the last entry */
2979 break;
2980 }
2981 p = next + 1;
2982 next = next_brace_sub(next);
2983 }
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002984 free(new_pattern_buf);
2985 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002986
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002987 simple_glob:
2988 {
2989 int gr;
2990 glob_t globdata;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002991
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002992 memset(&globdata, 0, sizeof(globdata));
2993 gr = glob(pattern, 0, NULL, &globdata);
2994 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
2995 if (gr != 0) {
2996 if (gr == GLOB_NOMATCH) {
2997 globfree(&globdata);
2998 /* NB: garbles parameter */
2999 unbackslash(pattern);
3000 o_addstr_with_NUL(o, pattern);
3001 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
3002 return o_save_ptr_helper(o, n);
3003 }
3004 if (gr == GLOB_NOSPACE)
3005 bb_error_msg_and_die(bb_msg_memory_exhausted);
3006 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
3007 * but we didn't specify it. Paranoia again. */
3008 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
3009 }
3010 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
3011 char **argv = globdata.gl_pathv;
3012 while (1) {
3013 o_addstr_with_NUL(o, *argv);
3014 n = o_save_ptr_helper(o, n);
3015 argv++;
3016 if (!*argv)
3017 break;
3018 }
3019 }
3020 globfree(&globdata);
3021 }
3022 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003023}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003024/* Performs globbing on last list[],
3025 * saving each result as a new list[].
3026 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003027static int perform_glob(o_string *o, int n)
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003028{
3029 char *pattern, *copy;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003030
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003031 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003032 if (!o->data)
3033 return o_save_ptr_helper(o, n);
3034 pattern = o->data + o_get_last_ptr(o, n);
3035 debug_printf_glob("glob pattern '%s'\n", pattern);
3036 if (!glob_needed(pattern)) {
3037 /* unbackslash last string in o in place, fix length */
3038 o->length = unbackslash(pattern) - o->data;
3039 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
3040 return o_save_ptr_helper(o, n);
3041 }
3042
3043 copy = xstrdup(pattern);
3044 /* "forget" pattern in o */
3045 o->length = pattern - o->data;
3046 n = glob_brace(copy, o, n);
3047 free(copy);
3048 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003049 debug_print_list("perform_glob returning", o, n);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003050 return n;
3051}
3052
Denys Vlasenko238081f2010-10-03 14:26:26 +02003053#else /* !HUSH_BRACE_EXPANSION */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003054
3055/* Helper */
3056static int glob_needed(const char *s)
3057{
3058 while (*s) {
3059 if (*s == '\\') {
3060 if (!s[1])
3061 return 0;
3062 s += 2;
3063 continue;
3064 }
3065 if (*s == '*' || *s == '[' || *s == '?')
3066 return 1;
3067 s++;
3068 }
3069 return 0;
3070}
3071/* Performs globbing on last list[],
3072 * saving each result as a new list[].
3073 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003074static int perform_glob(o_string *o, int n)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003075{
3076 glob_t globdata;
3077 int gr;
3078 char *pattern;
3079
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003080 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003081 if (!o->data)
3082 return o_save_ptr_helper(o, n);
3083 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003084 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003085 if (!glob_needed(pattern)) {
3086 literal:
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003087 /* unbackslash last string in o in place, fix length */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003088 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003089 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003090 return o_save_ptr_helper(o, n);
3091 }
3092
3093 memset(&globdata, 0, sizeof(globdata));
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003094 /* Can't use GLOB_NOCHECK: it does not unescape the string.
3095 * If we glob "*.\*" and don't find anything, we need
3096 * to fall back to using literal "*.*", but GLOB_NOCHECK
3097 * will return "*.\*"!
3098 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003099 gr = glob(pattern, 0, NULL, &globdata);
3100 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003101 if (gr != 0) {
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003102 if (gr == GLOB_NOMATCH) {
3103 globfree(&globdata);
3104 goto literal;
3105 }
3106 if (gr == GLOB_NOSPACE)
3107 bb_error_msg_and_die(bb_msg_memory_exhausted);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003108 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
3109 * but we didn't specify it. Paranoia again. */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003110 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003111 }
3112 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
3113 char **argv = globdata.gl_pathv;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003114 /* "forget" pattern in o */
3115 o->length = pattern - o->data;
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003116 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003117 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003118 n = o_save_ptr_helper(o, n);
3119 argv++;
3120 if (!*argv)
3121 break;
3122 }
3123 }
3124 globfree(&globdata);
3125 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003126 debug_print_list("perform_glob returning", o, n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003127 return n;
3128}
3129
Denys Vlasenko238081f2010-10-03 14:26:26 +02003130#endif /* !HUSH_BRACE_EXPANSION */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003131
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02003132/* If o->o_expflags & EXP_FLAG_GLOB, glob the string so far remembered.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003133 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003134static int o_save_ptr(o_string *o, int n)
3135{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02003136 if (o->o_expflags & EXP_FLAG_GLOB) {
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00003137 /* If o->has_empty_slot, list[n] was already globbed
3138 * (if it was requested back then when it was filled)
3139 * so don't do that again! */
3140 if (!o->has_empty_slot)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003141 return perform_glob(o, n); /* o_save_ptr_helper is inside */
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00003142 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003143 return o_save_ptr_helper(o, n);
3144}
3145
3146/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003147static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003148{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003149 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003150 int string_start;
3151
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003152 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
3153 if (DEBUG_EXPAND)
3154 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003155 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003156 list = (char**)o->data;
3157 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
3158 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003159 while (n) {
3160 n--;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003161 list[n] = o->data + (int)(uintptr_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003162 }
3163 return list;
3164}
3165
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003166static void free_pipe_list(struct pipe *pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003167
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003168/* Returns pi->next - next pipe in the list */
3169static struct pipe *free_pipe(struct pipe *pi)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003170{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003171 struct pipe *next;
3172 int i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003173
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003174 debug_printf_clean("free_pipe (pid %d)\n", getpid());
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003175 for (i = 0; i < pi->num_cmds; i++) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003176 struct command *command;
3177 struct redir_struct *r, *rnext;
3178
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003179 command = &pi->cmds[i];
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003180 debug_printf_clean(" command %d:\n", i);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003181 if (command->argv) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003182 if (DEBUG_CLEAN) {
3183 int a;
3184 char **p;
3185 for (a = 0, p = command->argv; *p; a++, p++) {
3186 debug_printf_clean(" argv[%d] = %s\n", a, *p);
3187 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003188 }
3189 free_strings(command->argv);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003190 //command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003191 }
3192 /* not "else if": on syntax error, we may have both! */
3193 if (command->group) {
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003194 debug_printf_clean(" begin group (cmd_type:%d)\n",
3195 command->cmd_type);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003196 free_pipe_list(command->group);
3197 debug_printf_clean(" end group\n");
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003198 //command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003199 }
Denis Vlasenkoed055212009-04-11 10:37:10 +00003200 /* else is crucial here.
3201 * If group != NULL, child_func is meaningless */
3202#if ENABLE_HUSH_FUNCTIONS
3203 else if (command->child_func) {
3204 debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
3205 command->child_func->parent_cmd = NULL;
3206 }
3207#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003208#if !BB_MMU
3209 free(command->group_as_string);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003210 //command->group_as_string = NULL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003211#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003212 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003213 debug_printf_clean(" redirect %d%s",
3214 r->rd_fd, redir_table[r->rd_type].descrip);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003215 /* guard against the case >$FOO, where foo is unset or blank */
3216 if (r->rd_filename) {
3217 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
3218 free(r->rd_filename);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003219 //r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003220 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003221 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003222 rnext = r->next;
3223 free(r);
3224 }
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003225 //command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003226 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003227 free(pi->cmds); /* children are an array, they get freed all at once */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003228 //pi->cmds = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003229#if ENABLE_HUSH_JOB
3230 free(pi->cmdtext);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003231 //pi->cmdtext = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003232#endif
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003233
3234 next = pi->next;
3235 free(pi);
3236 return next;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003237}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003238
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003239static void free_pipe_list(struct pipe *pi)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003240{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003241 while (pi) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003242#if HAS_KEYWORDS
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003243 debug_printf_clean("pipe reserved word %d\n", pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003244#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003245 debug_printf_clean("pipe followup code %d\n", pi->followup);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003246 pi = free_pipe(pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003247 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003248}
3249
3250
Denys Vlasenkob36abf22010-09-05 14:50:59 +02003251/*** Parsing routines ***/
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003252
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003253#ifndef debug_print_tree
3254static void debug_print_tree(struct pipe *pi, int lvl)
3255{
3256 static const char *const PIPE[] = {
3257 [PIPE_SEQ] = "SEQ",
3258 [PIPE_AND] = "AND",
3259 [PIPE_OR ] = "OR" ,
3260 [PIPE_BG ] = "BG" ,
3261 };
3262 static const char *RES[] = {
3263 [RES_NONE ] = "NONE" ,
3264# if ENABLE_HUSH_IF
3265 [RES_IF ] = "IF" ,
3266 [RES_THEN ] = "THEN" ,
3267 [RES_ELIF ] = "ELIF" ,
3268 [RES_ELSE ] = "ELSE" ,
3269 [RES_FI ] = "FI" ,
3270# endif
3271# if ENABLE_HUSH_LOOPS
3272 [RES_FOR ] = "FOR" ,
3273 [RES_WHILE] = "WHILE",
3274 [RES_UNTIL] = "UNTIL",
3275 [RES_DO ] = "DO" ,
3276 [RES_DONE ] = "DONE" ,
3277# endif
3278# if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
3279 [RES_IN ] = "IN" ,
3280# endif
3281# if ENABLE_HUSH_CASE
3282 [RES_CASE ] = "CASE" ,
3283 [RES_CASE_IN ] = "CASE_IN" ,
3284 [RES_MATCH] = "MATCH",
3285 [RES_CASE_BODY] = "CASE_BODY",
3286 [RES_ESAC ] = "ESAC" ,
3287# endif
3288 [RES_XXXX ] = "XXXX" ,
3289 [RES_SNTX ] = "SNTX" ,
3290 };
3291 static const char *const CMDTYPE[] = {
3292 "{}",
3293 "()",
3294 "[noglob]",
3295# if ENABLE_HUSH_FUNCTIONS
3296 "func()",
3297# endif
3298 };
3299
3300 int pin, prn;
3301
3302 pin = 0;
3303 while (pi) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003304 fdprintf(2, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003305 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
3306 prn = 0;
3307 while (prn < pi->num_cmds) {
3308 struct command *command = &pi->cmds[prn];
3309 char **argv = command->argv;
3310
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003311 fdprintf(2, "%*s cmd %d assignment_cnt:%d",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003312 lvl*2, "", prn,
3313 command->assignment_cnt);
3314 if (command->group) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003315 fdprintf(2, " group %s: (argv=%p)%s%s\n",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003316 CMDTYPE[command->cmd_type],
3317 argv
3318# if !BB_MMU
3319 , " group_as_string:", command->group_as_string
3320# else
3321 , "", ""
3322# endif
3323 );
3324 debug_print_tree(command->group, lvl+1);
3325 prn++;
3326 continue;
3327 }
3328 if (argv) while (*argv) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003329 fdprintf(2, " '%s'", *argv);
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003330 argv++;
3331 }
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003332 fdprintf(2, "\n");
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003333 prn++;
3334 }
3335 pi = pi->next;
3336 pin++;
3337 }
3338}
3339#endif /* debug_print_tree */
3340
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00003341static struct pipe *new_pipe(void)
3342{
Eric Andersen25f27032001-04-26 23:22:31 +00003343 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003344 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003345 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00003346 return pi;
3347}
3348
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003349/* Command (member of a pipe) is complete, or we start a new pipe
3350 * if ctx->command is NULL.
3351 * No errors possible here.
3352 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003353static int done_command(struct parse_context *ctx)
3354{
3355 /* The command is really already in the pipe structure, so
3356 * advance the pipe counter and make a new, null command. */
3357 struct pipe *pi = ctx->pipe;
3358 struct command *command = ctx->command;
3359
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02003360#if 0 /* Instead we emit error message at run time */
3361 if (ctx->pending_redirect) {
3362 /* For example, "cmd >" (no filename to redirect to) */
3363 die_if_script("syntax error: %s", "invalid redirect");
3364 ctx->pending_redirect = NULL;
3365 }
3366#endif
3367
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003368 if (command) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003369 if (IS_NULL_CMD(command)) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003370 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003371 goto clear_and_ret;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003372 }
3373 pi->num_cmds++;
3374 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003375 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003376 } else {
3377 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
3378 }
3379
3380 /* Only real trickiness here is that the uncommitted
3381 * command structure is not counted in pi->num_cmds. */
3382 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003383 ctx->command = command = &pi->cmds[pi->num_cmds];
3384 clear_and_ret:
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003385 memset(command, 0, sizeof(*command));
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003386 return pi->num_cmds; /* used only for 0/nonzero check */
3387}
3388
3389static void done_pipe(struct parse_context *ctx, pipe_style type)
3390{
3391 int not_null;
3392
3393 debug_printf_parse("done_pipe entered, followup %d\n", type);
3394 /* Close previous command */
3395 not_null = done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003396#if HAS_KEYWORDS
3397 ctx->pipe->pi_inverted = ctx->ctx_inverted;
3398 ctx->ctx_inverted = 0;
3399 ctx->pipe->res_word = ctx->ctx_res_w;
3400#endif
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02003401 if (type == PIPE_BG && ctx->list_head != ctx->pipe) {
3402 /* Necessary since && and || have precedence over &:
Denys Vlasenkoee553b92017-07-15 22:51:55 +02003403 * "cmd1 && cmd2 &" must spawn both cmds, not only cmd2,
3404 * in a backgrounded subshell.
3405 */
3406 struct pipe *pi;
3407 struct command *command;
3408
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02003409 /* Is this actually this construct, all pipes end with && or ||? */
Denys Vlasenkoee553b92017-07-15 22:51:55 +02003410 pi = ctx->list_head;
3411 while (pi != ctx->pipe) {
3412 if (pi->followup != PIPE_AND && pi->followup != PIPE_OR)
3413 goto no_conv;
3414 pi = pi->next;
3415 }
3416
3417 debug_printf_parse("BG with more than one pipe, converting to { p1 &&...pN; } &\n");
3418 pi->followup = PIPE_SEQ; /* close pN _not_ with "&"! */
3419 pi = xzalloc(sizeof(*pi));
3420 pi->followup = PIPE_BG;
3421 pi->num_cmds = 1;
3422 pi->cmds = xzalloc(sizeof(pi->cmds[0]));
3423 command = &pi->cmds[0];
3424 if (CMD_NORMAL != 0) /* "if xzalloc didn't do that already" */
3425 command->cmd_type = CMD_NORMAL;
3426 command->group = ctx->list_head;
3427#if !BB_MMU
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02003428 command->group_as_string = xstrndup(
3429 ctx->as_string.data,
3430 ctx->as_string.length - 1 /* do not copy last char, "&" */
3431 );
Denys Vlasenkoee553b92017-07-15 22:51:55 +02003432#endif
3433 /* Replace all pipes in ctx with one newly created */
3434 ctx->list_head = ctx->pipe = pi;
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02003435 } else {
3436 no_conv:
3437 ctx->pipe->followup = type;
Denys Vlasenkoee553b92017-07-15 22:51:55 +02003438 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003439
3440 /* Without this check, even just <enter> on command line generates
3441 * tree of three NOPs (!). Which is harmless but annoying.
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003442 * IOW: it is safe to do it unconditionally. */
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003443 if (not_null
Denis Vlasenko7f959372009-04-14 08:06:59 +00003444#if ENABLE_HUSH_IF
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003445 || ctx->ctx_res_w == RES_FI
Denis Vlasenko7f959372009-04-14 08:06:59 +00003446#endif
3447#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003448 || ctx->ctx_res_w == RES_DONE
3449 || ctx->ctx_res_w == RES_FOR
3450 || ctx->ctx_res_w == RES_IN
Denis Vlasenko7f959372009-04-14 08:06:59 +00003451#endif
3452#if ENABLE_HUSH_CASE
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003453 || ctx->ctx_res_w == RES_ESAC
3454#endif
3455 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003456 struct pipe *new_p;
3457 debug_printf_parse("done_pipe: adding new pipe: "
3458 "not_null:%d ctx->ctx_res_w:%d\n",
3459 not_null, ctx->ctx_res_w);
3460 new_p = new_pipe();
3461 ctx->pipe->next = new_p;
3462 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003463 /* RES_THEN, RES_DO etc are "sticky" -
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003464 * they remain set for pipes inside if/while.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003465 * This is used to control execution.
3466 * RES_FOR and RES_IN are NOT sticky (needed to support
3467 * cases where variable or value happens to match a keyword):
3468 */
3469#if ENABLE_HUSH_LOOPS
3470 if (ctx->ctx_res_w == RES_FOR
3471 || ctx->ctx_res_w == RES_IN)
3472 ctx->ctx_res_w = RES_NONE;
3473#endif
3474#if ENABLE_HUSH_CASE
3475 if (ctx->ctx_res_w == RES_MATCH)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003476 ctx->ctx_res_w = RES_CASE_BODY;
3477 if (ctx->ctx_res_w == RES_CASE)
3478 ctx->ctx_res_w = RES_CASE_IN;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003479#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003480 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003481 /* Create the memory for command, roughly:
3482 * ctx->pipe->cmds = new struct command;
3483 * ctx->command = &ctx->pipe->cmds[0];
3484 */
3485 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003486 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003487 }
3488 debug_printf_parse("done_pipe return\n");
3489}
3490
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003491static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003492{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003493 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00003494 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003495 /* Create the memory for command, roughly:
3496 * ctx->pipe->cmds = new struct command;
3497 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003498 */
3499 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00003500}
3501
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003502/* If a reserved word is found and processed, parse context is modified
3503 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00003504 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003505#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003506struct reserved_combo {
3507 char literal[6];
3508 unsigned char res;
3509 unsigned char assignment_flag;
3510 int flag;
3511};
3512enum {
3513 FLAG_END = (1 << RES_NONE ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003514# if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003515 FLAG_IF = (1 << RES_IF ),
3516 FLAG_THEN = (1 << RES_THEN ),
3517 FLAG_ELIF = (1 << RES_ELIF ),
3518 FLAG_ELSE = (1 << RES_ELSE ),
3519 FLAG_FI = (1 << RES_FI ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003520# endif
3521# if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003522 FLAG_FOR = (1 << RES_FOR ),
3523 FLAG_WHILE = (1 << RES_WHILE),
3524 FLAG_UNTIL = (1 << RES_UNTIL),
3525 FLAG_DO = (1 << RES_DO ),
3526 FLAG_DONE = (1 << RES_DONE ),
3527 FLAG_IN = (1 << RES_IN ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003528# endif
3529# if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003530 FLAG_MATCH = (1 << RES_MATCH),
3531 FLAG_ESAC = (1 << RES_ESAC ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003532# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003533 FLAG_START = (1 << RES_XXXX ),
3534};
3535
3536static const struct reserved_combo* match_reserved_word(o_string *word)
3537{
Eric Andersen25f27032001-04-26 23:22:31 +00003538 /* Mostly a list of accepted follow-up reserved words.
3539 * FLAG_END means we are done with the sequence, and are ready
3540 * to turn the compound list into a command.
3541 * FLAG_START means the word must start a new compound list.
3542 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003543 static const struct reserved_combo reserved_list[] = {
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003544# if ENABLE_HUSH_IF
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003545 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
3546 { "if", RES_IF, MAYBE_ASSIGNMENT, FLAG_THEN | FLAG_START },
3547 { "then", RES_THEN, MAYBE_ASSIGNMENT, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
3548 { "elif", RES_ELIF, MAYBE_ASSIGNMENT, FLAG_THEN },
3549 { "else", RES_ELSE, MAYBE_ASSIGNMENT, FLAG_FI },
3550 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003551# endif
3552# if ENABLE_HUSH_LOOPS
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003553 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
3554 { "while", RES_WHILE, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START },
3555 { "until", RES_UNTIL, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START },
3556 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
3557 { "do", RES_DO, MAYBE_ASSIGNMENT, FLAG_DONE },
3558 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003559# endif
3560# if ENABLE_HUSH_CASE
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003561 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
3562 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003563# endif
Eric Andersen25f27032001-04-26 23:22:31 +00003564 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003565 const struct reserved_combo *r;
3566
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02003567 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003568 if (strcmp(word->data, r->literal) == 0)
3569 return r;
3570 }
3571 return NULL;
3572}
Denis Vlasenkobb929512009-04-16 10:59:40 +00003573/* Return 0: not a keyword, 1: keyword
3574 */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003575static int reserved_word(o_string *word, struct parse_context *ctx)
3576{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003577# if ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003578 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003579 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003580 };
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003581# endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003582 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003583
Denys Vlasenko38292b62010-09-05 14:49:40 +02003584 if (word->has_quoted_part)
Denis Vlasenkobb929512009-04-16 10:59:40 +00003585 return 0;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003586 r = match_reserved_word(word);
3587 if (!r)
3588 return 0;
3589
3590 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003591# if ENABLE_HUSH_CASE
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003592 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE_IN) {
3593 /* "case word IN ..." - IN part starts first MATCH part */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003594 r = &reserved_match;
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003595 } else
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003596# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003597 if (r->flag == 0) { /* '!' */
3598 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003599 syntax_error("! ! command");
Denis Vlasenkobb929512009-04-16 10:59:40 +00003600 ctx->ctx_res_w = RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00003601 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003602 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00003603 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003604 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003605 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003606 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003607
Denys Vlasenko9e55a152017-07-10 10:01:12 +02003608 old = xmemdup(ctx, sizeof(*ctx));
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003609 debug_printf_parse("push stack %p\n", old);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003610 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003611 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003612 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003613 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003614 ctx->ctx_res_w = RES_SNTX;
3615 return 1;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003616 } else {
3617 /* "{...} fi" is ok. "{...} if" is not
3618 * Example:
3619 * if { echo foo; } then { echo bar; } fi */
3620 if (ctx->command->group)
3621 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003622 }
Denis Vlasenkobb929512009-04-16 10:59:40 +00003623
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003624 ctx->ctx_res_w = r->res;
3625 ctx->old_flag = r->flag;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003626 word->o_assignment = r->assignment_flag;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003627 debug_printf_parse("word->o_assignment='%s'\n", assignment_flag[word->o_assignment]);
Denis Vlasenkobb929512009-04-16 10:59:40 +00003628
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003629 if (ctx->old_flag & FLAG_END) {
3630 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003631
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003632 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003633 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003634 old = ctx->stack;
3635 old->command->group = ctx->list_head;
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003636 old->command->cmd_type = CMD_NORMAL;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003637# if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02003638 /* At this point, the compound command's string is in
3639 * ctx->as_string... except for the leading keyword!
3640 * Consider this example: "echo a | if true; then echo a; fi"
3641 * ctx->as_string will contain "true; then echo a; fi",
3642 * with "if " remaining in old->as_string!
3643 */
3644 {
3645 char *str;
3646 int len = old->as_string.length;
3647 /* Concatenate halves */
3648 o_addstr(&old->as_string, ctx->as_string.data);
3649 o_free_unsafe(&ctx->as_string);
3650 /* Find where leading keyword starts in first half */
3651 str = old->as_string.data + len;
3652 if (str > old->as_string.data)
3653 str--; /* skip whitespace after keyword */
3654 while (str > old->as_string.data && isalpha(str[-1]))
3655 str--;
3656 /* Ugh, we're done with this horrid hack */
3657 old->command->group_as_string = xstrdup(str);
3658 debug_printf_parse("pop, remembering as:'%s'\n",
3659 old->command->group_as_string);
3660 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003661# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003662 *ctx = *old; /* physical copy */
3663 free(old);
3664 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003665 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003666}
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003667#endif /* HAS_KEYWORDS */
Eric Andersen25f27032001-04-26 23:22:31 +00003668
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003669/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003670 * Normal return is 0. Syntax errors return 1.
3671 * Note: on return, word is reset, but not o_free'd!
3672 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003673static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003674{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003675 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00003676
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003677 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denys Vlasenko38292b62010-09-05 14:49:40 +02003678 if (word->length == 0 && !word->has_quoted_part) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003679 debug_printf_parse("done_word return 0: true null, ignored\n");
3680 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003681 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003682
Eric Andersen25f27032001-04-26 23:22:31 +00003683 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003684 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
3685 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003686 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3687 * "2.7 Redirection
3688 * ...the word that follows the redirection operator
3689 * shall be subjected to tilde expansion, parameter expansion,
3690 * command substitution, arithmetic expansion, and quote
3691 * removal. Pathname expansion shall not be performed
3692 * on the word by a non-interactive shell; an interactive
3693 * shell may perform it, but shall do so only when
3694 * the expansion would result in one word."
3695 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003696 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003697 /* Cater for >\file case:
3698 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
3699 * Same with heredocs:
3700 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
3701 */
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003702 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC) {
3703 unbackslash(ctx->pending_redirect->rd_filename);
3704 /* Is it <<"HEREDOC"? */
Denys Vlasenko38292b62010-09-05 14:49:40 +02003705 if (word->has_quoted_part) {
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003706 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
3707 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003708 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003709 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003710 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003711 } else {
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003712#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003713# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00003714 if (ctx->ctx_dsemicolon
3715 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
3716 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003717 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003718 /* ctx->ctx_res_w = RES_MATCH; */
3719 ctx->ctx_dsemicolon = 0;
3720 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003721# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003722 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003723# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003724 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
3725 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003726# endif
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003727# if ENABLE_HUSH_CASE
3728 && ctx->ctx_res_w != RES_CASE
3729# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003730 ) {
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003731 int reserved = reserved_word(word, ctx);
3732 debug_printf_parse("checking for reserved-ness: %d\n", reserved);
3733 if (reserved) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003734 o_reset_to_empty_unquoted(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003735 debug_printf_parse("done_word return %d\n",
3736 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003737 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003738 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01003739# if BASH_TEST2
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003740 if (strcmp(word->data, "[[") == 0) {
3741 command->cmd_type = CMD_SINGLEWORD_NOGLOB;
3742 }
3743 /* fall through */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02003744# endif
Eric Andersen25f27032001-04-26 23:22:31 +00003745 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003746#endif
Denis Vlasenkobb929512009-04-16 10:59:40 +00003747 if (command->group) {
3748 /* "{ echo foo; } echo bar" - bad */
3749 syntax_error_at(word->data);
3750 debug_printf_parse("done_word return 1: syntax error, "
3751 "groups and arglists don't mix\n");
3752 return 1;
3753 }
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003754
3755 /* If this word wasn't an assignment, next ones definitely
3756 * can't be assignments. Even if they look like ones. */
3757 if (word->o_assignment != DEFINITELY_ASSIGNMENT
3758 && word->o_assignment != WORD_IS_KEYWORD
3759 ) {
3760 word->o_assignment = NOT_ASSIGNMENT;
3761 } else {
3762 if (word->o_assignment == DEFINITELY_ASSIGNMENT) {
3763 command->assignment_cnt++;
3764 debug_printf_parse("++assignment_cnt=%d\n", command->assignment_cnt);
3765 }
3766 debug_printf_parse("word->o_assignment was:'%s'\n", assignment_flag[word->o_assignment]);
3767 word->o_assignment = MAYBE_ASSIGNMENT;
3768 }
3769 debug_printf_parse("word->o_assignment='%s'\n", assignment_flag[word->o_assignment]);
3770
Denys Vlasenko38292b62010-09-05 14:49:40 +02003771 if (word->has_quoted_part
Denis Vlasenko55789c62008-06-18 16:30:42 +00003772 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
3773 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003774 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003775 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003776 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003777 char *p = word->data;
3778 while (p[0] == SPECIAL_VAR_SYMBOL
3779 && (p[1] & 0x7f) == '@'
3780 && p[2] == SPECIAL_VAR_SYMBOL
3781 ) {
3782 p += 3;
3783 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00003784 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003785 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003786 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003787 }
Eric Andersen25f27032001-04-26 23:22:31 +00003788
Denis Vlasenko06810332007-05-21 23:30:54 +00003789#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003790 if (ctx->ctx_res_w == RES_FOR) {
Denys Vlasenko38292b62010-09-05 14:49:40 +02003791 if (word->has_quoted_part
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003792 || !is_well_formed_var_name(command->argv[0], '\0')
3793 ) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003794 /* bash says just "not a valid identifier" */
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003795 syntax_error("not a valid identifier in for");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003796 return 1;
3797 }
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003798 /* Force FOR to have just one word (variable name) */
3799 /* NB: basically, this makes hush see "for v in ..."
3800 * syntax as if it is "for v; in ...". FOR and IN become
3801 * two pipe structs in parse tree. */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003802 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003803 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003804#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003805#if ENABLE_HUSH_CASE
3806 /* Force CASE to have just one word */
3807 if (ctx->ctx_res_w == RES_CASE) {
3808 done_pipe(ctx, PIPE_SEQ);
3809 }
3810#endif
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003811
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003812 o_reset_to_empty_unquoted(word);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003813
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003814 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003815 return 0;
3816}
3817
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003818
3819/* Peek ahead in the input to find out if we have a "&n" construct,
3820 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003821 * Return:
3822 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
3823 * REDIRFD_SYNTAX_ERR if syntax error,
3824 * REDIRFD_TO_FILE if no & was seen,
3825 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003826 */
3827#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003828#define parse_redir_right_fd(as_string, input) \
3829 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003830#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003831static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003832{
3833 int ch, d, ok;
3834
3835 ch = i_peek(input);
3836 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003837 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003838
3839 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003840 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003841 ch = i_peek(input);
3842 if (ch == '-') {
3843 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003844 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003845 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003846 }
3847 d = 0;
3848 ok = 0;
3849 while (ch != EOF && isdigit(ch)) {
3850 d = d*10 + (ch-'0');
3851 ok = 1;
3852 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003853 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003854 ch = i_peek(input);
3855 }
3856 if (ok) return d;
3857
3858//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
3859
3860 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003861 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003862}
3863
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003864/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003865 */
3866static int parse_redirect(struct parse_context *ctx,
3867 int fd,
3868 redir_type style,
3869 struct in_str *input)
3870{
3871 struct command *command = ctx->command;
3872 struct redir_struct *redir;
3873 struct redir_struct **redirp;
3874 int dup_num;
3875
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003876 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003877 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003878 /* Check for a '>&1' type redirect */
3879 dup_num = parse_redir_right_fd(&ctx->as_string, input);
3880 if (dup_num == REDIRFD_SYNTAX_ERR)
3881 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003882 } else {
3883 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003884 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003885 if (dup_num) { /* <<-... */
3886 ch = i_getch(input);
3887 nommu_addchr(&ctx->as_string, ch);
3888 ch = i_peek(input);
3889 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003890 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003891
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003892 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003893 int ch = i_peek(input);
3894 if (ch == '|') {
3895 /* >|FILE redirect ("clobbering" >).
3896 * Since we do not support "set -o noclobber" yet,
3897 * >| and > are the same for now. Just eat |.
3898 */
3899 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003900 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003901 }
3902 }
3903
3904 /* Create a new redir_struct and append it to the linked list */
3905 redirp = &command->redirects;
3906 while ((redir = *redirp) != NULL) {
3907 redirp = &(redir->next);
3908 }
3909 *redirp = redir = xzalloc(sizeof(*redir));
3910 /* redir->next = NULL; */
3911 /* redir->rd_filename = NULL; */
3912 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003913 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003914
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003915 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
3916 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003917
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003918 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003919 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003920 /* Erik had a check here that the file descriptor in question
3921 * is legit; I postpone that to "run time"
3922 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003923 debug_printf_parse("duplicating redirect '%d>&%d'\n",
3924 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003925 } else {
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02003926#if 0 /* Instead we emit error message at run time */
3927 if (ctx->pending_redirect) {
3928 /* For example, "cmd > <file" */
3929 die_if_script("syntax error: %s", "invalid redirect");
3930 }
3931#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003932 /* Set ctx->pending_redirect, so we know what to do at the
3933 * end of the next parsed word. */
3934 ctx->pending_redirect = redir;
3935 }
3936 return 0;
3937}
3938
Eric Andersen25f27032001-04-26 23:22:31 +00003939/* If a redirect is immediately preceded by a number, that number is
3940 * supposed to tell which file descriptor to redirect. This routine
3941 * looks for such preceding numbers. In an ideal world this routine
3942 * needs to handle all the following classes of redirects...
3943 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
3944 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
3945 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
3946 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003947 *
3948 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3949 * "2.7 Redirection
3950 * ... If n is quoted, the number shall not be recognized as part of
3951 * the redirection expression. For example:
3952 * echo \2>a
3953 * writes the character 2 into file a"
Denys Vlasenko38292b62010-09-05 14:49:40 +02003954 * We are getting it right by setting ->has_quoted_part on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003955 *
3956 * A -1 return means no valid number was found,
3957 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00003958 */
3959static int redirect_opt_num(o_string *o)
3960{
3961 int num;
3962
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003963 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003964 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003965 num = bb_strtou(o->data, NULL, 10);
3966 if (errno || num < 0)
3967 return -1;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003968 o_reset_to_empty_unquoted(o);
Eric Andersen25f27032001-04-26 23:22:31 +00003969 return num;
3970}
3971
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003972#if BB_MMU
3973#define fetch_till_str(as_string, input, word, skip_tabs) \
3974 fetch_till_str(input, word, skip_tabs)
3975#endif
3976static char *fetch_till_str(o_string *as_string,
3977 struct in_str *input,
3978 const char *word,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003979 int heredoc_flags)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003980{
3981 o_string heredoc = NULL_O_STRING;
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003982 unsigned past_EOL;
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003983 int prev = 0; /* not \ */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003984 int ch;
3985
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003986 goto jump_in;
Denys Vlasenkob8709032011-05-08 21:20:01 +02003987
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003988 while (1) {
3989 ch = i_getch(input);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003990 if (ch != EOF)
3991 nommu_addchr(as_string, ch);
3992 if ((ch == '\n' || ch == EOF)
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003993 && ((heredoc_flags & HEREDOC_QUOTED) || prev != '\\')
3994 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003995 if (strcmp(heredoc.data + past_EOL, word) == 0) {
3996 heredoc.data[past_EOL] = '\0';
3997 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
3998 return heredoc.data;
3999 }
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004000 while (ch == '\n') {
4001 o_addchr(&heredoc, ch);
4002 prev = ch;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004003 jump_in:
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004004 past_EOL = heredoc.length;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004005 do {
4006 ch = i_getch(input);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004007 if (ch != EOF)
4008 nommu_addchr(as_string, ch);
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02004009 } while ((heredoc_flags & HEREDOC_SKIPTABS) && ch == '\t');
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004010 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004011 }
4012 if (ch == EOF) {
4013 o_free_unsafe(&heredoc);
4014 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004015 }
4016 o_addchr(&heredoc, ch);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004017 nommu_addchr(as_string, ch);
Denys Vlasenkoc3adfac2010-09-06 11:46:03 +02004018 if (prev == '\\' && ch == '\\')
4019 /* Correctly handle foo\\<eol> (not a line cont.) */
4020 prev = 0; /* not \ */
4021 else
4022 prev = ch;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004023 }
4024}
4025
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004026/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
4027 * and load them all. There should be exactly heredoc_cnt of them.
4028 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004029static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
4030{
4031 struct pipe *pi = ctx->list_head;
4032
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004033 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004034 int i;
4035 struct command *cmd = pi->cmds;
4036
4037 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
4038 pi->num_cmds,
4039 cmd->argv ? cmd->argv[0] : "NONE");
4040 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004041 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004042
4043 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
4044 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004045 while (redir) {
4046 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004047 char *p;
4048
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004049 redir->rd_type = REDIRECT_HEREDOC2;
Denys Vlasenko764b2f02009-06-07 16:05:04 +02004050 /* redir->rd_dup is (ab)used to indicate <<- */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004051 p = fetch_till_str(&ctx->as_string, input,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02004052 redir->rd_filename, redir->rd_dup);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004053 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004054 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004055 return 1;
4056 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004057 free(redir->rd_filename);
4058 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004059 heredoc_cnt--;
4060 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004061 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004062 }
4063 cmd++;
4064 }
4065 pi = pi->next;
4066 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004067#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004068 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004069 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004070 bb_error_msg_and_die("heredoc BUG 2");
4071#endif
4072 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004073}
4074
4075
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004076static int run_list(struct pipe *pi);
4077#if BB_MMU
4078#define parse_stream(pstring, input, end_trigger) \
4079 parse_stream(input, end_trigger)
4080#endif
4081static struct pipe *parse_stream(char **pstring,
4082 struct in_str *input,
4083 int end_trigger);
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004084
Eric Andersen25f27032001-04-26 23:22:31 +00004085
Denys Vlasenkoc2704542009-11-20 19:14:19 +01004086#if !ENABLE_HUSH_FUNCTIONS
4087#define parse_group(dest, ctx, input, ch) \
4088 parse_group(ctx, input, ch)
4089#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004090static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00004091 struct in_str *input, int ch)
4092{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004093 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004094 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004095 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004096 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004097 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004098 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004099
4100 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004101#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko38292b62010-09-05 14:49:40 +02004102 if (ch == '(' && !dest->has_quoted_part) {
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004103 if (dest->length)
Denis Vlasenkobb929512009-04-16 10:59:40 +00004104 if (done_word(dest, ctx))
4105 return 1;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004106 if (!command->argv)
4107 goto skip; /* (... */
4108 if (command->argv[1]) { /* word word ... (... */
4109 syntax_error_unexpected_ch('(');
4110 return 1;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004111 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004112 /* it is "word(..." or "word (..." */
4113 do
4114 ch = i_getch(input);
4115 while (ch == ' ' || ch == '\t');
4116 if (ch != ')') {
4117 syntax_error_unexpected_ch(ch);
4118 return 1;
4119 }
4120 nommu_addchr(&ctx->as_string, ch);
4121 do
4122 ch = i_getch(input);
4123 while (ch == ' ' || ch == '\t' || ch == '\n');
4124 if (ch != '{') {
4125 syntax_error_unexpected_ch(ch);
4126 return 1;
4127 }
4128 nommu_addchr(&ctx->as_string, ch);
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004129 command->cmd_type = CMD_FUNCDEF;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004130 goto skip;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004131 }
4132#endif
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004133
4134#if 0 /* Prevented by caller */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004135 if (command->argv /* word [word]{... */
4136 || dest->length /* word{... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004137 || dest->has_quoted_part /* ""{... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004138 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004139 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004140 debug_printf_parse("parse_group return 1: "
4141 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004142 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004143 }
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004144#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004145
4146#if ENABLE_HUSH_FUNCTIONS
4147 skip:
4148#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00004149 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004150 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00004151 endch = ')';
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004152 command->cmd_type = CMD_SUBSHELL;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004153 } else {
4154 /* bash does not allow "{echo...", requires whitespace */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004155 ch = i_peek(input);
4156 if (ch != ' ' && ch != '\t' && ch != '\n'
4157 && ch != '(' /* but "{(..." is allowed (without whitespace) */
4158 ) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004159 syntax_error_unexpected_ch(ch);
4160 return 1;
4161 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004162 if (ch != '(') {
4163 ch = i_getch(input);
4164 nommu_addchr(&ctx->as_string, ch);
4165 }
Eric Andersen25f27032001-04-26 23:22:31 +00004166 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004167
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004168 {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004169#if BB_MMU
4170# define as_string NULL
4171#else
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004172 char *as_string = NULL;
4173#endif
4174 pipe_list = parse_stream(&as_string, input, endch);
4175#if !BB_MMU
4176 if (as_string)
4177 o_addstr(&ctx->as_string, as_string);
4178#endif
4179 /* empty ()/{} or parse error? */
4180 if (!pipe_list || pipe_list == ERR_PTR) {
Denis Vlasenkobb929512009-04-16 10:59:40 +00004181 /* parse_stream already emitted error msg */
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004182 if (!BB_MMU)
4183 free(as_string);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004184 debug_printf_parse("parse_group return 1: "
4185 "parse_stream returned %p\n", pipe_list);
4186 return 1;
4187 }
4188 command->group = pipe_list;
4189#if !BB_MMU
4190 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
4191 command->group_as_string = as_string;
4192 debug_printf_parse("end of group, remembering as:'%s'\n",
4193 command->group_as_string);
4194#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004195#undef as_string
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004196 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004197 debug_printf_parse("parse_group return 0\n");
4198 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004199 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00004200}
4201
Denys Vlasenko46e64982016-09-29 19:50:55 +02004202static int i_getch_and_eat_bkslash_nl(struct in_str *input)
4203{
4204 for (;;) {
4205 int ch, ch2;
4206
4207 ch = i_getch(input);
4208 if (ch != '\\')
4209 return ch;
4210 ch2 = i_peek(input);
4211 if (ch2 != '\n')
4212 return ch;
4213 /* backslash+newline, skip it */
4214 i_getch(input);
4215 }
4216}
4217
Denys Vlasenko657086a2016-09-29 18:07:42 +02004218static int i_peek_and_eat_bkslash_nl(struct in_str *input)
4219{
4220 for (;;) {
4221 int ch, ch2;
4222
4223 ch = i_peek(input);
4224 if (ch != '\\')
4225 return ch;
4226 ch2 = i_peek2(input);
4227 if (ch2 != '\n')
4228 return ch;
4229 /* backslash+newline, skip it */
4230 i_getch(input);
4231 i_getch(input);
4232 }
4233}
4234
Denys Vlasenko0b883582016-12-23 16:49:07 +01004235#if ENABLE_HUSH_TICK || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_DOLLAR_OPS
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004236/* Subroutines for copying $(...) and `...` things */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004237static int add_till_backquote(o_string *dest, struct in_str *input, int in_dquote);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004238/* '...' */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004239static int add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004240{
4241 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004242 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004243 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004244 syntax_error_unterm_ch('\'');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004245 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004246 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004247 if (ch == '\'')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004248 return 1;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004249 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004250 }
4251}
4252/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004253static int add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004254{
4255 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004256 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004257 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004258 syntax_error_unterm_ch('"');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004259 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004260 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004261 if (ch == '"')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004262 return 1;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004263 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004264 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004265 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004266 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004267 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004268 if (ch == '`') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004269 if (!add_till_backquote(dest, input, /*in_dquote:*/ 1))
4270 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004271 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004272 continue;
4273 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00004274 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004275 }
4276}
4277/* Process `cmd` - copy contents until "`" is seen. Complicated by
4278 * \` quoting.
4279 * "Within the backquoted style of command substitution, backslash
4280 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
4281 * The search for the matching backquote shall be satisfied by the first
4282 * backquote found without a preceding backslash; during this search,
4283 * if a non-escaped backquote is encountered within a shell comment,
4284 * a here-document, an embedded command substitution of the $(command)
4285 * form, or a quoted string, undefined results occur. A single-quoted
4286 * or double-quoted string that begins, but does not end, within the
4287 * "`...`" sequence produces undefined results."
4288 * Example Output
4289 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
4290 */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004291static int add_till_backquote(o_string *dest, struct in_str *input, int in_dquote)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004292{
4293 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004294 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004295 if (ch == '`')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004296 return 1;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004297 if (ch == '\\') {
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02004298 /* \x. Copy both unless it is \`, \$, \\ and maybe \" */
4299 ch = i_getch(input);
4300 if (ch != '`'
4301 && ch != '$'
4302 && ch != '\\'
4303 && (!in_dquote || ch != '"')
4304 ) {
4305 o_addchr(dest, '\\');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004306 }
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02004307 }
4308 if (ch == EOF) {
4309 syntax_error_unterm_ch('`');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004310 return 0;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004311 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004312 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004313 }
4314}
4315/* Process $(cmd) - copy contents until ")" is seen. Complicated by
4316 * quoting and nested ()s.
4317 * "With the $(command) style of command substitution, all characters
4318 * following the open parenthesis to the matching closing parenthesis
4319 * constitute the command. Any valid shell script can be used for command,
4320 * except a script consisting solely of redirections which produces
4321 * unspecified results."
4322 * Example Output
4323 * echo $(echo '(TEST)' BEST) (TEST) BEST
4324 * echo $(echo 'TEST)' BEST) TEST) BEST
4325 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
Denys Vlasenko74369502010-05-21 19:52:01 +02004326 *
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004327 * Also adapted to eat ${var%...} and $((...)) constructs, since ... part
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004328 * can contain arbitrary constructs, just like $(cmd).
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004329 * In bash compat mode, it needs to also be able to stop on ':' or '/'
4330 * for ${var:N[:M]} and ${var/P[/R]} parsing.
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004331 */
Denys Vlasenko74369502010-05-21 19:52:01 +02004332#define DOUBLE_CLOSE_CHAR_FLAG 0x80
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004333static int add_till_closing_bracket(o_string *dest, struct in_str *input, unsigned end_ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004334{
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004335 int ch;
Denys Vlasenko74369502010-05-21 19:52:01 +02004336 char dbl = end_ch & DOUBLE_CLOSE_CHAR_FLAG;
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004337# if BASH_SUBSTR || BASH_PATTERN_SUBST
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004338 char end_char2 = end_ch >> 8;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004339# endif
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004340 end_ch &= (DOUBLE_CLOSE_CHAR_FLAG - 1);
4341
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004342 while (1) {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004343 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004344 if (ch == EOF) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004345 syntax_error_unterm_ch(end_ch);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004346 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004347 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004348 if (ch == end_ch
4349# if BASH_SUBSTR || BASH_PATTERN_SUBST
4350 || ch == end_char2
4351# endif
4352 ) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004353 if (!dbl)
4354 break;
4355 /* we look for closing )) of $((EXPR)) */
Denys Vlasenko657086a2016-09-29 18:07:42 +02004356 if (i_peek_and_eat_bkslash_nl(input) == end_ch) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004357 i_getch(input); /* eat second ')' */
4358 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004359 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004360 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004361 o_addchr(dest, ch);
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004362 if (ch == '(' || ch == '{') {
4363 ch = (ch == '(' ? ')' : '}');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004364 if (!add_till_closing_bracket(dest, input, ch))
4365 return 0;
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004366 o_addchr(dest, ch);
4367 continue;
4368 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004369 if (ch == '\'') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004370 if (!add_till_single_quote(dest, input))
4371 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004372 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004373 continue;
4374 }
4375 if (ch == '"') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004376 if (!add_till_double_quote(dest, input))
4377 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004378 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004379 continue;
4380 }
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004381 if (ch == '`') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004382 if (!add_till_backquote(dest, input, /*in_dquote:*/ 0))
4383 return 0;
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004384 o_addchr(dest, ch);
4385 continue;
4386 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004387 if (ch == '\\') {
4388 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004389 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004390 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004391 syntax_error_unterm_ch(')');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004392 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004393 }
Denys Vlasenko657086a2016-09-29 18:07:42 +02004394#if 0
4395 if (ch == '\n') {
4396 /* "backslash+newline", ignore both */
4397 o_delchr(dest); /* undo insertion of '\' */
4398 continue;
4399 }
4400#endif
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004401 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004402 continue;
4403 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004404 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004405 return ch;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004406}
Denys Vlasenko0b883582016-12-23 16:49:07 +01004407#endif /* ENABLE_HUSH_TICK || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_DOLLAR_OPS */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004408
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004409/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004410#if BB_MMU
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004411#define parse_dollar(as_string, dest, input, quote_mask) \
4412 parse_dollar(dest, input, quote_mask)
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004413#define as_string NULL
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004414#endif
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004415static int parse_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004416 o_string *dest,
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004417 struct in_str *input, unsigned char quote_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00004418{
Denys Vlasenko657086a2016-09-29 18:07:42 +02004419 int ch = i_peek_and_eat_bkslash_nl(input); /* first character after the $ */
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004420
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004421 debug_printf_parse("parse_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004422 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004423 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004424 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00004425 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004426 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004427 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004428 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004429 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004430 quote_mask = 0;
Denys Vlasenko657086a2016-09-29 18:07:42 +02004431 ch = i_peek_and_eat_bkslash_nl(input);
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004432 if (!isalnum(ch) && ch != '_') {
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004433 /* End of variable name reached */
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004434 break;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004435 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004436 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004437 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004438 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004439 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004440 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004441 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004442 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004443 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004444 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004445 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004446 o_addchr(dest, ch | quote_mask);
4447 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004448 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004449 case '$': /* pid */
4450 case '!': /* last bg pid */
4451 case '?': /* last exit code */
4452 case '#': /* number of args */
4453 case '*': /* args */
4454 case '@': /* args */
4455 goto make_one_char_var;
4456 case '{': {
Mike Frysingeref3e7fd2009-06-01 14:13:39 -04004457 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4458
Denys Vlasenko74369502010-05-21 19:52:01 +02004459 ch = i_getch(input); /* eat '{' */
4460 nommu_addchr(as_string, ch);
4461
Denys Vlasenko46e64982016-09-29 19:50:55 +02004462 ch = i_getch_and_eat_bkslash_nl(input); /* first char after '{' */
Denys Vlasenko74369502010-05-21 19:52:01 +02004463 /* It should be ${?}, or ${#var},
4464 * or even ${?+subst} - operator acting on a special variable,
4465 * or the beginning of variable name.
4466 */
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004467 if (ch == EOF
4468 || (!strchr(_SPECIAL_VARS_STR, ch) && !isalnum(ch)) /* not one of those */
4469 ) {
Denys Vlasenko74369502010-05-21 19:52:01 +02004470 bad_dollar_syntax:
4471 syntax_error_unterm_str("${name}");
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004472 debug_printf_parse("parse_dollar return 0: unterminated ${name}\n");
4473 return 0;
Denys Vlasenko74369502010-05-21 19:52:01 +02004474 }
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004475 nommu_addchr(as_string, ch);
Denys Vlasenko74369502010-05-21 19:52:01 +02004476 ch |= quote_mask;
4477
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004478 /* It's possible to just call add_till_closing_bracket() at this point.
Denys Vlasenko74369502010-05-21 19:52:01 +02004479 * However, this regresses some of our testsuite cases
4480 * which check invalid constructs like ${%}.
4481 * Oh well... let's check that the var name part is fine... */
4482
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004483 while (1) {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004484 unsigned pos;
4485
Denys Vlasenko74369502010-05-21 19:52:01 +02004486 o_addchr(dest, ch);
4487 debug_printf_parse(": '%c'\n", ch);
4488
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004489 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004490 nommu_addchr(as_string, ch);
Denys Vlasenko74369502010-05-21 19:52:01 +02004491 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00004492 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004493
Denys Vlasenko74369502010-05-21 19:52:01 +02004494 if (!isalnum(ch) && ch != '_') {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004495 unsigned end_ch;
4496 unsigned char last_ch;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004497 /* handle parameter expansions
4498 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
4499 */
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004500 if (!strchr(VAR_SUBST_OPS, ch)) /* ${var<bad_char>... */
Denys Vlasenko74369502010-05-21 19:52:01 +02004501 goto bad_dollar_syntax;
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004502
4503 /* Eat everything until closing '}' (or ':') */
4504 end_ch = '}';
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004505 if (BASH_SUBSTR
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004506 && ch == ':'
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004507 && !strchr(MINUS_PLUS_EQUAL_QUESTION, i_peek(input))
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004508 ) {
4509 /* It's ${var:N[:M]} thing */
4510 end_ch = '}' * 0x100 + ':';
4511 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004512 if (BASH_PATTERN_SUBST
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004513 && ch == '/'
4514 ) {
4515 /* It's ${var/[/]pattern[/repl]} thing */
4516 if (i_peek(input) == '/') { /* ${var//pattern[/repl]}? */
4517 i_getch(input);
4518 nommu_addchr(as_string, '/');
4519 ch = '\\';
4520 }
4521 end_ch = '}' * 0x100 + '/';
4522 }
4523 o_addchr(dest, ch);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004524 again:
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004525 if (!BB_MMU)
4526 pos = dest->length;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004527#if ENABLE_HUSH_DOLLAR_OPS
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004528 last_ch = add_till_closing_bracket(dest, input, end_ch);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004529 if (last_ch == 0) /* error? */
4530 return 0;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004531#else
4532#error Simple code to only allow ${var} is not implemented
4533#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004534 if (as_string) {
4535 o_addstr(as_string, dest->data + pos);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004536 o_addchr(as_string, last_ch);
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004537 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004538
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004539 if ((BASH_SUBSTR || BASH_PATTERN_SUBST)
4540 && (end_ch & 0xff00)
4541 ) {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004542 /* close the first block: */
4543 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004544 /* while parsing N from ${var:N[:M]}
4545 * or pattern from ${var/[/]pattern[/repl]} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004546 if ((end_ch & 0xff) == last_ch) {
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004547 /* got ':' or '/'- parse the rest */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004548 end_ch = '}';
4549 goto again;
4550 }
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004551 /* got '}' */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004552 if (BASH_SUBSTR && end_ch == '}' * 0x100 + ':') {
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004553 /* it's ${var:N} - emulate :999999999 */
4554 o_addstr(dest, "999999999");
4555 } /* else: it's ${var/[/]pattern} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004556 }
Denys Vlasenko74369502010-05-21 19:52:01 +02004557 break;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004558 }
Denys Vlasenko74369502010-05-21 19:52:01 +02004559 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004560 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4561 break;
4562 }
Denys Vlasenko0b883582016-12-23 16:49:07 +01004563#if ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004564 case '(': {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004565 unsigned pos;
4566
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004567 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004568 nommu_addchr(as_string, ch);
Denys Vlasenko0b883582016-12-23 16:49:07 +01004569# if ENABLE_FEATURE_SH_MATH
Denys Vlasenko657086a2016-09-29 18:07:42 +02004570 if (i_peek_and_eat_bkslash_nl(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004571 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004572 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004573 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4574 o_addchr(dest, /*quote_mask |*/ '+');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004575 if (!BB_MMU)
4576 pos = dest->length;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004577 if (!add_till_closing_bracket(dest, input, ')' | DOUBLE_CLOSE_CHAR_FLAG))
4578 return 0; /* error */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004579 if (as_string) {
4580 o_addstr(as_string, dest->data + pos);
4581 o_addchr(as_string, ')');
4582 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004583 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004584 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004585 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004586 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004587# endif
4588# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004589 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4590 o_addchr(dest, quote_mask | '`');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004591 if (!BB_MMU)
4592 pos = dest->length;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004593 if (!add_till_closing_bracket(dest, input, ')'))
4594 return 0; /* error */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004595 if (as_string) {
4596 o_addstr(as_string, dest->data + pos);
Denys Vlasenkob70cef72010-01-12 13:45:45 +01004597 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004598 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004599 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004600# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004601 break;
4602 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004603#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004604 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004605 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004606 nommu_addchr(as_string, ch);
Denys Vlasenko657086a2016-09-29 18:07:42 +02004607 ch = i_peek_and_eat_bkslash_nl(input);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004608 if (isalnum(ch)) { /* it's $_name or $_123 */
4609 ch = '_';
4610 goto make_var;
4611 }
4612 /* else: it's $_ */
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02004613 /* TODO: $_ and $-: */
4614 /* $_ Shell or shell script name; or last argument of last command
4615 * (if last command wasn't a pipe; if it was, bash sets $_ to "");
4616 * but in command's env, set to full pathname used to invoke it */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004617 /* $- Option flags set by set builtin or shell options (-i etc) */
4618 default:
4619 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00004620 }
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004621 debug_printf_parse("parse_dollar return 1 (ok)\n");
4622 return 1;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004623#undef as_string
Eric Andersen25f27032001-04-26 23:22:31 +00004624}
4625
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004626#if BB_MMU
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004627# if BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004628#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4629 encode_string(dest, input, dquote_end, process_bkslash)
4630# else
4631/* only ${var/pattern/repl} (its pattern part) needs additional mode */
4632#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4633 encode_string(dest, input, dquote_end)
4634# endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004635#define as_string NULL
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004636
4637#else /* !MMU */
4638
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004639# if BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004640/* all parameters are needed, no macro tricks */
4641# else
4642#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4643 encode_string(as_string, dest, input, dquote_end)
4644# endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004645#endif
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004646static int encode_string(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004647 o_string *dest,
4648 struct in_str *input,
Denys Vlasenko14e289b2010-09-10 10:15:18 +02004649 int dquote_end,
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004650 int process_bkslash)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004651{
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004652#if !BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004653 const int process_bkslash = 1;
4654#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004655 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004656 int next;
4657
4658 again:
4659 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004660 if (ch != EOF)
4661 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004662 if (ch == dquote_end) { /* may be only '"' or EOF */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004663 debug_printf_parse("encode_string return 1 (ok)\n");
4664 return 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004665 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004666 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004667 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004668 syntax_error_unterm_ch('"');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004669 return 0; /* error */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004670 }
4671 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004672 if (ch != '\n') {
4673 next = i_peek(input);
4674 }
Denys Vlasenkof37eb392009-10-18 11:46:35 +02004675 debug_printf_parse("\" ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004676 ch, ch, !!(dest->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004677 if (process_bkslash && ch == '\\') {
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004678 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004679 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004680 xfunc_die();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004681 }
4682 /* bash:
4683 * "The backslash retains its special meaning [in "..."]
4684 * only when followed by one of the following characters:
4685 * $, `, ", \, or <newline>. A double quote may be quoted
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02004686 * within double quotes by preceding it with a backslash."
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004687 * NB: in (unquoted) heredoc, above does not apply to ",
4688 * therefore we check for it by "next == dquote_end" cond.
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004689 */
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004690 if (next == dquote_end || strchr("$`\\\n", next)) {
Denys Vlasenko850b15b2010-09-09 12:58:19 +02004691 ch = i_getch(input); /* eat next */
4692 if (ch == '\n')
4693 goto again; /* skip \<newline> */
Denys Vlasenko4f870492010-09-10 11:06:01 +02004694 } /* else: ch remains == '\\', and we double it below: */
4695 o_addqchr(dest, ch); /* \c if c is a glob char, else just c */
Denys Vlasenko850b15b2010-09-09 12:58:19 +02004696 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004697 goto again;
4698 }
4699 if (ch == '$') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004700 if (!parse_dollar(as_string, dest, input, /*quote_mask:*/ 0x80)) {
4701 debug_printf_parse("encode_string return 0: "
4702 "parse_dollar returned 0 (error)\n");
4703 return 0;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004704 }
4705 goto again;
4706 }
4707#if ENABLE_HUSH_TICK
4708 if (ch == '`') {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004709 //unsigned pos = dest->length;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004710 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4711 o_addchr(dest, 0x80 | '`');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004712 if (!add_till_backquote(dest, input, /*in_dquote:*/ dquote_end == '"'))
4713 return 0; /* error */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004714 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4715 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00004716 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004717 }
4718#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00004719 o_addQchr(dest, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004720 goto again;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004721#undef as_string
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004722}
4723
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004724/*
4725 * Scan input until EOF or end_trigger char.
4726 * Return a list of pipes to execute, or NULL on EOF
4727 * or if end_trigger character is met.
Denys Vlasenkocecbc982011-03-30 18:54:52 +02004728 * On syntax error, exit if shell is not interactive,
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004729 * reset parsing machinery and start parsing anew,
4730 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004731 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004732static struct pipe *parse_stream(char **pstring,
4733 struct in_str *input,
4734 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00004735{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004736 struct parse_context ctx;
4737 o_string dest = NULL_O_STRING;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004738 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00004739
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004740 /* Single-quote triggers a bypass of the main loop until its mate is
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004741 * found. When recursing, quote state is passed in via dest->o_expflags.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004742 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004743 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
Denys Vlasenko90a99042009-09-06 02:36:23 +02004744 end_trigger ? end_trigger : 'X');
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004745 debug_enter();
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004746
Denys Vlasenkof37eb392009-10-18 11:46:35 +02004747 /* If very first arg is "" or '', dest.data may end up NULL.
4748 * Preventing this: */
4749 o_addchr(&dest, '\0');
4750 dest.length = 0;
4751
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004752 /* We used to separate words on $IFS here. This was wrong.
4753 * $IFS is used only for word splitting when $var is expanded,
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004754 * here we should use blank chars as separators, not $IFS
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004755 */
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004756
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004757 if (MAYBE_ASSIGNMENT != 0)
4758 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004759 initialize_context(&ctx);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004760 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004761 while (1) {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004762 const char *is_blank;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004763 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004764 int ch;
4765 int next;
4766 int redir_fd;
4767 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004768
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004769 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004770 debug_printf_parse(": ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004771 ch, ch, !!(dest.o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004772 if (ch == EOF) {
4773 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004774
4775 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004776 syntax_error_unterm_str("here document");
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004777 goto parse_error;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004778 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004779 if (end_trigger == ')') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004780 syntax_error_unterm_ch('(');
4781 goto parse_error;
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004782 }
Denys Vlasenko42246472016-11-07 16:22:35 +01004783 if (end_trigger == '}') {
4784 syntax_error_unterm_ch('{');
4785 goto parse_error;
4786 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004787
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004788 if (done_word(&dest, &ctx)) {
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004789 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004790 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004791 o_free(&dest);
4792 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004793 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004794 /* If we got nothing... */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004795 /* (this makes bare "&" cmd a no-op.
4796 * bash says: "syntax error near unexpected token '&'") */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004797 if (pi->num_cmds == 0
Denys Vlasenko60cb48c2013-01-14 15:57:44 +01004798 IF_HAS_KEYWORDS(&& pi->res_word == RES_NONE)
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004799 ) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004800 free_pipe_list(pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004801 pi = NULL;
4802 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004803#if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02004804 debug_printf_parse("as_string1 '%s'\n", ctx.as_string.data);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004805 if (pstring)
4806 *pstring = ctx.as_string.data;
4807 else
4808 o_free_unsafe(&ctx.as_string);
4809#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004810 debug_leave();
4811 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004812 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004813 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004814 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004815
4816 next = '\0';
4817 if (ch != '\n')
4818 next = i_peek(input);
4819
4820 is_special = "{}<>;&|()#'" /* special outside of "str" */
4821 "\\$\"" IF_HUSH_TICK("`"); /* always special */
4822 /* Are { and } special here? */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02004823 if (ctx.command->argv /* word [word]{... - non-special */
4824 || dest.length /* word{... - non-special */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004825 || dest.has_quoted_part /* ""{... - non-special */
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004826 || (next != ';' /* }; - special */
4827 && next != ')' /* }) - special */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004828 && next != '(' /* {( - special */
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004829 && next != '&' /* }& and }&& ... - special */
4830 && next != '|' /* }|| ... - special */
4831 && !strchr(defifs, next) /* {word - non-special */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02004832 )
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004833 ) {
4834 /* They are not special, skip "{}" */
4835 is_special += 2;
4836 }
4837 is_special = strchr(is_special, ch);
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004838 is_blank = strchr(defifs, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004839
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004840 if (!is_special && !is_blank) { /* ordinary char */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00004841 ordinary_char:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004842 o_addQchr(&dest, ch);
4843 if ((dest.o_assignment == MAYBE_ASSIGNMENT
4844 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00004845 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004846 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00004847 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004848 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004849 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko55789c62008-06-18 16:30:42 +00004850 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004851 continue;
4852 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004853
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004854 if (is_blank) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004855 if (done_word(&dest, &ctx)) {
4856 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00004857 }
Denis Vlasenko37181682009-04-03 03:19:15 +00004858 if (ch == '\n') {
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004859 /* Is this a case when newline is simply ignored?
4860 * Some examples:
4861 * "cmd | <newline> cmd ..."
4862 * "case ... in <newline> word) ..."
4863 */
4864 if (IS_NULL_CMD(ctx.command)
4865 && dest.length == 0 && !dest.has_quoted_part
Denis Vlasenkof1736072008-07-31 10:09:26 +00004866 ) {
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004867 /* This newline can be ignored. But...
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004868 * Without check #1, interactive shell
4869 * ignores even bare <newline>,
4870 * and shows the continuation prompt:
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004871 * ps1_prompt$ <enter>
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004872 * ps2> _ <=== wrong, should be ps1
4873 * Without check #2, "cmd & <newline>"
4874 * is similarly mistreated.
4875 * (BTW, this makes "cmd & cmd"
4876 * and "cmd && cmd" non-orthogonal.
4877 * Really, ask yourself, why
4878 * "cmd && <newline>" doesn't start
4879 * cmd but waits for more input?
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02004880 * The only reason is that it might be
4881 * a "cmd1 && <nl> cmd2 &" construct,
4882 * cmd1 may need to run in BG).
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004883 */
4884 struct pipe *pi = ctx.list_head;
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004885 if (pi->num_cmds != 0 /* check #1 */
4886 && pi->followup != PIPE_BG /* check #2 */
4887 ) {
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004888 continue;
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004889 }
Denis Vlasenkof1736072008-07-31 10:09:26 +00004890 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004891 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004892 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004893 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
4894 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004895 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004896 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004897 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004898 heredoc_cnt = 0;
4899 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004900 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004901 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko240c2552009-04-03 03:45:05 +00004902 ch = ';';
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004903 /* note: if (is_blank) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004904 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004905 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004906 }
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00004907
4908 /* "cmd}" or "cmd }..." without semicolon or &:
4909 * } is an ordinary char in this case, even inside { cmd; }
4910 * Pathological example: { ""}; } should exec "}" cmd
4911 */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004912 if (ch == '}') {
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004913 if (dest.length != 0 /* word} */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004914 || dest.has_quoted_part /* ""} */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004915 ) {
4916 goto ordinary_char;
4917 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004918 if (!IS_NULL_CMD(ctx.command)) { /* cmd } */
4919 /* Generally, there should be semicolon: "cmd; }"
4920 * However, bash allows to omit it if "cmd" is
4921 * a group. Examples:
4922 * { { echo 1; } }
4923 * {(echo 1)}
4924 * { echo 0 >&2 | { echo 1; } }
4925 * { while false; do :; done }
4926 * { case a in b) ;; esac }
4927 */
4928 if (ctx.command->group)
4929 goto term_group;
4930 goto ordinary_char;
4931 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004932 if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004933 /* Can't be an end of {cmd}, skip the check */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004934 goto skip_end_trigger;
4935 /* else: } does terminate a group */
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00004936 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004937 term_group:
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004938 if (end_trigger && end_trigger == ch
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004939 && (ch != ';' || heredoc_cnt == 0)
4940#if ENABLE_HUSH_CASE
4941 && (ch != ')'
4942 || ctx.ctx_res_w != RES_MATCH
Denys Vlasenko38292b62010-09-05 14:49:40 +02004943 || (!dest.has_quoted_part && strcmp(dest.data, "esac") == 0)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004944 )
4945#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004946 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004947 if (heredoc_cnt) {
4948 /* This is technically valid:
4949 * { cat <<HERE; }; echo Ok
4950 * heredoc
4951 * heredoc
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004952 * HERE
4953 * but we don't support this.
4954 * We require heredoc to be in enclosing {}/(),
4955 * if any.
4956 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004957 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004958 goto parse_error;
4959 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004960 if (done_word(&dest, &ctx)) {
4961 goto parse_error;
4962 }
4963 done_pipe(&ctx, PIPE_SEQ);
4964 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004965 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko240c2552009-04-03 03:45:05 +00004966 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00004967 if (!HAS_KEYWORDS
Denys Vlasenko60cb48c2013-01-14 15:57:44 +01004968 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00004969 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004970 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004971#if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02004972 debug_printf_parse("as_string2 '%s'\n", ctx.as_string.data);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004973 if (pstring)
4974 *pstring = ctx.as_string.data;
4975 else
4976 o_free_unsafe(&ctx.as_string);
4977#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004978 debug_leave();
4979 debug_printf_parse("parse_stream return %p: "
4980 "end_trigger char found\n",
4981 ctx.list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004982 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004983 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004984 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004985 skip_end_trigger:
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004986 if (is_blank)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004987 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004988
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004989 /* Catch <, > before deciding whether this word is
4990 * an assignment. a=1 2>z b=2: b=2 is still assignment */
4991 switch (ch) {
4992 case '>':
4993 redir_fd = redirect_opt_num(&dest);
4994 if (done_word(&dest, &ctx)) {
4995 goto parse_error;
4996 }
4997 redir_style = REDIRECT_OVERWRITE;
4998 if (next == '>') {
4999 redir_style = REDIRECT_APPEND;
5000 ch = i_getch(input);
5001 nommu_addchr(&ctx.as_string, ch);
5002 }
5003#if 0
5004 else if (next == '(') {
5005 syntax_error(">(process) not supported");
5006 goto parse_error;
5007 }
5008#endif
5009 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5010 goto parse_error;
5011 continue; /* back to top of while (1) */
5012 case '<':
5013 redir_fd = redirect_opt_num(&dest);
5014 if (done_word(&dest, &ctx)) {
5015 goto parse_error;
5016 }
5017 redir_style = REDIRECT_INPUT;
5018 if (next == '<') {
5019 redir_style = REDIRECT_HEREDOC;
5020 heredoc_cnt++;
5021 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
5022 ch = i_getch(input);
5023 nommu_addchr(&ctx.as_string, ch);
5024 } else if (next == '>') {
5025 redir_style = REDIRECT_IO;
5026 ch = i_getch(input);
5027 nommu_addchr(&ctx.as_string, ch);
5028 }
5029#if 0
5030 else if (next == '(') {
5031 syntax_error("<(process) not supported");
5032 goto parse_error;
5033 }
5034#endif
5035 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5036 goto parse_error;
5037 continue; /* back to top of while (1) */
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01005038 case '#':
5039 if (dest.length == 0 && !dest.has_quoted_part) {
5040 /* skip "#comment" */
5041 while (1) {
5042 ch = i_peek(input);
5043 if (ch == EOF || ch == '\n')
5044 break;
5045 i_getch(input);
5046 /* note: we do not add it to &ctx.as_string */
5047 }
5048 nommu_addchr(&ctx.as_string, '\n');
5049 continue; /* back to top of while (1) */
5050 }
5051 break;
5052 case '\\':
5053 if (next == '\n') {
5054 /* It's "\<newline>" */
5055#if !BB_MMU
5056 /* Remove trailing '\' from ctx.as_string */
5057 ctx.as_string.data[--ctx.as_string.length] = '\0';
5058#endif
5059 ch = i_getch(input); /* eat it */
5060 continue; /* back to top of while (1) */
5061 }
5062 break;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005063 }
5064
5065 if (dest.o_assignment == MAYBE_ASSIGNMENT
5066 /* check that we are not in word in "a=1 2>word b=1": */
5067 && !ctx.pending_redirect
5068 ) {
5069 /* ch is a special char and thus this word
5070 * cannot be an assignment */
5071 dest.o_assignment = NOT_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02005072 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005073 }
5074
Denys Vlasenkocbfe6ad2009-08-12 19:47:44 +02005075 /* Note: nommu_addchr(&ctx.as_string, ch) is already done */
5076
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005077 switch (ch) {
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01005078 case '#': /* non-comment #: "echo a#b" etc */
5079 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005080 break;
5081 case '\\':
5082 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005083 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005084 xfunc_die();
Eric Andersen25f27032001-04-26 23:22:31 +00005085 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005086 ch = i_getch(input);
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01005087 /* note: ch != '\n' (that case does not reach this place) */
5088 o_addchr(&dest, '\\');
5089 /*nommu_addchr(&ctx.as_string, '\\'); - already done */
5090 o_addchr(&dest, ch);
5091 nommu_addchr(&ctx.as_string, ch);
5092 /* Example: echo Hello \2>file
5093 * we need to know that word 2 is quoted */
5094 dest.has_quoted_part = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005095 break;
5096 case '$':
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005097 if (!parse_dollar(&ctx.as_string, &dest, input, /*quote_mask:*/ 0)) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005098 debug_printf_parse("parse_stream parse error: "
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005099 "parse_dollar returned 0 (error)\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005100 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005101 }
Eric Andersen25f27032001-04-26 23:22:31 +00005102 break;
5103 case '\'':
Denys Vlasenko38292b62010-09-05 14:49:40 +02005104 dest.has_quoted_part = 1;
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005105 if (next == '\'' && !ctx.pending_redirect) {
5106 insert_empty_quoted_str_marker:
5107 nommu_addchr(&ctx.as_string, next);
5108 i_getch(input); /* eat second ' */
5109 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5110 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5111 } else {
5112 while (1) {
5113 ch = i_getch(input);
5114 if (ch == EOF) {
5115 syntax_error_unterm_ch('\'');
5116 goto parse_error;
5117 }
5118 nommu_addchr(&ctx.as_string, ch);
5119 if (ch == '\'')
5120 break;
5121 o_addqchr(&dest, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005122 }
Eric Andersen25f27032001-04-26 23:22:31 +00005123 }
Eric Andersen25f27032001-04-26 23:22:31 +00005124 break;
5125 case '"':
Denys Vlasenko38292b62010-09-05 14:49:40 +02005126 dest.has_quoted_part = 1;
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005127 if (next == '"' && !ctx.pending_redirect)
5128 goto insert_empty_quoted_str_marker;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005129 if (dest.o_assignment == NOT_ASSIGNMENT)
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02005130 dest.o_expflags |= EXP_FLAG_ESC_GLOB_CHARS;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005131 if (!encode_string(&ctx.as_string, &dest, input, '"', /*process_bkslash:*/ 1))
Denys Vlasenko77a7b552010-09-09 12:40:03 +02005132 goto parse_error;
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02005133 dest.o_expflags &= ~EXP_FLAG_ESC_GLOB_CHARS;
Eric Andersen25f27032001-04-26 23:22:31 +00005134 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005135#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005136 case '`': {
Denys Vlasenko60a94142011-05-13 20:57:01 +02005137 USE_FOR_NOMMU(unsigned pos;)
Denys Vlasenko2e48d532010-05-22 17:30:39 +02005138
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005139 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5140 o_addchr(&dest, '`');
Denys Vlasenko60a94142011-05-13 20:57:01 +02005141 USE_FOR_NOMMU(pos = dest.length;)
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005142 if (!add_till_backquote(&dest, input, /*in_dquote:*/ 0))
5143 goto parse_error;
Denys Vlasenko2e48d532010-05-22 17:30:39 +02005144# if !BB_MMU
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005145 o_addstr(&ctx.as_string, dest.data + pos);
5146 o_addchr(&ctx.as_string, '`');
Denys Vlasenko2e48d532010-05-22 17:30:39 +02005147# endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005148 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5149 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00005150 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005151 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005152#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005153 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005154#if ENABLE_HUSH_CASE
5155 case_semi:
5156#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005157 if (done_word(&dest, &ctx)) {
5158 goto parse_error;
5159 }
5160 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005161#if ENABLE_HUSH_CASE
5162 /* Eat multiple semicolons, detect
5163 * whether it means something special */
5164 while (1) {
5165 ch = i_peek(input);
5166 if (ch != ';')
5167 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005168 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005169 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02005170 if (ctx.ctx_res_w == RES_CASE_BODY) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005171 ctx.ctx_dsemicolon = 1;
5172 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005173 break;
5174 }
5175 }
5176#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005177 new_cmd:
5178 /* We just finished a cmd. New one may start
5179 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005180 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02005181 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Eric Andersen25f27032001-04-26 23:22:31 +00005182 break;
5183 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005184 if (done_word(&dest, &ctx)) {
5185 goto parse_error;
5186 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005187 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005188 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005189 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005190 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00005191 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005192 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00005193 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005194 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005195 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005196 if (done_word(&dest, &ctx)) {
5197 goto parse_error;
5198 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005199#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005200 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00005201 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005202#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005203 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005204 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005205 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005206 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00005207 } else {
5208 /* we could pick up a file descriptor choice here
5209 * with redirect_opt_num(), but bash doesn't do it.
5210 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005211 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00005212 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005213 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005214 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005215#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00005216 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005217 if (ctx.ctx_res_w == RES_MATCH
5218 && ctx.command->argv == NULL /* not (word|(... */
5219 && dest.length == 0 /* not word(... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02005220 && dest.has_quoted_part == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005221 ) {
5222 continue;
5223 }
5224#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005225 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005226 if (parse_group(&dest, &ctx, input, ch) != 0) {
5227 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005228 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005229 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005230 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005231#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005232 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005233 goto case_semi;
5234#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005235 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005236 /* proper use of this character is caught by end_trigger:
5237 * if we see {, we call parse_group(..., end_trigger='}')
5238 * and it will match } earlier (not here). */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005239 syntax_error_unexpected_ch(ch);
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01005240 G.last_exitcode = 2;
Denys Vlasenko9fda6092017-07-14 13:36:48 +02005241 goto parse_error2;
Eric Andersen25f27032001-04-26 23:22:31 +00005242 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005243 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005244 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005245 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005246 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005247
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005248 parse_error:
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01005249 G.last_exitcode = 1;
Denys Vlasenko9fda6092017-07-14 13:36:48 +02005250 parse_error2:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005251 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005252 struct parse_context *pctx;
5253 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005254
5255 /* Clean up allocated tree.
Denys Vlasenko764b2f02009-06-07 16:05:04 +02005256 * Sample for finding leaks on syntax error recovery path.
5257 * Run it from interactive shell, watch pmap `pidof hush`.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005258 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00005259 * Samples to catch leaks at execution:
Denys Vlasenko5d5a6112016-11-07 19:36:50 +01005260 * while if (true | { true;}); then echo ok; fi; do break; done
5261 * 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 +00005262 */
5263 pctx = &ctx;
5264 do {
5265 /* Update pipe/command counts,
5266 * otherwise freeing may miss some */
5267 done_pipe(pctx, PIPE_SEQ);
5268 debug_printf_clean("freeing list %p from ctx %p\n",
5269 pctx->list_head, pctx);
5270 debug_print_tree(pctx->list_head, 0);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005271 free_pipe_list(pctx->list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005272 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005273#if !BB_MMU
5274 o_free_unsafe(&pctx->as_string);
5275#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005276 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005277 if (pctx != &ctx) {
5278 free(pctx);
5279 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005280 IF_HAS_KEYWORDS(pctx = p2;)
5281 } while (HAS_KEYWORDS && pctx);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005282
Denys Vlasenkoa439fa92011-03-30 19:11:46 +02005283 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005284#if !BB_MMU
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005285 if (pstring)
5286 *pstring = NULL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005287#endif
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005288 debug_leave();
5289 return ERR_PTR;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005290 }
Eric Andersen25f27032001-04-26 23:22:31 +00005291}
5292
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005293
5294/*** Execution routines ***/
5295
5296/* Expansion can recurse, need forward decls: */
Denys Vlasenko637982f2017-07-06 01:52:23 +02005297#if !BASH_PATTERN_SUBST && !ENABLE_HUSH_CASE
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005298/* only ${var/pattern/repl} (its pattern part) needs additional mode */
5299#define expand_string_to_string(str, do_unbackslash) \
5300 expand_string_to_string(str)
5301#endif
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005302static char *expand_string_to_string(const char *str, int do_unbackslash);
Denys Vlasenko26777aa2010-11-22 23:49:10 +01005303#if ENABLE_HUSH_TICK
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005304static int process_command_subs(o_string *dest, const char *s);
Denys Vlasenko26777aa2010-11-22 23:49:10 +01005305#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005306
5307/* expand_strvec_to_strvec() takes a list of strings, expands
5308 * all variable references within and returns a pointer to
5309 * a list of expanded strings, possibly with larger number
5310 * of strings. (Think VAR="a b"; echo $VAR).
5311 * This new list is allocated as a single malloc block.
5312 * NULL-terminated list of char* pointers is at the beginning of it,
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005313 * followed by strings themselves.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005314 * Caller can deallocate entire list by single free(list). */
5315
Denys Vlasenko238081f2010-10-03 14:26:26 +02005316/* A horde of its helpers come first: */
5317
5318static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
5319{
5320 while (--len >= 0) {
Denys Vlasenko9e800222010-10-03 14:28:04 +02005321 char c = *str++;
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005322
Denys Vlasenko9e800222010-10-03 14:28:04 +02005323#if ENABLE_HUSH_BRACE_EXPANSION
5324 if (c == '{' || c == '}') {
5325 /* { -> \{, } -> \} */
5326 o_addchr(o, '\\');
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005327 /* And now we want to add { or } and continue:
5328 * o_addchr(o, c);
5329 * continue;
Denys Vlasenko10ad6222017-04-17 16:13:32 +02005330 * luckily, just falling through achieves this.
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005331 */
Denys Vlasenko9e800222010-10-03 14:28:04 +02005332 }
5333#endif
5334 o_addchr(o, c);
5335 if (c == '\\') {
Denys Vlasenko238081f2010-10-03 14:26:26 +02005336 /* \z -> \\\z; \<eol> -> \\<eol> */
5337 o_addchr(o, '\\');
5338 if (len) {
5339 len--;
5340 o_addchr(o, '\\');
5341 o_addchr(o, *str++);
5342 }
5343 }
5344 }
5345}
5346
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005347/* Store given string, finalizing the word and starting new one whenever
5348 * we encounter IFS char(s). This is used for expanding variable values.
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005349 * End-of-string does NOT finalize word: think about 'echo -$VAR-'.
5350 * Return in *ended_with_ifs:
5351 * 1 - ended with IFS char, else 0 (this includes case of empty str).
5352 */
5353static int expand_on_ifs(int *ended_with_ifs, o_string *output, int n, const char *str)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005354{
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005355 int last_is_ifs = 0;
5356
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005357 while (1) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005358 int word_len;
5359
5360 if (!*str) /* EOL - do not finalize word */
5361 break;
5362 word_len = strcspn(str, G.ifs);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005363 if (word_len) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005364 /* We have WORD_LEN leading non-IFS chars */
Denys Vlasenko238081f2010-10-03 14:26:26 +02005365 if (!(output->o_expflags & EXP_FLAG_GLOB)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005366 o_addblock(output, str, word_len);
Denys Vlasenko238081f2010-10-03 14:26:26 +02005367 } else {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005368 /* Protect backslashes against globbing up :)
Denys Vlasenkoa769e022010-09-10 10:12:34 +02005369 * Example: "v='\*'; echo b$v" prints "b\*"
5370 * (and does not try to glob on "*")
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005371 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005372 o_addblock_duplicate_backslash(output, str, word_len);
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005373 /*/ Why can't we do it easier? */
5374 /*o_addblock(output, str, word_len); - WRONG: "v='\*'; echo Z$v" prints "Z*" instead of "Z\*" */
5375 /*o_addqblock(output, str, word_len); - WRONG: "v='*'; echo Z$v" prints "Z*" instead of Z* files */
5376 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005377 last_is_ifs = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005378 str += word_len;
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005379 if (!*str) /* EOL - do not finalize word */
5380 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005381 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005382
5383 /* We know str here points to at least one IFS char */
5384 last_is_ifs = 1;
5385 str += strspn(str, G.ifs); /* skip IFS chars */
5386 if (!*str) /* EOL - do not finalize word */
5387 break;
5388
5389 /* Start new word... but not always! */
5390 /* Case "v=' a'; echo ''$v": we do need to finalize empty word: */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005391 if (output->has_quoted_part
5392 /* Case "v=' a'; echo $v":
5393 * here nothing precedes the space in $v expansion,
5394 * therefore we should not finish the word
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005395 * (IOW: if there *is* word to finalize, only then do it):
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005396 */
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005397 || (n > 0 && output->data[output->length - 1])
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005398 ) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005399 o_addchr(output, '\0');
5400 debug_print_list("expand_on_ifs", output, n);
5401 n = o_save_ptr(output, n);
5402 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005403 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005404
5405 if (ended_with_ifs)
5406 *ended_with_ifs = last_is_ifs;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005407 debug_print_list("expand_on_ifs[1]", output, n);
5408 return n;
5409}
5410
5411/* Helper to expand $((...)) and heredoc body. These act as if
5412 * they are in double quotes, with the exception that they are not :).
5413 * Just the rules are similar: "expand only $var and `cmd`"
5414 *
5415 * Returns malloced string.
5416 * As an optimization, we return NULL if expansion is not needed.
5417 */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005418#if !BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005419/* only ${var/pattern/repl} (its pattern part) needs additional mode */
5420#define encode_then_expand_string(str, process_bkslash, do_unbackslash) \
5421 encode_then_expand_string(str)
5422#endif
5423static char *encode_then_expand_string(const char *str, int process_bkslash, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005424{
Denys Vlasenko637982f2017-07-06 01:52:23 +02005425#if !BASH_PATTERN_SUBST
5426 const int do_unbackslash = 1;
5427#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005428 char *exp_str;
5429 struct in_str input;
5430 o_string dest = NULL_O_STRING;
5431
5432 if (!strchr(str, '$')
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02005433 && !strchr(str, '\\')
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005434#if ENABLE_HUSH_TICK
5435 && !strchr(str, '`')
5436#endif
5437 ) {
5438 return NULL;
5439 }
5440
5441 /* We need to expand. Example:
5442 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
5443 */
5444 setup_string_in_str(&input, str);
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005445 encode_string(NULL, &dest, &input, EOF, process_bkslash);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005446//TODO: error check (encode_string returns 0 on error)?
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005447 //bb_error_msg("'%s' -> '%s'", str, dest.data);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005448 exp_str = expand_string_to_string(dest.data, /*unbackslash:*/ do_unbackslash);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005449 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
5450 o_free_unsafe(&dest);
5451 return exp_str;
5452}
5453
Denys Vlasenko0b883582016-12-23 16:49:07 +01005454#if ENABLE_FEATURE_SH_MATH
Denys Vlasenko063847d2010-09-15 13:33:02 +02005455static arith_t expand_and_evaluate_arith(const char *arg, const char **errmsg_p)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005456{
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005457 arith_state_t math_state;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005458 arith_t res;
5459 char *exp_str;
5460
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005461 math_state.lookupvar = get_local_var_value;
5462 math_state.setvar = set_local_var_from_halves;
5463 //math_state.endofname = endofname;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005464 exp_str = encode_then_expand_string(arg, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005465 res = arith(&math_state, exp_str ? exp_str : arg);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005466 free(exp_str);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005467 if (errmsg_p)
5468 *errmsg_p = math_state.errmsg;
5469 if (math_state.errmsg)
5470 die_if_script(math_state.errmsg);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005471 return res;
5472}
5473#endif
5474
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005475#if BASH_PATTERN_SUBST
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005476/* ${var/[/]pattern[/repl]} helpers */
5477static char *strstr_pattern(char *val, const char *pattern, int *size)
5478{
5479 while (1) {
5480 char *end = scan_and_match(val, pattern, SCAN_MOVE_FROM_RIGHT + SCAN_MATCH_LEFT_HALF);
5481 debug_printf_varexp("val:'%s' pattern:'%s' end:'%s'\n", val, pattern, end);
5482 if (end) {
5483 *size = end - val;
5484 return val;
5485 }
5486 if (*val == '\0')
5487 return NULL;
5488 /* Optimization: if "*pat" did not match the start of "string",
5489 * we know that "tring", "ring" etc will not match too:
5490 */
5491 if (pattern[0] == '*')
5492 return NULL;
5493 val++;
5494 }
5495}
5496static char *replace_pattern(char *val, const char *pattern, const char *repl, char exp_op)
5497{
5498 char *result = NULL;
5499 unsigned res_len = 0;
5500 unsigned repl_len = strlen(repl);
5501
5502 while (1) {
5503 int size;
5504 char *s = strstr_pattern(val, pattern, &size);
5505 if (!s)
5506 break;
5507
5508 result = xrealloc(result, res_len + (s - val) + repl_len + 1);
5509 memcpy(result + res_len, val, s - val);
5510 res_len += s - val;
5511 strcpy(result + res_len, repl);
5512 res_len += repl_len;
5513 debug_printf_varexp("val:'%s' s:'%s' result:'%s'\n", val, s, result);
5514
5515 val = s + size;
5516 if (exp_op == '/')
5517 break;
5518 }
5519 if (val[0] && result) {
5520 result = xrealloc(result, res_len + strlen(val) + 1);
5521 strcpy(result + res_len, val);
5522 debug_printf_varexp("val:'%s' result:'%s'\n", val, result);
5523 }
5524 debug_printf_varexp("result:'%s'\n", result);
5525 return result;
5526}
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005527#endif /* BASH_PATTERN_SUBST */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005528
5529/* Helper:
5530 * Handles <SPECIAL_VAR_SYMBOL>varname...<SPECIAL_VAR_SYMBOL> construct.
5531 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005532static NOINLINE const char *expand_one_var(char **to_be_freed_pp, char *arg, char **pp)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005533{
5534 const char *val = NULL;
5535 char *to_be_freed = NULL;
5536 char *p = *pp;
5537 char *var;
5538 char first_char;
5539 char exp_op;
5540 char exp_save = exp_save; /* for compiler */
5541 char *exp_saveptr; /* points to expansion operator */
5542 char *exp_word = exp_word; /* for compiler */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005543 char arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005544
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005545 *p = '\0'; /* replace trailing SPECIAL_VAR_SYMBOL */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005546 var = arg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005547 exp_saveptr = arg[1] ? strchr(VAR_ENCODED_SUBST_OPS, arg[1]) : NULL;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005548 arg0 = arg[0];
5549 first_char = arg[0] = arg0 & 0x7f;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005550 exp_op = 0;
5551
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005552 if (first_char == '#' /* ${#... */
5553 && arg[1] && !exp_saveptr /* not ${#} and not ${#<op_char>...} */
5554 ) {
5555 /* It must be length operator: ${#var} */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005556 var++;
5557 exp_op = 'L';
5558 } else {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005559 /* Maybe handle parameter expansion */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005560 if (exp_saveptr /* if 2nd char is one of expansion operators */
5561 && strchr(NUMERIC_SPECVARS_STR, first_char) /* 1st char is special variable */
5562 ) {
5563 /* ${?:0}, ${#[:]%0} etc */
5564 exp_saveptr = var + 1;
5565 } else {
5566 /* ${?}, ${var}, ${var:0}, ${var[:]%0} etc */
5567 exp_saveptr = var+1 + strcspn(var+1, VAR_ENCODED_SUBST_OPS);
5568 }
5569 exp_op = exp_save = *exp_saveptr;
5570 if (exp_op) {
5571 exp_word = exp_saveptr + 1;
5572 if (exp_op == ':') {
5573 exp_op = *exp_word++;
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005574//TODO: try ${var:} and ${var:bogus} in non-bash config
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005575 if (BASH_SUBSTR
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005576 && (!exp_op || !strchr(MINUS_PLUS_EQUAL_QUESTION, exp_op))
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005577 ) {
5578 /* oops... it's ${var:N[:M]}, not ${var:?xxx} or some such */
5579 exp_op = ':';
5580 exp_word--;
5581 }
5582 }
5583 *exp_saveptr = '\0';
5584 } /* else: it's not an expansion op, but bare ${var} */
5585 }
5586
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005587 /* Look up the variable in question */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005588 if (isdigit(var[0])) {
Denys Vlasenko77a7b552010-09-09 12:40:03 +02005589 /* parse_dollar should have vetted var for us */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005590 int n = xatoi_positive(var);
5591 if (n < G.global_argc)
5592 val = G.global_argv[n];
5593 /* else val remains NULL: $N with too big N */
5594 } else {
5595 switch (var[0]) {
5596 case '$': /* pid */
5597 val = utoa(G.root_pid);
5598 break;
5599 case '!': /* bg pid */
5600 val = G.last_bg_pid ? utoa(G.last_bg_pid) : "";
5601 break;
5602 case '?': /* exitcode */
5603 val = utoa(G.last_exitcode);
5604 break;
5605 case '#': /* argc */
5606 val = utoa(G.global_argc ? G.global_argc-1 : 0);
5607 break;
5608 default:
5609 val = get_local_var_value(var);
5610 }
5611 }
5612
5613 /* Handle any expansions */
5614 if (exp_op == 'L') {
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02005615 reinit_unicode_for_hush();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005616 debug_printf_expand("expand: length(%s)=", val);
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02005617 val = utoa(val ? unicode_strlen(val) : 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005618 debug_printf_expand("%s\n", val);
5619 } else if (exp_op) {
5620 if (exp_op == '%' || exp_op == '#') {
5621 /* Standard-mandated substring removal ops:
5622 * ${parameter%word} - remove smallest suffix pattern
5623 * ${parameter%%word} - remove largest suffix pattern
5624 * ${parameter#word} - remove smallest prefix pattern
5625 * ${parameter##word} - remove largest prefix pattern
5626 *
5627 * Word is expanded to produce a glob pattern.
5628 * Then var's value is matched to it and matching part removed.
5629 */
5630 if (val && val[0]) {
Denys Vlasenko4f870492010-09-10 11:06:01 +02005631 char *t;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005632 char *exp_exp_word;
5633 char *loc;
5634 unsigned scan_flags = pick_scan(exp_op, *exp_word);
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02005635 if (exp_op == *exp_word) /* ## or %% */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005636 exp_word++;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005637 exp_exp_word = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005638 if (exp_exp_word)
5639 exp_word = exp_exp_word;
Denys Vlasenko4f870492010-09-10 11:06:01 +02005640 /* HACK ALERT. We depend here on the fact that
5641 * G.global_argv and results of utoa and get_local_var_value
5642 * are actually in writable memory:
5643 * scan_and_match momentarily stores NULs there. */
5644 t = (char*)val;
5645 loc = scan_and_match(t, exp_word, scan_flags);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005646 //bb_error_msg("op:%c str:'%s' pat:'%s' res:'%s'",
Denys Vlasenko4f870492010-09-10 11:06:01 +02005647 // exp_op, t, exp_word, loc);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005648 free(exp_exp_word);
5649 if (loc) { /* match was found */
5650 if (scan_flags & SCAN_MATCH_LEFT_HALF) /* #[#] */
Denys Vlasenko4f870492010-09-10 11:06:01 +02005651 val = loc; /* take right part */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005652 else /* %[%] */
Denys Vlasenko4f870492010-09-10 11:06:01 +02005653 val = to_be_freed = xstrndup(val, loc - val); /* left */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005654 }
5655 }
5656 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005657#if BASH_PATTERN_SUBST
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005658 else if (exp_op == '/' || exp_op == '\\') {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005659 /* It's ${var/[/]pattern[/repl]} thing.
5660 * Note that in encoded form it has TWO parts:
5661 * var/pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
Denys Vlasenko4f870492010-09-10 11:06:01 +02005662 * and if // is used, it is encoded as \:
5663 * var\pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005664 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005665 /* Empty variable always gives nothing: */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005666 // "v=''; echo ${v/*/w}" prints "", not "w"
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005667 if (val && val[0]) {
Denys Vlasenko4f870492010-09-10 11:06:01 +02005668 /* pattern uses non-standard expansion.
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005669 * repl should be unbackslashed and globbed
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005670 * by the usual expansion rules:
5671 * >az; >bz;
5672 * v='a bz'; echo "${v/a*z/a*z}" prints "a*z"
5673 * v='a bz'; echo "${v/a*z/\z}" prints "\z"
5674 * v='a bz'; echo ${v/a*z/a*z} prints "az"
5675 * v='a bz'; echo ${v/a*z/\z} prints "z"
5676 * (note that a*z _pattern_ is never globbed!)
5677 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005678 char *pattern, *repl, *t;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005679 pattern = encode_then_expand_string(exp_word, /*process_bkslash:*/ 0, /*unbackslash:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005680 if (!pattern)
5681 pattern = xstrdup(exp_word);
5682 debug_printf_varexp("pattern:'%s'->'%s'\n", exp_word, pattern);
5683 *p++ = SPECIAL_VAR_SYMBOL;
5684 exp_word = p;
5685 p = strchr(p, SPECIAL_VAR_SYMBOL);
5686 *p = '\0';
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005687 repl = encode_then_expand_string(exp_word, /*process_bkslash:*/ arg0 & 0x80, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005688 debug_printf_varexp("repl:'%s'->'%s'\n", exp_word, repl);
5689 /* HACK ALERT. We depend here on the fact that
5690 * G.global_argv and results of utoa and get_local_var_value
5691 * are actually in writable memory:
5692 * replace_pattern momentarily stores NULs there. */
5693 t = (char*)val;
5694 to_be_freed = replace_pattern(t,
5695 pattern,
5696 (repl ? repl : exp_word),
5697 exp_op);
5698 if (to_be_freed) /* at least one replace happened */
5699 val = to_be_freed;
5700 free(pattern);
5701 free(repl);
5702 }
5703 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005704#endif /* BASH_PATTERN_SUBST */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005705 else if (exp_op == ':') {
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005706#if BASH_SUBSTR && ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005707 /* It's ${var:N[:M]} bashism.
5708 * Note that in encoded form it has TWO parts:
5709 * var:N<SPECIAL_VAR_SYMBOL>M<SPECIAL_VAR_SYMBOL>
5710 */
5711 arith_t beg, len;
Denys Vlasenko063847d2010-09-15 13:33:02 +02005712 const char *errmsg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005713
Denys Vlasenko063847d2010-09-15 13:33:02 +02005714 beg = expand_and_evaluate_arith(exp_word, &errmsg);
5715 if (errmsg)
5716 goto arith_err;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005717 debug_printf_varexp("beg:'%s'=%lld\n", exp_word, (long long)beg);
5718 *p++ = SPECIAL_VAR_SYMBOL;
5719 exp_word = p;
5720 p = strchr(p, SPECIAL_VAR_SYMBOL);
5721 *p = '\0';
Denys Vlasenko063847d2010-09-15 13:33:02 +02005722 len = expand_and_evaluate_arith(exp_word, &errmsg);
5723 if (errmsg)
5724 goto arith_err;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005725 debug_printf_varexp("len:'%s'=%lld\n", exp_word, (long long)len);
Denys Vlasenkoe32b6502017-07-17 16:46:57 +02005726 if (beg < 0) {
5727 /* negative beg counts from the end */
5728 beg = (arith_t)strlen(val) + beg;
5729 if (beg < 0) /* ${v: -999999} is "" */
5730 beg = len = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005731 }
Denys Vlasenkoe32b6502017-07-17 16:46:57 +02005732 debug_printf_varexp("from val:'%s'\n", val);
5733 if (len < 0) {
5734 /* in bash, len=-n means strlen()-n */
5735 len = (arith_t)strlen(val) - beg + len;
5736 if (len < 0) /* bash compat */
5737 die_if_script("%s: substring expression < 0", var);
5738 }
Denys Vlasenko0ba80e42017-07-17 16:50:20 +02005739 if (len <= 0 || !val || beg >= strlen(val)) {
Denys Vlasenkoe32b6502017-07-17 16:46:57 +02005740 arith_err:
5741 val = NULL;
5742 } else {
5743 /* Paranoia. What if user entered 9999999999999
5744 * which fits in arith_t but not int? */
5745 if (len >= INT_MAX)
5746 len = INT_MAX;
5747 val = to_be_freed = xstrndup(val + beg, len);
5748 }
5749 debug_printf_varexp("val:'%s'\n", val);
5750#else /* not (HUSH_SUBSTR_EXPANSION && FEATURE_SH_MATH) */
5751 die_if_script("malformed ${%s:...}", var);
5752 val = NULL;
5753#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005754 } else { /* one of "-=+?" */
5755 /* Standard-mandated substitution ops:
5756 * ${var?word} - indicate error if unset
5757 * If var is unset, word (or a message indicating it is unset
5758 * if word is null) is written to standard error
5759 * and the shell exits with a non-zero exit status.
5760 * Otherwise, the value of var is substituted.
5761 * ${var-word} - use default value
5762 * If var is unset, word is substituted.
5763 * ${var=word} - assign and use default value
5764 * If var is unset, word is assigned to var.
5765 * In all cases, final value of var is substituted.
5766 * ${var+word} - use alternative value
5767 * If var is unset, null is substituted.
5768 * Otherwise, word is substituted.
5769 *
5770 * Word is subjected to tilde expansion, parameter expansion,
5771 * command substitution, and arithmetic expansion.
5772 * If word is not needed, it is not expanded.
5773 *
5774 * Colon forms (${var:-word}, ${var:=word} etc) do the same,
5775 * but also treat null var as if it is unset.
5776 */
5777 int use_word = (!val || ((exp_save == ':') && !val[0]));
5778 if (exp_op == '+')
5779 use_word = !use_word;
5780 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
5781 (exp_save == ':') ? "true" : "false", use_word);
5782 if (use_word) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005783 to_be_freed = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005784 if (to_be_freed)
5785 exp_word = to_be_freed;
5786 if (exp_op == '?') {
5787 /* mimic bash message */
5788 die_if_script("%s: %s",
5789 var,
5790 exp_word[0] ? exp_word : "parameter null or not set"
5791 );
5792//TODO: how interactive bash aborts expansion mid-command?
5793 } else {
5794 val = exp_word;
5795 }
5796
5797 if (exp_op == '=') {
5798 /* ${var=[word]} or ${var:=[word]} */
5799 if (isdigit(var[0]) || var[0] == '#') {
5800 /* mimic bash message */
5801 die_if_script("$%s: cannot assign in this way", var);
5802 val = NULL;
5803 } else {
5804 char *new_var = xasprintf("%s=%s", var, val);
5805 set_local_var(new_var, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
5806 }
5807 }
5808 }
5809 } /* one of "-=+?" */
5810
5811 *exp_saveptr = exp_save;
5812 } /* if (exp_op) */
5813
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005814 arg[0] = arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005815
5816 *pp = p;
5817 *to_be_freed_pp = to_be_freed;
5818 return val;
5819}
5820
5821/* Expand all variable references in given string, adding words to list[]
5822 * at n, n+1,... positions. Return updated n (so that list[n] is next one
5823 * to be filled). This routine is extremely tricky: has to deal with
5824 * variables/parameters with whitespace, $* and $@, and constructs like
5825 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005826static NOINLINE int expand_vars_to_list(o_string *output, int n, char *arg)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005827{
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005828 /* output->o_expflags & EXP_FLAG_SINGLEWORD (0x80) if we are in
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005829 * expansion of right-hand side of assignment == 1-element expand.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005830 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005831 char cant_be_null = 0; /* only bit 0x80 matters */
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005832 int ended_in_ifs = 0; /* did last unquoted expansion end with IFS chars? */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005833 char *p;
5834
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005835 debug_printf_expand("expand_vars_to_list: arg:'%s' singleword:%x\n", arg,
5836 !!(output->o_expflags & EXP_FLAG_SINGLEWORD));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005837 debug_print_list("expand_vars_to_list", output, n);
5838 n = o_save_ptr(output, n);
5839 debug_print_list("expand_vars_to_list[0]", output, n);
5840
5841 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
5842 char first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005843 char *to_be_freed = NULL;
5844 const char *val = NULL;
5845#if ENABLE_HUSH_TICK
5846 o_string subst_result = NULL_O_STRING;
5847#endif
Denys Vlasenko0b883582016-12-23 16:49:07 +01005848#if ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005849 char arith_buf[sizeof(arith_t)*3 + 2];
5850#endif
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005851
5852 if (ended_in_ifs) {
5853 o_addchr(output, '\0');
5854 n = o_save_ptr(output, n);
5855 ended_in_ifs = 0;
5856 }
5857
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005858 o_addblock(output, arg, p - arg);
5859 debug_print_list("expand_vars_to_list[1]", output, n);
5860 arg = ++p;
5861 p = strchr(p, SPECIAL_VAR_SYMBOL);
5862
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005863 /* Fetch special var name (if it is indeed one of them)
5864 * and quote bit, force the bit on if singleword expansion -
5865 * important for not getting v=$@ expand to many words. */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005866 first_ch = arg[0] | (output->o_expflags & EXP_FLAG_SINGLEWORD);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005867
5868 /* Is this variable quoted and thus expansion can't be null?
5869 * "$@" is special. Even if quoted, it can still
5870 * expand to nothing (not even an empty string),
5871 * thus it is excluded. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005872 if ((first_ch & 0x7f) != '@')
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005873 cant_be_null |= first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005874
5875 switch (first_ch & 0x7f) {
5876 /* Highest bit in first_ch indicates that var is double-quoted */
5877 case '*':
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005878 case '@': {
5879 int i;
5880 if (!G.global_argv[1])
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005881 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005882 i = 1;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005883 cant_be_null |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005884 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005885 while (G.global_argv[i]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005886 n = expand_on_ifs(NULL, output, n, G.global_argv[i]);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005887 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
5888 if (G.global_argv[i++][0] && G.global_argv[i]) {
5889 /* this argv[] is not empty and not last:
5890 * put terminating NUL, start new word */
5891 o_addchr(output, '\0');
5892 debug_print_list("expand_vars_to_list[2]", output, n);
5893 n = o_save_ptr(output, n);
5894 debug_print_list("expand_vars_to_list[3]", output, n);
5895 }
5896 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005897 } else
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005898 /* If EXP_FLAG_SINGLEWORD, we handle assignment 'a=....$@.....'
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005899 * and in this case should treat it like '$*' - see 'else...' below */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005900 if (first_ch == ('@'|0x80) /* quoted $@ */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005901 && !(output->o_expflags & EXP_FLAG_SINGLEWORD) /* not v="$@" case */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005902 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005903 while (1) {
5904 o_addQstr(output, G.global_argv[i]);
5905 if (++i >= G.global_argc)
5906 break;
5907 o_addchr(output, '\0');
5908 debug_print_list("expand_vars_to_list[4]", output, n);
5909 n = o_save_ptr(output, n);
5910 }
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005911 } else { /* quoted $* (or v="$@" case): add as one word */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005912 while (1) {
5913 o_addQstr(output, G.global_argv[i]);
5914 if (!G.global_argv[++i])
5915 break;
5916 if (G.ifs[0])
5917 o_addchr(output, G.ifs[0]);
5918 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005919 output->has_quoted_part = 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005920 }
5921 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005922 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005923 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
5924 /* "Empty variable", used to make "" etc to not disappear */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005925 output->has_quoted_part = 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005926 arg++;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005927 cant_be_null = 0x80;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005928 break;
5929#if ENABLE_HUSH_TICK
5930 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005931 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005932 arg++;
5933 /* Can't just stuff it into output o_string,
5934 * expanded result may need to be globbed
Denys Vlasenko10ad6222017-04-17 16:13:32 +02005935 * and $IFS-split */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005936 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
5937 G.last_exitcode = process_command_subs(&subst_result, arg);
5938 debug_printf_subst("SUBST RES:%d '%s'\n", G.last_exitcode, subst_result.data);
5939 val = subst_result.data;
5940 goto store_val;
5941#endif
Denys Vlasenko0b883582016-12-23 16:49:07 +01005942#if ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005943 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
5944 arith_t res;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005945
5946 arg++; /* skip '+' */
5947 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
5948 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005949 res = expand_and_evaluate_arith(arg, NULL);
Denys Vlasenkobed7c812010-09-16 11:50:46 +02005950 debug_printf_subst("ARITH RES '"ARITH_FMT"'\n", res);
5951 sprintf(arith_buf, ARITH_FMT, res);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005952 val = arith_buf;
5953 break;
5954 }
5955#endif
5956 default:
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005957 val = expand_one_var(&to_be_freed, arg, &p);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005958 IF_HUSH_TICK(store_val:)
5959 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005960 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val,
5961 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005962 if (val && val[0]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005963 n = expand_on_ifs(&ended_in_ifs, output, n, val);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005964 val = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005965 }
5966 } else { /* quoted $VAR, val will be appended below */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005967 output->has_quoted_part = 1;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005968 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val,
5969 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005970 }
5971 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005972 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
5973
5974 if (val && val[0]) {
5975 o_addQstr(output, val);
5976 }
5977 free(to_be_freed);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005978
5979 /* Restore NULL'ed SPECIAL_VAR_SYMBOL.
5980 * Do the check to avoid writing to a const string. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005981 if (*p != SPECIAL_VAR_SYMBOL)
5982 *p = SPECIAL_VAR_SYMBOL;
5983
5984#if ENABLE_HUSH_TICK
5985 o_free(&subst_result);
5986#endif
5987 arg = ++p;
5988 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
5989
5990 if (arg[0]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005991 if (ended_in_ifs) {
5992 o_addchr(output, '\0');
5993 n = o_save_ptr(output, n);
5994 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005995 debug_print_list("expand_vars_to_list[a]", output, n);
5996 /* this part is literal, and it was already pre-quoted
5997 * if needed (much earlier), do not use o_addQstr here! */
5998 o_addstr_with_NUL(output, arg);
5999 debug_print_list("expand_vars_to_list[b]", output, n);
6000 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02006001 && !(cant_be_null & 0x80) /* and all vars were not quoted. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006002 ) {
6003 n--;
6004 /* allow to reuse list[n] later without re-growth */
6005 output->has_empty_slot = 1;
6006 } else {
6007 o_addchr(output, '\0');
6008 }
6009
6010 return n;
6011}
6012
Denys Vlasenko95d48f22010-09-08 13:58:55 +02006013static char **expand_variables(char **argv, unsigned expflags)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006014{
6015 int n;
6016 char **list;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006017 o_string output = NULL_O_STRING;
6018
Denys Vlasenko95d48f22010-09-08 13:58:55 +02006019 output.o_expflags = expflags;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006020
6021 n = 0;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006022 while (*argv) {
Denys Vlasenko95d48f22010-09-08 13:58:55 +02006023 n = expand_vars_to_list(&output, n, *argv);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006024 argv++;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006025 }
6026 debug_print_list("expand_variables", &output, n);
6027
6028 /* output.data (malloced in one block) gets returned in "list" */
6029 list = o_finalize_list(&output, n);
6030 debug_print_strings("expand_variables[1]", list);
6031 return list;
6032}
6033
6034static char **expand_strvec_to_strvec(char **argv)
6035{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02006036 return expand_variables(argv, EXP_FLAG_GLOB | EXP_FLAG_ESC_GLOB_CHARS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006037}
6038
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01006039#if BASH_TEST2
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006040static char **expand_strvec_to_strvec_singleword_noglob(char **argv)
6041{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02006042 return expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006043}
6044#endif
6045
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02006046/* Used for expansion of right hand of assignments,
6047 * $((...)), heredocs, variable espansion parts.
6048 *
6049 * NB: should NOT do globbing!
6050 * "export v=/bin/c*; env | grep ^v=" outputs "v=/bin/c*"
6051 */
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006052static char *expand_string_to_string(const char *str, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006053{
Denys Vlasenko637982f2017-07-06 01:52:23 +02006054#if !BASH_PATTERN_SUBST && !ENABLE_HUSH_CASE
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02006055 const int do_unbackslash = 1;
6056#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006057 char *argv[2], **list;
6058
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006059 debug_printf_expand("string_to_string<='%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006060 /* This is generally an optimization, but it also
6061 * handles "", which otherwise trips over !list[0] check below.
6062 * (is this ever happens that we actually get str="" here?)
6063 */
6064 if (!strchr(str, SPECIAL_VAR_SYMBOL) && !strchr(str, '\\')) {
6065 //TODO: Can use on strings with \ too, just unbackslash() them?
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006066 debug_printf_expand("string_to_string(fast)=>'%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006067 return xstrdup(str);
6068 }
6069
6070 argv[0] = (char*)str;
6071 argv[1] = NULL;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006072 list = expand_variables(argv, do_unbackslash
6073 ? EXP_FLAG_ESC_GLOB_CHARS | EXP_FLAG_SINGLEWORD
6074 : EXP_FLAG_SINGLEWORD
6075 );
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006076 if (HUSH_DEBUG)
6077 if (!list[0] || list[1])
6078 bb_error_msg_and_die("BUG in varexp2");
6079 /* actually, just move string 2*sizeof(char*) bytes back */
6080 overlapping_strcpy((char*)list, list[0]);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006081 if (do_unbackslash)
6082 unbackslash((char*)list);
6083 debug_printf_expand("string_to_string=>'%s'\n", (char*)list);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006084 return (char*)list;
6085}
6086
Denys Vlasenkobd43c672017-07-05 23:12:15 +02006087/* Used for "eval" builtin and case string */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006088static char* expand_strvec_to_string(char **argv)
6089{
6090 char **list;
6091
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02006092 list = expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006093 /* Convert all NULs to spaces */
6094 if (list[0]) {
6095 int n = 1;
6096 while (list[n]) {
6097 if (HUSH_DEBUG)
6098 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
6099 bb_error_msg_and_die("BUG in varexp3");
6100 /* bash uses ' ' regardless of $IFS contents */
6101 list[n][-1] = ' ';
6102 n++;
6103 }
6104 }
Denys Vlasenko78c9c732016-09-29 01:44:17 +02006105 overlapping_strcpy((char*)list, list[0] ? list[0] : "");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006106 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
6107 return (char*)list;
6108}
6109
6110static char **expand_assignments(char **argv, int count)
6111{
6112 int i;
6113 char **p;
6114
6115 G.expanded_assignments = p = NULL;
6116 /* Expand assignments into one string each */
6117 for (i = 0; i < count; i++) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006118 G.expanded_assignments = p = add_string_to_strings(p, expand_string_to_string(argv[i], /*unbackslash:*/ 1));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006119 }
6120 G.expanded_assignments = NULL;
6121 return p;
6122}
6123
6124
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006125static void switch_off_special_sigs(unsigned mask)
6126{
6127 unsigned sig = 0;
6128 while ((mask >>= 1) != 0) {
6129 sig++;
6130 if (!(mask & 1))
6131 continue;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006132#if ENABLE_HUSH_TRAP
6133 if (G_traps) {
6134 if (G_traps[sig] && !G_traps[sig][0])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006135 /* trap is '', has to remain SIG_IGN */
6136 continue;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006137 free(G_traps[sig]);
6138 G_traps[sig] = NULL;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006139 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006140#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006141 /* We are here only if no trap or trap was not '' */
Denys Vlasenko0806e402011-05-12 23:06:20 +02006142 install_sighandler(sig, SIG_DFL);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006143 }
6144}
6145
Denys Vlasenkob347df92011-08-09 22:49:15 +02006146#if BB_MMU
6147/* never called */
6148void re_execute_shell(char ***to_free, const char *s,
6149 char *g_argv0, char **g_argv,
6150 char **builtin_argv) NORETURN;
6151
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006152static void reset_traps_to_defaults(void)
6153{
6154 /* This function is always called in a child shell
6155 * after fork (not vfork, NOMMU doesn't use this function).
6156 */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006157 IF_HUSH_TRAP(unsigned sig;)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006158 unsigned mask;
6159
6160 /* Child shells are not interactive.
6161 * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
6162 * Testcase: (while :; do :; done) + ^Z should background.
6163 * Same goes for SIGTERM, SIGHUP, SIGINT.
6164 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006165 mask = (G.special_sig_mask & SPECIAL_INTERACTIVE_SIGS) | G_fatal_sig_mask;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006166 if (!G_traps && !mask)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006167 return; /* already no traps and no special sigs */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006168
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006169 /* Switch off special sigs */
6170 switch_off_special_sigs(mask);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006171# if ENABLE_HUSH_JOB
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006172 G_fatal_sig_mask = 0;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006173# endif
Denys Vlasenko10c01312011-05-11 11:49:21 +02006174 G.special_sig_mask &= ~SPECIAL_INTERACTIVE_SIGS;
Denys Vlasenkof58f7052011-05-12 02:10:33 +02006175 /* SIGQUIT,SIGCHLD and maybe SPECIAL_JOBSTOP_SIGS
6176 * remain set in G.special_sig_mask */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006177
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006178# if ENABLE_HUSH_TRAP
6179 if (!G_traps)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006180 return;
6181
6182 /* Reset all sigs to default except ones with empty traps */
6183 for (sig = 0; sig < NSIG; sig++) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006184 if (!G_traps[sig])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006185 continue; /* no trap: nothing to do */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006186 if (!G_traps[sig][0])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006187 continue; /* empty trap: has to remain SIG_IGN */
6188 /* sig has non-empty trap, reset it: */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006189 free(G_traps[sig]);
6190 G_traps[sig] = NULL;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006191 /* There is no signal for trap 0 (EXIT) */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006192 if (sig == 0)
6193 continue;
Denys Vlasenko0806e402011-05-12 23:06:20 +02006194 install_sighandler(sig, pick_sighandler(sig));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006195 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006196# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006197}
6198
6199#else /* !BB_MMU */
6200
6201static void re_execute_shell(char ***to_free, const char *s,
6202 char *g_argv0, char **g_argv,
6203 char **builtin_argv) NORETURN;
6204static void re_execute_shell(char ***to_free, const char *s,
6205 char *g_argv0, char **g_argv,
6206 char **builtin_argv)
6207{
6208# define NOMMU_HACK_FMT ("-$%x:%x:%x:%x:%x:%llx" IF_HUSH_LOOPS(":%x"))
6209 /* delims + 2 * (number of bytes in printed hex numbers) */
6210 char param_buf[sizeof(NOMMU_HACK_FMT) + 2 * (sizeof(int)*6 + sizeof(long long)*1)];
6211 char *heredoc_argv[4];
6212 struct variable *cur;
6213# if ENABLE_HUSH_FUNCTIONS
6214 struct function *funcp;
6215# endif
6216 char **argv, **pp;
6217 unsigned cnt;
6218 unsigned long long empty_trap_mask;
6219
6220 if (!g_argv0) { /* heredoc */
6221 argv = heredoc_argv;
6222 argv[0] = (char *) G.argv0_for_re_execing;
6223 argv[1] = (char *) "-<";
6224 argv[2] = (char *) s;
6225 argv[3] = NULL;
6226 pp = &argv[3]; /* used as pointer to empty environment */
6227 goto do_exec;
6228 }
6229
6230 cnt = 0;
6231 pp = builtin_argv;
6232 if (pp) while (*pp++)
6233 cnt++;
6234
6235 empty_trap_mask = 0;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006236 if (G_traps) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006237 int sig;
6238 for (sig = 1; sig < NSIG; sig++) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006239 if (G_traps[sig] && !G_traps[sig][0])
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006240 empty_trap_mask |= 1LL << sig;
6241 }
6242 }
6243
6244 sprintf(param_buf, NOMMU_HACK_FMT
6245 , (unsigned) G.root_pid
6246 , (unsigned) G.root_ppid
6247 , (unsigned) G.last_bg_pid
6248 , (unsigned) G.last_exitcode
6249 , cnt
6250 , empty_trap_mask
6251 IF_HUSH_LOOPS(, G.depth_of_loop)
6252 );
6253# undef NOMMU_HACK_FMT
6254 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<etc...> <vars...> <funcs...>
6255 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
6256 */
6257 cnt += 6;
6258 for (cur = G.top_var; cur; cur = cur->next) {
6259 if (!cur->flg_export || cur->flg_read_only)
6260 cnt += 2;
6261 }
6262# if ENABLE_HUSH_FUNCTIONS
6263 for (funcp = G.top_func; funcp; funcp = funcp->next)
6264 cnt += 3;
6265# endif
6266 pp = g_argv;
6267 while (*pp++)
6268 cnt++;
6269 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
6270 *pp++ = (char *) G.argv0_for_re_execing;
6271 *pp++ = param_buf;
6272 for (cur = G.top_var; cur; cur = cur->next) {
6273 if (strcmp(cur->varstr, hush_version_str) == 0)
6274 continue;
6275 if (cur->flg_read_only) {
6276 *pp++ = (char *) "-R";
6277 *pp++ = cur->varstr;
6278 } else if (!cur->flg_export) {
6279 *pp++ = (char *) "-V";
6280 *pp++ = cur->varstr;
6281 }
6282 }
6283# if ENABLE_HUSH_FUNCTIONS
6284 for (funcp = G.top_func; funcp; funcp = funcp->next) {
6285 *pp++ = (char *) "-F";
6286 *pp++ = funcp->name;
6287 *pp++ = funcp->body_as_string;
6288 }
6289# endif
6290 /* We can pass activated traps here. Say, -Tnn:trap_string
6291 *
6292 * However, POSIX says that subshells reset signals with traps
6293 * to SIG_DFL.
6294 * I tested bash-3.2 and it not only does that with true subshells
6295 * of the form ( list ), but with any forked children shells.
6296 * I set trap "echo W" WINCH; and then tried:
6297 *
6298 * { echo 1; sleep 20; echo 2; } &
6299 * while true; do echo 1; sleep 20; echo 2; break; done &
6300 * true | { echo 1; sleep 20; echo 2; } | cat
6301 *
6302 * In all these cases sending SIGWINCH to the child shell
6303 * did not run the trap. If I add trap "echo V" WINCH;
6304 * _inside_ group (just before echo 1), it works.
6305 *
6306 * I conclude it means we don't need to pass active traps here.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006307 */
6308 *pp++ = (char *) "-c";
6309 *pp++ = (char *) s;
6310 if (builtin_argv) {
6311 while (*++builtin_argv)
6312 *pp++ = *builtin_argv;
6313 *pp++ = (char *) "";
6314 }
6315 *pp++ = g_argv0;
6316 while (*g_argv)
6317 *pp++ = *g_argv++;
6318 /* *pp = NULL; - is already there */
6319 pp = environ;
6320
6321 do_exec:
6322 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02006323 /* Don't propagate SIG_IGN to the child */
6324 if (SPECIAL_JOBSTOP_SIGS != 0)
6325 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006326 execve(bb_busybox_exec_path, argv, pp);
6327 /* Fallback. Useful for init=/bin/hush usage etc */
6328 if (argv[0][0] == '/')
6329 execve(argv[0], argv, pp);
6330 xfunc_error_retval = 127;
6331 bb_error_msg_and_die("can't re-execute the shell");
6332}
6333#endif /* !BB_MMU */
6334
6335
6336static int run_and_free_list(struct pipe *pi);
6337
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006338/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006339 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
6340 * end_trigger controls how often we stop parsing
6341 * NUL: parse all, execute, return
6342 * ';': parse till ';' or newline, execute, repeat till EOF
6343 */
6344static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00006345{
Denys Vlasenko00243b02009-11-16 02:00:03 +01006346 /* Why we need empty flag?
6347 * An obscure corner case "false; ``; echo $?":
6348 * empty command in `` should still set $? to 0.
6349 * But we can't just set $? to 0 at the start,
6350 * this breaks "false; echo `echo $?`" case.
6351 */
6352 bool empty = 1;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006353 while (1) {
6354 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006355
Denys Vlasenkoa1463192011-01-18 17:55:04 +01006356#if ENABLE_HUSH_INTERACTIVE
6357 if (end_trigger == ';')
6358 inp->promptmode = 0; /* PS1 */
6359#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006360 pipe_list = parse_stream(NULL, inp, end_trigger);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02006361 if (!pipe_list || pipe_list == ERR_PTR) { /* EOF/error */
6362 /* If we are in "big" script
6363 * (not in `cmd` or something similar)...
6364 */
6365 if (pipe_list == ERR_PTR && end_trigger == ';') {
6366 /* Discard cached input (rest of line) */
6367 int ch = inp->last_char;
6368 while (ch != EOF && ch != '\n') {
6369 //bb_error_msg("Discarded:'%c'", ch);
6370 ch = i_getch(inp);
6371 }
6372 /* Force prompt */
6373 inp->p = NULL;
6374 /* This stream isn't empty */
6375 empty = 0;
6376 continue;
6377 }
6378 if (!pipe_list && empty)
Denys Vlasenko00243b02009-11-16 02:00:03 +01006379 G.last_exitcode = 0;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006380 break;
Denys Vlasenko00243b02009-11-16 02:00:03 +01006381 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006382 debug_print_tree(pipe_list, 0);
6383 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
6384 run_and_free_list(pipe_list);
Denys Vlasenko00243b02009-11-16 02:00:03 +01006385 empty = 0;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006386 if (G_flag_return_in_progress == 1)
Denys Vlasenko68d5cb52011-03-24 02:50:03 +01006387 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006388 }
Eric Andersen25f27032001-04-26 23:22:31 +00006389}
6390
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006391static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00006392{
6393 struct in_str input;
6394 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006395 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00006396}
6397
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006398static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00006399{
Eric Andersen25f27032001-04-26 23:22:31 +00006400 struct in_str input;
6401 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006402 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00006403}
6404
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006405#if ENABLE_HUSH_TICK
6406static FILE *generate_stream_from_string(const char *s, pid_t *pid_p)
6407{
6408 pid_t pid;
6409 int channel[2];
6410# if !BB_MMU
6411 char **to_free = NULL;
6412# endif
6413
6414 xpipe(channel);
6415 pid = BB_MMU ? xfork() : xvfork();
6416 if (pid == 0) { /* child */
6417 disable_restore_tty_pgrp_on_exit();
6418 /* Process substitution is not considered to be usual
6419 * 'command execution'.
6420 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
6421 */
6422 bb_signals(0
6423 + (1 << SIGTSTP)
6424 + (1 << SIGTTIN)
6425 + (1 << SIGTTOU)
6426 , SIG_IGN);
6427 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
6428 close(channel[0]); /* NB: close _first_, then move fd! */
6429 xmove_fd(channel[1], 1);
6430 /* Prevent it from trying to handle ctrl-z etc */
6431 IF_HUSH_JOB(G.run_list_level = 1;)
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006432# if ENABLE_HUSH_TRAP
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006433 /* Awful hack for `trap` or $(trap).
6434 *
6435 * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html
6436 * contains an example where "trap" is executed in a subshell:
6437 *
6438 * save_traps=$(trap)
6439 * ...
6440 * eval "$save_traps"
6441 *
6442 * Standard does not say that "trap" in subshell shall print
6443 * parent shell's traps. It only says that its output
6444 * must have suitable form, but then, in the above example
6445 * (which is not supposed to be normative), it implies that.
6446 *
6447 * bash (and probably other shell) does implement it
6448 * (traps are reset to defaults, but "trap" still shows them),
6449 * but as a result, "trap" logic is hopelessly messed up:
6450 *
6451 * # trap
6452 * trap -- 'echo Ho' SIGWINCH <--- we have a handler
6453 * # (trap) <--- trap is in subshell - no output (correct, traps are reset)
6454 * # true | trap <--- trap is in subshell - no output (ditto)
6455 * # echo `true | trap` <--- in subshell - output (but traps are reset!)
6456 * trap -- 'echo Ho' SIGWINCH
6457 * # echo `(trap)` <--- in subshell in subshell - output
6458 * trap -- 'echo Ho' SIGWINCH
6459 * # echo `true | (trap)` <--- in subshell in subshell in subshell - output!
6460 * trap -- 'echo Ho' SIGWINCH
6461 *
6462 * The rules when to forget and when to not forget traps
6463 * get really complex and nonsensical.
6464 *
6465 * Our solution: ONLY bare $(trap) or `trap` is special.
6466 */
6467 s = skip_whitespace(s);
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01006468 if (is_prefixed_with(s, "trap")
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006469 && skip_whitespace(s + 4)[0] == '\0'
6470 ) {
6471 static const char *const argv[] = { NULL, NULL };
6472 builtin_trap((char**)argv);
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02006473 fflush_all(); /* important */
6474 _exit(0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006475 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006476# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006477# if BB_MMU
6478 reset_traps_to_defaults();
6479 parse_and_run_string(s);
6480 _exit(G.last_exitcode);
6481# else
6482 /* We re-execute after vfork on NOMMU. This makes this script safe:
6483 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
6484 * huge=`cat BIG` # was blocking here forever
6485 * echo OK
6486 */
6487 re_execute_shell(&to_free,
6488 s,
6489 G.global_argv[0],
6490 G.global_argv + 1,
6491 NULL);
6492# endif
6493 }
6494
6495 /* parent */
6496 *pid_p = pid;
6497# if ENABLE_HUSH_FAST
6498 G.count_SIGCHLD++;
6499//bb_error_msg("[%d] fork in generate_stream_from_string:"
6500// " G.count_SIGCHLD:%d G.handled_SIGCHLD:%d",
6501// getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6502# endif
6503 enable_restore_tty_pgrp_on_exit();
6504# if !BB_MMU
6505 free(to_free);
6506# endif
6507 close(channel[1]);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02006508 return remember_FILE(xfdopen_for_read(channel[0]));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006509}
6510
6511/* Return code is exit status of the process that is run. */
6512static int process_command_subs(o_string *dest, const char *s)
6513{
6514 FILE *fp;
6515 struct in_str pipe_str;
6516 pid_t pid;
6517 int status, ch, eol_cnt;
6518
6519 fp = generate_stream_from_string(s, &pid);
6520
6521 /* Now send results of command back into original context */
6522 setup_file_in_str(&pipe_str, fp);
6523 eol_cnt = 0;
6524 while ((ch = i_getch(&pipe_str)) != EOF) {
6525 if (ch == '\n') {
6526 eol_cnt++;
6527 continue;
6528 }
6529 while (eol_cnt) {
6530 o_addchr(dest, '\n');
6531 eol_cnt--;
6532 }
6533 o_addQchr(dest, ch);
6534 }
6535
6536 debug_printf("done reading from `cmd` pipe, closing it\n");
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02006537 fclose_and_forget(fp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006538 /* We need to extract exitcode. Test case
6539 * "true; echo `sleep 1; false` $?"
6540 * should print 1 */
6541 safe_waitpid(pid, &status, 0);
6542 debug_printf("child exited. returning its exitcode:%d\n", WEXITSTATUS(status));
6543 return WEXITSTATUS(status);
6544}
6545#endif /* ENABLE_HUSH_TICK */
6546
6547
6548static void setup_heredoc(struct redir_struct *redir)
6549{
6550 struct fd_pair pair;
6551 pid_t pid;
6552 int len, written;
6553 /* the _body_ of heredoc (misleading field name) */
6554 const char *heredoc = redir->rd_filename;
6555 char *expanded;
6556#if !BB_MMU
6557 char **to_free;
6558#endif
6559
6560 expanded = NULL;
6561 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02006562 expanded = encode_then_expand_string(heredoc, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006563 if (expanded)
6564 heredoc = expanded;
6565 }
6566 len = strlen(heredoc);
6567
6568 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
6569 xpiped_pair(pair);
6570 xmove_fd(pair.rd, redir->rd_fd);
6571
6572 /* Try writing without forking. Newer kernels have
6573 * dynamically growing pipes. Must use non-blocking write! */
6574 ndelay_on(pair.wr);
6575 while (1) {
6576 written = write(pair.wr, heredoc, len);
6577 if (written <= 0)
6578 break;
6579 len -= written;
6580 if (len == 0) {
6581 close(pair.wr);
6582 free(expanded);
6583 return;
6584 }
6585 heredoc += written;
6586 }
6587 ndelay_off(pair.wr);
6588
6589 /* Okay, pipe buffer was not big enough */
6590 /* Note: we must not create a stray child (bastard? :)
6591 * for the unsuspecting parent process. Child creates a grandchild
6592 * and exits before parent execs the process which consumes heredoc
6593 * (that exec happens after we return from this function) */
6594#if !BB_MMU
6595 to_free = NULL;
6596#endif
6597 pid = xvfork();
6598 if (pid == 0) {
6599 /* child */
6600 disable_restore_tty_pgrp_on_exit();
6601 pid = BB_MMU ? xfork() : xvfork();
6602 if (pid != 0)
6603 _exit(0);
6604 /* grandchild */
6605 close(redir->rd_fd); /* read side of the pipe */
6606#if BB_MMU
6607 full_write(pair.wr, heredoc, len); /* may loop or block */
6608 _exit(0);
6609#else
6610 /* Delegate blocking writes to another process */
6611 xmove_fd(pair.wr, STDOUT_FILENO);
6612 re_execute_shell(&to_free, heredoc, NULL, NULL, NULL);
6613#endif
6614 }
6615 /* parent */
6616#if ENABLE_HUSH_FAST
6617 G.count_SIGCHLD++;
6618//bb_error_msg("[%d] fork in setup_heredoc: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6619#endif
6620 enable_restore_tty_pgrp_on_exit();
6621#if !BB_MMU
6622 free(to_free);
6623#endif
6624 close(pair.wr);
6625 free(expanded);
6626 wait(NULL); /* wait till child has died */
6627}
6628
Denys Vlasenko2db74612017-07-07 22:07:28 +02006629struct squirrel {
6630 int orig_fd;
6631 int moved_to;
6632 /* moved_to = n: fd was moved to n; restore back to orig_fd after redir */
6633 /* moved_to = -1: fd was opened by redirect; close orig_fd after redir */
6634};
6635
6636static struct squirrel *add_squirrel(struct squirrel *sq, int fd, int avoid_fd)
6637{
6638 int i = 0;
6639
6640 if (sq) while (sq[i].orig_fd >= 0) {
6641 /* If we collide with an already moved fd... */
6642 if (fd == sq[i].moved_to) {
6643 sq[i].moved_to = fcntl_F_DUPFD(sq[i].moved_to, avoid_fd);
6644 debug_printf_redir("redirect_fd %d: already busy, moving to %d\n", fd, sq[i].moved_to);
6645 if (sq[i].moved_to < 0) /* what? */
6646 xfunc_die();
6647 return sq;
6648 }
6649 if (fd == sq[i].orig_fd) {
6650 /* Example: echo Hello >/dev/null 1>&2 */
6651 debug_printf_redir("redirect_fd %d: already moved\n", fd);
6652 return sq;
6653 }
6654 i++;
6655 }
6656
6657 sq = xrealloc(sq, (i + 2) * sizeof(sq[0]));
6658 sq[i].orig_fd = fd;
6659 /* If this fd is open, we move and remember it; if it's closed, moved_to = -1 */
6660 sq[i].moved_to = fcntl_F_DUPFD(fd, avoid_fd);
6661 debug_printf_redir("redirect_fd %d: previous fd is moved to %d (-1 if it was closed)\n", fd, sq[i].moved_to);
6662 if (sq[i].moved_to < 0 && errno != EBADF)
6663 xfunc_die();
6664 sq[i+1].orig_fd = -1; /* end marker */
6665 return sq;
6666}
6667
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006668/* fd: redirect wants this fd to be used (e.g. 3>file).
6669 * Move all conflicting internally used fds,
6670 * and remember them so that we can restore them later.
6671 */
Denys Vlasenko2db74612017-07-07 22:07:28 +02006672static int save_fds_on_redirect(int fd, int avoid_fd, struct squirrel **sqp)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006673{
Denys Vlasenko2db74612017-07-07 22:07:28 +02006674 if (avoid_fd < 9) /* the important case here is that it can be -1 */
6675 avoid_fd = 9;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006676
6677#if ENABLE_HUSH_INTERACTIVE
6678 if (fd != 0 && fd == G.interactive_fd) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02006679 G.interactive_fd = xdup_and_close(G.interactive_fd, F_DUPFD_CLOEXEC, avoid_fd);
6680 debug_printf_redir("redirect_fd %d: matches interactive_fd, moving it to %d\n", fd, G.interactive_fd);
6681 return 1; /* "we closed fd" */
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006682 }
6683#endif
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006684 /* Are we called from setup_redirects(squirrel==NULL)? Two cases:
6685 * (1) Redirect in a forked child. No need to save FILEs' fds,
6686 * we aren't going to use them anymore, ok to trash.
Denys Vlasenko2db74612017-07-07 22:07:28 +02006687 * (2) "exec 3>FILE". Bummer. We can save script FILEs' fds,
6688 * but how are we doing to restore them?
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006689 * "fileno(fd) = new_fd" can't be done.
6690 */
Denys Vlasenko2db74612017-07-07 22:07:28 +02006691 if (!sqp)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006692 return 0;
6693
Denys Vlasenko2db74612017-07-07 22:07:28 +02006694 /* If this one of script's fds? */
6695 if (save_FILEs_on_redirect(fd, avoid_fd))
6696 return 1; /* yes. "we closed fd" */
6697
6698 /* Check whether it collides with any open fds (e.g. stdio), save fds as needed */
6699 *sqp = add_squirrel(*sqp, fd, avoid_fd);
6700 return 0; /* "we did not close fd" */
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006701}
6702
Denys Vlasenko2db74612017-07-07 22:07:28 +02006703static void restore_redirects(struct squirrel *sq)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006704{
Denys Vlasenko2db74612017-07-07 22:07:28 +02006705
6706 if (sq) {
6707 int i = 0;
6708 while (sq[i].orig_fd >= 0) {
6709 if (sq[i].moved_to >= 0) {
6710 /* We simply die on error */
6711 debug_printf_redir("restoring redirected fd from %d to %d\n", sq[i].moved_to, sq[i].orig_fd);
6712 xmove_fd(sq[i].moved_to, sq[i].orig_fd);
6713 } else {
6714 /* cmd1 9>FILE; cmd2_should_see_fd9_closed */
6715 debug_printf_redir("restoring redirected fd %d: closing it\n", sq[i].orig_fd);
6716 close(sq[i].orig_fd);
6717 }
6718 i++;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006719 }
Denys Vlasenko2db74612017-07-07 22:07:28 +02006720 free(sq);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006721 }
6722
Denys Vlasenko2db74612017-07-07 22:07:28 +02006723 /* If moved, G.interactive_fd stays on new fd, not restoring it */
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006724
6725 restore_redirected_FILEs();
6726}
6727
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006728/* squirrel != NULL means we squirrel away copies of stdin, stdout,
6729 * and stderr if they are redirected. */
Denys Vlasenko2db74612017-07-07 22:07:28 +02006730static int setup_redirects(struct command *prog, struct squirrel **sqp)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006731{
6732 int openfd, mode;
6733 struct redir_struct *redir;
6734
6735 for (redir = prog->redirects; redir; redir = redir->next) {
6736 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006737 /* "rd_fd<<HERE" case */
Denys Vlasenko2db74612017-07-07 22:07:28 +02006738 save_fds_on_redirect(redir->rd_fd, /*avoid:*/ 0, sqp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006739 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
6740 * of the heredoc */
6741 debug_printf_parse("set heredoc '%s'\n",
6742 redir->rd_filename);
6743 setup_heredoc(redir);
6744 continue;
6745 }
6746
6747 if (redir->rd_dup == REDIRFD_TO_FILE) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006748 /* "rd_fd<*>file" case (<*> is <,>,>>,<>) */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006749 char *p;
6750 if (redir->rd_filename == NULL) {
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02006751 /*
6752 * Examples:
6753 * "cmd >" (no filename)
6754 * "cmd > <file" (2nd redirect starts too early)
6755 */
6756 die_if_script("syntax error: %s", "invalid redirect");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006757 continue;
6758 }
6759 mode = redir_table[redir->rd_type].mode;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006760 p = expand_string_to_string(redir->rd_filename, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006761 openfd = open_or_warn(p, mode);
6762 free(p);
6763 if (openfd < 0) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006764 /* Error message from open_or_warn can be lost
6765 * if stderr has been redirected, but bash
6766 * and ash both lose it as well
6767 * (though zsh doesn't!)
6768 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006769 return 1;
6770 }
6771 } else {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006772 /* "rd_fd<*>rd_dup" or "rd_fd<*>-" cases */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006773 openfd = redir->rd_dup;
6774 }
6775
6776 if (openfd != redir->rd_fd) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02006777 int closed = save_fds_on_redirect(redir->rd_fd, /*avoid:*/ openfd, sqp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006778 if (openfd == REDIRFD_CLOSE) {
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006779 /* "rd_fd >&-" means "close me" */
6780 if (!closed) {
6781 /* ^^^ optimization: saving may already
6782 * have closed it. If not... */
6783 close(redir->rd_fd);
6784 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006785 } else {
6786 xdup2(openfd, redir->rd_fd);
6787 if (redir->rd_dup == REDIRFD_TO_FILE)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006788 /* "rd_fd > FILE" */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006789 close(openfd);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006790 /* else: "rd_fd > rd_dup" */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006791 }
6792 }
6793 }
6794 return 0;
6795}
6796
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006797static char *find_in_path(const char *arg)
6798{
6799 char *ret = NULL;
6800 const char *PATH = get_local_var_value("PATH");
6801
6802 if (!PATH)
6803 return NULL;
6804
6805 while (1) {
6806 const char *end = strchrnul(PATH, ':');
6807 int sz = end - PATH; /* must be int! */
6808
6809 free(ret);
6810 if (sz != 0) {
6811 ret = xasprintf("%.*s/%s", sz, PATH, arg);
6812 } else {
6813 /* We have xxx::yyyy in $PATH,
6814 * it means "use current dir" */
6815 ret = xstrdup(arg);
6816 }
6817 if (access(ret, F_OK) == 0)
6818 break;
6819
6820 if (*end == '\0') {
6821 free(ret);
6822 return NULL;
6823 }
6824 PATH = end + 1;
6825 }
6826
6827 return ret;
6828}
6829
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006830static const struct built_in_command *find_builtin_helper(const char *name,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006831 const struct built_in_command *x,
6832 const struct built_in_command *end)
6833{
6834 while (x != end) {
6835 if (strcmp(name, x->b_cmd) != 0) {
6836 x++;
6837 continue;
6838 }
6839 debug_printf_exec("found builtin '%s'\n", name);
6840 return x;
6841 }
6842 return NULL;
6843}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006844static const struct built_in_command *find_builtin1(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006845{
6846 return find_builtin_helper(name, bltins1, &bltins1[ARRAY_SIZE(bltins1)]);
6847}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006848static const struct built_in_command *find_builtin(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006849{
6850 const struct built_in_command *x = find_builtin1(name);
6851 if (x)
6852 return x;
6853 return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]);
6854}
6855
6856#if ENABLE_HUSH_FUNCTIONS
6857static struct function **find_function_slot(const char *name)
6858{
6859 struct function **funcpp = &G.top_func;
6860 while (*funcpp) {
6861 if (strcmp(name, (*funcpp)->name) == 0) {
6862 break;
6863 }
6864 funcpp = &(*funcpp)->next;
6865 }
6866 return funcpp;
6867}
6868
6869static const struct function *find_function(const char *name)
6870{
6871 const struct function *funcp = *find_function_slot(name);
6872 if (funcp)
6873 debug_printf_exec("found function '%s'\n", name);
6874 return funcp;
6875}
6876
6877/* Note: takes ownership on name ptr */
6878static struct function *new_function(char *name)
6879{
6880 struct function **funcpp = find_function_slot(name);
6881 struct function *funcp = *funcpp;
6882
6883 if (funcp != NULL) {
6884 struct command *cmd = funcp->parent_cmd;
6885 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
6886 if (!cmd) {
6887 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
6888 free(funcp->name);
6889 /* Note: if !funcp->body, do not free body_as_string!
6890 * This is a special case of "-F name body" function:
6891 * body_as_string was not malloced! */
6892 if (funcp->body) {
6893 free_pipe_list(funcp->body);
6894# if !BB_MMU
6895 free(funcp->body_as_string);
6896# endif
6897 }
6898 } else {
6899 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
6900 cmd->argv[0] = funcp->name;
6901 cmd->group = funcp->body;
6902# if !BB_MMU
6903 cmd->group_as_string = funcp->body_as_string;
6904# endif
6905 }
6906 } else {
6907 debug_printf_exec("remembering new function '%s'\n", name);
6908 funcp = *funcpp = xzalloc(sizeof(*funcp));
6909 /*funcp->next = NULL;*/
6910 }
6911
6912 funcp->name = name;
6913 return funcp;
6914}
6915
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006916# if ENABLE_HUSH_UNSET
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006917static void unset_func(const char *name)
6918{
6919 struct function **funcpp = find_function_slot(name);
6920 struct function *funcp = *funcpp;
6921
6922 if (funcp != NULL) {
6923 debug_printf_exec("freeing function '%s'\n", funcp->name);
6924 *funcpp = funcp->next;
6925 /* funcp is unlinked now, deleting it.
6926 * Note: if !funcp->body, the function was created by
6927 * "-F name body", do not free ->body_as_string
6928 * and ->name as they were not malloced. */
6929 if (funcp->body) {
6930 free_pipe_list(funcp->body);
6931 free(funcp->name);
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006932# if !BB_MMU
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006933 free(funcp->body_as_string);
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006934# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006935 }
6936 free(funcp);
6937 }
6938}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006939# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006940
6941# if BB_MMU
6942#define exec_function(to_free, funcp, argv) \
6943 exec_function(funcp, argv)
6944# endif
6945static void exec_function(char ***to_free,
6946 const struct function *funcp,
6947 char **argv) NORETURN;
6948static void exec_function(char ***to_free,
6949 const struct function *funcp,
6950 char **argv)
6951{
6952# if BB_MMU
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02006953 int n;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006954
6955 argv[0] = G.global_argv[0];
6956 G.global_argv = argv;
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02006957 G.global_argc = n = 1 + string_array_len(argv + 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006958 /* On MMU, funcp->body is always non-NULL */
6959 n = run_list(funcp->body);
6960 fflush_all();
6961 _exit(n);
6962# else
6963 re_execute_shell(to_free,
6964 funcp->body_as_string,
6965 G.global_argv[0],
6966 argv + 1,
6967 NULL);
6968# endif
6969}
6970
6971static int run_function(const struct function *funcp, char **argv)
6972{
6973 int rc;
6974 save_arg_t sv;
6975 smallint sv_flg;
6976
6977 save_and_replace_G_args(&sv, argv);
6978
6979 /* "we are in function, ok to use return" */
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006980 sv_flg = G_flag_return_in_progress;
6981 G_flag_return_in_progress = -1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006982# if ENABLE_HUSH_LOCAL
6983 G.func_nest_level++;
6984# endif
6985
6986 /* On MMU, funcp->body is always non-NULL */
6987# if !BB_MMU
6988 if (!funcp->body) {
6989 /* Function defined by -F */
6990 parse_and_run_string(funcp->body_as_string);
6991 rc = G.last_exitcode;
6992 } else
6993# endif
6994 {
6995 rc = run_list(funcp->body);
6996 }
6997
6998# if ENABLE_HUSH_LOCAL
6999 {
7000 struct variable *var;
7001 struct variable **var_pp;
7002
7003 var_pp = &G.top_var;
7004 while ((var = *var_pp) != NULL) {
7005 if (var->func_nest_level < G.func_nest_level) {
7006 var_pp = &var->next;
7007 continue;
7008 }
7009 /* Unexport */
7010 if (var->flg_export)
7011 bb_unsetenv(var->varstr);
7012 /* Remove from global list */
7013 *var_pp = var->next;
7014 /* Free */
7015 if (!var->max_len)
7016 free(var->varstr);
7017 free(var);
7018 }
7019 G.func_nest_level--;
7020 }
7021# endif
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02007022 G_flag_return_in_progress = sv_flg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007023
7024 restore_G_args(&sv, argv);
7025
7026 return rc;
7027}
7028#endif /* ENABLE_HUSH_FUNCTIONS */
7029
7030
7031#if BB_MMU
7032#define exec_builtin(to_free, x, argv) \
7033 exec_builtin(x, argv)
7034#else
7035#define exec_builtin(to_free, x, argv) \
7036 exec_builtin(to_free, argv)
7037#endif
7038static void exec_builtin(char ***to_free,
7039 const struct built_in_command *x,
7040 char **argv) NORETURN;
7041static void exec_builtin(char ***to_free,
7042 const struct built_in_command *x,
7043 char **argv)
7044{
7045#if BB_MMU
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01007046 int rcode;
7047 fflush_all();
7048 rcode = x->b_function(argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007049 fflush_all();
7050 _exit(rcode);
7051#else
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01007052 fflush_all();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007053 /* On NOMMU, we must never block!
7054 * Example: { sleep 99 | read line; } & echo Ok
7055 */
7056 re_execute_shell(to_free,
7057 argv[0],
7058 G.global_argv[0],
7059 G.global_argv + 1,
7060 argv);
7061#endif
7062}
7063
7064
7065static void execvp_or_die(char **argv) NORETURN;
7066static void execvp_or_die(char **argv)
7067{
Denys Vlasenko04465da2016-10-03 01:01:15 +02007068 int e;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007069 debug_printf_exec("execing '%s'\n", argv[0]);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02007070 /* Don't propagate SIG_IGN to the child */
7071 if (SPECIAL_JOBSTOP_SIGS != 0)
7072 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007073 execvp(argv[0], argv);
Denys Vlasenko04465da2016-10-03 01:01:15 +02007074 e = 2;
7075 if (errno == EACCES) e = 126;
7076 if (errno == ENOENT) e = 127;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007077 bb_perror_msg("can't execute '%s'", argv[0]);
Denys Vlasenko04465da2016-10-03 01:01:15 +02007078 _exit(e);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007079}
7080
7081#if ENABLE_HUSH_MODE_X
7082static void dump_cmd_in_x_mode(char **argv)
7083{
7084 if (G_x_mode && argv) {
7085 /* We want to output the line in one write op */
7086 char *buf, *p;
7087 int len;
7088 int n;
7089
7090 len = 3;
7091 n = 0;
7092 while (argv[n])
7093 len += strlen(argv[n++]) + 1;
7094 buf = xmalloc(len);
7095 buf[0] = '+';
7096 p = buf + 1;
7097 n = 0;
7098 while (argv[n])
7099 p += sprintf(p, " %s", argv[n++]);
7100 *p++ = '\n';
7101 *p = '\0';
7102 fputs(buf, stderr);
7103 free(buf);
7104 }
7105}
7106#else
7107# define dump_cmd_in_x_mode(argv) ((void)0)
7108#endif
7109
7110#if BB_MMU
7111#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
7112 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
7113#define pseudo_exec(nommu_save, command, argv_expanded) \
7114 pseudo_exec(command, argv_expanded)
7115#endif
7116
7117/* Called after [v]fork() in run_pipe, or from builtin_exec.
7118 * Never returns.
7119 * Don't exit() here. If you don't exec, use _exit instead.
7120 * The at_exit handlers apparently confuse the calling process,
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02007121 * in particular stdin handling. Not sure why? -- because of vfork! (vda)
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02007122 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007123static void pseudo_exec_argv(nommu_save_t *nommu_save,
7124 char **argv, int assignment_cnt,
7125 char **argv_expanded) NORETURN;
7126static NOINLINE void pseudo_exec_argv(nommu_save_t *nommu_save,
7127 char **argv, int assignment_cnt,
7128 char **argv_expanded)
7129{
7130 char **new_env;
7131
7132 new_env = expand_assignments(argv, assignment_cnt);
7133 dump_cmd_in_x_mode(new_env);
7134
7135 if (!argv[assignment_cnt]) {
7136 /* Case when we are here: ... | var=val | ...
7137 * (note that we do not exit early, i.e., do not optimize out
7138 * expand_assignments(): think about ... | var=`sleep 1` | ...
7139 */
7140 free_strings(new_env);
7141 _exit(EXIT_SUCCESS);
7142 }
7143
7144#if BB_MMU
7145 set_vars_and_save_old(new_env);
7146 free(new_env); /* optional */
7147 /* we can also destroy set_vars_and_save_old's return value,
7148 * to save memory */
7149#else
7150 nommu_save->new_env = new_env;
7151 nommu_save->old_vars = set_vars_and_save_old(new_env);
7152#endif
7153
7154 if (argv_expanded) {
7155 argv = argv_expanded;
7156 } else {
7157 argv = expand_strvec_to_strvec(argv + assignment_cnt);
7158#if !BB_MMU
7159 nommu_save->argv = argv;
7160#endif
7161 }
7162 dump_cmd_in_x_mode(argv);
7163
7164#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
7165 if (strchr(argv[0], '/') != NULL)
7166 goto skip;
7167#endif
7168
7169 /* Check if the command matches any of the builtins.
7170 * Depending on context, this might be redundant. But it's
7171 * easier to waste a few CPU cycles than it is to figure out
7172 * if this is one of those cases.
7173 */
7174 {
7175 /* On NOMMU, it is more expensive to re-execute shell
7176 * just in order to run echo or test builtin.
7177 * It's better to skip it here and run corresponding
7178 * non-builtin later. */
7179 const struct built_in_command *x;
7180 x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]);
7181 if (x) {
7182 exec_builtin(&nommu_save->argv_from_re_execing, x, argv);
7183 }
7184 }
7185#if ENABLE_HUSH_FUNCTIONS
7186 /* Check if the command matches any functions */
7187 {
7188 const struct function *funcp = find_function(argv[0]);
7189 if (funcp) {
7190 exec_function(&nommu_save->argv_from_re_execing, funcp, argv);
7191 }
7192 }
7193#endif
7194
7195#if ENABLE_FEATURE_SH_STANDALONE
7196 /* Check if the command matches any busybox applets */
7197 {
7198 int a = find_applet_by_name(argv[0]);
7199 if (a >= 0) {
7200# if BB_MMU /* see above why on NOMMU it is not allowed */
7201 if (APPLET_IS_NOEXEC(a)) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02007202 /* Do not leak open fds from opened script files etc */
7203 close_all_FILE_list();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007204 debug_printf_exec("running applet '%s'\n", argv[0]);
Denys Vlasenko69a5ec92017-07-07 19:08:56 +02007205 run_applet_no_and_exit(a, argv[0], argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007206 }
7207# endif
7208 /* Re-exec ourselves */
7209 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02007210 /* Don't propagate SIG_IGN to the child */
7211 if (SPECIAL_JOBSTOP_SIGS != 0)
7212 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007213 execv(bb_busybox_exec_path, argv);
7214 /* If they called chroot or otherwise made the binary no longer
7215 * executable, fall through */
7216 }
7217 }
7218#endif
7219
7220#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
7221 skip:
7222#endif
7223 execvp_or_die(argv);
7224}
7225
7226/* Called after [v]fork() in run_pipe
7227 */
7228static void pseudo_exec(nommu_save_t *nommu_save,
7229 struct command *command,
7230 char **argv_expanded) NORETURN;
7231static void pseudo_exec(nommu_save_t *nommu_save,
7232 struct command *command,
7233 char **argv_expanded)
7234{
7235 if (command->argv) {
7236 pseudo_exec_argv(nommu_save, command->argv,
7237 command->assignment_cnt, argv_expanded);
7238 }
7239
7240 if (command->group) {
7241 /* Cases when we are here:
7242 * ( list )
7243 * { list } &
7244 * ... | ( list ) | ...
7245 * ... | { list } | ...
7246 */
7247#if BB_MMU
7248 int rcode;
7249 debug_printf_exec("pseudo_exec: run_list\n");
7250 reset_traps_to_defaults();
7251 rcode = run_list(command->group);
7252 /* OK to leak memory by not calling free_pipe_list,
7253 * since this process is about to exit */
7254 _exit(rcode);
7255#else
7256 re_execute_shell(&nommu_save->argv_from_re_execing,
7257 command->group_as_string,
7258 G.global_argv[0],
7259 G.global_argv + 1,
7260 NULL);
7261#endif
7262 }
7263
7264 /* Case when we are here: ... | >file */
7265 debug_printf_exec("pseudo_exec'ed null command\n");
7266 _exit(EXIT_SUCCESS);
7267}
7268
7269#if ENABLE_HUSH_JOB
7270static const char *get_cmdtext(struct pipe *pi)
7271{
7272 char **argv;
7273 char *p;
7274 int len;
7275
7276 /* This is subtle. ->cmdtext is created only on first backgrounding.
7277 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
7278 * On subsequent bg argv is trashed, but we won't use it */
7279 if (pi->cmdtext)
7280 return pi->cmdtext;
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007281
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007282 argv = pi->cmds[0].argv;
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007283 if (!argv) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007284 pi->cmdtext = xzalloc(1);
7285 return pi->cmdtext;
7286 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007287 len = 0;
7288 do {
7289 len += strlen(*argv) + 1;
7290 } while (*++argv);
7291 p = xmalloc(len);
7292 pi->cmdtext = p;
7293 argv = pi->cmds[0].argv;
7294 do {
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007295 p = stpcpy(p, *argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007296 *p++ = ' ';
7297 } while (*++argv);
7298 p[-1] = '\0';
7299 return pi->cmdtext;
7300}
7301
Denys Vlasenko2ed74e22017-07-14 19:58:46 +02007302static void remove_job_from_table(struct pipe *pi)
7303{
7304 struct pipe *prev_pipe;
7305
7306 if (pi == G.job_list) {
7307 G.job_list = pi->next;
7308 } else {
7309 prev_pipe = G.job_list;
7310 while (prev_pipe->next != pi)
7311 prev_pipe = prev_pipe->next;
7312 prev_pipe->next = pi->next;
7313 }
7314 G.last_jobid = 0;
7315 if (G.job_list)
7316 G.last_jobid = G.job_list->jobid;
7317}
7318
7319static void delete_finished_job(struct pipe *pi)
7320{
7321 remove_job_from_table(pi);
7322 free_pipe(pi);
7323}
7324
7325static void clean_up_last_dead_job(void)
7326{
7327 if (G.job_list && !G.job_list->alive_cmds)
7328 delete_finished_job(G.job_list);
7329}
7330
Denys Vlasenko16096292017-07-10 10:00:28 +02007331static void insert_job_into_table(struct pipe *pi)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007332{
7333 struct pipe *job, **jobp;
7334 int i;
7335
Denys Vlasenko2ed74e22017-07-14 19:58:46 +02007336 clean_up_last_dead_job();
7337
Denys Vlasenko9e55a152017-07-10 10:01:12 +02007338 /* Find the end of the list, and find next job ID to use */
7339 i = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007340 jobp = &G.job_list;
Denys Vlasenko9e55a152017-07-10 10:01:12 +02007341 while ((job = *jobp) != NULL) {
7342 if (job->jobid > i)
7343 i = job->jobid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007344 jobp = &job->next;
Denys Vlasenko9e55a152017-07-10 10:01:12 +02007345 }
7346 pi->jobid = i + 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007347
Denys Vlasenko9e55a152017-07-10 10:01:12 +02007348 /* Create a new job struct at the end */
7349 job = *jobp = xmemdup(pi, sizeof(*pi));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007350 job->next = NULL;
7351 job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
7352 /* Cannot copy entire pi->cmds[] vector! This causes double frees */
7353 for (i = 0; i < pi->num_cmds; i++) {
7354 job->cmds[i].pid = pi->cmds[i].pid;
7355 /* all other fields are not used and stay zero */
7356 }
7357 job->cmdtext = xstrdup(get_cmdtext(pi));
7358
7359 if (G_interactive_fd)
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01007360 printf("[%u] %u %s\n", job->jobid, (unsigned)job->cmds[0].pid, job->cmdtext);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007361 G.last_jobid = job->jobid;
7362}
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007363#endif /* JOB */
7364
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007365static int job_exited_or_stopped(struct pipe *pi)
7366{
7367 int rcode, i;
7368
7369 if (pi->alive_cmds != pi->stopped_cmds)
7370 return -1;
7371
7372 /* All processes in fg pipe have exited or stopped */
7373 rcode = 0;
7374 i = pi->num_cmds;
7375 while (--i >= 0) {
7376 rcode = pi->cmds[i].cmd_exitcode;
7377 /* usually last process gives overall exitstatus,
7378 * but with "set -o pipefail", last *failed* process does */
7379 if (G.o_opt[OPT_O_PIPEFAIL] == 0 || rcode != 0)
7380 break;
7381 }
7382 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7383 return rcode;
7384}
7385
Denys Vlasenko7e675362016-10-28 21:57:31 +02007386static int process_wait_result(struct pipe *fg_pipe, pid_t childpid, int status)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007387{
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007388#if ENABLE_HUSH_JOB
7389 struct pipe *pi;
7390#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02007391 int i, dead;
7392
7393 dead = WIFEXITED(status) || WIFSIGNALED(status);
7394
7395#if DEBUG_JOBS
7396 if (WIFSTOPPED(status))
7397 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
7398 childpid, WSTOPSIG(status), WEXITSTATUS(status));
7399 if (WIFSIGNALED(status))
7400 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
7401 childpid, WTERMSIG(status), WEXITSTATUS(status));
7402 if (WIFEXITED(status))
7403 debug_printf_jobs("pid %d exited, exitcode %d\n",
7404 childpid, WEXITSTATUS(status));
7405#endif
7406 /* Were we asked to wait for a fg pipe? */
7407 if (fg_pipe) {
7408 i = fg_pipe->num_cmds;
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007409
Denys Vlasenko7e675362016-10-28 21:57:31 +02007410 while (--i >= 0) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007411 int rcode;
7412
Denys Vlasenko7e675362016-10-28 21:57:31 +02007413 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
7414 if (fg_pipe->cmds[i].pid != childpid)
7415 continue;
7416 if (dead) {
7417 int ex;
7418 fg_pipe->cmds[i].pid = 0;
7419 fg_pipe->alive_cmds--;
7420 ex = WEXITSTATUS(status);
7421 /* bash prints killer signal's name for *last*
7422 * process in pipe (prints just newline for SIGINT/SIGPIPE).
7423 * Mimic this. Example: "sleep 5" + (^\ or kill -QUIT)
7424 */
7425 if (WIFSIGNALED(status)) {
7426 int sig = WTERMSIG(status);
7427 if (i == fg_pipe->num_cmds-1)
7428 /* TODO: use strsignal() instead for bash compat? but that's bloat... */
7429 puts(sig == SIGINT || sig == SIGPIPE ? "" : get_signame(sig));
7430 /* TODO: if (WCOREDUMP(status)) + " (core dumped)"; */
7431 /* TODO: MIPS has 128 sigs (1..128), what if sig==128 here?
7432 * Maybe we need to use sig | 128? */
7433 ex = sig + 128;
7434 }
7435 fg_pipe->cmds[i].cmd_exitcode = ex;
7436 } else {
7437 fg_pipe->stopped_cmds++;
7438 }
7439 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
7440 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007441 rcode = job_exited_or_stopped(fg_pipe);
7442 if (rcode >= 0) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007443/* Note: *non-interactive* bash does not continue if all processes in fg pipe
7444 * are stopped. Testcase: "cat | cat" in a script (not on command line!)
7445 * and "killall -STOP cat" */
7446 if (G_interactive_fd) {
7447#if ENABLE_HUSH_JOB
7448 if (fg_pipe->alive_cmds != 0)
Denys Vlasenko16096292017-07-10 10:00:28 +02007449 insert_job_into_table(fg_pipe);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007450#endif
7451 return rcode;
7452 }
7453 if (fg_pipe->alive_cmds == 0)
7454 return rcode;
7455 }
7456 /* There are still running processes in the fg_pipe */
7457 return -1;
7458 }
Denys Vlasenko10ad6222017-04-17 16:13:32 +02007459 /* It wasn't in fg_pipe, look for process in bg pipes */
Denys Vlasenko7e675362016-10-28 21:57:31 +02007460 }
7461
7462#if ENABLE_HUSH_JOB
7463 /* We were asked to wait for bg or orphaned children */
7464 /* No need to remember exitcode in this case */
7465 for (pi = G.job_list; pi; pi = pi->next) {
7466 for (i = 0; i < pi->num_cmds; i++) {
7467 if (pi->cmds[i].pid == childpid)
7468 goto found_pi_and_prognum;
7469 }
7470 }
7471 /* Happens when shell is used as init process (init=/bin/sh) */
7472 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
7473 return -1; /* this wasn't a process from fg_pipe */
7474
7475 found_pi_and_prognum:
7476 if (dead) {
7477 /* child exited */
Denys Vlasenko840a4352017-07-07 22:56:02 +02007478 int rcode = WEXITSTATUS(status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007479 if (WIFSIGNALED(status))
Denys Vlasenko840a4352017-07-07 22:56:02 +02007480 rcode = 128 + WTERMSIG(status);
7481 pi->cmds[i].cmd_exitcode = rcode;
7482 if (G.last_bg_pid == pi->cmds[i].pid)
7483 G.last_bg_pid_exitcode = rcode;
7484 pi->cmds[i].pid = 0;
Denys Vlasenko7e675362016-10-28 21:57:31 +02007485 pi->alive_cmds--;
7486 if (!pi->alive_cmds) {
Denys Vlasenko2ed74e22017-07-14 19:58:46 +02007487 if (G_interactive_fd) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007488 printf(JOB_STATUS_FORMAT, pi->jobid,
7489 "Done", pi->cmdtext);
Denys Vlasenko2ed74e22017-07-14 19:58:46 +02007490 delete_finished_job(pi);
7491 } else {
7492/*
7493 * bash deletes finished jobs from job table only in interactive mode,
7494 * after "jobs" cmd, or if pid of a new process matches one of the old ones
7495 * (see cleanup_dead_jobs(), delete_old_job(), J_NOTIFIED in bash source).
7496 * Testcase script: "(exit 3) & sleep 1; wait %1; echo $?" prints 3 in bash.
7497 * We only retain one "dead" job, if it's the single job on the list.
7498 * This covers most of real-world scenarios where this is useful.
7499 */
7500 if (pi != G.job_list)
7501 delete_finished_job(pi);
7502 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007503 }
7504 } else {
7505 /* child stopped */
7506 pi->stopped_cmds++;
7507 }
7508#endif
7509 return -1; /* this wasn't a process from fg_pipe */
7510}
7511
7512/* Check to see if any processes have exited -- if they have,
7513 * figure out why and see if a job has completed.
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007514 *
7515 * If non-NULL fg_pipe: wait for its completion or stop.
7516 * Return its exitcode or zero if stopped.
7517 *
7518 * Alternatively (fg_pipe == NULL, waitfor_pid != 0):
7519 * waitpid(WNOHANG), if waitfor_pid exits or stops, return exitcode+1,
7520 * else return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for)
7521 * or 0 if no children changed status.
7522 *
7523 * Alternatively (fg_pipe == NULL, waitfor_pid == 0),
7524 * return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for)
7525 * or 0 if no children changed status.
Denys Vlasenko7e675362016-10-28 21:57:31 +02007526 */
7527static int checkjobs(struct pipe *fg_pipe, pid_t waitfor_pid)
7528{
7529 int attributes;
7530 int status;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007531 int rcode = 0;
7532
7533 debug_printf_jobs("checkjobs %p\n", fg_pipe);
7534
7535 attributes = WUNTRACED;
7536 if (fg_pipe == NULL)
7537 attributes |= WNOHANG;
7538
7539 errno = 0;
7540#if ENABLE_HUSH_FAST
7541 if (G.handled_SIGCHLD == G.count_SIGCHLD) {
7542//bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p",
7543//getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe);
7544 /* There was neither fork nor SIGCHLD since last waitpid */
7545 /* Avoid doing waitpid syscall if possible */
7546 if (!G.we_have_children) {
7547 errno = ECHILD;
7548 return -1;
7549 }
7550 if (fg_pipe == NULL) { /* is WNOHANG set? */
7551 /* We have children, but they did not exit
7552 * or stop yet (we saw no SIGCHLD) */
7553 return 0;
7554 }
7555 /* else: !WNOHANG, waitpid will block, can't short-circuit */
7556 }
7557#endif
7558
7559/* Do we do this right?
7560 * bash-3.00# sleep 20 | false
7561 * <ctrl-Z pressed>
7562 * [3]+ Stopped sleep 20 | false
7563 * bash-3.00# echo $?
7564 * 1 <========== bg pipe is not fully done, but exitcode is already known!
7565 * [hush 1.14.0: yes we do it right]
7566 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007567 while (1) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007568 pid_t childpid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007569#if ENABLE_HUSH_FAST
Denys Vlasenko7e675362016-10-28 21:57:31 +02007570 int i;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007571 i = G.count_SIGCHLD;
7572#endif
7573 childpid = waitpid(-1, &status, attributes);
7574 if (childpid <= 0) {
7575 if (childpid && errno != ECHILD)
7576 bb_perror_msg("waitpid");
7577#if ENABLE_HUSH_FAST
7578 else { /* Until next SIGCHLD, waitpid's are useless */
7579 G.we_have_children = (childpid == 0);
7580 G.handled_SIGCHLD = i;
7581//bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
7582 }
7583#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02007584 /* ECHILD (no children), or 0 (no change in children status) */
7585 rcode = childpid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007586 break;
7587 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007588 rcode = process_wait_result(fg_pipe, childpid, status);
7589 if (rcode >= 0) {
7590 /* fg_pipe exited or stopped */
7591 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007592 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007593 if (childpid == waitfor_pid) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007594 debug_printf_exec("childpid==waitfor_pid:%d status:0x%08x\n", childpid, status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007595 rcode = WEXITSTATUS(status);
7596 if (WIFSIGNALED(status))
7597 rcode = 128 + WTERMSIG(status);
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007598 if (WIFSTOPPED(status))
7599 /* bash: "cmd & wait $!" and cmd stops: $? = 128 + stopsig */
7600 rcode = 128 + WSTOPSIG(status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007601 rcode++;
7602 break; /* "wait PID" called us, give it exitcode+1 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007603 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007604 /* This wasn't one of our processes, or */
7605 /* fg_pipe still has running processes, do waitpid again */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007606 } /* while (waitpid succeeds)... */
7607
7608 return rcode;
7609}
7610
7611#if ENABLE_HUSH_JOB
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02007612static int checkjobs_and_fg_shell(struct pipe *fg_pipe)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007613{
7614 pid_t p;
Denys Vlasenko7e675362016-10-28 21:57:31 +02007615 int rcode = checkjobs(fg_pipe, 0 /*(no pid to wait for)*/);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007616 if (G_saved_tty_pgrp) {
7617 /* Job finished, move the shell to the foreground */
7618 p = getpgrp(); /* our process group id */
7619 debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p);
7620 tcsetpgrp(G_interactive_fd, p);
7621 }
7622 return rcode;
7623}
7624#endif
7625
7626/* Start all the jobs, but don't wait for anything to finish.
7627 * See checkjobs().
7628 *
7629 * Return code is normally -1, when the caller has to wait for children
7630 * to finish to determine the exit status of the pipe. If the pipe
7631 * is a simple builtin command, however, the action is done by the
7632 * time run_pipe returns, and the exit code is provided as the
7633 * return value.
7634 *
7635 * Returns -1 only if started some children. IOW: we have to
7636 * mask out retvals of builtins etc with 0xff!
7637 *
7638 * The only case when we do not need to [v]fork is when the pipe
7639 * is single, non-backgrounded, non-subshell command. Examples:
7640 * cmd ; ... { list } ; ...
7641 * cmd && ... { list } && ...
7642 * cmd || ... { list } || ...
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007643 * If it is, then we can run cmd as a builtin, NOFORK,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007644 * or (if SH_STANDALONE) an applet, and we can run the { list }
7645 * with run_list. If it isn't one of these, we fork and exec cmd.
7646 *
7647 * Cases when we must fork:
7648 * non-single: cmd | cmd
7649 * backgrounded: cmd & { list } &
7650 * subshell: ( list ) [&]
7651 */
7652#if !ENABLE_HUSH_MODE_X
Denys Vlasenko26777aa2010-11-22 23:49:10 +01007653#define redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel, argv_expanded) \
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007654 redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel)
7655#endif
7656static int redirect_and_varexp_helper(char ***new_env_p,
7657 struct variable **old_vars_p,
7658 struct command *command,
Denys Vlasenko2db74612017-07-07 22:07:28 +02007659 struct squirrel **sqp,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007660 char **argv_expanded)
7661{
7662 /* setup_redirects acts on file descriptors, not FILEs.
7663 * This is perfect for work that comes after exec().
7664 * Is it really safe for inline use? Experimentally,
7665 * things seem to work. */
Denys Vlasenko2db74612017-07-07 22:07:28 +02007666 int rcode = setup_redirects(command, sqp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007667 if (rcode == 0) {
7668 char **new_env = expand_assignments(command->argv, command->assignment_cnt);
7669 *new_env_p = new_env;
7670 dump_cmd_in_x_mode(new_env);
7671 dump_cmd_in_x_mode(argv_expanded);
7672 if (old_vars_p)
7673 *old_vars_p = set_vars_and_save_old(new_env);
7674 }
7675 return rcode;
7676}
7677static NOINLINE int run_pipe(struct pipe *pi)
7678{
7679 static const char *const null_ptr = NULL;
7680
7681 int cmd_no;
7682 int next_infd;
7683 struct command *command;
7684 char **argv_expanded;
7685 char **argv;
Denys Vlasenko2db74612017-07-07 22:07:28 +02007686 struct squirrel *squirrel = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007687 int rcode;
7688
7689 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
7690 debug_enter();
7691
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02007692 /* Testcase: set -- q w e; (IFS='' echo "$*"; IFS=''; echo "$*"); echo "$*"
7693 * Result should be 3 lines: q w e, qwe, q w e
7694 */
7695 G.ifs = get_local_var_value("IFS");
7696 if (!G.ifs)
7697 G.ifs = defifs;
7698
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007699 IF_HUSH_JOB(pi->pgrp = -1;)
7700 pi->stopped_cmds = 0;
7701 command = &pi->cmds[0];
7702 argv_expanded = NULL;
7703
7704 if (pi->num_cmds != 1
7705 || pi->followup == PIPE_BG
7706 || command->cmd_type == CMD_SUBSHELL
7707 ) {
7708 goto must_fork;
7709 }
7710
7711 pi->alive_cmds = 1;
7712
7713 debug_printf_exec(": group:%p argv:'%s'\n",
7714 command->group, command->argv ? command->argv[0] : "NONE");
7715
7716 if (command->group) {
7717#if ENABLE_HUSH_FUNCTIONS
7718 if (command->cmd_type == CMD_FUNCDEF) {
7719 /* "executing" func () { list } */
7720 struct function *funcp;
7721
7722 funcp = new_function(command->argv[0]);
7723 /* funcp->name is already set to argv[0] */
7724 funcp->body = command->group;
7725# if !BB_MMU
7726 funcp->body_as_string = command->group_as_string;
7727 command->group_as_string = NULL;
7728# endif
7729 command->group = NULL;
7730 command->argv[0] = NULL;
7731 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
7732 funcp->parent_cmd = command;
7733 command->child_func = funcp;
7734
7735 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
7736 debug_leave();
7737 return EXIT_SUCCESS;
7738 }
7739#endif
7740 /* { list } */
7741 debug_printf("non-subshell group\n");
7742 rcode = 1; /* exitcode if redir failed */
Denys Vlasenko2db74612017-07-07 22:07:28 +02007743 if (setup_redirects(command, &squirrel) == 0) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007744 debug_printf_exec(": run_list\n");
7745 rcode = run_list(command->group) & 0xff;
7746 }
7747 restore_redirects(squirrel);
7748 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7749 debug_leave();
7750 debug_printf_exec("run_pipe: return %d\n", rcode);
7751 return rcode;
7752 }
7753
7754 argv = command->argv ? command->argv : (char **) &null_ptr;
7755 {
7756 const struct built_in_command *x;
7757#if ENABLE_HUSH_FUNCTIONS
7758 const struct function *funcp;
7759#else
7760 enum { funcp = 0 };
7761#endif
7762 char **new_env = NULL;
7763 struct variable *old_vars = NULL;
7764
7765 if (argv[command->assignment_cnt] == NULL) {
7766 /* Assignments, but no command */
7767 /* Ensure redirects take effect (that is, create files).
7768 * Try "a=t >file" */
7769#if 0 /* A few cases in testsuite fail with this code. FIXME */
Denys Vlasenko2db74612017-07-07 22:07:28 +02007770 rcode = redirect_and_varexp_helper(&new_env, /*old_vars:*/ NULL, command, &squirrel, /*argv_expanded:*/ NULL);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007771 /* Set shell variables */
7772 if (new_env) {
7773 argv = new_env;
7774 while (*argv) {
7775 set_local_var(*argv, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
7776 /* Do we need to flag set_local_var() errors?
7777 * "assignment to readonly var" and "putenv error"
7778 */
7779 argv++;
7780 }
7781 }
7782 /* Redirect error sets $? to 1. Otherwise,
7783 * if evaluating assignment value set $?, retain it.
7784 * Try "false; q=`exit 2`; echo $?" - should print 2: */
7785 if (rcode == 0)
7786 rcode = G.last_exitcode;
7787 /* Exit, _skipping_ variable restoring code: */
7788 goto clean_up_and_ret0;
7789
7790#else /* Older, bigger, but more correct code */
7791
Denys Vlasenko2db74612017-07-07 22:07:28 +02007792 rcode = setup_redirects(command, &squirrel);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007793 restore_redirects(squirrel);
7794 /* Set shell variables */
7795 if (G_x_mode)
7796 bb_putchar_stderr('+');
7797 while (*argv) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02007798 char *p = expand_string_to_string(*argv, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007799 if (G_x_mode)
7800 fprintf(stderr, " %s", p);
7801 debug_printf_exec("set shell var:'%s'->'%s'\n",
7802 *argv, p);
7803 set_local_var(p, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
7804 /* Do we need to flag set_local_var() errors?
7805 * "assignment to readonly var" and "putenv error"
7806 */
7807 argv++;
7808 }
7809 if (G_x_mode)
7810 bb_putchar_stderr('\n');
7811 /* Redirect error sets $? to 1. Otherwise,
7812 * if evaluating assignment value set $?, retain it.
7813 * Try "false; q=`exit 2`; echo $?" - should print 2: */
7814 if (rcode == 0)
7815 rcode = G.last_exitcode;
7816 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7817 debug_leave();
7818 debug_printf_exec("run_pipe: return %d\n", rcode);
7819 return rcode;
7820#endif
7821 }
7822
7823 /* Expand the rest into (possibly) many strings each */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01007824#if BASH_TEST2
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007825 if (command->cmd_type == CMD_SINGLEWORD_NOGLOB) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007826 argv_expanded = expand_strvec_to_strvec_singleword_noglob(argv + command->assignment_cnt);
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007827 } else
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007828#endif
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007829 {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007830 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
7831 }
7832
7833 /* if someone gives us an empty string: `cmd with empty output` */
7834 if (!argv_expanded[0]) {
7835 free(argv_expanded);
7836 debug_leave();
7837 return G.last_exitcode;
7838 }
7839
7840 x = find_builtin(argv_expanded[0]);
7841#if ENABLE_HUSH_FUNCTIONS
7842 funcp = NULL;
7843 if (!x)
7844 funcp = find_function(argv_expanded[0]);
7845#endif
7846 if (x || funcp) {
7847 if (!funcp) {
7848 if (x->b_function == builtin_exec && argv_expanded[1] == NULL) {
7849 debug_printf("exec with redirects only\n");
7850 rcode = setup_redirects(command, NULL);
Denys Vlasenko869994c2016-08-20 15:16:00 +02007851 /* rcode=1 can be if redir file can't be opened */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007852 goto clean_up_and_ret1;
7853 }
7854 }
Denys Vlasenko2db74612017-07-07 22:07:28 +02007855 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, &squirrel, argv_expanded);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007856 if (rcode == 0) {
7857 if (!funcp) {
7858 debug_printf_exec(": builtin '%s' '%s'...\n",
7859 x->b_cmd, argv_expanded[1]);
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01007860 fflush_all();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007861 rcode = x->b_function(argv_expanded) & 0xff;
7862 fflush_all();
7863 }
7864#if ENABLE_HUSH_FUNCTIONS
7865 else {
7866# if ENABLE_HUSH_LOCAL
7867 struct variable **sv;
7868 sv = G.shadowed_vars_pp;
7869 G.shadowed_vars_pp = &old_vars;
7870# endif
7871 debug_printf_exec(": function '%s' '%s'...\n",
7872 funcp->name, argv_expanded[1]);
7873 rcode = run_function(funcp, argv_expanded) & 0xff;
7874# if ENABLE_HUSH_LOCAL
7875 G.shadowed_vars_pp = sv;
7876# endif
7877 }
7878#endif
7879 }
7880 clean_up_and_ret:
7881 unset_vars(new_env);
7882 add_vars(old_vars);
7883/* clean_up_and_ret0: */
7884 restore_redirects(squirrel);
7885 clean_up_and_ret1:
7886 free(argv_expanded);
7887 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7888 debug_leave();
7889 debug_printf_exec("run_pipe return %d\n", rcode);
7890 return rcode;
7891 }
7892
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007893 if (ENABLE_FEATURE_SH_NOFORK) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007894 int n = find_applet_by_name(argv_expanded[0]);
7895 if (n >= 0 && APPLET_IS_NOFORK(n)) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02007896 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, &squirrel, argv_expanded);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007897 if (rcode == 0) {
7898 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
7899 argv_expanded[0], argv_expanded[1]);
7900 rcode = run_nofork_applet(n, argv_expanded);
7901 }
7902 goto clean_up_and_ret;
7903 }
7904 }
7905 /* It is neither builtin nor applet. We must fork. */
7906 }
7907
7908 must_fork:
7909 /* NB: argv_expanded may already be created, and that
7910 * might include `cmd` runs! Do not rerun it! We *must*
7911 * use argv_expanded if it's non-NULL */
7912
7913 /* Going to fork a child per each pipe member */
7914 pi->alive_cmds = 0;
7915 next_infd = 0;
7916
7917 cmd_no = 0;
7918 while (cmd_no < pi->num_cmds) {
7919 struct fd_pair pipefds;
7920#if !BB_MMU
7921 volatile nommu_save_t nommu_save;
7922 nommu_save.new_env = NULL;
7923 nommu_save.old_vars = NULL;
7924 nommu_save.argv = NULL;
7925 nommu_save.argv_from_re_execing = NULL;
7926#endif
7927 command = &pi->cmds[cmd_no];
7928 cmd_no++;
7929 if (command->argv) {
7930 debug_printf_exec(": pipe member '%s' '%s'...\n",
7931 command->argv[0], command->argv[1]);
7932 } else {
7933 debug_printf_exec(": pipe member with no argv\n");
7934 }
7935
7936 /* pipes are inserted between pairs of commands */
7937 pipefds.rd = 0;
7938 pipefds.wr = 1;
7939 if (cmd_no < pi->num_cmds)
7940 xpiped_pair(pipefds);
7941
7942 command->pid = BB_MMU ? fork() : vfork();
7943 if (!command->pid) { /* child */
7944#if ENABLE_HUSH_JOB
7945 disable_restore_tty_pgrp_on_exit();
7946 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
7947
7948 /* Every child adds itself to new process group
7949 * with pgid == pid_of_first_child_in_pipe */
7950 if (G.run_list_level == 1 && G_interactive_fd) {
7951 pid_t pgrp;
7952 pgrp = pi->pgrp;
7953 if (pgrp < 0) /* true for 1st process only */
7954 pgrp = getpid();
7955 if (setpgid(0, pgrp) == 0
7956 && pi->followup != PIPE_BG
7957 && G_saved_tty_pgrp /* we have ctty */
7958 ) {
7959 /* We do it in *every* child, not just first,
7960 * to avoid races */
7961 tcsetpgrp(G_interactive_fd, pgrp);
7962 }
7963 }
7964#endif
7965 if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
7966 /* 1st cmd in backgrounded pipe
7967 * should have its stdin /dev/null'ed */
7968 close(0);
7969 if (open(bb_dev_null, O_RDONLY))
7970 xopen("/", O_RDONLY);
7971 } else {
7972 xmove_fd(next_infd, 0);
7973 }
7974 xmove_fd(pipefds.wr, 1);
7975 if (pipefds.rd > 1)
7976 close(pipefds.rd);
7977 /* Like bash, explicit redirects override pipes,
Denys Vlasenko869994c2016-08-20 15:16:00 +02007978 * and the pipe fd (fd#1) is available for dup'ing:
7979 * "cmd1 2>&1 | cmd2": fd#1 is duped to fd#2, thus stderr
7980 * of cmd1 goes into pipe.
7981 */
7982 if (setup_redirects(command, NULL)) {
7983 /* Happens when redir file can't be opened:
7984 * $ hush -c 'echo FOO >&2 | echo BAR 3>/qwe/rty; echo BAZ'
7985 * FOO
7986 * hush: can't open '/qwe/rty': No such file or directory
7987 * BAZ
7988 * (echo BAR is not executed, it hits _exit(1) below)
7989 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007990 _exit(1);
Denys Vlasenko869994c2016-08-20 15:16:00 +02007991 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007992
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007993 /* Stores to nommu_save list of env vars putenv'ed
7994 * (NOMMU, on MMU we don't need that) */
7995 /* cast away volatility... */
7996 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
7997 /* pseudo_exec() does not return */
7998 }
7999
8000 /* parent or error */
8001#if ENABLE_HUSH_FAST
8002 G.count_SIGCHLD++;
8003//bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
8004#endif
8005 enable_restore_tty_pgrp_on_exit();
8006#if !BB_MMU
8007 /* Clean up after vforked child */
8008 free(nommu_save.argv);
8009 free(nommu_save.argv_from_re_execing);
8010 unset_vars(nommu_save.new_env);
8011 add_vars(nommu_save.old_vars);
8012#endif
8013 free(argv_expanded);
8014 argv_expanded = NULL;
8015 if (command->pid < 0) { /* [v]fork failed */
8016 /* Clearly indicate, was it fork or vfork */
8017 bb_perror_msg(BB_MMU ? "vfork"+1 : "vfork");
8018 } else {
8019 pi->alive_cmds++;
8020#if ENABLE_HUSH_JOB
8021 /* Second and next children need to know pid of first one */
8022 if (pi->pgrp < 0)
8023 pi->pgrp = command->pid;
8024#endif
8025 }
8026
8027 if (cmd_no > 1)
8028 close(next_infd);
8029 if (cmd_no < pi->num_cmds)
8030 close(pipefds.wr);
8031 /* Pass read (output) pipe end to next iteration */
8032 next_infd = pipefds.rd;
8033 }
8034
8035 if (!pi->alive_cmds) {
8036 debug_leave();
8037 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
8038 return 1;
8039 }
8040
8041 debug_leave();
8042 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
8043 return -1;
8044}
8045
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008046/* NB: called by pseudo_exec, and therefore must not modify any
8047 * global data until exec/_exit (we can be a child after vfork!) */
8048static int run_list(struct pipe *pi)
8049{
8050#if ENABLE_HUSH_CASE
8051 char *case_word = NULL;
8052#endif
8053#if ENABLE_HUSH_LOOPS
8054 struct pipe *loop_top = NULL;
8055 char **for_lcur = NULL;
8056 char **for_list = NULL;
8057#endif
8058 smallint last_followup;
8059 smalluint rcode;
8060#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
8061 smalluint cond_code = 0;
8062#else
8063 enum { cond_code = 0 };
8064#endif
8065#if HAS_KEYWORDS
Denys Vlasenko9b782552010-09-08 13:33:26 +02008066 smallint rword; /* RES_foo */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008067 smallint last_rword; /* ditto */
8068#endif
8069
8070 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
8071 debug_enter();
8072
8073#if ENABLE_HUSH_LOOPS
8074 /* Check syntax for "for" */
Denys Vlasenko0d6a4ec2010-12-18 01:34:49 +01008075 {
8076 struct pipe *cpipe;
8077 for (cpipe = pi; cpipe; cpipe = cpipe->next) {
8078 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
8079 continue;
8080 /* current word is FOR or IN (BOLD in comments below) */
8081 if (cpipe->next == NULL) {
8082 syntax_error("malformed for");
8083 debug_leave();
8084 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
8085 return 1;
8086 }
8087 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
8088 if (cpipe->next->res_word == RES_DO)
8089 continue;
8090 /* next word is not "do". It must be "in" then ("FOR v in ...") */
8091 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
8092 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
8093 ) {
8094 syntax_error("malformed for");
8095 debug_leave();
8096 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
8097 return 1;
8098 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008099 }
8100 }
8101#endif
8102
8103 /* Past this point, all code paths should jump to ret: label
8104 * in order to return, no direct "return" statements please.
8105 * This helps to ensure that no memory is leaked. */
8106
8107#if ENABLE_HUSH_JOB
8108 G.run_list_level++;
8109#endif
8110
8111#if HAS_KEYWORDS
8112 rword = RES_NONE;
8113 last_rword = RES_XXXX;
8114#endif
8115 last_followup = PIPE_SEQ;
8116 rcode = G.last_exitcode;
8117
8118 /* Go through list of pipes, (maybe) executing them. */
8119 for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008120 int r;
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008121 int sv_errexit_depth;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008122
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008123 if (G.flag_SIGINT)
8124 break;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02008125 if (G_flag_return_in_progress == 1)
8126 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008127
8128 IF_HAS_KEYWORDS(rword = pi->res_word;)
8129 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
8130 rword, cond_code, last_rword);
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008131
8132 sv_errexit_depth = G.errexit_depth;
8133 if (IF_HAS_KEYWORDS(rword == RES_IF || rword == RES_ELIF ||)
8134 pi->followup != PIPE_SEQ
8135 ) {
8136 G.errexit_depth++;
8137 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008138#if ENABLE_HUSH_LOOPS
8139 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
8140 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
8141 ) {
8142 /* start of a loop: remember where loop starts */
8143 loop_top = pi;
8144 G.depth_of_loop++;
8145 }
8146#endif
8147 /* Still in the same "if...", "then..." or "do..." branch? */
8148 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
8149 if ((rcode == 0 && last_followup == PIPE_OR)
8150 || (rcode != 0 && last_followup == PIPE_AND)
8151 ) {
8152 /* It is "<true> || CMD" or "<false> && CMD"
8153 * and we should not execute CMD */
8154 debug_printf_exec("skipped cmd because of || or &&\n");
8155 last_followup = pi->followup;
Denys Vlasenko3beab832013-04-07 18:16:58 +02008156 goto dont_check_jobs_but_continue;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008157 }
8158 }
8159 last_followup = pi->followup;
8160 IF_HAS_KEYWORDS(last_rword = rword;)
8161#if ENABLE_HUSH_IF
8162 if (cond_code) {
8163 if (rword == RES_THEN) {
8164 /* if false; then ... fi has exitcode 0! */
8165 G.last_exitcode = rcode = EXIT_SUCCESS;
8166 /* "if <false> THEN cmd": skip cmd */
8167 continue;
8168 }
8169 } else {
8170 if (rword == RES_ELSE || rword == RES_ELIF) {
8171 /* "if <true> then ... ELSE/ELIF cmd":
8172 * skip cmd and all following ones */
8173 break;
8174 }
8175 }
8176#endif
8177#if ENABLE_HUSH_LOOPS
8178 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
8179 if (!for_lcur) {
8180 /* first loop through for */
8181
8182 static const char encoded_dollar_at[] ALIGN1 = {
8183 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
8184 }; /* encoded representation of "$@" */
8185 static const char *const encoded_dollar_at_argv[] = {
8186 encoded_dollar_at, NULL
8187 }; /* argv list with one element: "$@" */
8188 char **vals;
8189
8190 vals = (char**)encoded_dollar_at_argv;
8191 if (pi->next->res_word == RES_IN) {
8192 /* if no variable values after "in" we skip "for" */
8193 if (!pi->next->cmds[0].argv) {
8194 G.last_exitcode = rcode = EXIT_SUCCESS;
8195 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
8196 break;
8197 }
8198 vals = pi->next->cmds[0].argv;
8199 } /* else: "for var; do..." -> assume "$@" list */
8200 /* create list of variable values */
8201 debug_print_strings("for_list made from", vals);
8202 for_list = expand_strvec_to_strvec(vals);
8203 for_lcur = for_list;
8204 debug_print_strings("for_list", for_list);
8205 }
8206 if (!*for_lcur) {
8207 /* "for" loop is over, clean up */
8208 free(for_list);
8209 for_list = NULL;
8210 for_lcur = NULL;
8211 break;
8212 }
8213 /* Insert next value from for_lcur */
8214 /* note: *for_lcur already has quotes removed, $var expanded, etc */
8215 set_local_var(xasprintf("%s=%s", pi->cmds[0].argv[0], *for_lcur++), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
8216 continue;
8217 }
8218 if (rword == RES_IN) {
8219 continue; /* "for v IN list;..." - "in" has no cmds anyway */
8220 }
8221 if (rword == RES_DONE) {
8222 continue; /* "done" has no cmds too */
8223 }
8224#endif
8225#if ENABLE_HUSH_CASE
8226 if (rword == RES_CASE) {
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008227 debug_printf_exec("CASE cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008228 case_word = expand_strvec_to_string(pi->cmds->argv);
Denys Vlasenkobd43c672017-07-05 23:12:15 +02008229 unbackslash(case_word);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008230 continue;
8231 }
8232 if (rword == RES_MATCH) {
8233 char **argv;
8234
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008235 debug_printf_exec("MATCH cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008236 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
8237 break;
8238 /* all prev words didn't match, does this one match? */
8239 argv = pi->cmds->argv;
8240 while (*argv) {
Denys Vlasenkobd43c672017-07-05 23:12:15 +02008241 char *pattern = expand_string_to_string(*argv, /*unbackslash:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008242 /* TODO: which FNM_xxx flags to use? */
8243 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
Denys Vlasenkobd43c672017-07-05 23:12:15 +02008244 debug_printf_exec("fnmatch(pattern:'%s',str:'%s'):%d\n", pattern, case_word, cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008245 free(pattern);
8246 if (cond_code == 0) { /* match! we will execute this branch */
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008247 free(case_word);
8248 case_word = NULL; /* make future "word)" stop */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008249 break;
8250 }
8251 argv++;
8252 }
8253 continue;
8254 }
8255 if (rword == RES_CASE_BODY) { /* inside of a case branch */
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008256 debug_printf_exec("CASE_BODY cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008257 if (cond_code != 0)
8258 continue; /* not matched yet, skip this pipe */
8259 }
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008260 if (rword == RES_ESAC) {
8261 debug_printf_exec("ESAC cond_code:%d\n", cond_code);
8262 if (case_word) {
8263 /* "case" did not match anything: still set $? (to 0) */
8264 G.last_exitcode = rcode = EXIT_SUCCESS;
8265 }
8266 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008267#endif
8268 /* Just pressing <enter> in shell should check for jobs.
8269 * OTOH, in non-interactive shell this is useless
8270 * and only leads to extra job checks */
8271 if (pi->num_cmds == 0) {
8272 if (G_interactive_fd)
8273 goto check_jobs_and_continue;
8274 continue;
8275 }
8276
8277 /* After analyzing all keywords and conditions, we decided
8278 * to execute this pipe. NB: have to do checkjobs(NULL)
8279 * after run_pipe to collect any background children,
8280 * even if list execution is to be stopped. */
8281 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008282#if ENABLE_HUSH_LOOPS
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008283 G.flag_break_continue = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008284#endif
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008285 rcode = r = run_pipe(pi); /* NB: rcode is a smalluint, r is int */
8286 if (r != -1) {
8287 /* We ran a builtin, function, or group.
8288 * rcode is already known
8289 * and we don't need to wait for anything. */
8290 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
8291 G.last_exitcode = rcode;
8292 check_and_run_traps();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008293#if ENABLE_HUSH_LOOPS
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008294 /* Was it "break" or "continue"? */
8295 if (G.flag_break_continue) {
8296 smallint fbc = G.flag_break_continue;
8297 /* We might fall into outer *loop*,
8298 * don't want to break it too */
8299 if (loop_top) {
8300 G.depth_break_continue--;
8301 if (G.depth_break_continue == 0)
8302 G.flag_break_continue = 0;
8303 /* else: e.g. "continue 2" should *break* once, *then* continue */
8304 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
8305 if (G.depth_break_continue != 0 || fbc == BC_BREAK) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02008306 checkjobs(NULL, 0 /*(no pid to wait for)*/);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008307 break;
8308 }
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008309 /* "continue": simulate end of loop */
8310 rword = RES_DONE;
8311 continue;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008312 }
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008313#endif
8314 if (G_flag_return_in_progress == 1) {
8315 checkjobs(NULL, 0 /*(no pid to wait for)*/);
8316 break;
8317 }
8318 } else if (pi->followup == PIPE_BG) {
8319 /* What does bash do with attempts to background builtins? */
8320 /* even bash 3.2 doesn't do that well with nested bg:
8321 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
8322 * I'm NOT treating inner &'s as jobs */
8323#if ENABLE_HUSH_JOB
8324 if (G.run_list_level == 1)
Denys Vlasenko16096292017-07-10 10:00:28 +02008325 insert_job_into_table(pi);
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008326#endif
8327 /* Last command's pid goes to $! */
8328 G.last_bg_pid = pi->cmds[pi->num_cmds - 1].pid;
Denys Vlasenko840a4352017-07-07 22:56:02 +02008329 G.last_bg_pid_exitcode = 0;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008330 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
8331/* Check pi->pi_inverted? "! sleep 1 & echo $?": bash says 1. dash and ash says 0 */
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008332 rcode = EXIT_SUCCESS;
8333 goto check_traps;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008334 } else {
8335#if ENABLE_HUSH_JOB
8336 if (G.run_list_level == 1 && G_interactive_fd) {
8337 /* Waits for completion, then fg's main shell */
8338 rcode = checkjobs_and_fg_shell(pi);
8339 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008340 goto check_traps;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008341 }
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008342#endif
8343 /* This one just waits for completion */
8344 rcode = checkjobs(pi, 0 /*(no pid to wait for)*/);
8345 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
8346 check_traps:
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008347 G.last_exitcode = rcode;
8348 check_and_run_traps();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008349 }
8350
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008351 /* Handle "set -e" */
8352 if (rcode != 0 && G.o_opt[OPT_O_ERREXIT]) {
8353 debug_printf_exec("ERREXIT:1 errexit_depth:%d\n", G.errexit_depth);
8354 if (G.errexit_depth == 0)
8355 hush_exit(rcode);
8356 }
8357 G.errexit_depth = sv_errexit_depth;
8358
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008359 /* Analyze how result affects subsequent commands */
8360#if ENABLE_HUSH_IF
8361 if (rword == RES_IF || rword == RES_ELIF)
8362 cond_code = rcode;
8363#endif
Denys Vlasenko3beab832013-04-07 18:16:58 +02008364 check_jobs_and_continue:
Denys Vlasenko7e675362016-10-28 21:57:31 +02008365 checkjobs(NULL, 0 /*(no pid to wait for)*/);
Denys Vlasenko3beab832013-04-07 18:16:58 +02008366 dont_check_jobs_but_continue: ;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008367#if ENABLE_HUSH_LOOPS
8368 /* Beware of "while false; true; do ..."! */
Denys Vlasenko00ae9892011-05-31 17:35:45 +02008369 if (pi->next
8370 && (pi->next->res_word == RES_DO || pi->next->res_word == RES_DONE)
Denys Vlasenko56a3b822011-06-01 12:47:07 +02008371 /* check for RES_DONE is needed for "while ...; do \n done" case */
Denys Vlasenko00ae9892011-05-31 17:35:45 +02008372 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008373 if (rword == RES_WHILE) {
8374 if (rcode) {
8375 /* "while false; do...done" - exitcode 0 */
8376 G.last_exitcode = rcode = EXIT_SUCCESS;
8377 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
Denys Vlasenko3beab832013-04-07 18:16:58 +02008378 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008379 }
8380 }
8381 if (rword == RES_UNTIL) {
8382 if (!rcode) {
8383 debug_printf_exec(": until expr is true: breaking\n");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008384 break;
8385 }
8386 }
8387 }
8388#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008389 } /* for (pi) */
8390
8391#if ENABLE_HUSH_JOB
8392 G.run_list_level--;
8393#endif
8394#if ENABLE_HUSH_LOOPS
8395 if (loop_top)
8396 G.depth_of_loop--;
8397 free(for_list);
8398#endif
8399#if ENABLE_HUSH_CASE
8400 free(case_word);
8401#endif
8402 debug_leave();
8403 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
8404 return rcode;
8405}
8406
8407/* Select which version we will use */
8408static int run_and_free_list(struct pipe *pi)
8409{
8410 int rcode = 0;
8411 debug_printf_exec("run_and_free_list entered\n");
Dan Fandrich85c62472010-11-20 13:05:17 -08008412 if (!G.o_opt[OPT_O_NOEXEC]) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008413 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
8414 rcode = run_list(pi);
8415 }
8416 /* free_pipe_list has the side effect of clearing memory.
8417 * In the long run that function can be merged with run_list,
8418 * but doing that now would hobble the debugging effort. */
8419 free_pipe_list(pi);
8420 debug_printf_exec("run_and_free_list return %d\n", rcode);
8421 return rcode;
8422}
8423
8424
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008425static void install_sighandlers(unsigned mask)
Eric Andersen52a97ca2001-06-22 06:49:26 +00008426{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008427 sighandler_t old_handler;
8428 unsigned sig = 0;
8429 while ((mask >>= 1) != 0) {
8430 sig++;
8431 if (!(mask & 1))
8432 continue;
Denys Vlasenko0806e402011-05-12 23:06:20 +02008433 old_handler = install_sighandler(sig, pick_sighandler(sig));
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008434 /* POSIX allows shell to re-enable SIGCHLD
8435 * even if it was SIG_IGN on entry.
8436 * Therefore we skip IGN check for it:
8437 */
8438 if (sig == SIGCHLD)
8439 continue;
8440 if (old_handler == SIG_IGN) {
8441 /* oops... restore back to IGN, and record this fact */
Denys Vlasenko0806e402011-05-12 23:06:20 +02008442 install_sighandler(sig, old_handler);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008443#if ENABLE_HUSH_TRAP
8444 if (!G_traps)
8445 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
8446 free(G_traps[sig]);
8447 G_traps[sig] = xzalloc(1); /* == xstrdup(""); */
8448#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008449 }
8450 }
8451}
8452
8453/* Called a few times only (or even once if "sh -c") */
8454static void install_special_sighandlers(void)
8455{
Denis Vlasenkof9375282009-04-05 19:13:39 +00008456 unsigned mask;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008457
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008458 /* Which signals are shell-special? */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008459 mask = (1 << SIGQUIT) | (1 << SIGCHLD);
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008460 if (G_interactive_fd) {
8461 mask |= SPECIAL_INTERACTIVE_SIGS;
8462 if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008463 mask |= SPECIAL_JOBSTOP_SIGS;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008464 }
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008465 /* Careful, do not re-install handlers we already installed */
8466 if (G.special_sig_mask != mask) {
8467 unsigned diff = mask & ~G.special_sig_mask;
8468 G.special_sig_mask = mask;
8469 install_sighandlers(diff);
8470 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008471}
8472
8473#if ENABLE_HUSH_JOB
8474/* helper */
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008475/* Set handlers to restore tty pgrp and exit */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008476static void install_fatal_sighandlers(void)
Denis Vlasenkof9375282009-04-05 19:13:39 +00008477{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008478 unsigned mask;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008479
8480 /* We will restore tty pgrp on these signals */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008481 mask = 0
Denys Vlasenko830ea352016-11-08 04:59:11 +01008482 /*+ (1 << SIGILL ) * HUSH_DEBUG*/
8483 /*+ (1 << SIGFPE ) * HUSH_DEBUG*/
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008484 + (1 << SIGBUS ) * HUSH_DEBUG
8485 + (1 << SIGSEGV) * HUSH_DEBUG
Denys Vlasenko830ea352016-11-08 04:59:11 +01008486 /*+ (1 << SIGTRAP) * HUSH_DEBUG*/
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008487 + (1 << SIGABRT)
8488 /* bash 3.2 seems to handle these just like 'fatal' ones */
8489 + (1 << SIGPIPE)
8490 + (1 << SIGALRM)
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008491 /* if we are interactive, SIGHUP, SIGTERM and SIGINT are special sigs.
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008492 * if we aren't interactive... but in this case
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008493 * we never want to restore pgrp on exit, and this fn is not called
8494 */
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008495 /*+ (1 << SIGHUP )*/
8496 /*+ (1 << SIGTERM)*/
8497 /*+ (1 << SIGINT )*/
8498 ;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008499 G_fatal_sig_mask = mask;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008500
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008501 install_sighandlers(mask);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008502}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00008503#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00008504
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008505static int set_mode(int state, char mode, const char *o_opt)
Denis Vlasenkod5762932009-03-31 11:22:57 +00008506{
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008507 int idx;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008508 switch (mode) {
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008509 case 'n':
Dan Fandrich85c62472010-11-20 13:05:17 -08008510 G.o_opt[OPT_O_NOEXEC] = state;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008511 break;
8512 case 'x':
8513 IF_HUSH_MODE_X(G_x_mode = state;)
8514 break;
8515 case 'o':
8516 if (!o_opt) {
8517 /* "set -+o" without parameter.
8518 * in bash, set -o produces this output:
8519 * pipefail off
8520 * and set +o:
8521 * set +o pipefail
8522 * We always use the second form.
8523 */
8524 const char *p = o_opt_strings;
8525 idx = 0;
8526 while (*p) {
8527 printf("set %co %s\n", (G.o_opt[idx] ? '-' : '+'), p);
8528 idx++;
8529 p += strlen(p) + 1;
8530 }
8531 break;
8532 }
8533 idx = index_in_strings(o_opt_strings, o_opt);
8534 if (idx >= 0) {
8535 G.o_opt[idx] = state;
8536 break;
8537 }
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008538 case 'e':
8539 G.o_opt[OPT_O_ERREXIT] = state;
8540 break;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008541 default:
8542 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008543 }
8544 return EXIT_SUCCESS;
8545}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008546
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00008547int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00008548int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00008549{
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008550 enum {
8551 OPT_login = (1 << 0),
8552 };
8553 unsigned flags;
Eric Andersen25f27032001-04-26 23:22:31 +00008554 int opt;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008555 unsigned builtin_argc;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008556 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008557 struct variable *cur_var;
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008558 struct variable *shell_ver;
Eric Andersenbc604a22001-05-16 05:24:03 +00008559
Denis Vlasenko574f2f42008-02-27 18:41:59 +00008560 INIT_G();
Denys Vlasenko10c01312011-05-11 11:49:21 +02008561 if (EXIT_SUCCESS != 0) /* if EXIT_SUCCESS == 0, it is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008562 G.last_exitcode = EXIT_SUCCESS;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02008563
Denys Vlasenko10c01312011-05-11 11:49:21 +02008564#if ENABLE_HUSH_FAST
8565 G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
8566#endif
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008567#if !BB_MMU
8568 G.argv0_for_re_execing = argv[0];
8569#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008570 /* Deal with HUSH_VERSION */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008571 shell_ver = xzalloc(sizeof(*shell_ver));
8572 shell_ver->flg_export = 1;
8573 shell_ver->flg_read_only = 1;
Denys Vlasenko4f870492010-09-10 11:06:01 +02008574 /* Code which handles ${var<op>...} needs writable values for all variables,
Denys Vlasenko36f774a2010-09-05 14:45:38 +02008575 * therefore we xstrdup: */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008576 shell_ver->varstr = xstrdup(hush_version_str);
Denys Vlasenko605067b2010-09-06 12:10:51 +02008577 /* Create shell local variables from the values
8578 * currently living in the environment */
Denis Vlasenkof886fd22008-10-13 12:36:05 +00008579 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008580 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008581 G.top_var = shell_ver;
Denis Vlasenko87a86552008-07-29 19:43:10 +00008582 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008583 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008584 if (e) while (*e) {
8585 char *value = strchr(*e, '=');
8586 if (value) { /* paranoia */
8587 cur_var->next = xzalloc(sizeof(*cur_var));
8588 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00008589 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008590 cur_var->max_len = strlen(*e);
8591 cur_var->flg_export = 1;
8592 }
8593 e++;
8594 }
Denys Vlasenko605067b2010-09-06 12:10:51 +02008595 /* (Re)insert HUSH_VERSION into env (AFTER we scanned the env!) */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008596 debug_printf_env("putenv '%s'\n", shell_ver->varstr);
8597 putenv(shell_ver->varstr);
Denys Vlasenko6db47842009-09-05 20:15:17 +02008598
8599 /* Export PWD */
8600 set_pwd_var(/*exp:*/ 1);
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008601
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01008602#if BASH_HOSTNAME_VAR
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008603 /* Set (but not export) HOSTNAME unless already set */
8604 if (!get_local_var_value("HOSTNAME")) {
8605 struct utsname uts;
8606 uname(&uts);
8607 set_local_var_from_halves("HOSTNAME", uts.nodename);
8608 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02008609 /* bash also exports SHLVL and _,
8610 * and sets (but doesn't export) the following variables:
8611 * BASH=/bin/bash
8612 * BASH_VERSINFO=([0]="3" [1]="2" [2]="0" [3]="1" [4]="release" [5]="i386-pc-linux-gnu")
8613 * BASH_VERSION='3.2.0(1)-release'
8614 * HOSTTYPE=i386
8615 * MACHTYPE=i386-pc-linux-gnu
8616 * OSTYPE=linux-gnu
Denys Vlasenkodea47882009-10-09 15:40:49 +02008617 * PPID=<NNNNN> - we also do it elsewhere
Denys Vlasenko6db47842009-09-05 20:15:17 +02008618 * EUID=<NNNNN>
8619 * UID=<NNNNN>
8620 * GROUPS=()
8621 * LINES=<NNN>
8622 * COLUMNS=<NNN>
8623 * BASH_ARGC=()
8624 * BASH_ARGV=()
8625 * BASH_LINENO=()
8626 * BASH_SOURCE=()
8627 * DIRSTACK=()
8628 * PIPESTATUS=([0]="0")
8629 * HISTFILE=/<xxx>/.bash_history
8630 * HISTFILESIZE=500
8631 * HISTSIZE=500
8632 * MAILCHECK=60
8633 * PATH=/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:.
8634 * SHELL=/bin/bash
8635 * SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor
8636 * TERM=dumb
8637 * OPTERR=1
8638 * OPTIND=1
8639 * IFS=$' \t\n'
8640 * PS1='\s-\v\$ '
8641 * PS2='> '
8642 * PS4='+ '
8643 */
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008644#endif
Denys Vlasenko6db47842009-09-05 20:15:17 +02008645
Denis Vlasenko38f63192007-01-22 09:03:07 +00008646#if ENABLE_FEATURE_EDITING
Denys Vlasenkoe45af7a2011-09-04 16:15:24 +02008647 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00008648#endif
Denys Vlasenko99862cb2010-09-12 17:34:13 +02008649
Eric Andersen94ac2442001-05-22 19:05:18 +00008650 /* Initialize some more globals to non-zero values */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00008651 cmdedit_update_prompt();
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00008652
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02008653 die_func = restore_ttypgrp_and__exit;
Denis Vlasenkoed782372009-04-10 00:45:02 +00008654
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008655 /* Shell is non-interactive at first. We need to call
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008656 * install_special_sighandlers() if we are going to execute "sh <script>",
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008657 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008658 * If we later decide that we are interactive, we run install_special_sighandlers()
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008659 * in order to intercept (more) signals.
8660 */
8661
8662 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00008663 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008664 flags = (argv[0] && argv[0][0] == '-') ? OPT_login : 0;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008665 builtin_argc = 0;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008666 while (1) {
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008667 opt = getopt(argc, argv, "+c:exinsl"
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008668#if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00008669 "<:$:R:V:"
8670# if ENABLE_HUSH_FUNCTIONS
8671 "F:"
8672# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008673#endif
8674 );
8675 if (opt <= 0)
8676 break;
Eric Andersen25f27032001-04-26 23:22:31 +00008677 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008678 case 'c':
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008679 /* Possibilities:
8680 * sh ... -c 'script'
8681 * sh ... -c 'script' ARG0 [ARG1...]
8682 * On NOMMU, if builtin_argc != 0,
Denys Vlasenko17323a62010-01-28 01:57:05 +01008683 * sh ... -c 'builtin' BARGV... "" ARG0 [ARG1...]
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008684 * "" needs to be replaced with NULL
8685 * and BARGV vector fed to builtin function.
Denys Vlasenko17323a62010-01-28 01:57:05 +01008686 * Note: the form without ARG0 never happens:
8687 * sh ... -c 'builtin' BARGV... ""
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008688 */
Denys Vlasenkodea47882009-10-09 15:40:49 +02008689 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008690 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02008691 G.root_ppid = getppid();
8692 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008693 G.global_argv = argv + optind;
8694 G.global_argc = argc - optind;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008695 if (builtin_argc) {
8696 /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */
8697 const struct built_in_command *x;
8698
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008699 install_special_sighandlers();
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008700 x = find_builtin(optarg);
8701 if (x) { /* paranoia */
8702 G.global_argc -= builtin_argc; /* skip [BARGV...] "" */
8703 G.global_argv += builtin_argc;
8704 G.global_argv[-1] = NULL; /* replace "" */
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01008705 fflush_all();
Denys Vlasenko17323a62010-01-28 01:57:05 +01008706 G.last_exitcode = x->b_function(argv + optind - 1);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008707 }
8708 goto final_return;
8709 }
8710 if (!G.global_argv[0]) {
8711 /* -c 'script' (no params): prevent empty $0 */
8712 G.global_argv--; /* points to argv[i] of 'script' */
8713 G.global_argv[0] = argv[0];
Denys Vlasenko5ae8f1c2010-05-22 06:32:11 +02008714 G.global_argc++;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008715 } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008716 install_special_sighandlers();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008717 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008718 goto final_return;
8719 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00008720 /* Well, we cannot just declare interactiveness,
8721 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008722 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008723 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00008724 case 's':
8725 /* "-s" means "read from stdin", but this is how we always
8726 * operate, so simply do nothing here. */
8727 break;
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008728 case 'l':
8729 flags |= OPT_login;
8730 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008731#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00008732 case '<': /* "big heredoc" support */
Denys Vlasenko729ecb82010-06-07 14:14:26 +02008733 full_write1_str(optarg);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00008734 _exit(0);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008735 case '$': {
8736 unsigned long long empty_trap_mask;
8737
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008738 G.root_pid = bb_strtou(optarg, &optarg, 16);
8739 optarg++;
Denys Vlasenkodea47882009-10-09 15:40:49 +02008740 G.root_ppid = bb_strtou(optarg, &optarg, 16);
8741 optarg++;
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008742 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
8743 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008744 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008745 optarg++;
8746 builtin_argc = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008747 optarg++;
8748 empty_trap_mask = bb_strtoull(optarg, &optarg, 16);
8749 if (empty_trap_mask != 0) {
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02008750 IF_HUSH_TRAP(int sig;)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008751 install_special_sighandlers();
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02008752# if ENABLE_HUSH_TRAP
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008753 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008754 for (sig = 1; sig < NSIG; sig++) {
8755 if (empty_trap_mask & (1LL << sig)) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008756 G_traps[sig] = xzalloc(1); /* == xstrdup(""); */
Denys Vlasenko0806e402011-05-12 23:06:20 +02008757 install_sighandler(sig, SIG_IGN);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008758 }
8759 }
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02008760# endif
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008761 }
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008762# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008763 optarg++;
8764 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008765# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008766 break;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008767 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008768 case 'R':
8769 case 'V':
Denys Vlasenko295fef82009-06-03 12:47:26 +02008770 set_local_var(xstrdup(optarg), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ opt == 'R');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008771 break;
Denis Vlasenkobc569742009-04-12 20:35:19 +00008772# if ENABLE_HUSH_FUNCTIONS
8773 case 'F': {
8774 struct function *funcp = new_function(optarg);
8775 /* funcp->name is already set to optarg */
8776 /* funcp->body is set to NULL. It's a special case. */
8777 funcp->body_as_string = argv[optind];
8778 optind++;
8779 break;
8780 }
8781# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008782#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008783 case 'n':
8784 case 'x':
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008785 case 'e':
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008786 if (set_mode(1, opt, NULL) == 0) /* no error */
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008787 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008788 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008789#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008790 fprintf(stderr, "Usage: sh [FILE]...\n"
8791 " or: sh -c command [args]...\n\n");
8792 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008793#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008794 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008795#endif
Eric Andersen25f27032001-04-26 23:22:31 +00008796 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008797 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008798
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008799 /* Skip options. Try "hush -l": $1 should not be "-l"! */
8800 G.global_argc = argc - (optind - 1);
8801 G.global_argv = argv + (optind - 1);
8802 G.global_argv[0] = argv[0];
8803
Denys Vlasenkodea47882009-10-09 15:40:49 +02008804 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008805 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02008806 G.root_ppid = getppid();
8807 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008808
8809 /* If we are login shell... */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008810 if (flags & OPT_login) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008811 FILE *input;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008812 debug_printf("sourcing /etc/profile\n");
8813 input = fopen_for_read("/etc/profile");
8814 if (input != NULL) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008815 remember_FILE(input);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008816 install_special_sighandlers();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008817 parse_and_run_file(input);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008818 fclose_and_forget(input);
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008819 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008820 /* bash: after sourcing /etc/profile,
8821 * tries to source (in the given order):
8822 * ~/.bash_profile, ~/.bash_login, ~/.profile,
Denys Vlasenko28a105d2009-06-01 11:26:30 +02008823 * stopping on first found. --noprofile turns this off.
Denis Vlasenkof9375282009-04-05 19:13:39 +00008824 * bash also sources ~/.bash_logout on exit.
8825 * If called as sh, skips .bash_XXX files.
8826 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008827 }
8828
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008829 if (G.global_argv[1]) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00008830 FILE *input;
8831 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008832 * "bash <script>" (which is never interactive (unless -i?))
8833 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00008834 * If called as sh, does the same but with $ENV.
Denys Vlasenko2eb0a7e2016-10-27 11:28:59 +02008835 * Also NB, per POSIX, $ENV should undergo parameter expansion.
Denis Vlasenkof9375282009-04-05 19:13:39 +00008836 */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008837 G.global_argc--;
8838 G.global_argv++;
8839 debug_printf("running script '%s'\n", G.global_argv[0]);
Denys Vlasenkob7adf7a2016-10-25 17:00:13 +02008840 xfunc_error_retval = 127; /* for "hush /does/not/exist" case */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008841 input = xfopen_for_read(G.global_argv[0]);
Denys Vlasenkob7adf7a2016-10-25 17:00:13 +02008842 xfunc_error_retval = 1;
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008843 remember_FILE(input);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008844 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00008845 parse_and_run_file(input);
8846#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008847 fclose_and_forget(input);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008848#endif
8849 goto final_return;
8850 }
8851
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008852 /* Up to here, shell was non-interactive. Now it may become one.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008853 * NB: don't forget to (re)run install_special_sighandlers() as needed.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008854 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00008855
Denys Vlasenko28a105d2009-06-01 11:26:30 +02008856 /* A shell is interactive if the '-i' flag was given,
8857 * or if all of the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00008858 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00008859 * no arguments remaining or the -s flag given
8860 * standard input is a terminal
8861 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00008862 * Refer to Posix.2, the description of the 'sh' utility.
8863 */
8864#if ENABLE_HUSH_JOB
8865 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Mike Frysinger38478a62009-05-20 04:48:06 -04008866 G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
8867 debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp);
8868 if (G_saved_tty_pgrp < 0)
8869 G_saved_tty_pgrp = 0;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008870
8871 /* try to dup stdin to high fd#, >= 255 */
Denys Vlasenko2db74612017-07-07 22:07:28 +02008872 G_interactive_fd = fcntl_F_DUPFD(STDIN_FILENO, 254);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008873 if (G_interactive_fd < 0) {
8874 /* try to dup to any fd */
8875 G_interactive_fd = dup(STDIN_FILENO);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008876 if (G_interactive_fd < 0) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008877 /* give up */
8878 G_interactive_fd = 0;
Mike Frysinger38478a62009-05-20 04:48:06 -04008879 G_saved_tty_pgrp = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00008880 }
8881 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008882// TODO: track & disallow any attempts of user
8883// to (inadvertently) close/redirect G_interactive_fd
Eric Andersen25f27032001-04-26 23:22:31 +00008884 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008885 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008886 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00008887 close_on_exec_on(G_interactive_fd);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008888
Mike Frysinger38478a62009-05-20 04:48:06 -04008889 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008890 /* If we were run as 'hush &', sleep until we are
8891 * in the foreground (tty pgrp == our pgrp).
8892 * If we get started under a job aware app (like bash),
8893 * make sure we are now in charge so we don't fight over
8894 * who gets the foreground */
8895 while (1) {
8896 pid_t shell_pgrp = getpgrp();
Mike Frysinger38478a62009-05-20 04:48:06 -04008897 G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
8898 if (G_saved_tty_pgrp == shell_pgrp)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008899 break;
8900 /* send TTIN to ourself (should stop us) */
8901 kill(- shell_pgrp, SIGTTIN);
8902 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008903 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008904
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008905 /* Install more signal handlers */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008906 install_special_sighandlers();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008907
Mike Frysinger38478a62009-05-20 04:48:06 -04008908 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008909 /* Set other signals to restore saved_tty_pgrp */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008910 install_fatal_sighandlers();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008911 /* Put ourselves in our own process group
8912 * (bash, too, does this only if ctty is available) */
8913 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
8914 /* Grab control of the terminal */
8915 tcsetpgrp(G_interactive_fd, getpid());
8916 }
Denys Vlasenko550bf5b2015-10-09 16:42:57 +02008917 enable_restore_tty_pgrp_on_exit();
Denys Vlasenko4840ae82011-09-04 15:28:03 +02008918
8919# if ENABLE_HUSH_SAVEHISTORY && MAX_HISTORY > 0
8920 {
8921 const char *hp = get_local_var_value("HISTFILE");
8922 if (!hp) {
8923 hp = get_local_var_value("HOME");
8924 if (hp)
8925 hp = concat_path_file(hp, ".hush_history");
8926 } else {
8927 hp = xstrdup(hp);
8928 }
8929 if (hp) {
8930 G.line_input_state->hist_file = hp;
Denys Vlasenko4840ae82011-09-04 15:28:03 +02008931 //set_local_var(xasprintf("HISTFILE=%s", ...));
8932 }
8933# if ENABLE_FEATURE_SH_HISTFILESIZE
8934 hp = get_local_var_value("HISTFILESIZE");
8935 G.line_input_state->max_history = size_from_HISTFILESIZE(hp);
8936# endif
8937 }
8938# endif
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008939 } else {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008940 install_special_sighandlers();
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008941 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008942#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00008943 /* No job control compiled in, only prompt/line editing */
8944 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02008945 G_interactive_fd = fcntl_F_DUPFD(STDIN_FILENO, 254);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008946 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008947 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008948 G_interactive_fd = dup(STDIN_FILENO);
8949 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008950 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008951 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008952 }
8953 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008954 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00008955 close_on_exec_on(G_interactive_fd);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008956 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008957 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00008958#else
8959 /* We have interactiveness code disabled */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008960 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00008961#endif
8962 /* bash:
8963 * if interactive but not a login shell, sources ~/.bashrc
8964 * (--norc turns this off, --rcfile <file> overrides)
8965 */
8966
8967 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Denys Vlasenkoc34c0332009-09-29 12:25:30 +02008968 /* note: ash and hush share this string */
8969 printf("\n\n%s %s\n"
8970 IF_HUSH_HELP("Enter 'help' for a list of built-in commands.\n")
8971 "\n",
8972 bb_banner,
8973 "hush - the humble shell"
8974 );
Mike Frysingerb2705e12009-03-23 08:44:02 +00008975 }
8976
Denis Vlasenkof9375282009-04-05 19:13:39 +00008977 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00008978
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008979 final_return:
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008980 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00008981}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00008982
8983
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008984/*
8985 * Built-ins
8986 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008987static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008988{
8989 return 0;
8990}
8991
Denys Vlasenko265062d2017-01-10 15:13:30 +01008992#if ENABLE_HUSH_TEST || ENABLE_HUSH_ECHO || ENABLE_HUSH_PRINTF || ENABLE_HUSH_KILL
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02008993static int run_applet_main(char **argv, int (*applet_main_func)(int argc, char **argv))
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008994{
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02008995 int argc = string_array_len(argv);
8996 return applet_main_func(argc, argv);
Mike Frysingerccb19592009-10-15 03:31:15 -04008997}
Denys Vlasenko265062d2017-01-10 15:13:30 +01008998#endif
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01008999#if ENABLE_HUSH_TEST || BASH_TEST2
Mike Frysingerccb19592009-10-15 03:31:15 -04009000static int FAST_FUNC builtin_test(char **argv)
9001{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02009002 return run_applet_main(argv, test_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009003}
Denys Vlasenko265062d2017-01-10 15:13:30 +01009004#endif
Denys Vlasenko1cc68042017-01-09 17:10:04 +01009005#if ENABLE_HUSH_ECHO
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009006static int FAST_FUNC builtin_echo(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009007{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02009008 return run_applet_main(argv, echo_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009009}
Denys Vlasenko1cc68042017-01-09 17:10:04 +01009010#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009011#if ENABLE_HUSH_PRINTF
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04009012static int FAST_FUNC builtin_printf(char **argv)
9013{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02009014 return run_applet_main(argv, printf_main);
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04009015}
9016#endif
9017
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009018#if ENABLE_HUSH_HELP
9019static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM)
9020{
9021 const struct built_in_command *x;
9022
9023 printf(
9024 "Built-in commands:\n"
9025 "------------------\n");
9026 for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) {
9027 if (x->b_descr)
9028 printf("%-10s%s\n", x->b_cmd, x->b_descr);
9029 }
9030 return EXIT_SUCCESS;
9031}
9032#endif
9033
9034#if MAX_HISTORY && ENABLE_FEATURE_EDITING
9035static int FAST_FUNC builtin_history(char **argv UNUSED_PARAM)
9036{
9037 show_history(G.line_input_state);
9038 return EXIT_SUCCESS;
9039}
9040#endif
9041
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009042static char **skip_dash_dash(char **argv)
9043{
9044 argv++;
9045 if (argv[0] && argv[0][0] == '-' && argv[0][1] == '-' && argv[0][2] == '\0')
9046 argv++;
9047 return argv;
9048}
9049
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009050static int FAST_FUNC builtin_cd(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009051{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009052 const char *newdir;
9053
9054 argv = skip_dash_dash(argv);
9055 newdir = argv[0];
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00009056 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00009057 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009058 * bash says "bash: cd: HOME not set" and does nothing
9059 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00009060 */
Denys Vlasenko90a99042009-09-06 02:36:23 +02009061 const char *home = get_local_var_value("HOME");
9062 newdir = home ? home : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00009063 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009064 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00009065 /* Mimic bash message exactly */
9066 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009067 return EXIT_FAILURE;
9068 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02009069 /* Read current dir (get_cwd(1) is inside) and set PWD.
9070 * Note: do not enforce exporting. If PWD was unset or unexported,
9071 * set it again, but do not export. bash does the same.
9072 */
9073 set_pwd_var(/*exp:*/ 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009074 return EXIT_SUCCESS;
9075}
9076
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009077static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM)
9078{
9079 puts(get_cwd(0));
9080 return EXIT_SUCCESS;
9081}
9082
9083static int FAST_FUNC builtin_eval(char **argv)
9084{
9085 int rcode = EXIT_SUCCESS;
9086
9087 argv = skip_dash_dash(argv);
9088 if (*argv) {
9089 char *str = expand_strvec_to_string(argv);
9090 /* bash:
9091 * eval "echo Hi; done" ("done" is syntax error):
9092 * "echo Hi" will not execute too.
9093 */
9094 parse_and_run_string(str);
9095 free(str);
9096 rcode = G.last_exitcode;
9097 }
9098 return rcode;
9099}
9100
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009101static int FAST_FUNC builtin_exec(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009102{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009103 argv = skip_dash_dash(argv);
9104 if (argv[0] == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009105 return EXIT_SUCCESS; /* bash does this */
Denys Vlasenkof37eb392009-10-18 11:46:35 +02009106
Denys Vlasenkof37eb392009-10-18 11:46:35 +02009107 /* Careful: we can end up here after [v]fork. Do not restore
9108 * tty pgrp then, only top-level shell process does that */
9109 if (G_saved_tty_pgrp && getpid() == G.root_pid)
9110 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
9111
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02009112 /* TODO: if exec fails, bash does NOT exit! We do.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009113 * We'll need to undo trap cleanup (it's inside execvp_or_die)
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02009114 * and tcsetpgrp, and this is inherently racy.
9115 */
9116 execvp_or_die(argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009117}
9118
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009119static int FAST_FUNC builtin_exit(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009120{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00009121 debug_printf_exec("%s()\n", __func__);
Denis Vlasenko40e84372009-04-18 11:23:38 +00009122
9123 /* interactive bash:
9124 * # trap "echo EEE" EXIT
9125 * # exit
9126 * exit
9127 * There are stopped jobs.
9128 * (if there are _stopped_ jobs, running ones don't count)
9129 * # exit
9130 * exit
Denys Vlasenko6830ade2013-01-15 13:58:01 +01009131 * EEE (then bash exits)
Denis Vlasenko40e84372009-04-18 11:23:38 +00009132 *
Denys Vlasenkoa110c902010-09-12 15:38:04 +02009133 * TODO: we can use G.exiting = -1 as indicator "last cmd was exit"
Denis Vlasenko40e84372009-04-18 11:23:38 +00009134 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00009135
9136 /* note: EXIT trap is run by hush_exit */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009137 argv = skip_dash_dash(argv);
9138 if (argv[0] == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00009139 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009140 /* mimic bash: exit 123abc == exit 255 + error msg */
9141 xfunc_error_retval = 255;
9142 /* bash: exit -2 == exit 254, no error msg */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009143 hush_exit(xatoi(argv[0]) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009144}
9145
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009146#if ENABLE_HUSH_TYPE
9147/* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */
9148static int FAST_FUNC builtin_type(char **argv)
9149{
9150 int ret = EXIT_SUCCESS;
9151
9152 while (*++argv) {
9153 const char *type;
9154 char *path = NULL;
9155
9156 if (0) {} /* make conditional compile easier below */
9157 /*else if (find_alias(*argv))
9158 type = "an alias";*/
9159#if ENABLE_HUSH_FUNCTIONS
9160 else if (find_function(*argv))
9161 type = "a function";
9162#endif
9163 else if (find_builtin(*argv))
9164 type = "a shell builtin";
9165 else if ((path = find_in_path(*argv)) != NULL)
9166 type = path;
9167 else {
9168 bb_error_msg("type: %s: not found", *argv);
9169 ret = EXIT_FAILURE;
9170 continue;
9171 }
9172
9173 printf("%s is %s\n", *argv, type);
9174 free(path);
9175 }
9176
9177 return ret;
9178}
9179#endif
9180
9181#if ENABLE_HUSH_READ
9182/* Interruptibility of read builtin in bash
9183 * (tested on bash-4.2.8 by sending signals (not by ^C)):
9184 *
9185 * Empty trap makes read ignore corresponding signal, for any signal.
9186 *
9187 * SIGINT:
9188 * - terminates non-interactive shell;
9189 * - interrupts read in interactive shell;
9190 * if it has non-empty trap:
9191 * - executes trap and returns to command prompt in interactive shell;
9192 * - executes trap and returns to read in non-interactive shell;
9193 * SIGTERM:
9194 * - is ignored (does not interrupt) read in interactive shell;
9195 * - terminates non-interactive shell;
9196 * if it has non-empty trap:
9197 * - executes trap and returns to read;
9198 * SIGHUP:
9199 * - terminates shell (regardless of interactivity);
9200 * if it has non-empty trap:
9201 * - executes trap and returns to read;
Denys Vlasenkof5470412017-05-22 19:34:45 +02009202 * SIGCHLD from children:
9203 * - does not interrupt read regardless of interactivity:
9204 * try: sleep 1 & read x; echo $x
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009205 */
9206static int FAST_FUNC builtin_read(char **argv)
9207{
9208 const char *r;
9209 char *opt_n = NULL;
9210 char *opt_p = NULL;
9211 char *opt_t = NULL;
9212 char *opt_u = NULL;
9213 const char *ifs;
9214 int read_flags;
9215
9216 /* "!": do not abort on errors.
9217 * Option string must start with "sr" to match BUILTIN_READ_xxx
9218 */
9219 read_flags = getopt32(argv, "!srn:p:t:u:", &opt_n, &opt_p, &opt_t, &opt_u);
9220 if (read_flags == (uint32_t)-1)
9221 return EXIT_FAILURE;
9222 argv += optind;
9223 ifs = get_local_var_value("IFS"); /* can be NULL */
9224
9225 again:
9226 r = shell_builtin_read(set_local_var_from_halves,
9227 argv,
9228 ifs,
9229 read_flags,
9230 opt_n,
9231 opt_p,
9232 opt_t,
9233 opt_u
9234 );
9235
9236 if ((uintptr_t)r == 1 && errno == EINTR) {
9237 unsigned sig = check_and_run_traps();
Denys Vlasenkof5470412017-05-22 19:34:45 +02009238 if (sig != SIGINT)
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009239 goto again;
9240 }
9241
9242 if ((uintptr_t)r > 1) {
9243 bb_error_msg("%s", r);
9244 r = (char*)(uintptr_t)1;
9245 }
9246
9247 return (uintptr_t)r;
9248}
9249#endif
9250
9251#if ENABLE_HUSH_UMASK
9252static int FAST_FUNC builtin_umask(char **argv)
9253{
9254 int rc;
9255 mode_t mask;
9256
9257 rc = 1;
9258 mask = umask(0);
9259 argv = skip_dash_dash(argv);
9260 if (argv[0]) {
9261 mode_t old_mask = mask;
9262
9263 /* numeric umasks are taken as-is */
9264 /* symbolic umasks are inverted: "umask a=rx" calls umask(222) */
9265 if (!isdigit(argv[0][0]))
9266 mask ^= 0777;
9267 mask = bb_parse_mode(argv[0], mask);
9268 if (!isdigit(argv[0][0]))
9269 mask ^= 0777;
9270 if ((unsigned)mask > 0777) {
9271 mask = old_mask;
9272 /* bash messages:
9273 * bash: umask: 'q': invalid symbolic mode operator
9274 * bash: umask: 999: octal number out of range
9275 */
9276 bb_error_msg("%s: invalid mode '%s'", "umask", argv[0]);
9277 rc = 0;
9278 }
9279 } else {
9280 /* Mimic bash */
9281 printf("%04o\n", (unsigned) mask);
9282 /* fall through and restore mask which we set to 0 */
9283 }
9284 umask(mask);
9285
9286 return !rc; /* rc != 0 - success */
9287}
9288#endif
9289
Denys Vlasenko41ade052017-01-08 18:56:24 +01009290#if ENABLE_HUSH_EXPORT || ENABLE_HUSH_TRAP
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009291static void print_escaped(const char *s)
9292{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009293 if (*s == '\'')
9294 goto squote;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009295 do {
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009296 const char *p = strchrnul(s, '\'');
9297 /* print 'xxxx', possibly just '' */
9298 printf("'%.*s'", (int)(p - s), s);
9299 if (*p == '\0')
9300 break;
9301 s = p;
9302 squote:
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009303 /* s points to '; print "'''...'''" */
9304 putchar('"');
9305 do putchar('\''); while (*++s == '\'');
9306 putchar('"');
9307 } while (*s);
9308}
Denys Vlasenko41ade052017-01-08 18:56:24 +01009309#endif
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009310
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009311#if ENABLE_HUSH_EXPORT || ENABLE_HUSH_LOCAL
9312# if !ENABLE_HUSH_LOCAL
Denys Vlasenko295fef82009-06-03 12:47:26 +02009313#define helper_export_local(argv, exp, lvl) \
9314 helper_export_local(argv, exp)
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009315# endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02009316static void helper_export_local(char **argv, int exp, int lvl)
9317{
9318 do {
9319 char *name = *argv;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009320 char *name_end = strchrnul(name, '=');
Denys Vlasenko295fef82009-06-03 12:47:26 +02009321
9322 /* So far we do not check that name is valid (TODO?) */
9323
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009324 if (*name_end == '\0') {
9325 struct variable *var, **vpp;
Denys Vlasenko295fef82009-06-03 12:47:26 +02009326
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009327 vpp = get_ptr_to_local_var(name, name_end - name);
9328 var = vpp ? *vpp : NULL;
9329
Denys Vlasenko295fef82009-06-03 12:47:26 +02009330 if (exp == -1) { /* unexporting? */
9331 /* export -n NAME (without =VALUE) */
9332 if (var) {
9333 var->flg_export = 0;
9334 debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
9335 unsetenv(name);
9336 } /* else: export -n NOT_EXISTING_VAR: no-op */
9337 continue;
9338 }
9339 if (exp == 1) { /* exporting? */
9340 /* export NAME (without =VALUE) */
9341 if (var) {
9342 var->flg_export = 1;
9343 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
9344 putenv(var->varstr);
9345 continue;
9346 }
9347 }
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009348# if ENABLE_HUSH_LOCAL
Denys Vlasenko61508d92016-10-02 21:12:02 +02009349 if (exp == 0 /* local? */
9350 && var && var->func_nest_level == lvl
9351 ) {
9352 /* "local x=abc; ...; local x" - ignore second local decl */
Denys Vlasenko80729a42016-10-02 22:33:15 +02009353 continue;
Denys Vlasenko61508d92016-10-02 21:12:02 +02009354 }
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009355# endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02009356 /* Exporting non-existing variable.
9357 * bash does not put it in environment,
9358 * but remembers that it is exported,
9359 * and does put it in env when it is set later.
9360 * We just set it to "" and export. */
9361 /* Or, it's "local NAME" (without =VALUE).
9362 * bash sets the value to "". */
9363 name = xasprintf("%s=", name);
9364 } else {
9365 /* (Un)exporting/making local NAME=VALUE */
9366 name = xstrdup(name);
9367 }
9368 set_local_var(name, /*exp:*/ exp, /*lvl:*/ lvl, /*ro:*/ 0);
9369 } while (*++argv);
9370}
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009371#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02009372
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009373#if ENABLE_HUSH_EXPORT
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009374static int FAST_FUNC builtin_export(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009375{
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00009376 unsigned opt_unexport;
9377
Denys Vlasenkodf5131c2009-06-07 16:04:17 +02009378#if ENABLE_HUSH_EXPORT_N
9379 /* "!": do not abort on errors */
9380 opt_unexport = getopt32(argv, "!n");
9381 if (opt_unexport == (uint32_t)-1)
9382 return EXIT_FAILURE;
9383 argv += optind;
9384#else
9385 opt_unexport = 0;
9386 argv++;
9387#endif
9388
9389 if (argv[0] == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009390 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009391 if (e) {
9392 while (*e) {
9393#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009394 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009395#else
9396 /* ash emits: export VAR='VAL'
9397 * bash: declare -x VAR="VAL"
9398 * we follow ash example */
9399 const char *s = *e++;
9400 const char *p = strchr(s, '=');
9401
9402 if (!p) /* wtf? take next variable */
9403 continue;
9404 /* export var= */
9405 printf("export %.*s", (int)(p - s) + 1, s);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009406 print_escaped(p + 1);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009407 putchar('\n');
9408#endif
9409 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01009410 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009411 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009412 return EXIT_SUCCESS;
9413 }
9414
Denys Vlasenko295fef82009-06-03 12:47:26 +02009415 helper_export_local(argv, (opt_unexport ? -1 : 1), 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009416
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009417 return EXIT_SUCCESS;
9418}
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009419#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009420
Denys Vlasenko295fef82009-06-03 12:47:26 +02009421#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009422static int FAST_FUNC builtin_local(char **argv)
Denys Vlasenko295fef82009-06-03 12:47:26 +02009423{
9424 if (G.func_nest_level == 0) {
9425 bb_error_msg("%s: not in a function", argv[0]);
9426 return EXIT_FAILURE; /* bash compat */
9427 }
9428 helper_export_local(argv, 0, G.func_nest_level);
9429 return EXIT_SUCCESS;
9430}
9431#endif
9432
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009433#if ENABLE_HUSH_UNSET
Denys Vlasenko61508d92016-10-02 21:12:02 +02009434/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
9435static int FAST_FUNC builtin_unset(char **argv)
9436{
9437 int ret;
9438 unsigned opts;
9439
9440 /* "!": do not abort on errors */
9441 /* "+": stop at 1st non-option */
9442 opts = getopt32(argv, "!+vf");
9443 if (opts == (unsigned)-1)
9444 return EXIT_FAILURE;
9445 if (opts == 3) {
9446 bb_error_msg("unset: -v and -f are exclusive");
9447 return EXIT_FAILURE;
9448 }
9449 argv += optind;
9450
9451 ret = EXIT_SUCCESS;
9452 while (*argv) {
9453 if (!(opts & 2)) { /* not -f */
9454 if (unset_local_var(*argv)) {
9455 /* unset <nonexistent_var> doesn't fail.
9456 * Error is when one tries to unset RO var.
9457 * Message was printed by unset_local_var. */
9458 ret = EXIT_FAILURE;
9459 }
9460 }
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009461# if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko61508d92016-10-02 21:12:02 +02009462 else {
9463 unset_func(*argv);
9464 }
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009465# endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009466 argv++;
9467 }
9468 return ret;
9469}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009470#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009471
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009472#if ENABLE_HUSH_SET
Denys Vlasenko61508d92016-10-02 21:12:02 +02009473/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
9474 * built-in 'set' handler
9475 * SUSv3 says:
9476 * set [-abCefhmnuvx] [-o option] [argument...]
9477 * set [+abCefhmnuvx] [+o option] [argument...]
9478 * set -- [argument...]
9479 * set -o
9480 * set +o
9481 * Implementations shall support the options in both their hyphen and
9482 * plus-sign forms. These options can also be specified as options to sh.
9483 * Examples:
9484 * Write out all variables and their values: set
9485 * Set $1, $2, and $3 and set "$#" to 3: set c a b
9486 * Turn on the -x and -v options: set -xv
9487 * Unset all positional parameters: set --
9488 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
9489 * Set the positional parameters to the expansion of x, even if x expands
9490 * with a leading '-' or '+': set -- $x
9491 *
9492 * So far, we only support "set -- [argument...]" and some of the short names.
9493 */
9494static int FAST_FUNC builtin_set(char **argv)
9495{
9496 int n;
9497 char **pp, **g_argv;
9498 char *arg = *++argv;
9499
9500 if (arg == NULL) {
9501 struct variable *e;
9502 for (e = G.top_var; e; e = e->next)
9503 puts(e->varstr);
9504 return EXIT_SUCCESS;
9505 }
9506
9507 do {
9508 if (strcmp(arg, "--") == 0) {
9509 ++argv;
9510 goto set_argv;
9511 }
9512 if (arg[0] != '+' && arg[0] != '-')
9513 break;
9514 for (n = 1; arg[n]; ++n) {
9515 if (set_mode((arg[0] == '-'), arg[n], argv[1]))
9516 goto error;
9517 if (arg[n] == 'o' && argv[1])
9518 argv++;
9519 }
9520 } while ((arg = *++argv) != NULL);
9521 /* Now argv[0] is 1st argument */
9522
9523 if (arg == NULL)
9524 return EXIT_SUCCESS;
9525 set_argv:
9526
9527 /* NB: G.global_argv[0] ($0) is never freed/changed */
9528 g_argv = G.global_argv;
9529 if (G.global_args_malloced) {
9530 pp = g_argv;
9531 while (*++pp)
9532 free(*pp);
9533 g_argv[1] = NULL;
9534 } else {
9535 G.global_args_malloced = 1;
9536 pp = xzalloc(sizeof(pp[0]) * 2);
9537 pp[0] = g_argv[0]; /* retain $0 */
9538 g_argv = pp;
9539 }
9540 /* This realloc's G.global_argv */
9541 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
9542
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02009543 G.global_argc = 1 + string_array_len(pp + 1);
Denys Vlasenko61508d92016-10-02 21:12:02 +02009544
9545 return EXIT_SUCCESS;
9546
9547 /* Nothing known, so abort */
9548 error:
9549 bb_error_msg("set: %s: invalid option", arg);
9550 return EXIT_FAILURE;
9551}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009552#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009553
9554static int FAST_FUNC builtin_shift(char **argv)
9555{
9556 int n = 1;
9557 argv = skip_dash_dash(argv);
9558 if (argv[0]) {
Denys Vlasenkoe59591a2017-07-06 20:12:44 +02009559 n = bb_strtou(argv[0], NULL, 10);
9560 if (errno || n < 0) {
9561 /* shared string with ash.c */
9562 bb_error_msg("Illegal number: %s", argv[0]);
9563 /*
9564 * ash aborts in this case.
9565 * bash prints error message and set $? to 1.
9566 * Interestingly, for "shift 99999" bash does not
9567 * print error message, but does set $? to 1
9568 * (and does no shifting at all).
9569 */
9570 }
Denys Vlasenko61508d92016-10-02 21:12:02 +02009571 }
9572 if (n >= 0 && n < G.global_argc) {
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01009573 if (G_global_args_malloced) {
Denys Vlasenko61508d92016-10-02 21:12:02 +02009574 int m = 1;
9575 while (m <= n)
9576 free(G.global_argv[m++]);
9577 }
9578 G.global_argc -= n;
9579 memmove(&G.global_argv[1], &G.global_argv[n+1],
9580 G.global_argc * sizeof(G.global_argv[0]));
9581 return EXIT_SUCCESS;
9582 }
9583 return EXIT_FAILURE;
9584}
9585
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009586static int FAST_FUNC builtin_source(char **argv)
Denys Vlasenko61508d92016-10-02 21:12:02 +02009587{
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009588 char *arg_path, *filename;
9589 FILE *input;
9590 save_arg_t sv;
9591 char *args_need_save;
9592#if ENABLE_HUSH_FUNCTIONS
9593 smallint sv_flg;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009594#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009595
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009596 argv = skip_dash_dash(argv);
9597 filename = argv[0];
9598 if (!filename) {
9599 /* bash says: "bash: .: filename argument required" */
9600 return 2; /* bash compat */
9601 }
9602 arg_path = NULL;
9603 if (!strchr(filename, '/')) {
9604 arg_path = find_in_path(filename);
9605 if (arg_path)
9606 filename = arg_path;
9607 }
9608 input = remember_FILE(fopen_or_warn(filename, "r"));
9609 free(arg_path);
9610 if (!input) {
9611 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
9612 /* POSIX: non-interactive shell should abort here,
9613 * not merely fail. So far no one complained :)
9614 */
9615 return EXIT_FAILURE;
9616 }
9617
9618#if ENABLE_HUSH_FUNCTIONS
9619 sv_flg = G_flag_return_in_progress;
9620 /* "we are inside sourced file, ok to use return" */
9621 G_flag_return_in_progress = -1;
9622#endif
9623 args_need_save = argv[1]; /* used as a boolean variable */
9624 if (args_need_save)
9625 save_and_replace_G_args(&sv, argv);
9626
9627 /* "false; . ./empty_line; echo Zero:$?" should print 0 */
9628 G.last_exitcode = 0;
9629 parse_and_run_file(input);
9630 fclose_and_forget(input);
9631
9632 if (args_need_save) /* can't use argv[1] instead: "shift" can mangle it */
9633 restore_G_args(&sv, argv);
9634#if ENABLE_HUSH_FUNCTIONS
9635 G_flag_return_in_progress = sv_flg;
9636#endif
9637
9638 return G.last_exitcode;
9639}
9640
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009641#if ENABLE_HUSH_TRAP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009642static int FAST_FUNC builtin_trap(char **argv)
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009643{
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009644 int sig;
9645 char *new_cmd;
9646
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009647 if (!G_traps)
9648 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009649
9650 argv++;
9651 if (!*argv) {
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00009652 int i;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009653 /* No args: print all trapped */
9654 for (i = 0; i < NSIG; ++i) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009655 if (G_traps[i]) {
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009656 printf("trap -- ");
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009657 print_escaped(G_traps[i]);
Denys Vlasenkoe74aaf92009-09-27 02:05:45 +02009658 /* note: bash adds "SIG", but only if invoked
9659 * as "bash". If called as "sh", or if set -o posix,
9660 * then it prints short signal names.
9661 * We are printing short names: */
9662 printf(" %s\n", get_signame(i));
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009663 }
9664 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01009665 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009666 return EXIT_SUCCESS;
9667 }
9668
9669 new_cmd = NULL;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009670 /* If first arg is a number: reset all specified signals */
9671 sig = bb_strtou(*argv, NULL, 10);
9672 if (errno == 0) {
9673 int ret;
9674 process_sig_list:
9675 ret = EXIT_SUCCESS;
9676 while (*argv) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009677 sighandler_t handler;
9678
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009679 sig = get_signum(*argv++);
9680 if (sig < 0 || sig >= NSIG) {
9681 ret = EXIT_FAILURE;
9682 /* Mimic bash message exactly */
Denys Vlasenko74562982017-07-06 18:40:45 +02009683 bb_error_msg("trap: %s: invalid signal specification", argv[-1]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009684 continue;
9685 }
9686
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009687 free(G_traps[sig]);
9688 G_traps[sig] = xstrdup(new_cmd);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009689
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01009690 debug_printf("trap: setting SIG%s (%i) to '%s'\n",
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009691 get_signame(sig), sig, G_traps[sig]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009692
9693 /* There is no signal for 0 (EXIT) */
9694 if (sig == 0)
9695 continue;
9696
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009697 if (new_cmd)
9698 handler = (new_cmd[0] ? record_pending_signo : SIG_IGN);
9699 else
9700 /* We are removing trap handler */
9701 handler = pick_sighandler(sig);
Denys Vlasenko0806e402011-05-12 23:06:20 +02009702 install_sighandler(sig, handler);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009703 }
9704 return ret;
9705 }
9706
9707 if (!argv[1]) { /* no second arg */
9708 bb_error_msg("trap: invalid arguments");
9709 return EXIT_FAILURE;
9710 }
9711
9712 /* First arg is "-": reset all specified to default */
9713 /* First arg is "--": skip it, the rest is "handler SIGs..." */
9714 /* Everything else: set arg as signal handler
9715 * (includes "" case, which ignores signal) */
9716 if (argv[0][0] == '-') {
9717 if (argv[0][1] == '\0') { /* "-" */
9718 /* new_cmd remains NULL: "reset these sigs" */
9719 goto reset_traps;
9720 }
9721 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
9722 argv++;
9723 }
9724 /* else: "-something", no special meaning */
9725 }
9726 new_cmd = *argv;
9727 reset_traps:
9728 argv++;
9729 goto process_sig_list;
9730}
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009731#endif
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009732
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009733#if ENABLE_HUSH_JOB
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009734static struct pipe *parse_jobspec(const char *str)
9735{
9736 struct pipe *pi;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009737 unsigned jobnum;
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009738
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009739 if (sscanf(str, "%%%u", &jobnum) != 1) {
9740 if (str[0] != '%'
9741 || (str[1] != '%' && str[1] != '+' && str[1] != '\0')
9742 ) {
9743 bb_error_msg("bad argument '%s'", str);
9744 return NULL;
9745 }
9746 /* It is "%%", "%+" or "%" - current job */
9747 jobnum = G.last_jobid;
9748 if (jobnum == 0) {
9749 bb_error_msg("no current job");
9750 return NULL;
9751 }
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009752 }
9753 for (pi = G.job_list; pi; pi = pi->next) {
9754 if (pi->jobid == jobnum) {
9755 return pi;
9756 }
9757 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009758 bb_error_msg("%u: no such job", jobnum);
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009759 return NULL;
9760}
9761
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009762static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM)
9763{
9764 struct pipe *job;
9765 const char *status_string;
9766
9767 checkjobs(NULL, 0 /*(no pid to wait for)*/);
9768 for (job = G.job_list; job; job = job->next) {
9769 if (job->alive_cmds == job->stopped_cmds)
9770 status_string = "Stopped";
9771 else
9772 status_string = "Running";
9773
9774 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
9775 }
Denys Vlasenko2ed74e22017-07-14 19:58:46 +02009776
9777 clean_up_last_dead_job();
9778
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009779 return EXIT_SUCCESS;
9780}
9781
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009782/* built-in 'fg' and 'bg' handler */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009783static int FAST_FUNC builtin_fg_bg(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009784{
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009785 int i;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009786 struct pipe *pi;
9787
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009788 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009789 return EXIT_FAILURE;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009790
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009791 /* If they gave us no args, assume they want the last backgrounded task */
9792 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00009793 for (pi = G.job_list; pi; pi = pi->next) {
9794 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009795 goto found;
9796 }
9797 }
9798 bb_error_msg("%s: no current job", argv[0]);
9799 return EXIT_FAILURE;
9800 }
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009801
9802 pi = parse_jobspec(argv[1]);
9803 if (!pi)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009804 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009805 found:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00009806 /* TODO: bash prints a string representation
9807 * of job being foregrounded (like "sleep 1 | cat") */
Mike Frysinger38478a62009-05-20 04:48:06 -04009808 if (argv[0][0] == 'f' && G_saved_tty_pgrp) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009809 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009810 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009811 }
9812
9813 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00009814 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
9815 for (i = 0; i < pi->num_cmds; i++) {
9816 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009817 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00009818 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009819
9820 i = kill(- pi->pgrp, SIGCONT);
9821 if (i < 0) {
9822 if (errno == ESRCH) {
Denys Vlasenko16096292017-07-10 10:00:28 +02009823 delete_finished_job(pi);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009824 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009825 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00009826 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009827 }
9828
Denis Vlasenko34d4d892009-04-04 20:24:37 +00009829 if (argv[0][0] == 'f') {
Denys Vlasenko16096292017-07-10 10:00:28 +02009830 remove_job_from_table(pi); /* FG job shouldn't be in job table */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009831 return checkjobs_and_fg_shell(pi);
9832 }
9833 return EXIT_SUCCESS;
9834}
9835#endif
9836
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009837#if ENABLE_HUSH_KILL
9838static int FAST_FUNC builtin_kill(char **argv)
9839{
9840 int ret = 0;
9841
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009842# if ENABLE_HUSH_JOB
9843 if (argv[1] && strcmp(argv[1], "-l") != 0) {
9844 int i = 1;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009845
9846 do {
9847 struct pipe *pi;
9848 char *dst;
9849 int j, n;
9850
9851 if (argv[i][0] != '%')
9852 continue;
9853 /*
9854 * "kill %N" - job kill
9855 * Converting to pgrp / pid kill
9856 */
9857 pi = parse_jobspec(argv[i]);
9858 if (!pi) {
9859 /* Eat bad jobspec */
9860 j = i;
9861 do {
9862 j++;
9863 argv[j - 1] = argv[j];
9864 } while (argv[j]);
9865 ret = 1;
9866 i--;
9867 continue;
9868 }
9869 /*
9870 * In jobs started under job control, we signal
9871 * entire process group by kill -PGRP_ID.
9872 * This happens, f.e., in interactive shell.
9873 *
9874 * Otherwise, we signal each child via
9875 * kill PID1 PID2 PID3.
9876 * Testcases:
9877 * sh -c 'sleep 1|sleep 1 & kill %1'
9878 * sh -c 'true|sleep 2 & sleep 1; kill %1'
9879 * sh -c 'true|sleep 1 & sleep 2; kill %1'
9880 */
Denys Vlasenko5362cc42017-01-09 05:57:13 +01009881 n = G_interactive_fd ? 1 : pi->num_cmds;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009882 dst = alloca(n * sizeof(int)*4);
9883 argv[i] = dst;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009884 if (G_interactive_fd)
9885 dst += sprintf(dst, " -%u", (int)pi->pgrp);
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009886 else for (j = 0; j < n; j++) {
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009887 struct command *cmd = &pi->cmds[j];
9888 /* Skip exited members of the job */
9889 if (cmd->pid == 0)
9890 continue;
9891 /*
9892 * kill_main has matching code to expect
9893 * leading space. Needed to not confuse
9894 * negative pids with "kill -SIGNAL_NO" syntax
9895 */
9896 dst += sprintf(dst, " %u", (int)cmd->pid);
9897 }
9898 *dst = '\0';
9899 } while (argv[++i]);
9900 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009901# endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009902
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009903 if (argv[1] || ret == 0) {
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009904 ret = run_applet_main(argv, kill_main);
9905 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009906 /* else: ret = 1, "kill %bad_jobspec" case */
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009907 return ret;
9908}
9909#endif
9910
9911#if ENABLE_HUSH_WAIT
Mike Frysinger56bdea12009-03-28 20:01:58 +00009912/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009913#if !ENABLE_HUSH_JOB
9914# define wait_for_child_or_signal(pipe,pid) wait_for_child_or_signal(pid)
9915#endif
9916static int wait_for_child_or_signal(struct pipe *waitfor_pipe, pid_t waitfor_pid)
Denys Vlasenko7e675362016-10-28 21:57:31 +02009917{
9918 int ret = 0;
9919 for (;;) {
9920 int sig;
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009921 sigset_t oldset;
Denys Vlasenko7e675362016-10-28 21:57:31 +02009922
Denys Vlasenko830ea352016-11-08 04:59:11 +01009923 if (!sigisemptyset(&G.pending_set))
9924 goto check_sig;
9925
Denys Vlasenko7e675362016-10-28 21:57:31 +02009926 /* waitpid is not interruptible by SA_RESTARTed
9927 * signals which we use. Thus, this ugly dance:
9928 */
9929
9930 /* Make sure possible SIGCHLD is stored in kernel's
9931 * pending signal mask before we call waitpid.
9932 * Or else we may race with SIGCHLD, lose it,
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009933 * and get stuck in sigsuspend...
Denys Vlasenko7e675362016-10-28 21:57:31 +02009934 */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009935 sigfillset(&oldset); /* block all signals, remember old set */
9936 sigprocmask(SIG_SETMASK, &oldset, &oldset);
Denys Vlasenko7e675362016-10-28 21:57:31 +02009937
9938 if (!sigisemptyset(&G.pending_set)) {
9939 /* Crap! we raced with some signal! */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009940 goto restore;
9941 }
9942
9943 /*errno = 0; - checkjobs does this */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009944/* Can't pass waitfor_pipe into checkjobs(): it won't be interruptible */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009945 ret = checkjobs(NULL, waitfor_pid); /* waitpid(WNOHANG) inside */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009946 debug_printf_exec("checkjobs:%d\n", ret);
9947#if ENABLE_HUSH_JOB
9948 if (waitfor_pipe) {
9949 int rcode = job_exited_or_stopped(waitfor_pipe);
9950 debug_printf_exec("job_exited_or_stopped:%d\n", rcode);
9951 if (rcode >= 0) {
9952 ret = rcode;
9953 sigprocmask(SIG_SETMASK, &oldset, NULL);
9954 break;
9955 }
9956 }
9957#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02009958 /* if ECHILD, there are no children (ret is -1 or 0) */
9959 /* if ret == 0, no children changed state */
9960 /* if ret != 0, it's exitcode+1 of exited waitfor_pid child */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009961 if (errno == ECHILD || ret) {
9962 ret--;
9963 if (ret < 0) /* if ECHILD, may need to fix "ret" */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009964 ret = 0;
9965 sigprocmask(SIG_SETMASK, &oldset, NULL);
9966 break;
9967 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02009968 /* Wait for SIGCHLD or any other signal */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009969 /* It is vitally important for sigsuspend that SIGCHLD has non-DFL handler! */
9970 /* Note: sigsuspend invokes signal handler */
9971 sigsuspend(&oldset);
9972 restore:
9973 sigprocmask(SIG_SETMASK, &oldset, NULL);
Denys Vlasenko830ea352016-11-08 04:59:11 +01009974 check_sig:
Denys Vlasenko7e675362016-10-28 21:57:31 +02009975 /* So, did we get a signal? */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009976 sig = check_and_run_traps();
9977 if (sig /*&& sig != SIGCHLD - always true */) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02009978 ret = 128 + sig;
9979 break;
9980 }
9981 /* SIGCHLD, or no signal, or ignored one, such as SIGQUIT. Repeat */
9982 }
9983 return ret;
9984}
9985
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009986static int FAST_FUNC builtin_wait(char **argv)
Mike Frysinger56bdea12009-03-28 20:01:58 +00009987{
Denys Vlasenko7e675362016-10-28 21:57:31 +02009988 int ret;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009989 int status;
Mike Frysinger56bdea12009-03-28 20:01:58 +00009990
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009991 argv = skip_dash_dash(argv);
9992 if (argv[0] == NULL) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +00009993 /* Don't care about wait results */
9994 /* Note 1: must wait until there are no more children */
9995 /* Note 2: must be interruptible */
9996 /* Examples:
9997 * $ sleep 3 & sleep 6 & wait
9998 * [1] 30934 sleep 3
9999 * [2] 30935 sleep 6
10000 * [1] Done sleep 3
10001 * [2] Done sleep 6
10002 * $ sleep 3 & sleep 6 & wait
10003 * [1] 30936 sleep 3
10004 * [2] 30937 sleep 6
10005 * [1] Done sleep 3
10006 * ^C <-- after ~4 sec from keyboard
10007 * $
10008 */
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010009 return wait_for_child_or_signal(NULL, 0 /*(no job and no pid to wait for)*/);
Denis Vlasenko7566bae2009-03-31 17:24:49 +000010010 }
Mike Frysinger56bdea12009-03-28 20:01:58 +000010011
Denys Vlasenko7e675362016-10-28 21:57:31 +020010012 do {
Denis Vlasenkod5762932009-03-31 11:22:57 +000010013 pid_t pid = bb_strtou(*argv, NULL, 10);
Denys Vlasenko7e675362016-10-28 21:57:31 +020010014 if (errno || pid <= 0) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010015#if ENABLE_HUSH_JOB
10016 if (argv[0][0] == '%') {
Denys Vlasenko02affb42016-11-08 00:59:29 +010010017 struct pipe *wait_pipe;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +010010018 ret = 127; /* bash compat for bad jobspecs */
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010019 wait_pipe = parse_jobspec(*argv);
10020 if (wait_pipe) {
Denys Vlasenko02affb42016-11-08 00:59:29 +010010021 ret = job_exited_or_stopped(wait_pipe);
Denys Vlasenko2ed74e22017-07-14 19:58:46 +020010022 if (ret < 0) {
Denys Vlasenko02affb42016-11-08 00:59:29 +010010023 ret = wait_for_child_or_signal(wait_pipe, 0);
Denys Vlasenko2ed74e22017-07-14 19:58:46 +020010024 } else {
10025 /* waiting on "last dead job" removes it */
10026 clean_up_last_dead_job();
Denys Vlasenko13102632017-07-08 00:24:32 +020010027 }
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010028 }
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +010010029 /* else: parse_jobspec() already emitted error msg */
10030 continue;
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010031 }
10032#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +000010033 /* mimic bash message */
10034 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010035 ret = EXIT_FAILURE;
10036 continue; /* bash checks all argv[] */
Denis Vlasenkod5762932009-03-31 11:22:57 +000010037 }
Denys Vlasenko02affb42016-11-08 00:59:29 +010010038
Denys Vlasenko7e675362016-10-28 21:57:31 +020010039 /* Do we have such child? */
10040 ret = waitpid(pid, &status, WNOHANG);
10041 if (ret < 0) {
10042 /* No */
Denys Vlasenko840a4352017-07-07 22:56:02 +020010043 ret = 127;
Denys Vlasenko7e675362016-10-28 21:57:31 +020010044 if (errno == ECHILD) {
Denys Vlasenko0c5657e2017-07-14 19:27:03 +020010045 if (pid == G.last_bg_pid) {
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010046 /* "wait $!" but last bg task has already exited. Try:
10047 * (sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $?
10048 * In bash it prints exitcode 0, then 3.
Denys Vlasenko26ad94b2016-11-07 23:07:21 +010010049 * In dash, it is 127.
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010050 */
Denys Vlasenko840a4352017-07-07 22:56:02 +020010051 ret = G.last_bg_pid_exitcode;
Denys Vlasenko26ad94b2016-11-07 23:07:21 +010010052 } else {
10053 /* Example: "wait 1". mimic bash message */
10054 bb_error_msg("wait: pid %d is not a child of this shell", (int)pid);
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010055 }
Denys Vlasenko7e675362016-10-28 21:57:31 +020010056 } else {
10057 /* ??? */
10058 bb_perror_msg("wait %s", *argv);
10059 }
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010060 continue; /* bash checks all argv[] */
10061 }
10062 if (ret == 0) {
Denys Vlasenko7e675362016-10-28 21:57:31 +020010063 /* Yes, and it still runs */
Denys Vlasenko02affb42016-11-08 00:59:29 +010010064 ret = wait_for_child_or_signal(NULL, pid);
Denys Vlasenko7e675362016-10-28 21:57:31 +020010065 } else {
10066 /* Yes, and it just exited */
Denys Vlasenko02affb42016-11-08 00:59:29 +010010067 process_wait_result(NULL, pid, status);
Denys Vlasenko85378cd2015-10-11 21:47:11 +020010068 ret = WEXITSTATUS(status);
Mike Frysinger56bdea12009-03-28 20:01:58 +000010069 if (WIFSIGNALED(status))
10070 ret = 128 + WTERMSIG(status);
Mike Frysinger56bdea12009-03-28 20:01:58 +000010071 }
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010072 } while (*++argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +000010073
10074 return ret;
10075}
Denys Vlasenko1125d7d2017-01-08 17:19:38 +010010076#endif
Mike Frysinger56bdea12009-03-28 20:01:58 +000010077
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010078#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
10079static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
10080{
10081 if (argv[1]) {
10082 def = bb_strtou(argv[1], NULL, 10);
10083 if (errno || def < def_min || argv[2]) {
10084 bb_error_msg("%s: bad arguments", argv[0]);
10085 def = UINT_MAX;
10086 }
10087 }
10088 return def;
10089}
10090#endif
10091
Denis Vlasenkodadfb492008-07-29 10:16:05 +000010092#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010093static int FAST_FUNC builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +000010094{
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010095 unsigned depth;
Denis Vlasenko87a86552008-07-29 19:43:10 +000010096 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +000010097 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denys Vlasenko49117b42016-07-21 14:40:08 +020010098 /* if we came from builtin_continue(), need to undo "= 1" */
10099 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +000010100 return EXIT_SUCCESS; /* bash compat */
10101 }
Denys Vlasenko49117b42016-07-21 14:40:08 +020010102 G.flag_break_continue++; /* BC_BREAK = 1, or BC_CONTINUE = 2 */
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010103
10104 G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
10105 if (depth == UINT_MAX)
10106 G.flag_break_continue = BC_BREAK;
10107 if (G.depth_of_loop < depth)
Denis Vlasenko87a86552008-07-29 19:43:10 +000010108 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010109
Denis Vlasenkobcb25532008-07-28 23:04:34 +000010110 return EXIT_SUCCESS;
10111}
10112
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010113static int FAST_FUNC builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +000010114{
Denis Vlasenko4f504a92008-07-29 19:48:30 +000010115 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
10116 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +000010117}
Denis Vlasenkodadfb492008-07-29 10:16:05 +000010118#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010119
10120#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010121static int FAST_FUNC builtin_return(char **argv)
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010122{
10123 int rc;
10124
Denys Vlasenko04b46bc2016-10-01 22:28:03 +020010125 if (G_flag_return_in_progress != -1) {
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010126 bb_error_msg("%s: not in a function or sourced script", argv[0]);
10127 return EXIT_FAILURE; /* bash compat */
10128 }
10129
Denys Vlasenko04b46bc2016-10-01 22:28:03 +020010130 G_flag_return_in_progress = 1;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010131
10132 /* bash:
10133 * out of range: wraps around at 256, does not error out
10134 * non-numeric param:
10135 * f() { false; return qwe; }; f; echo $?
10136 * bash: return: qwe: numeric argument required <== we do this
10137 * 255 <== we also do this
10138 */
10139 rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
10140 return rc;
10141}
10142#endif
Denys Vlasenkoa1184af2017-01-10 15:58:02 +010010143
10144#if ENABLE_HUSH_MEMLEAK
10145static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM)
10146{
10147 void *p;
10148 unsigned long l;
10149
10150# ifdef M_TRIM_THRESHOLD
10151 /* Optional. Reduces probability of false positives */
10152 malloc_trim(0);
10153# endif
10154 /* Crude attempt to find where "free memory" starts,
10155 * sans fragmentation. */
10156 p = malloc(240);
10157 l = (unsigned long)p;
10158 free(p);
10159 p = malloc(3400);
10160 if (l < (unsigned long)p) l = (unsigned long)p;
10161 free(p);
10162
10163
10164# if 0 /* debug */
10165 {
10166 struct mallinfo mi = mallinfo();
10167 printf("top alloc:0x%lx malloced:%d+%d=%d\n", l,
10168 mi.arena, mi.hblkhd, mi.arena + mi.hblkhd);
10169 }
10170# endif
10171
10172 if (!G.memleak_value)
10173 G.memleak_value = l;
10174
10175 l -= G.memleak_value;
10176 if ((long)l < 0)
10177 l = 0;
10178 l /= 1024;
10179 if (l > 127)
10180 l = 127;
10181
10182 /* Exitcode is "how many kilobytes we leaked since 1st call" */
10183 return l;
10184}
10185#endif