blob: 012ec219fd3c139bd5a60a165e9eb1831794dd02 [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
Denys Vlasenko57000292018-01-12 14:41:45 +010050 * "command" missing features:
51 * command -p CMD: run CMD using default $PATH
52 * (can use this to override standalone shell as well?)
Denys Vlasenko1e660422017-07-17 21:10:50 +020053 * command BLTIN: disables special-ness (e.g. errors do not abort)
Denys Vlasenko57000292018-01-12 14:41:45 +010054 * command -V CMD1 CMD2 CMD3 (multiple args) (not in standard)
55 * builtins mandated by standards we don't support:
56 * [un]alias, fc:
Denys Vlasenko203fd7b2017-07-17 16:13:35 +020057 * fc -l[nr] [BEG] [END]: list range of commands in history
58 * fc [-e EDITOR] [BEG] [END]: edit/rerun range of commands
59 * fc -s [PAT=REP] [CMD]: rerun CMD, replacing PAT with REP
Mike Frysinger25a6ca02009-03-28 13:59:26 +000060 *
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020061 * Bash compat TODO:
62 * redirection of stdout+stderr: &> and >&
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020063 * reserved words: function select
64 * advanced test: [[ ]]
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020065 * process substitution: <(list) and >(list)
66 * =~: regex operator
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020067 * let EXPR [EXPR...]
Denys Vlasenko349ef962010-05-21 15:46:24 +020068 * Each EXPR is an arithmetic expression (ARITHMETIC EVALUATION)
69 * If the last arg evaluates to 0, let returns 1; 0 otherwise.
70 * NB: let `echo 'a=a + 1'` - error (IOW: multi-word expansion is used)
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020071 * ((EXPR))
Denys Vlasenko349ef962010-05-21 15:46:24 +020072 * The EXPR is evaluated according to ARITHMETIC EVALUATION.
73 * This is exactly equivalent to let "EXPR".
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020074 * $[EXPR]: synonym for $((EXPR))
Denys Vlasenko203fd7b2017-07-17 16:13:35 +020075 * indirect expansion: ${!VAR}
76 * substring op on @: ${@:n:m}
Denys Vlasenkobbecd742010-10-03 17:22:52 +020077 *
78 * Won't do:
Denys Vlasenko203fd7b2017-07-17 16:13:35 +020079 * Some builtins mandated by standards:
80 * newgrp [GRP]: not a builtin in bash but a suid binary
81 * which spawns a new shell with new group ID
Denys Vlasenkobbecd742010-10-03 17:22:52 +020082 * In bash, export builtin is special, its arguments are assignments
Denys Vlasenko08218012009-06-03 14:43:56 +020083 * and therefore expansion of them should be "one-word" expansion:
84 * $ export i=`echo 'a b'` # export has one arg: "i=a b"
85 * compare with:
86 * $ ls i=`echo 'a b'` # ls has two args: "i=a" and "b"
87 * ls: cannot access i=a: No such file or directory
88 * ls: cannot access b: No such file or directory
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020089 * Note1: same applies to local builtin.
Denys Vlasenko08218012009-06-03 14:43:56 +020090 * Note2: bash 3.2.33(1) does this only if export word itself
91 * is not quoted:
92 * $ export i=`echo 'aaa bbb'`; echo "$i"
93 * aaa bbb
94 * $ "export" i=`echo 'aaa bbb'`; echo "$i"
95 * aaa
Eric Andersen25f27032001-04-26 23:22:31 +000096 */
Denys Vlasenko202a2d12010-07-16 12:36:14 +020097//config:config HUSH
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020098//config: bool "hush (64 kb)"
Denys Vlasenko202a2d12010-07-16 12:36:14 +020099//config: default y
100//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200101//config: hush is a small shell. It handles the normal flow control
102//config: constructs such as if/then/elif/else/fi, for/in/do/done, while loops,
103//config: case/esac. Redirections, here documents, $((arithmetic))
104//config: and functions are supported.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200105//config:
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200106//config: It will compile and work on no-mmu systems.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200107//config:
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200108//config: It does not handle select, aliases, tilde expansion,
109//config: &>file and >&file redirection of stdout+stderr.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200110//config:
111//config:config HUSH_BASH_COMPAT
112//config: bool "bash-compatible extensions"
113//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100114//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200115//config:
Denys Vlasenko9e800222010-10-03 14:28:04 +0200116//config:config HUSH_BRACE_EXPANSION
117//config: bool "Brace expansion"
118//config: default y
119//config: depends on HUSH_BASH_COMPAT
120//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200121//config: Enable {abc,def} extension.
Denys Vlasenko9e800222010-10-03 14:28:04 +0200122//config:
Denys Vlasenko5807e182018-02-08 19:19:04 +0100123//config:config HUSH_LINENO_VAR
124//config: bool "$LINENO variable"
125//config: default y
126//config: depends on HUSH_BASH_COMPAT
127//config:
Denys Vlasenko54c21112018-01-27 20:46:45 +0100128//config:config HUSH_BASH_SOURCE_CURDIR
129//config: bool "'source' and '.' builtins search current directory after $PATH"
130//config: default n # do not encourage non-standard behavior
131//config: depends on HUSH_BASH_COMPAT
132//config: help
133//config: This is not compliant with standards. Avoid if possible.
134//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200135//config:config HUSH_INTERACTIVE
136//config: bool "Interactive mode"
137//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100138//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200139//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200140//config: Enable interactive mode (prompt and command editing).
141//config: Without this, hush simply reads and executes commands
142//config: from stdin just like a shell script from a file.
143//config: No prompt, no PS1/PS2 magic shell variables.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200144//config:
Denys Vlasenko99862cb2010-09-12 17:34:13 +0200145//config:config HUSH_SAVEHISTORY
146//config: bool "Save command history to .hush_history"
147//config: default y
148//config: depends on HUSH_INTERACTIVE && FEATURE_EDITING_SAVEHISTORY
Denys Vlasenko99862cb2010-09-12 17:34:13 +0200149//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200150//config:config HUSH_JOB
151//config: bool "Job control"
152//config: default y
153//config: depends on HUSH_INTERACTIVE
154//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200155//config: Enable job control: Ctrl-Z backgrounds, Ctrl-C interrupts current
156//config: command (not entire shell), fg/bg builtins work. Without this option,
157//config: "cmd &" still works by simply spawning a process and immediately
158//config: prompting for next command (or executing next command in a script),
159//config: but no separate process group is formed.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200160//config:
161//config:config HUSH_TICK
Denys Vlasenkof5604222017-01-10 14:58:54 +0100162//config: bool "Support process substitution"
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200163//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100164//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200165//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200166//config: Enable `command` and $(command).
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200167//config:
168//config:config HUSH_IF
169//config: bool "Support if/then/elif/else/fi"
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_LOOPS
174//config: bool "Support for, while and until loops"
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:
178//config:config HUSH_CASE
179//config: bool "Support case ... esac statement"
180//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100181//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200182//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200183//config: Enable case ... esac statement. +400 bytes.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200184//config:
185//config:config HUSH_FUNCTIONS
186//config: bool "Support funcname() { commands; } syntax"
187//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100188//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200189//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200190//config: Enable support for shell functions. +800 bytes.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200191//config:
192//config:config HUSH_LOCAL
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100193//config: bool "local builtin"
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200194//config: default y
195//config: depends on HUSH_FUNCTIONS
196//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200197//config: Enable support for local variables in functions.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200198//config:
199//config:config HUSH_RANDOM_SUPPORT
200//config: bool "Pseudorandom generator and $RANDOM variable"
201//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100202//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200203//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200204//config: Enable pseudorandom generator and dynamic variable "$RANDOM".
205//config: Each read of "$RANDOM" will generate a new pseudorandom value.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200206//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200207//config:config HUSH_MODE_X
208//config: bool "Support 'hush -x' option and 'set -x' command"
209//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100210//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200211//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200212//config: This instructs hush to print commands before execution.
213//config: Adds ~300 bytes.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200214//config:
Denys Vlasenko1cc68042017-01-09 17:10:04 +0100215//config:config HUSH_ECHO
216//config: bool "echo builtin"
217//config: default y
218//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko1cc68042017-01-09 17:10:04 +0100219//config:
220//config:config HUSH_PRINTF
221//config: bool "printf builtin"
222//config: default y
223//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenkof5604222017-01-10 14:58:54 +0100224//config:
Denys Vlasenko265062d2017-01-10 15:13:30 +0100225//config:config HUSH_TEST
226//config: bool "test builtin"
227//config: default y
228//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
229//config:
Denys Vlasenkof5604222017-01-10 14:58:54 +0100230//config:config HUSH_HELP
231//config: bool "help builtin"
232//config: default y
233//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko1cc68042017-01-09 17:10:04 +0100234//config:
Denys Vlasenko6ec76d82017-01-08 18:40:41 +0100235//config:config HUSH_EXPORT
236//config: bool "export builtin"
237//config: default y
238//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko6ec76d82017-01-08 18:40:41 +0100239//config:
240//config:config HUSH_EXPORT_N
241//config: bool "Support 'export -n' option"
242//config: default y
243//config: depends on HUSH_EXPORT
244//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200245//config: export -n unexports variables. It is a bash extension.
Denys Vlasenko6ec76d82017-01-08 18:40:41 +0100246//config:
Denys Vlasenko1e660422017-07-17 21:10:50 +0200247//config:config HUSH_READONLY
248//config: bool "readonly builtin"
249//config: default y
Denys Vlasenko6b0695b2017-07-17 21:47:27 +0200250//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko1e660422017-07-17 21:10:50 +0200251//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200252//config: Enable support for read-only variables.
Denys Vlasenko1e660422017-07-17 21:10:50 +0200253//config:
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100254//config:config HUSH_KILL
Denys Vlasenkof5604222017-01-10 14:58:54 +0100255//config: bool "kill builtin (supports kill %jobspec)"
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100256//config: default y
257//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100258//config:
259//config:config HUSH_WAIT
260//config: bool "wait builtin"
261//config: default y
262//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100263//config:
Denys Vlasenko3bb3e1d2018-01-11 18:05:05 +0100264//config:config HUSH_COMMAND
265//config: bool "command builtin"
266//config: default y
267//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
268//config:
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100269//config:config HUSH_TRAP
270//config: bool "trap builtin"
271//config: default y
272//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100273//config:
274//config:config HUSH_TYPE
275//config: bool "type builtin"
276//config: default y
277//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100278//config:
Denys Vlasenko11f2e992017-08-10 16:34:03 +0200279//config:config HUSH_TIMES
280//config: bool "times builtin"
281//config: default y
282//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
283//config:
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100284//config:config HUSH_READ
285//config: bool "read builtin"
286//config: default y
287//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100288//config:
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100289//config:config HUSH_SET
290//config: bool "set builtin"
291//config: default y
292//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100293//config:
294//config:config HUSH_UNSET
295//config: bool "unset builtin"
296//config: default y
297//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenkof5604222017-01-10 14:58:54 +0100298//config:
299//config:config HUSH_ULIMIT
300//config: bool "ulimit builtin"
301//config: default y
302//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100303//config:
Denys Vlasenkod5933b12017-01-08 18:31:39 +0100304//config:config HUSH_UMASK
305//config: bool "umask builtin"
306//config: default y
307//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenkod5933b12017-01-08 18:31:39 +0100308//config:
Denys Vlasenko74d40582017-08-11 01:32:46 +0200309//config:config HUSH_GETOPTS
310//config: bool "getopts builtin"
311//config: default y
312//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
313//config:
Denys Vlasenko44719692017-01-08 18:44:41 +0100314//config:config HUSH_MEMLEAK
315//config: bool "memleak builtin (debugging)"
316//config: default n
317//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200318
Denys Vlasenko20704f02011-03-23 17:59:27 +0100319//applet:IF_HUSH(APPLET(hush, BB_DIR_BIN, BB_SUID_DROP))
Denys Vlasenko205d48e2017-01-29 14:57:33 +0100320// APPLET_ODDNAME:name main location suid_type help
Denys Vlasenko205d48e2017-01-29 14:57:33 +0100321//applet:IF_SH_IS_HUSH( APPLET_ODDNAME(sh, hush, BB_DIR_BIN, BB_SUID_DROP, hush))
Denys Vlasenko0b883582016-12-23 16:49:07 +0100322//applet:IF_BASH_IS_HUSH(APPLET_ODDNAME(bash, hush, BB_DIR_BIN, BB_SUID_DROP, hush))
Denys Vlasenko20704f02011-03-23 17:59:27 +0100323
324//kbuild:lib-$(CONFIG_HUSH) += hush.o match.o shell_common.o
Denys Vlasenko0b883582016-12-23 16:49:07 +0100325//kbuild:lib-$(CONFIG_SH_IS_HUSH) += hush.o match.o shell_common.o
326//kbuild:lib-$(CONFIG_BASH_IS_HUSH) += hush.o match.o shell_common.o
Denys Vlasenko20704f02011-03-23 17:59:27 +0100327//kbuild:lib-$(CONFIG_HUSH_RANDOM_SUPPORT) += random.o
328
Dan Fandrich89ca2f92010-11-28 01:54:39 +0100329/* -i (interactive) and -s (read stdin) are also accepted,
330 * but currently do nothing, therefore aren't shown in help.
331 * NOMMU-specific options are not meant to be used by users,
332 * therefore we don't show them either.
333 */
334//usage:#define hush_trivial_usage
Denys Vlasenko9fda6092017-07-14 13:36:48 +0200335//usage: "[-enxl] [-c 'SCRIPT' [ARG0 [ARGS]] / FILE [ARGS]]"
Denys Vlasenkob0b83432011-03-07 12:34:59 +0100336//usage:#define hush_full_usage "\n\n"
337//usage: "Unix shell interpreter"
338
Denys Vlasenko67047462016-12-22 15:21:58 +0100339#if !(defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) \
340 || defined(__APPLE__) \
341 )
342# include <malloc.h> /* for malloc_trim */
343#endif
344#include <glob.h>
345/* #include <dmalloc.h> */
346#if ENABLE_HUSH_CASE
347# include <fnmatch.h>
348#endif
Denys Vlasenko11f2e992017-08-10 16:34:03 +0200349#include <sys/times.h>
Denys Vlasenko67047462016-12-22 15:21:58 +0100350#include <sys/utsname.h> /* for setting $HOSTNAME */
351
352#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
353#include "unicode.h"
354#include "shell_common.h"
355#include "math.h"
356#include "match.h"
357#if ENABLE_HUSH_RANDOM_SUPPORT
358# include "random.h"
359#else
360# define CLEAR_RANDOM_T(rnd) ((void)0)
361#endif
362#ifndef F_DUPFD_CLOEXEC
363# define F_DUPFD_CLOEXEC F_DUPFD
364#endif
365#ifndef PIPE_BUF
366# define PIPE_BUF 4096 /* amount of buffering in a pipe */
367#endif
368
Denis Vlasenko1943aec2009-04-09 14:15:57 +0000369
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100370/* So far, all bash compat is controlled by one config option */
371/* Separate defines document which part of code implements what */
372#define BASH_PATTERN_SUBST ENABLE_HUSH_BASH_COMPAT
373#define BASH_SUBSTR ENABLE_HUSH_BASH_COMPAT
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100374#define BASH_SOURCE ENABLE_HUSH_BASH_COMPAT
375#define BASH_HOSTNAME_VAR ENABLE_HUSH_BASH_COMPAT
Denys Vlasenko4ee824f2017-07-03 01:22:13 +0200376#define BASH_TEST2 (ENABLE_HUSH_BASH_COMPAT && ENABLE_HUSH_TEST)
Denys Vlasenko1f41c882017-08-09 13:52:36 +0200377#define BASH_READ_D ENABLE_HUSH_BASH_COMPAT
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100378
379
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200380/* Build knobs */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000381#define LEAK_HUNTING 0
382#define BUILD_AS_NOMMU 0
383/* Enable/disable sanity checks. Ok to enable in production,
384 * only adds a bit of bloat. Set to >1 to get non-production level verbosity.
385 * Keeping 1 for now even in released versions.
386 */
387#define HUSH_DEBUG 1
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200388/* Slightly bigger (+200 bytes), but faster hush.
389 * So far it only enables a trick with counting SIGCHLDs and forks,
390 * which allows us to do fewer waitpid's.
391 * (we can detect a case where neither forks were done nor SIGCHLDs happened
392 * and therefore waitpid will return the same result as last time)
393 */
394#define ENABLE_HUSH_FAST 0
Denys Vlasenko9297dbc2010-07-05 21:37:12 +0200395/* TODO: implement simplified code for users which do not need ${var%...} ops
396 * So far ${var%...} ops are always enabled:
397 */
398#define ENABLE_HUSH_DOLLAR_OPS 1
Denis Vlasenko1943aec2009-04-09 14:15:57 +0000399
400
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000401#if BUILD_AS_NOMMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000402# undef BB_MMU
403# undef USE_FOR_NOMMU
404# undef USE_FOR_MMU
405# define BB_MMU 0
406# define USE_FOR_NOMMU(...) __VA_ARGS__
407# define USE_FOR_MMU(...)
408#endif
409
Denys Vlasenko1fcbff22010-06-26 02:40:08 +0200410#include "NUM_APPLETS.h"
Denys Vlasenko14974842010-03-23 01:08:26 +0100411#if NUM_APPLETS == 1
Denis Vlasenko61befda2008-11-25 01:36:03 +0000412/* STANDALONE does not make sense, and won't compile */
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000413# undef CONFIG_FEATURE_SH_STANDALONE
414# undef ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000415# undef IF_FEATURE_SH_STANDALONE
Denys Vlasenko14974842010-03-23 01:08:26 +0100416# undef IF_NOT_FEATURE_SH_STANDALONE
417# define ENABLE_FEATURE_SH_STANDALONE 0
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000418# define IF_FEATURE_SH_STANDALONE(...)
419# define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__
Denis Vlasenko61befda2008-11-25 01:36:03 +0000420#endif
421
Denis Vlasenko05743d72008-02-10 12:10:08 +0000422#if !ENABLE_HUSH_INTERACTIVE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000423# undef ENABLE_FEATURE_EDITING
424# define ENABLE_FEATURE_EDITING 0
425# undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
426# define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denys Vlasenko8cab6672012-04-20 14:48:00 +0200427# undef ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
428# define ENABLE_FEATURE_EDITING_SAVE_ON_EXIT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000429#endif
430
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000431/* Do we support ANY keywords? */
432#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000433# define HAS_KEYWORDS 1
434# define IF_HAS_KEYWORDS(...) __VA_ARGS__
435# define IF_HAS_NO_KEYWORDS(...)
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000436#else
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000437# define HAS_KEYWORDS 0
438# define IF_HAS_KEYWORDS(...)
439# define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000440#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000441
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000442/* If you comment out one of these below, it will be #defined later
443 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000444#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000445/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000446#define debug_printf_parse(...) do {} while (0)
447#define debug_print_tree(a, b) do {} while (0)
448#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000449#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000450#define debug_printf_jobs(...) do {} while (0)
451#define debug_printf_expand(...) do {} while (0)
Denys Vlasenko1e811b12010-05-22 03:12:29 +0200452#define debug_printf_varexp(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000453#define debug_printf_glob(...) do {} while (0)
Denys Vlasenko2db74612017-07-07 22:07:28 +0200454#define debug_printf_redir(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000455#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000456#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000457#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000458
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000459#define ERR_PTR ((void*)(long)1)
460
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +0100461#define JOB_STATUS_FORMAT "[%u] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000462
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200463#define _SPECIAL_VARS_STR "_*@$!?#"
464#define SPECIAL_VARS_STR ("_*@$!?#" + 1)
465#define NUMERIC_SPECVARS_STR ("_*@$!?#" + 3)
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100466#if BASH_PATTERN_SUBST
Denys Vlasenko36f774a2010-09-05 14:45:38 +0200467/* Support / and // replace ops */
468/* Note that // is stored as \ in "encoded" string representation */
469# define VAR_ENCODED_SUBST_OPS "\\/%#:-=+?"
470# define VAR_SUBST_OPS ("\\/%#:-=+?" + 1)
471# define MINUS_PLUS_EQUAL_QUESTION ("\\/%#:-=+?" + 5)
472#else
473# define VAR_ENCODED_SUBST_OPS "%#:-=+?"
474# define VAR_SUBST_OPS "%#:-=+?"
475# define MINUS_PLUS_EQUAL_QUESTION ("%#:-=+?" + 3)
476#endif
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200477
Denys Vlasenko932b9972018-01-11 12:39:48 +0100478#define SPECIAL_VAR_SYMBOL_STR "\3"
479#define SPECIAL_VAR_SYMBOL 3
480/* The "variable" with name "\1" emits string "\3". Testcase: "echo ^C" */
481#define SPECIAL_VAR_QUOTED_SVS 1
Eric Andersen25f27032001-04-26 23:22:31 +0000482
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200483struct variable;
484
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000485static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
486
487/* This supports saving pointers malloced in vfork child,
Denis Vlasenkoc376db32009-04-15 21:49:48 +0000488 * to be freed in the parent.
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000489 */
490#if !BB_MMU
491typedef struct nommu_save_t {
492 char **new_env;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200493 struct variable *old_vars;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000494 char **argv;
Denis Vlasenko27014ed2009-04-15 21:48:23 +0000495 char **argv_from_re_execing;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000496} nommu_save_t;
497#endif
498
Denys Vlasenko9b782552010-09-08 13:33:26 +0200499enum {
Eric Andersen25f27032001-04-26 23:22:31 +0000500 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000501#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000502 RES_IF ,
503 RES_THEN ,
504 RES_ELIF ,
505 RES_ELSE ,
506 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000507#endif
508#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000509 RES_FOR ,
510 RES_WHILE ,
511 RES_UNTIL ,
512 RES_DO ,
513 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000514#endif
515#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000516 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000517#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000518#if ENABLE_HUSH_CASE
519 RES_CASE ,
Denys Vlasenkoe9bda902009-05-23 16:50:07 +0200520 /* three pseudo-keywords support contrived "case" syntax: */
521 RES_CASE_IN, /* "case ... IN", turns into RES_MATCH when IN is observed */
522 RES_MATCH , /* "word)" */
523 RES_CASE_BODY, /* "this command is inside CASE" */
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000524 RES_ESAC ,
525#endif
526 RES_XXXX ,
527 RES_SNTX
Denys Vlasenko9b782552010-09-08 13:33:26 +0200528};
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000529
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000530typedef struct o_string {
531 char *data;
532 int length; /* position where data is appended */
533 int maxlen;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +0200534 int o_expflags;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000535 /* At least some part of the string was inside '' or "",
536 * possibly empty one: word"", wo''rd etc. */
Denys Vlasenko38292b62010-09-05 14:49:40 +0200537 smallint has_quoted_part;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000538 smallint has_empty_slot;
539 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
540} o_string;
541enum {
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200542 EXP_FLAG_SINGLEWORD = 0x80, /* must be 0x80 */
543 EXP_FLAG_GLOB = 0x2,
544 /* Protect newly added chars against globbing
545 * by prepending \ to *, ?, [, \ */
546 EXP_FLAG_ESC_GLOB_CHARS = 0x1,
547};
548enum {
549 MAYBE_ASSIGNMENT = 0,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000550 DEFINITELY_ASSIGNMENT = 1,
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200551 NOT_ASSIGNMENT = 2,
Maninder Singh97c64912015-05-25 13:46:36 +0200552 /* Not an assignment, but next word may be: "if v=xyz cmd;" */
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200553 WORD_IS_KEYWORD = 3,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000554};
555/* Used for initialization: o_string foo = NULL_O_STRING; */
556#define NULL_O_STRING { NULL }
557
Denys Vlasenko29f9b722011-05-14 11:27:36 +0200558#ifndef debug_printf_parse
559static const char *const assignment_flag[] = {
560 "MAYBE_ASSIGNMENT",
561 "DEFINITELY_ASSIGNMENT",
562 "NOT_ASSIGNMENT",
563 "WORD_IS_KEYWORD",
564};
565#endif
566
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000567typedef struct in_str {
568 const char *p;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000569#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000570 smallint promptmode; /* 0: PS1, 1: PS2 */
571#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +0200572 int peek_buf[2];
Denys Vlasenkocecbc982011-03-30 18:54:52 +0200573 int last_char;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000574 FILE *file;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000575} in_str;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000576
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200577/* The descrip member of this structure is only used to make
578 * debugging output pretty */
579static const struct {
580 int mode;
581 signed char default_fd;
582 char descrip[3];
583} redir_table[] = {
584 { O_RDONLY, 0, "<" },
585 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
586 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
587 { O_CREAT|O_RDWR, 1, "<>" },
588 { O_RDONLY, 0, "<<" },
589/* Should not be needed. Bogus default_fd helps in debugging */
590/* { O_RDONLY, 77, "<<" }, */
591};
592
Eric Andersen25f27032001-04-26 23:22:31 +0000593struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000594 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000595 char *rd_filename; /* filename */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000596 int rd_fd; /* fd to redirect */
597 /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
598 int rd_dup;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000599 smallint rd_type; /* (enum redir_type) */
600 /* note: for heredocs, rd_filename contains heredoc delimiter,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000601 * and subsequently heredoc itself; and rd_dup is a bitmask:
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200602 * bit 0: do we need to trim leading tabs?
603 * bit 1: is heredoc quoted (<<'delim' syntax) ?
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000604 */
Eric Andersen25f27032001-04-26 23:22:31 +0000605};
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000606typedef enum redir_type {
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200607 REDIRECT_INPUT = 0,
608 REDIRECT_OVERWRITE = 1,
609 REDIRECT_APPEND = 2,
610 REDIRECT_IO = 3,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000611 REDIRECT_HEREDOC = 4,
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200612 REDIRECT_HEREDOC2 = 5, /* REDIRECT_HEREDOC after heredoc is loaded */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000613
614 REDIRFD_CLOSE = -3,
615 REDIRFD_SYNTAX_ERR = -2,
Denis Vlasenko835fcfd2009-04-10 13:51:56 +0000616 REDIRFD_TO_FILE = -1,
617 /* otherwise, rd_fd is redirected to rd_dup */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000618
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000619 HEREDOC_SKIPTABS = 1,
620 HEREDOC_QUOTED = 2,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000621} redir_type;
622
Eric Andersen25f27032001-04-26 23:22:31 +0000623
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000624struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000625 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000626 int assignment_cnt; /* how many argv[i] are assignments? */
Denys Vlasenko5807e182018-02-08 19:19:04 +0100627#if ENABLE_HUSH_LINENO_VAR
Denys Vlasenko6aad1dd2018-01-19 15:37:04 +0100628 unsigned lineno;
629#endif
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200630 smallint cmd_type; /* CMD_xxx */
631#define CMD_NORMAL 0
632#define CMD_SUBSHELL 1
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100633#if BASH_TEST2
Denys Vlasenkod383b492010-09-06 10:22:13 +0200634/* used for "[[ EXPR ]]" */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200635# define CMD_SINGLEWORD_NOGLOB 2
Denis Vlasenkoed055212009-04-11 10:37:10 +0000636#endif
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200637#if ENABLE_HUSH_FUNCTIONS
638# define CMD_FUNCDEF 3
639#endif
640
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100641 smalluint cmd_exitcode;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200642 /* if non-NULL, this "command" is { list }, ( list ), or a compound statement */
643 struct pipe *group;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000644#if !BB_MMU
645 char *group_as_string;
646#endif
Denis Vlasenkoed055212009-04-11 10:37:10 +0000647#if ENABLE_HUSH_FUNCTIONS
648 struct function *child_func;
649/* This field is used to prevent a bug here:
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200650 * while...do f1() {a;}; f1; f1() {b;}; f1; done
Denis Vlasenkoed055212009-04-11 10:37:10 +0000651 * When we execute "f1() {a;}" cmd, we create new function and clear
652 * cmd->group, cmd->group_as_string, cmd->argv[0].
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200653 * When we execute "f1() {b;}", we notice that f1 exists,
654 * and that its "parent cmd" struct is still "alive",
Denis Vlasenkoed055212009-04-11 10:37:10 +0000655 * we put those fields back into cmd->xxx
656 * (struct function has ->parent_cmd ptr to facilitate that).
657 * When we loop back, we can execute "f1() {a;}" again and set f1 correctly.
658 * Without this trick, loop would execute a;b;b;b;...
659 * instead of correct sequence a;b;a;b;...
660 * When command is freed, it severs the link
661 * (sets ->child_func->parent_cmd to NULL).
662 */
663#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000664 char **argv; /* command name and arguments */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000665/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
666 * and on execution these are substituted with their values.
667 * Substitution can make _several_ words out of one argv[n]!
668 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000669 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000670 */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000671 struct redir_struct *redirects; /* I/O redirections */
672};
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000673/* Is there anything in this command at all? */
674#define IS_NULL_CMD(cmd) \
675 (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects)
676
Eric Andersen25f27032001-04-26 23:22:31 +0000677struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000678 struct pipe *next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000679 int num_cmds; /* total number of commands in pipe */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000680 int alive_cmds; /* number of commands running (not exited) */
681 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000682#if ENABLE_HUSH_JOB
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +0100683 unsigned jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000684 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000685 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000686#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000687 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000688 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000689 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
690 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000691};
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000692typedef enum pipe_style {
Denys Vlasenko00a06b92016-11-08 20:35:53 +0100693 PIPE_SEQ = 0,
694 PIPE_AND = 1,
695 PIPE_OR = 2,
696 PIPE_BG = 3,
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000697} pipe_style;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000698/* Is there anything in this pipe at all? */
699#define IS_NULL_PIPE(pi) \
700 ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE))
Eric Andersen25f27032001-04-26 23:22:31 +0000701
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000702/* This holds pointers to the various results of parsing */
703struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000704 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000705 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000706 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000707 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000708 /* last command in pipe (being constructed right now) */
709 struct command *command;
710 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000711 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000712#if !BB_MMU
713 o_string as_string;
714#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000715#if HAS_KEYWORDS
716 smallint ctx_res_w;
717 smallint ctx_inverted; /* "! cmd | cmd" */
718#if ENABLE_HUSH_CASE
719 smallint ctx_dsemicolon; /* ";;" seen */
720#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000721 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
722 int old_flag;
723 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000724 * example: "if pipe1; pipe2; then pipe3; fi"
725 * when we see "if" or "then", we malloc and copy current context,
726 * and make ->stack point to it. then we parse pipeN.
727 * when closing "then" / fi" / whatever is found,
728 * we move list_head into ->stack->command->group,
729 * copy ->stack into current context, and delete ->stack.
730 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000731 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000732 struct parse_context *stack;
733#endif
734};
735
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000736/* On program start, environ points to initial environment.
737 * putenv adds new pointers into it, unsetenv removes them.
738 * Neither of these (de)allocates the strings.
739 * setenv allocates new strings in malloc space and does putenv,
740 * and thus setenv is unusable (leaky) for shell's purposes */
741#define setenv(...) setenv_is_leaky_dont_use()
742struct variable {
743 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000744 char *varstr; /* points to "name=" portion */
Denys Vlasenko295fef82009-06-03 12:47:26 +0200745#if ENABLE_HUSH_LOCAL
746 unsigned func_nest_level;
747#endif
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000748 int max_len; /* if > 0, name is part of initial env; else name is malloced */
749 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000750 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000751};
752
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000753enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000754 BC_BREAK = 1,
755 BC_CONTINUE = 2,
756};
757
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000758#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000759struct function {
760 struct function *next;
761 char *name;
Denis Vlasenkoed055212009-04-11 10:37:10 +0000762 struct command *parent_cmd;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000763 struct pipe *body;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200764# if !BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000765 char *body_as_string;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200766# endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000767};
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000768#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000769
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000770
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100771/* set -/+o OPT support. (TODO: make it optional)
772 * bash supports the following opts:
773 * allexport off
774 * braceexpand on
775 * emacs on
776 * errexit off
777 * errtrace off
778 * functrace off
779 * hashall on
780 * histexpand off
781 * history on
782 * ignoreeof off
783 * interactive-comments on
784 * keyword off
785 * monitor on
786 * noclobber off
787 * noexec off
788 * noglob off
789 * nolog off
790 * notify off
791 * nounset off
792 * onecmd off
793 * physical off
794 * pipefail off
795 * posix off
796 * privileged off
797 * verbose off
798 * vi off
799 * xtrace off
800 */
Dan Fandrich85c62472010-11-20 13:05:17 -0800801static const char o_opt_strings[] ALIGN1 =
802 "pipefail\0"
803 "noexec\0"
Denys Vlasenko9fda6092017-07-14 13:36:48 +0200804 "errexit\0"
Dan Fandrich85c62472010-11-20 13:05:17 -0800805#if ENABLE_HUSH_MODE_X
806 "xtrace\0"
807#endif
808 ;
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100809enum {
810 OPT_O_PIPEFAIL,
Dan Fandrich85c62472010-11-20 13:05:17 -0800811 OPT_O_NOEXEC,
Denys Vlasenko9fda6092017-07-14 13:36:48 +0200812 OPT_O_ERREXIT,
Dan Fandrich85c62472010-11-20 13:05:17 -0800813#if ENABLE_HUSH_MODE_X
814 OPT_O_XTRACE,
815#endif
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100816 NUM_OPT_O
817};
818
819
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +0200820struct FILE_list {
821 struct FILE_list *next;
822 FILE *fp;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +0200823 int fd;
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +0200824};
825
826
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000827/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000828/* Sorted roughly by size (smaller offsets == smaller code) */
829struct globals {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000830 /* interactive_fd != 0 means we are an interactive shell.
831 * If we are, then saved_tty_pgrp can also be != 0, meaning
832 * that controlling tty is available. With saved_tty_pgrp == 0,
833 * job control still works, but terminal signals
834 * (^C, ^Z, ^Y, ^\) won't work at all, and background
835 * process groups can only be created with "cmd &".
836 * With saved_tty_pgrp != 0, hush will use tcsetpgrp()
837 * to give tty to the foreground process group,
838 * and will take it back when the group is stopped (^Z)
839 * or killed (^C).
840 */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000841#if ENABLE_HUSH_INTERACTIVE
842 /* 'interactive_fd' is a fd# open to ctty, if we have one
843 * _AND_ if we decided to act interactively */
844 int interactive_fd;
845 const char *PS1;
846 const char *PS2;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000847# define G_interactive_fd (G.interactive_fd)
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000848#else
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000849# define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000850#endif
851#if ENABLE_FEATURE_EDITING
852 line_input_t *line_input_state;
853#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000854 pid_t root_pid;
Denys Vlasenkodea47882009-10-09 15:40:49 +0200855 pid_t root_ppid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000856 pid_t last_bg_pid;
Denys Vlasenko20b3d142009-10-09 20:59:39 +0200857#if ENABLE_HUSH_RANDOM_SUPPORT
858 random_t random_gen;
859#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000860#if ENABLE_HUSH_JOB
861 int run_list_level;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +0100862 unsigned last_jobid;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000863 pid_t saved_tty_pgrp;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000864 struct pipe *job_list;
Mike Frysinger38478a62009-05-20 04:48:06 -0400865# define G_saved_tty_pgrp (G.saved_tty_pgrp)
866#else
867# define G_saved_tty_pgrp 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000868#endif
Denys Vlasenko9fda6092017-07-14 13:36:48 +0200869 /* How deeply are we in context where "set -e" is ignored */
870 int errexit_depth;
871 /* "set -e" rules (do we follow them correctly?):
872 * Exit if pipe, list, or compound command exits with a non-zero status.
873 * Shell does not exit if failed command is part of condition in
874 * if/while, part of && or || list except the last command, any command
875 * in a pipe but the last, or if the command's return value is being
876 * inverted with !. If a compound command other than a subshell returns a
877 * non-zero status because a command failed while -e was being ignored, the
878 * shell does not exit. A trap on ERR, if set, is executed before the shell
879 * exits [ERR is a bashism].
880 *
881 * If a compound command or function executes in a context where -e is
882 * ignored, none of the commands executed within are affected by the -e
883 * setting. If a compound command or function sets -e while executing in a
884 * context where -e is ignored, that setting does not have any effect until
885 * the compound command or the command containing the function call completes.
886 */
887
Denys Vlasenko26777aa2010-11-22 23:49:10 +0100888 char o_opt[NUM_OPT_O];
Denys Vlasenko57542eb2010-11-28 03:59:30 +0100889#if ENABLE_HUSH_MODE_X
890# define G_x_mode (G.o_opt[OPT_O_XTRACE])
891#else
892# define G_x_mode 0
893#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000894 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000895#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000896 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000897#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000898#if ENABLE_HUSH_FUNCTIONS
899 /* 0: outside of a function (or sourced file)
900 * -1: inside of a function, ok to use return builtin
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000901 * 1: return is invoked, skip all till end of func
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000902 */
903 smallint flag_return_in_progress;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +0200904# define G_flag_return_in_progress (G.flag_return_in_progress)
905#else
906# define G_flag_return_in_progress 0
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000907#endif
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000908 smallint exiting; /* used to prevent EXIT trap recursion */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000909 /* These four support $?, $#, and $1 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000910 smalluint last_exitcode;
Denys Vlasenko840a4352017-07-07 22:56:02 +0200911 smalluint last_bg_pid_exitcode;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +0100912#if ENABLE_HUSH_SET
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000913 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000914 smalluint global_args_malloced;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +0100915# define G_global_args_malloced (G.global_args_malloced)
916#else
917# define G_global_args_malloced 0
918#endif
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000919 /* how many non-NULL argv's we have. NB: $# + 1 */
920 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000921 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000922#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000923 char *argv0_for_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000924#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000925#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000926 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000927 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000928#endif
Denys Vlasenko238ff982017-08-29 13:38:30 +0200929#if ENABLE_HUSH_GETOPTS
930 unsigned getopt_count;
931#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000932 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000933 const char *cwd;
Denys Vlasenko52e460b2010-09-16 16:12:00 +0200934 struct variable *top_var;
Denys Vlasenko29082232010-07-16 13:52:32 +0200935 char **expanded_assignments;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000936#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000937 struct function *top_func;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200938# if ENABLE_HUSH_LOCAL
939 struct variable **shadowed_vars_pp;
940 unsigned func_nest_level;
941# endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000942#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000943 /* Signal and trap handling */
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200944#if ENABLE_HUSH_FAST
945 unsigned count_SIGCHLD;
946 unsigned handled_SIGCHLD;
Denys Vlasenkoe2df5f42009-05-26 14:34:10 +0200947 smallint we_have_children;
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200948#endif
Denys Vlasenko5807e182018-02-08 19:19:04 +0100949#if ENABLE_HUSH_LINENO_VAR
Denys Vlasenko6aad1dd2018-01-19 15:37:04 +0100950 unsigned lineno;
951 char *lineno_var;
Denys Vlasenko6aad1dd2018-01-19 15:37:04 +0100952#endif
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +0200953 struct FILE_list *FILE_list;
Denys Vlasenko10c01312011-05-11 11:49:21 +0200954 /* Which signals have non-DFL handler (even with no traps set)?
955 * Set at the start to:
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200956 * (SIGQUIT + maybe SPECIAL_INTERACTIVE_SIGS + maybe SPECIAL_JOBSTOP_SIGS)
Denys Vlasenko10c01312011-05-11 11:49:21 +0200957 * SPECIAL_INTERACTIVE_SIGS are cleared after fork.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200958 * The rest is cleared right before execv syscalls.
Denys Vlasenko10c01312011-05-11 11:49:21 +0200959 * Other than these two times, never modified.
960 */
961 unsigned special_sig_mask;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200962#if ENABLE_HUSH_JOB
963 unsigned fatal_sig_mask;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +0100964# define G_fatal_sig_mask (G.fatal_sig_mask)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200965#else
Denys Vlasenko75e77de2011-05-12 13:12:47 +0200966# define G_fatal_sig_mask 0
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200967#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100968#if ENABLE_HUSH_TRAP
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000969 char **traps; /* char *traps[NSIG] */
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100970# define G_traps G.traps
971#else
972# define G_traps ((char**)NULL)
973#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200974 sigset_t pending_set;
Denys Vlasenko44719692017-01-08 18:44:41 +0100975#if ENABLE_HUSH_MEMLEAK
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000976 unsigned long memleak_value;
Denys Vlasenko44719692017-01-08 18:44:41 +0100977#endif
978#if HUSH_DEBUG
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000979 int debug_indent;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000980#endif
Denys Vlasenko0806e402011-05-12 23:06:20 +0200981 struct sigaction sa;
Denys Vlasenko0448c552016-09-29 20:25:44 +0200982#if ENABLE_FEATURE_EDITING
983 char user_input_buf[CONFIG_FEATURE_EDITING_MAX_LEN];
984#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000985};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000986#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000987/* Not #defining name to G.name - this quickly gets unwieldy
988 * (too many defines). Also, I actually prefer to see when a variable
989 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000990#define INIT_G() do { \
991 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denys Vlasenko0806e402011-05-12 23:06:20 +0200992 /* memset(&G.sa, 0, sizeof(G.sa)); */ \
993 sigfillset(&G.sa.sa_mask); \
994 G.sa.sa_flags = SA_RESTART; \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000995} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000996
997
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000998/* Function prototypes for builtins */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200999static int builtin_cd(char **argv) FAST_FUNC;
Denys Vlasenko1cc68042017-01-09 17:10:04 +01001000#if ENABLE_HUSH_ECHO
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001001static int builtin_echo(char **argv) FAST_FUNC;
Denys Vlasenko1cc68042017-01-09 17:10:04 +01001002#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001003static int builtin_eval(char **argv) FAST_FUNC;
1004static int builtin_exec(char **argv) FAST_FUNC;
1005static int builtin_exit(char **argv) FAST_FUNC;
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01001006#if ENABLE_HUSH_EXPORT
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001007static int builtin_export(char **argv) FAST_FUNC;
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01001008#endif
Denys Vlasenko1e660422017-07-17 21:10:50 +02001009#if ENABLE_HUSH_READONLY
1010static int builtin_readonly(char **argv) FAST_FUNC;
1011#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001012#if ENABLE_HUSH_JOB
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001013static int builtin_fg_bg(char **argv) FAST_FUNC;
1014static int builtin_jobs(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001015#endif
Denys Vlasenko74d40582017-08-11 01:32:46 +02001016#if ENABLE_HUSH_GETOPTS
1017static int builtin_getopts(char **argv) FAST_FUNC;
1018#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001019#if ENABLE_HUSH_HELP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001020static int builtin_help(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001021#endif
Denys Vlasenkoff463a82013-05-12 02:45:23 +02001022#if MAX_HISTORY && ENABLE_FEATURE_EDITING
Flemming Madsend96ffda2013-04-07 18:47:24 +02001023static int builtin_history(char **argv) FAST_FUNC;
1024#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02001025#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001026static int builtin_local(char **argv) FAST_FUNC;
Denys Vlasenko295fef82009-06-03 12:47:26 +02001027#endif
Denys Vlasenko44719692017-01-08 18:44:41 +01001028#if ENABLE_HUSH_MEMLEAK
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001029static int builtin_memleak(char **argv) FAST_FUNC;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00001030#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001031#if ENABLE_HUSH_PRINTF
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04001032static int builtin_printf(char **argv) FAST_FUNC;
1033#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001034static int builtin_pwd(char **argv) FAST_FUNC;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001035#if ENABLE_HUSH_READ
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001036static int builtin_read(char **argv) FAST_FUNC;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001037#endif
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001038#if ENABLE_HUSH_SET
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001039static int builtin_set(char **argv) FAST_FUNC;
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001040#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001041static int builtin_shift(char **argv) FAST_FUNC;
1042static int builtin_source(char **argv) FAST_FUNC;
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01001043#if ENABLE_HUSH_TEST || BASH_TEST2
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001044static int builtin_test(char **argv) FAST_FUNC;
Denys Vlasenko265062d2017-01-10 15:13:30 +01001045#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001046#if ENABLE_HUSH_TRAP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001047static int builtin_trap(char **argv) FAST_FUNC;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001048#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001049#if ENABLE_HUSH_TYPE
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001050static int builtin_type(char **argv) FAST_FUNC;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001051#endif
Denys Vlasenko11f2e992017-08-10 16:34:03 +02001052#if ENABLE_HUSH_TIMES
1053static int builtin_times(char **argv) FAST_FUNC;
1054#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001055static int builtin_true(char **argv) FAST_FUNC;
Denys Vlasenkod5933b12017-01-08 18:31:39 +01001056#if ENABLE_HUSH_UMASK
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001057static int builtin_umask(char **argv) FAST_FUNC;
Denys Vlasenkod5933b12017-01-08 18:31:39 +01001058#endif
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001059#if ENABLE_HUSH_UNSET
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001060static int builtin_unset(char **argv) FAST_FUNC;
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001061#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001062#if ENABLE_HUSH_KILL
1063static int builtin_kill(char **argv) FAST_FUNC;
1064#endif
1065#if ENABLE_HUSH_WAIT
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001066static int builtin_wait(char **argv) FAST_FUNC;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001067#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001068#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001069static int builtin_break(char **argv) FAST_FUNC;
1070static int builtin_continue(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001071#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00001072#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001073static int builtin_return(char **argv) FAST_FUNC;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00001074#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001075
1076/* Table of built-in functions. They can be forked or not, depending on
1077 * context: within pipes, they fork. As simple commands, they do not.
1078 * When used in non-forking context, they can change global variables
1079 * in the parent shell process. If forked, of course they cannot.
1080 * For example, 'unset foo | whatever' will parse and run, but foo will
1081 * still be set at the end. */
1082struct built_in_command {
Denys Vlasenko17323a62010-01-28 01:57:05 +01001083 const char *b_cmd;
1084 int (*b_function)(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001085#if ENABLE_HUSH_HELP
Denys Vlasenko17323a62010-01-28 01:57:05 +01001086 const char *b_descr;
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001087# define BLTIN(cmd, func, help) { cmd, func, help }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001088#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001089# define BLTIN(cmd, func, help) { cmd, func }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001090#endif
1091};
1092
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001093static const struct built_in_command bltins1[] = {
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001094 BLTIN("." , builtin_source , "Run commands in file"),
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001095 BLTIN(":" , builtin_true , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001096#if ENABLE_HUSH_JOB
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001097 BLTIN("bg" , builtin_fg_bg , "Resume job in background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001098#endif
1099#if ENABLE_HUSH_LOOPS
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001100 BLTIN("break" , builtin_break , "Exit loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001101#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001102 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001103#if ENABLE_HUSH_LOOPS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001104 BLTIN("continue" , builtin_continue, "Start new loop iteration"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001105#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001106 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
1107 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001108 BLTIN("exit" , builtin_exit , NULL),
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01001109#if ENABLE_HUSH_EXPORT
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001110 BLTIN("export" , builtin_export , "Set environment variables"),
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01001111#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001112#if ENABLE_HUSH_JOB
Denys Vlasenkod2c15bc2017-07-18 18:14:42 +02001113 BLTIN("fg" , builtin_fg_bg , "Bring job to foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001114#endif
Denys Vlasenko74d40582017-08-11 01:32:46 +02001115#if ENABLE_HUSH_GETOPTS
1116 BLTIN("getopts" , builtin_getopts , NULL),
1117#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001118#if ENABLE_HUSH_HELP
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001119 BLTIN("help" , builtin_help , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001120#endif
Denys Vlasenkoff463a82013-05-12 02:45:23 +02001121#if MAX_HISTORY && ENABLE_FEATURE_EDITING
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001122 BLTIN("history" , builtin_history , "Show history"),
Flemming Madsend96ffda2013-04-07 18:47:24 +02001123#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +00001124#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001125 BLTIN("jobs" , builtin_jobs , "List jobs"),
Denis Vlasenko34d4d892009-04-04 20:24:37 +00001126#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001127#if ENABLE_HUSH_KILL
1128 BLTIN("kill" , builtin_kill , "Send signals to processes"),
1129#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02001130#if ENABLE_HUSH_LOCAL
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001131 BLTIN("local" , builtin_local , "Set local variables"),
Denys Vlasenko295fef82009-06-03 12:47:26 +02001132#endif
Denys Vlasenko44719692017-01-08 18:44:41 +01001133#if ENABLE_HUSH_MEMLEAK
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001134 BLTIN("memleak" , builtin_memleak , NULL),
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00001135#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001136#if ENABLE_HUSH_READ
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001137 BLTIN("read" , builtin_read , "Input into variable"),
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001138#endif
Denys Vlasenko1e660422017-07-17 21:10:50 +02001139#if ENABLE_HUSH_READONLY
1140 BLTIN("readonly" , builtin_readonly, "Make variables read-only"),
1141#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00001142#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001143 BLTIN("return" , builtin_return , "Return from function"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00001144#endif
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001145#if ENABLE_HUSH_SET
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001146 BLTIN("set" , builtin_set , "Set positional parameters"),
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001147#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001148 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01001149#if BASH_SOURCE
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001150 BLTIN("source" , builtin_source , NULL),
Denys Vlasenko82731b42010-05-17 17:49:52 +02001151#endif
Denys Vlasenko11f2e992017-08-10 16:34:03 +02001152#if ENABLE_HUSH_TIMES
1153 BLTIN("times" , builtin_times , NULL),
1154#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001155#if ENABLE_HUSH_TRAP
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001156 BLTIN("trap" , builtin_trap , "Trap signals"),
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001157#endif
Denys Vlasenko2bba5912014-03-14 12:43:57 +01001158 BLTIN("true" , builtin_true , NULL),
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001159#if ENABLE_HUSH_TYPE
Denys Vlasenko651a2692010-03-23 16:25:17 +01001160 BLTIN("type" , builtin_type , "Show command type"),
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001161#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001162#if ENABLE_HUSH_ULIMIT
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001163 BLTIN("ulimit" , shell_builtin_ulimit, "Control resource limits"),
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001164#endif
Denys Vlasenkod5933b12017-01-08 18:31:39 +01001165#if ENABLE_HUSH_UMASK
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001166 BLTIN("umask" , builtin_umask , "Set file creation mask"),
Denys Vlasenkod5933b12017-01-08 18:31:39 +01001167#endif
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001168#if ENABLE_HUSH_UNSET
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001169 BLTIN("unset" , builtin_unset , "Unset variables"),
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001170#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001171#if ENABLE_HUSH_WAIT
Denys Vlasenkod2c15bc2017-07-18 18:14:42 +02001172 BLTIN("wait" , builtin_wait , "Wait for process to finish"),
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001173#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001174};
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001175/* These builtins won't be used if we are on NOMMU and need to re-exec
1176 * (it's cheaper to run an external program in this case):
1177 */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001178static const struct built_in_command bltins2[] = {
Denys Vlasenko265062d2017-01-10 15:13:30 +01001179#if ENABLE_HUSH_TEST
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001180 BLTIN("[" , builtin_test , NULL),
Denys Vlasenko265062d2017-01-10 15:13:30 +01001181#endif
Denys Vlasenko8944c672017-01-11 14:22:00 +01001182#if BASH_TEST2
1183 BLTIN("[[" , builtin_test , NULL),
1184#endif
Denys Vlasenko1cc68042017-01-09 17:10:04 +01001185#if ENABLE_HUSH_ECHO
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001186 BLTIN("echo" , builtin_echo , NULL),
Denys Vlasenko1cc68042017-01-09 17:10:04 +01001187#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001188#if ENABLE_HUSH_PRINTF
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04001189 BLTIN("printf" , builtin_printf , NULL),
1190#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001191 BLTIN("pwd" , builtin_pwd , NULL),
Denys Vlasenko265062d2017-01-10 15:13:30 +01001192#if ENABLE_HUSH_TEST
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001193 BLTIN("test" , builtin_test , NULL),
Denys Vlasenko265062d2017-01-10 15:13:30 +01001194#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001195};
1196
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001197
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001198/* Debug printouts.
1199 */
1200#if HUSH_DEBUG
1201/* prevent disasters with G.debug_indent < 0 */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001202# define indent() fdprintf(2, "%*s", (G.debug_indent * 2) & 0xff, "")
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001203# define debug_enter() (G.debug_indent++)
1204# define debug_leave() (G.debug_indent--)
1205#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001206# define indent() ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001207# define debug_enter() ((void)0)
1208# define debug_leave() ((void)0)
1209#endif
1210
1211#ifndef debug_printf
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001212# define debug_printf(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001213#endif
1214
1215#ifndef debug_printf_parse
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001216# define debug_printf_parse(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001217#endif
1218
1219#ifndef debug_printf_exec
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001220#define debug_printf_exec(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001221#endif
1222
1223#ifndef debug_printf_env
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001224# define debug_printf_env(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001225#endif
1226
1227#ifndef debug_printf_jobs
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001228# define debug_printf_jobs(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001229# define DEBUG_JOBS 1
1230#else
1231# define DEBUG_JOBS 0
1232#endif
1233
1234#ifndef debug_printf_expand
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001235# define debug_printf_expand(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001236# define DEBUG_EXPAND 1
1237#else
1238# define DEBUG_EXPAND 0
1239#endif
1240
Denys Vlasenko1e811b12010-05-22 03:12:29 +02001241#ifndef debug_printf_varexp
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001242# define debug_printf_varexp(...) (indent(), fdprintf(2, __VA_ARGS__))
Denys Vlasenko1e811b12010-05-22 03:12:29 +02001243#endif
1244
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001245#ifndef debug_printf_glob
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001246# define debug_printf_glob(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001247# define DEBUG_GLOB 1
1248#else
1249# define DEBUG_GLOB 0
1250#endif
1251
Denys Vlasenko2db74612017-07-07 22:07:28 +02001252#ifndef debug_printf_redir
1253# define debug_printf_redir(...) (indent(), fdprintf(2, __VA_ARGS__))
1254#endif
1255
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001256#ifndef debug_printf_list
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001257# define debug_printf_list(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001258#endif
1259
1260#ifndef debug_printf_subst
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001261# define debug_printf_subst(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001262#endif
1263
1264#ifndef debug_printf_clean
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001265# define debug_printf_clean(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001266# define DEBUG_CLEAN 1
1267#else
1268# define DEBUG_CLEAN 0
1269#endif
1270
1271#if DEBUG_EXPAND
1272static void debug_print_strings(const char *prefix, char **vv)
1273{
1274 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001275 fdprintf(2, "%s:\n", prefix);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001276 while (*vv)
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001277 fdprintf(2, " '%s'\n", *vv++);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001278}
1279#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001280# define debug_print_strings(prefix, vv) ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001281#endif
1282
1283
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001284/* Leak hunting. Use hush_leaktool.sh for post-processing.
1285 */
1286#if LEAK_HUNTING
1287static void *xxmalloc(int lineno, size_t size)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001288{
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001289 void *ptr = xmalloc((size + 0xff) & ~0xff);
1290 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
1291 return ptr;
1292}
1293static void *xxrealloc(int lineno, void *ptr, size_t size)
1294{
1295 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
1296 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
1297 return ptr;
1298}
1299static char *xxstrdup(int lineno, const char *str)
1300{
1301 char *ptr = xstrdup(str);
1302 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
1303 return ptr;
1304}
1305static void xxfree(void *ptr)
1306{
1307 fdprintf(2, "free %p\n", ptr);
1308 free(ptr);
1309}
Denys Vlasenko8391c482010-05-22 17:50:43 +02001310# define xmalloc(s) xxmalloc(__LINE__, s)
1311# define xrealloc(p, s) xxrealloc(__LINE__, p, s)
1312# define xstrdup(s) xxstrdup(__LINE__, s)
1313# define free(p) xxfree(p)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001314#endif
1315
1316
1317/* Syntax and runtime errors. They always abort scripts.
1318 * In interactive use they usually discard unparsed and/or unexecuted commands
1319 * and return to the prompt.
1320 * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
1321 */
1322#if HUSH_DEBUG < 2
Denys Vlasenko39701202017-08-02 19:44:05 +02001323# define msg_and_die_if_script(lineno, ...) msg_and_die_if_script(__VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001324# define syntax_error(lineno, msg) syntax_error(msg)
1325# define syntax_error_at(lineno, msg) syntax_error_at(msg)
1326# define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch)
1327# define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s)
1328# define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001329#endif
1330
Denys Vlasenko39701202017-08-02 19:44:05 +02001331static void die_if_script(void)
1332{
1333 if (!G_interactive_fd) {
1334 if (G.last_exitcode) /* sometines it's 2, not 1 (bash compat) */
1335 xfunc_error_retval = G.last_exitcode;
1336 xfunc_die();
1337 }
1338}
1339
1340static void msg_and_die_if_script(unsigned lineno, const char *fmt, ...)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001341{
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001342 va_list p;
1343
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001344#if HUSH_DEBUG >= 2
1345 bb_error_msg("hush.c:%u", lineno);
1346#endif
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001347 va_start(p, fmt);
1348 bb_verror_msg(fmt, p, NULL);
1349 va_end(p);
Denys Vlasenko39701202017-08-02 19:44:05 +02001350 die_if_script();
Mike Frysinger6379bb42009-03-28 18:55:03 +00001351}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001352
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001353static void syntax_error(unsigned lineno UNUSED_PARAM, const char *msg)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001354{
1355 if (msg)
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001356 bb_error_msg("syntax error: %s", msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001357 else
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001358 bb_error_msg("syntax error");
Denys Vlasenko39701202017-08-02 19:44:05 +02001359 die_if_script();
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001360}
1361
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001362static void syntax_error_at(unsigned lineno UNUSED_PARAM, const char *msg)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001363{
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001364 bb_error_msg("syntax error at '%s'", msg);
Denys Vlasenko39701202017-08-02 19:44:05 +02001365 die_if_script();
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001366}
1367
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001368static void syntax_error_unterm_str(unsigned lineno UNUSED_PARAM, const char *s)
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001369{
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001370 bb_error_msg("syntax error: unterminated %s", s);
Denys Vlasenko39701202017-08-02 19:44:05 +02001371//? source4.tests fails: in bash, echo ${^} in script does not terminate the script
1372// die_if_script();
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001373}
1374
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001375static void syntax_error_unterm_ch(unsigned lineno, char ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001376{
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001377 char msg[2] = { ch, '\0' };
1378 syntax_error_unterm_str(lineno, msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001379}
1380
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001381static void syntax_error_unexpected_ch(unsigned lineno UNUSED_PARAM, int ch)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001382{
1383 char msg[2];
1384 msg[0] = ch;
1385 msg[1] = '\0';
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01001386#if HUSH_DEBUG >= 2
1387 bb_error_msg("hush.c:%u", lineno);
1388#endif
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001389 bb_error_msg("syntax error: unexpected %s", ch == EOF ? "EOF" : msg);
Denys Vlasenko39701202017-08-02 19:44:05 +02001390 die_if_script();
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001391}
1392
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001393#if HUSH_DEBUG < 2
Denys Vlasenko39701202017-08-02 19:44:05 +02001394# undef msg_and_die_if_script
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001395# undef syntax_error
1396# undef syntax_error_at
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001397# undef syntax_error_unterm_ch
1398# undef syntax_error_unterm_str
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001399# undef syntax_error_unexpected_ch
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001400#else
Denys Vlasenko39701202017-08-02 19:44:05 +02001401# define msg_and_die_if_script(...) msg_and_die_if_script(__LINE__, __VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001402# define syntax_error(msg) syntax_error(__LINE__, msg)
1403# define syntax_error_at(msg) syntax_error_at(__LINE__, msg)
1404# define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch)
1405# define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s)
1406# define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001407#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001408
Denis Vlasenko552433b2009-04-04 19:29:21 +00001409
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001410#if ENABLE_HUSH_INTERACTIVE
1411static void cmdedit_update_prompt(void);
1412#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001413# define cmdedit_update_prompt() ((void)0)
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001414#endif
1415
1416
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001417/* Utility functions
1418 */
Denis Vlasenko55789c62008-06-18 16:30:42 +00001419/* Replace each \x with x in place, return ptr past NUL. */
1420static char *unbackslash(char *src)
1421{
Denys Vlasenko71885402009-09-24 01:44:13 +02001422 char *dst = src = strchrnul(src, '\\');
Denis Vlasenko55789c62008-06-18 16:30:42 +00001423 while (1) {
1424 if (*src == '\\')
1425 src++;
1426 if ((*dst++ = *src++) == '\0')
1427 break;
1428 }
1429 return dst;
1430}
1431
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001432static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001433{
1434 int i;
1435 unsigned count1;
1436 unsigned count2;
1437 char **v;
1438
1439 v = strings;
1440 count1 = 0;
1441 if (v) {
1442 while (*v) {
1443 count1++;
1444 v++;
1445 }
1446 }
1447 count2 = 0;
1448 v = add;
1449 while (*v) {
1450 count2++;
1451 v++;
1452 }
1453 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
1454 v[count1 + count2] = NULL;
1455 i = count2;
1456 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001457 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001458 return v;
1459}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001460#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001461static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
1462{
1463 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
1464 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
1465 return ptr;
1466}
1467#define add_strings_to_strings(strings, add, need_to_dup) \
1468 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
1469#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001470
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001471/* Note: takes ownership of "add" ptr (it is not strdup'ed) */
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001472static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001473{
1474 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001475 v[0] = add;
1476 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001477 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001478}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001479#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001480static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
1481{
1482 char **ptr = add_string_to_strings(strings, add);
1483 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
1484 return ptr;
1485}
1486#define add_string_to_strings(strings, add) \
1487 xx_add_string_to_strings(__LINE__, strings, add)
1488#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001489
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001490static void free_strings(char **strings)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001491{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001492 char **v;
1493
1494 if (!strings)
1495 return;
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001496 v = strings;
1497 while (*v) {
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001498 free(*v);
1499 v++;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001500 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001501 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001502}
1503
Denys Vlasenko9acd63c2018-03-28 18:35:07 +02001504static int dup_CLOEXEC(int fd, int avoid_fd)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001505{
Denys Vlasenko2db74612017-07-07 22:07:28 +02001506 int newfd;
1507 repeat:
Denys Vlasenko9acd63c2018-03-28 18:35:07 +02001508 newfd = fcntl(fd, F_DUPFD_CLOEXEC, avoid_fd + 1);
1509 if (newfd >= 0) {
1510 if (F_DUPFD_CLOEXEC == F_DUPFD) /* if old libc (w/o F_DUPFD_CLOEXEC) */
1511 fcntl(newfd, F_SETFD, FD_CLOEXEC);
1512 } else { /* newfd < 0 */
Denys Vlasenko2db74612017-07-07 22:07:28 +02001513 if (errno == EBUSY)
1514 goto repeat;
1515 if (errno == EINTR)
1516 goto repeat;
1517 }
1518 return newfd;
1519}
1520
Denys Vlasenko657e9002017-07-30 23:34:04 +02001521static int xdup_CLOEXEC_and_close(int fd, int avoid_fd)
Denys Vlasenko2db74612017-07-07 22:07:28 +02001522{
1523 int newfd;
1524 repeat:
Denys Vlasenko657e9002017-07-30 23:34:04 +02001525 newfd = fcntl(fd, F_DUPFD_CLOEXEC, avoid_fd + 1);
Denys Vlasenko2db74612017-07-07 22:07:28 +02001526 if (newfd < 0) {
1527 if (errno == EBUSY)
1528 goto repeat;
1529 if (errno == EINTR)
1530 goto repeat;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001531 /* fd was not open? */
1532 if (errno == EBADF)
1533 return fd;
1534 xfunc_die();
1535 }
Denys Vlasenko657e9002017-07-30 23:34:04 +02001536 if (F_DUPFD_CLOEXEC == F_DUPFD) /* if old libc (w/o F_DUPFD_CLOEXEC) */
1537 fcntl(newfd, F_SETFD, FD_CLOEXEC);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001538 close(fd);
1539 return newfd;
1540}
1541
1542
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001543/* Manipulating the list of open FILEs */
1544static FILE *remember_FILE(FILE *fp)
1545{
1546 if (fp) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001547 struct FILE_list *n = xmalloc(sizeof(*n));
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001548 n->next = G.FILE_list;
1549 G.FILE_list = n;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001550 n->fp = fp;
1551 n->fd = fileno(fp);
1552 close_on_exec_on(n->fd);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001553 }
1554 return fp;
1555}
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001556static void fclose_and_forget(FILE *fp)
1557{
1558 struct FILE_list **pp = &G.FILE_list;
1559 while (*pp) {
1560 struct FILE_list *cur = *pp;
1561 if (cur->fp == fp) {
1562 *pp = cur->next;
1563 free(cur);
1564 break;
1565 }
1566 pp = &cur->next;
1567 }
1568 fclose(fp);
1569}
Denys Vlasenko2db74612017-07-07 22:07:28 +02001570static int save_FILEs_on_redirect(int fd, int avoid_fd)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001571{
1572 struct FILE_list *fl = G.FILE_list;
1573 while (fl) {
1574 if (fd == fl->fd) {
1575 /* We use it only on script files, they are all CLOEXEC */
Denys Vlasenko657e9002017-07-30 23:34:04 +02001576 fl->fd = xdup_CLOEXEC_and_close(fd, avoid_fd);
Denys Vlasenko2db74612017-07-07 22:07:28 +02001577 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 +02001578 return 1;
1579 }
1580 fl = fl->next;
1581 }
1582 return 0;
1583}
1584static void restore_redirected_FILEs(void)
1585{
1586 struct FILE_list *fl = G.FILE_list;
1587 while (fl) {
1588 int should_be = fileno(fl->fp);
1589 if (fl->fd != should_be) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02001590 debug_printf_redir("restoring script fd from %d to %d\n", fl->fd, should_be);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001591 xmove_fd(fl->fd, should_be);
1592 fl->fd = should_be;
1593 }
1594 fl = fl->next;
1595 }
1596}
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02001597#if ENABLE_FEATURE_SH_STANDALONE && BB_MMU
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001598static void close_all_FILE_list(void)
1599{
1600 struct FILE_list *fl = G.FILE_list;
1601 while (fl) {
1602 /* fclose would also free FILE object.
1603 * It is disastrous if we share memory with a vforked parent.
1604 * I'm not sure we never come here after vfork.
1605 * Therefore just close fd, nothing more.
1606 */
1607 /*fclose(fl->fp); - unsafe */
1608 close(fl->fd);
1609 fl = fl->next;
1610 }
1611}
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001612#endif
Denys Vlasenko32fdf2f2017-07-31 04:32:06 +02001613static int fd_in_FILEs(int fd)
1614{
1615 struct FILE_list *fl = G.FILE_list;
1616 while (fl) {
1617 if (fl->fd == fd)
1618 return 1;
1619 fl = fl->next;
1620 }
1621 return 0;
1622}
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001623
1624
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001625/* Helpers for setting new $n and restoring them back
1626 */
1627typedef struct save_arg_t {
1628 char *sv_argv0;
1629 char **sv_g_argv;
1630 int sv_g_argc;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001631 IF_HUSH_SET(smallint sv_g_malloced;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001632} save_arg_t;
1633
1634static void save_and_replace_G_args(save_arg_t *sv, char **argv)
1635{
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001636 sv->sv_argv0 = argv[0];
1637 sv->sv_g_argv = G.global_argv;
1638 sv->sv_g_argc = G.global_argc;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001639 IF_HUSH_SET(sv->sv_g_malloced = G.global_args_malloced;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001640
1641 argv[0] = G.global_argv[0]; /* retain $0 */
1642 G.global_argv = argv;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001643 IF_HUSH_SET(G.global_args_malloced = 0;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001644
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02001645 G.global_argc = 1 + string_array_len(argv + 1);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001646}
1647
1648static void restore_G_args(save_arg_t *sv, char **argv)
1649{
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001650#if ENABLE_HUSH_SET
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001651 if (G.global_args_malloced) {
1652 /* someone ran "set -- arg1 arg2 ...", undo */
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001653 char **pp = G.global_argv;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001654 while (*++pp) /* note: does not free $0 */
1655 free(*pp);
1656 free(G.global_argv);
1657 }
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001658#endif
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001659 argv[0] = sv->sv_argv0;
1660 G.global_argv = sv->sv_g_argv;
1661 G.global_argc = sv->sv_g_argc;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001662 IF_HUSH_SET(G.global_args_malloced = sv->sv_g_malloced;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001663}
1664
1665
Denis Vlasenkod5762932009-03-31 11:22:57 +00001666/* Basic theory of signal handling in shell
1667 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001668 * This does not describe what hush does, rather, it is current understanding
1669 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001670 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
1671 *
1672 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
1673 * is finished or backgrounded. It is the same in interactive and
1674 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001675 * a user trap handler is installed or a shell special one is in effect.
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001676 * ^C or ^Z from keyboard seems to execute "at once" because it usually
Denis Vlasenkod5762932009-03-31 11:22:57 +00001677 * backgrounds (i.e. stops) or kills all members of currently running
1678 * pipe.
1679 *
Denys Vlasenko8bd810b2013-11-28 01:50:01 +01001680 * Wait builtin is interruptible by signals for which user trap is set
Denis Vlasenkod5762932009-03-31 11:22:57 +00001681 * or by SIGINT in interactive shell.
1682 *
1683 * Trap handlers will execute even within trap handlers. (right?)
1684 *
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001685 * User trap handlers are forgotten when subshell ("(cmd)") is entered,
1686 * except for handlers set to '' (empty string).
Denis Vlasenkod5762932009-03-31 11:22:57 +00001687 *
1688 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001689 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001690 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001691 * Commands which are run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001692 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001693 *
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001694 * Ordinary commands have signals set to SIG_IGN/DFL as inherited
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001695 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001696 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001697 * Signals which differ from SIG_DFL action
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001698 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +00001699 *
1700 * SIGQUIT: ignore
1701 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001702 * SIGHUP (interactive):
1703 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +00001704 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00001705 * Note that ^Z is handled not by trapping SIGTSTP, but by seeing
1706 * that all pipe members are stopped. Try this in bash:
1707 * while :; do :; done - ^Z does not background it
1708 * (while :; do :; done) - ^Z backgrounds it
Denis Vlasenkod5762932009-03-31 11:22:57 +00001709 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001710 * of the command line, show prompt. NB: ^C does not send SIGINT
1711 * to interactive shell while shell is waiting for a pipe,
1712 * since shell is bg'ed (is not in foreground process group).
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001713 * Example 1: this waits 5 sec, but does not execute ls:
1714 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
1715 * Example 2: this does not wait and does not execute ls:
1716 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
1717 * Example 3: this does not wait 5 sec, but executes ls:
1718 * "sleep 5; ls -l" + press ^C
Denys Vlasenkob8709032011-05-08 21:20:01 +02001719 * Example 4: this does not wait and does not execute ls:
1720 * "sleep 5 & wait; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +00001721 *
1722 * (What happens to signals which are IGN on shell start?)
1723 * (What happens with signal mask on shell start?)
1724 *
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001725 * Old implementation
1726 * ==================
Denis Vlasenkod5762932009-03-31 11:22:57 +00001727 * We use in-kernel pending signal mask to determine which signals were sent.
1728 * We block all signals which we don't want to take action immediately,
1729 * i.e. we block all signals which need to have special handling as described
1730 * above, and all signals which have traps set.
1731 * After each pipe execution, we extract any pending signals via sigtimedwait()
1732 * and act on them.
1733 *
Denys Vlasenko10c01312011-05-11 11:49:21 +02001734 * unsigned special_sig_mask: a mask of such "special" signals
Denis Vlasenkod5762932009-03-31 11:22:57 +00001735 * sigset_t blocked_set: current blocked signal set
1736 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001737 * "trap - SIGxxx":
Denys Vlasenko10c01312011-05-11 11:49:21 +02001738 * clear bit in blocked_set unless it is also in special_sig_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001739 * "trap 'cmd' SIGxxx":
1740 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +00001741 * after [v]fork, if we plan to be a shell:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001742 * unblock signals with special interactive handling
1743 * (child shell is not interactive),
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001744 * unset all traps except '' (note: regardless of child shell's type - {}, (), etc)
Denis Vlasenkod5762932009-03-31 11:22:57 +00001745 * after [v]fork, if we plan to exec:
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001746 * POSIX says fork clears pending signal mask in child - no need to clear it.
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001747 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001748 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001749 * Note: as a result, we do not use signal handlers much. The only uses
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001750 * are to count SIGCHLDs
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001751 * and to restore tty pgrp on signal-induced exit.
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001752 *
Denys Vlasenko67f71862009-09-25 14:21:06 +02001753 * Note 2 (compat):
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001754 * Standard says "When a subshell is entered, traps that are not being ignored
1755 * are set to the default actions". bash interprets it so that traps which
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001756 * are set to '' (ignore) are NOT reset to defaults. We do the same.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001757 *
1758 * Problem: the above approach makes it unwieldy to catch signals while
Denys Vlasenkoe95738f2013-07-08 03:13:08 +02001759 * we are in read builtin, or while we read commands from stdin:
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001760 * masked signals are not visible!
1761 *
1762 * New implementation
1763 * ==================
1764 * We record each signal we are interested in by installing signal handler
1765 * for them - a bit like emulating kernel pending signal mask in userspace.
1766 * We are interested in: signals which need to have special handling
1767 * as described above, and all signals which have traps set.
Denys Vlasenko8bd810b2013-11-28 01:50:01 +01001768 * Signals are recorded in pending_set.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001769 * After each pipe execution, we extract any pending signals
1770 * and act on them.
1771 *
1772 * unsigned special_sig_mask: a mask of shell-special signals.
1773 * unsigned fatal_sig_mask: a mask of signals on which we restore tty pgrp.
1774 * char *traps[sig] if trap for sig is set (even if it's '').
1775 * sigset_t pending_set: set of sigs we received.
1776 *
1777 * "trap - SIGxxx":
1778 * if sig is in special_sig_mask, set handler back to:
1779 * record_pending_signo, or to IGN if it's a tty stop signal
1780 * if sig is in fatal_sig_mask, set handler back to sigexit.
1781 * else: set handler back to SIG_DFL
1782 * "trap 'cmd' SIGxxx":
1783 * set handler to record_pending_signo.
1784 * "trap '' SIGxxx":
1785 * set handler to SIG_IGN.
1786 * after [v]fork, if we plan to be a shell:
1787 * set signals with special interactive handling to SIG_DFL
1788 * (because child shell is not interactive),
1789 * unset all traps except '' (note: regardless of child shell's type - {}, (), etc)
1790 * after [v]fork, if we plan to exec:
1791 * POSIX says fork clears pending signal mask in child - no need to clear it.
1792 *
1793 * To make wait builtin interruptible, we handle SIGCHLD as special signal,
1794 * otherwise (if we leave it SIG_DFL) sigsuspend in wait builtin will not wake up on it.
1795 *
1796 * Note (compat):
1797 * Standard says "When a subshell is entered, traps that are not being ignored
1798 * are set to the default actions". bash interprets it so that traps which
1799 * are set to '' (ignore) are NOT reset to defaults. We do the same.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001800 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001801enum {
1802 SPECIAL_INTERACTIVE_SIGS = 0
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001803 | (1 << SIGTERM)
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001804 | (1 << SIGINT)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001805 | (1 << SIGHUP)
1806 ,
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001807 SPECIAL_JOBSTOP_SIGS = 0
Mike Frysinger38478a62009-05-20 04:48:06 -04001808#if ENABLE_HUSH_JOB
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001809 | (1 << SIGTTIN)
1810 | (1 << SIGTTOU)
1811 | (1 << SIGTSTP)
1812#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001813 ,
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001814};
Denis Vlasenkod5762932009-03-31 11:22:57 +00001815
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001816static void record_pending_signo(int sig)
Denys Vlasenko54e9e122011-05-09 00:52:15 +02001817{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001818 sigaddset(&G.pending_set, sig);
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001819#if ENABLE_HUSH_FAST
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001820 if (sig == SIGCHLD) {
1821 G.count_SIGCHLD++;
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001822//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 +02001823 }
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001824#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001825}
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001826
Denys Vlasenko0806e402011-05-12 23:06:20 +02001827static sighandler_t install_sighandler(int sig, sighandler_t handler)
1828{
1829 struct sigaction old_sa;
1830
1831 /* We could use signal() to install handlers... almost:
1832 * except that we need to mask ALL signals while handlers run.
1833 * I saw signal nesting in strace, race window isn't small.
1834 * SA_RESTART is also needed, but in Linux, signal()
1835 * sets SA_RESTART too.
1836 */
1837 /* memset(&G.sa, 0, sizeof(G.sa)); - already done */
1838 /* sigfillset(&G.sa.sa_mask); - already done */
1839 /* G.sa.sa_flags = SA_RESTART; - already done */
1840 G.sa.sa_handler = handler;
1841 sigaction(sig, &G.sa, &old_sa);
1842 return old_sa.sa_handler;
1843}
1844
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001845static void hush_exit(int exitcode) NORETURN;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001846
Denys Vlasenkob6afcc72016-12-12 16:30:20 +01001847static void restore_ttypgrp_and__exit(void) NORETURN;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001848static void restore_ttypgrp_and__exit(void)
1849{
1850 /* xfunc has failed! die die die */
1851 /* no EXIT traps, this is an escape hatch! */
1852 G.exiting = 1;
1853 hush_exit(xfunc_error_retval);
1854}
1855
Denys Vlasenkob6afcc72016-12-12 16:30:20 +01001856#if ENABLE_HUSH_JOB
1857
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001858/* Needed only on some libc:
1859 * It was observed that on exit(), fgetc'ed buffered data
1860 * gets "unwound" via lseek(fd, -NUM, SEEK_CUR).
1861 * With the net effect that even after fork(), not vfork(),
1862 * exit() in NOEXECed applet in "sh SCRIPT":
1863 * noexec_applet_here
1864 * echo END_OF_SCRIPT
1865 * lseeks fd in input FILE object from EOF to "e" in "echo END_OF_SCRIPT".
1866 * This makes "echo END_OF_SCRIPT" executed twice.
Denys Vlasenko39701202017-08-02 19:44:05 +02001867 * Similar problems can be seen with msg_and_die_if_script() -> xfunc_die()
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001868 * and in `cmd` handling.
1869 * If set as die_func(), this makes xfunc_die() exit via _exit(), not exit():
1870 */
Denys Vlasenkob6afcc72016-12-12 16:30:20 +01001871static void fflush_and__exit(void) NORETURN;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001872static void fflush_and__exit(void)
1873{
1874 fflush_all();
1875 _exit(xfunc_error_retval);
1876}
1877
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001878/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001879# define disable_restore_tty_pgrp_on_exit() (die_func = fflush_and__exit)
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001880/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001881# define enable_restore_tty_pgrp_on_exit() (die_func = restore_ttypgrp_and__exit)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001882
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001883/* Restores tty foreground process group, and exits.
1884 * May be called as signal handler for fatal signal
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001885 * (will resend signal to itself, producing correct exit state)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001886 * or called directly with -EXITCODE.
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001887 * We also call it if xfunc is exiting.
1888 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001889static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001890static void sigexit(int sig)
1891{
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001892 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001893 * tty pgrp then, only top-level shell process does that */
Denys Vlasenkoebc1ee22011-05-12 10:59:18 +02001894 if (G_saved_tty_pgrp && getpid() == G.root_pid) {
1895 /* Disable all signals: job control, SIGPIPE, etc.
1896 * Mostly paranoid measure, to prevent infinite SIGTTOU.
1897 */
1898 sigprocmask_allsigs(SIG_BLOCK);
Mike Frysinger38478a62009-05-20 04:48:06 -04001899 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
Denys Vlasenkoebc1ee22011-05-12 10:59:18 +02001900 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001901
1902 /* Not a signal, just exit */
1903 if (sig <= 0)
1904 _exit(- sig);
1905
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001906 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001907}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001908#else
1909
Denys Vlasenko8391c482010-05-22 17:50:43 +02001910# define disable_restore_tty_pgrp_on_exit() ((void)0)
1911# define enable_restore_tty_pgrp_on_exit() ((void)0)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001912
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001913#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001914
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001915static sighandler_t pick_sighandler(unsigned sig)
1916{
1917 sighandler_t handler = SIG_DFL;
1918 if (sig < sizeof(unsigned)*8) {
1919 unsigned sigmask = (1 << sig);
1920
1921#if ENABLE_HUSH_JOB
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001922 /* is sig fatal? */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001923 if (G_fatal_sig_mask & sigmask)
1924 handler = sigexit;
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001925 else
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001926#endif
1927 /* sig has special handling? */
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001928 if (G.special_sig_mask & sigmask) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001929 handler = record_pending_signo;
Denys Vlasenko0c40a732011-05-12 09:50:12 +02001930 /* TTIN/TTOU/TSTP can't be set to record_pending_signo
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001931 * in order to ignore them: they will be raised
Denys Vlasenkof58f7052011-05-12 02:10:33 +02001932 * in an endless loop when we try to do some
1933 * terminal ioctls! We do have to _ignore_ these.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001934 */
1935 if (SPECIAL_JOBSTOP_SIGS & sigmask)
1936 handler = SIG_IGN;
Denys Vlasenko0c40a732011-05-12 09:50:12 +02001937 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001938 }
1939 return handler;
1940}
1941
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001942/* Restores tty foreground process group, and exits. */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001943static void hush_exit(int exitcode)
1944{
Denys Vlasenkobede2152011-09-04 16:12:33 +02001945#if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1946 save_history(G.line_input_state);
1947#endif
1948
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01001949 fflush_all();
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001950 if (G.exiting <= 0 && G_traps && G_traps[0] && G_traps[0][0]) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001951 char *argv[3];
1952 /* argv[0] is unused */
Denys Vlasenko46f839c2018-01-19 16:58:44 +01001953 argv[1] = xstrdup(G_traps[0]); /* copy, since EXIT trap handler may modify G_traps[0] */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001954 argv[2] = NULL;
Denys Vlasenkoa110c902010-09-12 15:38:04 +02001955 G.exiting = 1; /* prevent EXIT trap recursion */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001956 /* Note: G_traps[0] is not cleared!
Denys Vlasenkode8c3f62010-09-12 16:13:44 +02001957 * "trap" will still show it, if executed
1958 * in the handler */
1959 builtin_eval(argv);
Denis Vlasenkod5762932009-03-31 11:22:57 +00001960 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001961
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001962#if ENABLE_FEATURE_CLEAN_UP
1963 {
1964 struct variable *cur_var;
1965 if (G.cwd != bb_msg_unknown)
1966 free((char*)G.cwd);
1967 cur_var = G.top_var;
1968 while (cur_var) {
1969 struct variable *tmp = cur_var;
1970 if (!cur_var->max_len)
1971 free(cur_var->varstr);
1972 cur_var = cur_var->next;
1973 free(tmp);
1974 }
1975 }
1976#endif
1977
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001978 fflush_all();
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02001979#if ENABLE_HUSH_JOB
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001980 sigexit(- (exitcode & 0xff));
1981#else
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02001982 _exit(exitcode);
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001983#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001984}
1985
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02001986
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001987//TODO: return a mask of ALL handled sigs?
1988static int check_and_run_traps(void)
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001989{
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001990 int last_sig = 0;
1991
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001992 while (1) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001993 int sig;
Denys Vlasenko80542ba2011-05-08 21:23:43 +02001994
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001995 if (sigisemptyset(&G.pending_set))
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001996 break;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001997 sig = 0;
1998 do {
1999 sig++;
2000 if (sigismember(&G.pending_set, sig)) {
2001 sigdelset(&G.pending_set, sig);
2002 goto got_sig;
2003 }
2004 } while (sig < NSIG);
2005 break;
Denys Vlasenkob8709032011-05-08 21:20:01 +02002006 got_sig:
Denys Vlasenko7a85c602017-01-08 17:40:18 +01002007 if (G_traps && G_traps[sig]) {
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02002008 debug_printf_exec("%s: sig:%d handler:'%s'\n", __func__, sig, G.traps[sig]);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01002009 if (G_traps[sig][0]) {
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002010 /* We have user-defined handler */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002011 smalluint save_rcode;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002012 char *argv[3];
2013 /* argv[0] is unused */
Denys Vlasenko749575d2018-01-30 04:29:03 +01002014 argv[1] = xstrdup(G_traps[sig]);
2015 /* why strdup? trap can modify itself: trap 'trap "echo oops" INT' INT */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002016 argv[2] = NULL;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002017 save_rcode = G.last_exitcode;
2018 builtin_eval(argv);
Denys Vlasenko749575d2018-01-30 04:29:03 +01002019 free(argv[1]);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002020//FIXME: shouldn't it be set to 128 + sig instead?
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002021 G.last_exitcode = save_rcode;
Denys Vlasenkob8709032011-05-08 21:20:01 +02002022 last_sig = sig;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002023 } /* else: "" trap, ignoring signal */
2024 continue;
2025 }
2026 /* not a trap: special action */
2027 switch (sig) {
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002028 case SIGINT:
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02002029 debug_printf_exec("%s: sig:%d default SIGINT handler\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002030 G.flag_SIGINT = 1;
Denys Vlasenkob8709032011-05-08 21:20:01 +02002031 last_sig = sig;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002032 break;
2033#if ENABLE_HUSH_JOB
2034 case SIGHUP: {
Denys Vlasenko49e6bf22017-08-04 14:28:16 +02002035//TODO: why are we doing this? ash and dash don't do this,
2036//they have no handler for SIGHUP at all,
2037//they rely on kernel to send SIGHUP+SIGCONT to orphaned process groups
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002038 struct pipe *job;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02002039 debug_printf_exec("%s: sig:%d default SIGHUP handler\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002040 /* bash is observed to signal whole process groups,
2041 * not individual processes */
2042 for (job = G.job_list; job; job = job->next) {
2043 if (job->pgrp <= 0)
2044 continue;
2045 debug_printf_exec("HUPing pgrp %d\n", job->pgrp);
2046 if (kill(- job->pgrp, SIGHUP) == 0)
2047 kill(- job->pgrp, SIGCONT);
2048 }
2049 sigexit(SIGHUP);
2050 }
2051#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002052#if ENABLE_HUSH_FAST
2053 case SIGCHLD:
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02002054 debug_printf_exec("%s: sig:%d default SIGCHLD handler\n", __func__, sig);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002055 G.count_SIGCHLD++;
2056//bb_error_msg("[%d] check_and_run_traps: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
2057 /* Note:
Denys Vlasenko10ad6222017-04-17 16:13:32 +02002058 * We don't do 'last_sig = sig' here -> NOT returning this sig.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002059 * This simplifies wait builtin a bit.
2060 */
2061 break;
2062#endif
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002063 default: /* ignored: */
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02002064 debug_printf_exec("%s: sig:%d default handling is to ignore\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002065 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002066 /* Note:
Denys Vlasenko10ad6222017-04-17 16:13:32 +02002067 * We don't do 'last_sig = sig' here -> NOT returning this sig.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002068 * Example: wait is not interrupted by TERM
Denys Vlasenkob8709032011-05-08 21:20:01 +02002069 * in interactive shell, because TERM is ignored.
2070 */
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002071 break;
2072 }
2073 }
2074 return last_sig;
2075}
2076
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002077
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002078static const char *get_cwd(int force)
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002079{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002080 if (force || G.cwd == NULL) {
2081 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
2082 * we must not try to free(bb_msg_unknown) */
2083 if (G.cwd == bb_msg_unknown)
2084 G.cwd = NULL;
2085 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
2086 if (!G.cwd)
2087 G.cwd = bb_msg_unknown;
2088 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00002089 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002090}
2091
Denis Vlasenko83506862007-11-23 13:11:42 +00002092
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002093/*
2094 * Shell and environment variable support
2095 */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002096static struct variable **get_ptr_to_local_var(const char *name, unsigned len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002097{
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002098 struct variable **pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002099 struct variable *cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002100
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002101 pp = &G.top_var;
2102 while ((cur = *pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002103 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002104 return pp;
2105 pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002106 }
2107 return NULL;
2108}
2109
Denys Vlasenko03dad222010-01-12 23:29:57 +01002110static const char* FAST_FUNC get_local_var_value(const char *name)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002111{
Denys Vlasenko29082232010-07-16 13:52:32 +02002112 struct variable **vpp;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002113 unsigned len = strlen(name);
Denys Vlasenko29082232010-07-16 13:52:32 +02002114
2115 if (G.expanded_assignments) {
2116 char **cpp = G.expanded_assignments;
Denys Vlasenko29082232010-07-16 13:52:32 +02002117 while (*cpp) {
2118 char *cp = *cpp;
2119 if (strncmp(cp, name, len) == 0 && cp[len] == '=')
2120 return cp + len + 1;
2121 cpp++;
2122 }
2123 }
2124
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002125 vpp = get_ptr_to_local_var(name, len);
Denys Vlasenko29082232010-07-16 13:52:32 +02002126 if (vpp)
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002127 return (*vpp)->varstr + len + 1;
Denys Vlasenko29082232010-07-16 13:52:32 +02002128
Denys Vlasenkodea47882009-10-09 15:40:49 +02002129 if (strcmp(name, "PPID") == 0)
2130 return utoa(G.root_ppid);
2131 // bash compat: UID? EUID?
Denys Vlasenko20b3d142009-10-09 20:59:39 +02002132#if ENABLE_HUSH_RANDOM_SUPPORT
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002133 if (strcmp(name, "RANDOM") == 0)
Denys Vlasenko20b3d142009-10-09 20:59:39 +02002134 return utoa(next_random(&G.random_gen));
2135#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002136 return NULL;
2137}
2138
2139/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00002140 * We take ownership of it.
Mike Frysinger6379bb42009-03-28 18:55:03 +00002141 */
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002142#define SETFLAG_EXPORT (1 << 0)
2143#define SETFLAG_UNEXPORT (1 << 1)
2144#define SETFLAG_MAKE_RO (1 << 2)
2145#define SETFLAG_LOCAL_SHIFT 3
2146static int set_local_var(char *str, unsigned flags)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002147{
Denys Vlasenko295fef82009-06-03 12:47:26 +02002148 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002149 struct variable *cur;
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002150 char *free_me = NULL;
Denis Vlasenko950bd722009-04-21 11:23:56 +00002151 char *eq_sign;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002152 int name_len;
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002153 IF_HUSH_LOCAL(unsigned local_lvl = (flags >> SETFLAG_LOCAL_SHIFT);)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002154
Denis Vlasenko950bd722009-04-21 11:23:56 +00002155 eq_sign = strchr(str, '=');
2156 if (!eq_sign) { /* not expected to ever happen? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002157 free(str);
2158 return -1;
2159 }
2160
Denis Vlasenko950bd722009-04-21 11:23:56 +00002161 name_len = eq_sign - str + 1; /* including '=' */
Denys Vlasenko5807e182018-02-08 19:19:04 +01002162#if ENABLE_HUSH_LINENO_VAR
Denys Vlasenko6aad1dd2018-01-19 15:37:04 +01002163 if (G.lineno_var) {
2164 if (name_len == 7 && strncmp("LINENO", str, 6) == 0)
2165 G.lineno_var = NULL;
2166 }
2167#endif
2168
Denys Vlasenko295fef82009-06-03 12:47:26 +02002169 var_pp = &G.top_var;
2170 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002171 if (strncmp(cur->varstr, str, name_len) != 0) {
Denys Vlasenko295fef82009-06-03 12:47:26 +02002172 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002173 continue;
2174 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002175
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002176 /* We found an existing var with this name */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002177 if (cur->flg_read_only) {
Denys Vlasenko6b48e1f2017-07-17 21:31:17 +02002178 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002179 free(str);
Denys Vlasenko5b2cc0a2017-07-18 02:44:06 +02002180//NOTE: in bash, assignment in "export READONLY_VAR=Z" fails, and sets $?=1,
2181//but export per se succeeds (does put the var in env). We don't mimic that.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002182 return -1;
2183 }
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002184 if (flags & SETFLAG_UNEXPORT) { // && cur->flg_export ?
Denis Vlasenko950bd722009-04-21 11:23:56 +00002185 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
2186 *eq_sign = '\0';
2187 unsetenv(str);
2188 *eq_sign = '=';
2189 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02002190#if ENABLE_HUSH_LOCAL
2191 if (cur->func_nest_level < local_lvl) {
2192 /* New variable is declared as local,
2193 * and existing one is global, or local
2194 * from enclosing function.
2195 * Remove and save old one: */
2196 *var_pp = cur->next;
2197 cur->next = *G.shadowed_vars_pp;
2198 *G.shadowed_vars_pp = cur;
2199 /* bash 3.2.33(1) and exported vars:
2200 * # export z=z
2201 * # f() { local z=a; env | grep ^z; }
2202 * # f
2203 * z=a
2204 * # env | grep ^z
2205 * z=z
2206 */
2207 if (cur->flg_export)
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002208 flags |= SETFLAG_EXPORT;
Denys Vlasenko295fef82009-06-03 12:47:26 +02002209 break;
2210 }
2211#endif
Denis Vlasenko950bd722009-04-21 11:23:56 +00002212 if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002213 free_and_exp:
2214 free(str);
2215 goto exp;
2216 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02002217 if (cur->max_len != 0) {
2218 if (cur->max_len >= strlen(str)) {
2219 /* This one is from startup env, reuse space */
2220 strcpy(cur->varstr, str);
2221 goto free_and_exp;
2222 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002223 /* Can't reuse */
2224 cur->max_len = 0;
2225 goto set_str_and_exp;
Denys Vlasenko295fef82009-06-03 12:47:26 +02002226 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002227 /* max_len == 0 signifies "malloced" var, which we can
2228 * (and have to) free. But we can't free(cur->varstr) here:
2229 * if cur->flg_export is 1, it is in the environment.
2230 * We should either unsetenv+free, or wait until putenv,
2231 * then putenv(new)+free(old).
2232 */
2233 free_me = cur->varstr;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002234 goto set_str_and_exp;
2235 }
2236
Denys Vlasenko295fef82009-06-03 12:47:26 +02002237 /* Not found - create new variable struct */
2238 cur = xzalloc(sizeof(*cur));
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002239 IF_HUSH_LOCAL(cur->func_nest_level = local_lvl;)
Denys Vlasenko295fef82009-06-03 12:47:26 +02002240 cur->next = *var_pp;
2241 *var_pp = cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002242
2243 set_str_and_exp:
2244 cur->varstr = str;
2245 exp:
Denys Vlasenko1e660422017-07-17 21:10:50 +02002246#if !BB_MMU || ENABLE_HUSH_READONLY
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002247 if (flags & SETFLAG_MAKE_RO) {
2248 cur->flg_read_only = 1;
Denys Vlasenko1e660422017-07-17 21:10:50 +02002249 }
2250#endif
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002251 if (flags & SETFLAG_EXPORT)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002252 cur->flg_export = 1;
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002253 if (name_len == 4 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
2254 cmdedit_update_prompt();
Denys Vlasenko238ff982017-08-29 13:38:30 +02002255#if ENABLE_HUSH_GETOPTS
Denys Vlasenko55af51c2017-08-29 13:48:49 +02002256 /* defoptindvar is a "OPTIND=..." constant string */
2257 if (strncmp(cur->varstr, defoptindvar, 7) == 0)
Denys Vlasenko238ff982017-08-29 13:38:30 +02002258 G.getopt_count = 0;
2259#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002260 if (cur->flg_export) {
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002261 if (flags & SETFLAG_UNEXPORT) {
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002262 cur->flg_export = 0;
2263 /* unsetenv was already done */
2264 } else {
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002265 int i;
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002266 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002267 i = putenv(cur->varstr);
2268 /* only now we can free old exported malloced string */
2269 free(free_me);
2270 return i;
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002271 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002272 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002273 free(free_me);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002274 return 0;
2275}
2276
Denys Vlasenko6db47842009-09-05 20:15:17 +02002277/* Used at startup and after each cd */
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002278static void set_pwd_var(unsigned flag)
Denys Vlasenko6db47842009-09-05 20:15:17 +02002279{
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002280 set_local_var(xasprintf("PWD=%s", get_cwd(/*force:*/ 1)), flag);
Denys Vlasenko6db47842009-09-05 20:15:17 +02002281}
2282
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002283static int unset_local_var_len(const char *name, int name_len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002284{
2285 struct variable *cur;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002286 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002287
2288 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00002289 return EXIT_SUCCESS;
Denys Vlasenko6aad1dd2018-01-19 15:37:04 +01002290
Denys Vlasenko238ff982017-08-29 13:38:30 +02002291#if ENABLE_HUSH_GETOPTS
2292 if (name_len == 6 && strncmp(name, "OPTIND", 6) == 0)
2293 G.getopt_count = 0;
2294#endif
Denys Vlasenko5807e182018-02-08 19:19:04 +01002295#if ENABLE_HUSH_LINENO_VAR
Denys Vlasenko6aad1dd2018-01-19 15:37:04 +01002296 if (name_len == 6 && G.lineno_var && strncmp(name, "LINENO", 6) == 0)
2297 G.lineno_var = NULL;
2298#endif
2299
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002300 var_pp = &G.top_var;
2301 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002302 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
2303 if (cur->flg_read_only) {
2304 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00002305 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002306 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002307 *var_pp = cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002308 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
2309 bb_unsetenv(cur->varstr);
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002310 if (name_len == 3 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
2311 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002312 if (!cur->max_len)
2313 free(cur->varstr);
2314 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00002315 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002316 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002317 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002318 }
Mike Frysingerd690f682009-03-30 06:50:54 +00002319 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002320}
2321
Denys Vlasenko82d1c1f2017-12-31 17:30:02 +01002322#if ENABLE_HUSH_UNSET || ENABLE_HUSH_GETOPTS
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002323static int unset_local_var(const char *name)
2324{
2325 return unset_local_var_len(name, strlen(name));
2326}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01002327#endif
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002328
2329static void unset_vars(char **strings)
2330{
2331 char **v;
2332
2333 if (!strings)
2334 return;
2335 v = strings;
2336 while (*v) {
2337 const char *eq = strchrnul(*v, '=');
2338 unset_local_var_len(*v, (int)(eq - *v));
2339 v++;
2340 }
2341 free(strings);
2342}
2343
Denys Vlasenko82d1c1f2017-12-31 17:30:02 +01002344#if BASH_HOSTNAME_VAR || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_READ || ENABLE_HUSH_GETOPTS
Denys Vlasenko03dad222010-01-12 23:29:57 +01002345static void FAST_FUNC set_local_var_from_halves(const char *name, const char *val)
Mike Frysinger98c52642009-04-02 10:02:37 +00002346{
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002347 char *var = xasprintf("%s=%s", name, val);
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002348 set_local_var(var, /*flag:*/ 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00002349}
Denys Vlasenkocc2fd5a2017-01-09 06:19:55 +01002350#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002351
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002352
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002353/*
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002354 * Helpers for "var1=val1 var2=val2 cmd" feature
2355 */
2356static void add_vars(struct variable *var)
2357{
2358 struct variable *next;
2359
2360 while (var) {
2361 next = var->next;
2362 var->next = G.top_var;
2363 G.top_var = var;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002364 if (var->flg_export) {
2365 debug_printf_env("%s: restoring exported '%s'\n", __func__, var->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002366 putenv(var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002367 } else {
Denys Vlasenko295fef82009-06-03 12:47:26 +02002368 debug_printf_env("%s: restoring variable '%s'\n", __func__, var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002369 }
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002370 var = next;
2371 }
2372}
2373
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002374static struct variable *set_vars_and_save_old(char **strings)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002375{
2376 char **s;
2377 struct variable *old = NULL;
2378
2379 if (!strings)
2380 return old;
2381 s = strings;
2382 while (*s) {
2383 struct variable *var_p;
2384 struct variable **var_pp;
2385 char *eq;
2386
2387 eq = strchr(*s, '=');
2388 if (eq) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002389 var_pp = get_ptr_to_local_var(*s, eq - *s);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002390 if (var_pp) {
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002391 var_p = *var_pp;
Denys Vlasenko5b2cc0a2017-07-18 02:44:06 +02002392 if (var_p->flg_read_only) {
Denys Vlasenkocf511092017-07-18 15:58:02 +02002393 char **p;
Denys Vlasenko5b2cc0a2017-07-18 02:44:06 +02002394 bb_error_msg("%s: readonly variable", *s);
Denys Vlasenkocf511092017-07-18 15:58:02 +02002395 /*
2396 * "VAR=V BLTIN" unsets VARs after BLTIN completes.
2397 * If VAR is readonly, leaving it in the list
2398 * after asssignment error (msg above)
2399 * causes doubled error message later, on unset.
2400 */
2401 debug_printf_env("removing/freeing '%s' element\n", *s);
2402 free(*s);
2403 p = s;
2404 do { *p = p[1]; p++; } while (*p);
Denys Vlasenko5b2cc0a2017-07-18 02:44:06 +02002405 goto next;
2406 }
2407 /* Remove variable from global linked list */
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002408 debug_printf_env("%s: removing '%s'\n", __func__, var_p->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002409 *var_pp = var_p->next;
2410 /* Add it to returned list */
2411 var_p->next = old;
2412 old = var_p;
2413 }
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002414 set_local_var(*s, SETFLAG_EXPORT);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002415 }
Denys Vlasenko5b2cc0a2017-07-18 02:44:06 +02002416 next:
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002417 s++;
2418 }
2419 return old;
2420}
2421
2422
2423/*
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002424 * Unicode helper
2425 */
2426static void reinit_unicode_for_hush(void)
2427{
2428 /* Unicode support should be activated even if LANG is set
2429 * _during_ shell execution, not only if it was set when
2430 * shell was started. Therefore, re-check LANG every time:
2431 */
Denys Vlasenko841f8332014-08-13 10:09:49 +02002432 if (ENABLE_FEATURE_CHECK_UNICODE_IN_ENV
2433 || ENABLE_UNICODE_USING_LOCALE
2434 ) {
2435 const char *s = get_local_var_value("LC_ALL");
2436 if (!s) s = get_local_var_value("LC_CTYPE");
2437 if (!s) s = get_local_var_value("LANG");
2438 reinit_unicode(s);
2439 }
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002440}
2441
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002442/*
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002443 * in_str support (strings, and "strings" read from files).
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002444 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002445
2446#if ENABLE_HUSH_INTERACTIVE
Denys Vlasenko4074d492016-09-30 01:49:53 +02002447/* To test correct lineedit/interactive behavior, type from command line:
2448 * echo $P\
2449 * \
2450 * AT\
2451 * H\
2452 * \
Denys Vlasenko10ad6222017-04-17 16:13:32 +02002453 * It exercises a lot of corner cases.
Denys Vlasenko4074d492016-09-30 01:49:53 +02002454 */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002455static void cmdedit_update_prompt(void)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002456{
Mike Frysingerec2c6552009-03-28 12:24:44 +00002457 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002458 G.PS1 = get_local_var_value("PS1");
Mike Frysingerec2c6552009-03-28 12:24:44 +00002459 if (G.PS1 == NULL)
2460 G.PS1 = "\\w \\$ ";
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002461 G.PS2 = get_local_var_value("PS2");
Denys Vlasenko690ad242009-04-30 21:24:24 +02002462 } else {
Mike Frysingerec2c6552009-03-28 12:24:44 +00002463 G.PS1 = NULL;
Denys Vlasenko690ad242009-04-30 21:24:24 +02002464 }
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002465 if (G.PS2 == NULL)
2466 G.PS2 = "> ";
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002467}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002468static const char *setup_prompt_string(int promptmode)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002469{
2470 const char *prompt_str;
2471 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00002472 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
2473 /* Set up the prompt */
2474 if (promptmode == 0) { /* PS1 */
2475 free((char*)G.PS1);
Denys Vlasenko6db47842009-09-05 20:15:17 +02002476 /* bash uses $PWD value, even if it is set by user.
2477 * It uses current dir only if PWD is unset.
2478 * We always use current dir. */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002479 G.PS1 = xasprintf("%s %c ", get_cwd(0), (geteuid() != 0) ? '$' : '#');
Mike Frysingerec2c6552009-03-28 12:24:44 +00002480 prompt_str = G.PS1;
2481 } else
2482 prompt_str = G.PS2;
2483 } else
2484 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denys Vlasenko4074d492016-09-30 01:49:53 +02002485 debug_printf("prompt_str '%s'\n", prompt_str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002486 return prompt_str;
2487}
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002488static int get_user_input(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002489{
2490 int r;
2491 const char *prompt_str;
2492
2493 prompt_str = setup_prompt_string(i->promptmode);
Denys Vlasenko8391c482010-05-22 17:50:43 +02002494# if ENABLE_FEATURE_EDITING
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002495 for (;;) {
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002496 reinit_unicode_for_hush();
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002497 if (G.flag_SIGINT) {
2498 /* There was ^C'ed, make it look prettier: */
2499 bb_putchar('\n');
2500 G.flag_SIGINT = 0;
2501 }
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00002502 /* buglet: SIGINT will not make new prompt to appear _at once_,
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002503 * only after <Enter>. (^C works immediately) */
Denys Vlasenko0448c552016-09-29 20:25:44 +02002504 r = read_line_input(G.line_input_state, prompt_str,
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002505 G.user_input_buf, CONFIG_FEATURE_EDITING_MAX_LEN-1
Denys Vlasenko0448c552016-09-29 20:25:44 +02002506 );
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002507 /* read_line_input intercepts ^C, "convert" it to SIGINT */
Denys Vlasenkodd4b4462017-08-02 16:52:12 +02002508 if (r == 0)
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002509 raise(SIGINT);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002510 check_and_run_traps();
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002511 if (r != 0 && !G.flag_SIGINT)
2512 break;
2513 /* ^C or SIGINT: repeat */
Denys Vlasenkodd4b4462017-08-02 16:52:12 +02002514 /* bash prints ^C even on real SIGINT (non-kbd generated) */
2515 write(STDOUT_FILENO, "^C", 2);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002516 G.last_exitcode = 128 + SIGINT;
2517 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002518 if (r < 0) {
2519 /* EOF/error detected */
Denys Vlasenko4074d492016-09-30 01:49:53 +02002520 i->p = NULL;
2521 i->peek_buf[0] = r = EOF;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002522 return r;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002523 }
Denys Vlasenko4074d492016-09-30 01:49:53 +02002524 i->p = G.user_input_buf;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002525 return (unsigned char)*i->p++;
Denys Vlasenko8391c482010-05-22 17:50:43 +02002526# else
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002527 for (;;) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00002528 G.flag_SIGINT = 0;
Denys Vlasenkob8709032011-05-08 21:20:01 +02002529 if (i->last_char == '\0' || i->last_char == '\n') {
2530 /* Why check_and_run_traps here? Try this interactively:
2531 * $ trap 'echo INT' INT; (sleep 2; kill -INT $$) &
2532 * $ <[enter], repeatedly...>
2533 * Without check_and_run_traps, handler never runs.
2534 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002535 check_and_run_traps();
Denys Vlasenkob8709032011-05-08 21:20:01 +02002536 fputs(prompt_str, stdout);
2537 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002538 fflush_all();
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002539//FIXME: here ^C or SIGINT will have effect only after <Enter>
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002540 r = fgetc(i->file);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002541 /* In !ENABLE_FEATURE_EDITING we don't use read_line_input,
2542 * no ^C masking happens during fgetc, no special code for ^C:
2543 * it generates SIGINT as usual.
2544 */
2545 check_and_run_traps();
2546 if (G.flag_SIGINT)
2547 G.last_exitcode = 128 + SIGINT;
2548 if (r != '\0')
2549 break;
2550 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002551 return r;
Denys Vlasenko8391c482010-05-22 17:50:43 +02002552# endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002553}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002554/* This is the magic location that prints prompts
2555 * and gets data back from the user */
Denys Vlasenko4074d492016-09-30 01:49:53 +02002556static int fgetc_interactive(struct in_str *i)
2557{
2558 int ch;
2559 /* If it's interactive stdin, get new line. */
2560 if (G_interactive_fd && i->file == stdin) {
2561 /* Returns first char (or EOF), the rest is in i->p[] */
2562 ch = get_user_input(i);
2563 i->promptmode = 1; /* PS2 */
2564 } else {
2565 /* Not stdin: script file, sourced file, etc */
2566 do ch = fgetc(i->file); while (ch == '\0');
2567 }
2568 return ch;
2569}
2570#else
2571static inline int fgetc_interactive(struct in_str *i)
2572{
2573 int ch;
2574 do ch = fgetc(i->file); while (ch == '\0');
2575 return ch;
2576}
2577#endif /* INTERACTIVE */
2578
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002579static int i_getch(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002580{
2581 int ch;
2582
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002583 if (!i->file) {
2584 /* string-based in_str */
2585 ch = (unsigned char)*i->p;
2586 if (ch != '\0') {
2587 i->p++;
2588 i->last_char = ch;
2589 return ch;
2590 }
2591 return EOF;
2592 }
2593
2594 /* FILE-based in_str */
2595
Denys Vlasenko4074d492016-09-30 01:49:53 +02002596#if ENABLE_FEATURE_EDITING
2597 /* This can be stdin, check line editing char[] buffer */
2598 if (i->p && *i->p != '\0') {
2599 ch = (unsigned char)*i->p++;
2600 goto out;
2601 }
2602#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002603 /* peek_buf[] is an int array, not char. Can contain EOF. */
2604 ch = i->peek_buf[0];
Denys Vlasenko4074d492016-09-30 01:49:53 +02002605 if (ch != 0) {
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002606 int ch2 = i->peek_buf[1];
2607 i->peek_buf[0] = ch2;
2608 if (ch2 == 0) /* very likely, avoid redundant write */
2609 goto out;
2610 i->peek_buf[1] = 0;
2611 goto out;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002612 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002613
Denys Vlasenko4074d492016-09-30 01:49:53 +02002614 ch = fgetc_interactive(i);
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002615 out:
Denis Vlasenko913a2012009-04-05 22:17:04 +00002616 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02002617 i->last_char = ch;
Denys Vlasenko5807e182018-02-08 19:19:04 +01002618#if ENABLE_HUSH_LINENO_VAR
2619 if (ch == '\n') {
Denys Vlasenko6aad1dd2018-01-19 15:37:04 +01002620 G.lineno++;
Denys Vlasenko5807e182018-02-08 19:19:04 +01002621 debug_printf_parse("G.lineno++ = %u\n", G.lineno);
2622 }
Denys Vlasenko6aad1dd2018-01-19 15:37:04 +01002623#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002624 return ch;
2625}
2626
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002627static int i_peek(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002628{
2629 int ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002630
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002631 if (!i->file) {
2632 /* string-based in_str */
2633 /* Doesn't report EOF on NUL. None of the callers care. */
2634 return (unsigned char)*i->p;
2635 }
2636
2637 /* FILE-based in_str */
2638
Denys Vlasenko4074d492016-09-30 01:49:53 +02002639#if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002640 /* This can be stdin, check line editing char[] buffer */
2641 if (i->p && *i->p != '\0')
2642 return (unsigned char)*i->p;
2643#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002644 /* peek_buf[] is an int array, not char. Can contain EOF. */
2645 ch = i->peek_buf[0];
Denys Vlasenko4074d492016-09-30 01:49:53 +02002646 if (ch != 0)
2647 return ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002648
Denys Vlasenko4074d492016-09-30 01:49:53 +02002649 /* Need to get a new char */
2650 ch = fgetc_interactive(i);
2651 debug_printf("file_peek: got '%c' %d\n", ch, ch);
2652
2653 /* Save it by either rolling back line editing buffer, or in i->peek_buf[0] */
2654#if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE
2655 if (i->p) {
2656 i->p -= 1;
2657 return ch;
2658 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002659#endif
Denys Vlasenko4074d492016-09-30 01:49:53 +02002660 i->peek_buf[0] = ch;
2661 /*i->peek_buf[1] = 0; - already is */
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002662 return ch;
2663}
2664
Denys Vlasenko4074d492016-09-30 01:49:53 +02002665/* Only ever called if i_peek() was called, and did not return EOF.
2666 * IOW: we know the previous peek saw an ordinary char, not EOF, not NUL,
2667 * not end-of-line. Therefore we never need to read a new editing line here.
2668 */
2669static int i_peek2(struct in_str *i)
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002670{
Denys Vlasenko4074d492016-09-30 01:49:53 +02002671 int ch;
2672
2673 /* There are two cases when i->p[] buffer exists.
2674 * (1) it's a string in_str.
Denys Vlasenko08755f92016-09-30 02:02:25 +02002675 * (2) It's a file, and we have a saved line editing buffer.
Denys Vlasenko4074d492016-09-30 01:49:53 +02002676 * In both cases, we know that i->p[0] exists and not NUL, and
2677 * the peek2 result is in i->p[1].
2678 */
2679 if (i->p)
2680 return (unsigned char)i->p[1];
2681
2682 /* Now we know it is a file-based in_str. */
2683
2684 /* peek_buf[] is an int array, not char. Can contain EOF. */
2685 /* Is there 2nd char? */
2686 ch = i->peek_buf[1];
2687 if (ch == 0) {
2688 /* We did not read it yet, get it now */
2689 do ch = fgetc(i->file); while (ch == '\0');
2690 i->peek_buf[1] = ch;
2691 }
2692
2693 debug_printf("file_peek2: got '%c' %d\n", ch, ch);
2694 return ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002695}
2696
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002697static void setup_file_in_str(struct in_str *i, FILE *f)
2698{
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002699 memset(i, 0, sizeof(*i));
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002700 /* i->promptmode = 0; - PS1 (memset did it) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002701 i->file = f;
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002702 /* i->p = NULL; */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002703}
2704
2705static void setup_string_in_str(struct in_str *i, const char *s)
2706{
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002707 memset(i, 0, sizeof(*i));
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002708 /* i->promptmode = 0; - PS1 (memset did it) */
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002709 /*i->file = NULL */;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002710 i->p = s;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002711}
2712
2713
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002714/*
2715 * o_string support
2716 */
2717#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00002718
Denis Vlasenko0b677d82009-04-10 13:49:10 +00002719static void o_reset_to_empty_unquoted(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00002720{
2721 o->length = 0;
Denys Vlasenko38292b62010-09-05 14:49:40 +02002722 o->has_quoted_part = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002723 if (o->data)
2724 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002725}
2726
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002727static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00002728{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00002729 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002730 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00002731}
2732
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002733static ALWAYS_INLINE void o_free_unsafe(o_string *o)
2734{
2735 free(o->data);
2736}
2737
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002738static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002739{
2740 if (o->length + len > o->maxlen) {
Denys Vlasenko46e64982016-09-29 19:50:55 +02002741 o->maxlen += (2 * len) | (B_CHUNK-1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002742 o->data = xrealloc(o->data, 1 + o->maxlen);
2743 }
2744}
2745
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002746static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002747{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002748 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
Denys Vlasenko46e64982016-09-29 19:50:55 +02002749 if (o->length < o->maxlen) {
2750 /* likely. avoid o_grow_by() call */
2751 add:
2752 o->data[o->length] = ch;
2753 o->length++;
2754 o->data[o->length] = '\0';
2755 return;
2756 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002757 o_grow_by(o, 1);
Denys Vlasenko46e64982016-09-29 19:50:55 +02002758 goto add;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002759}
2760
Denys Vlasenko657086a2016-09-29 18:07:42 +02002761#if 0
2762/* Valid only if we know o_string is not empty */
2763static void o_delchr(o_string *o)
2764{
2765 o->length--;
2766 o->data[o->length] = '\0';
2767}
2768#endif
2769
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002770static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002771{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002772 o_grow_by(o, len);
Denys Vlasenko0675b032017-07-24 02:17:05 +02002773 ((char*)mempcpy(&o->data[o->length], str, len))[0] = '\0';
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002774 o->length += len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002775}
2776
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002777static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00002778{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002779 o_addblock(o, str, strlen(str));
2780}
Denys Vlasenko2e48d532010-05-22 17:30:39 +02002781
Denys Vlasenko1e811b12010-05-22 03:12:29 +02002782#if !BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002783static void nommu_addchr(o_string *o, int ch)
2784{
2785 if (o)
2786 o_addchr(o, ch);
2787}
2788#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002789# define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002790#endif
2791
2792static void o_addstr_with_NUL(o_string *o, const char *str)
2793{
2794 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00002795}
2796
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002797/*
Denys Vlasenko238081f2010-10-03 14:26:26 +02002798 * HUSH_BRACE_EXPANSION code needs corresponding quoting on variable expansion side.
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002799 * Currently, "v='{q,w}'; echo $v" erroneously expands braces in $v.
2800 * Apparently, on unquoted $v bash still does globbing
2801 * ("v='*.txt'; echo $v" prints all .txt files),
2802 * but NOT brace expansion! Thus, there should be TWO independent
2803 * quoting mechanisms on $v expansion side: one protects
2804 * $v from brace expansion, and other additionally protects "$v" against globbing.
2805 * We have only second one.
2806 */
2807
Denys Vlasenko9e800222010-10-03 14:28:04 +02002808#if ENABLE_HUSH_BRACE_EXPANSION
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002809# define MAYBE_BRACES "{}"
2810#else
2811# define MAYBE_BRACES ""
2812#endif
2813
Eric Andersen25f27032001-04-26 23:22:31 +00002814/* My analysis of quoting semantics tells me that state information
2815 * is associated with a destination, not a source.
2816 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002817static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00002818{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002819 int sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002820 char *found = strchr("*?[\\" MAYBE_BRACES, ch);
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002821 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002822 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002823 o_grow_by(o, sz);
2824 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002825 o->data[o->length] = '\\';
2826 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00002827 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002828 o->data[o->length] = ch;
2829 o->length++;
2830 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002831}
2832
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002833static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002834{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002835 int sz = 1;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002836 if ((o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)
2837 && strchr("*?[\\" MAYBE_BRACES, ch)
2838 ) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002839 sz++;
2840 o->data[o->length] = '\\';
2841 o->length++;
2842 }
2843 o_grow_by(o, sz);
2844 o->data[o->length] = ch;
2845 o->length++;
2846 o->data[o->length] = '\0';
2847}
2848
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002849static void o_addqblock(o_string *o, const char *str, int len)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002850{
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002851 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002852 char ch;
2853 int sz;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002854 int ordinary_cnt = strcspn(str, "*?[\\" MAYBE_BRACES);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002855 if (ordinary_cnt > len) /* paranoia */
2856 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002857 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002858 if (ordinary_cnt == len)
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002859 return; /* NUL is already added by o_addblock */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002860 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002861 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002862
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002863 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002864 sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002865 if (ch) { /* it is necessarily one of "*?[\\" MAYBE_BRACES */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002866 sz++;
2867 o->data[o->length] = '\\';
2868 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002869 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002870 o_grow_by(o, sz);
2871 o->data[o->length] = ch;
2872 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002873 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002874 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002875}
2876
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002877static void o_addQblock(o_string *o, const char *str, int len)
2878{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002879 if (!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002880 o_addblock(o, str, len);
2881 return;
2882 }
2883 o_addqblock(o, str, len);
2884}
2885
Denys Vlasenko38292b62010-09-05 14:49:40 +02002886static void o_addQstr(o_string *o, const char *str)
2887{
2888 o_addQblock(o, str, strlen(str));
2889}
2890
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002891/* A special kind of o_string for $VAR and `cmd` expansion.
2892 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002893 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002894 * list[i] contains an INDEX (int!) into this string data.
2895 * It means that if list[] needs to grow, data needs to be moved higher up
2896 * but list[i]'s need not be modified.
2897 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002898 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002899 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
2900 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002901#if DEBUG_EXPAND || DEBUG_GLOB
2902static void debug_print_list(const char *prefix, o_string *o, int n)
2903{
2904 char **list = (char**)o->data;
2905 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2906 int i = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002907
2908 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002909 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 +02002910 prefix, list, n, string_start, o->length, o->maxlen,
2911 !!(o->o_expflags & EXP_FLAG_GLOB),
2912 o->has_quoted_part,
2913 !!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002914 while (i < n) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002915 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002916 fdprintf(2, " list[%d]=%d '%s' %p\n", i, (int)(uintptr_t)list[i],
2917 o->data + (int)(uintptr_t)list[i] + string_start,
2918 o->data + (int)(uintptr_t)list[i] + string_start);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002919 i++;
2920 }
2921 if (n) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002922 const char *p = o->data + (int)(uintptr_t)list[n - 1] + string_start;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002923 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002924 fdprintf(2, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002925 }
2926}
2927#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002928# define debug_print_list(prefix, o, n) ((void)0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002929#endif
2930
2931/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
2932 * in list[n] so that it points past last stored byte so far.
2933 * It returns n+1. */
2934static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002935{
2936 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00002937 int string_start;
2938 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002939
2940 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00002941 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2942 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002943 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002944 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002945 /* list[n] points to string_start, make space for 16 more pointers */
2946 o->maxlen += 0x10 * sizeof(list[0]);
2947 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00002948 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002949 memmove(list + n + 0x10, list + n, string_len);
2950 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002951 } else {
2952 debug_printf_list("list[%d]=%d string_start=%d\n",
2953 n, string_len, string_start);
2954 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002955 } else {
2956 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00002957 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
2958 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002959 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
2960 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002961 o->has_empty_slot = 0;
2962 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002963 o->has_quoted_part = 0;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002964 list[n] = (char*)(uintptr_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002965 return n + 1;
2966}
2967
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002968/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002969static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002970{
2971 char **list = (char**)o->data;
2972 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2973
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002974 return ((int)(uintptr_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002975}
2976
Denys Vlasenko9e800222010-10-03 14:28:04 +02002977#if ENABLE_HUSH_BRACE_EXPANSION
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002978/* There in a GNU extension, GLOB_BRACE, but it is not usable:
2979 * first, it processes even {a} (no commas), second,
2980 * I didn't manage to make it return strings when they don't match
Denys Vlasenko160746b2009-11-16 05:51:18 +01002981 * existing files. Need to re-implement it.
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002982 */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002983
2984/* Helper */
2985static int glob_needed(const char *s)
2986{
2987 while (*s) {
2988 if (*s == '\\') {
2989 if (!s[1])
2990 return 0;
2991 s += 2;
2992 continue;
2993 }
2994 if (*s == '*' || *s == '[' || *s == '?' || *s == '{')
2995 return 1;
2996 s++;
2997 }
2998 return 0;
2999}
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003000/* Return pointer to next closing brace or to comma */
3001static const char *next_brace_sub(const char *cp)
3002{
3003 unsigned depth = 0;
3004 cp++;
3005 while (*cp != '\0') {
3006 if (*cp == '\\') {
3007 if (*++cp == '\0')
3008 break;
3009 cp++;
3010 continue;
Denys Vlasenko3581c622010-01-25 13:39:24 +01003011 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02003012 if ((*cp == '}' && depth-- == 0) || (*cp == ',' && depth == 0))
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003013 break;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02003014 if (*cp++ == '{')
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003015 depth++;
3016 }
3017
3018 return *cp != '\0' ? cp : NULL;
3019}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003020/* Recursive brace globber. Note: may garble pattern[]. */
3021static int glob_brace(char *pattern, o_string *o, int n)
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003022{
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003023 char *new_pattern_buf;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003024 const char *begin;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003025 const char *next;
3026 const char *rest;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003027 const char *p;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003028 size_t rest_len;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003029
3030 debug_printf_glob("glob_brace('%s')\n", pattern);
3031
3032 begin = pattern;
3033 while (1) {
3034 if (*begin == '\0')
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003035 goto simple_glob;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02003036 if (*begin == '{') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003037 /* Find the first sub-pattern and at the same time
3038 * find the rest after the closing brace */
3039 next = next_brace_sub(begin);
3040 if (next == NULL) {
3041 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003042 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003043 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02003044 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003045 /* "{abc}" with no commas - illegal
3046 * brace expr, disregard and skip it */
3047 begin = next + 1;
3048 continue;
3049 }
3050 break;
3051 }
3052 if (*begin == '\\' && begin[1] != '\0')
3053 begin++;
3054 begin++;
3055 }
3056 debug_printf_glob("begin:%s\n", begin);
3057 debug_printf_glob("next:%s\n", next);
3058
3059 /* Now find the end of the whole brace expression */
3060 rest = next;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02003061 while (*rest != '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003062 rest = next_brace_sub(rest);
3063 if (rest == NULL) {
3064 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003065 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003066 }
3067 debug_printf_glob("rest:%s\n", rest);
3068 }
3069 rest_len = strlen(++rest) + 1;
3070
3071 /* We are sure the brace expression is well-formed */
3072
3073 /* Allocate working buffer large enough for our work */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003074 new_pattern_buf = xmalloc(strlen(pattern));
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003075
3076 /* We have a brace expression. BEGIN points to the opening {,
3077 * NEXT points past the terminator of the first element, and REST
3078 * points past the final }. We will accumulate result names from
3079 * recursive runs for each brace alternative in the buffer using
3080 * GLOB_APPEND. */
3081
3082 p = begin + 1;
3083 while (1) {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003084 /* Construct the new glob expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003085 memcpy(
3086 mempcpy(
3087 mempcpy(new_pattern_buf,
3088 /* We know the prefix for all sub-patterns */
3089 pattern, begin - pattern),
3090 p, next - p),
3091 rest, rest_len);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003092
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003093 /* Note: glob_brace() may garble new_pattern_buf[].
3094 * That's why we re-copy prefix every time (1st memcpy above).
3095 */
3096 n = glob_brace(new_pattern_buf, o, n);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02003097 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003098 /* We saw the last entry */
3099 break;
3100 }
3101 p = next + 1;
3102 next = next_brace_sub(next);
3103 }
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003104 free(new_pattern_buf);
3105 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003106
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003107 simple_glob:
3108 {
3109 int gr;
3110 glob_t globdata;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003111
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003112 memset(&globdata, 0, sizeof(globdata));
3113 gr = glob(pattern, 0, NULL, &globdata);
3114 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
3115 if (gr != 0) {
3116 if (gr == GLOB_NOMATCH) {
3117 globfree(&globdata);
3118 /* NB: garbles parameter */
3119 unbackslash(pattern);
3120 o_addstr_with_NUL(o, pattern);
3121 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
3122 return o_save_ptr_helper(o, n);
3123 }
3124 if (gr == GLOB_NOSPACE)
3125 bb_error_msg_and_die(bb_msg_memory_exhausted);
3126 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
3127 * but we didn't specify it. Paranoia again. */
3128 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
3129 }
3130 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
3131 char **argv = globdata.gl_pathv;
3132 while (1) {
3133 o_addstr_with_NUL(o, *argv);
3134 n = o_save_ptr_helper(o, n);
3135 argv++;
3136 if (!*argv)
3137 break;
3138 }
3139 }
3140 globfree(&globdata);
3141 }
3142 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003143}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003144/* Performs globbing on last list[],
3145 * saving each result as a new list[].
3146 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003147static int perform_glob(o_string *o, int n)
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003148{
3149 char *pattern, *copy;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003150
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003151 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003152 if (!o->data)
3153 return o_save_ptr_helper(o, n);
3154 pattern = o->data + o_get_last_ptr(o, n);
3155 debug_printf_glob("glob pattern '%s'\n", pattern);
3156 if (!glob_needed(pattern)) {
3157 /* unbackslash last string in o in place, fix length */
3158 o->length = unbackslash(pattern) - o->data;
3159 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
3160 return o_save_ptr_helper(o, n);
3161 }
3162
3163 copy = xstrdup(pattern);
3164 /* "forget" pattern in o */
3165 o->length = pattern - o->data;
3166 n = glob_brace(copy, o, n);
3167 free(copy);
3168 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003169 debug_print_list("perform_glob returning", o, n);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003170 return n;
3171}
3172
Denys Vlasenko238081f2010-10-03 14:26:26 +02003173#else /* !HUSH_BRACE_EXPANSION */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003174
3175/* Helper */
3176static int glob_needed(const char *s)
3177{
3178 while (*s) {
3179 if (*s == '\\') {
3180 if (!s[1])
3181 return 0;
3182 s += 2;
3183 continue;
3184 }
3185 if (*s == '*' || *s == '[' || *s == '?')
3186 return 1;
3187 s++;
3188 }
3189 return 0;
3190}
3191/* Performs globbing on last list[],
3192 * saving each result as a new list[].
3193 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003194static int perform_glob(o_string *o, int n)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003195{
3196 glob_t globdata;
3197 int gr;
3198 char *pattern;
3199
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003200 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003201 if (!o->data)
3202 return o_save_ptr_helper(o, n);
3203 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003204 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003205 if (!glob_needed(pattern)) {
3206 literal:
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003207 /* unbackslash last string in o in place, fix length */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003208 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003209 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003210 return o_save_ptr_helper(o, n);
3211 }
3212
3213 memset(&globdata, 0, sizeof(globdata));
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003214 /* Can't use GLOB_NOCHECK: it does not unescape the string.
3215 * If we glob "*.\*" and don't find anything, we need
3216 * to fall back to using literal "*.*", but GLOB_NOCHECK
3217 * will return "*.\*"!
3218 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003219 gr = glob(pattern, 0, NULL, &globdata);
3220 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003221 if (gr != 0) {
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003222 if (gr == GLOB_NOMATCH) {
3223 globfree(&globdata);
3224 goto literal;
3225 }
3226 if (gr == GLOB_NOSPACE)
3227 bb_error_msg_and_die(bb_msg_memory_exhausted);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003228 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
3229 * but we didn't specify it. Paranoia again. */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003230 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003231 }
3232 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
3233 char **argv = globdata.gl_pathv;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003234 /* "forget" pattern in o */
3235 o->length = pattern - o->data;
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003236 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003237 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003238 n = o_save_ptr_helper(o, n);
3239 argv++;
3240 if (!*argv)
3241 break;
3242 }
3243 }
3244 globfree(&globdata);
3245 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003246 debug_print_list("perform_glob returning", o, n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003247 return n;
3248}
3249
Denys Vlasenko238081f2010-10-03 14:26:26 +02003250#endif /* !HUSH_BRACE_EXPANSION */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003251
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02003252/* If o->o_expflags & EXP_FLAG_GLOB, glob the string so far remembered.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003253 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003254static int o_save_ptr(o_string *o, int n)
3255{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02003256 if (o->o_expflags & EXP_FLAG_GLOB) {
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00003257 /* If o->has_empty_slot, list[n] was already globbed
3258 * (if it was requested back then when it was filled)
3259 * so don't do that again! */
3260 if (!o->has_empty_slot)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003261 return perform_glob(o, n); /* o_save_ptr_helper is inside */
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00003262 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003263 return o_save_ptr_helper(o, n);
3264}
3265
3266/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003267static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003268{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003269 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003270 int string_start;
3271
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003272 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
3273 if (DEBUG_EXPAND)
3274 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003275 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003276 list = (char**)o->data;
3277 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
3278 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003279 while (n) {
3280 n--;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003281 list[n] = o->data + (int)(uintptr_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003282 }
3283 return list;
3284}
3285
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003286static void free_pipe_list(struct pipe *pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003287
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003288/* Returns pi->next - next pipe in the list */
3289static struct pipe *free_pipe(struct pipe *pi)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003290{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003291 struct pipe *next;
3292 int i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003293
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003294 debug_printf_clean("free_pipe (pid %d)\n", getpid());
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003295 for (i = 0; i < pi->num_cmds; i++) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003296 struct command *command;
3297 struct redir_struct *r, *rnext;
3298
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003299 command = &pi->cmds[i];
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003300 debug_printf_clean(" command %d:\n", i);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003301 if (command->argv) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003302 if (DEBUG_CLEAN) {
3303 int a;
3304 char **p;
3305 for (a = 0, p = command->argv; *p; a++, p++) {
3306 debug_printf_clean(" argv[%d] = %s\n", a, *p);
3307 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003308 }
3309 free_strings(command->argv);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003310 //command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003311 }
3312 /* not "else if": on syntax error, we may have both! */
3313 if (command->group) {
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003314 debug_printf_clean(" begin group (cmd_type:%d)\n",
3315 command->cmd_type);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003316 free_pipe_list(command->group);
3317 debug_printf_clean(" end group\n");
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003318 //command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003319 }
Denis Vlasenkoed055212009-04-11 10:37:10 +00003320 /* else is crucial here.
3321 * If group != NULL, child_func is meaningless */
3322#if ENABLE_HUSH_FUNCTIONS
3323 else if (command->child_func) {
3324 debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
3325 command->child_func->parent_cmd = NULL;
3326 }
3327#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003328#if !BB_MMU
3329 free(command->group_as_string);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003330 //command->group_as_string = NULL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003331#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003332 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003333 debug_printf_clean(" redirect %d%s",
3334 r->rd_fd, redir_table[r->rd_type].descrip);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003335 /* guard against the case >$FOO, where foo is unset or blank */
3336 if (r->rd_filename) {
3337 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
3338 free(r->rd_filename);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003339 //r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003340 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003341 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003342 rnext = r->next;
3343 free(r);
3344 }
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003345 //command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003346 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003347 free(pi->cmds); /* children are an array, they get freed all at once */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003348 //pi->cmds = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003349#if ENABLE_HUSH_JOB
3350 free(pi->cmdtext);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003351 //pi->cmdtext = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003352#endif
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003353
3354 next = pi->next;
3355 free(pi);
3356 return next;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003357}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003358
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003359static void free_pipe_list(struct pipe *pi)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003360{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003361 while (pi) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003362#if HAS_KEYWORDS
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003363 debug_printf_clean("pipe reserved word %d\n", pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003364#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003365 debug_printf_clean("pipe followup code %d\n", pi->followup);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003366 pi = free_pipe(pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003367 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003368}
3369
3370
Denys Vlasenkob36abf22010-09-05 14:50:59 +02003371/*** Parsing routines ***/
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003372
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003373#ifndef debug_print_tree
3374static void debug_print_tree(struct pipe *pi, int lvl)
3375{
3376 static const char *const PIPE[] = {
3377 [PIPE_SEQ] = "SEQ",
3378 [PIPE_AND] = "AND",
3379 [PIPE_OR ] = "OR" ,
3380 [PIPE_BG ] = "BG" ,
3381 };
3382 static const char *RES[] = {
3383 [RES_NONE ] = "NONE" ,
3384# if ENABLE_HUSH_IF
3385 [RES_IF ] = "IF" ,
3386 [RES_THEN ] = "THEN" ,
3387 [RES_ELIF ] = "ELIF" ,
3388 [RES_ELSE ] = "ELSE" ,
3389 [RES_FI ] = "FI" ,
3390# endif
3391# if ENABLE_HUSH_LOOPS
3392 [RES_FOR ] = "FOR" ,
3393 [RES_WHILE] = "WHILE",
3394 [RES_UNTIL] = "UNTIL",
3395 [RES_DO ] = "DO" ,
3396 [RES_DONE ] = "DONE" ,
3397# endif
3398# if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
3399 [RES_IN ] = "IN" ,
3400# endif
3401# if ENABLE_HUSH_CASE
3402 [RES_CASE ] = "CASE" ,
3403 [RES_CASE_IN ] = "CASE_IN" ,
3404 [RES_MATCH] = "MATCH",
3405 [RES_CASE_BODY] = "CASE_BODY",
3406 [RES_ESAC ] = "ESAC" ,
3407# endif
3408 [RES_XXXX ] = "XXXX" ,
3409 [RES_SNTX ] = "SNTX" ,
3410 };
3411 static const char *const CMDTYPE[] = {
3412 "{}",
3413 "()",
3414 "[noglob]",
3415# if ENABLE_HUSH_FUNCTIONS
3416 "func()",
3417# endif
3418 };
3419
3420 int pin, prn;
3421
3422 pin = 0;
3423 while (pi) {
Denys Vlasenko5807e182018-02-08 19:19:04 +01003424 fdprintf(2, "%*spipe %d %sres_word=%s followup=%d %s\n",
3425 lvl*2, "",
3426 pin,
3427 (IF_HAS_KEYWORDS(pi->pi_inverted ? "! " :) ""),
3428 RES[pi->res_word],
3429 pi->followup, PIPE[pi->followup]
3430 );
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003431 prn = 0;
3432 while (prn < pi->num_cmds) {
3433 struct command *command = &pi->cmds[prn];
3434 char **argv = command->argv;
3435
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003436 fdprintf(2, "%*s cmd %d assignment_cnt:%d",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003437 lvl*2, "", prn,
3438 command->assignment_cnt);
Denys Vlasenko5807e182018-02-08 19:19:04 +01003439#if ENABLE_HUSH_LINENO_VAR
3440 fdprintf(2, " LINENO:%u", command->lineno);
3441#endif
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003442 if (command->group) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003443 fdprintf(2, " group %s: (argv=%p)%s%s\n",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003444 CMDTYPE[command->cmd_type],
3445 argv
3446# if !BB_MMU
3447 , " group_as_string:", command->group_as_string
3448# else
3449 , "", ""
3450# endif
3451 );
3452 debug_print_tree(command->group, lvl+1);
3453 prn++;
3454 continue;
3455 }
3456 if (argv) while (*argv) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003457 fdprintf(2, " '%s'", *argv);
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003458 argv++;
3459 }
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003460 fdprintf(2, "\n");
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003461 prn++;
3462 }
3463 pi = pi->next;
3464 pin++;
3465 }
3466}
3467#endif /* debug_print_tree */
3468
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00003469static struct pipe *new_pipe(void)
3470{
Eric Andersen25f27032001-04-26 23:22:31 +00003471 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003472 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003473 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00003474 return pi;
3475}
3476
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003477/* Command (member of a pipe) is complete, or we start a new pipe
3478 * if ctx->command is NULL.
3479 * No errors possible here.
3480 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003481static int done_command(struct parse_context *ctx)
3482{
3483 /* The command is really already in the pipe structure, so
3484 * advance the pipe counter and make a new, null command. */
3485 struct pipe *pi = ctx->pipe;
3486 struct command *command = ctx->command;
3487
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02003488#if 0 /* Instead we emit error message at run time */
3489 if (ctx->pending_redirect) {
3490 /* For example, "cmd >" (no filename to redirect to) */
Denys Vlasenko39701202017-08-02 19:44:05 +02003491 syntax_error("invalid redirect");
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02003492 ctx->pending_redirect = NULL;
3493 }
3494#endif
3495
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003496 if (command) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003497 if (IS_NULL_CMD(command)) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003498 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003499 goto clear_and_ret;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003500 }
3501 pi->num_cmds++;
3502 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003503 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003504 } else {
3505 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
3506 }
3507
3508 /* Only real trickiness here is that the uncommitted
3509 * command structure is not counted in pi->num_cmds. */
3510 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003511 ctx->command = command = &pi->cmds[pi->num_cmds];
3512 clear_and_ret:
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003513 memset(command, 0, sizeof(*command));
Denys Vlasenko5807e182018-02-08 19:19:04 +01003514#if ENABLE_HUSH_LINENO_VAR
Denys Vlasenko6aad1dd2018-01-19 15:37:04 +01003515 command->lineno = G.lineno;
Denys Vlasenko5807e182018-02-08 19:19:04 +01003516 debug_printf_parse("command->lineno = G.lineno (%u)\n", G.lineno);
Denys Vlasenko6aad1dd2018-01-19 15:37:04 +01003517#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003518 return pi->num_cmds; /* used only for 0/nonzero check */
3519}
3520
3521static void done_pipe(struct parse_context *ctx, pipe_style type)
3522{
3523 int not_null;
3524
3525 debug_printf_parse("done_pipe entered, followup %d\n", type);
3526 /* Close previous command */
3527 not_null = done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003528#if HAS_KEYWORDS
3529 ctx->pipe->pi_inverted = ctx->ctx_inverted;
3530 ctx->ctx_inverted = 0;
3531 ctx->pipe->res_word = ctx->ctx_res_w;
3532#endif
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02003533 if (type == PIPE_BG && ctx->list_head != ctx->pipe) {
3534 /* Necessary since && and || have precedence over &:
Denys Vlasenkoee553b92017-07-15 22:51:55 +02003535 * "cmd1 && cmd2 &" must spawn both cmds, not only cmd2,
3536 * in a backgrounded subshell.
3537 */
3538 struct pipe *pi;
3539 struct command *command;
3540
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02003541 /* Is this actually this construct, all pipes end with && or ||? */
Denys Vlasenkoee553b92017-07-15 22:51:55 +02003542 pi = ctx->list_head;
3543 while (pi != ctx->pipe) {
3544 if (pi->followup != PIPE_AND && pi->followup != PIPE_OR)
3545 goto no_conv;
3546 pi = pi->next;
3547 }
3548
3549 debug_printf_parse("BG with more than one pipe, converting to { p1 &&...pN; } &\n");
3550 pi->followup = PIPE_SEQ; /* close pN _not_ with "&"! */
3551 pi = xzalloc(sizeof(*pi));
3552 pi->followup = PIPE_BG;
3553 pi->num_cmds = 1;
3554 pi->cmds = xzalloc(sizeof(pi->cmds[0]));
3555 command = &pi->cmds[0];
3556 if (CMD_NORMAL != 0) /* "if xzalloc didn't do that already" */
3557 command->cmd_type = CMD_NORMAL;
3558 command->group = ctx->list_head;
3559#if !BB_MMU
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02003560 command->group_as_string = xstrndup(
3561 ctx->as_string.data,
3562 ctx->as_string.length - 1 /* do not copy last char, "&" */
3563 );
Denys Vlasenkoee553b92017-07-15 22:51:55 +02003564#endif
3565 /* Replace all pipes in ctx with one newly created */
3566 ctx->list_head = ctx->pipe = pi;
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02003567 } else {
3568 no_conv:
3569 ctx->pipe->followup = type;
Denys Vlasenkoee553b92017-07-15 22:51:55 +02003570 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003571
3572 /* Without this check, even just <enter> on command line generates
3573 * tree of three NOPs (!). Which is harmless but annoying.
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003574 * IOW: it is safe to do it unconditionally. */
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003575 if (not_null
Denis Vlasenko7f959372009-04-14 08:06:59 +00003576#if ENABLE_HUSH_IF
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003577 || ctx->ctx_res_w == RES_FI
Denis Vlasenko7f959372009-04-14 08:06:59 +00003578#endif
3579#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003580 || ctx->ctx_res_w == RES_DONE
3581 || ctx->ctx_res_w == RES_FOR
3582 || ctx->ctx_res_w == RES_IN
Denis Vlasenko7f959372009-04-14 08:06:59 +00003583#endif
3584#if ENABLE_HUSH_CASE
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003585 || ctx->ctx_res_w == RES_ESAC
3586#endif
3587 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003588 struct pipe *new_p;
3589 debug_printf_parse("done_pipe: adding new pipe: "
3590 "not_null:%d ctx->ctx_res_w:%d\n",
3591 not_null, ctx->ctx_res_w);
3592 new_p = new_pipe();
3593 ctx->pipe->next = new_p;
3594 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003595 /* RES_THEN, RES_DO etc are "sticky" -
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003596 * they remain set for pipes inside if/while.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003597 * This is used to control execution.
3598 * RES_FOR and RES_IN are NOT sticky (needed to support
3599 * cases where variable or value happens to match a keyword):
3600 */
3601#if ENABLE_HUSH_LOOPS
3602 if (ctx->ctx_res_w == RES_FOR
3603 || ctx->ctx_res_w == RES_IN)
3604 ctx->ctx_res_w = RES_NONE;
3605#endif
3606#if ENABLE_HUSH_CASE
3607 if (ctx->ctx_res_w == RES_MATCH)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003608 ctx->ctx_res_w = RES_CASE_BODY;
3609 if (ctx->ctx_res_w == RES_CASE)
3610 ctx->ctx_res_w = RES_CASE_IN;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003611#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003612 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003613 /* Create the memory for command, roughly:
3614 * ctx->pipe->cmds = new struct command;
3615 * ctx->command = &ctx->pipe->cmds[0];
3616 */
3617 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003618 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003619 }
3620 debug_printf_parse("done_pipe return\n");
3621}
3622
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003623static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003624{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003625 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00003626 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003627 /* Create the memory for command, roughly:
3628 * ctx->pipe->cmds = new struct command;
3629 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003630 */
3631 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00003632}
3633
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003634/* If a reserved word is found and processed, parse context is modified
3635 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00003636 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003637#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003638struct reserved_combo {
3639 char literal[6];
3640 unsigned char res;
3641 unsigned char assignment_flag;
3642 int flag;
3643};
3644enum {
3645 FLAG_END = (1 << RES_NONE ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003646# if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003647 FLAG_IF = (1 << RES_IF ),
3648 FLAG_THEN = (1 << RES_THEN ),
3649 FLAG_ELIF = (1 << RES_ELIF ),
3650 FLAG_ELSE = (1 << RES_ELSE ),
3651 FLAG_FI = (1 << RES_FI ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003652# endif
3653# if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003654 FLAG_FOR = (1 << RES_FOR ),
3655 FLAG_WHILE = (1 << RES_WHILE),
3656 FLAG_UNTIL = (1 << RES_UNTIL),
3657 FLAG_DO = (1 << RES_DO ),
3658 FLAG_DONE = (1 << RES_DONE ),
3659 FLAG_IN = (1 << RES_IN ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003660# endif
3661# if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003662 FLAG_MATCH = (1 << RES_MATCH),
3663 FLAG_ESAC = (1 << RES_ESAC ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003664# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003665 FLAG_START = (1 << RES_XXXX ),
3666};
3667
3668static const struct reserved_combo* match_reserved_word(o_string *word)
3669{
Eric Andersen25f27032001-04-26 23:22:31 +00003670 /* Mostly a list of accepted follow-up reserved words.
3671 * FLAG_END means we are done with the sequence, and are ready
3672 * to turn the compound list into a command.
3673 * FLAG_START means the word must start a new compound list.
3674 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003675 static const struct reserved_combo reserved_list[] = {
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003676# if ENABLE_HUSH_IF
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003677 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
3678 { "if", RES_IF, MAYBE_ASSIGNMENT, FLAG_THEN | FLAG_START },
3679 { "then", RES_THEN, MAYBE_ASSIGNMENT, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
3680 { "elif", RES_ELIF, MAYBE_ASSIGNMENT, FLAG_THEN },
3681 { "else", RES_ELSE, MAYBE_ASSIGNMENT, FLAG_FI },
3682 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003683# endif
3684# if ENABLE_HUSH_LOOPS
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003685 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
3686 { "while", RES_WHILE, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START },
3687 { "until", RES_UNTIL, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START },
3688 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
3689 { "do", RES_DO, MAYBE_ASSIGNMENT, FLAG_DONE },
3690 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003691# endif
3692# if ENABLE_HUSH_CASE
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003693 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
3694 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003695# endif
Eric Andersen25f27032001-04-26 23:22:31 +00003696 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003697 const struct reserved_combo *r;
3698
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02003699 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003700 if (strcmp(word->data, r->literal) == 0)
3701 return r;
3702 }
3703 return NULL;
3704}
Denys Vlasenko5807e182018-02-08 19:19:04 +01003705/* Return NULL: not a keyword, else: keyword
Denis Vlasenkobb929512009-04-16 10:59:40 +00003706 */
Denys Vlasenko5807e182018-02-08 19:19:04 +01003707static const struct reserved_combo* reserved_word(o_string *word, struct parse_context *ctx)
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003708{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003709# if ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003710 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003711 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003712 };
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003713# endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003714 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003715
Denys Vlasenko38292b62010-09-05 14:49:40 +02003716 if (word->has_quoted_part)
Denis Vlasenkobb929512009-04-16 10:59:40 +00003717 return 0;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003718 r = match_reserved_word(word);
3719 if (!r)
Denys Vlasenko5807e182018-02-08 19:19:04 +01003720 return r; /* NULL */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003721
3722 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003723# if ENABLE_HUSH_CASE
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003724 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE_IN) {
3725 /* "case word IN ..." - IN part starts first MATCH part */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003726 r = &reserved_match;
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003727 } else
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003728# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003729 if (r->flag == 0) { /* '!' */
3730 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003731 syntax_error("! ! command");
Denis Vlasenkobb929512009-04-16 10:59:40 +00003732 ctx->ctx_res_w = RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00003733 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003734 ctx->ctx_inverted = 1;
Denys Vlasenko5807e182018-02-08 19:19:04 +01003735 return r;
Eric Andersen25f27032001-04-26 23:22:31 +00003736 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003737 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003738 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003739
Denys Vlasenko9e55a152017-07-10 10:01:12 +02003740 old = xmemdup(ctx, sizeof(*ctx));
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003741 debug_printf_parse("push stack %p\n", old);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003742 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003743 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003744 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003745 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003746 ctx->ctx_res_w = RES_SNTX;
Denys Vlasenko5807e182018-02-08 19:19:04 +01003747 return r;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003748 } else {
3749 /* "{...} fi" is ok. "{...} if" is not
3750 * Example:
3751 * if { echo foo; } then { echo bar; } fi */
3752 if (ctx->command->group)
3753 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003754 }
Denis Vlasenkobb929512009-04-16 10:59:40 +00003755
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003756 ctx->ctx_res_w = r->res;
3757 ctx->old_flag = r->flag;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003758 word->o_assignment = r->assignment_flag;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003759 debug_printf_parse("word->o_assignment='%s'\n", assignment_flag[word->o_assignment]);
Denis Vlasenkobb929512009-04-16 10:59:40 +00003760
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003761 if (ctx->old_flag & FLAG_END) {
3762 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003763
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003764 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003765 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003766 old = ctx->stack;
3767 old->command->group = ctx->list_head;
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003768 old->command->cmd_type = CMD_NORMAL;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003769# if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02003770 /* At this point, the compound command's string is in
3771 * ctx->as_string... except for the leading keyword!
3772 * Consider this example: "echo a | if true; then echo a; fi"
3773 * ctx->as_string will contain "true; then echo a; fi",
3774 * with "if " remaining in old->as_string!
3775 */
3776 {
3777 char *str;
3778 int len = old->as_string.length;
3779 /* Concatenate halves */
3780 o_addstr(&old->as_string, ctx->as_string.data);
3781 o_free_unsafe(&ctx->as_string);
3782 /* Find where leading keyword starts in first half */
3783 str = old->as_string.data + len;
3784 if (str > old->as_string.data)
3785 str--; /* skip whitespace after keyword */
3786 while (str > old->as_string.data && isalpha(str[-1]))
3787 str--;
3788 /* Ugh, we're done with this horrid hack */
3789 old->command->group_as_string = xstrdup(str);
3790 debug_printf_parse("pop, remembering as:'%s'\n",
3791 old->command->group_as_string);
3792 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003793# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003794 *ctx = *old; /* physical copy */
3795 free(old);
3796 }
Denys Vlasenko5807e182018-02-08 19:19:04 +01003797 return r;
Eric Andersen25f27032001-04-26 23:22:31 +00003798}
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003799#endif /* HAS_KEYWORDS */
Eric Andersen25f27032001-04-26 23:22:31 +00003800
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003801/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003802 * Normal return is 0. Syntax errors return 1.
3803 * Note: on return, word is reset, but not o_free'd!
3804 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003805static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003806{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003807 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00003808
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003809 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denys Vlasenko38292b62010-09-05 14:49:40 +02003810 if (word->length == 0 && !word->has_quoted_part) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003811 debug_printf_parse("done_word return 0: true null, ignored\n");
3812 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003813 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003814
Eric Andersen25f27032001-04-26 23:22:31 +00003815 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003816 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
3817 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003818 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3819 * "2.7 Redirection
3820 * ...the word that follows the redirection operator
3821 * shall be subjected to tilde expansion, parameter expansion,
3822 * command substitution, arithmetic expansion, and quote
3823 * removal. Pathname expansion shall not be performed
3824 * on the word by a non-interactive shell; an interactive
3825 * shell may perform it, but shall do so only when
3826 * the expansion would result in one word."
3827 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003828 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003829 /* Cater for >\file case:
3830 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
3831 * Same with heredocs:
3832 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
3833 */
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003834 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC) {
3835 unbackslash(ctx->pending_redirect->rd_filename);
3836 /* Is it <<"HEREDOC"? */
Denys Vlasenko38292b62010-09-05 14:49:40 +02003837 if (word->has_quoted_part) {
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003838 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
3839 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003840 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003841 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003842 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003843 } else {
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003844#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003845# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00003846 if (ctx->ctx_dsemicolon
3847 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
3848 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003849 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003850 /* ctx->ctx_res_w = RES_MATCH; */
3851 ctx->ctx_dsemicolon = 0;
3852 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003853# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003854 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003855# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003856 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
3857 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003858# endif
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003859# if ENABLE_HUSH_CASE
3860 && ctx->ctx_res_w != RES_CASE
3861# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003862 ) {
Denys Vlasenko5807e182018-02-08 19:19:04 +01003863 const struct reserved_combo *reserved;
3864 reserved = reserved_word(word, ctx);
3865 debug_printf_parse("checking for reserved-ness: %d\n", !!reserved);
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003866 if (reserved) {
Denys Vlasenko5807e182018-02-08 19:19:04 +01003867# if ENABLE_HUSH_LINENO_VAR
3868/* Case:
3869 * "while ...; do
3870 * cmd ..."
3871 * If we don't close the pipe _now_, immediately after "do", lineno logic
3872 * sees "cmd" as starting at "do" - i.e., at the previous line.
3873 */
3874 if (0
3875 IF_HUSH_IF(|| reserved->res == RES_THEN)
3876 IF_HUSH_IF(|| reserved->res == RES_ELIF)
3877 IF_HUSH_IF(|| reserved->res == RES_ELSE)
3878 IF_HUSH_LOOPS(|| reserved->res == RES_DO)
3879 ) {
3880 done_pipe(ctx, PIPE_SEQ);
3881 }
3882# endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003883 o_reset_to_empty_unquoted(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003884 debug_printf_parse("done_word return %d\n",
3885 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003886 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003887 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01003888# if BASH_TEST2
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003889 if (strcmp(word->data, "[[") == 0) {
3890 command->cmd_type = CMD_SINGLEWORD_NOGLOB;
3891 }
3892 /* fall through */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02003893# endif
Eric Andersen25f27032001-04-26 23:22:31 +00003894 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003895#endif
Denis Vlasenkobb929512009-04-16 10:59:40 +00003896 if (command->group) {
3897 /* "{ echo foo; } echo bar" - bad */
3898 syntax_error_at(word->data);
3899 debug_printf_parse("done_word return 1: syntax error, "
3900 "groups and arglists don't mix\n");
3901 return 1;
3902 }
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003903
3904 /* If this word wasn't an assignment, next ones definitely
3905 * can't be assignments. Even if they look like ones. */
3906 if (word->o_assignment != DEFINITELY_ASSIGNMENT
3907 && word->o_assignment != WORD_IS_KEYWORD
3908 ) {
3909 word->o_assignment = NOT_ASSIGNMENT;
3910 } else {
3911 if (word->o_assignment == DEFINITELY_ASSIGNMENT) {
3912 command->assignment_cnt++;
3913 debug_printf_parse("++assignment_cnt=%d\n", command->assignment_cnt);
3914 }
3915 debug_printf_parse("word->o_assignment was:'%s'\n", assignment_flag[word->o_assignment]);
3916 word->o_assignment = MAYBE_ASSIGNMENT;
3917 }
3918 debug_printf_parse("word->o_assignment='%s'\n", assignment_flag[word->o_assignment]);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003919 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003920 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003921 }
Eric Andersen25f27032001-04-26 23:22:31 +00003922
Denis Vlasenko06810332007-05-21 23:30:54 +00003923#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003924 if (ctx->ctx_res_w == RES_FOR) {
Denys Vlasenko38292b62010-09-05 14:49:40 +02003925 if (word->has_quoted_part
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003926 || !is_well_formed_var_name(command->argv[0], '\0')
3927 ) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003928 /* bash says just "not a valid identifier" */
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003929 syntax_error("not a valid identifier in for");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003930 return 1;
3931 }
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003932 /* Force FOR to have just one word (variable name) */
3933 /* NB: basically, this makes hush see "for v in ..."
3934 * syntax as if it is "for v; in ...". FOR and IN become
3935 * two pipe structs in parse tree. */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003936 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003937 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003938#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003939#if ENABLE_HUSH_CASE
3940 /* Force CASE to have just one word */
3941 if (ctx->ctx_res_w == RES_CASE) {
3942 done_pipe(ctx, PIPE_SEQ);
3943 }
3944#endif
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003945
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003946 o_reset_to_empty_unquoted(word);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003947
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003948 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003949 return 0;
3950}
3951
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003952
3953/* Peek ahead in the input to find out if we have a "&n" construct,
3954 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003955 * Return:
3956 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
3957 * REDIRFD_SYNTAX_ERR if syntax error,
3958 * REDIRFD_TO_FILE if no & was seen,
3959 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003960 */
3961#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003962#define parse_redir_right_fd(as_string, input) \
3963 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003964#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003965static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003966{
3967 int ch, d, ok;
3968
3969 ch = i_peek(input);
3970 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003971 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003972
3973 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003974 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003975 ch = i_peek(input);
3976 if (ch == '-') {
3977 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003978 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003979 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003980 }
3981 d = 0;
3982 ok = 0;
3983 while (ch != EOF && isdigit(ch)) {
3984 d = d*10 + (ch-'0');
3985 ok = 1;
3986 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003987 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003988 ch = i_peek(input);
3989 }
3990 if (ok) return d;
3991
3992//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
3993
3994 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003995 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003996}
3997
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003998/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003999 */
4000static int parse_redirect(struct parse_context *ctx,
4001 int fd,
4002 redir_type style,
4003 struct in_str *input)
4004{
4005 struct command *command = ctx->command;
4006 struct redir_struct *redir;
4007 struct redir_struct **redirp;
4008 int dup_num;
4009
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004010 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004011 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004012 /* Check for a '>&1' type redirect */
4013 dup_num = parse_redir_right_fd(&ctx->as_string, input);
4014 if (dup_num == REDIRFD_SYNTAX_ERR)
4015 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004016 } else {
4017 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004018 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004019 if (dup_num) { /* <<-... */
4020 ch = i_getch(input);
4021 nommu_addchr(&ctx->as_string, ch);
4022 ch = i_peek(input);
4023 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004024 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004025
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004026 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004027 int ch = i_peek(input);
4028 if (ch == '|') {
4029 /* >|FILE redirect ("clobbering" >).
4030 * Since we do not support "set -o noclobber" yet,
4031 * >| and > are the same for now. Just eat |.
4032 */
4033 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004034 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004035 }
4036 }
4037
4038 /* Create a new redir_struct and append it to the linked list */
4039 redirp = &command->redirects;
4040 while ((redir = *redirp) != NULL) {
4041 redirp = &(redir->next);
4042 }
4043 *redirp = redir = xzalloc(sizeof(*redir));
4044 /* redir->next = NULL; */
4045 /* redir->rd_filename = NULL; */
4046 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004047 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004048
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004049 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
4050 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004051
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004052 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004053 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004054 /* Erik had a check here that the file descriptor in question
4055 * is legit; I postpone that to "run time"
4056 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004057 debug_printf_parse("duplicating redirect '%d>&%d'\n",
4058 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004059 } else {
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02004060#if 0 /* Instead we emit error message at run time */
4061 if (ctx->pending_redirect) {
4062 /* For example, "cmd > <file" */
Denys Vlasenko39701202017-08-02 19:44:05 +02004063 syntax_error("invalid redirect");
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02004064 }
4065#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004066 /* Set ctx->pending_redirect, so we know what to do at the
4067 * end of the next parsed word. */
4068 ctx->pending_redirect = redir;
4069 }
4070 return 0;
4071}
4072
Eric Andersen25f27032001-04-26 23:22:31 +00004073/* If a redirect is immediately preceded by a number, that number is
4074 * supposed to tell which file descriptor to redirect. This routine
4075 * looks for such preceding numbers. In an ideal world this routine
4076 * needs to handle all the following classes of redirects...
4077 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
4078 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
4079 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
4080 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004081 *
4082 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4083 * "2.7 Redirection
4084 * ... If n is quoted, the number shall not be recognized as part of
4085 * the redirection expression. For example:
4086 * echo \2>a
4087 * writes the character 2 into file a"
Denys Vlasenko38292b62010-09-05 14:49:40 +02004088 * We are getting it right by setting ->has_quoted_part on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004089 *
4090 * A -1 return means no valid number was found,
4091 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00004092 */
4093static int redirect_opt_num(o_string *o)
4094{
4095 int num;
4096
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004097 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004098 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004099 num = bb_strtou(o->data, NULL, 10);
4100 if (errno || num < 0)
4101 return -1;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004102 o_reset_to_empty_unquoted(o);
Eric Andersen25f27032001-04-26 23:22:31 +00004103 return num;
4104}
4105
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004106#if BB_MMU
4107#define fetch_till_str(as_string, input, word, skip_tabs) \
4108 fetch_till_str(input, word, skip_tabs)
4109#endif
4110static char *fetch_till_str(o_string *as_string,
4111 struct in_str *input,
4112 const char *word,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02004113 int heredoc_flags)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004114{
4115 o_string heredoc = NULL_O_STRING;
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004116 unsigned past_EOL;
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02004117 int prev = 0; /* not \ */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004118 int ch;
4119
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004120 goto jump_in;
Denys Vlasenkob8709032011-05-08 21:20:01 +02004121
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004122 while (1) {
4123 ch = i_getch(input);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004124 if (ch != EOF)
4125 nommu_addchr(as_string, ch);
Denys Vlasenko0f018b32017-07-29 20:43:26 +02004126 if (ch == '\n' || ch == EOF) {
4127 check_heredoc_end:
4128 if ((heredoc_flags & HEREDOC_QUOTED) || prev != '\\') {
4129 if (strcmp(heredoc.data + past_EOL, word) == 0) {
4130 heredoc.data[past_EOL] = '\0';
4131 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
4132 return heredoc.data;
4133 }
4134 if (ch == '\n') {
4135 /* This is a new line.
4136 * Remember position and backslash-escaping status.
4137 */
4138 o_addchr(&heredoc, ch);
4139 prev = ch;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004140 jump_in:
Denys Vlasenko0f018b32017-07-29 20:43:26 +02004141 past_EOL = heredoc.length;
4142 /* Get 1st char of next line, possibly skipping leading tabs */
4143 do {
4144 ch = i_getch(input);
4145 if (ch != EOF)
4146 nommu_addchr(as_string, ch);
4147 } while ((heredoc_flags & HEREDOC_SKIPTABS) && ch == '\t');
4148 /* If this immediately ended the line,
4149 * go back to end-of-line checks.
4150 */
4151 if (ch == '\n')
4152 goto check_heredoc_end;
4153 }
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004154 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004155 }
4156 if (ch == EOF) {
4157 o_free_unsafe(&heredoc);
4158 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004159 }
4160 o_addchr(&heredoc, ch);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004161 nommu_addchr(as_string, ch);
Denys Vlasenkoc3adfac2010-09-06 11:46:03 +02004162 if (prev == '\\' && ch == '\\')
4163 /* Correctly handle foo\\<eol> (not a line cont.) */
4164 prev = 0; /* not \ */
4165 else
4166 prev = ch;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004167 }
4168}
4169
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004170/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
4171 * and load them all. There should be exactly heredoc_cnt of them.
4172 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004173static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
4174{
4175 struct pipe *pi = ctx->list_head;
4176
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004177 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004178 int i;
4179 struct command *cmd = pi->cmds;
4180
4181 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
4182 pi->num_cmds,
4183 cmd->argv ? cmd->argv[0] : "NONE");
4184 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004185 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004186
4187 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
4188 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004189 while (redir) {
4190 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004191 char *p;
4192
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004193 redir->rd_type = REDIRECT_HEREDOC2;
Denys Vlasenko764b2f02009-06-07 16:05:04 +02004194 /* redir->rd_dup is (ab)used to indicate <<- */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004195 p = fetch_till_str(&ctx->as_string, input,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02004196 redir->rd_filename, redir->rd_dup);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004197 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004198 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004199 return 1;
4200 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004201 free(redir->rd_filename);
4202 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004203 heredoc_cnt--;
4204 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004205 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004206 }
4207 cmd++;
4208 }
4209 pi = pi->next;
4210 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004211#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004212 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004213 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004214 bb_error_msg_and_die("heredoc BUG 2");
4215#endif
4216 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004217}
4218
4219
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004220static int run_list(struct pipe *pi);
4221#if BB_MMU
4222#define parse_stream(pstring, input, end_trigger) \
4223 parse_stream(input, end_trigger)
4224#endif
4225static struct pipe *parse_stream(char **pstring,
4226 struct in_str *input,
4227 int end_trigger);
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004228
Eric Andersen25f27032001-04-26 23:22:31 +00004229
Denys Vlasenkoc2704542009-11-20 19:14:19 +01004230#if !ENABLE_HUSH_FUNCTIONS
4231#define parse_group(dest, ctx, input, ch) \
4232 parse_group(ctx, input, ch)
4233#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004234static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00004235 struct in_str *input, int ch)
4236{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004237 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004238 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004239 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004240 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004241 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004242 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004243
4244 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004245#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko38292b62010-09-05 14:49:40 +02004246 if (ch == '(' && !dest->has_quoted_part) {
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004247 if (dest->length)
Denis Vlasenkobb929512009-04-16 10:59:40 +00004248 if (done_word(dest, ctx))
4249 return 1;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004250 if (!command->argv)
4251 goto skip; /* (... */
4252 if (command->argv[1]) { /* word word ... (... */
4253 syntax_error_unexpected_ch('(');
4254 return 1;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004255 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004256 /* it is "word(..." or "word (..." */
4257 do
4258 ch = i_getch(input);
4259 while (ch == ' ' || ch == '\t');
4260 if (ch != ')') {
4261 syntax_error_unexpected_ch(ch);
4262 return 1;
4263 }
4264 nommu_addchr(&ctx->as_string, ch);
4265 do
4266 ch = i_getch(input);
4267 while (ch == ' ' || ch == '\t' || ch == '\n');
4268 if (ch != '{') {
4269 syntax_error_unexpected_ch(ch);
4270 return 1;
4271 }
4272 nommu_addchr(&ctx->as_string, ch);
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004273 command->cmd_type = CMD_FUNCDEF;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004274 goto skip;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004275 }
4276#endif
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004277
4278#if 0 /* Prevented by caller */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004279 if (command->argv /* word [word]{... */
4280 || dest->length /* word{... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004281 || dest->has_quoted_part /* ""{... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004282 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004283 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004284 debug_printf_parse("parse_group return 1: "
4285 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004286 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004287 }
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004288#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004289
4290#if ENABLE_HUSH_FUNCTIONS
4291 skip:
4292#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00004293 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004294 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00004295 endch = ')';
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004296 command->cmd_type = CMD_SUBSHELL;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004297 } else {
4298 /* bash does not allow "{echo...", requires whitespace */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004299 ch = i_peek(input);
4300 if (ch != ' ' && ch != '\t' && ch != '\n'
4301 && ch != '(' /* but "{(..." is allowed (without whitespace) */
4302 ) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004303 syntax_error_unexpected_ch(ch);
4304 return 1;
4305 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004306 if (ch != '(') {
4307 ch = i_getch(input);
4308 nommu_addchr(&ctx->as_string, ch);
4309 }
Eric Andersen25f27032001-04-26 23:22:31 +00004310 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004311
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004312 {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004313#if BB_MMU
4314# define as_string NULL
4315#else
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004316 char *as_string = NULL;
4317#endif
4318 pipe_list = parse_stream(&as_string, input, endch);
4319#if !BB_MMU
4320 if (as_string)
4321 o_addstr(&ctx->as_string, as_string);
4322#endif
4323 /* empty ()/{} or parse error? */
4324 if (!pipe_list || pipe_list == ERR_PTR) {
Denis Vlasenkobb929512009-04-16 10:59:40 +00004325 /* parse_stream already emitted error msg */
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004326 if (!BB_MMU)
4327 free(as_string);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004328 debug_printf_parse("parse_group return 1: "
4329 "parse_stream returned %p\n", pipe_list);
4330 return 1;
4331 }
4332 command->group = pipe_list;
4333#if !BB_MMU
4334 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
4335 command->group_as_string = as_string;
4336 debug_printf_parse("end of group, remembering as:'%s'\n",
4337 command->group_as_string);
4338#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004339#undef as_string
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004340 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004341 debug_printf_parse("parse_group return 0\n");
4342 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004343 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00004344}
4345
Denys Vlasenko46e64982016-09-29 19:50:55 +02004346static int i_getch_and_eat_bkslash_nl(struct in_str *input)
4347{
4348 for (;;) {
4349 int ch, ch2;
4350
4351 ch = i_getch(input);
4352 if (ch != '\\')
4353 return ch;
4354 ch2 = i_peek(input);
4355 if (ch2 != '\n')
4356 return ch;
4357 /* backslash+newline, skip it */
4358 i_getch(input);
4359 }
4360}
4361
Denys Vlasenko657086a2016-09-29 18:07:42 +02004362static int i_peek_and_eat_bkslash_nl(struct in_str *input)
4363{
4364 for (;;) {
4365 int ch, ch2;
4366
4367 ch = i_peek(input);
4368 if (ch != '\\')
4369 return ch;
4370 ch2 = i_peek2(input);
4371 if (ch2 != '\n')
4372 return ch;
4373 /* backslash+newline, skip it */
4374 i_getch(input);
4375 i_getch(input);
4376 }
4377}
4378
Denys Vlasenko0b883582016-12-23 16:49:07 +01004379#if ENABLE_HUSH_TICK || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_DOLLAR_OPS
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004380/* Subroutines for copying $(...) and `...` things */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004381static int add_till_backquote(o_string *dest, struct in_str *input, int in_dquote);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004382/* '...' */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004383static int add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004384{
4385 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004386 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004387 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004388 syntax_error_unterm_ch('\'');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004389 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004390 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004391 if (ch == '\'')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004392 return 1;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004393 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004394 }
4395}
4396/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004397static int add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004398{
4399 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004400 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004401 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004402 syntax_error_unterm_ch('"');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004403 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004404 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004405 if (ch == '"')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004406 return 1;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004407 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004408 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004409 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004410 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004411 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004412 if (ch == '`') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004413 if (!add_till_backquote(dest, input, /*in_dquote:*/ 1))
4414 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004415 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004416 continue;
4417 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00004418 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004419 }
4420}
4421/* Process `cmd` - copy contents until "`" is seen. Complicated by
4422 * \` quoting.
4423 * "Within the backquoted style of command substitution, backslash
4424 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
4425 * The search for the matching backquote shall be satisfied by the first
4426 * backquote found without a preceding backslash; during this search,
4427 * if a non-escaped backquote is encountered within a shell comment,
4428 * a here-document, an embedded command substitution of the $(command)
4429 * form, or a quoted string, undefined results occur. A single-quoted
4430 * or double-quoted string that begins, but does not end, within the
4431 * "`...`" sequence produces undefined results."
4432 * Example Output
4433 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
4434 */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004435static int add_till_backquote(o_string *dest, struct in_str *input, int in_dquote)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004436{
4437 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004438 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004439 if (ch == '`')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004440 return 1;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004441 if (ch == '\\') {
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02004442 /* \x. Copy both unless it is \`, \$, \\ and maybe \" */
4443 ch = i_getch(input);
4444 if (ch != '`'
4445 && ch != '$'
4446 && ch != '\\'
4447 && (!in_dquote || ch != '"')
4448 ) {
4449 o_addchr(dest, '\\');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004450 }
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02004451 }
4452 if (ch == EOF) {
4453 syntax_error_unterm_ch('`');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004454 return 0;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004455 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004456 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004457 }
4458}
4459/* Process $(cmd) - copy contents until ")" is seen. Complicated by
4460 * quoting and nested ()s.
4461 * "With the $(command) style of command substitution, all characters
4462 * following the open parenthesis to the matching closing parenthesis
4463 * constitute the command. Any valid shell script can be used for command,
4464 * except a script consisting solely of redirections which produces
4465 * unspecified results."
4466 * Example Output
4467 * echo $(echo '(TEST)' BEST) (TEST) BEST
4468 * echo $(echo 'TEST)' BEST) TEST) BEST
4469 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
Denys Vlasenko74369502010-05-21 19:52:01 +02004470 *
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004471 * Also adapted to eat ${var%...} and $((...)) constructs, since ... part
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004472 * can contain arbitrary constructs, just like $(cmd).
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004473 * In bash compat mode, it needs to also be able to stop on ':' or '/'
4474 * for ${var:N[:M]} and ${var/P[/R]} parsing.
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004475 */
Denys Vlasenko74369502010-05-21 19:52:01 +02004476#define DOUBLE_CLOSE_CHAR_FLAG 0x80
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004477static int add_till_closing_bracket(o_string *dest, struct in_str *input, unsigned end_ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004478{
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004479 int ch;
Denys Vlasenko74369502010-05-21 19:52:01 +02004480 char dbl = end_ch & DOUBLE_CLOSE_CHAR_FLAG;
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004481# if BASH_SUBSTR || BASH_PATTERN_SUBST
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004482 char end_char2 = end_ch >> 8;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004483# endif
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004484 end_ch &= (DOUBLE_CLOSE_CHAR_FLAG - 1);
4485
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004486 while (1) {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004487 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004488 if (ch == EOF) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004489 syntax_error_unterm_ch(end_ch);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004490 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004491 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004492 if (ch == end_ch
4493# if BASH_SUBSTR || BASH_PATTERN_SUBST
Denys Vlasenko55f81332018-03-02 18:12:12 +01004494 || ch == end_char2
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004495# endif
4496 ) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004497 if (!dbl)
4498 break;
4499 /* we look for closing )) of $((EXPR)) */
Denys Vlasenko657086a2016-09-29 18:07:42 +02004500 if (i_peek_and_eat_bkslash_nl(input) == end_ch) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004501 i_getch(input); /* eat second ')' */
4502 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004503 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004504 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004505 o_addchr(dest, ch);
Denys Vlasenkod4802c62018-03-02 20:48:36 +01004506 //bb_error_msg("%s:o_addchr('%c')", __func__, ch);
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004507 if (ch == '(' || ch == '{') {
4508 ch = (ch == '(' ? ')' : '}');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004509 if (!add_till_closing_bracket(dest, input, ch))
4510 return 0;
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004511 o_addchr(dest, ch);
4512 continue;
4513 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004514 if (ch == '\'') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004515 if (!add_till_single_quote(dest, input))
4516 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004517 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004518 continue;
4519 }
4520 if (ch == '"') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004521 if (!add_till_double_quote(dest, input))
4522 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004523 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004524 continue;
4525 }
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004526 if (ch == '`') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004527 if (!add_till_backquote(dest, input, /*in_dquote:*/ 0))
4528 return 0;
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004529 o_addchr(dest, ch);
4530 continue;
4531 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004532 if (ch == '\\') {
4533 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004534 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004535 if (ch == EOF) {
Denys Vlasenkod4802c62018-03-02 20:48:36 +01004536 syntax_error_unterm_ch(end_ch);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004537 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004538 }
Denys Vlasenko657086a2016-09-29 18:07:42 +02004539#if 0
4540 if (ch == '\n') {
4541 /* "backslash+newline", ignore both */
4542 o_delchr(dest); /* undo insertion of '\' */
4543 continue;
4544 }
4545#endif
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004546 o_addchr(dest, ch);
Denys Vlasenkod4802c62018-03-02 20:48:36 +01004547 //bb_error_msg("%s:o_addchr('%c') after '\\'", __func__, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004548 continue;
4549 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004550 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004551 return ch;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004552}
Denys Vlasenko0b883582016-12-23 16:49:07 +01004553#endif /* ENABLE_HUSH_TICK || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_DOLLAR_OPS */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004554
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004555/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004556#if BB_MMU
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004557#define parse_dollar(as_string, dest, input, quote_mask) \
4558 parse_dollar(dest, input, quote_mask)
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004559#define as_string NULL
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004560#endif
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004561static int parse_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004562 o_string *dest,
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004563 struct in_str *input, unsigned char quote_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00004564{
Denys Vlasenko657086a2016-09-29 18:07:42 +02004565 int ch = i_peek_and_eat_bkslash_nl(input); /* first character after the $ */
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004566
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004567 debug_printf_parse("parse_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004568 if (isalpha(ch)) {
Denys Vlasenko0ca31982018-01-25 13:20:50 +01004569 make_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004570 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004571 nommu_addchr(as_string, ch);
Denys Vlasenko0ca31982018-01-25 13:20:50 +01004572 /*make_var1:*/
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004573 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004574 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004575 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004576 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004577 quote_mask = 0;
Denys Vlasenko657086a2016-09-29 18:07:42 +02004578 ch = i_peek_and_eat_bkslash_nl(input);
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004579 if (!isalnum(ch) && ch != '_') {
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004580 /* End of variable name reached */
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004581 break;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004582 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004583 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004584 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004585 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004586 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004587 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004588 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004589 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004590 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004591 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004592 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004593 o_addchr(dest, ch | quote_mask);
4594 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004595 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004596 case '$': /* pid */
4597 case '!': /* last bg pid */
4598 case '?': /* last exit code */
4599 case '#': /* number of args */
4600 case '*': /* args */
4601 case '@': /* args */
4602 goto make_one_char_var;
4603 case '{': {
Denys Vlasenko2093ad22017-07-26 00:07:27 +02004604 char len_single_ch;
4605
Mike Frysingeref3e7fd2009-06-01 14:13:39 -04004606 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4607
Denys Vlasenko74369502010-05-21 19:52:01 +02004608 ch = i_getch(input); /* eat '{' */
4609 nommu_addchr(as_string, ch);
4610
Denys Vlasenko46e64982016-09-29 19:50:55 +02004611 ch = i_getch_and_eat_bkslash_nl(input); /* first char after '{' */
Denys Vlasenko74369502010-05-21 19:52:01 +02004612 /* It should be ${?}, or ${#var},
4613 * or even ${?+subst} - operator acting on a special variable,
4614 * or the beginning of variable name.
4615 */
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004616 if (ch == EOF
4617 || (!strchr(_SPECIAL_VARS_STR, ch) && !isalnum(ch)) /* not one of those */
4618 ) {
Denys Vlasenko74369502010-05-21 19:52:01 +02004619 bad_dollar_syntax:
4620 syntax_error_unterm_str("${name}");
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004621 debug_printf_parse("parse_dollar return 0: unterminated ${name}\n");
4622 return 0;
Denys Vlasenko74369502010-05-21 19:52:01 +02004623 }
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004624 nommu_addchr(as_string, ch);
Denys Vlasenko2093ad22017-07-26 00:07:27 +02004625 len_single_ch = ch;
Denys Vlasenko74369502010-05-21 19:52:01 +02004626 ch |= quote_mask;
4627
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004628 /* It's possible to just call add_till_closing_bracket() at this point.
Denys Vlasenko74369502010-05-21 19:52:01 +02004629 * However, this regresses some of our testsuite cases
4630 * which check invalid constructs like ${%}.
4631 * Oh well... let's check that the var name part is fine... */
4632
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004633 while (1) {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004634 unsigned pos;
4635
Denys Vlasenko74369502010-05-21 19:52:01 +02004636 o_addchr(dest, ch);
4637 debug_printf_parse(": '%c'\n", ch);
4638
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004639 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004640 nommu_addchr(as_string, ch);
Denys Vlasenko74369502010-05-21 19:52:01 +02004641 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00004642 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004643
Denys Vlasenko74369502010-05-21 19:52:01 +02004644 if (!isalnum(ch) && ch != '_') {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004645 unsigned end_ch;
4646 unsigned char last_ch;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004647 /* handle parameter expansions
4648 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
4649 */
Denys Vlasenko2093ad22017-07-26 00:07:27 +02004650 if (!strchr(VAR_SUBST_OPS, ch)) { /* ${var<bad_char>... */
4651 if (len_single_ch != '#'
4652 /*|| !strchr(SPECIAL_VARS_STR, ch) - disallow errors like ${#+} ? */
4653 || i_peek(input) != '}'
4654 ) {
4655 goto bad_dollar_syntax;
4656 }
4657 /* else: it's "length of C" ${#C} op,
4658 * where C is a single char
4659 * special var name, e.g. ${#!}.
4660 */
4661 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004662 /* Eat everything until closing '}' (or ':') */
4663 end_ch = '}';
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004664 if (BASH_SUBSTR
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004665 && ch == ':'
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004666 && !strchr(MINUS_PLUS_EQUAL_QUESTION, i_peek(input))
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004667 ) {
4668 /* It's ${var:N[:M]} thing */
4669 end_ch = '}' * 0x100 + ':';
4670 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004671 if (BASH_PATTERN_SUBST
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004672 && ch == '/'
4673 ) {
4674 /* It's ${var/[/]pattern[/repl]} thing */
4675 if (i_peek(input) == '/') { /* ${var//pattern[/repl]}? */
4676 i_getch(input);
4677 nommu_addchr(as_string, '/');
4678 ch = '\\';
4679 }
4680 end_ch = '}' * 0x100 + '/';
4681 }
4682 o_addchr(dest, ch);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004683 again:
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004684 if (!BB_MMU)
4685 pos = dest->length;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004686#if ENABLE_HUSH_DOLLAR_OPS
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004687 last_ch = add_till_closing_bracket(dest, input, end_ch);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004688 if (last_ch == 0) /* error? */
4689 return 0;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004690#else
4691#error Simple code to only allow ${var} is not implemented
4692#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004693 if (as_string) {
4694 o_addstr(as_string, dest->data + pos);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004695 o_addchr(as_string, last_ch);
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004696 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004697
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004698 if ((BASH_SUBSTR || BASH_PATTERN_SUBST)
4699 && (end_ch & 0xff00)
4700 ) {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004701 /* close the first block: */
4702 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004703 /* while parsing N from ${var:N[:M]}
4704 * or pattern from ${var/[/]pattern[/repl]} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004705 if ((end_ch & 0xff) == last_ch) {
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004706 /* got ':' or '/'- parse the rest */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004707 end_ch = '}';
4708 goto again;
4709 }
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004710 /* got '}' */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004711 if (BASH_SUBSTR && end_ch == '}' * 0x100 + ':') {
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004712 /* it's ${var:N} - emulate :999999999 */
4713 o_addstr(dest, "999999999");
4714 } /* else: it's ${var/[/]pattern} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004715 }
Denys Vlasenko74369502010-05-21 19:52:01 +02004716 break;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004717 }
Denys Vlasenko2093ad22017-07-26 00:07:27 +02004718 len_single_ch = 0; /* it can't be ${#C} op */
Denys Vlasenko74369502010-05-21 19:52:01 +02004719 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004720 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4721 break;
4722 }
Denys Vlasenko0b883582016-12-23 16:49:07 +01004723#if ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004724 case '(': {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004725 unsigned pos;
4726
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004727 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004728 nommu_addchr(as_string, ch);
Denys Vlasenko0b883582016-12-23 16:49:07 +01004729# if ENABLE_FEATURE_SH_MATH
Denys Vlasenko657086a2016-09-29 18:07:42 +02004730 if (i_peek_and_eat_bkslash_nl(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004731 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004732 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004733 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4734 o_addchr(dest, /*quote_mask |*/ '+');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004735 if (!BB_MMU)
4736 pos = dest->length;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004737 if (!add_till_closing_bracket(dest, input, ')' | DOUBLE_CLOSE_CHAR_FLAG))
4738 return 0; /* error */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004739 if (as_string) {
4740 o_addstr(as_string, dest->data + pos);
4741 o_addchr(as_string, ')');
4742 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004743 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004744 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004745 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004746 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004747# endif
4748# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004749 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4750 o_addchr(dest, quote_mask | '`');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004751 if (!BB_MMU)
4752 pos = dest->length;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004753 if (!add_till_closing_bracket(dest, input, ')'))
4754 return 0; /* error */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004755 if (as_string) {
4756 o_addstr(as_string, dest->data + pos);
Denys Vlasenkob70cef72010-01-12 13:45:45 +01004757 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004758 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004759 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004760# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004761 break;
4762 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004763#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004764 case '_':
Denys Vlasenko0ca31982018-01-25 13:20:50 +01004765 goto make_var;
4766#if 0
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02004767 /* TODO: $_ and $-: */
4768 /* $_ Shell or shell script name; or last argument of last command
4769 * (if last command wasn't a pipe; if it was, bash sets $_ to "");
4770 * but in command's env, set to full pathname used to invoke it */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004771 /* $- Option flags set by set builtin or shell options (-i etc) */
Denys Vlasenko0ca31982018-01-25 13:20:50 +01004772 ch = i_getch(input);
4773 nommu_addchr(as_string, ch);
4774 ch = i_peek_and_eat_bkslash_nl(input);
4775 if (isalnum(ch)) { /* it's $_name or $_123 */
4776 ch = '_';
4777 goto make_var1;
4778 }
4779 /* else: it's $_ */
4780#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004781 default:
4782 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00004783 }
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004784 debug_printf_parse("parse_dollar return 1 (ok)\n");
4785 return 1;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004786#undef as_string
Eric Andersen25f27032001-04-26 23:22:31 +00004787}
4788
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004789#if BB_MMU
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004790# if BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004791#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4792 encode_string(dest, input, dquote_end, process_bkslash)
4793# else
4794/* only ${var/pattern/repl} (its pattern part) needs additional mode */
4795#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4796 encode_string(dest, input, dquote_end)
4797# endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004798#define as_string NULL
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004799
4800#else /* !MMU */
4801
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004802# if BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004803/* all parameters are needed, no macro tricks */
4804# else
4805#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4806 encode_string(as_string, dest, input, dquote_end)
4807# endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004808#endif
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004809static int encode_string(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004810 o_string *dest,
4811 struct in_str *input,
Denys Vlasenko14e289b2010-09-10 10:15:18 +02004812 int dquote_end,
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004813 int process_bkslash)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004814{
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004815#if !BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004816 const int process_bkslash = 1;
4817#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004818 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004819 int next;
4820
4821 again:
4822 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004823 if (ch != EOF)
4824 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004825 if (ch == dquote_end) { /* may be only '"' or EOF */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004826 debug_printf_parse("encode_string return 1 (ok)\n");
4827 return 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004828 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004829 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004830 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004831 syntax_error_unterm_ch('"');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004832 return 0; /* error */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004833 }
4834 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004835 if (ch != '\n') {
4836 next = i_peek(input);
4837 }
Denys Vlasenkof37eb392009-10-18 11:46:35 +02004838 debug_printf_parse("\" ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004839 ch, ch, !!(dest->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004840 if (process_bkslash && ch == '\\') {
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004841 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004842 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004843 xfunc_die();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004844 }
4845 /* bash:
4846 * "The backslash retains its special meaning [in "..."]
4847 * only when followed by one of the following characters:
4848 * $, `, ", \, or <newline>. A double quote may be quoted
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02004849 * within double quotes by preceding it with a backslash."
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004850 * NB: in (unquoted) heredoc, above does not apply to ",
4851 * therefore we check for it by "next == dquote_end" cond.
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004852 */
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004853 if (next == dquote_end || strchr("$`\\\n", next)) {
Denys Vlasenko850b15b2010-09-09 12:58:19 +02004854 ch = i_getch(input); /* eat next */
4855 if (ch == '\n')
4856 goto again; /* skip \<newline> */
Denys Vlasenko4f870492010-09-10 11:06:01 +02004857 } /* else: ch remains == '\\', and we double it below: */
4858 o_addqchr(dest, ch); /* \c if c is a glob char, else just c */
Denys Vlasenko850b15b2010-09-09 12:58:19 +02004859 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004860 goto again;
4861 }
4862 if (ch == '$') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004863 if (!parse_dollar(as_string, dest, input, /*quote_mask:*/ 0x80)) {
4864 debug_printf_parse("encode_string return 0: "
4865 "parse_dollar returned 0 (error)\n");
4866 return 0;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004867 }
4868 goto again;
4869 }
4870#if ENABLE_HUSH_TICK
4871 if (ch == '`') {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004872 //unsigned pos = dest->length;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004873 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4874 o_addchr(dest, 0x80 | '`');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004875 if (!add_till_backquote(dest, input, /*in_dquote:*/ dquote_end == '"'))
4876 return 0; /* error */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004877 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4878 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00004879 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004880 }
4881#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00004882 o_addQchr(dest, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004883 goto again;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004884#undef as_string
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004885}
4886
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004887/*
4888 * Scan input until EOF or end_trigger char.
4889 * Return a list of pipes to execute, or NULL on EOF
4890 * or if end_trigger character is met.
Denys Vlasenkocecbc982011-03-30 18:54:52 +02004891 * On syntax error, exit if shell is not interactive,
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004892 * reset parsing machinery and start parsing anew,
4893 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004894 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004895static struct pipe *parse_stream(char **pstring,
4896 struct in_str *input,
4897 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00004898{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004899 struct parse_context ctx;
4900 o_string dest = NULL_O_STRING;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004901 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00004902
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004903 /* Single-quote triggers a bypass of the main loop until its mate is
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004904 * found. When recursing, quote state is passed in via dest->o_expflags.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004905 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004906 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
Denys Vlasenko90a99042009-09-06 02:36:23 +02004907 end_trigger ? end_trigger : 'X');
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004908 debug_enter();
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004909
Denys Vlasenkof37eb392009-10-18 11:46:35 +02004910 /* If very first arg is "" or '', dest.data may end up NULL.
4911 * Preventing this: */
4912 o_addchr(&dest, '\0');
4913 dest.length = 0;
4914
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004915 /* We used to separate words on $IFS here. This was wrong.
4916 * $IFS is used only for word splitting when $var is expanded,
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004917 * here we should use blank chars as separators, not $IFS
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004918 */
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004919
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004920 if (MAYBE_ASSIGNMENT != 0)
4921 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004922 initialize_context(&ctx);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004923 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004924 while (1) {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004925 const char *is_blank;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004926 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004927 int ch;
4928 int next;
4929 int redir_fd;
4930 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004931
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004932 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004933 debug_printf_parse(": ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004934 ch, ch, !!(dest.o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004935 if (ch == EOF) {
4936 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004937
4938 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004939 syntax_error_unterm_str("here document");
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004940 goto parse_error;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004941 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004942 if (end_trigger == ')') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004943 syntax_error_unterm_ch('(');
4944 goto parse_error;
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004945 }
Denys Vlasenko42246472016-11-07 16:22:35 +01004946 if (end_trigger == '}') {
4947 syntax_error_unterm_ch('{');
4948 goto parse_error;
4949 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004950
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004951 if (done_word(&dest, &ctx)) {
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004952 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004953 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004954 o_free(&dest);
4955 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004956 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004957 /* If we got nothing... */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004958 /* (this makes bare "&" cmd a no-op.
4959 * bash says: "syntax error near unexpected token '&'") */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004960 if (pi->num_cmds == 0
Denys Vlasenko60cb48c2013-01-14 15:57:44 +01004961 IF_HAS_KEYWORDS(&& pi->res_word == RES_NONE)
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004962 ) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004963 free_pipe_list(pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004964 pi = NULL;
4965 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004966#if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02004967 debug_printf_parse("as_string1 '%s'\n", ctx.as_string.data);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004968 if (pstring)
4969 *pstring = ctx.as_string.data;
4970 else
4971 o_free_unsafe(&ctx.as_string);
4972#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004973 debug_leave();
4974 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004975 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004976 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004977 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004978
4979 next = '\0';
4980 if (ch != '\n')
4981 next = i_peek(input);
4982
4983 is_special = "{}<>;&|()#'" /* special outside of "str" */
Denys Vlasenko932b9972018-01-11 12:39:48 +01004984 "\\$\"" IF_HUSH_TICK("`") /* always special */
4985 SPECIAL_VAR_SYMBOL_STR;
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004986 /* Are { and } special here? */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02004987 if (ctx.command->argv /* word [word]{... - non-special */
4988 || dest.length /* word{... - non-special */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004989 || dest.has_quoted_part /* ""{... - non-special */
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004990 || (next != ';' /* }; - special */
4991 && next != ')' /* }) - special */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004992 && next != '(' /* {( - special */
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004993 && next != '&' /* }& and }&& ... - special */
4994 && next != '|' /* }|| ... - special */
4995 && !strchr(defifs, next) /* {word - non-special */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02004996 )
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004997 ) {
4998 /* They are not special, skip "{}" */
4999 is_special += 2;
5000 }
5001 is_special = strchr(is_special, ch);
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005002 is_blank = strchr(defifs, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005003
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005004 if (!is_special && !is_blank) { /* ordinary char */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005005 ordinary_char:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005006 o_addQchr(&dest, ch);
5007 if ((dest.o_assignment == MAYBE_ASSIGNMENT
5008 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00005009 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005010 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00005011 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005012 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02005013 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko55789c62008-06-18 16:30:42 +00005014 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005015 continue;
5016 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00005017
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005018 if (is_blank) {
Denys Vlasenko5807e182018-02-08 19:19:04 +01005019#if ENABLE_HUSH_LINENO_VAR
5020/* Case:
5021 * "while ...; do<whitespace><newline>
5022 * cmd ..."
5023 * would think that "cmd" starts in <whitespace> -
5024 * i.e., at the previous line.
5025 * We need to skip all whitespace before newlines.
5026 */
Denys Vlasenkof7869012018-02-08 19:39:42 +01005027 while (ch != '\n') {
5028 next = i_peek(input);
5029 if (next != ' ' && next != '\t' && next != '\n')
5030 break; /* next char is not ws */
5031 ch = i_getch(input);
Denys Vlasenko5807e182018-02-08 19:19:04 +01005032 }
Denys Vlasenkof7869012018-02-08 19:39:42 +01005033 /* ch == last eaten whitespace char */
Denys Vlasenko5807e182018-02-08 19:19:04 +01005034#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005035 if (done_word(&dest, &ctx)) {
5036 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00005037 }
Denis Vlasenko37181682009-04-03 03:19:15 +00005038 if (ch == '\n') {
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01005039 /* Is this a case when newline is simply ignored?
5040 * Some examples:
5041 * "cmd | <newline> cmd ..."
5042 * "case ... in <newline> word) ..."
5043 */
5044 if (IS_NULL_CMD(ctx.command)
5045 && dest.length == 0 && !dest.has_quoted_part
Denis Vlasenkof1736072008-07-31 10:09:26 +00005046 ) {
Denys Vlasenko642e71a2011-01-07 15:16:05 +01005047 /* This newline can be ignored. But...
Denys Vlasenko98c46d12011-01-18 17:30:07 +01005048 * Without check #1, interactive shell
5049 * ignores even bare <newline>,
5050 * and shows the continuation prompt:
Denys Vlasenko642e71a2011-01-07 15:16:05 +01005051 * ps1_prompt$ <enter>
Denys Vlasenko98c46d12011-01-18 17:30:07 +01005052 * ps2> _ <=== wrong, should be ps1
5053 * Without check #2, "cmd & <newline>"
5054 * is similarly mistreated.
5055 * (BTW, this makes "cmd & cmd"
5056 * and "cmd && cmd" non-orthogonal.
5057 * Really, ask yourself, why
5058 * "cmd && <newline>" doesn't start
5059 * cmd but waits for more input?
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02005060 * The only reason is that it might be
5061 * a "cmd1 && <nl> cmd2 &" construct,
5062 * cmd1 may need to run in BG).
Denys Vlasenko642e71a2011-01-07 15:16:05 +01005063 */
5064 struct pipe *pi = ctx.list_head;
Denys Vlasenko98c46d12011-01-18 17:30:07 +01005065 if (pi->num_cmds != 0 /* check #1 */
5066 && pi->followup != PIPE_BG /* check #2 */
5067 ) {
Denys Vlasenko642e71a2011-01-07 15:16:05 +01005068 continue;
Denys Vlasenko98c46d12011-01-18 17:30:07 +01005069 }
Denis Vlasenkof1736072008-07-31 10:09:26 +00005070 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00005071 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005072 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005073 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
5074 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005075 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005076 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005077 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005078 heredoc_cnt = 0;
5079 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005080 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02005081 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko240c2552009-04-03 03:45:05 +00005082 ch = ';';
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005083 /* note: if (is_blank) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005084 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005085 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005086 }
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00005087
5088 /* "cmd}" or "cmd }..." without semicolon or &:
5089 * } is an ordinary char in this case, even inside { cmd; }
5090 * Pathological example: { ""}; } should exec "}" cmd
5091 */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00005092 if (ch == '}') {
Denys Vlasenko672a55e2016-11-04 18:46:14 +01005093 if (dest.length != 0 /* word} */
Denys Vlasenko38292b62010-09-05 14:49:40 +02005094 || dest.has_quoted_part /* ""} */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00005095 ) {
5096 goto ordinary_char;
5097 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01005098 if (!IS_NULL_CMD(ctx.command)) { /* cmd } */
5099 /* Generally, there should be semicolon: "cmd; }"
5100 * However, bash allows to omit it if "cmd" is
5101 * a group. Examples:
5102 * { { echo 1; } }
5103 * {(echo 1)}
5104 * { echo 0 >&2 | { echo 1; } }
5105 * { while false; do :; done }
5106 * { case a in b) ;; esac }
5107 */
5108 if (ctx.command->group)
5109 goto term_group;
5110 goto ordinary_char;
5111 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00005112 if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01005113 /* Can't be an end of {cmd}, skip the check */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00005114 goto skip_end_trigger;
5115 /* else: } does terminate a group */
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00005116 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01005117 term_group:
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005118 if (end_trigger && end_trigger == ch
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02005119 && (ch != ';' || heredoc_cnt == 0)
5120#if ENABLE_HUSH_CASE
5121 && (ch != ')'
5122 || ctx.ctx_res_w != RES_MATCH
Denys Vlasenko38292b62010-09-05 14:49:40 +02005123 || (!dest.has_quoted_part && strcmp(dest.data, "esac") == 0)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02005124 )
5125#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005126 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005127 if (heredoc_cnt) {
5128 /* This is technically valid:
5129 * { cat <<HERE; }; echo Ok
5130 * heredoc
5131 * heredoc
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005132 * HERE
5133 * but we don't support this.
5134 * We require heredoc to be in enclosing {}/(),
5135 * if any.
5136 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005137 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005138 goto parse_error;
5139 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005140 if (done_word(&dest, &ctx)) {
5141 goto parse_error;
5142 }
5143 done_pipe(&ctx, PIPE_SEQ);
5144 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02005145 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko240c2552009-04-03 03:45:05 +00005146 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00005147 if (!HAS_KEYWORDS
Denys Vlasenko60cb48c2013-01-14 15:57:44 +01005148 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00005149 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005150 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005151#if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02005152 debug_printf_parse("as_string2 '%s'\n", ctx.as_string.data);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005153 if (pstring)
5154 *pstring = ctx.as_string.data;
5155 else
5156 o_free_unsafe(&ctx.as_string);
5157#endif
Denys Vlasenko39701202017-08-02 19:44:05 +02005158 if (ch != ';' && IS_NULL_PIPE(ctx.list_head)) {
5159 /* Example: bare "{ }", "()" */
5160 G.last_exitcode = 2; /* bash compat */
5161 syntax_error_unexpected_ch(ch);
5162 goto parse_error2;
5163 }
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005164 debug_printf_parse("parse_stream return %p: "
5165 "end_trigger char found\n",
5166 ctx.list_head);
Denys Vlasenko39701202017-08-02 19:44:05 +02005167 debug_leave();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005168 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005169 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005170 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00005171 skip_end_trigger:
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005172 if (is_blank)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005173 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005174
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005175 /* Catch <, > before deciding whether this word is
5176 * an assignment. a=1 2>z b=2: b=2 is still assignment */
5177 switch (ch) {
5178 case '>':
5179 redir_fd = redirect_opt_num(&dest);
5180 if (done_word(&dest, &ctx)) {
5181 goto parse_error;
5182 }
5183 redir_style = REDIRECT_OVERWRITE;
5184 if (next == '>') {
5185 redir_style = REDIRECT_APPEND;
5186 ch = i_getch(input);
5187 nommu_addchr(&ctx.as_string, ch);
5188 }
5189#if 0
5190 else if (next == '(') {
5191 syntax_error(">(process) not supported");
5192 goto parse_error;
5193 }
5194#endif
5195 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5196 goto parse_error;
5197 continue; /* back to top of while (1) */
5198 case '<':
5199 redir_fd = redirect_opt_num(&dest);
5200 if (done_word(&dest, &ctx)) {
5201 goto parse_error;
5202 }
5203 redir_style = REDIRECT_INPUT;
5204 if (next == '<') {
5205 redir_style = REDIRECT_HEREDOC;
5206 heredoc_cnt++;
5207 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
5208 ch = i_getch(input);
5209 nommu_addchr(&ctx.as_string, ch);
5210 } else if (next == '>') {
5211 redir_style = REDIRECT_IO;
5212 ch = i_getch(input);
5213 nommu_addchr(&ctx.as_string, ch);
5214 }
5215#if 0
5216 else if (next == '(') {
5217 syntax_error("<(process) not supported");
5218 goto parse_error;
5219 }
5220#endif
5221 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5222 goto parse_error;
5223 continue; /* back to top of while (1) */
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01005224 case '#':
5225 if (dest.length == 0 && !dest.has_quoted_part) {
5226 /* skip "#comment" */
Denys Vlasenko25f3b732017-10-22 15:55:48 +02005227 /* note: we do not add it to &ctx.as_string */
5228/* TODO: in bash:
5229 * comment inside $() goes to the next \n, even inside quoted string (!):
5230 * cmd "$(cmd2 #comment)" - syntax error
5231 * cmd "`cmd2 #comment`" - ok
5232 * We accept both (comment ends where command subst ends, in both cases).
5233 */
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01005234 while (1) {
5235 ch = i_peek(input);
Denys Vlasenko25f3b732017-10-22 15:55:48 +02005236 if (ch == '\n') {
5237 nommu_addchr(&ctx.as_string, '\n');
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01005238 break;
Denys Vlasenko25f3b732017-10-22 15:55:48 +02005239 }
5240 ch = i_getch(input);
5241 if (ch == EOF)
5242 break;
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01005243 }
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01005244 continue; /* back to top of while (1) */
5245 }
5246 break;
5247 case '\\':
5248 if (next == '\n') {
5249 /* It's "\<newline>" */
5250#if !BB_MMU
5251 /* Remove trailing '\' from ctx.as_string */
5252 ctx.as_string.data[--ctx.as_string.length] = '\0';
5253#endif
5254 ch = i_getch(input); /* eat it */
5255 continue; /* back to top of while (1) */
5256 }
5257 break;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005258 }
5259
5260 if (dest.o_assignment == MAYBE_ASSIGNMENT
5261 /* check that we are not in word in "a=1 2>word b=1": */
5262 && !ctx.pending_redirect
5263 ) {
5264 /* ch is a special char and thus this word
5265 * cannot be an assignment */
5266 dest.o_assignment = NOT_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02005267 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005268 }
5269
Denys Vlasenkocbfe6ad2009-08-12 19:47:44 +02005270 /* Note: nommu_addchr(&ctx.as_string, ch) is already done */
5271
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005272 switch (ch) {
Denys Vlasenko932b9972018-01-11 12:39:48 +01005273 case SPECIAL_VAR_SYMBOL:
5274 /* Convert raw ^C to corresponding special variable reference */
5275 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5276 o_addchr(&dest, SPECIAL_VAR_QUOTED_SVS);
5277 /* fall through */
5278 case '#':
5279 /* non-comment #: "echo a#b" etc */
5280 o_addchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005281 break;
5282 case '\\':
5283 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005284 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005285 xfunc_die();
Eric Andersen25f27032001-04-26 23:22:31 +00005286 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005287 ch = i_getch(input);
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01005288 /* note: ch != '\n' (that case does not reach this place) */
5289 o_addchr(&dest, '\\');
5290 /*nommu_addchr(&ctx.as_string, '\\'); - already done */
5291 o_addchr(&dest, ch);
5292 nommu_addchr(&ctx.as_string, ch);
5293 /* Example: echo Hello \2>file
5294 * we need to know that word 2 is quoted */
5295 dest.has_quoted_part = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005296 break;
5297 case '$':
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005298 if (!parse_dollar(&ctx.as_string, &dest, input, /*quote_mask:*/ 0)) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005299 debug_printf_parse("parse_stream parse error: "
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005300 "parse_dollar returned 0 (error)\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005301 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005302 }
Eric Andersen25f27032001-04-26 23:22:31 +00005303 break;
5304 case '\'':
Denys Vlasenko38292b62010-09-05 14:49:40 +02005305 dest.has_quoted_part = 1;
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005306 if (next == '\'' && !ctx.pending_redirect) {
5307 insert_empty_quoted_str_marker:
5308 nommu_addchr(&ctx.as_string, next);
5309 i_getch(input); /* eat second ' */
5310 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5311 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5312 } else {
5313 while (1) {
5314 ch = i_getch(input);
5315 if (ch == EOF) {
5316 syntax_error_unterm_ch('\'');
5317 goto parse_error;
5318 }
5319 nommu_addchr(&ctx.as_string, ch);
5320 if (ch == '\'')
5321 break;
Denys Vlasenko9809a822018-01-13 19:14:27 +01005322 if (ch == SPECIAL_VAR_SYMBOL) {
5323 /* Convert raw ^C to corresponding special variable reference */
5324 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5325 o_addchr(&dest, SPECIAL_VAR_QUOTED_SVS);
5326 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005327 o_addqchr(&dest, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005328 }
Eric Andersen25f27032001-04-26 23:22:31 +00005329 }
Eric Andersen25f27032001-04-26 23:22:31 +00005330 break;
5331 case '"':
Denys Vlasenko38292b62010-09-05 14:49:40 +02005332 dest.has_quoted_part = 1;
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005333 if (next == '"' && !ctx.pending_redirect)
5334 goto insert_empty_quoted_str_marker;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005335 if (dest.o_assignment == NOT_ASSIGNMENT)
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02005336 dest.o_expflags |= EXP_FLAG_ESC_GLOB_CHARS;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005337 if (!encode_string(&ctx.as_string, &dest, input, '"', /*process_bkslash:*/ 1))
Denys Vlasenko77a7b552010-09-09 12:40:03 +02005338 goto parse_error;
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02005339 dest.o_expflags &= ~EXP_FLAG_ESC_GLOB_CHARS;
Eric Andersen25f27032001-04-26 23:22:31 +00005340 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005341#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005342 case '`': {
Denys Vlasenko60a94142011-05-13 20:57:01 +02005343 USE_FOR_NOMMU(unsigned pos;)
Denys Vlasenko2e48d532010-05-22 17:30:39 +02005344
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005345 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5346 o_addchr(&dest, '`');
Denys Vlasenko60a94142011-05-13 20:57:01 +02005347 USE_FOR_NOMMU(pos = dest.length;)
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005348 if (!add_till_backquote(&dest, input, /*in_dquote:*/ 0))
5349 goto parse_error;
Denys Vlasenko2e48d532010-05-22 17:30:39 +02005350# if !BB_MMU
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005351 o_addstr(&ctx.as_string, dest.data + pos);
5352 o_addchr(&ctx.as_string, '`');
Denys Vlasenko2e48d532010-05-22 17:30:39 +02005353# endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005354 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5355 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00005356 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005357 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005358#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005359 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005360#if ENABLE_HUSH_CASE
5361 case_semi:
5362#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005363 if (done_word(&dest, &ctx)) {
5364 goto parse_error;
5365 }
5366 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005367#if ENABLE_HUSH_CASE
5368 /* Eat multiple semicolons, detect
5369 * whether it means something special */
5370 while (1) {
5371 ch = i_peek(input);
5372 if (ch != ';')
5373 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005374 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005375 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02005376 if (ctx.ctx_res_w == RES_CASE_BODY) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005377 ctx.ctx_dsemicolon = 1;
5378 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005379 break;
5380 }
5381 }
5382#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005383 new_cmd:
5384 /* We just finished a cmd. New one may start
5385 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005386 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02005387 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Eric Andersen25f27032001-04-26 23:22:31 +00005388 break;
5389 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005390 if (done_word(&dest, &ctx)) {
5391 goto parse_error;
5392 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005393 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005394 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005395 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005396 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00005397 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005398 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00005399 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005400 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005401 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005402 if (done_word(&dest, &ctx)) {
5403 goto parse_error;
5404 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005405#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005406 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00005407 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005408#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005409 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005410 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005411 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005412 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00005413 } else {
5414 /* we could pick up a file descriptor choice here
5415 * with redirect_opt_num(), but bash doesn't do it.
5416 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005417 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00005418 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005419 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005420 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005421#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00005422 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005423 if (ctx.ctx_res_w == RES_MATCH
5424 && ctx.command->argv == NULL /* not (word|(... */
5425 && dest.length == 0 /* not word(... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02005426 && dest.has_quoted_part == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005427 ) {
5428 continue;
5429 }
5430#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005431 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005432 if (parse_group(&dest, &ctx, input, ch) != 0) {
5433 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005434 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005435 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005436 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005437#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005438 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005439 goto case_semi;
5440#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005441 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005442 /* proper use of this character is caught by end_trigger:
5443 * if we see {, we call parse_group(..., end_trigger='}')
5444 * and it will match } earlier (not here). */
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01005445 G.last_exitcode = 2;
Denys Vlasenko39701202017-08-02 19:44:05 +02005446 syntax_error_unexpected_ch(ch);
Denys Vlasenko9fda6092017-07-14 13:36:48 +02005447 goto parse_error2;
Eric Andersen25f27032001-04-26 23:22:31 +00005448 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005449 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005450 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005451 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005452 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005453
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005454 parse_error:
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01005455 G.last_exitcode = 1;
Denys Vlasenko9fda6092017-07-14 13:36:48 +02005456 parse_error2:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005457 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005458 struct parse_context *pctx;
5459 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005460
5461 /* Clean up allocated tree.
Denys Vlasenko764b2f02009-06-07 16:05:04 +02005462 * Sample for finding leaks on syntax error recovery path.
5463 * Run it from interactive shell, watch pmap `pidof hush`.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005464 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00005465 * Samples to catch leaks at execution:
Denys Vlasenko5d5a6112016-11-07 19:36:50 +01005466 * while if (true | { true;}); then echo ok; fi; do break; done
5467 * 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 +00005468 */
5469 pctx = &ctx;
5470 do {
5471 /* Update pipe/command counts,
5472 * otherwise freeing may miss some */
5473 done_pipe(pctx, PIPE_SEQ);
5474 debug_printf_clean("freeing list %p from ctx %p\n",
5475 pctx->list_head, pctx);
5476 debug_print_tree(pctx->list_head, 0);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005477 free_pipe_list(pctx->list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005478 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005479#if !BB_MMU
5480 o_free_unsafe(&pctx->as_string);
5481#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005482 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005483 if (pctx != &ctx) {
5484 free(pctx);
5485 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005486 IF_HAS_KEYWORDS(pctx = p2;)
5487 } while (HAS_KEYWORDS && pctx);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005488
Denys Vlasenkoa439fa92011-03-30 19:11:46 +02005489 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005490#if !BB_MMU
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005491 if (pstring)
5492 *pstring = NULL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005493#endif
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005494 debug_leave();
5495 return ERR_PTR;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005496 }
Eric Andersen25f27032001-04-26 23:22:31 +00005497}
5498
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005499
5500/*** Execution routines ***/
5501
5502/* Expansion can recurse, need forward decls: */
Denys Vlasenko637982f2017-07-06 01:52:23 +02005503#if !BASH_PATTERN_SUBST && !ENABLE_HUSH_CASE
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005504/* only ${var/pattern/repl} (its pattern part) needs additional mode */
5505#define expand_string_to_string(str, do_unbackslash) \
5506 expand_string_to_string(str)
5507#endif
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005508static char *expand_string_to_string(const char *str, int do_unbackslash);
Denys Vlasenko26777aa2010-11-22 23:49:10 +01005509#if ENABLE_HUSH_TICK
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005510static int process_command_subs(o_string *dest, const char *s);
Denys Vlasenko26777aa2010-11-22 23:49:10 +01005511#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005512
5513/* expand_strvec_to_strvec() takes a list of strings, expands
5514 * all variable references within and returns a pointer to
5515 * a list of expanded strings, possibly with larger number
5516 * of strings. (Think VAR="a b"; echo $VAR).
5517 * This new list is allocated as a single malloc block.
5518 * NULL-terminated list of char* pointers is at the beginning of it,
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005519 * followed by strings themselves.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005520 * Caller can deallocate entire list by single free(list). */
5521
Denys Vlasenko238081f2010-10-03 14:26:26 +02005522/* A horde of its helpers come first: */
5523
5524static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
5525{
5526 while (--len >= 0) {
Denys Vlasenko9e800222010-10-03 14:28:04 +02005527 char c = *str++;
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005528
Denys Vlasenko9e800222010-10-03 14:28:04 +02005529#if ENABLE_HUSH_BRACE_EXPANSION
5530 if (c == '{' || c == '}') {
5531 /* { -> \{, } -> \} */
5532 o_addchr(o, '\\');
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005533 /* And now we want to add { or } and continue:
5534 * o_addchr(o, c);
5535 * continue;
Denys Vlasenko10ad6222017-04-17 16:13:32 +02005536 * luckily, just falling through achieves this.
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005537 */
Denys Vlasenko9e800222010-10-03 14:28:04 +02005538 }
5539#endif
5540 o_addchr(o, c);
5541 if (c == '\\') {
Denys Vlasenko238081f2010-10-03 14:26:26 +02005542 /* \z -> \\\z; \<eol> -> \\<eol> */
5543 o_addchr(o, '\\');
5544 if (len) {
5545 len--;
5546 o_addchr(o, '\\');
5547 o_addchr(o, *str++);
5548 }
5549 }
5550 }
5551}
5552
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005553/* Store given string, finalizing the word and starting new one whenever
5554 * we encounter IFS char(s). This is used for expanding variable values.
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005555 * End-of-string does NOT finalize word: think about 'echo -$VAR-'.
5556 * Return in *ended_with_ifs:
5557 * 1 - ended with IFS char, else 0 (this includes case of empty str).
5558 */
5559static int expand_on_ifs(int *ended_with_ifs, o_string *output, int n, const char *str)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005560{
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005561 int last_is_ifs = 0;
5562
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005563 while (1) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005564 int word_len;
5565
5566 if (!*str) /* EOL - do not finalize word */
5567 break;
5568 word_len = strcspn(str, G.ifs);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005569 if (word_len) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005570 /* We have WORD_LEN leading non-IFS chars */
Denys Vlasenko238081f2010-10-03 14:26:26 +02005571 if (!(output->o_expflags & EXP_FLAG_GLOB)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005572 o_addblock(output, str, word_len);
Denys Vlasenko238081f2010-10-03 14:26:26 +02005573 } else {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005574 /* Protect backslashes against globbing up :)
Denys Vlasenkoa769e022010-09-10 10:12:34 +02005575 * Example: "v='\*'; echo b$v" prints "b\*"
5576 * (and does not try to glob on "*")
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005577 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005578 o_addblock_duplicate_backslash(output, str, word_len);
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005579 /*/ Why can't we do it easier? */
5580 /*o_addblock(output, str, word_len); - WRONG: "v='\*'; echo Z$v" prints "Z*" instead of "Z\*" */
5581 /*o_addqblock(output, str, word_len); - WRONG: "v='*'; echo Z$v" prints "Z*" instead of Z* files */
5582 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005583 last_is_ifs = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005584 str += word_len;
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005585 if (!*str) /* EOL - do not finalize word */
5586 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005587 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005588
5589 /* We know str here points to at least one IFS char */
5590 last_is_ifs = 1;
5591 str += strspn(str, G.ifs); /* skip IFS chars */
5592 if (!*str) /* EOL - do not finalize word */
5593 break;
5594
5595 /* Start new word... but not always! */
5596 /* Case "v=' a'; echo ''$v": we do need to finalize empty word: */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005597 if (output->has_quoted_part
5598 /* Case "v=' a'; echo $v":
5599 * here nothing precedes the space in $v expansion,
5600 * therefore we should not finish the word
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005601 * (IOW: if there *is* word to finalize, only then do it):
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005602 */
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005603 || (n > 0 && output->data[output->length - 1])
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005604 ) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005605 o_addchr(output, '\0');
5606 debug_print_list("expand_on_ifs", output, n);
5607 n = o_save_ptr(output, n);
5608 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005609 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005610
5611 if (ended_with_ifs)
5612 *ended_with_ifs = last_is_ifs;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005613 debug_print_list("expand_on_ifs[1]", output, n);
5614 return n;
5615}
5616
5617/* Helper to expand $((...)) and heredoc body. These act as if
5618 * they are in double quotes, with the exception that they are not :).
5619 * Just the rules are similar: "expand only $var and `cmd`"
5620 *
5621 * Returns malloced string.
5622 * As an optimization, we return NULL if expansion is not needed.
5623 */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005624#if !BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005625/* only ${var/pattern/repl} (its pattern part) needs additional mode */
5626#define encode_then_expand_string(str, process_bkslash, do_unbackslash) \
5627 encode_then_expand_string(str)
5628#endif
5629static char *encode_then_expand_string(const char *str, int process_bkslash, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005630{
Denys Vlasenko637982f2017-07-06 01:52:23 +02005631#if !BASH_PATTERN_SUBST
Denys Vlasenko82d1c1f2017-12-31 17:30:02 +01005632 enum { do_unbackslash = 1 };
Denys Vlasenko637982f2017-07-06 01:52:23 +02005633#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005634 char *exp_str;
5635 struct in_str input;
5636 o_string dest = NULL_O_STRING;
5637
5638 if (!strchr(str, '$')
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02005639 && !strchr(str, '\\')
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005640#if ENABLE_HUSH_TICK
5641 && !strchr(str, '`')
5642#endif
5643 ) {
5644 return NULL;
5645 }
5646
5647 /* We need to expand. Example:
5648 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
5649 */
5650 setup_string_in_str(&input, str);
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005651 encode_string(NULL, &dest, &input, EOF, process_bkslash);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005652//TODO: error check (encode_string returns 0 on error)?
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005653 //bb_error_msg("'%s' -> '%s'", str, dest.data);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005654 exp_str = expand_string_to_string(dest.data, /*unbackslash:*/ do_unbackslash);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005655 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
5656 o_free_unsafe(&dest);
5657 return exp_str;
5658}
5659
Denys Vlasenko0b883582016-12-23 16:49:07 +01005660#if ENABLE_FEATURE_SH_MATH
Denys Vlasenko063847d2010-09-15 13:33:02 +02005661static arith_t expand_and_evaluate_arith(const char *arg, const char **errmsg_p)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005662{
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005663 arith_state_t math_state;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005664 arith_t res;
5665 char *exp_str;
5666
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005667 math_state.lookupvar = get_local_var_value;
5668 math_state.setvar = set_local_var_from_halves;
5669 //math_state.endofname = endofname;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005670 exp_str = encode_then_expand_string(arg, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005671 res = arith(&math_state, exp_str ? exp_str : arg);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005672 free(exp_str);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005673 if (errmsg_p)
5674 *errmsg_p = math_state.errmsg;
5675 if (math_state.errmsg)
Denys Vlasenko39701202017-08-02 19:44:05 +02005676 msg_and_die_if_script(math_state.errmsg);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005677 return res;
5678}
5679#endif
5680
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005681#if BASH_PATTERN_SUBST
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005682/* ${var/[/]pattern[/repl]} helpers */
5683static char *strstr_pattern(char *val, const char *pattern, int *size)
5684{
5685 while (1) {
5686 char *end = scan_and_match(val, pattern, SCAN_MOVE_FROM_RIGHT + SCAN_MATCH_LEFT_HALF);
5687 debug_printf_varexp("val:'%s' pattern:'%s' end:'%s'\n", val, pattern, end);
5688 if (end) {
5689 *size = end - val;
5690 return val;
5691 }
5692 if (*val == '\0')
5693 return NULL;
5694 /* Optimization: if "*pat" did not match the start of "string",
5695 * we know that "tring", "ring" etc will not match too:
5696 */
5697 if (pattern[0] == '*')
5698 return NULL;
5699 val++;
5700 }
5701}
5702static char *replace_pattern(char *val, const char *pattern, const char *repl, char exp_op)
5703{
5704 char *result = NULL;
5705 unsigned res_len = 0;
5706 unsigned repl_len = strlen(repl);
5707
Denys Vlasenkocba79a82018-01-25 14:07:40 +01005708 /* Null pattern never matches, including if "var" is empty */
5709 if (!pattern[0])
5710 return result; /* NULL, no replaces happened */
5711
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005712 while (1) {
5713 int size;
5714 char *s = strstr_pattern(val, pattern, &size);
5715 if (!s)
5716 break;
5717
5718 result = xrealloc(result, res_len + (s - val) + repl_len + 1);
Denys Vlasenko0675b032017-07-24 02:17:05 +02005719 strcpy(mempcpy(result + res_len, val, s - val), repl);
5720 res_len += (s - val) + repl_len;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005721 debug_printf_varexp("val:'%s' s:'%s' result:'%s'\n", val, s, result);
5722
5723 val = s + size;
5724 if (exp_op == '/')
5725 break;
5726 }
Denys Vlasenko0675b032017-07-24 02:17:05 +02005727 if (*val && result) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005728 result = xrealloc(result, res_len + strlen(val) + 1);
5729 strcpy(result + res_len, val);
5730 debug_printf_varexp("val:'%s' result:'%s'\n", val, result);
5731 }
5732 debug_printf_varexp("result:'%s'\n", result);
5733 return result;
5734}
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005735#endif /* BASH_PATTERN_SUBST */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005736
5737/* Helper:
5738 * Handles <SPECIAL_VAR_SYMBOL>varname...<SPECIAL_VAR_SYMBOL> construct.
5739 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005740static NOINLINE const char *expand_one_var(char **to_be_freed_pp, char *arg, char **pp)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005741{
Denys Vlasenko0ca31982018-01-25 13:20:50 +01005742 const char *val;
5743 char *to_be_freed;
5744 char *p;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005745 char *var;
5746 char first_char;
5747 char exp_op;
5748 char exp_save = exp_save; /* for compiler */
5749 char *exp_saveptr; /* points to expansion operator */
5750 char *exp_word = exp_word; /* for compiler */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005751 char arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005752
Denys Vlasenko0ca31982018-01-25 13:20:50 +01005753 val = NULL;
5754 to_be_freed = NULL;
5755 p = *pp;
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005756 *p = '\0'; /* replace trailing SPECIAL_VAR_SYMBOL */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005757 var = arg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005758 exp_saveptr = arg[1] ? strchr(VAR_ENCODED_SUBST_OPS, arg[1]) : NULL;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005759 arg0 = arg[0];
5760 first_char = arg[0] = arg0 & 0x7f;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005761 exp_op = 0;
5762
Denys Vlasenko2093ad22017-07-26 00:07:27 +02005763 if (first_char == '#' && arg[1] /* ${#...} but not ${#} */
5764 && (!exp_saveptr /* and ( not(${#<op_char>...}) */
5765 || (arg[2] == '\0' && strchr(SPECIAL_VARS_STR, arg[1])) /* or ${#C} "len of $C" ) */
5766 ) /* NB: skipping ^^^specvar check mishandles ${#::2} */
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005767 ) {
5768 /* It must be length operator: ${#var} */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005769 var++;
5770 exp_op = 'L';
5771 } else {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005772 /* Maybe handle parameter expansion */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005773 if (exp_saveptr /* if 2nd char is one of expansion operators */
5774 && strchr(NUMERIC_SPECVARS_STR, first_char) /* 1st char is special variable */
5775 ) {
5776 /* ${?:0}, ${#[:]%0} etc */
5777 exp_saveptr = var + 1;
5778 } else {
5779 /* ${?}, ${var}, ${var:0}, ${var[:]%0} etc */
5780 exp_saveptr = var+1 + strcspn(var+1, VAR_ENCODED_SUBST_OPS);
5781 }
5782 exp_op = exp_save = *exp_saveptr;
5783 if (exp_op) {
5784 exp_word = exp_saveptr + 1;
5785 if (exp_op == ':') {
5786 exp_op = *exp_word++;
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005787//TODO: try ${var:} and ${var:bogus} in non-bash config
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005788 if (BASH_SUBSTR
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005789 && (!exp_op || !strchr(MINUS_PLUS_EQUAL_QUESTION, exp_op))
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005790 ) {
5791 /* oops... it's ${var:N[:M]}, not ${var:?xxx} or some such */
5792 exp_op = ':';
5793 exp_word--;
5794 }
5795 }
5796 *exp_saveptr = '\0';
5797 } /* else: it's not an expansion op, but bare ${var} */
5798 }
5799
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005800 /* Look up the variable in question */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005801 if (isdigit(var[0])) {
Denys Vlasenko77a7b552010-09-09 12:40:03 +02005802 /* parse_dollar should have vetted var for us */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005803 int n = xatoi_positive(var);
5804 if (n < G.global_argc)
5805 val = G.global_argv[n];
5806 /* else val remains NULL: $N with too big N */
5807 } else {
5808 switch (var[0]) {
5809 case '$': /* pid */
5810 val = utoa(G.root_pid);
5811 break;
5812 case '!': /* bg pid */
5813 val = G.last_bg_pid ? utoa(G.last_bg_pid) : "";
5814 break;
5815 case '?': /* exitcode */
5816 val = utoa(G.last_exitcode);
5817 break;
5818 case '#': /* argc */
5819 val = utoa(G.global_argc ? G.global_argc-1 : 0);
5820 break;
5821 default:
5822 val = get_local_var_value(var);
5823 }
5824 }
5825
5826 /* Handle any expansions */
5827 if (exp_op == 'L') {
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02005828 reinit_unicode_for_hush();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005829 debug_printf_expand("expand: length(%s)=", val);
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02005830 val = utoa(val ? unicode_strlen(val) : 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005831 debug_printf_expand("%s\n", val);
5832 } else if (exp_op) {
5833 if (exp_op == '%' || exp_op == '#') {
5834 /* Standard-mandated substring removal ops:
5835 * ${parameter%word} - remove smallest suffix pattern
5836 * ${parameter%%word} - remove largest suffix pattern
5837 * ${parameter#word} - remove smallest prefix pattern
5838 * ${parameter##word} - remove largest prefix pattern
5839 *
5840 * Word is expanded to produce a glob pattern.
5841 * Then var's value is matched to it and matching part removed.
5842 */
5843 if (val && val[0]) {
Denys Vlasenko4f870492010-09-10 11:06:01 +02005844 char *t;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005845 char *exp_exp_word;
5846 char *loc;
5847 unsigned scan_flags = pick_scan(exp_op, *exp_word);
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02005848 if (exp_op == *exp_word) /* ## or %% */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005849 exp_word++;
Denys Vlasenko55f81332018-03-02 18:12:12 +01005850 debug_printf_expand("expand: exp_word:'%s'\n", exp_word);
Denys Vlasenkod4802c62018-03-02 20:48:36 +01005851 /*
5852 * process_bkslash:1 unbackslash:1 breaks this:
5853 * a='a\\'; echo ${a%\\\\} # correct output is: a
5854 * process_bkslash:1 unbackslash:0 breaks this:
5855 * a='a}'; echo ${a%\}} # correct output is: a
5856 */
5857 exp_exp_word = encode_then_expand_string(exp_word, /*process_bkslash:*/ 0, /*unbackslash:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005858 if (exp_exp_word)
5859 exp_word = exp_exp_word;
Denys Vlasenko55f81332018-03-02 18:12:12 +01005860 debug_printf_expand("expand: exp_exp_word:'%s'\n", exp_word);
Denys Vlasenko4f870492010-09-10 11:06:01 +02005861 /* HACK ALERT. We depend here on the fact that
5862 * G.global_argv and results of utoa and get_local_var_value
5863 * are actually in writable memory:
5864 * scan_and_match momentarily stores NULs there. */
5865 t = (char*)val;
5866 loc = scan_and_match(t, exp_word, scan_flags);
Denys Vlasenko55f81332018-03-02 18:12:12 +01005867 debug_printf_expand("op:%c str:'%s' pat:'%s' res:'%s'\n", exp_op, t, exp_word, loc);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005868 free(exp_exp_word);
5869 if (loc) { /* match was found */
5870 if (scan_flags & SCAN_MATCH_LEFT_HALF) /* #[#] */
Denys Vlasenko4f870492010-09-10 11:06:01 +02005871 val = loc; /* take right part */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005872 else /* %[%] */
Denys Vlasenko4f870492010-09-10 11:06:01 +02005873 val = to_be_freed = xstrndup(val, loc - val); /* left */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005874 }
5875 }
5876 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005877#if BASH_PATTERN_SUBST
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005878 else if (exp_op == '/' || exp_op == '\\') {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005879 /* It's ${var/[/]pattern[/repl]} thing.
5880 * Note that in encoded form it has TWO parts:
5881 * var/pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
Denys Vlasenko4f870492010-09-10 11:06:01 +02005882 * and if // is used, it is encoded as \:
5883 * var\pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005884 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005885 if (val && val[0]) {
Denys Vlasenko4f870492010-09-10 11:06:01 +02005886 /* pattern uses non-standard expansion.
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005887 * repl should be unbackslashed and globbed
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005888 * by the usual expansion rules:
5889 * >az; >bz;
5890 * v='a bz'; echo "${v/a*z/a*z}" prints "a*z"
5891 * v='a bz'; echo "${v/a*z/\z}" prints "\z"
5892 * v='a bz'; echo ${v/a*z/a*z} prints "az"
5893 * v='a bz'; echo ${v/a*z/\z} prints "z"
5894 * (note that a*z _pattern_ is never globbed!)
5895 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005896 char *pattern, *repl, *t;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005897 pattern = encode_then_expand_string(exp_word, /*process_bkslash:*/ 0, /*unbackslash:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005898 if (!pattern)
5899 pattern = xstrdup(exp_word);
5900 debug_printf_varexp("pattern:'%s'->'%s'\n", exp_word, pattern);
5901 *p++ = SPECIAL_VAR_SYMBOL;
5902 exp_word = p;
5903 p = strchr(p, SPECIAL_VAR_SYMBOL);
5904 *p = '\0';
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005905 repl = encode_then_expand_string(exp_word, /*process_bkslash:*/ arg0 & 0x80, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005906 debug_printf_varexp("repl:'%s'->'%s'\n", exp_word, repl);
5907 /* HACK ALERT. We depend here on the fact that
5908 * G.global_argv and results of utoa and get_local_var_value
5909 * are actually in writable memory:
5910 * replace_pattern momentarily stores NULs there. */
5911 t = (char*)val;
5912 to_be_freed = replace_pattern(t,
5913 pattern,
5914 (repl ? repl : exp_word),
5915 exp_op);
5916 if (to_be_freed) /* at least one replace happened */
5917 val = to_be_freed;
5918 free(pattern);
5919 free(repl);
Denys Vlasenkocba79a82018-01-25 14:07:40 +01005920 } else {
5921 /* Empty variable always gives nothing */
5922 // "v=''; echo ${v/*/w}" prints "", not "w"
5923 /* Just skip "replace" part */
5924 *p++ = SPECIAL_VAR_SYMBOL;
5925 p = strchr(p, SPECIAL_VAR_SYMBOL);
5926 *p = '\0';
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005927 }
5928 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005929#endif /* BASH_PATTERN_SUBST */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005930 else if (exp_op == ':') {
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005931#if BASH_SUBSTR && ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005932 /* It's ${var:N[:M]} bashism.
5933 * Note that in encoded form it has TWO parts:
5934 * var:N<SPECIAL_VAR_SYMBOL>M<SPECIAL_VAR_SYMBOL>
5935 */
5936 arith_t beg, len;
Denys Vlasenko063847d2010-09-15 13:33:02 +02005937 const char *errmsg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005938
Denys Vlasenko063847d2010-09-15 13:33:02 +02005939 beg = expand_and_evaluate_arith(exp_word, &errmsg);
5940 if (errmsg)
5941 goto arith_err;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005942 debug_printf_varexp("beg:'%s'=%lld\n", exp_word, (long long)beg);
5943 *p++ = SPECIAL_VAR_SYMBOL;
5944 exp_word = p;
5945 p = strchr(p, SPECIAL_VAR_SYMBOL);
5946 *p = '\0';
Denys Vlasenko063847d2010-09-15 13:33:02 +02005947 len = expand_and_evaluate_arith(exp_word, &errmsg);
5948 if (errmsg)
5949 goto arith_err;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005950 debug_printf_varexp("len:'%s'=%lld\n", exp_word, (long long)len);
Denys Vlasenkoe32b6502017-07-17 16:46:57 +02005951 if (beg < 0) {
5952 /* negative beg counts from the end */
5953 beg = (arith_t)strlen(val) + beg;
5954 if (beg < 0) /* ${v: -999999} is "" */
5955 beg = len = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005956 }
Denys Vlasenkoe32b6502017-07-17 16:46:57 +02005957 debug_printf_varexp("from val:'%s'\n", val);
5958 if (len < 0) {
5959 /* in bash, len=-n means strlen()-n */
5960 len = (arith_t)strlen(val) - beg + len;
5961 if (len < 0) /* bash compat */
Denys Vlasenko39701202017-08-02 19:44:05 +02005962 msg_and_die_if_script("%s: substring expression < 0", var);
Denys Vlasenkoe32b6502017-07-17 16:46:57 +02005963 }
Denys Vlasenko0ba80e42017-07-17 16:50:20 +02005964 if (len <= 0 || !val || beg >= strlen(val)) {
Denys Vlasenkoe32b6502017-07-17 16:46:57 +02005965 arith_err:
5966 val = NULL;
5967 } else {
5968 /* Paranoia. What if user entered 9999999999999
5969 * which fits in arith_t but not int? */
5970 if (len >= INT_MAX)
5971 len = INT_MAX;
5972 val = to_be_freed = xstrndup(val + beg, len);
5973 }
5974 debug_printf_varexp("val:'%s'\n", val);
5975#else /* not (HUSH_SUBSTR_EXPANSION && FEATURE_SH_MATH) */
Denys Vlasenko39701202017-08-02 19:44:05 +02005976 msg_and_die_if_script("malformed ${%s:...}", var);
Denys Vlasenkoe32b6502017-07-17 16:46:57 +02005977 val = NULL;
5978#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005979 } else { /* one of "-=+?" */
5980 /* Standard-mandated substitution ops:
5981 * ${var?word} - indicate error if unset
5982 * If var is unset, word (or a message indicating it is unset
5983 * if word is null) is written to standard error
5984 * and the shell exits with a non-zero exit status.
5985 * Otherwise, the value of var is substituted.
5986 * ${var-word} - use default value
5987 * If var is unset, word is substituted.
5988 * ${var=word} - assign and use default value
5989 * If var is unset, word is assigned to var.
5990 * In all cases, final value of var is substituted.
5991 * ${var+word} - use alternative value
5992 * If var is unset, null is substituted.
5993 * Otherwise, word is substituted.
5994 *
5995 * Word is subjected to tilde expansion, parameter expansion,
5996 * command substitution, and arithmetic expansion.
5997 * If word is not needed, it is not expanded.
5998 *
5999 * Colon forms (${var:-word}, ${var:=word} etc) do the same,
6000 * but also treat null var as if it is unset.
6001 */
6002 int use_word = (!val || ((exp_save == ':') && !val[0]));
6003 if (exp_op == '+')
6004 use_word = !use_word;
6005 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
6006 (exp_save == ':') ? "true" : "false", use_word);
6007 if (use_word) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02006008 to_be_freed = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006009 if (to_be_freed)
6010 exp_word = to_be_freed;
6011 if (exp_op == '?') {
6012 /* mimic bash message */
Denys Vlasenko39701202017-08-02 19:44:05 +02006013 msg_and_die_if_script("%s: %s",
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006014 var,
Denys Vlasenko645c6972017-07-25 15:18:57 +02006015 exp_word[0]
6016 ? exp_word
6017 : "parameter null or not set"
6018 /* ash has more specific messages, a-la: */
6019 /*: (exp_save == ':' ? "parameter null or not set" : "parameter not set")*/
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006020 );
6021//TODO: how interactive bash aborts expansion mid-command?
6022 } else {
6023 val = exp_word;
6024 }
6025
6026 if (exp_op == '=') {
6027 /* ${var=[word]} or ${var:=[word]} */
6028 if (isdigit(var[0]) || var[0] == '#') {
6029 /* mimic bash message */
Denys Vlasenko39701202017-08-02 19:44:05 +02006030 msg_and_die_if_script("$%s: cannot assign in this way", var);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006031 val = NULL;
6032 } else {
6033 char *new_var = xasprintf("%s=%s", var, val);
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02006034 set_local_var(new_var, /*flag:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006035 }
6036 }
6037 }
6038 } /* one of "-=+?" */
6039
6040 *exp_saveptr = exp_save;
6041 } /* if (exp_op) */
6042
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02006043 arg[0] = arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006044
6045 *pp = p;
6046 *to_be_freed_pp = to_be_freed;
6047 return val;
6048}
6049
6050/* Expand all variable references in given string, adding words to list[]
6051 * at n, n+1,... positions. Return updated n (so that list[n] is next one
6052 * to be filled). This routine is extremely tricky: has to deal with
6053 * variables/parameters with whitespace, $* and $@, and constructs like
6054 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02006055static NOINLINE int expand_vars_to_list(o_string *output, int n, char *arg)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006056{
Denys Vlasenko95d48f22010-09-08 13:58:55 +02006057 /* output->o_expflags & EXP_FLAG_SINGLEWORD (0x80) if we are in
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006058 * expansion of right-hand side of assignment == 1-element expand.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006059 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02006060 char cant_be_null = 0; /* only bit 0x80 matters */
Denys Vlasenko6e42b892011-08-01 18:16:43 +02006061 int ended_in_ifs = 0; /* did last unquoted expansion end with IFS chars? */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006062 char *p;
6063
Denys Vlasenko95d48f22010-09-08 13:58:55 +02006064 debug_printf_expand("expand_vars_to_list: arg:'%s' singleword:%x\n", arg,
6065 !!(output->o_expflags & EXP_FLAG_SINGLEWORD));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006066 debug_print_list("expand_vars_to_list", output, n);
6067 n = o_save_ptr(output, n);
6068 debug_print_list("expand_vars_to_list[0]", output, n);
6069
6070 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
6071 char first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006072 char *to_be_freed = NULL;
6073 const char *val = NULL;
6074#if ENABLE_HUSH_TICK
6075 o_string subst_result = NULL_O_STRING;
6076#endif
Denys Vlasenko0b883582016-12-23 16:49:07 +01006077#if ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006078 char arith_buf[sizeof(arith_t)*3 + 2];
6079#endif
Denys Vlasenko6e42b892011-08-01 18:16:43 +02006080
6081 if (ended_in_ifs) {
6082 o_addchr(output, '\0');
6083 n = o_save_ptr(output, n);
6084 ended_in_ifs = 0;
6085 }
6086
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006087 o_addblock(output, arg, p - arg);
6088 debug_print_list("expand_vars_to_list[1]", output, n);
6089 arg = ++p;
6090 p = strchr(p, SPECIAL_VAR_SYMBOL);
6091
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02006092 /* Fetch special var name (if it is indeed one of them)
6093 * and quote bit, force the bit on if singleword expansion -
6094 * important for not getting v=$@ expand to many words. */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02006095 first_ch = arg[0] | (output->o_expflags & EXP_FLAG_SINGLEWORD);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02006096
6097 /* Is this variable quoted and thus expansion can't be null?
6098 * "$@" is special. Even if quoted, it can still
6099 * expand to nothing (not even an empty string),
6100 * thus it is excluded. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006101 if ((first_ch & 0x7f) != '@')
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02006102 cant_be_null |= first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006103
6104 switch (first_ch & 0x7f) {
6105 /* Highest bit in first_ch indicates that var is double-quoted */
6106 case '*':
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02006107 case '@': {
6108 int i;
6109 if (!G.global_argv[1])
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006110 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02006111 i = 1;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02006112 cant_be_null |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006113 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006114 while (G.global_argv[i]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02006115 n = expand_on_ifs(NULL, output, n, G.global_argv[i]);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006116 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
6117 if (G.global_argv[i++][0] && G.global_argv[i]) {
6118 /* this argv[] is not empty and not last:
6119 * put terminating NUL, start new word */
6120 o_addchr(output, '\0');
6121 debug_print_list("expand_vars_to_list[2]", output, n);
6122 n = o_save_ptr(output, n);
6123 debug_print_list("expand_vars_to_list[3]", output, n);
6124 }
6125 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006126 } else
Denys Vlasenko95d48f22010-09-08 13:58:55 +02006127 /* If EXP_FLAG_SINGLEWORD, we handle assignment 'a=....$@.....'
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006128 * and in this case should treat it like '$*' - see 'else...' below */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02006129 if (first_ch == ('@'|0x80) /* quoted $@ */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02006130 && !(output->o_expflags & EXP_FLAG_SINGLEWORD) /* not v="$@" case */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02006131 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006132 while (1) {
6133 o_addQstr(output, G.global_argv[i]);
6134 if (++i >= G.global_argc)
6135 break;
6136 o_addchr(output, '\0');
6137 debug_print_list("expand_vars_to_list[4]", output, n);
6138 n = o_save_ptr(output, n);
6139 }
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02006140 } else { /* quoted $* (or v="$@" case): add as one word */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006141 while (1) {
6142 o_addQstr(output, G.global_argv[i]);
6143 if (!G.global_argv[++i])
6144 break;
6145 if (G.ifs[0])
6146 o_addchr(output, G.ifs[0]);
6147 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02006148 output->has_quoted_part = 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006149 }
6150 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02006151 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006152 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
6153 /* "Empty variable", used to make "" etc to not disappear */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02006154 output->has_quoted_part = 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006155 arg++;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02006156 cant_be_null = 0x80;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006157 break;
Denys Vlasenko932b9972018-01-11 12:39:48 +01006158 case SPECIAL_VAR_QUOTED_SVS:
6159 /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_QUOTED_SVS><SPECIAL_VAR_SYMBOL> */
6160 arg++;
6161 val = SPECIAL_VAR_SYMBOL_STR;
6162 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006163#if ENABLE_HUSH_TICK
6164 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02006165 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006166 arg++;
6167 /* Can't just stuff it into output o_string,
6168 * expanded result may need to be globbed
Denys Vlasenko10ad6222017-04-17 16:13:32 +02006169 * and $IFS-split */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006170 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
6171 G.last_exitcode = process_command_subs(&subst_result, arg);
6172 debug_printf_subst("SUBST RES:%d '%s'\n", G.last_exitcode, subst_result.data);
6173 val = subst_result.data;
6174 goto store_val;
6175#endif
Denys Vlasenko0b883582016-12-23 16:49:07 +01006176#if ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006177 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
6178 arith_t res;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006179
6180 arg++; /* skip '+' */
6181 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
6182 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denys Vlasenko063847d2010-09-15 13:33:02 +02006183 res = expand_and_evaluate_arith(arg, NULL);
Denys Vlasenkobed7c812010-09-16 11:50:46 +02006184 debug_printf_subst("ARITH RES '"ARITH_FMT"'\n", res);
6185 sprintf(arith_buf, ARITH_FMT, res);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006186 val = arith_buf;
6187 break;
6188 }
6189#endif
6190 default:
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02006191 val = expand_one_var(&to_be_freed, arg, &p);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006192 IF_HUSH_TICK(store_val:)
6193 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02006194 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val,
6195 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006196 if (val && val[0]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02006197 n = expand_on_ifs(&ended_in_ifs, output, n, val);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006198 val = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006199 }
6200 } else { /* quoted $VAR, val will be appended below */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02006201 output->has_quoted_part = 1;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02006202 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val,
6203 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006204 }
6205 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006206 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
6207
6208 if (val && val[0]) {
6209 o_addQstr(output, val);
6210 }
6211 free(to_be_freed);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02006212
6213 /* Restore NULL'ed SPECIAL_VAR_SYMBOL.
6214 * Do the check to avoid writing to a const string. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006215 if (*p != SPECIAL_VAR_SYMBOL)
6216 *p = SPECIAL_VAR_SYMBOL;
6217
6218#if ENABLE_HUSH_TICK
6219 o_free(&subst_result);
6220#endif
6221 arg = ++p;
6222 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
6223
6224 if (arg[0]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02006225 if (ended_in_ifs) {
6226 o_addchr(output, '\0');
6227 n = o_save_ptr(output, n);
6228 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006229 debug_print_list("expand_vars_to_list[a]", output, n);
6230 /* this part is literal, and it was already pre-quoted
6231 * if needed (much earlier), do not use o_addQstr here! */
6232 o_addstr_with_NUL(output, arg);
6233 debug_print_list("expand_vars_to_list[b]", output, n);
6234 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02006235 && !(cant_be_null & 0x80) /* and all vars were not quoted. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006236 ) {
6237 n--;
6238 /* allow to reuse list[n] later without re-growth */
6239 output->has_empty_slot = 1;
6240 } else {
6241 o_addchr(output, '\0');
6242 }
6243
6244 return n;
6245}
6246
Denys Vlasenko95d48f22010-09-08 13:58:55 +02006247static char **expand_variables(char **argv, unsigned expflags)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006248{
6249 int n;
6250 char **list;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006251 o_string output = NULL_O_STRING;
6252
Denys Vlasenko95d48f22010-09-08 13:58:55 +02006253 output.o_expflags = expflags;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006254
6255 n = 0;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006256 while (*argv) {
Denys Vlasenko95d48f22010-09-08 13:58:55 +02006257 n = expand_vars_to_list(&output, n, *argv);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006258 argv++;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006259 }
6260 debug_print_list("expand_variables", &output, n);
6261
6262 /* output.data (malloced in one block) gets returned in "list" */
6263 list = o_finalize_list(&output, n);
6264 debug_print_strings("expand_variables[1]", list);
6265 return list;
6266}
6267
6268static char **expand_strvec_to_strvec(char **argv)
6269{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02006270 return expand_variables(argv, EXP_FLAG_GLOB | EXP_FLAG_ESC_GLOB_CHARS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006271}
6272
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01006273#if BASH_TEST2
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006274static char **expand_strvec_to_strvec_singleword_noglob(char **argv)
6275{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02006276 return expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006277}
6278#endif
6279
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02006280/* Used for expansion of right hand of assignments,
6281 * $((...)), heredocs, variable espansion parts.
6282 *
6283 * NB: should NOT do globbing!
6284 * "export v=/bin/c*; env | grep ^v=" outputs "v=/bin/c*"
6285 */
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006286static char *expand_string_to_string(const char *str, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006287{
Denys Vlasenko637982f2017-07-06 01:52:23 +02006288#if !BASH_PATTERN_SUBST && !ENABLE_HUSH_CASE
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02006289 const int do_unbackslash = 1;
6290#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006291 char *argv[2], **list;
6292
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006293 debug_printf_expand("string_to_string<='%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006294 /* This is generally an optimization, but it also
6295 * handles "", which otherwise trips over !list[0] check below.
6296 * (is this ever happens that we actually get str="" here?)
6297 */
6298 if (!strchr(str, SPECIAL_VAR_SYMBOL) && !strchr(str, '\\')) {
6299 //TODO: Can use on strings with \ too, just unbackslash() them?
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006300 debug_printf_expand("string_to_string(fast)=>'%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006301 return xstrdup(str);
6302 }
6303
6304 argv[0] = (char*)str;
6305 argv[1] = NULL;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006306 list = expand_variables(argv, do_unbackslash
6307 ? EXP_FLAG_ESC_GLOB_CHARS | EXP_FLAG_SINGLEWORD
6308 : EXP_FLAG_SINGLEWORD
6309 );
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006310 if (HUSH_DEBUG)
6311 if (!list[0] || list[1])
6312 bb_error_msg_and_die("BUG in varexp2");
6313 /* actually, just move string 2*sizeof(char*) bytes back */
6314 overlapping_strcpy((char*)list, list[0]);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006315 if (do_unbackslash)
6316 unbackslash((char*)list);
6317 debug_printf_expand("string_to_string=>'%s'\n", (char*)list);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006318 return (char*)list;
6319}
6320
Denys Vlasenko1f191122018-01-11 13:17:30 +01006321#if ENABLE_HUSH_CASE
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006322static char* expand_strvec_to_string(char **argv)
6323{
6324 char **list;
6325
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02006326 list = expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006327 /* Convert all NULs to spaces */
6328 if (list[0]) {
6329 int n = 1;
6330 while (list[n]) {
6331 if (HUSH_DEBUG)
6332 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
6333 bb_error_msg_and_die("BUG in varexp3");
6334 /* bash uses ' ' regardless of $IFS contents */
6335 list[n][-1] = ' ';
6336 n++;
6337 }
6338 }
Denys Vlasenko78c9c732016-09-29 01:44:17 +02006339 overlapping_strcpy((char*)list, list[0] ? list[0] : "");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006340 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
6341 return (char*)list;
6342}
Denys Vlasenko1f191122018-01-11 13:17:30 +01006343#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006344
6345static char **expand_assignments(char **argv, int count)
6346{
6347 int i;
6348 char **p;
6349
6350 G.expanded_assignments = p = NULL;
6351 /* Expand assignments into one string each */
6352 for (i = 0; i < count; i++) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006353 G.expanded_assignments = p = add_string_to_strings(p, expand_string_to_string(argv[i], /*unbackslash:*/ 1));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006354 }
6355 G.expanded_assignments = NULL;
6356 return p;
6357}
6358
6359
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006360static void switch_off_special_sigs(unsigned mask)
6361{
6362 unsigned sig = 0;
6363 while ((mask >>= 1) != 0) {
6364 sig++;
6365 if (!(mask & 1))
6366 continue;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006367#if ENABLE_HUSH_TRAP
6368 if (G_traps) {
6369 if (G_traps[sig] && !G_traps[sig][0])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006370 /* trap is '', has to remain SIG_IGN */
6371 continue;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006372 free(G_traps[sig]);
6373 G_traps[sig] = NULL;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006374 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006375#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006376 /* We are here only if no trap or trap was not '' */
Denys Vlasenko0806e402011-05-12 23:06:20 +02006377 install_sighandler(sig, SIG_DFL);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006378 }
6379}
6380
Denys Vlasenkob347df92011-08-09 22:49:15 +02006381#if BB_MMU
6382/* never called */
6383void re_execute_shell(char ***to_free, const char *s,
6384 char *g_argv0, char **g_argv,
6385 char **builtin_argv) NORETURN;
6386
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006387static void reset_traps_to_defaults(void)
6388{
6389 /* This function is always called in a child shell
6390 * after fork (not vfork, NOMMU doesn't use this function).
6391 */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006392 IF_HUSH_TRAP(unsigned sig;)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006393 unsigned mask;
6394
6395 /* Child shells are not interactive.
6396 * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
6397 * Testcase: (while :; do :; done) + ^Z should background.
6398 * Same goes for SIGTERM, SIGHUP, SIGINT.
6399 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006400 mask = (G.special_sig_mask & SPECIAL_INTERACTIVE_SIGS) | G_fatal_sig_mask;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006401 if (!G_traps && !mask)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006402 return; /* already no traps and no special sigs */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006403
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006404 /* Switch off special sigs */
6405 switch_off_special_sigs(mask);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006406# if ENABLE_HUSH_JOB
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006407 G_fatal_sig_mask = 0;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006408# endif
Denys Vlasenko10c01312011-05-11 11:49:21 +02006409 G.special_sig_mask &= ~SPECIAL_INTERACTIVE_SIGS;
Denys Vlasenkof58f7052011-05-12 02:10:33 +02006410 /* SIGQUIT,SIGCHLD and maybe SPECIAL_JOBSTOP_SIGS
6411 * remain set in G.special_sig_mask */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006412
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006413# if ENABLE_HUSH_TRAP
6414 if (!G_traps)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006415 return;
6416
6417 /* Reset all sigs to default except ones with empty traps */
6418 for (sig = 0; sig < NSIG; sig++) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006419 if (!G_traps[sig])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006420 continue; /* no trap: nothing to do */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006421 if (!G_traps[sig][0])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006422 continue; /* empty trap: has to remain SIG_IGN */
6423 /* sig has non-empty trap, reset it: */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006424 free(G_traps[sig]);
6425 G_traps[sig] = NULL;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006426 /* There is no signal for trap 0 (EXIT) */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006427 if (sig == 0)
6428 continue;
Denys Vlasenko0806e402011-05-12 23:06:20 +02006429 install_sighandler(sig, pick_sighandler(sig));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006430 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006431# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006432}
6433
6434#else /* !BB_MMU */
6435
6436static void re_execute_shell(char ***to_free, const char *s,
6437 char *g_argv0, char **g_argv,
6438 char **builtin_argv) NORETURN;
6439static void re_execute_shell(char ***to_free, const char *s,
6440 char *g_argv0, char **g_argv,
6441 char **builtin_argv)
6442{
6443# define NOMMU_HACK_FMT ("-$%x:%x:%x:%x:%x:%llx" IF_HUSH_LOOPS(":%x"))
6444 /* delims + 2 * (number of bytes in printed hex numbers) */
6445 char param_buf[sizeof(NOMMU_HACK_FMT) + 2 * (sizeof(int)*6 + sizeof(long long)*1)];
6446 char *heredoc_argv[4];
6447 struct variable *cur;
6448# if ENABLE_HUSH_FUNCTIONS
6449 struct function *funcp;
6450# endif
6451 char **argv, **pp;
6452 unsigned cnt;
6453 unsigned long long empty_trap_mask;
6454
6455 if (!g_argv0) { /* heredoc */
6456 argv = heredoc_argv;
6457 argv[0] = (char *) G.argv0_for_re_execing;
6458 argv[1] = (char *) "-<";
6459 argv[2] = (char *) s;
6460 argv[3] = NULL;
6461 pp = &argv[3]; /* used as pointer to empty environment */
6462 goto do_exec;
6463 }
6464
6465 cnt = 0;
6466 pp = builtin_argv;
6467 if (pp) while (*pp++)
6468 cnt++;
6469
6470 empty_trap_mask = 0;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006471 if (G_traps) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006472 int sig;
6473 for (sig = 1; sig < NSIG; sig++) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006474 if (G_traps[sig] && !G_traps[sig][0])
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006475 empty_trap_mask |= 1LL << sig;
6476 }
6477 }
6478
6479 sprintf(param_buf, NOMMU_HACK_FMT
6480 , (unsigned) G.root_pid
6481 , (unsigned) G.root_ppid
6482 , (unsigned) G.last_bg_pid
6483 , (unsigned) G.last_exitcode
6484 , cnt
6485 , empty_trap_mask
6486 IF_HUSH_LOOPS(, G.depth_of_loop)
6487 );
6488# undef NOMMU_HACK_FMT
6489 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<etc...> <vars...> <funcs...>
6490 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
6491 */
6492 cnt += 6;
6493 for (cur = G.top_var; cur; cur = cur->next) {
6494 if (!cur->flg_export || cur->flg_read_only)
6495 cnt += 2;
6496 }
6497# if ENABLE_HUSH_FUNCTIONS
6498 for (funcp = G.top_func; funcp; funcp = funcp->next)
6499 cnt += 3;
6500# endif
6501 pp = g_argv;
6502 while (*pp++)
6503 cnt++;
6504 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
6505 *pp++ = (char *) G.argv0_for_re_execing;
6506 *pp++ = param_buf;
6507 for (cur = G.top_var; cur; cur = cur->next) {
6508 if (strcmp(cur->varstr, hush_version_str) == 0)
6509 continue;
6510 if (cur->flg_read_only) {
6511 *pp++ = (char *) "-R";
6512 *pp++ = cur->varstr;
6513 } else if (!cur->flg_export) {
6514 *pp++ = (char *) "-V";
6515 *pp++ = cur->varstr;
6516 }
6517 }
6518# if ENABLE_HUSH_FUNCTIONS
6519 for (funcp = G.top_func; funcp; funcp = funcp->next) {
6520 *pp++ = (char *) "-F";
6521 *pp++ = funcp->name;
6522 *pp++ = funcp->body_as_string;
6523 }
6524# endif
6525 /* We can pass activated traps here. Say, -Tnn:trap_string
6526 *
6527 * However, POSIX says that subshells reset signals with traps
6528 * to SIG_DFL.
6529 * I tested bash-3.2 and it not only does that with true subshells
6530 * of the form ( list ), but with any forked children shells.
6531 * I set trap "echo W" WINCH; and then tried:
6532 *
6533 * { echo 1; sleep 20; echo 2; } &
6534 * while true; do echo 1; sleep 20; echo 2; break; done &
6535 * true | { echo 1; sleep 20; echo 2; } | cat
6536 *
6537 * In all these cases sending SIGWINCH to the child shell
6538 * did not run the trap. If I add trap "echo V" WINCH;
6539 * _inside_ group (just before echo 1), it works.
6540 *
6541 * I conclude it means we don't need to pass active traps here.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006542 */
6543 *pp++ = (char *) "-c";
6544 *pp++ = (char *) s;
6545 if (builtin_argv) {
6546 while (*++builtin_argv)
6547 *pp++ = *builtin_argv;
6548 *pp++ = (char *) "";
6549 }
6550 *pp++ = g_argv0;
6551 while (*g_argv)
6552 *pp++ = *g_argv++;
6553 /* *pp = NULL; - is already there */
6554 pp = environ;
6555
6556 do_exec:
6557 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02006558 /* Don't propagate SIG_IGN to the child */
6559 if (SPECIAL_JOBSTOP_SIGS != 0)
6560 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006561 execve(bb_busybox_exec_path, argv, pp);
6562 /* Fallback. Useful for init=/bin/hush usage etc */
6563 if (argv[0][0] == '/')
6564 execve(argv[0], argv, pp);
6565 xfunc_error_retval = 127;
6566 bb_error_msg_and_die("can't re-execute the shell");
6567}
6568#endif /* !BB_MMU */
6569
6570
6571static int run_and_free_list(struct pipe *pi);
6572
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006573/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006574 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
6575 * end_trigger controls how often we stop parsing
6576 * NUL: parse all, execute, return
6577 * ';': parse till ';' or newline, execute, repeat till EOF
6578 */
6579static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00006580{
Denys Vlasenko00243b02009-11-16 02:00:03 +01006581 /* Why we need empty flag?
6582 * An obscure corner case "false; ``; echo $?":
6583 * empty command in `` should still set $? to 0.
6584 * But we can't just set $? to 0 at the start,
6585 * this breaks "false; echo `echo $?`" case.
6586 */
6587 bool empty = 1;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006588 while (1) {
6589 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006590
Denys Vlasenkoa1463192011-01-18 17:55:04 +01006591#if ENABLE_HUSH_INTERACTIVE
6592 if (end_trigger == ';')
6593 inp->promptmode = 0; /* PS1 */
6594#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006595 pipe_list = parse_stream(NULL, inp, end_trigger);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02006596 if (!pipe_list || pipe_list == ERR_PTR) { /* EOF/error */
6597 /* If we are in "big" script
6598 * (not in `cmd` or something similar)...
6599 */
6600 if (pipe_list == ERR_PTR && end_trigger == ';') {
6601 /* Discard cached input (rest of line) */
6602 int ch = inp->last_char;
6603 while (ch != EOF && ch != '\n') {
6604 //bb_error_msg("Discarded:'%c'", ch);
6605 ch = i_getch(inp);
6606 }
6607 /* Force prompt */
6608 inp->p = NULL;
6609 /* This stream isn't empty */
6610 empty = 0;
6611 continue;
6612 }
6613 if (!pipe_list && empty)
Denys Vlasenko00243b02009-11-16 02:00:03 +01006614 G.last_exitcode = 0;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006615 break;
Denys Vlasenko00243b02009-11-16 02:00:03 +01006616 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006617 debug_print_tree(pipe_list, 0);
6618 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
6619 run_and_free_list(pipe_list);
Denys Vlasenko00243b02009-11-16 02:00:03 +01006620 empty = 0;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006621 if (G_flag_return_in_progress == 1)
Denys Vlasenko68d5cb52011-03-24 02:50:03 +01006622 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006623 }
Eric Andersen25f27032001-04-26 23:22:31 +00006624}
6625
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006626static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00006627{
6628 struct in_str input;
Denys Vlasenkoaa617ac2018-02-13 15:30:13 +01006629 //IF_HUSH_LINENO_VAR(unsigned sv = G.lineno;)
6630
Eric Andersen25f27032001-04-26 23:22:31 +00006631 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006632 parse_and_run_stream(&input, '\0');
Denys Vlasenkoaa617ac2018-02-13 15:30:13 +01006633 //IF_HUSH_LINENO_VAR(G.lineno = sv;)
Eric Andersen25f27032001-04-26 23:22:31 +00006634}
6635
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006636static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00006637{
Eric Andersen25f27032001-04-26 23:22:31 +00006638 struct in_str input;
Denys Vlasenkoaa617ac2018-02-13 15:30:13 +01006639 IF_HUSH_LINENO_VAR(unsigned sv = G.lineno;)
Denys Vlasenko6aad1dd2018-01-19 15:37:04 +01006640
Denys Vlasenkoaa617ac2018-02-13 15:30:13 +01006641 IF_HUSH_LINENO_VAR(G.lineno = 1;)
Denys Vlasenkob8d076b2018-01-19 16:00:57 +01006642 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006643 parse_and_run_stream(&input, ';');
Denys Vlasenkoaa617ac2018-02-13 15:30:13 +01006644 IF_HUSH_LINENO_VAR(G.lineno = sv;)
Eric Andersen25f27032001-04-26 23:22:31 +00006645}
6646
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006647#if ENABLE_HUSH_TICK
6648static FILE *generate_stream_from_string(const char *s, pid_t *pid_p)
6649{
6650 pid_t pid;
6651 int channel[2];
6652# if !BB_MMU
6653 char **to_free = NULL;
6654# endif
6655
6656 xpipe(channel);
6657 pid = BB_MMU ? xfork() : xvfork();
6658 if (pid == 0) { /* child */
6659 disable_restore_tty_pgrp_on_exit();
6660 /* Process substitution is not considered to be usual
6661 * 'command execution'.
6662 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
6663 */
6664 bb_signals(0
6665 + (1 << SIGTSTP)
6666 + (1 << SIGTTIN)
6667 + (1 << SIGTTOU)
6668 , SIG_IGN);
6669 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
6670 close(channel[0]); /* NB: close _first_, then move fd! */
6671 xmove_fd(channel[1], 1);
6672 /* Prevent it from trying to handle ctrl-z etc */
6673 IF_HUSH_JOB(G.run_list_level = 1;)
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006674# if ENABLE_HUSH_TRAP
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006675 /* Awful hack for `trap` or $(trap).
6676 *
6677 * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html
6678 * contains an example where "trap" is executed in a subshell:
6679 *
6680 * save_traps=$(trap)
6681 * ...
6682 * eval "$save_traps"
6683 *
6684 * Standard does not say that "trap" in subshell shall print
6685 * parent shell's traps. It only says that its output
6686 * must have suitable form, but then, in the above example
6687 * (which is not supposed to be normative), it implies that.
6688 *
6689 * bash (and probably other shell) does implement it
6690 * (traps are reset to defaults, but "trap" still shows them),
6691 * but as a result, "trap" logic is hopelessly messed up:
6692 *
6693 * # trap
6694 * trap -- 'echo Ho' SIGWINCH <--- we have a handler
6695 * # (trap) <--- trap is in subshell - no output (correct, traps are reset)
6696 * # true | trap <--- trap is in subshell - no output (ditto)
6697 * # echo `true | trap` <--- in subshell - output (but traps are reset!)
6698 * trap -- 'echo Ho' SIGWINCH
6699 * # echo `(trap)` <--- in subshell in subshell - output
6700 * trap -- 'echo Ho' SIGWINCH
6701 * # echo `true | (trap)` <--- in subshell in subshell in subshell - output!
6702 * trap -- 'echo Ho' SIGWINCH
6703 *
6704 * The rules when to forget and when to not forget traps
6705 * get really complex and nonsensical.
6706 *
6707 * Our solution: ONLY bare $(trap) or `trap` is special.
6708 */
6709 s = skip_whitespace(s);
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01006710 if (is_prefixed_with(s, "trap")
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006711 && skip_whitespace(s + 4)[0] == '\0'
6712 ) {
6713 static const char *const argv[] = { NULL, NULL };
6714 builtin_trap((char**)argv);
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02006715 fflush_all(); /* important */
6716 _exit(0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006717 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006718# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006719# if BB_MMU
6720 reset_traps_to_defaults();
6721 parse_and_run_string(s);
6722 _exit(G.last_exitcode);
6723# else
6724 /* We re-execute after vfork on NOMMU. This makes this script safe:
6725 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
6726 * huge=`cat BIG` # was blocking here forever
6727 * echo OK
6728 */
6729 re_execute_shell(&to_free,
6730 s,
6731 G.global_argv[0],
6732 G.global_argv + 1,
6733 NULL);
6734# endif
6735 }
6736
6737 /* parent */
6738 *pid_p = pid;
6739# if ENABLE_HUSH_FAST
6740 G.count_SIGCHLD++;
6741//bb_error_msg("[%d] fork in generate_stream_from_string:"
6742// " G.count_SIGCHLD:%d G.handled_SIGCHLD:%d",
6743// getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6744# endif
6745 enable_restore_tty_pgrp_on_exit();
6746# if !BB_MMU
6747 free(to_free);
6748# endif
6749 close(channel[1]);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02006750 return remember_FILE(xfdopen_for_read(channel[0]));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006751}
6752
6753/* Return code is exit status of the process that is run. */
6754static int process_command_subs(o_string *dest, const char *s)
6755{
6756 FILE *fp;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006757 pid_t pid;
6758 int status, ch, eol_cnt;
6759
6760 fp = generate_stream_from_string(s, &pid);
6761
6762 /* Now send results of command back into original context */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006763 eol_cnt = 0;
Denys Vlasenkoaa617ac2018-02-13 15:30:13 +01006764 while ((ch = getc(fp)) != EOF) {
6765 if (ch == '\0')
6766 continue;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006767 if (ch == '\n') {
6768 eol_cnt++;
6769 continue;
6770 }
6771 while (eol_cnt) {
6772 o_addchr(dest, '\n');
6773 eol_cnt--;
6774 }
6775 o_addQchr(dest, ch);
6776 }
6777
6778 debug_printf("done reading from `cmd` pipe, closing it\n");
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02006779 fclose_and_forget(fp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006780 /* We need to extract exitcode. Test case
6781 * "true; echo `sleep 1; false` $?"
6782 * should print 1 */
6783 safe_waitpid(pid, &status, 0);
6784 debug_printf("child exited. returning its exitcode:%d\n", WEXITSTATUS(status));
6785 return WEXITSTATUS(status);
6786}
6787#endif /* ENABLE_HUSH_TICK */
6788
6789
6790static void setup_heredoc(struct redir_struct *redir)
6791{
6792 struct fd_pair pair;
6793 pid_t pid;
6794 int len, written;
6795 /* the _body_ of heredoc (misleading field name) */
6796 const char *heredoc = redir->rd_filename;
6797 char *expanded;
6798#if !BB_MMU
6799 char **to_free;
6800#endif
6801
6802 expanded = NULL;
6803 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02006804 expanded = encode_then_expand_string(heredoc, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006805 if (expanded)
6806 heredoc = expanded;
6807 }
6808 len = strlen(heredoc);
6809
6810 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
6811 xpiped_pair(pair);
6812 xmove_fd(pair.rd, redir->rd_fd);
6813
6814 /* Try writing without forking. Newer kernels have
6815 * dynamically growing pipes. Must use non-blocking write! */
6816 ndelay_on(pair.wr);
6817 while (1) {
6818 written = write(pair.wr, heredoc, len);
6819 if (written <= 0)
6820 break;
6821 len -= written;
6822 if (len == 0) {
6823 close(pair.wr);
6824 free(expanded);
6825 return;
6826 }
6827 heredoc += written;
6828 }
6829 ndelay_off(pair.wr);
6830
6831 /* Okay, pipe buffer was not big enough */
6832 /* Note: we must not create a stray child (bastard? :)
6833 * for the unsuspecting parent process. Child creates a grandchild
6834 * and exits before parent execs the process which consumes heredoc
6835 * (that exec happens after we return from this function) */
6836#if !BB_MMU
6837 to_free = NULL;
6838#endif
6839 pid = xvfork();
6840 if (pid == 0) {
6841 /* child */
6842 disable_restore_tty_pgrp_on_exit();
6843 pid = BB_MMU ? xfork() : xvfork();
6844 if (pid != 0)
6845 _exit(0);
6846 /* grandchild */
6847 close(redir->rd_fd); /* read side of the pipe */
6848#if BB_MMU
6849 full_write(pair.wr, heredoc, len); /* may loop or block */
6850 _exit(0);
6851#else
6852 /* Delegate blocking writes to another process */
6853 xmove_fd(pair.wr, STDOUT_FILENO);
6854 re_execute_shell(&to_free, heredoc, NULL, NULL, NULL);
6855#endif
6856 }
6857 /* parent */
6858#if ENABLE_HUSH_FAST
6859 G.count_SIGCHLD++;
6860//bb_error_msg("[%d] fork in setup_heredoc: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6861#endif
6862 enable_restore_tty_pgrp_on_exit();
6863#if !BB_MMU
6864 free(to_free);
6865#endif
6866 close(pair.wr);
6867 free(expanded);
6868 wait(NULL); /* wait till child has died */
6869}
6870
Denys Vlasenko2db74612017-07-07 22:07:28 +02006871struct squirrel {
6872 int orig_fd;
6873 int moved_to;
6874 /* moved_to = n: fd was moved to n; restore back to orig_fd after redir */
6875 /* moved_to = -1: fd was opened by redirect; close orig_fd after redir */
6876};
6877
Denys Vlasenko621fc502017-07-24 12:42:17 +02006878static struct squirrel *append_squirrel(struct squirrel *sq, int i, int orig, int moved)
6879{
6880 sq = xrealloc(sq, (i + 2) * sizeof(sq[0]));
6881 sq[i].orig_fd = orig;
6882 sq[i].moved_to = moved;
6883 sq[i+1].orig_fd = -1; /* end marker */
6884 return sq;
6885}
6886
Denys Vlasenko2db74612017-07-07 22:07:28 +02006887static struct squirrel *add_squirrel(struct squirrel *sq, int fd, int avoid_fd)
6888{
Denys Vlasenko621fc502017-07-24 12:42:17 +02006889 int moved_to;
Denys Vlasenko32fdf2f2017-07-31 04:32:06 +02006890 int i;
Denys Vlasenko2db74612017-07-07 22:07:28 +02006891
Denys Vlasenkod16e6122017-08-11 15:41:39 +02006892 i = 0;
6893 if (sq) for (; sq[i].orig_fd >= 0; i++) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02006894 /* If we collide with an already moved fd... */
6895 if (fd == sq[i].moved_to) {
Denys Vlasenko9acd63c2018-03-28 18:35:07 +02006896 sq[i].moved_to = dup_CLOEXEC(sq[i].moved_to, avoid_fd);
Denys Vlasenko2db74612017-07-07 22:07:28 +02006897 debug_printf_redir("redirect_fd %d: already busy, moving to %d\n", fd, sq[i].moved_to);
6898 if (sq[i].moved_to < 0) /* what? */
6899 xfunc_die();
6900 return sq;
6901 }
6902 if (fd == sq[i].orig_fd) {
6903 /* Example: echo Hello >/dev/null 1>&2 */
6904 debug_printf_redir("redirect_fd %d: already moved\n", fd);
6905 return sq;
6906 }
Denys Vlasenko2db74612017-07-07 22:07:28 +02006907 }
6908
Denys Vlasenko2db74612017-07-07 22:07:28 +02006909 /* If this fd is open, we move and remember it; if it's closed, moved_to = -1 */
Denys Vlasenko9acd63c2018-03-28 18:35:07 +02006910 moved_to = dup_CLOEXEC(fd, avoid_fd);
Denys Vlasenko621fc502017-07-24 12:42:17 +02006911 debug_printf_redir("redirect_fd %d: previous fd is moved to %d (-1 if it was closed)\n", fd, moved_to);
6912 if (moved_to < 0 && errno != EBADF)
Denys Vlasenko2db74612017-07-07 22:07:28 +02006913 xfunc_die();
Denys Vlasenko621fc502017-07-24 12:42:17 +02006914 return append_squirrel(sq, i, fd, moved_to);
Denys Vlasenko2db74612017-07-07 22:07:28 +02006915}
6916
Denys Vlasenko657e9002017-07-30 23:34:04 +02006917static struct squirrel *add_squirrel_closed(struct squirrel *sq, int fd)
6918{
6919 int i;
6920
Denys Vlasenkod16e6122017-08-11 15:41:39 +02006921 i = 0;
6922 if (sq) for (; sq[i].orig_fd >= 0; i++) {
Denys Vlasenko657e9002017-07-30 23:34:04 +02006923 /* If we collide with an already moved fd... */
6924 if (fd == sq[i].orig_fd) {
6925 /* Examples:
6926 * "echo 3>FILE 3>&- 3>FILE"
6927 * "echo 3>&- 3>FILE"
6928 * No need for last redirect to insert
6929 * another "need to close 3" indicator.
6930 */
6931 debug_printf_redir("redirect_fd %d: already moved or closed\n", fd);
6932 return sq;
6933 }
Denys Vlasenko657e9002017-07-30 23:34:04 +02006934 }
6935
6936 debug_printf_redir("redirect_fd %d: previous fd was closed\n", fd);
6937 return append_squirrel(sq, i, fd, -1);
6938}
6939
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006940/* fd: redirect wants this fd to be used (e.g. 3>file).
6941 * Move all conflicting internally used fds,
6942 * and remember them so that we can restore them later.
6943 */
Denys Vlasenko657e9002017-07-30 23:34:04 +02006944static int save_fd_on_redirect(int fd, int avoid_fd, struct squirrel **sqp)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006945{
Denys Vlasenko2db74612017-07-07 22:07:28 +02006946 if (avoid_fd < 9) /* the important case here is that it can be -1 */
6947 avoid_fd = 9;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006948
6949#if ENABLE_HUSH_INTERACTIVE
Denys Vlasenko32fdf2f2017-07-31 04:32:06 +02006950 if (fd == G.interactive_fd) {
6951 /* Testcase: "ls -l /proc/$$/fd 255>&-" should work */
Denys Vlasenko657e9002017-07-30 23:34:04 +02006952 G.interactive_fd = xdup_CLOEXEC_and_close(G.interactive_fd, avoid_fd);
Denys Vlasenko2db74612017-07-07 22:07:28 +02006953 debug_printf_redir("redirect_fd %d: matches interactive_fd, moving it to %d\n", fd, G.interactive_fd);
6954 return 1; /* "we closed fd" */
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006955 }
6956#endif
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006957 /* Are we called from setup_redirects(squirrel==NULL)? Two cases:
6958 * (1) Redirect in a forked child. No need to save FILEs' fds,
6959 * we aren't going to use them anymore, ok to trash.
Denys Vlasenko2db74612017-07-07 22:07:28 +02006960 * (2) "exec 3>FILE". Bummer. We can save script FILEs' fds,
6961 * but how are we doing to restore them?
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006962 * "fileno(fd) = new_fd" can't be done.
6963 */
Denys Vlasenko2db74612017-07-07 22:07:28 +02006964 if (!sqp)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006965 return 0;
6966
Denys Vlasenko2db74612017-07-07 22:07:28 +02006967 /* If this one of script's fds? */
6968 if (save_FILEs_on_redirect(fd, avoid_fd))
6969 return 1; /* yes. "we closed fd" */
6970
6971 /* Check whether it collides with any open fds (e.g. stdio), save fds as needed */
6972 *sqp = add_squirrel(*sqp, fd, avoid_fd);
6973 return 0; /* "we did not close fd" */
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006974}
6975
Denys Vlasenko2db74612017-07-07 22:07:28 +02006976static void restore_redirects(struct squirrel *sq)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006977{
Denys Vlasenko2db74612017-07-07 22:07:28 +02006978 if (sq) {
Denys Vlasenko32fdf2f2017-07-31 04:32:06 +02006979 int i;
6980 for (i = 0; sq[i].orig_fd >= 0; i++) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02006981 if (sq[i].moved_to >= 0) {
6982 /* We simply die on error */
6983 debug_printf_redir("restoring redirected fd from %d to %d\n", sq[i].moved_to, sq[i].orig_fd);
6984 xmove_fd(sq[i].moved_to, sq[i].orig_fd);
6985 } else {
6986 /* cmd1 9>FILE; cmd2_should_see_fd9_closed */
6987 debug_printf_redir("restoring redirected fd %d: closing it\n", sq[i].orig_fd);
6988 close(sq[i].orig_fd);
6989 }
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006990 }
Denys Vlasenko2db74612017-07-07 22:07:28 +02006991 free(sq);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006992 }
6993
Denys Vlasenko2db74612017-07-07 22:07:28 +02006994 /* If moved, G.interactive_fd stays on new fd, not restoring it */
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006995
6996 restore_redirected_FILEs();
6997}
6998
Denys Vlasenkobf1c3442017-07-31 04:54:53 +02006999#if ENABLE_FEATURE_SH_STANDALONE && BB_MMU
Denys Vlasenko5b3d2eb2017-07-31 18:02:28 +02007000static void close_saved_fds_and_FILE_fds(void)
Denys Vlasenkobf1c3442017-07-31 04:54:53 +02007001{
7002 if (G_interactive_fd)
7003 close(G_interactive_fd);
7004 close_all_FILE_list();
7005}
7006#endif
7007
Denys Vlasenko32fdf2f2017-07-31 04:32:06 +02007008static int internally_opened_fd(int fd, struct squirrel *sq)
7009{
7010 int i;
7011
7012#if ENABLE_HUSH_INTERACTIVE
7013 if (fd == G.interactive_fd)
7014 return 1;
7015#endif
7016 /* If this one of script's fds? */
7017 if (fd_in_FILEs(fd))
7018 return 1;
7019
7020 if (sq) for (i = 0; sq[i].orig_fd >= 0; i++) {
7021 if (fd == sq[i].moved_to)
7022 return 1;
7023 }
7024 return 0;
7025}
7026
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007027/* squirrel != NULL means we squirrel away copies of stdin, stdout,
7028 * and stderr if they are redirected. */
Denys Vlasenko2db74612017-07-07 22:07:28 +02007029static int setup_redirects(struct command *prog, struct squirrel **sqp)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007030{
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007031 struct redir_struct *redir;
7032
7033 for (redir = prog->redirects; redir; redir = redir->next) {
Denys Vlasenko657e9002017-07-30 23:34:04 +02007034 int newfd;
7035 int closed;
7036
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007037 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02007038 /* "rd_fd<<HERE" case */
Denys Vlasenko657e9002017-07-30 23:34:04 +02007039 save_fd_on_redirect(redir->rd_fd, /*avoid:*/ 0, sqp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007040 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
7041 * of the heredoc */
7042 debug_printf_parse("set heredoc '%s'\n",
7043 redir->rd_filename);
7044 setup_heredoc(redir);
7045 continue;
7046 }
7047
7048 if (redir->rd_dup == REDIRFD_TO_FILE) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02007049 /* "rd_fd<*>file" case (<*> is <,>,>>,<>) */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007050 char *p;
Denys Vlasenko657e9002017-07-30 23:34:04 +02007051 int mode;
7052
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007053 if (redir->rd_filename == NULL) {
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02007054 /*
7055 * Examples:
7056 * "cmd >" (no filename)
7057 * "cmd > <file" (2nd redirect starts too early)
7058 */
Denys Vlasenko39701202017-08-02 19:44:05 +02007059 syntax_error("invalid redirect");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007060 continue;
7061 }
7062 mode = redir_table[redir->rd_type].mode;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02007063 p = expand_string_to_string(redir->rd_filename, /*unbackslash:*/ 1);
Denys Vlasenko657e9002017-07-30 23:34:04 +02007064 newfd = open_or_warn(p, mode);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007065 free(p);
Denys Vlasenko657e9002017-07-30 23:34:04 +02007066 if (newfd < 0) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02007067 /* Error message from open_or_warn can be lost
7068 * if stderr has been redirected, but bash
7069 * and ash both lose it as well
7070 * (though zsh doesn't!)
7071 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007072 return 1;
7073 }
Denys Vlasenko657e9002017-07-30 23:34:04 +02007074 if (newfd == redir->rd_fd && sqp) {
Denys Vlasenko621fc502017-07-24 12:42:17 +02007075 /* open() gave us precisely the fd we wanted.
7076 * This means that this fd was not busy
7077 * (not opened to anywhere).
7078 * Remember to close it on restore:
7079 */
Denys Vlasenko657e9002017-07-30 23:34:04 +02007080 *sqp = add_squirrel_closed(*sqp, newfd);
7081 debug_printf_redir("redir to previously closed fd %d\n", newfd);
Denys Vlasenko621fc502017-07-24 12:42:17 +02007082 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007083 } else {
Denys Vlasenko657e9002017-07-30 23:34:04 +02007084 /* "rd_fd>&rd_dup" or "rd_fd>&-" case */
7085 newfd = redir->rd_dup;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007086 }
7087
Denys Vlasenko657e9002017-07-30 23:34:04 +02007088 if (newfd == redir->rd_fd)
7089 continue;
7090
7091 /* if "N>FILE": move newfd to redir->rd_fd */
7092 /* if "N>&M": dup newfd to redir->rd_fd */
7093 /* if "N>&-": close redir->rd_fd (newfd is REDIRFD_CLOSE) */
7094
7095 closed = save_fd_on_redirect(redir->rd_fd, /*avoid:*/ newfd, sqp);
7096 if (newfd == REDIRFD_CLOSE) {
7097 /* "N>&-" means "close me" */
7098 if (!closed) {
7099 /* ^^^ optimization: saving may already
7100 * have closed it. If not... */
7101 close(redir->rd_fd);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007102 }
Denys Vlasenko657e9002017-07-30 23:34:04 +02007103 /* Sometimes we do another close on restore, getting EBADF.
7104 * Consider "echo 3>FILE 3>&-"
7105 * first redirect remembers "need to close 3",
7106 * and second redirect closes 3! Restore code then closes 3 again.
7107 */
7108 } else {
Denys Vlasenko32fdf2f2017-07-31 04:32:06 +02007109 /* if newfd is a script fd or saved fd, simulate EBADF */
7110 if (internally_opened_fd(newfd, sqp ? *sqp : NULL)) {
7111 //errno = EBADF;
7112 //bb_perror_msg_and_die("can't duplicate file descriptor");
7113 newfd = -1; /* same effect as code above */
7114 }
Denys Vlasenko657e9002017-07-30 23:34:04 +02007115 xdup2(newfd, redir->rd_fd);
7116 if (redir->rd_dup == REDIRFD_TO_FILE)
7117 /* "rd_fd > FILE" */
7118 close(newfd);
7119 /* else: "rd_fd > rd_dup" */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007120 }
7121 }
7122 return 0;
7123}
7124
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007125static char *find_in_path(const char *arg)
7126{
7127 char *ret = NULL;
7128 const char *PATH = get_local_var_value("PATH");
7129
7130 if (!PATH)
7131 return NULL;
7132
7133 while (1) {
7134 const char *end = strchrnul(PATH, ':');
7135 int sz = end - PATH; /* must be int! */
7136
7137 free(ret);
7138 if (sz != 0) {
7139 ret = xasprintf("%.*s/%s", sz, PATH, arg);
7140 } else {
7141 /* We have xxx::yyyy in $PATH,
7142 * it means "use current dir" */
7143 ret = xstrdup(arg);
7144 }
7145 if (access(ret, F_OK) == 0)
7146 break;
7147
7148 if (*end == '\0') {
7149 free(ret);
7150 return NULL;
7151 }
7152 PATH = end + 1;
7153 }
7154
7155 return ret;
7156}
7157
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02007158static const struct built_in_command *find_builtin_helper(const char *name,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007159 const struct built_in_command *x,
7160 const struct built_in_command *end)
7161{
7162 while (x != end) {
7163 if (strcmp(name, x->b_cmd) != 0) {
7164 x++;
7165 continue;
7166 }
7167 debug_printf_exec("found builtin '%s'\n", name);
7168 return x;
7169 }
7170 return NULL;
7171}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02007172static const struct built_in_command *find_builtin1(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007173{
7174 return find_builtin_helper(name, bltins1, &bltins1[ARRAY_SIZE(bltins1)]);
7175}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02007176static const struct built_in_command *find_builtin(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007177{
7178 const struct built_in_command *x = find_builtin1(name);
7179 if (x)
7180 return x;
7181 return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]);
7182}
7183
7184#if ENABLE_HUSH_FUNCTIONS
7185static struct function **find_function_slot(const char *name)
7186{
Denys Vlasenko33f7c8f2018-03-06 17:21:57 +01007187 struct function *funcp;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007188 struct function **funcpp = &G.top_func;
Denys Vlasenko33f7c8f2018-03-06 17:21:57 +01007189
7190 while ((funcp = *funcpp) != NULL) {
7191 if (strcmp(name, funcp->name) == 0) {
7192 debug_printf_exec("found function '%s'\n", name);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007193 break;
7194 }
Denys Vlasenko33f7c8f2018-03-06 17:21:57 +01007195 funcpp = &funcp->next;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007196 }
7197 return funcpp;
7198}
7199
Denys Vlasenko33f7c8f2018-03-06 17:21:57 +01007200static ALWAYS_INLINE const struct function *find_function(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007201{
7202 const struct function *funcp = *find_function_slot(name);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007203 return funcp;
7204}
7205
7206/* Note: takes ownership on name ptr */
7207static struct function *new_function(char *name)
7208{
7209 struct function **funcpp = find_function_slot(name);
7210 struct function *funcp = *funcpp;
7211
7212 if (funcp != NULL) {
7213 struct command *cmd = funcp->parent_cmd;
7214 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
7215 if (!cmd) {
7216 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
7217 free(funcp->name);
7218 /* Note: if !funcp->body, do not free body_as_string!
7219 * This is a special case of "-F name body" function:
7220 * body_as_string was not malloced! */
7221 if (funcp->body) {
7222 free_pipe_list(funcp->body);
7223# if !BB_MMU
7224 free(funcp->body_as_string);
7225# endif
7226 }
7227 } else {
7228 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
7229 cmd->argv[0] = funcp->name;
7230 cmd->group = funcp->body;
7231# if !BB_MMU
7232 cmd->group_as_string = funcp->body_as_string;
7233# endif
7234 }
7235 } else {
7236 debug_printf_exec("remembering new function '%s'\n", name);
7237 funcp = *funcpp = xzalloc(sizeof(*funcp));
7238 /*funcp->next = NULL;*/
7239 }
7240
7241 funcp->name = name;
7242 return funcp;
7243}
7244
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01007245# if ENABLE_HUSH_UNSET
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007246static void unset_func(const char *name)
7247{
7248 struct function **funcpp = find_function_slot(name);
7249 struct function *funcp = *funcpp;
7250
7251 if (funcp != NULL) {
7252 debug_printf_exec("freeing function '%s'\n", funcp->name);
7253 *funcpp = funcp->next;
7254 /* funcp is unlinked now, deleting it.
7255 * Note: if !funcp->body, the function was created by
7256 * "-F name body", do not free ->body_as_string
7257 * and ->name as they were not malloced. */
7258 if (funcp->body) {
7259 free_pipe_list(funcp->body);
7260 free(funcp->name);
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01007261# if !BB_MMU
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007262 free(funcp->body_as_string);
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01007263# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007264 }
7265 free(funcp);
7266 }
7267}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01007268# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007269
7270# if BB_MMU
7271#define exec_function(to_free, funcp, argv) \
7272 exec_function(funcp, argv)
7273# endif
7274static void exec_function(char ***to_free,
7275 const struct function *funcp,
7276 char **argv) NORETURN;
7277static void exec_function(char ***to_free,
7278 const struct function *funcp,
7279 char **argv)
7280{
7281# if BB_MMU
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02007282 int n;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007283
7284 argv[0] = G.global_argv[0];
7285 G.global_argv = argv;
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02007286 G.global_argc = n = 1 + string_array_len(argv + 1);
Denys Vlasenko5b3d2eb2017-07-31 18:02:28 +02007287
7288// Example when we are here: "cmd | func"
7289// func will run with saved-redirect fds open.
7290// $ f() { echo /proc/self/fd/*; }
7291// $ true | f
7292// /proc/self/fd/0 /proc/self/fd/1 /proc/self/fd/2 /proc/self/fd/255 /proc/self/fd/3
7293// stdio^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ G_interactive_fd^ DIR fd for glob
7294// Same in script:
7295// $ . ./SCRIPT
7296// /proc/self/fd/0 /proc/self/fd/1 /proc/self/fd/2 /proc/self/fd/255 /proc/self/fd/3 /proc/self/fd/4
7297// stdio^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ G_interactive_fd^ opened ./SCRIPT DIR fd for glob
7298// They are CLOEXEC so external programs won't see them, but
7299// for "more correctness" we might want to close those extra fds here:
7300//? close_saved_fds_and_FILE_fds();
7301
7302 /* "we are in function, ok to use return" */
7303 G_flag_return_in_progress = -1;
7304 IF_HUSH_LOCAL(G.func_nest_level++;)
7305
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007306 /* On MMU, funcp->body is always non-NULL */
7307 n = run_list(funcp->body);
7308 fflush_all();
7309 _exit(n);
7310# else
Denys Vlasenko5b3d2eb2017-07-31 18:02:28 +02007311//? close_saved_fds_and_FILE_fds();
7312
7313//TODO: check whether "true | func_with_return" works
7314
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007315 re_execute_shell(to_free,
7316 funcp->body_as_string,
7317 G.global_argv[0],
7318 argv + 1,
7319 NULL);
7320# endif
7321}
7322
7323static int run_function(const struct function *funcp, char **argv)
7324{
7325 int rc;
7326 save_arg_t sv;
7327 smallint sv_flg;
7328
7329 save_and_replace_G_args(&sv, argv);
7330
7331 /* "we are in function, ok to use return" */
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02007332 sv_flg = G_flag_return_in_progress;
7333 G_flag_return_in_progress = -1;
Denys Vlasenko5b3d2eb2017-07-31 18:02:28 +02007334 IF_HUSH_LOCAL(G.func_nest_level++;)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007335
7336 /* On MMU, funcp->body is always non-NULL */
7337# if !BB_MMU
7338 if (!funcp->body) {
7339 /* Function defined by -F */
7340 parse_and_run_string(funcp->body_as_string);
7341 rc = G.last_exitcode;
7342 } else
7343# endif
7344 {
7345 rc = run_list(funcp->body);
7346 }
7347
7348# if ENABLE_HUSH_LOCAL
7349 {
7350 struct variable *var;
7351 struct variable **var_pp;
7352
7353 var_pp = &G.top_var;
7354 while ((var = *var_pp) != NULL) {
7355 if (var->func_nest_level < G.func_nest_level) {
7356 var_pp = &var->next;
7357 continue;
7358 }
7359 /* Unexport */
7360 if (var->flg_export)
7361 bb_unsetenv(var->varstr);
7362 /* Remove from global list */
7363 *var_pp = var->next;
7364 /* Free */
7365 if (!var->max_len)
7366 free(var->varstr);
7367 free(var);
7368 }
7369 G.func_nest_level--;
7370 }
7371# endif
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02007372 G_flag_return_in_progress = sv_flg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007373
7374 restore_G_args(&sv, argv);
7375
7376 return rc;
7377}
7378#endif /* ENABLE_HUSH_FUNCTIONS */
7379
7380
7381#if BB_MMU
7382#define exec_builtin(to_free, x, argv) \
7383 exec_builtin(x, argv)
7384#else
7385#define exec_builtin(to_free, x, argv) \
7386 exec_builtin(to_free, argv)
7387#endif
7388static void exec_builtin(char ***to_free,
7389 const struct built_in_command *x,
7390 char **argv) NORETURN;
7391static void exec_builtin(char ***to_free,
7392 const struct built_in_command *x,
7393 char **argv)
7394{
7395#if BB_MMU
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01007396 int rcode;
7397 fflush_all();
Denys Vlasenko5b3d2eb2017-07-31 18:02:28 +02007398//? close_saved_fds_and_FILE_fds();
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01007399 rcode = x->b_function(argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007400 fflush_all();
7401 _exit(rcode);
7402#else
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01007403 fflush_all();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007404 /* On NOMMU, we must never block!
7405 * Example: { sleep 99 | read line; } & echo Ok
7406 */
7407 re_execute_shell(to_free,
7408 argv[0],
7409 G.global_argv[0],
7410 G.global_argv + 1,
7411 argv);
7412#endif
7413}
7414
7415
7416static void execvp_or_die(char **argv) NORETURN;
7417static void execvp_or_die(char **argv)
7418{
Denys Vlasenko04465da2016-10-03 01:01:15 +02007419 int e;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007420 debug_printf_exec("execing '%s'\n", argv[0]);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02007421 /* Don't propagate SIG_IGN to the child */
7422 if (SPECIAL_JOBSTOP_SIGS != 0)
7423 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007424 execvp(argv[0], argv);
Denys Vlasenko04465da2016-10-03 01:01:15 +02007425 e = 2;
7426 if (errno == EACCES) e = 126;
7427 if (errno == ENOENT) e = 127;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007428 bb_perror_msg("can't execute '%s'", argv[0]);
Denys Vlasenko04465da2016-10-03 01:01:15 +02007429 _exit(e);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007430}
7431
7432#if ENABLE_HUSH_MODE_X
7433static void dump_cmd_in_x_mode(char **argv)
7434{
7435 if (G_x_mode && argv) {
7436 /* We want to output the line in one write op */
7437 char *buf, *p;
7438 int len;
7439 int n;
7440
7441 len = 3;
7442 n = 0;
7443 while (argv[n])
7444 len += strlen(argv[n++]) + 1;
7445 buf = xmalloc(len);
7446 buf[0] = '+';
7447 p = buf + 1;
7448 n = 0;
7449 while (argv[n])
7450 p += sprintf(p, " %s", argv[n++]);
7451 *p++ = '\n';
7452 *p = '\0';
7453 fputs(buf, stderr);
7454 free(buf);
7455 }
7456}
7457#else
7458# define dump_cmd_in_x_mode(argv) ((void)0)
7459#endif
7460
Denys Vlasenko57000292018-01-12 14:41:45 +01007461#if ENABLE_HUSH_COMMAND
7462static void if_command_vV_print_and_exit(char opt_vV, char *cmd, const char *explanation)
7463{
7464 char *to_free;
Denys Vlasenkoafb73a22018-01-12 16:17:59 +01007465
Denys Vlasenko57000292018-01-12 14:41:45 +01007466 if (!opt_vV)
7467 return;
7468
7469 to_free = NULL;
7470 if (!explanation) {
7471 char *path = getenv("PATH");
7472 explanation = to_free = find_executable(cmd, &path); /* path == NULL is ok */
Denys Vlasenkoafb73a22018-01-12 16:17:59 +01007473 if (!explanation)
7474 _exit(1); /* PROG was not found */
Denys Vlasenko57000292018-01-12 14:41:45 +01007475 if (opt_vV != 'V')
7476 cmd = to_free; /* -v PROG prints "/path/to/PROG" */
7477 }
Denys Vlasenkoafb73a22018-01-12 16:17:59 +01007478 printf((opt_vV == 'V') ? "%s is %s\n" : "%s\n", cmd, explanation);
Denys Vlasenko57000292018-01-12 14:41:45 +01007479 free(to_free);
7480 fflush_all();
Denys Vlasenkoafb73a22018-01-12 16:17:59 +01007481 _exit(0);
Denys Vlasenko57000292018-01-12 14:41:45 +01007482}
7483#else
7484# define if_command_vV_print_and_exit(a,b,c) ((void)0)
7485#endif
7486
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007487#if BB_MMU
7488#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
7489 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
7490#define pseudo_exec(nommu_save, command, argv_expanded) \
7491 pseudo_exec(command, argv_expanded)
7492#endif
7493
7494/* Called after [v]fork() in run_pipe, or from builtin_exec.
7495 * Never returns.
7496 * Don't exit() here. If you don't exec, use _exit instead.
7497 * The at_exit handlers apparently confuse the calling process,
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02007498 * in particular stdin handling. Not sure why? -- because of vfork! (vda)
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02007499 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007500static void pseudo_exec_argv(nommu_save_t *nommu_save,
7501 char **argv, int assignment_cnt,
7502 char **argv_expanded) NORETURN;
7503static NOINLINE void pseudo_exec_argv(nommu_save_t *nommu_save,
7504 char **argv, int assignment_cnt,
7505 char **argv_expanded)
7506{
Denys Vlasenko57000292018-01-12 14:41:45 +01007507 const struct built_in_command *x;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007508 char **new_env;
Denys Vlasenko57000292018-01-12 14:41:45 +01007509#if ENABLE_HUSH_COMMAND
7510 char opt_vV = 0;
7511#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007512
7513 new_env = expand_assignments(argv, assignment_cnt);
7514 dump_cmd_in_x_mode(new_env);
7515
7516 if (!argv[assignment_cnt]) {
7517 /* Case when we are here: ... | var=val | ...
7518 * (note that we do not exit early, i.e., do not optimize out
7519 * expand_assignments(): think about ... | var=`sleep 1` | ...
7520 */
7521 free_strings(new_env);
7522 _exit(EXIT_SUCCESS);
7523 }
7524
7525#if BB_MMU
7526 set_vars_and_save_old(new_env);
7527 free(new_env); /* optional */
7528 /* we can also destroy set_vars_and_save_old's return value,
7529 * to save memory */
7530#else
7531 nommu_save->new_env = new_env;
7532 nommu_save->old_vars = set_vars_and_save_old(new_env);
7533#endif
7534
7535 if (argv_expanded) {
7536 argv = argv_expanded;
7537 } else {
7538 argv = expand_strvec_to_strvec(argv + assignment_cnt);
7539#if !BB_MMU
7540 nommu_save->argv = argv;
7541#endif
7542 }
7543 dump_cmd_in_x_mode(argv);
7544
7545#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
7546 if (strchr(argv[0], '/') != NULL)
7547 goto skip;
7548#endif
7549
Denys Vlasenko75481d32017-07-31 05:27:09 +02007550#if ENABLE_HUSH_FUNCTIONS
7551 /* Check if the command matches any functions (this goes before bltins) */
7552 {
7553 const struct function *funcp = find_function(argv[0]);
7554 if (funcp) {
7555 exec_function(&nommu_save->argv_from_re_execing, funcp, argv);
7556 }
7557 }
7558#endif
7559
Denys Vlasenko57000292018-01-12 14:41:45 +01007560#if ENABLE_HUSH_COMMAND
7561 /* "command BAR": run BAR without looking it up among functions
7562 * "command -v BAR": print "BAR" or "/path/to/BAR"; or exit 1
7563 * "command -V BAR": print "BAR is {a function,a shell builtin,/path/to/BAR}"
7564 */
7565 while (strcmp(argv[0], "command") == 0 && argv[1]) {
7566 char *p;
7567
7568 argv++;
7569 p = *argv;
7570 if (p[0] != '-' || !p[1])
7571 continue; /* bash allows "command command command [-OPT] BAR" */
7572
7573 for (;;) {
7574 p++;
7575 switch (*p) {
7576 case '\0':
7577 argv++;
7578 p = *argv;
7579 if (p[0] != '-' || !p[1])
7580 goto after_opts;
7581 continue; /* next arg is also -opts, process it too */
7582 case 'v':
7583 case 'V':
7584 opt_vV = *p;
7585 continue;
7586 default:
7587 bb_error_msg_and_die("%s: %s: invalid option", "command", argv[0]);
7588 }
7589 }
7590 }
7591 after_opts:
7592# if ENABLE_HUSH_FUNCTIONS
7593 if (opt_vV && find_function(argv[0]))
7594 if_command_vV_print_and_exit(opt_vV, argv[0], "a function");
7595# endif
7596#endif
7597
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007598 /* Check if the command matches any of the builtins.
7599 * Depending on context, this might be redundant. But it's
7600 * easier to waste a few CPU cycles than it is to figure out
7601 * if this is one of those cases.
7602 */
Denys Vlasenko57000292018-01-12 14:41:45 +01007603 /* Why "BB_MMU ? :" difference in logic? -
7604 * On NOMMU, it is more expensive to re-execute shell
7605 * just in order to run echo or test builtin.
7606 * It's better to skip it here and run corresponding
7607 * non-builtin later. */
7608 x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]);
7609 if (x) {
7610 if_command_vV_print_and_exit(opt_vV, argv[0], "a shell builtin");
7611 exec_builtin(&nommu_save->argv_from_re_execing, x, argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007612 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007613
7614#if ENABLE_FEATURE_SH_STANDALONE
7615 /* Check if the command matches any busybox applets */
7616 {
7617 int a = find_applet_by_name(argv[0]);
7618 if (a >= 0) {
Denys Vlasenko57000292018-01-12 14:41:45 +01007619 if_command_vV_print_and_exit(opt_vV, argv[0], "an applet");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007620# if BB_MMU /* see above why on NOMMU it is not allowed */
7621 if (APPLET_IS_NOEXEC(a)) {
Denys Vlasenkobf1c3442017-07-31 04:54:53 +02007622 /* Do not leak open fds from opened script files etc.
7623 * Testcase: interactive "ls -l /proc/self/fd"
7624 * should not show tty fd open.
7625 */
Denys Vlasenko5b3d2eb2017-07-31 18:02:28 +02007626 close_saved_fds_and_FILE_fds();
Denys Vlasenko75481d32017-07-31 05:27:09 +02007627//FIXME: should also close saved redir fds
Denys Vlasenko9acd63c2018-03-28 18:35:07 +02007628//This casuses test failures in
7629//redir_children_should_not_see_saved_fd_2.tests
7630//redir_children_should_not_see_saved_fd_3.tests
7631//if you replace "busybox find" with just "find" in them
Denys Vlasenko7c40ddd2017-08-02 16:37:39 +02007632 /* Without this, "rm -i FILE" can't be ^C'ed: */
7633 switch_off_special_sigs(G.special_sig_mask);
Denys Vlasenkoc9c1ccc2017-08-07 18:59:35 +02007634 debug_printf_exec("running applet '%s'\n", argv[0]);
Denys Vlasenko80e8e3c2017-08-07 19:24:57 +02007635 run_noexec_applet_and_exit(a, argv[0], argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007636 }
7637# endif
7638 /* Re-exec ourselves */
7639 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02007640 /* Don't propagate SIG_IGN to the child */
7641 if (SPECIAL_JOBSTOP_SIGS != 0)
7642 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007643 execv(bb_busybox_exec_path, argv);
7644 /* If they called chroot or otherwise made the binary no longer
7645 * executable, fall through */
7646 }
7647 }
7648#endif
7649
7650#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
7651 skip:
7652#endif
Denys Vlasenko57000292018-01-12 14:41:45 +01007653 if_command_vV_print_and_exit(opt_vV, argv[0], NULL);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007654 execvp_or_die(argv);
7655}
7656
7657/* Called after [v]fork() in run_pipe
7658 */
7659static void pseudo_exec(nommu_save_t *nommu_save,
7660 struct command *command,
7661 char **argv_expanded) NORETURN;
7662static void pseudo_exec(nommu_save_t *nommu_save,
7663 struct command *command,
7664 char **argv_expanded)
7665{
7666 if (command->argv) {
7667 pseudo_exec_argv(nommu_save, command->argv,
7668 command->assignment_cnt, argv_expanded);
7669 }
7670
7671 if (command->group) {
7672 /* Cases when we are here:
7673 * ( list )
7674 * { list } &
7675 * ... | ( list ) | ...
7676 * ... | { list } | ...
7677 */
7678#if BB_MMU
7679 int rcode;
7680 debug_printf_exec("pseudo_exec: run_list\n");
7681 reset_traps_to_defaults();
7682 rcode = run_list(command->group);
7683 /* OK to leak memory by not calling free_pipe_list,
7684 * since this process is about to exit */
7685 _exit(rcode);
7686#else
7687 re_execute_shell(&nommu_save->argv_from_re_execing,
7688 command->group_as_string,
7689 G.global_argv[0],
7690 G.global_argv + 1,
7691 NULL);
7692#endif
7693 }
7694
7695 /* Case when we are here: ... | >file */
7696 debug_printf_exec("pseudo_exec'ed null command\n");
7697 _exit(EXIT_SUCCESS);
7698}
7699
7700#if ENABLE_HUSH_JOB
7701static const char *get_cmdtext(struct pipe *pi)
7702{
7703 char **argv;
7704 char *p;
7705 int len;
7706
7707 /* This is subtle. ->cmdtext is created only on first backgrounding.
7708 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
7709 * On subsequent bg argv is trashed, but we won't use it */
7710 if (pi->cmdtext)
7711 return pi->cmdtext;
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007712
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007713 argv = pi->cmds[0].argv;
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007714 if (!argv) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007715 pi->cmdtext = xzalloc(1);
7716 return pi->cmdtext;
7717 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007718 len = 0;
7719 do {
7720 len += strlen(*argv) + 1;
7721 } while (*++argv);
7722 p = xmalloc(len);
7723 pi->cmdtext = p;
7724 argv = pi->cmds[0].argv;
7725 do {
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007726 p = stpcpy(p, *argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007727 *p++ = ' ';
7728 } while (*++argv);
7729 p[-1] = '\0';
7730 return pi->cmdtext;
7731}
7732
Denys Vlasenko2ed74e22017-07-14 19:58:46 +02007733static void remove_job_from_table(struct pipe *pi)
7734{
7735 struct pipe *prev_pipe;
7736
7737 if (pi == G.job_list) {
7738 G.job_list = pi->next;
7739 } else {
7740 prev_pipe = G.job_list;
7741 while (prev_pipe->next != pi)
7742 prev_pipe = prev_pipe->next;
7743 prev_pipe->next = pi->next;
7744 }
7745 G.last_jobid = 0;
7746 if (G.job_list)
7747 G.last_jobid = G.job_list->jobid;
7748}
7749
7750static void delete_finished_job(struct pipe *pi)
7751{
7752 remove_job_from_table(pi);
7753 free_pipe(pi);
7754}
7755
7756static void clean_up_last_dead_job(void)
7757{
7758 if (G.job_list && !G.job_list->alive_cmds)
7759 delete_finished_job(G.job_list);
7760}
7761
Denys Vlasenko16096292017-07-10 10:00:28 +02007762static void insert_job_into_table(struct pipe *pi)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007763{
7764 struct pipe *job, **jobp;
7765 int i;
7766
Denys Vlasenko2ed74e22017-07-14 19:58:46 +02007767 clean_up_last_dead_job();
7768
Denys Vlasenko9e55a152017-07-10 10:01:12 +02007769 /* Find the end of the list, and find next job ID to use */
7770 i = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007771 jobp = &G.job_list;
Denys Vlasenko9e55a152017-07-10 10:01:12 +02007772 while ((job = *jobp) != NULL) {
7773 if (job->jobid > i)
7774 i = job->jobid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007775 jobp = &job->next;
Denys Vlasenko9e55a152017-07-10 10:01:12 +02007776 }
7777 pi->jobid = i + 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007778
Denys Vlasenko9e55a152017-07-10 10:01:12 +02007779 /* Create a new job struct at the end */
7780 job = *jobp = xmemdup(pi, sizeof(*pi));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007781 job->next = NULL;
7782 job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
7783 /* Cannot copy entire pi->cmds[] vector! This causes double frees */
7784 for (i = 0; i < pi->num_cmds; i++) {
7785 job->cmds[i].pid = pi->cmds[i].pid;
7786 /* all other fields are not used and stay zero */
7787 }
7788 job->cmdtext = xstrdup(get_cmdtext(pi));
7789
7790 if (G_interactive_fd)
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01007791 printf("[%u] %u %s\n", job->jobid, (unsigned)job->cmds[0].pid, job->cmdtext);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007792 G.last_jobid = job->jobid;
7793}
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007794#endif /* JOB */
7795
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007796static int job_exited_or_stopped(struct pipe *pi)
7797{
7798 int rcode, i;
7799
7800 if (pi->alive_cmds != pi->stopped_cmds)
7801 return -1;
7802
7803 /* All processes in fg pipe have exited or stopped */
7804 rcode = 0;
7805 i = pi->num_cmds;
7806 while (--i >= 0) {
7807 rcode = pi->cmds[i].cmd_exitcode;
7808 /* usually last process gives overall exitstatus,
7809 * but with "set -o pipefail", last *failed* process does */
7810 if (G.o_opt[OPT_O_PIPEFAIL] == 0 || rcode != 0)
7811 break;
7812 }
7813 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7814 return rcode;
7815}
7816
Denys Vlasenko7e675362016-10-28 21:57:31 +02007817static int process_wait_result(struct pipe *fg_pipe, pid_t childpid, int status)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007818{
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007819#if ENABLE_HUSH_JOB
7820 struct pipe *pi;
7821#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02007822 int i, dead;
7823
7824 dead = WIFEXITED(status) || WIFSIGNALED(status);
7825
7826#if DEBUG_JOBS
7827 if (WIFSTOPPED(status))
7828 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
7829 childpid, WSTOPSIG(status), WEXITSTATUS(status));
7830 if (WIFSIGNALED(status))
7831 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
7832 childpid, WTERMSIG(status), WEXITSTATUS(status));
7833 if (WIFEXITED(status))
7834 debug_printf_jobs("pid %d exited, exitcode %d\n",
7835 childpid, WEXITSTATUS(status));
7836#endif
7837 /* Were we asked to wait for a fg pipe? */
7838 if (fg_pipe) {
7839 i = fg_pipe->num_cmds;
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007840
Denys Vlasenko7e675362016-10-28 21:57:31 +02007841 while (--i >= 0) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007842 int rcode;
7843
Denys Vlasenko7e675362016-10-28 21:57:31 +02007844 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
7845 if (fg_pipe->cmds[i].pid != childpid)
7846 continue;
7847 if (dead) {
7848 int ex;
7849 fg_pipe->cmds[i].pid = 0;
7850 fg_pipe->alive_cmds--;
7851 ex = WEXITSTATUS(status);
7852 /* bash prints killer signal's name for *last*
7853 * process in pipe (prints just newline for SIGINT/SIGPIPE).
7854 * Mimic this. Example: "sleep 5" + (^\ or kill -QUIT)
7855 */
7856 if (WIFSIGNALED(status)) {
7857 int sig = WTERMSIG(status);
7858 if (i == fg_pipe->num_cmds-1)
7859 /* TODO: use strsignal() instead for bash compat? but that's bloat... */
7860 puts(sig == SIGINT || sig == SIGPIPE ? "" : get_signame(sig));
7861 /* TODO: if (WCOREDUMP(status)) + " (core dumped)"; */
7862 /* TODO: MIPS has 128 sigs (1..128), what if sig==128 here?
7863 * Maybe we need to use sig | 128? */
7864 ex = sig + 128;
7865 }
7866 fg_pipe->cmds[i].cmd_exitcode = ex;
7867 } else {
7868 fg_pipe->stopped_cmds++;
7869 }
7870 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
7871 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007872 rcode = job_exited_or_stopped(fg_pipe);
7873 if (rcode >= 0) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007874/* Note: *non-interactive* bash does not continue if all processes in fg pipe
7875 * are stopped. Testcase: "cat | cat" in a script (not on command line!)
7876 * and "killall -STOP cat" */
7877 if (G_interactive_fd) {
7878#if ENABLE_HUSH_JOB
7879 if (fg_pipe->alive_cmds != 0)
Denys Vlasenko16096292017-07-10 10:00:28 +02007880 insert_job_into_table(fg_pipe);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007881#endif
7882 return rcode;
7883 }
7884 if (fg_pipe->alive_cmds == 0)
7885 return rcode;
7886 }
7887 /* There are still running processes in the fg_pipe */
7888 return -1;
7889 }
Denys Vlasenko10ad6222017-04-17 16:13:32 +02007890 /* It wasn't in fg_pipe, look for process in bg pipes */
Denys Vlasenko7e675362016-10-28 21:57:31 +02007891 }
7892
7893#if ENABLE_HUSH_JOB
7894 /* We were asked to wait for bg or orphaned children */
7895 /* No need to remember exitcode in this case */
7896 for (pi = G.job_list; pi; pi = pi->next) {
7897 for (i = 0; i < pi->num_cmds; i++) {
7898 if (pi->cmds[i].pid == childpid)
7899 goto found_pi_and_prognum;
7900 }
7901 }
7902 /* Happens when shell is used as init process (init=/bin/sh) */
7903 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
7904 return -1; /* this wasn't a process from fg_pipe */
7905
7906 found_pi_and_prognum:
7907 if (dead) {
7908 /* child exited */
Denys Vlasenko840a4352017-07-07 22:56:02 +02007909 int rcode = WEXITSTATUS(status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007910 if (WIFSIGNALED(status))
Denys Vlasenko840a4352017-07-07 22:56:02 +02007911 rcode = 128 + WTERMSIG(status);
7912 pi->cmds[i].cmd_exitcode = rcode;
7913 if (G.last_bg_pid == pi->cmds[i].pid)
7914 G.last_bg_pid_exitcode = rcode;
7915 pi->cmds[i].pid = 0;
Denys Vlasenko7e675362016-10-28 21:57:31 +02007916 pi->alive_cmds--;
7917 if (!pi->alive_cmds) {
Denys Vlasenko2ed74e22017-07-14 19:58:46 +02007918 if (G_interactive_fd) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007919 printf(JOB_STATUS_FORMAT, pi->jobid,
7920 "Done", pi->cmdtext);
Denys Vlasenko2ed74e22017-07-14 19:58:46 +02007921 delete_finished_job(pi);
7922 } else {
7923/*
7924 * bash deletes finished jobs from job table only in interactive mode,
7925 * after "jobs" cmd, or if pid of a new process matches one of the old ones
7926 * (see cleanup_dead_jobs(), delete_old_job(), J_NOTIFIED in bash source).
7927 * Testcase script: "(exit 3) & sleep 1; wait %1; echo $?" prints 3 in bash.
7928 * We only retain one "dead" job, if it's the single job on the list.
7929 * This covers most of real-world scenarios where this is useful.
7930 */
7931 if (pi != G.job_list)
7932 delete_finished_job(pi);
7933 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007934 }
7935 } else {
7936 /* child stopped */
7937 pi->stopped_cmds++;
7938 }
7939#endif
7940 return -1; /* this wasn't a process from fg_pipe */
7941}
7942
7943/* Check to see if any processes have exited -- if they have,
7944 * figure out why and see if a job has completed.
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007945 *
7946 * If non-NULL fg_pipe: wait for its completion or stop.
7947 * Return its exitcode or zero if stopped.
7948 *
7949 * Alternatively (fg_pipe == NULL, waitfor_pid != 0):
7950 * waitpid(WNOHANG), if waitfor_pid exits or stops, return exitcode+1,
7951 * else return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for)
7952 * or 0 if no children changed status.
7953 *
7954 * Alternatively (fg_pipe == NULL, waitfor_pid == 0),
7955 * return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for)
7956 * or 0 if no children changed status.
Denys Vlasenko7e675362016-10-28 21:57:31 +02007957 */
7958static int checkjobs(struct pipe *fg_pipe, pid_t waitfor_pid)
7959{
7960 int attributes;
7961 int status;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007962 int rcode = 0;
7963
7964 debug_printf_jobs("checkjobs %p\n", fg_pipe);
7965
7966 attributes = WUNTRACED;
7967 if (fg_pipe == NULL)
7968 attributes |= WNOHANG;
7969
7970 errno = 0;
7971#if ENABLE_HUSH_FAST
7972 if (G.handled_SIGCHLD == G.count_SIGCHLD) {
7973//bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p",
7974//getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe);
7975 /* There was neither fork nor SIGCHLD since last waitpid */
7976 /* Avoid doing waitpid syscall if possible */
7977 if (!G.we_have_children) {
7978 errno = ECHILD;
7979 return -1;
7980 }
7981 if (fg_pipe == NULL) { /* is WNOHANG set? */
7982 /* We have children, but they did not exit
7983 * or stop yet (we saw no SIGCHLD) */
7984 return 0;
7985 }
7986 /* else: !WNOHANG, waitpid will block, can't short-circuit */
7987 }
7988#endif
7989
7990/* Do we do this right?
7991 * bash-3.00# sleep 20 | false
7992 * <ctrl-Z pressed>
7993 * [3]+ Stopped sleep 20 | false
7994 * bash-3.00# echo $?
7995 * 1 <========== bg pipe is not fully done, but exitcode is already known!
7996 * [hush 1.14.0: yes we do it right]
7997 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007998 while (1) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007999 pid_t childpid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008000#if ENABLE_HUSH_FAST
Denys Vlasenko7e675362016-10-28 21:57:31 +02008001 int i;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008002 i = G.count_SIGCHLD;
8003#endif
8004 childpid = waitpid(-1, &status, attributes);
8005 if (childpid <= 0) {
8006 if (childpid && errno != ECHILD)
8007 bb_perror_msg("waitpid");
8008#if ENABLE_HUSH_FAST
8009 else { /* Until next SIGCHLD, waitpid's are useless */
8010 G.we_have_children = (childpid == 0);
8011 G.handled_SIGCHLD = i;
8012//bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
8013 }
8014#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02008015 /* ECHILD (no children), or 0 (no change in children status) */
8016 rcode = childpid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008017 break;
8018 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02008019 rcode = process_wait_result(fg_pipe, childpid, status);
8020 if (rcode >= 0) {
8021 /* fg_pipe exited or stopped */
8022 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008023 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02008024 if (childpid == waitfor_pid) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01008025 debug_printf_exec("childpid==waitfor_pid:%d status:0x%08x\n", childpid, status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02008026 rcode = WEXITSTATUS(status);
8027 if (WIFSIGNALED(status))
8028 rcode = 128 + WTERMSIG(status);
Denys Vlasenko62b717b2016-11-07 22:12:18 +01008029 if (WIFSTOPPED(status))
8030 /* bash: "cmd & wait $!" and cmd stops: $? = 128 + stopsig */
8031 rcode = 128 + WSTOPSIG(status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02008032 rcode++;
8033 break; /* "wait PID" called us, give it exitcode+1 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008034 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02008035 /* This wasn't one of our processes, or */
8036 /* fg_pipe still has running processes, do waitpid again */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008037 } /* while (waitpid succeeds)... */
8038
8039 return rcode;
8040}
8041
8042#if ENABLE_HUSH_JOB
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02008043static int checkjobs_and_fg_shell(struct pipe *fg_pipe)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008044{
8045 pid_t p;
Denys Vlasenko7e675362016-10-28 21:57:31 +02008046 int rcode = checkjobs(fg_pipe, 0 /*(no pid to wait for)*/);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008047 if (G_saved_tty_pgrp) {
8048 /* Job finished, move the shell to the foreground */
8049 p = getpgrp(); /* our process group id */
8050 debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p);
8051 tcsetpgrp(G_interactive_fd, p);
8052 }
8053 return rcode;
8054}
8055#endif
8056
8057/* Start all the jobs, but don't wait for anything to finish.
8058 * See checkjobs().
8059 *
8060 * Return code is normally -1, when the caller has to wait for children
8061 * to finish to determine the exit status of the pipe. If the pipe
8062 * is a simple builtin command, however, the action is done by the
8063 * time run_pipe returns, and the exit code is provided as the
8064 * return value.
8065 *
8066 * Returns -1 only if started some children. IOW: we have to
8067 * mask out retvals of builtins etc with 0xff!
8068 *
8069 * The only case when we do not need to [v]fork is when the pipe
8070 * is single, non-backgrounded, non-subshell command. Examples:
8071 * cmd ; ... { list } ; ...
8072 * cmd && ... { list } && ...
8073 * cmd || ... { list } || ...
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01008074 * If it is, then we can run cmd as a builtin, NOFORK,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008075 * or (if SH_STANDALONE) an applet, and we can run the { list }
8076 * with run_list. If it isn't one of these, we fork and exec cmd.
8077 *
8078 * Cases when we must fork:
8079 * non-single: cmd | cmd
8080 * backgrounded: cmd & { list } &
8081 * subshell: ( list ) [&]
8082 */
8083#if !ENABLE_HUSH_MODE_X
Denys Vlasenko26777aa2010-11-22 23:49:10 +01008084#define redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel, argv_expanded) \
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008085 redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel)
8086#endif
8087static int redirect_and_varexp_helper(char ***new_env_p,
8088 struct variable **old_vars_p,
8089 struct command *command,
Denys Vlasenko2db74612017-07-07 22:07:28 +02008090 struct squirrel **sqp,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008091 char **argv_expanded)
8092{
8093 /* setup_redirects acts on file descriptors, not FILEs.
8094 * This is perfect for work that comes after exec().
8095 * Is it really safe for inline use? Experimentally,
8096 * things seem to work. */
Denys Vlasenko2db74612017-07-07 22:07:28 +02008097 int rcode = setup_redirects(command, sqp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008098 if (rcode == 0) {
8099 char **new_env = expand_assignments(command->argv, command->assignment_cnt);
8100 *new_env_p = new_env;
8101 dump_cmd_in_x_mode(new_env);
8102 dump_cmd_in_x_mode(argv_expanded);
8103 if (old_vars_p)
8104 *old_vars_p = set_vars_and_save_old(new_env);
8105 }
8106 return rcode;
8107}
8108static NOINLINE int run_pipe(struct pipe *pi)
8109{
8110 static const char *const null_ptr = NULL;
8111
8112 int cmd_no;
8113 int next_infd;
8114 struct command *command;
8115 char **argv_expanded;
8116 char **argv;
Denys Vlasenko2db74612017-07-07 22:07:28 +02008117 struct squirrel *squirrel = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008118 int rcode;
8119
8120 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
8121 debug_enter();
8122
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02008123 /* Testcase: set -- q w e; (IFS='' echo "$*"; IFS=''; echo "$*"); echo "$*"
8124 * Result should be 3 lines: q w e, qwe, q w e
8125 */
8126 G.ifs = get_local_var_value("IFS");
8127 if (!G.ifs)
8128 G.ifs = defifs;
8129
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008130 IF_HUSH_JOB(pi->pgrp = -1;)
8131 pi->stopped_cmds = 0;
8132 command = &pi->cmds[0];
8133 argv_expanded = NULL;
8134
8135 if (pi->num_cmds != 1
8136 || pi->followup == PIPE_BG
8137 || command->cmd_type == CMD_SUBSHELL
8138 ) {
8139 goto must_fork;
8140 }
8141
8142 pi->alive_cmds = 1;
8143
8144 debug_printf_exec(": group:%p argv:'%s'\n",
8145 command->group, command->argv ? command->argv[0] : "NONE");
8146
8147 if (command->group) {
8148#if ENABLE_HUSH_FUNCTIONS
8149 if (command->cmd_type == CMD_FUNCDEF) {
8150 /* "executing" func () { list } */
8151 struct function *funcp;
8152
8153 funcp = new_function(command->argv[0]);
8154 /* funcp->name is already set to argv[0] */
8155 funcp->body = command->group;
8156# if !BB_MMU
8157 funcp->body_as_string = command->group_as_string;
8158 command->group_as_string = NULL;
8159# endif
8160 command->group = NULL;
8161 command->argv[0] = NULL;
8162 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
8163 funcp->parent_cmd = command;
8164 command->child_func = funcp;
8165
8166 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
8167 debug_leave();
8168 return EXIT_SUCCESS;
8169 }
8170#endif
8171 /* { list } */
8172 debug_printf("non-subshell group\n");
8173 rcode = 1; /* exitcode if redir failed */
Denys Vlasenko2db74612017-07-07 22:07:28 +02008174 if (setup_redirects(command, &squirrel) == 0) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008175 debug_printf_exec(": run_list\n");
8176 rcode = run_list(command->group) & 0xff;
8177 }
8178 restore_redirects(squirrel);
8179 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
8180 debug_leave();
8181 debug_printf_exec("run_pipe: return %d\n", rcode);
8182 return rcode;
8183 }
8184
8185 argv = command->argv ? command->argv : (char **) &null_ptr;
8186 {
8187 const struct built_in_command *x;
8188#if ENABLE_HUSH_FUNCTIONS
8189 const struct function *funcp;
8190#else
8191 enum { funcp = 0 };
8192#endif
8193 char **new_env = NULL;
8194 struct variable *old_vars = NULL;
8195
Denys Vlasenko5807e182018-02-08 19:19:04 +01008196#if ENABLE_HUSH_LINENO_VAR
Denys Vlasenkob8d076b2018-01-19 16:00:57 +01008197 if (G.lineno_var)
8198 strcpy(G.lineno_var + sizeof("LINENO=")-1, utoa(command->lineno));
8199#endif
Denys Vlasenko6aad1dd2018-01-19 15:37:04 +01008200
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008201 if (argv[command->assignment_cnt] == NULL) {
8202 /* Assignments, but no command */
8203 /* Ensure redirects take effect (that is, create files).
8204 * Try "a=t >file" */
8205#if 0 /* A few cases in testsuite fail with this code. FIXME */
Denys Vlasenko2db74612017-07-07 22:07:28 +02008206 rcode = redirect_and_varexp_helper(&new_env, /*old_vars:*/ NULL, command, &squirrel, /*argv_expanded:*/ NULL);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008207 /* Set shell variables */
8208 if (new_env) {
8209 argv = new_env;
8210 while (*argv) {
Denys Vlasenko38ef39a2017-07-18 01:40:01 +02008211 if (set_local_var(*argv, /*flag:*/ 0)) {
8212 /* assignment to readonly var / putenv error? */
8213 rcode = 1;
8214 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008215 argv++;
8216 }
8217 }
8218 /* Redirect error sets $? to 1. Otherwise,
8219 * if evaluating assignment value set $?, retain it.
8220 * Try "false; q=`exit 2`; echo $?" - should print 2: */
8221 if (rcode == 0)
8222 rcode = G.last_exitcode;
8223 /* Exit, _skipping_ variable restoring code: */
8224 goto clean_up_and_ret0;
8225
8226#else /* Older, bigger, but more correct code */
8227
Denys Vlasenko2db74612017-07-07 22:07:28 +02008228 rcode = setup_redirects(command, &squirrel);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008229 restore_redirects(squirrel);
8230 /* Set shell variables */
8231 if (G_x_mode)
8232 bb_putchar_stderr('+');
8233 while (*argv) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02008234 char *p = expand_string_to_string(*argv, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008235 if (G_x_mode)
8236 fprintf(stderr, " %s", p);
8237 debug_printf_exec("set shell var:'%s'->'%s'\n",
8238 *argv, p);
Denys Vlasenko38ef39a2017-07-18 01:40:01 +02008239 if (set_local_var(p, /*flag:*/ 0)) {
8240 /* assignment to readonly var / putenv error? */
8241 rcode = 1;
8242 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008243 argv++;
8244 }
8245 if (G_x_mode)
8246 bb_putchar_stderr('\n');
8247 /* Redirect error sets $? to 1. Otherwise,
8248 * if evaluating assignment value set $?, retain it.
8249 * Try "false; q=`exit 2`; echo $?" - should print 2: */
8250 if (rcode == 0)
8251 rcode = G.last_exitcode;
8252 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
8253 debug_leave();
8254 debug_printf_exec("run_pipe: return %d\n", rcode);
8255 return rcode;
8256#endif
8257 }
8258
8259 /* Expand the rest into (possibly) many strings each */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01008260#if BASH_TEST2
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01008261 if (command->cmd_type == CMD_SINGLEWORD_NOGLOB) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008262 argv_expanded = expand_strvec_to_strvec_singleword_noglob(argv + command->assignment_cnt);
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01008263 } else
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008264#endif
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01008265 {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008266 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
8267 }
8268
8269 /* if someone gives us an empty string: `cmd with empty output` */
8270 if (!argv_expanded[0]) {
8271 free(argv_expanded);
8272 debug_leave();
8273 return G.last_exitcode;
8274 }
8275
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008276#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko75481d32017-07-31 05:27:09 +02008277 /* Check if argv[0] matches any functions (this goes before bltins) */
8278 funcp = find_function(argv_expanded[0]);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008279#endif
Denys Vlasenko75481d32017-07-31 05:27:09 +02008280 x = NULL;
8281 if (!funcp)
8282 x = find_builtin(argv_expanded[0]);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008283 if (x || funcp) {
8284 if (!funcp) {
8285 if (x->b_function == builtin_exec && argv_expanded[1] == NULL) {
8286 debug_printf("exec with redirects only\n");
8287 rcode = setup_redirects(command, NULL);
Denys Vlasenko869994c2016-08-20 15:16:00 +02008288 /* rcode=1 can be if redir file can't be opened */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008289 goto clean_up_and_ret1;
8290 }
8291 }
Denys Vlasenko2db74612017-07-07 22:07:28 +02008292 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, &squirrel, argv_expanded);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008293 if (rcode == 0) {
8294 if (!funcp) {
8295 debug_printf_exec(": builtin '%s' '%s'...\n",
8296 x->b_cmd, argv_expanded[1]);
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01008297 fflush_all();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008298 rcode = x->b_function(argv_expanded) & 0xff;
8299 fflush_all();
8300 }
8301#if ENABLE_HUSH_FUNCTIONS
8302 else {
8303# if ENABLE_HUSH_LOCAL
8304 struct variable **sv;
8305 sv = G.shadowed_vars_pp;
8306 G.shadowed_vars_pp = &old_vars;
8307# endif
8308 debug_printf_exec(": function '%s' '%s'...\n",
8309 funcp->name, argv_expanded[1]);
8310 rcode = run_function(funcp, argv_expanded) & 0xff;
8311# if ENABLE_HUSH_LOCAL
8312 G.shadowed_vars_pp = sv;
8313# endif
8314 }
8315#endif
8316 }
8317 clean_up_and_ret:
8318 unset_vars(new_env);
8319 add_vars(old_vars);
8320/* clean_up_and_ret0: */
8321 restore_redirects(squirrel);
Denys Vlasenko7c40ddd2017-08-02 16:37:39 +02008322 /*
8323 * Try "usleep 99999999" + ^C + "echo $?"
8324 * with FEATURE_SH_NOFORK=y.
8325 */
8326 if (!funcp) {
8327 /* It was builtin or nofork.
8328 * if this would be a real fork/execed program,
8329 * it should have died if a fatal sig was received.
8330 * But OTOH, there was no separate process,
8331 * the sig was sent to _shell_, not to non-existing
8332 * child.
8333 * Let's just handle ^C only, this one is obvious:
8334 * we aren't ok with exitcode 0 when ^C was pressed
8335 * during builtin/nofork.
8336 */
8337 if (sigismember(&G.pending_set, SIGINT))
8338 rcode = 128 + SIGINT;
8339 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008340 clean_up_and_ret1:
8341 free(argv_expanded);
8342 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
8343 debug_leave();
8344 debug_printf_exec("run_pipe return %d\n", rcode);
8345 return rcode;
8346 }
8347
Denys Vlasenko82d1c1f2017-12-31 17:30:02 +01008348 if (ENABLE_FEATURE_SH_NOFORK && NUM_APPLETS > 1) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008349 int n = find_applet_by_name(argv_expanded[0]);
8350 if (n >= 0 && APPLET_IS_NOFORK(n)) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02008351 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, &squirrel, argv_expanded);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008352 if (rcode == 0) {
8353 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
8354 argv_expanded[0], argv_expanded[1]);
Denys Vlasenko7c40ddd2017-08-02 16:37:39 +02008355 /*
8356 * Note: signals (^C) can't interrupt here.
8357 * We remember them and they will be acted upon
8358 * after applet returns.
8359 * This makes applets which can run for a long time
8360 * and/or wait for user input ineligible for NOFORK:
8361 * for example, "yes" or "rm" (rm -i waits for input).
8362 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008363 rcode = run_nofork_applet(n, argv_expanded);
8364 }
8365 goto clean_up_and_ret;
8366 }
8367 }
8368 /* It is neither builtin nor applet. We must fork. */
8369 }
8370
8371 must_fork:
8372 /* NB: argv_expanded may already be created, and that
8373 * might include `cmd` runs! Do not rerun it! We *must*
8374 * use argv_expanded if it's non-NULL */
8375
8376 /* Going to fork a child per each pipe member */
8377 pi->alive_cmds = 0;
8378 next_infd = 0;
8379
8380 cmd_no = 0;
8381 while (cmd_no < pi->num_cmds) {
8382 struct fd_pair pipefds;
8383#if !BB_MMU
8384 volatile nommu_save_t nommu_save;
8385 nommu_save.new_env = NULL;
8386 nommu_save.old_vars = NULL;
8387 nommu_save.argv = NULL;
8388 nommu_save.argv_from_re_execing = NULL;
8389#endif
8390 command = &pi->cmds[cmd_no];
8391 cmd_no++;
8392 if (command->argv) {
8393 debug_printf_exec(": pipe member '%s' '%s'...\n",
8394 command->argv[0], command->argv[1]);
8395 } else {
8396 debug_printf_exec(": pipe member with no argv\n");
8397 }
8398
8399 /* pipes are inserted between pairs of commands */
8400 pipefds.rd = 0;
8401 pipefds.wr = 1;
8402 if (cmd_no < pi->num_cmds)
8403 xpiped_pair(pipefds);
8404
Denys Vlasenko5807e182018-02-08 19:19:04 +01008405#if ENABLE_HUSH_LINENO_VAR
Denys Vlasenkob8d076b2018-01-19 16:00:57 +01008406 if (G.lineno_var)
8407 strcpy(G.lineno_var + sizeof("LINENO=")-1, utoa(command->lineno));
8408#endif
Denys Vlasenko6aad1dd2018-01-19 15:37:04 +01008409
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008410 command->pid = BB_MMU ? fork() : vfork();
8411 if (!command->pid) { /* child */
8412#if ENABLE_HUSH_JOB
8413 disable_restore_tty_pgrp_on_exit();
8414 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
8415
8416 /* Every child adds itself to new process group
8417 * with pgid == pid_of_first_child_in_pipe */
8418 if (G.run_list_level == 1 && G_interactive_fd) {
8419 pid_t pgrp;
8420 pgrp = pi->pgrp;
8421 if (pgrp < 0) /* true for 1st process only */
8422 pgrp = getpid();
8423 if (setpgid(0, pgrp) == 0
8424 && pi->followup != PIPE_BG
8425 && G_saved_tty_pgrp /* we have ctty */
8426 ) {
8427 /* We do it in *every* child, not just first,
8428 * to avoid races */
8429 tcsetpgrp(G_interactive_fd, pgrp);
8430 }
8431 }
8432#endif
8433 if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
8434 /* 1st cmd in backgrounded pipe
8435 * should have its stdin /dev/null'ed */
8436 close(0);
8437 if (open(bb_dev_null, O_RDONLY))
8438 xopen("/", O_RDONLY);
8439 } else {
8440 xmove_fd(next_infd, 0);
8441 }
8442 xmove_fd(pipefds.wr, 1);
8443 if (pipefds.rd > 1)
8444 close(pipefds.rd);
8445 /* Like bash, explicit redirects override pipes,
Denys Vlasenko869994c2016-08-20 15:16:00 +02008446 * and the pipe fd (fd#1) is available for dup'ing:
8447 * "cmd1 2>&1 | cmd2": fd#1 is duped to fd#2, thus stderr
8448 * of cmd1 goes into pipe.
8449 */
8450 if (setup_redirects(command, NULL)) {
8451 /* Happens when redir file can't be opened:
8452 * $ hush -c 'echo FOO >&2 | echo BAR 3>/qwe/rty; echo BAZ'
8453 * FOO
8454 * hush: can't open '/qwe/rty': No such file or directory
8455 * BAZ
8456 * (echo BAR is not executed, it hits _exit(1) below)
8457 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008458 _exit(1);
Denys Vlasenko869994c2016-08-20 15:16:00 +02008459 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008460
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008461 /* Stores to nommu_save list of env vars putenv'ed
8462 * (NOMMU, on MMU we don't need that) */
8463 /* cast away volatility... */
8464 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
8465 /* pseudo_exec() does not return */
8466 }
8467
8468 /* parent or error */
8469#if ENABLE_HUSH_FAST
8470 G.count_SIGCHLD++;
8471//bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
8472#endif
8473 enable_restore_tty_pgrp_on_exit();
8474#if !BB_MMU
8475 /* Clean up after vforked child */
8476 free(nommu_save.argv);
8477 free(nommu_save.argv_from_re_execing);
8478 unset_vars(nommu_save.new_env);
8479 add_vars(nommu_save.old_vars);
8480#endif
8481 free(argv_expanded);
8482 argv_expanded = NULL;
8483 if (command->pid < 0) { /* [v]fork failed */
8484 /* Clearly indicate, was it fork or vfork */
8485 bb_perror_msg(BB_MMU ? "vfork"+1 : "vfork");
8486 } else {
8487 pi->alive_cmds++;
8488#if ENABLE_HUSH_JOB
8489 /* Second and next children need to know pid of first one */
8490 if (pi->pgrp < 0)
8491 pi->pgrp = command->pid;
8492#endif
8493 }
8494
8495 if (cmd_no > 1)
8496 close(next_infd);
8497 if (cmd_no < pi->num_cmds)
8498 close(pipefds.wr);
8499 /* Pass read (output) pipe end to next iteration */
8500 next_infd = pipefds.rd;
8501 }
8502
8503 if (!pi->alive_cmds) {
8504 debug_leave();
8505 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
8506 return 1;
8507 }
8508
8509 debug_leave();
8510 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
8511 return -1;
8512}
8513
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008514/* NB: called by pseudo_exec, and therefore must not modify any
8515 * global data until exec/_exit (we can be a child after vfork!) */
8516static int run_list(struct pipe *pi)
8517{
8518#if ENABLE_HUSH_CASE
8519 char *case_word = NULL;
8520#endif
8521#if ENABLE_HUSH_LOOPS
8522 struct pipe *loop_top = NULL;
8523 char **for_lcur = NULL;
8524 char **for_list = NULL;
8525#endif
8526 smallint last_followup;
8527 smalluint rcode;
8528#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
8529 smalluint cond_code = 0;
8530#else
8531 enum { cond_code = 0 };
8532#endif
8533#if HAS_KEYWORDS
Denys Vlasenko9b782552010-09-08 13:33:26 +02008534 smallint rword; /* RES_foo */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008535 smallint last_rword; /* ditto */
8536#endif
8537
8538 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
8539 debug_enter();
8540
8541#if ENABLE_HUSH_LOOPS
8542 /* Check syntax for "for" */
Denys Vlasenko0d6a4ec2010-12-18 01:34:49 +01008543 {
8544 struct pipe *cpipe;
8545 for (cpipe = pi; cpipe; cpipe = cpipe->next) {
8546 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
8547 continue;
8548 /* current word is FOR or IN (BOLD in comments below) */
8549 if (cpipe->next == NULL) {
8550 syntax_error("malformed for");
8551 debug_leave();
8552 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
8553 return 1;
8554 }
8555 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
8556 if (cpipe->next->res_word == RES_DO)
8557 continue;
8558 /* next word is not "do". It must be "in" then ("FOR v in ...") */
8559 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
8560 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
8561 ) {
8562 syntax_error("malformed for");
8563 debug_leave();
8564 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
8565 return 1;
8566 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008567 }
8568 }
8569#endif
8570
8571 /* Past this point, all code paths should jump to ret: label
8572 * in order to return, no direct "return" statements please.
8573 * This helps to ensure that no memory is leaked. */
8574
8575#if ENABLE_HUSH_JOB
8576 G.run_list_level++;
8577#endif
8578
8579#if HAS_KEYWORDS
8580 rword = RES_NONE;
8581 last_rword = RES_XXXX;
8582#endif
8583 last_followup = PIPE_SEQ;
8584 rcode = G.last_exitcode;
8585
8586 /* Go through list of pipes, (maybe) executing them. */
8587 for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008588 int r;
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008589 int sv_errexit_depth;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008590
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008591 if (G.flag_SIGINT)
8592 break;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02008593 if (G_flag_return_in_progress == 1)
8594 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008595
8596 IF_HAS_KEYWORDS(rword = pi->res_word;)
8597 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
8598 rword, cond_code, last_rword);
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008599
8600 sv_errexit_depth = G.errexit_depth;
Denys Vlasenko82d1c1f2017-12-31 17:30:02 +01008601 if (
8602#if ENABLE_HUSH_IF
8603 rword == RES_IF || rword == RES_ELIF ||
8604#endif
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008605 pi->followup != PIPE_SEQ
8606 ) {
8607 G.errexit_depth++;
8608 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008609#if ENABLE_HUSH_LOOPS
8610 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
8611 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
8612 ) {
8613 /* start of a loop: remember where loop starts */
8614 loop_top = pi;
8615 G.depth_of_loop++;
8616 }
8617#endif
8618 /* Still in the same "if...", "then..." or "do..." branch? */
8619 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
8620 if ((rcode == 0 && last_followup == PIPE_OR)
8621 || (rcode != 0 && last_followup == PIPE_AND)
8622 ) {
8623 /* It is "<true> || CMD" or "<false> && CMD"
8624 * and we should not execute CMD */
8625 debug_printf_exec("skipped cmd because of || or &&\n");
8626 last_followup = pi->followup;
Denys Vlasenko3beab832013-04-07 18:16:58 +02008627 goto dont_check_jobs_but_continue;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008628 }
8629 }
8630 last_followup = pi->followup;
8631 IF_HAS_KEYWORDS(last_rword = rword;)
8632#if ENABLE_HUSH_IF
8633 if (cond_code) {
8634 if (rword == RES_THEN) {
8635 /* if false; then ... fi has exitcode 0! */
8636 G.last_exitcode = rcode = EXIT_SUCCESS;
8637 /* "if <false> THEN cmd": skip cmd */
8638 continue;
8639 }
8640 } else {
8641 if (rword == RES_ELSE || rword == RES_ELIF) {
8642 /* "if <true> then ... ELSE/ELIF cmd":
8643 * skip cmd and all following ones */
8644 break;
8645 }
8646 }
8647#endif
8648#if ENABLE_HUSH_LOOPS
8649 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
8650 if (!for_lcur) {
8651 /* first loop through for */
8652
8653 static const char encoded_dollar_at[] ALIGN1 = {
8654 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
8655 }; /* encoded representation of "$@" */
8656 static const char *const encoded_dollar_at_argv[] = {
8657 encoded_dollar_at, NULL
8658 }; /* argv list with one element: "$@" */
8659 char **vals;
8660
8661 vals = (char**)encoded_dollar_at_argv;
8662 if (pi->next->res_word == RES_IN) {
8663 /* if no variable values after "in" we skip "for" */
8664 if (!pi->next->cmds[0].argv) {
8665 G.last_exitcode = rcode = EXIT_SUCCESS;
8666 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
8667 break;
8668 }
8669 vals = pi->next->cmds[0].argv;
8670 } /* else: "for var; do..." -> assume "$@" list */
8671 /* create list of variable values */
8672 debug_print_strings("for_list made from", vals);
8673 for_list = expand_strvec_to_strvec(vals);
8674 for_lcur = for_list;
8675 debug_print_strings("for_list", for_list);
8676 }
8677 if (!*for_lcur) {
8678 /* "for" loop is over, clean up */
8679 free(for_list);
8680 for_list = NULL;
8681 for_lcur = NULL;
8682 break;
8683 }
8684 /* Insert next value from for_lcur */
8685 /* note: *for_lcur already has quotes removed, $var expanded, etc */
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02008686 set_local_var(xasprintf("%s=%s", pi->cmds[0].argv[0], *for_lcur++), /*flag:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008687 continue;
8688 }
8689 if (rword == RES_IN) {
8690 continue; /* "for v IN list;..." - "in" has no cmds anyway */
8691 }
8692 if (rword == RES_DONE) {
8693 continue; /* "done" has no cmds too */
8694 }
8695#endif
8696#if ENABLE_HUSH_CASE
8697 if (rword == RES_CASE) {
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008698 debug_printf_exec("CASE cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008699 case_word = expand_strvec_to_string(pi->cmds->argv);
Denys Vlasenkobd43c672017-07-05 23:12:15 +02008700 unbackslash(case_word);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008701 continue;
8702 }
8703 if (rword == RES_MATCH) {
8704 char **argv;
8705
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008706 debug_printf_exec("MATCH cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008707 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
8708 break;
8709 /* all prev words didn't match, does this one match? */
8710 argv = pi->cmds->argv;
8711 while (*argv) {
Denys Vlasenkobd43c672017-07-05 23:12:15 +02008712 char *pattern = expand_string_to_string(*argv, /*unbackslash:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008713 /* TODO: which FNM_xxx flags to use? */
8714 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
Denys Vlasenkobd43c672017-07-05 23:12:15 +02008715 debug_printf_exec("fnmatch(pattern:'%s',str:'%s'):%d\n", pattern, case_word, cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008716 free(pattern);
8717 if (cond_code == 0) { /* match! we will execute this branch */
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008718 free(case_word);
8719 case_word = NULL; /* make future "word)" stop */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008720 break;
8721 }
8722 argv++;
8723 }
8724 continue;
8725 }
8726 if (rword == RES_CASE_BODY) { /* inside of a case branch */
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008727 debug_printf_exec("CASE_BODY cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008728 if (cond_code != 0)
8729 continue; /* not matched yet, skip this pipe */
8730 }
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008731 if (rword == RES_ESAC) {
8732 debug_printf_exec("ESAC cond_code:%d\n", cond_code);
8733 if (case_word) {
8734 /* "case" did not match anything: still set $? (to 0) */
8735 G.last_exitcode = rcode = EXIT_SUCCESS;
8736 }
8737 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008738#endif
8739 /* Just pressing <enter> in shell should check for jobs.
8740 * OTOH, in non-interactive shell this is useless
8741 * and only leads to extra job checks */
8742 if (pi->num_cmds == 0) {
8743 if (G_interactive_fd)
8744 goto check_jobs_and_continue;
8745 continue;
8746 }
8747
8748 /* After analyzing all keywords and conditions, we decided
8749 * to execute this pipe. NB: have to do checkjobs(NULL)
8750 * after run_pipe to collect any background children,
8751 * even if list execution is to be stopped. */
8752 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008753#if ENABLE_HUSH_LOOPS
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008754 G.flag_break_continue = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008755#endif
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008756 rcode = r = run_pipe(pi); /* NB: rcode is a smalluint, r is int */
8757 if (r != -1) {
8758 /* We ran a builtin, function, or group.
8759 * rcode is already known
8760 * and we don't need to wait for anything. */
8761 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
8762 G.last_exitcode = rcode;
8763 check_and_run_traps();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008764#if ENABLE_HUSH_LOOPS
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008765 /* Was it "break" or "continue"? */
8766 if (G.flag_break_continue) {
8767 smallint fbc = G.flag_break_continue;
8768 /* We might fall into outer *loop*,
8769 * don't want to break it too */
8770 if (loop_top) {
8771 G.depth_break_continue--;
8772 if (G.depth_break_continue == 0)
8773 G.flag_break_continue = 0;
8774 /* else: e.g. "continue 2" should *break* once, *then* continue */
8775 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
8776 if (G.depth_break_continue != 0 || fbc == BC_BREAK) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02008777 checkjobs(NULL, 0 /*(no pid to wait for)*/);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008778 break;
8779 }
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008780 /* "continue": simulate end of loop */
8781 rword = RES_DONE;
8782 continue;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008783 }
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008784#endif
8785 if (G_flag_return_in_progress == 1) {
8786 checkjobs(NULL, 0 /*(no pid to wait for)*/);
8787 break;
8788 }
8789 } else if (pi->followup == PIPE_BG) {
8790 /* What does bash do with attempts to background builtins? */
8791 /* even bash 3.2 doesn't do that well with nested bg:
8792 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
8793 * I'm NOT treating inner &'s as jobs */
8794#if ENABLE_HUSH_JOB
8795 if (G.run_list_level == 1)
Denys Vlasenko16096292017-07-10 10:00:28 +02008796 insert_job_into_table(pi);
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008797#endif
8798 /* Last command's pid goes to $! */
8799 G.last_bg_pid = pi->cmds[pi->num_cmds - 1].pid;
Denys Vlasenko840a4352017-07-07 22:56:02 +02008800 G.last_bg_pid_exitcode = 0;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008801 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
Denys Vlasenko7c40ddd2017-08-02 16:37:39 +02008802/* Check pi->pi_inverted? "! sleep 1 & echo $?": bash says 1. dash and ash say 0 */
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008803 rcode = EXIT_SUCCESS;
8804 goto check_traps;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008805 } else {
8806#if ENABLE_HUSH_JOB
8807 if (G.run_list_level == 1 && G_interactive_fd) {
8808 /* Waits for completion, then fg's main shell */
8809 rcode = checkjobs_and_fg_shell(pi);
8810 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008811 goto check_traps;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008812 }
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008813#endif
8814 /* This one just waits for completion */
8815 rcode = checkjobs(pi, 0 /*(no pid to wait for)*/);
8816 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
8817 check_traps:
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008818 G.last_exitcode = rcode;
8819 check_and_run_traps();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008820 }
8821
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008822 /* Handle "set -e" */
8823 if (rcode != 0 && G.o_opt[OPT_O_ERREXIT]) {
8824 debug_printf_exec("ERREXIT:1 errexit_depth:%d\n", G.errexit_depth);
8825 if (G.errexit_depth == 0)
8826 hush_exit(rcode);
8827 }
8828 G.errexit_depth = sv_errexit_depth;
8829
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008830 /* Analyze how result affects subsequent commands */
8831#if ENABLE_HUSH_IF
8832 if (rword == RES_IF || rword == RES_ELIF)
8833 cond_code = rcode;
8834#endif
Denys Vlasenko3beab832013-04-07 18:16:58 +02008835 check_jobs_and_continue:
Denys Vlasenko7e675362016-10-28 21:57:31 +02008836 checkjobs(NULL, 0 /*(no pid to wait for)*/);
Denys Vlasenko3beab832013-04-07 18:16:58 +02008837 dont_check_jobs_but_continue: ;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008838#if ENABLE_HUSH_LOOPS
8839 /* Beware of "while false; true; do ..."! */
Denys Vlasenko00ae9892011-05-31 17:35:45 +02008840 if (pi->next
8841 && (pi->next->res_word == RES_DO || pi->next->res_word == RES_DONE)
Denys Vlasenko56a3b822011-06-01 12:47:07 +02008842 /* check for RES_DONE is needed for "while ...; do \n done" case */
Denys Vlasenko00ae9892011-05-31 17:35:45 +02008843 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008844 if (rword == RES_WHILE) {
8845 if (rcode) {
8846 /* "while false; do...done" - exitcode 0 */
8847 G.last_exitcode = rcode = EXIT_SUCCESS;
8848 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
Denys Vlasenko3beab832013-04-07 18:16:58 +02008849 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008850 }
8851 }
8852 if (rword == RES_UNTIL) {
8853 if (!rcode) {
8854 debug_printf_exec(": until expr is true: breaking\n");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008855 break;
8856 }
8857 }
8858 }
8859#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008860 } /* for (pi) */
8861
8862#if ENABLE_HUSH_JOB
8863 G.run_list_level--;
8864#endif
8865#if ENABLE_HUSH_LOOPS
8866 if (loop_top)
8867 G.depth_of_loop--;
8868 free(for_list);
8869#endif
8870#if ENABLE_HUSH_CASE
8871 free(case_word);
8872#endif
8873 debug_leave();
8874 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
8875 return rcode;
8876}
8877
8878/* Select which version we will use */
8879static int run_and_free_list(struct pipe *pi)
8880{
8881 int rcode = 0;
8882 debug_printf_exec("run_and_free_list entered\n");
Dan Fandrich85c62472010-11-20 13:05:17 -08008883 if (!G.o_opt[OPT_O_NOEXEC]) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008884 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
8885 rcode = run_list(pi);
8886 }
8887 /* free_pipe_list has the side effect of clearing memory.
8888 * In the long run that function can be merged with run_list,
8889 * but doing that now would hobble the debugging effort. */
8890 free_pipe_list(pi);
8891 debug_printf_exec("run_and_free_list return %d\n", rcode);
8892 return rcode;
8893}
8894
8895
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008896static void install_sighandlers(unsigned mask)
Eric Andersen52a97ca2001-06-22 06:49:26 +00008897{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008898 sighandler_t old_handler;
8899 unsigned sig = 0;
8900 while ((mask >>= 1) != 0) {
8901 sig++;
8902 if (!(mask & 1))
8903 continue;
Denys Vlasenko0806e402011-05-12 23:06:20 +02008904 old_handler = install_sighandler(sig, pick_sighandler(sig));
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008905 /* POSIX allows shell to re-enable SIGCHLD
8906 * even if it was SIG_IGN on entry.
8907 * Therefore we skip IGN check for it:
8908 */
8909 if (sig == SIGCHLD)
8910 continue;
Denys Vlasenko49e6bf22017-08-04 14:28:16 +02008911 /* bash re-enables SIGHUP which is SIG_IGNed on entry.
8912 * Try: "trap '' HUP; bash; echo RET" and type "kill -HUP $$"
8913 */
8914 //if (sig == SIGHUP) continue; - TODO?
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008915 if (old_handler == SIG_IGN) {
8916 /* oops... restore back to IGN, and record this fact */
Denys Vlasenko0806e402011-05-12 23:06:20 +02008917 install_sighandler(sig, old_handler);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008918#if ENABLE_HUSH_TRAP
8919 if (!G_traps)
8920 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
8921 free(G_traps[sig]);
8922 G_traps[sig] = xzalloc(1); /* == xstrdup(""); */
8923#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008924 }
8925 }
8926}
8927
8928/* Called a few times only (or even once if "sh -c") */
8929static void install_special_sighandlers(void)
8930{
Denis Vlasenkof9375282009-04-05 19:13:39 +00008931 unsigned mask;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008932
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008933 /* Which signals are shell-special? */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008934 mask = (1 << SIGQUIT) | (1 << SIGCHLD);
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008935 if (G_interactive_fd) {
8936 mask |= SPECIAL_INTERACTIVE_SIGS;
8937 if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008938 mask |= SPECIAL_JOBSTOP_SIGS;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008939 }
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008940 /* Careful, do not re-install handlers we already installed */
8941 if (G.special_sig_mask != mask) {
8942 unsigned diff = mask & ~G.special_sig_mask;
8943 G.special_sig_mask = mask;
8944 install_sighandlers(diff);
8945 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008946}
8947
8948#if ENABLE_HUSH_JOB
8949/* helper */
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008950/* Set handlers to restore tty pgrp and exit */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008951static void install_fatal_sighandlers(void)
Denis Vlasenkof9375282009-04-05 19:13:39 +00008952{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008953 unsigned mask;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008954
8955 /* We will restore tty pgrp on these signals */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008956 mask = 0
Denys Vlasenko830ea352016-11-08 04:59:11 +01008957 /*+ (1 << SIGILL ) * HUSH_DEBUG*/
8958 /*+ (1 << SIGFPE ) * HUSH_DEBUG*/
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008959 + (1 << SIGBUS ) * HUSH_DEBUG
8960 + (1 << SIGSEGV) * HUSH_DEBUG
Denys Vlasenko830ea352016-11-08 04:59:11 +01008961 /*+ (1 << SIGTRAP) * HUSH_DEBUG*/
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008962 + (1 << SIGABRT)
8963 /* bash 3.2 seems to handle these just like 'fatal' ones */
8964 + (1 << SIGPIPE)
8965 + (1 << SIGALRM)
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008966 /* if we are interactive, SIGHUP, SIGTERM and SIGINT are special sigs.
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008967 * if we aren't interactive... but in this case
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008968 * we never want to restore pgrp on exit, and this fn is not called
8969 */
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008970 /*+ (1 << SIGHUP )*/
8971 /*+ (1 << SIGTERM)*/
8972 /*+ (1 << SIGINT )*/
8973 ;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008974 G_fatal_sig_mask = mask;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008975
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008976 install_sighandlers(mask);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008977}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00008978#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00008979
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008980static int set_mode(int state, char mode, const char *o_opt)
Denis Vlasenkod5762932009-03-31 11:22:57 +00008981{
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008982 int idx;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008983 switch (mode) {
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008984 case 'n':
Dan Fandrich85c62472010-11-20 13:05:17 -08008985 G.o_opt[OPT_O_NOEXEC] = state;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008986 break;
8987 case 'x':
8988 IF_HUSH_MODE_X(G_x_mode = state;)
8989 break;
8990 case 'o':
8991 if (!o_opt) {
8992 /* "set -+o" without parameter.
8993 * in bash, set -o produces this output:
8994 * pipefail off
8995 * and set +o:
8996 * set +o pipefail
8997 * We always use the second form.
8998 */
8999 const char *p = o_opt_strings;
9000 idx = 0;
9001 while (*p) {
9002 printf("set %co %s\n", (G.o_opt[idx] ? '-' : '+'), p);
9003 idx++;
9004 p += strlen(p) + 1;
9005 }
9006 break;
9007 }
9008 idx = index_in_strings(o_opt_strings, o_opt);
9009 if (idx >= 0) {
9010 G.o_opt[idx] = state;
9011 break;
9012 }
Denys Vlasenko9fda6092017-07-14 13:36:48 +02009013 case 'e':
9014 G.o_opt[OPT_O_ERREXIT] = state;
9015 break;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01009016 default:
9017 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00009018 }
9019 return EXIT_SUCCESS;
9020}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009021
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00009022int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00009023int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00009024{
Denys Vlasenkof58f7052011-05-12 02:10:33 +02009025 enum {
9026 OPT_login = (1 << 0),
9027 };
9028 unsigned flags;
Eric Andersen25f27032001-04-26 23:22:31 +00009029 int opt;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009030 unsigned builtin_argc;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00009031 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00009032 struct variable *cur_var;
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01009033 struct variable *shell_ver;
Eric Andersenbc604a22001-05-16 05:24:03 +00009034
Denis Vlasenko574f2f42008-02-27 18:41:59 +00009035 INIT_G();
Denys Vlasenko10c01312011-05-11 11:49:21 +02009036 if (EXIT_SUCCESS != 0) /* if EXIT_SUCCESS == 0, it is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00009037 G.last_exitcode = EXIT_SUCCESS;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02009038
Denys Vlasenko10c01312011-05-11 11:49:21 +02009039#if ENABLE_HUSH_FAST
9040 G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
9041#endif
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00009042#if !BB_MMU
9043 G.argv0_for_re_execing = argv[0];
9044#endif
Denys Vlasenko6aad1dd2018-01-19 15:37:04 +01009045
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00009046 /* Deal with HUSH_VERSION */
Denys Vlasenko6aad1dd2018-01-19 15:37:04 +01009047 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
9048 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01009049 shell_ver = xzalloc(sizeof(*shell_ver));
9050 shell_ver->flg_export = 1;
9051 shell_ver->flg_read_only = 1;
Denys Vlasenko4f870492010-09-10 11:06:01 +02009052 /* Code which handles ${var<op>...} needs writable values for all variables,
Denys Vlasenko36f774a2010-09-05 14:45:38 +02009053 * therefore we xstrdup: */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01009054 shell_ver->varstr = xstrdup(hush_version_str);
Denys Vlasenko6aad1dd2018-01-19 15:37:04 +01009055
Denys Vlasenko605067b2010-09-06 12:10:51 +02009056 /* Create shell local variables from the values
9057 * currently living in the environment */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01009058 G.top_var = shell_ver;
Denis Vlasenko87a86552008-07-29 19:43:10 +00009059 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00009060 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00009061 if (e) while (*e) {
9062 char *value = strchr(*e, '=');
9063 if (value) { /* paranoia */
9064 cur_var->next = xzalloc(sizeof(*cur_var));
9065 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00009066 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00009067 cur_var->max_len = strlen(*e);
9068 cur_var->flg_export = 1;
9069 }
9070 e++;
9071 }
Denys Vlasenko605067b2010-09-06 12:10:51 +02009072 /* (Re)insert HUSH_VERSION into env (AFTER we scanned the env!) */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01009073 debug_printf_env("putenv '%s'\n", shell_ver->varstr);
9074 putenv(shell_ver->varstr);
Denys Vlasenko6db47842009-09-05 20:15:17 +02009075
9076 /* Export PWD */
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009077 set_pwd_var(SETFLAG_EXPORT);
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02009078
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01009079#if BASH_HOSTNAME_VAR
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02009080 /* Set (but not export) HOSTNAME unless already set */
9081 if (!get_local_var_value("HOSTNAME")) {
9082 struct utsname uts;
9083 uname(&uts);
9084 set_local_var_from_halves("HOSTNAME", uts.nodename);
9085 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02009086 /* bash also exports SHLVL and _,
9087 * and sets (but doesn't export) the following variables:
9088 * BASH=/bin/bash
9089 * BASH_VERSINFO=([0]="3" [1]="2" [2]="0" [3]="1" [4]="release" [5]="i386-pc-linux-gnu")
9090 * BASH_VERSION='3.2.0(1)-release'
9091 * HOSTTYPE=i386
9092 * MACHTYPE=i386-pc-linux-gnu
9093 * OSTYPE=linux-gnu
Denys Vlasenkodea47882009-10-09 15:40:49 +02009094 * PPID=<NNNNN> - we also do it elsewhere
Denys Vlasenko6db47842009-09-05 20:15:17 +02009095 * EUID=<NNNNN>
9096 * UID=<NNNNN>
9097 * GROUPS=()
9098 * LINES=<NNN>
9099 * COLUMNS=<NNN>
9100 * BASH_ARGC=()
9101 * BASH_ARGV=()
9102 * BASH_LINENO=()
9103 * BASH_SOURCE=()
9104 * DIRSTACK=()
9105 * PIPESTATUS=([0]="0")
9106 * HISTFILE=/<xxx>/.bash_history
9107 * HISTFILESIZE=500
9108 * HISTSIZE=500
9109 * MAILCHECK=60
9110 * PATH=/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:.
9111 * SHELL=/bin/bash
9112 * SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor
9113 * TERM=dumb
9114 * OPTERR=1
9115 * OPTIND=1
9116 * IFS=$' \t\n'
9117 * PS1='\s-\v\$ '
9118 * PS2='> '
9119 * PS4='+ '
9120 */
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02009121#endif
Denys Vlasenko6db47842009-09-05 20:15:17 +02009122
Denys Vlasenko5807e182018-02-08 19:19:04 +01009123#if ENABLE_HUSH_LINENO_VAR
9124 if (ENABLE_HUSH_LINENO_VAR) {
Denys Vlasenko6aad1dd2018-01-19 15:37:04 +01009125 char *p = xasprintf("LINENO=%*s", (int)(sizeof(int)*3), "");
9126 set_local_var(p, /*flags*/ 0);
9127 G.lineno_var = p; /* can't assign before set_local_var("LINENO=...") */
9128 }
9129#endif
9130
Denis Vlasenko38f63192007-01-22 09:03:07 +00009131#if ENABLE_FEATURE_EDITING
Denys Vlasenkoe45af7a2011-09-04 16:15:24 +02009132 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00009133#endif
Denys Vlasenko99862cb2010-09-12 17:34:13 +02009134
Eric Andersen94ac2442001-05-22 19:05:18 +00009135 /* Initialize some more globals to non-zero values */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00009136 cmdedit_update_prompt();
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00009137
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02009138 die_func = restore_ttypgrp_and__exit;
Denis Vlasenkoed782372009-04-10 00:45:02 +00009139
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00009140 /* Shell is non-interactive at first. We need to call
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009141 * install_special_sighandlers() if we are going to execute "sh <script>",
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00009142 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009143 * If we later decide that we are interactive, we run install_special_sighandlers()
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00009144 * in order to intercept (more) signals.
9145 */
9146
9147 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00009148 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02009149 flags = (argv[0] && argv[0][0] == '-') ? OPT_login : 0;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009150 builtin_argc = 0;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00009151 while (1) {
Denys Vlasenko9fda6092017-07-14 13:36:48 +02009152 opt = getopt(argc, argv, "+c:exinsl"
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00009153#if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00009154 "<:$:R:V:"
9155# if ENABLE_HUSH_FUNCTIONS
9156 "F:"
9157# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00009158#endif
9159 );
9160 if (opt <= 0)
9161 break;
Eric Andersen25f27032001-04-26 23:22:31 +00009162 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00009163 case 'c':
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009164 /* Possibilities:
9165 * sh ... -c 'script'
9166 * sh ... -c 'script' ARG0 [ARG1...]
9167 * On NOMMU, if builtin_argc != 0,
Denys Vlasenko17323a62010-01-28 01:57:05 +01009168 * sh ... -c 'builtin' BARGV... "" ARG0 [ARG1...]
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009169 * "" needs to be replaced with NULL
9170 * and BARGV vector fed to builtin function.
Denys Vlasenko17323a62010-01-28 01:57:05 +01009171 * Note: the form without ARG0 never happens:
9172 * sh ... -c 'builtin' BARGV... ""
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009173 */
Denys Vlasenkodea47882009-10-09 15:40:49 +02009174 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00009175 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02009176 G.root_ppid = getppid();
9177 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00009178 G.global_argv = argv + optind;
9179 G.global_argc = argc - optind;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009180 if (builtin_argc) {
9181 /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */
9182 const struct built_in_command *x;
9183
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009184 install_special_sighandlers();
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009185 x = find_builtin(optarg);
9186 if (x) { /* paranoia */
9187 G.global_argc -= builtin_argc; /* skip [BARGV...] "" */
9188 G.global_argv += builtin_argc;
9189 G.global_argv[-1] = NULL; /* replace "" */
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01009190 fflush_all();
Denys Vlasenko17323a62010-01-28 01:57:05 +01009191 G.last_exitcode = x->b_function(argv + optind - 1);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009192 }
9193 goto final_return;
9194 }
9195 if (!G.global_argv[0]) {
9196 /* -c 'script' (no params): prevent empty $0 */
9197 G.global_argv--; /* points to argv[i] of 'script' */
9198 G.global_argv[0] = argv[0];
Denys Vlasenko5ae8f1c2010-05-22 06:32:11 +02009199 G.global_argc++;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009200 } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009201 install_special_sighandlers();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00009202 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00009203 goto final_return;
9204 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00009205 /* Well, we cannot just declare interactiveness,
9206 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009207 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00009208 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00009209 case 's':
9210 /* "-s" means "read from stdin", but this is how we always
9211 * operate, so simply do nothing here. */
9212 break;
Denys Vlasenkof58f7052011-05-12 02:10:33 +02009213 case 'l':
9214 flags |= OPT_login;
9215 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00009216#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00009217 case '<': /* "big heredoc" support */
Denys Vlasenko729ecb82010-06-07 14:14:26 +02009218 full_write1_str(optarg);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00009219 _exit(0);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01009220 case '$': {
9221 unsigned long long empty_trap_mask;
9222
Denis Vlasenko34e573d2009-04-06 12:56:28 +00009223 G.root_pid = bb_strtou(optarg, &optarg, 16);
9224 optarg++;
Denys Vlasenkodea47882009-10-09 15:40:49 +02009225 G.root_ppid = bb_strtou(optarg, &optarg, 16);
9226 optarg++;
Denis Vlasenko34e573d2009-04-06 12:56:28 +00009227 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
9228 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00009229 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009230 optarg++;
9231 builtin_argc = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01009232 optarg++;
9233 empty_trap_mask = bb_strtoull(optarg, &optarg, 16);
9234 if (empty_trap_mask != 0) {
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02009235 IF_HUSH_TRAP(int sig;)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009236 install_special_sighandlers();
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02009237# if ENABLE_HUSH_TRAP
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009238 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01009239 for (sig = 1; sig < NSIG; sig++) {
9240 if (empty_trap_mask & (1LL << sig)) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009241 G_traps[sig] = xzalloc(1); /* == xstrdup(""); */
Denys Vlasenko0806e402011-05-12 23:06:20 +02009242 install_sighandler(sig, SIG_IGN);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01009243 }
9244 }
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02009245# endif
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01009246 }
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00009247# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00009248 optarg++;
9249 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00009250# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00009251 break;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01009252 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00009253 case 'R':
9254 case 'V':
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009255 set_local_var(xstrdup(optarg), opt == 'R' ? SETFLAG_MAKE_RO : 0);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00009256 break;
Denis Vlasenkobc569742009-04-12 20:35:19 +00009257# if ENABLE_HUSH_FUNCTIONS
9258 case 'F': {
9259 struct function *funcp = new_function(optarg);
9260 /* funcp->name is already set to optarg */
9261 /* funcp->body is set to NULL. It's a special case. */
9262 funcp->body_as_string = argv[optind];
9263 optind++;
9264 break;
9265 }
9266# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00009267#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00009268 case 'n':
9269 case 'x':
Denys Vlasenko9fda6092017-07-14 13:36:48 +02009270 case 'e':
Denys Vlasenko6696eac2010-11-14 02:01:50 +01009271 if (set_mode(1, opt, NULL) == 0) /* no error */
Mike Frysingerad88d5a2009-03-28 13:44:51 +00009272 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00009273 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00009274#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00009275 fprintf(stderr, "Usage: sh [FILE]...\n"
9276 " or: sh -c command [args]...\n\n");
9277 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00009278#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00009279 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00009280#endif
Eric Andersen25f27032001-04-26 23:22:31 +00009281 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00009282 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00009283
Denys Vlasenkof58f7052011-05-12 02:10:33 +02009284 /* Skip options. Try "hush -l": $1 should not be "-l"! */
9285 G.global_argc = argc - (optind - 1);
9286 G.global_argv = argv + (optind - 1);
9287 G.global_argv[0] = argv[0];
9288
Denys Vlasenkodea47882009-10-09 15:40:49 +02009289 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00009290 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02009291 G.root_ppid = getppid();
9292 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00009293
9294 /* If we are login shell... */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02009295 if (flags & OPT_login) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00009296 FILE *input;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00009297 debug_printf("sourcing /etc/profile\n");
9298 input = fopen_for_read("/etc/profile");
9299 if (input != NULL) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02009300 remember_FILE(input);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009301 install_special_sighandlers();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00009302 parse_and_run_file(input);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02009303 fclose_and_forget(input);
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00009304 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00009305 /* bash: after sourcing /etc/profile,
9306 * tries to source (in the given order):
9307 * ~/.bash_profile, ~/.bash_login, ~/.profile,
Denys Vlasenko28a105d2009-06-01 11:26:30 +02009308 * stopping on first found. --noprofile turns this off.
Denis Vlasenkof9375282009-04-05 19:13:39 +00009309 * bash also sources ~/.bash_logout on exit.
9310 * If called as sh, skips .bash_XXX files.
9311 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00009312 }
9313
Denys Vlasenkof58f7052011-05-12 02:10:33 +02009314 if (G.global_argv[1]) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00009315 FILE *input;
9316 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00009317 * "bash <script>" (which is never interactive (unless -i?))
9318 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00009319 * If called as sh, does the same but with $ENV.
Denys Vlasenko2eb0a7e2016-10-27 11:28:59 +02009320 * Also NB, per POSIX, $ENV should undergo parameter expansion.
Denis Vlasenkof9375282009-04-05 19:13:39 +00009321 */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02009322 G.global_argc--;
9323 G.global_argv++;
9324 debug_printf("running script '%s'\n", G.global_argv[0]);
Denys Vlasenkob7adf7a2016-10-25 17:00:13 +02009325 xfunc_error_retval = 127; /* for "hush /does/not/exist" case */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02009326 input = xfopen_for_read(G.global_argv[0]);
Denys Vlasenkob7adf7a2016-10-25 17:00:13 +02009327 xfunc_error_retval = 1;
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02009328 remember_FILE(input);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009329 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00009330 parse_and_run_file(input);
9331#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02009332 fclose_and_forget(input);
Denis Vlasenkof9375282009-04-05 19:13:39 +00009333#endif
9334 goto final_return;
9335 }
9336
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00009337 /* Up to here, shell was non-interactive. Now it may become one.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009338 * NB: don't forget to (re)run install_special_sighandlers() as needed.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00009339 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00009340
Denys Vlasenko28a105d2009-06-01 11:26:30 +02009341 /* A shell is interactive if the '-i' flag was given,
9342 * or if all of the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00009343 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00009344 * no arguments remaining or the -s flag given
9345 * standard input is a terminal
9346 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00009347 * Refer to Posix.2, the description of the 'sh' utility.
9348 */
9349#if ENABLE_HUSH_JOB
9350 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Mike Frysinger38478a62009-05-20 04:48:06 -04009351 G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
9352 debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp);
9353 if (G_saved_tty_pgrp < 0)
9354 G_saved_tty_pgrp = 0;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009355
9356 /* try to dup stdin to high fd#, >= 255 */
Denys Vlasenko9acd63c2018-03-28 18:35:07 +02009357 G_interactive_fd = dup_CLOEXEC(STDIN_FILENO, 254);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009358 if (G_interactive_fd < 0) {
9359 /* try to dup to any fd */
9360 G_interactive_fd = dup(STDIN_FILENO);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009361 if (G_interactive_fd < 0) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009362 /* give up */
9363 G_interactive_fd = 0;
Mike Frysinger38478a62009-05-20 04:48:06 -04009364 G_saved_tty_pgrp = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00009365 }
9366 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009367// TODO: track & disallow any attempts of user
9368// to (inadvertently) close/redirect G_interactive_fd
Eric Andersen25f27032001-04-26 23:22:31 +00009369 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00009370 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009371 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00009372 close_on_exec_on(G_interactive_fd);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009373
Mike Frysinger38478a62009-05-20 04:48:06 -04009374 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009375 /* If we were run as 'hush &', sleep until we are
9376 * in the foreground (tty pgrp == our pgrp).
9377 * If we get started under a job aware app (like bash),
9378 * make sure we are now in charge so we don't fight over
9379 * who gets the foreground */
9380 while (1) {
9381 pid_t shell_pgrp = getpgrp();
Mike Frysinger38478a62009-05-20 04:48:06 -04009382 G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
9383 if (G_saved_tty_pgrp == shell_pgrp)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009384 break;
9385 /* send TTIN to ourself (should stop us) */
9386 kill(- shell_pgrp, SIGTTIN);
9387 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00009388 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009389
Denys Vlasenkof58f7052011-05-12 02:10:33 +02009390 /* Install more signal handlers */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009391 install_special_sighandlers();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009392
Mike Frysinger38478a62009-05-20 04:48:06 -04009393 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009394 /* Set other signals to restore saved_tty_pgrp */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009395 install_fatal_sighandlers();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009396 /* Put ourselves in our own process group
9397 * (bash, too, does this only if ctty is available) */
9398 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
9399 /* Grab control of the terminal */
9400 tcsetpgrp(G_interactive_fd, getpid());
9401 }
Denys Vlasenko550bf5b2015-10-09 16:42:57 +02009402 enable_restore_tty_pgrp_on_exit();
Denys Vlasenko4840ae82011-09-04 15:28:03 +02009403
9404# if ENABLE_HUSH_SAVEHISTORY && MAX_HISTORY > 0
9405 {
9406 const char *hp = get_local_var_value("HISTFILE");
9407 if (!hp) {
9408 hp = get_local_var_value("HOME");
9409 if (hp)
9410 hp = concat_path_file(hp, ".hush_history");
9411 } else {
9412 hp = xstrdup(hp);
9413 }
9414 if (hp) {
9415 G.line_input_state->hist_file = hp;
Denys Vlasenko4840ae82011-09-04 15:28:03 +02009416 //set_local_var(xasprintf("HISTFILE=%s", ...));
9417 }
9418# if ENABLE_FEATURE_SH_HISTFILESIZE
9419 hp = get_local_var_value("HISTFILESIZE");
9420 G.line_input_state->max_history = size_from_HISTFILESIZE(hp);
9421# endif
9422 }
9423# endif
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01009424 } else {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009425 install_special_sighandlers();
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01009426 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00009427#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00009428 /* No job control compiled in, only prompt/line editing */
9429 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denys Vlasenko9acd63c2018-03-28 18:35:07 +02009430 G_interactive_fd = dup_CLOEXEC(STDIN_FILENO, 254);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009431 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00009432 /* try to dup to any fd */
Denys Vlasenko9acd63c2018-03-28 18:35:07 +02009433 G_interactive_fd = dup_CLOEXEC(STDIN_FILENO);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009434 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00009435 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009436 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00009437 }
9438 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009439 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00009440 close_on_exec_on(G_interactive_fd);
Denis Vlasenkof9375282009-04-05 19:13:39 +00009441 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009442 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00009443#else
9444 /* We have interactiveness code disabled */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009445 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00009446#endif
9447 /* bash:
9448 * if interactive but not a login shell, sources ~/.bashrc
9449 * (--norc turns this off, --rcfile <file> overrides)
9450 */
9451
9452 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Denys Vlasenkoc34c0332009-09-29 12:25:30 +02009453 /* note: ash and hush share this string */
9454 printf("\n\n%s %s\n"
9455 IF_HUSH_HELP("Enter 'help' for a list of built-in commands.\n")
9456 "\n",
9457 bb_banner,
9458 "hush - the humble shell"
9459 );
Mike Frysingerb2705e12009-03-23 08:44:02 +00009460 }
9461
Denis Vlasenkof9375282009-04-05 19:13:39 +00009462 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00009463
Denis Vlasenkod76c0492007-05-25 02:16:25 +00009464 final_return:
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00009465 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00009466}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00009467
9468
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009469/*
9470 * Built-ins
9471 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009472static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009473{
9474 return 0;
9475}
9476
Denys Vlasenko265062d2017-01-10 15:13:30 +01009477#if ENABLE_HUSH_TEST || ENABLE_HUSH_ECHO || ENABLE_HUSH_PRINTF || ENABLE_HUSH_KILL
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02009478static int run_applet_main(char **argv, int (*applet_main_func)(int argc, char **argv))
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009479{
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02009480 int argc = string_array_len(argv);
9481 return applet_main_func(argc, argv);
Mike Frysingerccb19592009-10-15 03:31:15 -04009482}
Denys Vlasenko265062d2017-01-10 15:13:30 +01009483#endif
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01009484#if ENABLE_HUSH_TEST || BASH_TEST2
Mike Frysingerccb19592009-10-15 03:31:15 -04009485static int FAST_FUNC builtin_test(char **argv)
9486{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02009487 return run_applet_main(argv, test_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009488}
Denys Vlasenko265062d2017-01-10 15:13:30 +01009489#endif
Denys Vlasenko1cc68042017-01-09 17:10:04 +01009490#if ENABLE_HUSH_ECHO
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009491static int FAST_FUNC builtin_echo(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009492{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02009493 return run_applet_main(argv, echo_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009494}
Denys Vlasenko1cc68042017-01-09 17:10:04 +01009495#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009496#if ENABLE_HUSH_PRINTF
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04009497static int FAST_FUNC builtin_printf(char **argv)
9498{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02009499 return run_applet_main(argv, printf_main);
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04009500}
9501#endif
9502
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009503#if ENABLE_HUSH_HELP
9504static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM)
9505{
9506 const struct built_in_command *x;
9507
9508 printf(
9509 "Built-in commands:\n"
9510 "------------------\n");
9511 for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) {
9512 if (x->b_descr)
9513 printf("%-10s%s\n", x->b_cmd, x->b_descr);
9514 }
9515 return EXIT_SUCCESS;
9516}
9517#endif
9518
9519#if MAX_HISTORY && ENABLE_FEATURE_EDITING
9520static int FAST_FUNC builtin_history(char **argv UNUSED_PARAM)
9521{
9522 show_history(G.line_input_state);
9523 return EXIT_SUCCESS;
9524}
9525#endif
9526
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009527static char **skip_dash_dash(char **argv)
9528{
9529 argv++;
9530 if (argv[0] && argv[0][0] == '-' && argv[0][1] == '-' && argv[0][2] == '\0')
9531 argv++;
9532 return argv;
9533}
9534
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009535static int FAST_FUNC builtin_cd(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009536{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009537 const char *newdir;
9538
9539 argv = skip_dash_dash(argv);
9540 newdir = argv[0];
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00009541 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00009542 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009543 * bash says "bash: cd: HOME not set" and does nothing
9544 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00009545 */
Denys Vlasenko90a99042009-09-06 02:36:23 +02009546 const char *home = get_local_var_value("HOME");
9547 newdir = home ? home : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00009548 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009549 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00009550 /* Mimic bash message exactly */
9551 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009552 return EXIT_FAILURE;
9553 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02009554 /* Read current dir (get_cwd(1) is inside) and set PWD.
9555 * Note: do not enforce exporting. If PWD was unset or unexported,
9556 * set it again, but do not export. bash does the same.
9557 */
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009558 set_pwd_var(/*flag:*/ 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009559 return EXIT_SUCCESS;
9560}
9561
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009562static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM)
9563{
9564 puts(get_cwd(0));
9565 return EXIT_SUCCESS;
9566}
9567
9568static int FAST_FUNC builtin_eval(char **argv)
9569{
9570 int rcode = EXIT_SUCCESS;
9571
9572 argv = skip_dash_dash(argv);
Denys Vlasenko1f191122018-01-11 13:17:30 +01009573 if (argv[0]) {
9574 char *str = NULL;
9575
9576 if (argv[1]) {
9577 /* "The eval utility shall construct a command by
9578 * concatenating arguments together, separating
9579 * each with a <space> character."
9580 */
9581 char *p;
9582 unsigned len = 0;
9583 char **pp = argv;
9584 do
9585 len += strlen(*pp) + 1;
9586 while (*++pp);
9587 str = p = xmalloc(len);
9588 pp = argv;
9589 do {
9590 p = stpcpy(p, *pp);
9591 *p++ = ' ';
9592 } while (*++pp);
9593 p[-1] = '\0';
9594 }
9595
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009596 /* bash:
9597 * eval "echo Hi; done" ("done" is syntax error):
9598 * "echo Hi" will not execute too.
9599 */
Denys Vlasenko1f191122018-01-11 13:17:30 +01009600 parse_and_run_string(str ? str : argv[0]);
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009601 free(str);
9602 rcode = G.last_exitcode;
9603 }
9604 return rcode;
9605}
9606
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009607static int FAST_FUNC builtin_exec(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009608{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009609 argv = skip_dash_dash(argv);
9610 if (argv[0] == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009611 return EXIT_SUCCESS; /* bash does this */
Denys Vlasenkof37eb392009-10-18 11:46:35 +02009612
Denys Vlasenkof37eb392009-10-18 11:46:35 +02009613 /* Careful: we can end up here after [v]fork. Do not restore
9614 * tty pgrp then, only top-level shell process does that */
9615 if (G_saved_tty_pgrp && getpid() == G.root_pid)
9616 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
9617
Denys Vlasenko5b3d2eb2017-07-31 18:02:28 +02009618 /* Saved-redirect fds, script fds and G_interactive_fd are still
9619 * open here. However, they are all CLOEXEC, and execv below
9620 * closes them. Try interactive "exec ls -l /proc/self/fd",
9621 * it should show no extra open fds in the "ls" process.
9622 * If we'd try to run builtins/NOEXECs, this would need improving.
9623 */
9624 //close_saved_fds_and_FILE_fds();
9625
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02009626 /* TODO: if exec fails, bash does NOT exit! We do.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009627 * We'll need to undo trap cleanup (it's inside execvp_or_die)
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02009628 * and tcsetpgrp, and this is inherently racy.
9629 */
9630 execvp_or_die(argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009631}
9632
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009633static int FAST_FUNC builtin_exit(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009634{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00009635 debug_printf_exec("%s()\n", __func__);
Denis Vlasenko40e84372009-04-18 11:23:38 +00009636
9637 /* interactive bash:
9638 * # trap "echo EEE" EXIT
9639 * # exit
9640 * exit
9641 * There are stopped jobs.
9642 * (if there are _stopped_ jobs, running ones don't count)
9643 * # exit
9644 * exit
Denys Vlasenko6830ade2013-01-15 13:58:01 +01009645 * EEE (then bash exits)
Denis Vlasenko40e84372009-04-18 11:23:38 +00009646 *
Denys Vlasenkoa110c902010-09-12 15:38:04 +02009647 * TODO: we can use G.exiting = -1 as indicator "last cmd was exit"
Denis Vlasenko40e84372009-04-18 11:23:38 +00009648 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00009649
9650 /* note: EXIT trap is run by hush_exit */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009651 argv = skip_dash_dash(argv);
9652 if (argv[0] == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00009653 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009654 /* mimic bash: exit 123abc == exit 255 + error msg */
9655 xfunc_error_retval = 255;
9656 /* bash: exit -2 == exit 254, no error msg */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009657 hush_exit(xatoi(argv[0]) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009658}
9659
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009660#if ENABLE_HUSH_TYPE
9661/* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */
9662static int FAST_FUNC builtin_type(char **argv)
9663{
9664 int ret = EXIT_SUCCESS;
9665
9666 while (*++argv) {
9667 const char *type;
9668 char *path = NULL;
9669
9670 if (0) {} /* make conditional compile easier below */
9671 /*else if (find_alias(*argv))
9672 type = "an alias";*/
9673#if ENABLE_HUSH_FUNCTIONS
9674 else if (find_function(*argv))
9675 type = "a function";
9676#endif
9677 else if (find_builtin(*argv))
9678 type = "a shell builtin";
9679 else if ((path = find_in_path(*argv)) != NULL)
9680 type = path;
9681 else {
9682 bb_error_msg("type: %s: not found", *argv);
9683 ret = EXIT_FAILURE;
9684 continue;
9685 }
9686
9687 printf("%s is %s\n", *argv, type);
9688 free(path);
9689 }
9690
9691 return ret;
9692}
9693#endif
9694
9695#if ENABLE_HUSH_READ
9696/* Interruptibility of read builtin in bash
9697 * (tested on bash-4.2.8 by sending signals (not by ^C)):
9698 *
9699 * Empty trap makes read ignore corresponding signal, for any signal.
9700 *
9701 * SIGINT:
9702 * - terminates non-interactive shell;
9703 * - interrupts read in interactive shell;
9704 * if it has non-empty trap:
9705 * - executes trap and returns to command prompt in interactive shell;
9706 * - executes trap and returns to read in non-interactive shell;
9707 * SIGTERM:
9708 * - is ignored (does not interrupt) read in interactive shell;
9709 * - terminates non-interactive shell;
9710 * if it has non-empty trap:
9711 * - executes trap and returns to read;
9712 * SIGHUP:
9713 * - terminates shell (regardless of interactivity);
9714 * if it has non-empty trap:
9715 * - executes trap and returns to read;
Denys Vlasenkof5470412017-05-22 19:34:45 +02009716 * SIGCHLD from children:
9717 * - does not interrupt read regardless of interactivity:
9718 * try: sleep 1 & read x; echo $x
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009719 */
9720static int FAST_FUNC builtin_read(char **argv)
9721{
9722 const char *r;
9723 char *opt_n = NULL;
9724 char *opt_p = NULL;
9725 char *opt_t = NULL;
9726 char *opt_u = NULL;
Denys Vlasenko1f41c882017-08-09 13:52:36 +02009727 char *opt_d = NULL; /* optimized out if !BASH */
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009728 const char *ifs;
9729 int read_flags;
9730
9731 /* "!": do not abort on errors.
9732 * Option string must start with "sr" to match BUILTIN_READ_xxx
9733 */
Denys Vlasenko1f41c882017-08-09 13:52:36 +02009734 read_flags = getopt32(argv,
9735#if BASH_READ_D
9736 "!srn:p:t:u:d:", &opt_n, &opt_p, &opt_t, &opt_u, &opt_d
9737#else
9738 "!srn:p:t:u:", &opt_n, &opt_p, &opt_t, &opt_u
9739#endif
9740 );
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009741 if (read_flags == (uint32_t)-1)
9742 return EXIT_FAILURE;
9743 argv += optind;
9744 ifs = get_local_var_value("IFS"); /* can be NULL */
9745
9746 again:
9747 r = shell_builtin_read(set_local_var_from_halves,
9748 argv,
9749 ifs,
9750 read_flags,
9751 opt_n,
9752 opt_p,
9753 opt_t,
Denys Vlasenko1f41c882017-08-09 13:52:36 +02009754 opt_u,
9755 opt_d
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009756 );
9757
9758 if ((uintptr_t)r == 1 && errno == EINTR) {
9759 unsigned sig = check_and_run_traps();
Denys Vlasenkof5470412017-05-22 19:34:45 +02009760 if (sig != SIGINT)
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009761 goto again;
9762 }
9763
9764 if ((uintptr_t)r > 1) {
9765 bb_error_msg("%s", r);
9766 r = (char*)(uintptr_t)1;
9767 }
9768
9769 return (uintptr_t)r;
9770}
9771#endif
9772
9773#if ENABLE_HUSH_UMASK
9774static int FAST_FUNC builtin_umask(char **argv)
9775{
9776 int rc;
9777 mode_t mask;
9778
9779 rc = 1;
9780 mask = umask(0);
9781 argv = skip_dash_dash(argv);
9782 if (argv[0]) {
9783 mode_t old_mask = mask;
9784
9785 /* numeric umasks are taken as-is */
9786 /* symbolic umasks are inverted: "umask a=rx" calls umask(222) */
9787 if (!isdigit(argv[0][0]))
9788 mask ^= 0777;
9789 mask = bb_parse_mode(argv[0], mask);
9790 if (!isdigit(argv[0][0]))
9791 mask ^= 0777;
9792 if ((unsigned)mask > 0777) {
9793 mask = old_mask;
9794 /* bash messages:
9795 * bash: umask: 'q': invalid symbolic mode operator
9796 * bash: umask: 999: octal number out of range
9797 */
9798 bb_error_msg("%s: invalid mode '%s'", "umask", argv[0]);
9799 rc = 0;
9800 }
9801 } else {
9802 /* Mimic bash */
9803 printf("%04o\n", (unsigned) mask);
9804 /* fall through and restore mask which we set to 0 */
9805 }
9806 umask(mask);
9807
9808 return !rc; /* rc != 0 - success */
9809}
9810#endif
9811
Denys Vlasenko41ade052017-01-08 18:56:24 +01009812#if ENABLE_HUSH_EXPORT || ENABLE_HUSH_TRAP
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009813static void print_escaped(const char *s)
9814{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009815 if (*s == '\'')
9816 goto squote;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009817 do {
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009818 const char *p = strchrnul(s, '\'');
9819 /* print 'xxxx', possibly just '' */
9820 printf("'%.*s'", (int)(p - s), s);
9821 if (*p == '\0')
9822 break;
9823 s = p;
9824 squote:
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009825 /* s points to '; print "'''...'''" */
9826 putchar('"');
9827 do putchar('\''); while (*++s == '\'');
9828 putchar('"');
9829 } while (*s);
9830}
Denys Vlasenko41ade052017-01-08 18:56:24 +01009831#endif
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009832
Denys Vlasenko1e660422017-07-17 21:10:50 +02009833#if ENABLE_HUSH_EXPORT || ENABLE_HUSH_LOCAL || ENABLE_HUSH_READONLY
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009834static int helper_export_local(char **argv, unsigned flags)
Denys Vlasenko295fef82009-06-03 12:47:26 +02009835{
9836 do {
9837 char *name = *argv;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009838 char *name_end = strchrnul(name, '=');
Denys Vlasenko295fef82009-06-03 12:47:26 +02009839
9840 /* So far we do not check that name is valid (TODO?) */
9841
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009842 if (*name_end == '\0') {
9843 struct variable *var, **vpp;
Denys Vlasenko295fef82009-06-03 12:47:26 +02009844
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009845 vpp = get_ptr_to_local_var(name, name_end - name);
9846 var = vpp ? *vpp : NULL;
9847
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009848 if (flags & SETFLAG_UNEXPORT) {
Denys Vlasenko295fef82009-06-03 12:47:26 +02009849 /* export -n NAME (without =VALUE) */
9850 if (var) {
9851 var->flg_export = 0;
9852 debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
9853 unsetenv(name);
9854 } /* else: export -n NOT_EXISTING_VAR: no-op */
9855 continue;
9856 }
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009857 if (flags & SETFLAG_EXPORT) {
Denys Vlasenko295fef82009-06-03 12:47:26 +02009858 /* export NAME (without =VALUE) */
9859 if (var) {
9860 var->flg_export = 1;
9861 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
9862 putenv(var->varstr);
9863 continue;
9864 }
9865 }
Denys Vlasenko38ef39a2017-07-18 01:40:01 +02009866 if (flags & SETFLAG_MAKE_RO) {
9867 /* readonly NAME (without =VALUE) */
9868 if (var) {
9869 var->flg_read_only = 1;
9870 continue;
9871 }
9872 }
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009873# if ENABLE_HUSH_LOCAL
Denys Vlasenkob95ee962017-07-17 21:19:53 +02009874 /* Is this "local" bltin? */
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009875 if (!(flags & (SETFLAG_EXPORT|SETFLAG_UNEXPORT|SETFLAG_MAKE_RO))) {
9876 unsigned lvl = flags >> SETFLAG_LOCAL_SHIFT;
Denys Vlasenkob95ee962017-07-17 21:19:53 +02009877 if (var && var->func_nest_level == lvl) {
9878 /* "local x=abc; ...; local x" - ignore second local decl */
9879 continue;
9880 }
Denys Vlasenko61508d92016-10-02 21:12:02 +02009881 }
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009882# endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02009883 /* Exporting non-existing variable.
9884 * bash does not put it in environment,
9885 * but remembers that it is exported,
9886 * and does put it in env when it is set later.
Denys Vlasenko1e660422017-07-17 21:10:50 +02009887 * We just set it to "" and export.
9888 */
Denys Vlasenko295fef82009-06-03 12:47:26 +02009889 /* Or, it's "local NAME" (without =VALUE).
Denys Vlasenko1e660422017-07-17 21:10:50 +02009890 * bash sets the value to "".
9891 */
9892 /* Or, it's "readonly NAME" (without =VALUE).
9893 * bash remembers NAME and disallows its creation
9894 * in the future.
9895 */
Denys Vlasenko295fef82009-06-03 12:47:26 +02009896 name = xasprintf("%s=", name);
9897 } else {
9898 /* (Un)exporting/making local NAME=VALUE */
9899 name = xstrdup(name);
9900 }
Denys Vlasenko38ef39a2017-07-18 01:40:01 +02009901 if (set_local_var(name, flags))
9902 return EXIT_FAILURE;
Denys Vlasenko295fef82009-06-03 12:47:26 +02009903 } while (*++argv);
Denys Vlasenko1e660422017-07-17 21:10:50 +02009904 return EXIT_SUCCESS;
Denys Vlasenko295fef82009-06-03 12:47:26 +02009905}
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009906#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02009907
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009908#if ENABLE_HUSH_EXPORT
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009909static int FAST_FUNC builtin_export(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009910{
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00009911 unsigned opt_unexport;
9912
Denys Vlasenkodf5131c2009-06-07 16:04:17 +02009913#if ENABLE_HUSH_EXPORT_N
9914 /* "!": do not abort on errors */
9915 opt_unexport = getopt32(argv, "!n");
9916 if (opt_unexport == (uint32_t)-1)
9917 return EXIT_FAILURE;
9918 argv += optind;
9919#else
9920 opt_unexport = 0;
9921 argv++;
9922#endif
9923
9924 if (argv[0] == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009925 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009926 if (e) {
9927 while (*e) {
9928#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009929 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009930#else
9931 /* ash emits: export VAR='VAL'
9932 * bash: declare -x VAR="VAL"
9933 * we follow ash example */
9934 const char *s = *e++;
9935 const char *p = strchr(s, '=');
9936
9937 if (!p) /* wtf? take next variable */
9938 continue;
9939 /* export var= */
9940 printf("export %.*s", (int)(p - s) + 1, s);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009941 print_escaped(p + 1);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009942 putchar('\n');
9943#endif
9944 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01009945 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009946 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009947 return EXIT_SUCCESS;
9948 }
9949
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009950 return helper_export_local(argv, opt_unexport ? SETFLAG_UNEXPORT : SETFLAG_EXPORT);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009951}
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009952#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009953
Denys Vlasenko295fef82009-06-03 12:47:26 +02009954#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009955static int FAST_FUNC builtin_local(char **argv)
Denys Vlasenko295fef82009-06-03 12:47:26 +02009956{
9957 if (G.func_nest_level == 0) {
9958 bb_error_msg("%s: not in a function", argv[0]);
9959 return EXIT_FAILURE; /* bash compat */
9960 }
Denys Vlasenko1e660422017-07-17 21:10:50 +02009961 argv++;
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009962 return helper_export_local(argv, G.func_nest_level << SETFLAG_LOCAL_SHIFT);
Denys Vlasenko295fef82009-06-03 12:47:26 +02009963}
9964#endif
9965
Denys Vlasenko1e660422017-07-17 21:10:50 +02009966#if ENABLE_HUSH_READONLY
9967static int FAST_FUNC builtin_readonly(char **argv)
9968{
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009969 argv++;
9970 if (*argv == NULL) {
Denys Vlasenko1e660422017-07-17 21:10:50 +02009971 /* bash: readonly [-p]: list all readonly VARs
9972 * (-p has no effect in bash)
9973 */
9974 struct variable *e;
9975 for (e = G.top_var; e; e = e->next) {
9976 if (e->flg_read_only) {
9977//TODO: quote value: readonly VAR='VAL'
9978 printf("readonly %s\n", e->varstr);
9979 }
9980 }
9981 return EXIT_SUCCESS;
9982 }
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009983 return helper_export_local(argv, SETFLAG_MAKE_RO);
Denys Vlasenko1e660422017-07-17 21:10:50 +02009984}
9985#endif
9986
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009987#if ENABLE_HUSH_UNSET
Denys Vlasenko61508d92016-10-02 21:12:02 +02009988/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
9989static int FAST_FUNC builtin_unset(char **argv)
9990{
9991 int ret;
9992 unsigned opts;
9993
9994 /* "!": do not abort on errors */
9995 /* "+": stop at 1st non-option */
9996 opts = getopt32(argv, "!+vf");
9997 if (opts == (unsigned)-1)
9998 return EXIT_FAILURE;
9999 if (opts == 3) {
10000 bb_error_msg("unset: -v and -f are exclusive");
10001 return EXIT_FAILURE;
10002 }
10003 argv += optind;
10004
10005 ret = EXIT_SUCCESS;
10006 while (*argv) {
10007 if (!(opts & 2)) { /* not -f */
10008 if (unset_local_var(*argv)) {
10009 /* unset <nonexistent_var> doesn't fail.
10010 * Error is when one tries to unset RO var.
10011 * Message was printed by unset_local_var. */
10012 ret = EXIT_FAILURE;
10013 }
10014 }
Denys Vlasenko10d5ece2017-01-08 18:28:43 +010010015# if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko61508d92016-10-02 21:12:02 +020010016 else {
10017 unset_func(*argv);
10018 }
Denys Vlasenko10d5ece2017-01-08 18:28:43 +010010019# endif
Denys Vlasenko61508d92016-10-02 21:12:02 +020010020 argv++;
10021 }
10022 return ret;
10023}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +010010024#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +020010025
Denys Vlasenko10d5ece2017-01-08 18:28:43 +010010026#if ENABLE_HUSH_SET
Denys Vlasenko61508d92016-10-02 21:12:02 +020010027/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
10028 * built-in 'set' handler
10029 * SUSv3 says:
10030 * set [-abCefhmnuvx] [-o option] [argument...]
10031 * set [+abCefhmnuvx] [+o option] [argument...]
10032 * set -- [argument...]
10033 * set -o
10034 * set +o
10035 * Implementations shall support the options in both their hyphen and
10036 * plus-sign forms. These options can also be specified as options to sh.
10037 * Examples:
10038 * Write out all variables and their values: set
10039 * Set $1, $2, and $3 and set "$#" to 3: set c a b
10040 * Turn on the -x and -v options: set -xv
10041 * Unset all positional parameters: set --
10042 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
10043 * Set the positional parameters to the expansion of x, even if x expands
10044 * with a leading '-' or '+': set -- $x
10045 *
10046 * So far, we only support "set -- [argument...]" and some of the short names.
10047 */
10048static int FAST_FUNC builtin_set(char **argv)
10049{
10050 int n;
10051 char **pp, **g_argv;
10052 char *arg = *++argv;
10053
10054 if (arg == NULL) {
10055 struct variable *e;
10056 for (e = G.top_var; e; e = e->next)
10057 puts(e->varstr);
10058 return EXIT_SUCCESS;
10059 }
10060
10061 do {
10062 if (strcmp(arg, "--") == 0) {
10063 ++argv;
10064 goto set_argv;
10065 }
10066 if (arg[0] != '+' && arg[0] != '-')
10067 break;
10068 for (n = 1; arg[n]; ++n) {
10069 if (set_mode((arg[0] == '-'), arg[n], argv[1]))
10070 goto error;
10071 if (arg[n] == 'o' && argv[1])
10072 argv++;
10073 }
10074 } while ((arg = *++argv) != NULL);
10075 /* Now argv[0] is 1st argument */
10076
10077 if (arg == NULL)
10078 return EXIT_SUCCESS;
10079 set_argv:
10080
10081 /* NB: G.global_argv[0] ($0) is never freed/changed */
10082 g_argv = G.global_argv;
10083 if (G.global_args_malloced) {
10084 pp = g_argv;
10085 while (*++pp)
10086 free(*pp);
10087 g_argv[1] = NULL;
10088 } else {
10089 G.global_args_malloced = 1;
10090 pp = xzalloc(sizeof(pp[0]) * 2);
10091 pp[0] = g_argv[0]; /* retain $0 */
10092 g_argv = pp;
10093 }
10094 /* This realloc's G.global_argv */
10095 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
10096
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +020010097 G.global_argc = 1 + string_array_len(pp + 1);
Denys Vlasenko61508d92016-10-02 21:12:02 +020010098
10099 return EXIT_SUCCESS;
10100
10101 /* Nothing known, so abort */
10102 error:
Denys Vlasenko57000292018-01-12 14:41:45 +010010103 bb_error_msg("%s: %s: invalid option", "set", arg);
Denys Vlasenko61508d92016-10-02 21:12:02 +020010104 return EXIT_FAILURE;
10105}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +010010106#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +020010107
10108static int FAST_FUNC builtin_shift(char **argv)
10109{
10110 int n = 1;
10111 argv = skip_dash_dash(argv);
10112 if (argv[0]) {
Denys Vlasenkoe59591a2017-07-06 20:12:44 +020010113 n = bb_strtou(argv[0], NULL, 10);
10114 if (errno || n < 0) {
10115 /* shared string with ash.c */
10116 bb_error_msg("Illegal number: %s", argv[0]);
10117 /*
10118 * ash aborts in this case.
10119 * bash prints error message and set $? to 1.
10120 * Interestingly, for "shift 99999" bash does not
10121 * print error message, but does set $? to 1
10122 * (and does no shifting at all).
10123 */
10124 }
Denys Vlasenko61508d92016-10-02 21:12:02 +020010125 }
10126 if (n >= 0 && n < G.global_argc) {
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +010010127 if (G_global_args_malloced) {
Denys Vlasenko61508d92016-10-02 21:12:02 +020010128 int m = 1;
10129 while (m <= n)
10130 free(G.global_argv[m++]);
10131 }
10132 G.global_argc -= n;
10133 memmove(&G.global_argv[1], &G.global_argv[n+1],
10134 G.global_argc * sizeof(G.global_argv[0]));
10135 return EXIT_SUCCESS;
10136 }
10137 return EXIT_FAILURE;
10138}
10139
Denys Vlasenko74d40582017-08-11 01:32:46 +020010140#if ENABLE_HUSH_GETOPTS
10141static int FAST_FUNC builtin_getopts(char **argv)
10142{
Denys Vlasenko9a7d0a02017-08-11 02:37:48 +020010143/* http://pubs.opengroup.org/onlinepubs/9699919799/utilities/getopts.html
10144
Denys Vlasenko74d40582017-08-11 01:32:46 +020010145TODO:
Denys Vlasenko74d40582017-08-11 01:32:46 +020010146If a required argument is not found, and getopts is not silent,
10147a question mark (?) is placed in VAR, OPTARG is unset, and a
10148diagnostic message is printed. If getopts is silent, then a
10149colon (:) is placed in VAR and OPTARG is set to the option
10150character found.
10151
10152Test that VAR is a valid variable name?
Denys Vlasenko9a7d0a02017-08-11 02:37:48 +020010153
10154"Whenever the shell is invoked, OPTIND shall be initialized to 1"
Denys Vlasenko74d40582017-08-11 01:32:46 +020010155*/
10156 char cbuf[2];
10157 const char *cp, *optstring, *var;
Denys Vlasenko238ff982017-08-29 13:38:30 +020010158 int c, n, exitcode, my_opterr;
10159 unsigned count;
Denys Vlasenko74d40582017-08-11 01:32:46 +020010160
10161 optstring = *++argv;
10162 if (!optstring || !(var = *++argv)) {
10163 bb_error_msg("usage: getopts OPTSTRING VAR [ARGS]");
10164 return EXIT_FAILURE;
10165 }
10166
Denys Vlasenko238ff982017-08-29 13:38:30 +020010167 if (argv[1])
10168 argv[0] = G.global_argv[0]; /* for error messages in getopt() */
10169 else
10170 argv = G.global_argv;
10171 cbuf[1] = '\0';
10172
10173 my_opterr = 0;
Denys Vlasenko048491f2017-08-17 12:36:39 +020010174 if (optstring[0] != ':') {
Denys Vlasenko419db032017-08-11 17:21:14 +020010175 cp = get_local_var_value("OPTERR");
Denys Vlasenko048491f2017-08-17 12:36:39 +020010176 /* 0 if "OPTERR=0", 1 otherwise */
Denys Vlasenko238ff982017-08-29 13:38:30 +020010177 my_opterr = (!cp || NOT_LONE_CHAR(cp, '0'));
Denys Vlasenko419db032017-08-11 17:21:14 +020010178 }
Denys Vlasenko74d40582017-08-11 01:32:46 +020010179
10180 /* getopts stops on first non-option. Add "+" to force that */
10181 /*if (optstring[0] != '+')*/ {
10182 char *s = alloca(strlen(optstring) + 2);
10183 sprintf(s, "+%s", optstring);
10184 optstring = s;
10185 }
10186
Denys Vlasenko238ff982017-08-29 13:38:30 +020010187 /* Naively, now we should just
10188 * cp = get_local_var_value("OPTIND");
10189 * optind = cp ? atoi(cp) : 0;
10190 * optarg = NULL;
10191 * opterr = my_opterr;
10192 * c = getopt(string_array_len(argv), argv, optstring);
10193 * and be done? Not so fast...
10194 * Unlike normal getopt() usage in C programs, here
10195 * each successive call will (usually) have the same argv[] CONTENTS,
10196 * but not the ADDRESSES. Worse yet, it's possible that between
10197 * invocations of "getopts", there will be calls to shell builtins
10198 * which use getopt() internally. Example:
10199 * while getopts "abc" RES -a -bc -abc de; do
10200 * unset -ff func
10201 * done
10202 * This would not work correctly: getopt() call inside "unset"
10203 * modifies internal libc state which is tracking position in
10204 * multi-option strings ("-abc"). At best, it can skip options
10205 * or return the same option infinitely. With glibc implementation
10206 * of getopt(), it would use outright invalid pointers and return
10207 * garbage even _without_ "unset" mangling internal state.
10208 *
10209 * We resort to resetting getopt() state and calling it N times,
10210 * until we get Nth result (or failure).
10211 * (N == G.getopt_count is reset to 0 whenever OPTIND is [un]set).
10212 */
Denys Vlasenko60161812017-08-29 14:32:17 +020010213 GETOPT_RESET();
Denys Vlasenko238ff982017-08-29 13:38:30 +020010214 count = 0;
10215 n = string_array_len(argv);
10216 do {
10217 optarg = NULL;
10218 opterr = (count < G.getopt_count) ? 0 : my_opterr;
10219 c = getopt(n, argv, optstring);
10220 if (c < 0)
10221 break;
10222 count++;
10223 } while (count <= G.getopt_count);
10224
10225 /* Set OPTIND. Prevent resetting of the magic counter! */
10226 set_local_var_from_halves("OPTIND", utoa(optind));
10227 G.getopt_count = count; /* "next time, give me N+1'th result" */
Denys Vlasenko60161812017-08-29 14:32:17 +020010228 GETOPT_RESET(); /* just in case */
Denys Vlasenko419db032017-08-11 17:21:14 +020010229
10230 /* Set OPTARG */
10231 /* Always set or unset, never left as-is, even on exit/error:
10232 * "If no option was found, or if the option that was found
10233 * does not have an option-argument, OPTARG shall be unset."
10234 */
10235 cp = optarg;
10236 if (c == '?') {
10237 /* If ":optstring" and unknown option is seen,
10238 * it is stored to OPTARG.
10239 */
10240 if (optstring[1] == ':') {
10241 cbuf[0] = optopt;
10242 cp = cbuf;
10243 }
10244 }
10245 if (cp)
10246 set_local_var_from_halves("OPTARG", cp);
10247 else
10248 unset_local_var("OPTARG");
10249
10250 /* Convert -1 to "?" */
Denys Vlasenko74d40582017-08-11 01:32:46 +020010251 exitcode = EXIT_SUCCESS;
10252 if (c < 0) { /* -1: end of options */
10253 exitcode = EXIT_FAILURE;
10254 c = '?';
10255 }
Denys Vlasenko419db032017-08-11 17:21:14 +020010256
Denys Vlasenko238ff982017-08-29 13:38:30 +020010257 /* Set VAR */
Denys Vlasenko74d40582017-08-11 01:32:46 +020010258 cbuf[0] = c;
Denys Vlasenko74d40582017-08-11 01:32:46 +020010259 set_local_var_from_halves(var, cbuf);
Denys Vlasenko9a7d0a02017-08-11 02:37:48 +020010260
Denys Vlasenko74d40582017-08-11 01:32:46 +020010261 return exitcode;
10262}
10263#endif
10264
Denys Vlasenkoa1184af2017-01-10 15:58:02 +010010265static int FAST_FUNC builtin_source(char **argv)
Denys Vlasenko61508d92016-10-02 21:12:02 +020010266{
Denys Vlasenkoa1184af2017-01-10 15:58:02 +010010267 char *arg_path, *filename;
10268 FILE *input;
10269 save_arg_t sv;
10270 char *args_need_save;
10271#if ENABLE_HUSH_FUNCTIONS
10272 smallint sv_flg;
Denys Vlasenko7a85c602017-01-08 17:40:18 +010010273#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +020010274
Denys Vlasenkoa1184af2017-01-10 15:58:02 +010010275 argv = skip_dash_dash(argv);
10276 filename = argv[0];
10277 if (!filename) {
10278 /* bash says: "bash: .: filename argument required" */
10279 return 2; /* bash compat */
10280 }
10281 arg_path = NULL;
10282 if (!strchr(filename, '/')) {
10283 arg_path = find_in_path(filename);
10284 if (arg_path)
10285 filename = arg_path;
Denys Vlasenko54c21112018-01-27 20:46:45 +010010286 else if (!ENABLE_HUSH_BASH_SOURCE_CURDIR) {
Denys Vlasenkof7e0fea2018-01-27 19:05:59 +010010287 errno = ENOENT;
10288 bb_simple_perror_msg(filename);
10289 return EXIT_FAILURE;
10290 }
Denys Vlasenkoa1184af2017-01-10 15:58:02 +010010291 }
10292 input = remember_FILE(fopen_or_warn(filename, "r"));
10293 free(arg_path);
10294 if (!input) {
10295 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
10296 /* POSIX: non-interactive shell should abort here,
10297 * not merely fail. So far no one complained :)
10298 */
10299 return EXIT_FAILURE;
10300 }
10301
10302#if ENABLE_HUSH_FUNCTIONS
10303 sv_flg = G_flag_return_in_progress;
10304 /* "we are inside sourced file, ok to use return" */
10305 G_flag_return_in_progress = -1;
10306#endif
10307 args_need_save = argv[1]; /* used as a boolean variable */
10308 if (args_need_save)
10309 save_and_replace_G_args(&sv, argv);
10310
10311 /* "false; . ./empty_line; echo Zero:$?" should print 0 */
10312 G.last_exitcode = 0;
10313 parse_and_run_file(input);
10314 fclose_and_forget(input);
10315
10316 if (args_need_save) /* can't use argv[1] instead: "shift" can mangle it */
10317 restore_G_args(&sv, argv);
10318#if ENABLE_HUSH_FUNCTIONS
10319 G_flag_return_in_progress = sv_flg;
10320#endif
10321
10322 return G.last_exitcode;
10323}
10324
Denys Vlasenko7a85c602017-01-08 17:40:18 +010010325#if ENABLE_HUSH_TRAP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010326static int FAST_FUNC builtin_trap(char **argv)
Denis Vlasenko38e626d2009-04-18 12:58:19 +000010327{
Denis Vlasenko38e626d2009-04-18 12:58:19 +000010328 int sig;
10329 char *new_cmd;
10330
Denys Vlasenko7a85c602017-01-08 17:40:18 +010010331 if (!G_traps)
10332 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
Denis Vlasenko38e626d2009-04-18 12:58:19 +000010333
10334 argv++;
10335 if (!*argv) {
Denis Vlasenko6008d8a2009-04-18 13:05:10 +000010336 int i;
Denis Vlasenko38e626d2009-04-18 12:58:19 +000010337 /* No args: print all trapped */
10338 for (i = 0; i < NSIG; ++i) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +010010339 if (G_traps[i]) {
Denis Vlasenko38e626d2009-04-18 12:58:19 +000010340 printf("trap -- ");
Denys Vlasenko7a85c602017-01-08 17:40:18 +010010341 print_escaped(G_traps[i]);
Denys Vlasenkoe74aaf92009-09-27 02:05:45 +020010342 /* note: bash adds "SIG", but only if invoked
10343 * as "bash". If called as "sh", or if set -o posix,
10344 * then it prints short signal names.
10345 * We are printing short names: */
10346 printf(" %s\n", get_signame(i));
Denis Vlasenko38e626d2009-04-18 12:58:19 +000010347 }
10348 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +010010349 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko38e626d2009-04-18 12:58:19 +000010350 return EXIT_SUCCESS;
10351 }
10352
10353 new_cmd = NULL;
Denis Vlasenko38e626d2009-04-18 12:58:19 +000010354 /* If first arg is a number: reset all specified signals */
10355 sig = bb_strtou(*argv, NULL, 10);
10356 if (errno == 0) {
10357 int ret;
10358 process_sig_list:
10359 ret = EXIT_SUCCESS;
10360 while (*argv) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +020010361 sighandler_t handler;
10362
Denis Vlasenko38e626d2009-04-18 12:58:19 +000010363 sig = get_signum(*argv++);
Denys Vlasenko86981e32017-07-25 20:06:17 +020010364 if (sig < 0) {
Denis Vlasenko38e626d2009-04-18 12:58:19 +000010365 ret = EXIT_FAILURE;
10366 /* Mimic bash message exactly */
Denys Vlasenko74562982017-07-06 18:40:45 +020010367 bb_error_msg("trap: %s: invalid signal specification", argv[-1]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +000010368 continue;
10369 }
10370
Denys Vlasenko7a85c602017-01-08 17:40:18 +010010371 free(G_traps[sig]);
10372 G_traps[sig] = xstrdup(new_cmd);
Denis Vlasenko38e626d2009-04-18 12:58:19 +000010373
Denys Vlasenkoe89a2412010-01-12 15:19:31 +010010374 debug_printf("trap: setting SIG%s (%i) to '%s'\n",
Denys Vlasenko7a85c602017-01-08 17:40:18 +010010375 get_signame(sig), sig, G_traps[sig]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +000010376
10377 /* There is no signal for 0 (EXIT) */
10378 if (sig == 0)
10379 continue;
10380
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +020010381 if (new_cmd)
10382 handler = (new_cmd[0] ? record_pending_signo : SIG_IGN);
10383 else
10384 /* We are removing trap handler */
10385 handler = pick_sighandler(sig);
Denys Vlasenko0806e402011-05-12 23:06:20 +020010386 install_sighandler(sig, handler);
Denis Vlasenko38e626d2009-04-18 12:58:19 +000010387 }
10388 return ret;
10389 }
10390
10391 if (!argv[1]) { /* no second arg */
10392 bb_error_msg("trap: invalid arguments");
10393 return EXIT_FAILURE;
10394 }
10395
10396 /* First arg is "-": reset all specified to default */
10397 /* First arg is "--": skip it, the rest is "handler SIGs..." */
10398 /* Everything else: set arg as signal handler
10399 * (includes "" case, which ignores signal) */
10400 if (argv[0][0] == '-') {
10401 if (argv[0][1] == '\0') { /* "-" */
10402 /* new_cmd remains NULL: "reset these sigs" */
10403 goto reset_traps;
10404 }
10405 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
10406 argv++;
10407 }
10408 /* else: "-something", no special meaning */
10409 }
10410 new_cmd = *argv;
10411 reset_traps:
10412 argv++;
10413 goto process_sig_list;
10414}
Denys Vlasenko7a85c602017-01-08 17:40:18 +010010415#endif
Denis Vlasenko38e626d2009-04-18 12:58:19 +000010416
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010417#if ENABLE_HUSH_JOB
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +010010418static struct pipe *parse_jobspec(const char *str)
10419{
10420 struct pipe *pi;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +010010421 unsigned jobnum;
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +010010422
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +010010423 if (sscanf(str, "%%%u", &jobnum) != 1) {
10424 if (str[0] != '%'
10425 || (str[1] != '%' && str[1] != '+' && str[1] != '\0')
10426 ) {
10427 bb_error_msg("bad argument '%s'", str);
10428 return NULL;
10429 }
10430 /* It is "%%", "%+" or "%" - current job */
10431 jobnum = G.last_jobid;
10432 if (jobnum == 0) {
10433 bb_error_msg("no current job");
10434 return NULL;
10435 }
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +010010436 }
10437 for (pi = G.job_list; pi; pi = pi->next) {
10438 if (pi->jobid == jobnum) {
10439 return pi;
10440 }
10441 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +010010442 bb_error_msg("%u: no such job", jobnum);
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +010010443 return NULL;
10444}
10445
Denys Vlasenkoa1184af2017-01-10 15:58:02 +010010446static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM)
10447{
10448 struct pipe *job;
10449 const char *status_string;
10450
10451 checkjobs(NULL, 0 /*(no pid to wait for)*/);
10452 for (job = G.job_list; job; job = job->next) {
10453 if (job->alive_cmds == job->stopped_cmds)
10454 status_string = "Stopped";
10455 else
10456 status_string = "Running";
10457
10458 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
10459 }
Denys Vlasenko2ed74e22017-07-14 19:58:46 +020010460
10461 clean_up_last_dead_job();
10462
Denys Vlasenkoa1184af2017-01-10 15:58:02 +010010463 return EXIT_SUCCESS;
10464}
10465
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010466/* built-in 'fg' and 'bg' handler */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010467static int FAST_FUNC builtin_fg_bg(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010468{
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +010010469 int i;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010470 struct pipe *pi;
10471
Denis Vlasenko60b392f2009-04-03 19:14:32 +000010472 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010473 return EXIT_FAILURE;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +000010474
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010475 /* If they gave us no args, assume they want the last backgrounded task */
10476 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +000010477 for (pi = G.job_list; pi; pi = pi->next) {
10478 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010479 goto found;
10480 }
10481 }
10482 bb_error_msg("%s: no current job", argv[0]);
10483 return EXIT_FAILURE;
10484 }
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +010010485
10486 pi = parse_jobspec(argv[1]);
10487 if (!pi)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010488 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010489 found:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +000010490 /* TODO: bash prints a string representation
10491 * of job being foregrounded (like "sleep 1 | cat") */
Mike Frysinger38478a62009-05-20 04:48:06 -040010492 if (argv[0][0] == 'f' && G_saved_tty_pgrp) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010493 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +000010494 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010495 }
10496
10497 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +000010498 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
10499 for (i = 0; i < pi->num_cmds; i++) {
10500 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010501 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +000010502 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010503
10504 i = kill(- pi->pgrp, SIGCONT);
10505 if (i < 0) {
10506 if (errno == ESRCH) {
Denys Vlasenko16096292017-07-10 10:00:28 +020010507 delete_finished_job(pi);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010508 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010509 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +000010510 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010511 }
10512
Denis Vlasenko34d4d892009-04-04 20:24:37 +000010513 if (argv[0][0] == 'f') {
Denys Vlasenko16096292017-07-10 10:00:28 +020010514 remove_job_from_table(pi); /* FG job shouldn't be in job table */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010515 return checkjobs_and_fg_shell(pi);
10516 }
10517 return EXIT_SUCCESS;
10518}
10519#endif
10520
Denys Vlasenko1125d7d2017-01-08 17:19:38 +010010521#if ENABLE_HUSH_KILL
10522static int FAST_FUNC builtin_kill(char **argv)
10523{
10524 int ret = 0;
10525
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +010010526# if ENABLE_HUSH_JOB
10527 if (argv[1] && strcmp(argv[1], "-l") != 0) {
10528 int i = 1;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +010010529
10530 do {
10531 struct pipe *pi;
10532 char *dst;
10533 int j, n;
10534
10535 if (argv[i][0] != '%')
10536 continue;
10537 /*
10538 * "kill %N" - job kill
10539 * Converting to pgrp / pid kill
10540 */
10541 pi = parse_jobspec(argv[i]);
10542 if (!pi) {
10543 /* Eat bad jobspec */
10544 j = i;
10545 do {
10546 j++;
10547 argv[j - 1] = argv[j];
10548 } while (argv[j]);
10549 ret = 1;
10550 i--;
10551 continue;
10552 }
10553 /*
10554 * In jobs started under job control, we signal
10555 * entire process group by kill -PGRP_ID.
10556 * This happens, f.e., in interactive shell.
10557 *
10558 * Otherwise, we signal each child via
10559 * kill PID1 PID2 PID3.
10560 * Testcases:
10561 * sh -c 'sleep 1|sleep 1 & kill %1'
10562 * sh -c 'true|sleep 2 & sleep 1; kill %1'
10563 * sh -c 'true|sleep 1 & sleep 2; kill %1'
10564 */
Denys Vlasenko5362cc42017-01-09 05:57:13 +010010565 n = G_interactive_fd ? 1 : pi->num_cmds;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +010010566 dst = alloca(n * sizeof(int)*4);
10567 argv[i] = dst;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +010010568 if (G_interactive_fd)
10569 dst += sprintf(dst, " -%u", (int)pi->pgrp);
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +010010570 else for (j = 0; j < n; j++) {
Denys Vlasenko1125d7d2017-01-08 17:19:38 +010010571 struct command *cmd = &pi->cmds[j];
10572 /* Skip exited members of the job */
10573 if (cmd->pid == 0)
10574 continue;
10575 /*
10576 * kill_main has matching code to expect
10577 * leading space. Needed to not confuse
10578 * negative pids with "kill -SIGNAL_NO" syntax
10579 */
10580 dst += sprintf(dst, " %u", (int)cmd->pid);
10581 }
10582 *dst = '\0';
10583 } while (argv[++i]);
10584 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +010010585# endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +010010586
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +010010587 if (argv[1] || ret == 0) {
Denys Vlasenko1125d7d2017-01-08 17:19:38 +010010588 ret = run_applet_main(argv, kill_main);
10589 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +010010590 /* else: ret = 1, "kill %bad_jobspec" case */
Denys Vlasenko1125d7d2017-01-08 17:19:38 +010010591 return ret;
10592}
10593#endif
10594
10595#if ENABLE_HUSH_WAIT
Mike Frysinger56bdea12009-03-28 20:01:58 +000010596/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010597#if !ENABLE_HUSH_JOB
10598# define wait_for_child_or_signal(pipe,pid) wait_for_child_or_signal(pid)
10599#endif
10600static int wait_for_child_or_signal(struct pipe *waitfor_pipe, pid_t waitfor_pid)
Denys Vlasenko7e675362016-10-28 21:57:31 +020010601{
10602 int ret = 0;
10603 for (;;) {
10604 int sig;
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010605 sigset_t oldset;
Denys Vlasenko7e675362016-10-28 21:57:31 +020010606
Denys Vlasenko830ea352016-11-08 04:59:11 +010010607 if (!sigisemptyset(&G.pending_set))
10608 goto check_sig;
10609
Denys Vlasenko7e675362016-10-28 21:57:31 +020010610 /* waitpid is not interruptible by SA_RESTARTed
10611 * signals which we use. Thus, this ugly dance:
10612 */
10613
10614 /* Make sure possible SIGCHLD is stored in kernel's
10615 * pending signal mask before we call waitpid.
10616 * Or else we may race with SIGCHLD, lose it,
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010617 * and get stuck in sigsuspend...
Denys Vlasenko7e675362016-10-28 21:57:31 +020010618 */
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010619 sigfillset(&oldset); /* block all signals, remember old set */
10620 sigprocmask(SIG_SETMASK, &oldset, &oldset);
Denys Vlasenko7e675362016-10-28 21:57:31 +020010621
10622 if (!sigisemptyset(&G.pending_set)) {
10623 /* Crap! we raced with some signal! */
Denys Vlasenko7e675362016-10-28 21:57:31 +020010624 goto restore;
10625 }
10626
10627 /*errno = 0; - checkjobs does this */
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010628/* Can't pass waitfor_pipe into checkjobs(): it won't be interruptible */
Denys Vlasenko7e675362016-10-28 21:57:31 +020010629 ret = checkjobs(NULL, waitfor_pid); /* waitpid(WNOHANG) inside */
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010630 debug_printf_exec("checkjobs:%d\n", ret);
10631#if ENABLE_HUSH_JOB
10632 if (waitfor_pipe) {
10633 int rcode = job_exited_or_stopped(waitfor_pipe);
10634 debug_printf_exec("job_exited_or_stopped:%d\n", rcode);
10635 if (rcode >= 0) {
10636 ret = rcode;
10637 sigprocmask(SIG_SETMASK, &oldset, NULL);
10638 break;
10639 }
10640 }
10641#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +020010642 /* if ECHILD, there are no children (ret is -1 or 0) */
10643 /* if ret == 0, no children changed state */
10644 /* if ret != 0, it's exitcode+1 of exited waitfor_pid child */
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010645 if (errno == ECHILD || ret) {
10646 ret--;
10647 if (ret < 0) /* if ECHILD, may need to fix "ret" */
Denys Vlasenko7e675362016-10-28 21:57:31 +020010648 ret = 0;
10649 sigprocmask(SIG_SETMASK, &oldset, NULL);
10650 break;
10651 }
Denys Vlasenko7e675362016-10-28 21:57:31 +020010652 /* Wait for SIGCHLD or any other signal */
Denys Vlasenko7e675362016-10-28 21:57:31 +020010653 /* It is vitally important for sigsuspend that SIGCHLD has non-DFL handler! */
10654 /* Note: sigsuspend invokes signal handler */
10655 sigsuspend(&oldset);
10656 restore:
10657 sigprocmask(SIG_SETMASK, &oldset, NULL);
Denys Vlasenko830ea352016-11-08 04:59:11 +010010658 check_sig:
Denys Vlasenko7e675362016-10-28 21:57:31 +020010659 /* So, did we get a signal? */
Denys Vlasenko7e675362016-10-28 21:57:31 +020010660 sig = check_and_run_traps();
10661 if (sig /*&& sig != SIGCHLD - always true */) {
Denys Vlasenko7c40ddd2017-08-02 16:37:39 +020010662 /* Do this for any (non-ignored) signal, not only for ^C */
Denys Vlasenko7e675362016-10-28 21:57:31 +020010663 ret = 128 + sig;
10664 break;
10665 }
10666 /* SIGCHLD, or no signal, or ignored one, such as SIGQUIT. Repeat */
10667 }
10668 return ret;
10669}
10670
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010671static int FAST_FUNC builtin_wait(char **argv)
Mike Frysinger56bdea12009-03-28 20:01:58 +000010672{
Denys Vlasenko7e675362016-10-28 21:57:31 +020010673 int ret;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +020010674 int status;
Mike Frysinger56bdea12009-03-28 20:01:58 +000010675
Denys Vlasenkob131cce2010-05-20 03:39:43 +020010676 argv = skip_dash_dash(argv);
10677 if (argv[0] == NULL) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +000010678 /* Don't care about wait results */
10679 /* Note 1: must wait until there are no more children */
10680 /* Note 2: must be interruptible */
10681 /* Examples:
10682 * $ sleep 3 & sleep 6 & wait
10683 * [1] 30934 sleep 3
10684 * [2] 30935 sleep 6
10685 * [1] Done sleep 3
10686 * [2] Done sleep 6
10687 * $ sleep 3 & sleep 6 & wait
10688 * [1] 30936 sleep 3
10689 * [2] 30937 sleep 6
10690 * [1] Done sleep 3
10691 * ^C <-- after ~4 sec from keyboard
10692 * $
10693 */
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010694 return wait_for_child_or_signal(NULL, 0 /*(no job and no pid to wait for)*/);
Denis Vlasenko7566bae2009-03-31 17:24:49 +000010695 }
Mike Frysinger56bdea12009-03-28 20:01:58 +000010696
Denys Vlasenko7e675362016-10-28 21:57:31 +020010697 do {
Denis Vlasenkod5762932009-03-31 11:22:57 +000010698 pid_t pid = bb_strtou(*argv, NULL, 10);
Denys Vlasenko7e675362016-10-28 21:57:31 +020010699 if (errno || pid <= 0) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010700#if ENABLE_HUSH_JOB
10701 if (argv[0][0] == '%') {
Denys Vlasenko02affb42016-11-08 00:59:29 +010010702 struct pipe *wait_pipe;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +010010703 ret = 127; /* bash compat for bad jobspecs */
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010704 wait_pipe = parse_jobspec(*argv);
10705 if (wait_pipe) {
Denys Vlasenko02affb42016-11-08 00:59:29 +010010706 ret = job_exited_or_stopped(wait_pipe);
Denys Vlasenko2ed74e22017-07-14 19:58:46 +020010707 if (ret < 0) {
Denys Vlasenko02affb42016-11-08 00:59:29 +010010708 ret = wait_for_child_or_signal(wait_pipe, 0);
Denys Vlasenko2ed74e22017-07-14 19:58:46 +020010709 } else {
10710 /* waiting on "last dead job" removes it */
10711 clean_up_last_dead_job();
Denys Vlasenko13102632017-07-08 00:24:32 +020010712 }
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010713 }
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +010010714 /* else: parse_jobspec() already emitted error msg */
10715 continue;
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010716 }
10717#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +000010718 /* mimic bash message */
10719 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010720 ret = EXIT_FAILURE;
10721 continue; /* bash checks all argv[] */
Denis Vlasenkod5762932009-03-31 11:22:57 +000010722 }
Denys Vlasenko02affb42016-11-08 00:59:29 +010010723
Denys Vlasenko7e675362016-10-28 21:57:31 +020010724 /* Do we have such child? */
10725 ret = waitpid(pid, &status, WNOHANG);
10726 if (ret < 0) {
10727 /* No */
Denys Vlasenko840a4352017-07-07 22:56:02 +020010728 ret = 127;
Denys Vlasenko7e675362016-10-28 21:57:31 +020010729 if (errno == ECHILD) {
Denys Vlasenko0c5657e2017-07-14 19:27:03 +020010730 if (pid == G.last_bg_pid) {
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010731 /* "wait $!" but last bg task has already exited. Try:
10732 * (sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $?
10733 * In bash it prints exitcode 0, then 3.
Denys Vlasenko26ad94b2016-11-07 23:07:21 +010010734 * In dash, it is 127.
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010735 */
Denys Vlasenko840a4352017-07-07 22:56:02 +020010736 ret = G.last_bg_pid_exitcode;
Denys Vlasenko26ad94b2016-11-07 23:07:21 +010010737 } else {
10738 /* Example: "wait 1". mimic bash message */
10739 bb_error_msg("wait: pid %d is not a child of this shell", (int)pid);
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010740 }
Denys Vlasenko7e675362016-10-28 21:57:31 +020010741 } else {
10742 /* ??? */
10743 bb_perror_msg("wait %s", *argv);
10744 }
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010745 continue; /* bash checks all argv[] */
10746 }
10747 if (ret == 0) {
Denys Vlasenko7e675362016-10-28 21:57:31 +020010748 /* Yes, and it still runs */
Denys Vlasenko02affb42016-11-08 00:59:29 +010010749 ret = wait_for_child_or_signal(NULL, pid);
Denys Vlasenko7e675362016-10-28 21:57:31 +020010750 } else {
10751 /* Yes, and it just exited */
Denys Vlasenko02affb42016-11-08 00:59:29 +010010752 process_wait_result(NULL, pid, status);
Denys Vlasenko85378cd2015-10-11 21:47:11 +020010753 ret = WEXITSTATUS(status);
Mike Frysinger56bdea12009-03-28 20:01:58 +000010754 if (WIFSIGNALED(status))
10755 ret = 128 + WTERMSIG(status);
Mike Frysinger56bdea12009-03-28 20:01:58 +000010756 }
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010757 } while (*++argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +000010758
10759 return ret;
10760}
Denys Vlasenko1125d7d2017-01-08 17:19:38 +010010761#endif
Mike Frysinger56bdea12009-03-28 20:01:58 +000010762
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010763#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
10764static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
10765{
10766 if (argv[1]) {
10767 def = bb_strtou(argv[1], NULL, 10);
10768 if (errno || def < def_min || argv[2]) {
10769 bb_error_msg("%s: bad arguments", argv[0]);
10770 def = UINT_MAX;
10771 }
10772 }
10773 return def;
10774}
10775#endif
10776
Denis Vlasenkodadfb492008-07-29 10:16:05 +000010777#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010778static int FAST_FUNC builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +000010779{
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010780 unsigned depth;
Denis Vlasenko87a86552008-07-29 19:43:10 +000010781 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +000010782 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denys Vlasenko49117b42016-07-21 14:40:08 +020010783 /* if we came from builtin_continue(), need to undo "= 1" */
10784 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +000010785 return EXIT_SUCCESS; /* bash compat */
10786 }
Denys Vlasenko49117b42016-07-21 14:40:08 +020010787 G.flag_break_continue++; /* BC_BREAK = 1, or BC_CONTINUE = 2 */
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010788
10789 G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
10790 if (depth == UINT_MAX)
10791 G.flag_break_continue = BC_BREAK;
10792 if (G.depth_of_loop < depth)
Denis Vlasenko87a86552008-07-29 19:43:10 +000010793 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010794
Denis Vlasenkobcb25532008-07-28 23:04:34 +000010795 return EXIT_SUCCESS;
10796}
10797
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010798static int FAST_FUNC builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +000010799{
Denis Vlasenko4f504a92008-07-29 19:48:30 +000010800 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
10801 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +000010802}
Denis Vlasenkodadfb492008-07-29 10:16:05 +000010803#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010804
10805#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010806static int FAST_FUNC builtin_return(char **argv)
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010807{
10808 int rc;
10809
Denys Vlasenko04b46bc2016-10-01 22:28:03 +020010810 if (G_flag_return_in_progress != -1) {
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010811 bb_error_msg("%s: not in a function or sourced script", argv[0]);
10812 return EXIT_FAILURE; /* bash compat */
10813 }
10814
Denys Vlasenko04b46bc2016-10-01 22:28:03 +020010815 G_flag_return_in_progress = 1;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010816
10817 /* bash:
10818 * out of range: wraps around at 256, does not error out
10819 * non-numeric param:
10820 * f() { false; return qwe; }; f; echo $?
10821 * bash: return: qwe: numeric argument required <== we do this
10822 * 255 <== we also do this
10823 */
10824 rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
10825 return rc;
10826}
10827#endif
Denys Vlasenkoa1184af2017-01-10 15:58:02 +010010828
Denys Vlasenko11f2e992017-08-10 16:34:03 +020010829#if ENABLE_HUSH_TIMES
10830static int FAST_FUNC builtin_times(char **argv UNUSED_PARAM)
10831{
10832 static const uint8_t times_tbl[] ALIGN1 = {
10833 ' ', offsetof(struct tms, tms_utime),
10834 '\n', offsetof(struct tms, tms_stime),
10835 ' ', offsetof(struct tms, tms_cutime),
10836 '\n', offsetof(struct tms, tms_cstime),
10837 0
10838 };
10839 const uint8_t *p;
10840 unsigned clk_tck;
10841 struct tms buf;
10842
10843 clk_tck = bb_clk_tck();
10844
10845 times(&buf);
10846 p = times_tbl;
10847 do {
10848 unsigned sec, frac;
10849 unsigned long t;
10850 t = *(clock_t *)(((char *) &buf) + p[1]);
10851 sec = t / clk_tck;
10852 frac = t % clk_tck;
10853 printf("%um%u.%03us%c",
10854 sec / 60, sec % 60,
10855 (frac * 1000) / clk_tck,
10856 p[0]);
10857 p += 2;
10858 } while (*p);
10859
10860 return EXIT_SUCCESS;
10861}
10862#endif
10863
Denys Vlasenkoa1184af2017-01-10 15:58:02 +010010864#if ENABLE_HUSH_MEMLEAK
10865static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM)
10866{
10867 void *p;
10868 unsigned long l;
10869
10870# ifdef M_TRIM_THRESHOLD
10871 /* Optional. Reduces probability of false positives */
10872 malloc_trim(0);
10873# endif
10874 /* Crude attempt to find where "free memory" starts,
10875 * sans fragmentation. */
10876 p = malloc(240);
10877 l = (unsigned long)p;
10878 free(p);
10879 p = malloc(3400);
10880 if (l < (unsigned long)p) l = (unsigned long)p;
10881 free(p);
10882
10883
10884# if 0 /* debug */
10885 {
10886 struct mallinfo mi = mallinfo();
10887 printf("top alloc:0x%lx malloced:%d+%d=%d\n", l,
10888 mi.arena, mi.hblkhd, mi.arena + mi.hblkhd);
10889 }
10890# endif
10891
10892 if (!G.memleak_value)
10893 G.memleak_value = l;
10894
10895 l -= G.memleak_value;
10896 if ((long)l < 0)
10897 l = 0;
10898 l /= 1024;
10899 if (l > 127)
10900 l = 127;
10901
10902 /* Exitcode is "how many kilobytes we leaked since 1st call" */
10903 return l;
10904}
10905#endif