blob: b04f793f17c44fb4f8bb75ec39169506899ed021 [file] [log] [blame]
Eric Andersen25f27032001-04-26 23:22:31 +00001/* vi: set sw=4 ts=4: */
2/*
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003 * A prototype Bourne shell grammar parser.
4 * Intended to follow the original Thompson and Ritchie
5 * "small and simple is beautiful" philosophy, which
6 * incidentally is a good match to today's BusyBox.
Eric Andersen25f27032001-04-26 23:22:31 +00007 *
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +00008 * Copyright (C) 2000,2001 Larry Doolittle <larry@doolittle.boa.org>
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00009 * Copyright (C) 2008,2009 Denys Vlasenko <vda.linux@googlemail.com>
Eric Andersen25f27032001-04-26 23:22:31 +000010 *
Denys Vlasenkobbecd742010-10-03 17:22:52 +020011 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
12 *
Eric Andersen25f27032001-04-26 23:22:31 +000013 * Credits:
14 * The parser routines proper are all original material, first
Eric Andersencb81e642003-07-14 21:21:08 +000015 * written Dec 2000 and Jan 2001 by Larry Doolittle. The
16 * execution engine, the builtins, and much of the underlying
17 * support has been adapted from busybox-0.49pre's lash, which is
Eric Andersenc7bda1c2004-03-15 08:29:22 +000018 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersencb81e642003-07-14 21:21:08 +000019 * written by Erik Andersen <andersen@codepoet.org>. That, in turn,
20 * is based in part on ladsh.c, by Michael K. Johnson and Erik W.
21 * Troan, which they placed in the public domain. I don't know
22 * how much of the Johnson/Troan code has survived the repeated
23 * rewrites.
24 *
Eric Andersen25f27032001-04-26 23:22:31 +000025 * Other credits:
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +000026 * o_addchr derived from similar w_addchar function in glibc-2.2.
Denis Vlasenko50f3aa42009-04-07 10:52:40 +000027 * parse_redirect, redirect_opt_num, and big chunks of main
Denis Vlasenko424f79b2009-03-22 14:23:34 +000028 * and many builtins derived from contributions by Erik Andersen.
29 * Miscellaneous bugfixes from Matt Kraai.
Eric Andersen25f27032001-04-26 23:22:31 +000030 *
31 * There are two big (and related) architecture differences between
32 * this parser and the lash parser. One is that this version is
33 * actually designed from the ground up to understand nearly all
34 * of the Bourne grammar. The second, consequential change is that
35 * the parser and input reader have been turned inside out. Now,
36 * the parser is in control, and asks for input as needed. The old
37 * way had the input reader in control, and it asked for parsing to
38 * take place as needed. The new way makes it much easier to properly
39 * handle the recursion implicit in the various substitutions, especially
40 * across continuation lines.
41 *
Denys Vlasenko349ef962010-05-21 15:46:24 +020042 * TODOs:
43 * grep for "TODO" and fix (some of them are easy)
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +020044 * make complex ${var%...} constructs support optional
45 * make here documents optional
Denys Vlasenko203fd7b2017-07-17 16:13:35 +020046 * special variables (done: PWD, PPID, RANDOM)
47 * follow IFS rules more precisely, including update semantics
48 * tilde expansion
49 * aliases
50 * builtins mandated by standards we don't support:
Denys Vlasenko1e660422017-07-17 21:10:50 +020051 * [un]alias, command, fc, getopts, times:
Denys Vlasenko203fd7b2017-07-17 16:13:35 +020052 * command -v CMD: print "/path/to/CMD"
53 * prints "CMD" for builtins
54 * prints "alias ALIAS='EXPANSION'" for aliases
55 * prints nothing and sets $? to 1 if not found
56 * command -V CMD: print "CMD is /path/CMD|a shell builtin|etc"
57 * command [-p] CMD: run CMD, even if a function CMD also exists
58 * (can use this to override standalone shell as well)
59 * -p: use default $PATH
Denys Vlasenko1e660422017-07-17 21:10:50 +020060 * command BLTIN: disables special-ness (e.g. errors do not abort)
Denys Vlasenko203fd7b2017-07-17 16:13:35 +020061 * getopts: getopt() for shells
62 * times: print getrusage(SELF/CHILDREN).ru_utime/ru_stime
63 * fc -l[nr] [BEG] [END]: list range of commands in history
64 * fc [-e EDITOR] [BEG] [END]: edit/rerun range of commands
65 * fc -s [PAT=REP] [CMD]: rerun CMD, replacing PAT with REP
Mike Frysinger25a6ca02009-03-28 13:59:26 +000066 *
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020067 * Bash compat TODO:
68 * redirection of stdout+stderr: &> and >&
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020069 * reserved words: function select
70 * advanced test: [[ ]]
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020071 * process substitution: <(list) and >(list)
72 * =~: regex operator
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020073 * let EXPR [EXPR...]
Denys Vlasenko349ef962010-05-21 15:46:24 +020074 * Each EXPR is an arithmetic expression (ARITHMETIC EVALUATION)
75 * If the last arg evaluates to 0, let returns 1; 0 otherwise.
76 * NB: let `echo 'a=a + 1'` - error (IOW: multi-word expansion is used)
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020077 * ((EXPR))
Denys Vlasenko349ef962010-05-21 15:46:24 +020078 * The EXPR is evaluated according to ARITHMETIC EVALUATION.
79 * This is exactly equivalent to let "EXPR".
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020080 * $[EXPR]: synonym for $((EXPR))
Denys Vlasenko203fd7b2017-07-17 16:13:35 +020081 * indirect expansion: ${!VAR}
82 * substring op on @: ${@:n:m}
Denys Vlasenkobbecd742010-10-03 17:22:52 +020083 *
84 * Won't do:
Denys Vlasenko203fd7b2017-07-17 16:13:35 +020085 * Some builtins mandated by standards:
86 * newgrp [GRP]: not a builtin in bash but a suid binary
87 * which spawns a new shell with new group ID
Denys Vlasenkobbecd742010-10-03 17:22:52 +020088 * In bash, export builtin is special, its arguments are assignments
Denys Vlasenko08218012009-06-03 14:43:56 +020089 * and therefore expansion of them should be "one-word" expansion:
90 * $ export i=`echo 'a b'` # export has one arg: "i=a b"
91 * compare with:
92 * $ ls i=`echo 'a b'` # ls has two args: "i=a" and "b"
93 * ls: cannot access i=a: No such file or directory
94 * ls: cannot access b: No such file or directory
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020095 * Note1: same applies to local builtin.
Denys Vlasenko08218012009-06-03 14:43:56 +020096 * Note2: bash 3.2.33(1) does this only if export word itself
97 * is not quoted:
98 * $ export i=`echo 'aaa bbb'`; echo "$i"
99 * aaa bbb
100 * $ "export" i=`echo 'aaa bbb'`; echo "$i"
101 * aaa
Eric Andersen25f27032001-04-26 23:22:31 +0000102 */
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200103//config:config HUSH
Denys Vlasenko4eed2c62017-07-18 22:01:24 +0200104//config: bool "hush (64 kb)"
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200105//config: default y
106//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200107//config: hush is a small shell. It handles the normal flow control
108//config: constructs such as if/then/elif/else/fi, for/in/do/done, while loops,
109//config: case/esac. Redirections, here documents, $((arithmetic))
110//config: and functions are supported.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200111//config:
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200112//config: It will compile and work on no-mmu systems.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200113//config:
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200114//config: It does not handle select, aliases, tilde expansion,
115//config: &>file and >&file redirection of stdout+stderr.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200116//config:
117//config:config HUSH_BASH_COMPAT
118//config: bool "bash-compatible extensions"
119//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100120//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200121//config:
Denys Vlasenko9e800222010-10-03 14:28:04 +0200122//config:config HUSH_BRACE_EXPANSION
123//config: bool "Brace expansion"
124//config: default y
125//config: depends on HUSH_BASH_COMPAT
126//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200127//config: Enable {abc,def} extension.
Denys Vlasenko9e800222010-10-03 14:28:04 +0200128//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200129//config:config HUSH_INTERACTIVE
130//config: bool "Interactive mode"
131//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100132//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200133//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200134//config: Enable interactive mode (prompt and command editing).
135//config: Without this, hush simply reads and executes commands
136//config: from stdin just like a shell script from a file.
137//config: No prompt, no PS1/PS2 magic shell variables.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200138//config:
Denys Vlasenko99862cb2010-09-12 17:34:13 +0200139//config:config HUSH_SAVEHISTORY
140//config: bool "Save command history to .hush_history"
141//config: default y
142//config: depends on HUSH_INTERACTIVE && FEATURE_EDITING_SAVEHISTORY
Denys Vlasenko99862cb2010-09-12 17:34:13 +0200143//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200144//config:config HUSH_JOB
145//config: bool "Job control"
146//config: default y
147//config: depends on HUSH_INTERACTIVE
148//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200149//config: Enable job control: Ctrl-Z backgrounds, Ctrl-C interrupts current
150//config: command (not entire shell), fg/bg builtins work. Without this option,
151//config: "cmd &" still works by simply spawning a process and immediately
152//config: prompting for next command (or executing next command in a script),
153//config: but no separate process group is formed.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200154//config:
155//config:config HUSH_TICK
Denys Vlasenkof5604222017-01-10 14:58:54 +0100156//config: bool "Support process substitution"
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200157//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100158//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200159//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200160//config: Enable `command` and $(command).
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200161//config:
162//config:config HUSH_IF
163//config: bool "Support if/then/elif/else/fi"
164//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100165//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200166//config:
167//config:config HUSH_LOOPS
168//config: bool "Support for, while and until loops"
169//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100170//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200171//config:
172//config:config HUSH_CASE
173//config: bool "Support case ... esac statement"
174//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100175//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200176//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200177//config: Enable case ... esac statement. +400 bytes.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200178//config:
179//config:config HUSH_FUNCTIONS
180//config: bool "Support funcname() { commands; } syntax"
181//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100182//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200183//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200184//config: Enable support for shell functions. +800 bytes.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200185//config:
186//config:config HUSH_LOCAL
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100187//config: bool "local builtin"
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200188//config: default y
189//config: depends on HUSH_FUNCTIONS
190//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200191//config: Enable support for local variables in functions.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200192//config:
193//config:config HUSH_RANDOM_SUPPORT
194//config: bool "Pseudorandom generator and $RANDOM variable"
195//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100196//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200197//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200198//config: Enable pseudorandom generator and dynamic variable "$RANDOM".
199//config: Each read of "$RANDOM" will generate a new pseudorandom value.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200200//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200201//config:config HUSH_MODE_X
202//config: bool "Support 'hush -x' option and 'set -x' command"
203//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100204//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200205//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200206//config: This instructs hush to print commands before execution.
207//config: Adds ~300 bytes.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200208//config:
Denys Vlasenko1cc68042017-01-09 17:10:04 +0100209//config:config HUSH_ECHO
210//config: bool "echo builtin"
211//config: default y
212//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko1cc68042017-01-09 17:10:04 +0100213//config:
214//config:config HUSH_PRINTF
215//config: bool "printf builtin"
216//config: default y
217//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenkof5604222017-01-10 14:58:54 +0100218//config:
Denys Vlasenko265062d2017-01-10 15:13:30 +0100219//config:config HUSH_TEST
220//config: bool "test builtin"
221//config: default y
222//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
223//config:
Denys Vlasenkof5604222017-01-10 14:58:54 +0100224//config:config HUSH_HELP
225//config: bool "help builtin"
226//config: default y
227//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko1cc68042017-01-09 17:10:04 +0100228//config:
Denys Vlasenko6ec76d82017-01-08 18:40:41 +0100229//config:config HUSH_EXPORT
230//config: bool "export builtin"
231//config: default y
232//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko6ec76d82017-01-08 18:40:41 +0100233//config:
234//config:config HUSH_EXPORT_N
235//config: bool "Support 'export -n' option"
236//config: default y
237//config: depends on HUSH_EXPORT
238//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200239//config: export -n unexports variables. It is a bash extension.
Denys Vlasenko6ec76d82017-01-08 18:40:41 +0100240//config:
Denys Vlasenko1e660422017-07-17 21:10:50 +0200241//config:config HUSH_READONLY
242//config: bool "readonly builtin"
243//config: default y
Denys Vlasenko6b0695b2017-07-17 21:47:27 +0200244//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko1e660422017-07-17 21:10:50 +0200245//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200246//config: Enable support for read-only variables.
Denys Vlasenko1e660422017-07-17 21:10:50 +0200247//config:
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100248//config:config HUSH_KILL
Denys Vlasenkof5604222017-01-10 14:58:54 +0100249//config: bool "kill builtin (supports kill %jobspec)"
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100250//config: default y
251//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100252//config:
253//config:config HUSH_WAIT
254//config: bool "wait builtin"
255//config: default y
256//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100257//config:
258//config:config HUSH_TRAP
259//config: bool "trap builtin"
260//config: default y
261//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100262//config:
263//config:config HUSH_TYPE
264//config: bool "type builtin"
265//config: default y
266//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100267//config:
268//config:config HUSH_READ
269//config: bool "read builtin"
270//config: default y
271//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100272//config:
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100273//config:config HUSH_SET
274//config: bool "set builtin"
275//config: default y
276//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100277//config:
278//config:config HUSH_UNSET
279//config: bool "unset builtin"
280//config: default y
281//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenkof5604222017-01-10 14:58:54 +0100282//config:
283//config:config HUSH_ULIMIT
284//config: bool "ulimit builtin"
285//config: default y
286//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100287//config:
Denys Vlasenkod5933b12017-01-08 18:31:39 +0100288//config:config HUSH_UMASK
289//config: bool "umask builtin"
290//config: default y
291//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenkod5933b12017-01-08 18:31:39 +0100292//config:
Denys Vlasenko44719692017-01-08 18:44:41 +0100293//config:config HUSH_MEMLEAK
294//config: bool "memleak builtin (debugging)"
295//config: default n
296//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200297
Denys Vlasenko20704f02011-03-23 17:59:27 +0100298//applet:IF_HUSH(APPLET(hush, BB_DIR_BIN, BB_SUID_DROP))
Denys Vlasenko205d48e2017-01-29 14:57:33 +0100299// APPLET_ODDNAME:name main location suid_type help
Denys Vlasenko205d48e2017-01-29 14:57:33 +0100300//applet:IF_SH_IS_HUSH( APPLET_ODDNAME(sh, hush, BB_DIR_BIN, BB_SUID_DROP, hush))
Denys Vlasenko0b883582016-12-23 16:49:07 +0100301//applet:IF_BASH_IS_HUSH(APPLET_ODDNAME(bash, hush, BB_DIR_BIN, BB_SUID_DROP, hush))
Denys Vlasenko20704f02011-03-23 17:59:27 +0100302
303//kbuild:lib-$(CONFIG_HUSH) += hush.o match.o shell_common.o
Denys Vlasenko0b883582016-12-23 16:49:07 +0100304//kbuild:lib-$(CONFIG_SH_IS_HUSH) += hush.o match.o shell_common.o
305//kbuild:lib-$(CONFIG_BASH_IS_HUSH) += hush.o match.o shell_common.o
Denys Vlasenko20704f02011-03-23 17:59:27 +0100306//kbuild:lib-$(CONFIG_HUSH_RANDOM_SUPPORT) += random.o
307
Dan Fandrich89ca2f92010-11-28 01:54:39 +0100308/* -i (interactive) and -s (read stdin) are also accepted,
309 * but currently do nothing, therefore aren't shown in help.
310 * NOMMU-specific options are not meant to be used by users,
311 * therefore we don't show them either.
312 */
313//usage:#define hush_trivial_usage
Denys Vlasenko9fda6092017-07-14 13:36:48 +0200314//usage: "[-enxl] [-c 'SCRIPT' [ARG0 [ARGS]] / FILE [ARGS]]"
Denys Vlasenkob0b83432011-03-07 12:34:59 +0100315//usage:#define hush_full_usage "\n\n"
316//usage: "Unix shell interpreter"
317
Denys Vlasenko67047462016-12-22 15:21:58 +0100318#if !(defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) \
319 || defined(__APPLE__) \
320 )
321# include <malloc.h> /* for malloc_trim */
322#endif
323#include <glob.h>
324/* #include <dmalloc.h> */
325#if ENABLE_HUSH_CASE
326# include <fnmatch.h>
327#endif
328#include <sys/utsname.h> /* for setting $HOSTNAME */
329
330#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
331#include "unicode.h"
332#include "shell_common.h"
333#include "math.h"
334#include "match.h"
335#if ENABLE_HUSH_RANDOM_SUPPORT
336# include "random.h"
337#else
338# define CLEAR_RANDOM_T(rnd) ((void)0)
339#endif
340#ifndef F_DUPFD_CLOEXEC
341# define F_DUPFD_CLOEXEC F_DUPFD
342#endif
343#ifndef PIPE_BUF
344# define PIPE_BUF 4096 /* amount of buffering in a pipe */
345#endif
346
Denis Vlasenko1943aec2009-04-09 14:15:57 +0000347
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100348/* So far, all bash compat is controlled by one config option */
349/* Separate defines document which part of code implements what */
350#define BASH_PATTERN_SUBST ENABLE_HUSH_BASH_COMPAT
351#define BASH_SUBSTR ENABLE_HUSH_BASH_COMPAT
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100352#define BASH_SOURCE ENABLE_HUSH_BASH_COMPAT
353#define BASH_HOSTNAME_VAR ENABLE_HUSH_BASH_COMPAT
Denys Vlasenko4ee824f2017-07-03 01:22:13 +0200354#define BASH_TEST2 (ENABLE_HUSH_BASH_COMPAT && ENABLE_HUSH_TEST)
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100355
356
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200357/* Build knobs */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000358#define LEAK_HUNTING 0
359#define BUILD_AS_NOMMU 0
360/* Enable/disable sanity checks. Ok to enable in production,
361 * only adds a bit of bloat. Set to >1 to get non-production level verbosity.
362 * Keeping 1 for now even in released versions.
363 */
364#define HUSH_DEBUG 1
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200365/* Slightly bigger (+200 bytes), but faster hush.
366 * So far it only enables a trick with counting SIGCHLDs and forks,
367 * which allows us to do fewer waitpid's.
368 * (we can detect a case where neither forks were done nor SIGCHLDs happened
369 * and therefore waitpid will return the same result as last time)
370 */
371#define ENABLE_HUSH_FAST 0
Denys Vlasenko9297dbc2010-07-05 21:37:12 +0200372/* TODO: implement simplified code for users which do not need ${var%...} ops
373 * So far ${var%...} ops are always enabled:
374 */
375#define ENABLE_HUSH_DOLLAR_OPS 1
Denis Vlasenko1943aec2009-04-09 14:15:57 +0000376
377
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000378#if BUILD_AS_NOMMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000379# undef BB_MMU
380# undef USE_FOR_NOMMU
381# undef USE_FOR_MMU
382# define BB_MMU 0
383# define USE_FOR_NOMMU(...) __VA_ARGS__
384# define USE_FOR_MMU(...)
385#endif
386
Denys Vlasenko1fcbff22010-06-26 02:40:08 +0200387#include "NUM_APPLETS.h"
Denys Vlasenko14974842010-03-23 01:08:26 +0100388#if NUM_APPLETS == 1
Denis Vlasenko61befda2008-11-25 01:36:03 +0000389/* STANDALONE does not make sense, and won't compile */
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000390# undef CONFIG_FEATURE_SH_STANDALONE
391# undef ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000392# undef IF_FEATURE_SH_STANDALONE
Denys Vlasenko14974842010-03-23 01:08:26 +0100393# undef IF_NOT_FEATURE_SH_STANDALONE
394# define ENABLE_FEATURE_SH_STANDALONE 0
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000395# define IF_FEATURE_SH_STANDALONE(...)
396# define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__
Denis Vlasenko61befda2008-11-25 01:36:03 +0000397#endif
398
Denis Vlasenko05743d72008-02-10 12:10:08 +0000399#if !ENABLE_HUSH_INTERACTIVE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000400# undef ENABLE_FEATURE_EDITING
401# define ENABLE_FEATURE_EDITING 0
402# undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
403# define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denys Vlasenko8cab6672012-04-20 14:48:00 +0200404# undef ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
405# define ENABLE_FEATURE_EDITING_SAVE_ON_EXIT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000406#endif
407
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000408/* Do we support ANY keywords? */
409#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000410# define HAS_KEYWORDS 1
411# define IF_HAS_KEYWORDS(...) __VA_ARGS__
412# define IF_HAS_NO_KEYWORDS(...)
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000413#else
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000414# define HAS_KEYWORDS 0
415# define IF_HAS_KEYWORDS(...)
416# define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000417#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000418
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000419/* If you comment out one of these below, it will be #defined later
420 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000421#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000422/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000423#define debug_printf_parse(...) do {} while (0)
424#define debug_print_tree(a, b) do {} while (0)
425#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000426#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000427#define debug_printf_jobs(...) do {} while (0)
428#define debug_printf_expand(...) do {} while (0)
Denys Vlasenko1e811b12010-05-22 03:12:29 +0200429#define debug_printf_varexp(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000430#define debug_printf_glob(...) do {} while (0)
Denys Vlasenko2db74612017-07-07 22:07:28 +0200431#define debug_printf_redir(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000432#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000433#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000434#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000435
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000436#define ERR_PTR ((void*)(long)1)
437
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +0100438#define JOB_STATUS_FORMAT "[%u] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000439
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200440#define _SPECIAL_VARS_STR "_*@$!?#"
441#define SPECIAL_VARS_STR ("_*@$!?#" + 1)
442#define NUMERIC_SPECVARS_STR ("_*@$!?#" + 3)
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100443#if BASH_PATTERN_SUBST
Denys Vlasenko36f774a2010-09-05 14:45:38 +0200444/* Support / and // replace ops */
445/* Note that // is stored as \ in "encoded" string representation */
446# define VAR_ENCODED_SUBST_OPS "\\/%#:-=+?"
447# define VAR_SUBST_OPS ("\\/%#:-=+?" + 1)
448# define MINUS_PLUS_EQUAL_QUESTION ("\\/%#:-=+?" + 5)
449#else
450# define VAR_ENCODED_SUBST_OPS "%#:-=+?"
451# define VAR_SUBST_OPS "%#:-=+?"
452# define MINUS_PLUS_EQUAL_QUESTION ("%#:-=+?" + 3)
453#endif
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200454
455#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000456
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200457struct variable;
458
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000459static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
460
461/* This supports saving pointers malloced in vfork child,
Denis Vlasenkoc376db32009-04-15 21:49:48 +0000462 * to be freed in the parent.
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000463 */
464#if !BB_MMU
465typedef struct nommu_save_t {
466 char **new_env;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200467 struct variable *old_vars;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000468 char **argv;
Denis Vlasenko27014ed2009-04-15 21:48:23 +0000469 char **argv_from_re_execing;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000470} nommu_save_t;
471#endif
472
Denys Vlasenko9b782552010-09-08 13:33:26 +0200473enum {
Eric Andersen25f27032001-04-26 23:22:31 +0000474 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000475#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000476 RES_IF ,
477 RES_THEN ,
478 RES_ELIF ,
479 RES_ELSE ,
480 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000481#endif
482#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000483 RES_FOR ,
484 RES_WHILE ,
485 RES_UNTIL ,
486 RES_DO ,
487 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000488#endif
489#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000490 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000491#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000492#if ENABLE_HUSH_CASE
493 RES_CASE ,
Denys Vlasenkoe9bda902009-05-23 16:50:07 +0200494 /* three pseudo-keywords support contrived "case" syntax: */
495 RES_CASE_IN, /* "case ... IN", turns into RES_MATCH when IN is observed */
496 RES_MATCH , /* "word)" */
497 RES_CASE_BODY, /* "this command is inside CASE" */
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000498 RES_ESAC ,
499#endif
500 RES_XXXX ,
501 RES_SNTX
Denys Vlasenko9b782552010-09-08 13:33:26 +0200502};
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000503
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000504typedef struct o_string {
505 char *data;
506 int length; /* position where data is appended */
507 int maxlen;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +0200508 int o_expflags;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000509 /* At least some part of the string was inside '' or "",
510 * possibly empty one: word"", wo''rd etc. */
Denys Vlasenko38292b62010-09-05 14:49:40 +0200511 smallint has_quoted_part;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000512 smallint has_empty_slot;
513 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
514} o_string;
515enum {
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200516 EXP_FLAG_SINGLEWORD = 0x80, /* must be 0x80 */
517 EXP_FLAG_GLOB = 0x2,
518 /* Protect newly added chars against globbing
519 * by prepending \ to *, ?, [, \ */
520 EXP_FLAG_ESC_GLOB_CHARS = 0x1,
521};
522enum {
523 MAYBE_ASSIGNMENT = 0,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000524 DEFINITELY_ASSIGNMENT = 1,
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200525 NOT_ASSIGNMENT = 2,
Maninder Singh97c64912015-05-25 13:46:36 +0200526 /* Not an assignment, but next word may be: "if v=xyz cmd;" */
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200527 WORD_IS_KEYWORD = 3,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000528};
529/* Used for initialization: o_string foo = NULL_O_STRING; */
530#define NULL_O_STRING { NULL }
531
Denys Vlasenko29f9b722011-05-14 11:27:36 +0200532#ifndef debug_printf_parse
533static const char *const assignment_flag[] = {
534 "MAYBE_ASSIGNMENT",
535 "DEFINITELY_ASSIGNMENT",
536 "NOT_ASSIGNMENT",
537 "WORD_IS_KEYWORD",
538};
539#endif
540
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000541typedef struct in_str {
542 const char *p;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000543#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000544 smallint promptmode; /* 0: PS1, 1: PS2 */
545#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +0200546 int peek_buf[2];
Denys Vlasenkocecbc982011-03-30 18:54:52 +0200547 int last_char;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000548 FILE *file;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000549} in_str;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000550
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200551/* The descrip member of this structure is only used to make
552 * debugging output pretty */
553static const struct {
554 int mode;
555 signed char default_fd;
556 char descrip[3];
557} redir_table[] = {
558 { O_RDONLY, 0, "<" },
559 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
560 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
561 { O_CREAT|O_RDWR, 1, "<>" },
562 { O_RDONLY, 0, "<<" },
563/* Should not be needed. Bogus default_fd helps in debugging */
564/* { O_RDONLY, 77, "<<" }, */
565};
566
Eric Andersen25f27032001-04-26 23:22:31 +0000567struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000568 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000569 char *rd_filename; /* filename */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000570 int rd_fd; /* fd to redirect */
571 /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
572 int rd_dup;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000573 smallint rd_type; /* (enum redir_type) */
574 /* note: for heredocs, rd_filename contains heredoc delimiter,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000575 * and subsequently heredoc itself; and rd_dup is a bitmask:
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200576 * bit 0: do we need to trim leading tabs?
577 * bit 1: is heredoc quoted (<<'delim' syntax) ?
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000578 */
Eric Andersen25f27032001-04-26 23:22:31 +0000579};
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000580typedef enum redir_type {
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200581 REDIRECT_INPUT = 0,
582 REDIRECT_OVERWRITE = 1,
583 REDIRECT_APPEND = 2,
584 REDIRECT_IO = 3,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000585 REDIRECT_HEREDOC = 4,
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200586 REDIRECT_HEREDOC2 = 5, /* REDIRECT_HEREDOC after heredoc is loaded */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000587
588 REDIRFD_CLOSE = -3,
589 REDIRFD_SYNTAX_ERR = -2,
Denis Vlasenko835fcfd2009-04-10 13:51:56 +0000590 REDIRFD_TO_FILE = -1,
591 /* otherwise, rd_fd is redirected to rd_dup */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000592
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000593 HEREDOC_SKIPTABS = 1,
594 HEREDOC_QUOTED = 2,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000595} redir_type;
596
Eric Andersen25f27032001-04-26 23:22:31 +0000597
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000598struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000599 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000600 int assignment_cnt; /* how many argv[i] are assignments? */
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200601 smallint cmd_type; /* CMD_xxx */
602#define CMD_NORMAL 0
603#define CMD_SUBSHELL 1
Kang-Che Sung027d3ab2017-01-11 14:18:15 +0100604#if BASH_TEST2
Denys Vlasenkod383b492010-09-06 10:22:13 +0200605/* used for "[[ EXPR ]]" */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200606# define CMD_SINGLEWORD_NOGLOB 2
Denis Vlasenkoed055212009-04-11 10:37:10 +0000607#endif
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200608#if ENABLE_HUSH_FUNCTIONS
609# define CMD_FUNCDEF 3
610#endif
611
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100612 smalluint cmd_exitcode;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200613 /* if non-NULL, this "command" is { list }, ( list ), or a compound statement */
614 struct pipe *group;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000615#if !BB_MMU
616 char *group_as_string;
617#endif
Denis Vlasenkoed055212009-04-11 10:37:10 +0000618#if ENABLE_HUSH_FUNCTIONS
619 struct function *child_func;
620/* This field is used to prevent a bug here:
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200621 * while...do f1() {a;}; f1; f1() {b;}; f1; done
Denis Vlasenkoed055212009-04-11 10:37:10 +0000622 * When we execute "f1() {a;}" cmd, we create new function and clear
623 * cmd->group, cmd->group_as_string, cmd->argv[0].
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200624 * When we execute "f1() {b;}", we notice that f1 exists,
625 * and that its "parent cmd" struct is still "alive",
Denis Vlasenkoed055212009-04-11 10:37:10 +0000626 * we put those fields back into cmd->xxx
627 * (struct function has ->parent_cmd ptr to facilitate that).
628 * When we loop back, we can execute "f1() {a;}" again and set f1 correctly.
629 * Without this trick, loop would execute a;b;b;b;...
630 * instead of correct sequence a;b;a;b;...
631 * When command is freed, it severs the link
632 * (sets ->child_func->parent_cmd to NULL).
633 */
634#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000635 char **argv; /* command name and arguments */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000636/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
637 * and on execution these are substituted with their values.
638 * Substitution can make _several_ words out of one argv[n]!
639 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000640 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000641 */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000642 struct redir_struct *redirects; /* I/O redirections */
643};
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000644/* Is there anything in this command at all? */
645#define IS_NULL_CMD(cmd) \
646 (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects)
647
Eric Andersen25f27032001-04-26 23:22:31 +0000648struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000649 struct pipe *next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000650 int num_cmds; /* total number of commands in pipe */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000651 int alive_cmds; /* number of commands running (not exited) */
652 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000653#if ENABLE_HUSH_JOB
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +0100654 unsigned jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000655 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000656 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000657#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000658 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000659 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000660 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
661 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000662};
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000663typedef enum pipe_style {
Denys Vlasenko00a06b92016-11-08 20:35:53 +0100664 PIPE_SEQ = 0,
665 PIPE_AND = 1,
666 PIPE_OR = 2,
667 PIPE_BG = 3,
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000668} pipe_style;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000669/* Is there anything in this pipe at all? */
670#define IS_NULL_PIPE(pi) \
671 ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE))
Eric Andersen25f27032001-04-26 23:22:31 +0000672
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000673/* This holds pointers to the various results of parsing */
674struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000675 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000676 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000677 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000678 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000679 /* last command in pipe (being constructed right now) */
680 struct command *command;
681 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000682 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000683#if !BB_MMU
684 o_string as_string;
685#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000686#if HAS_KEYWORDS
687 smallint ctx_res_w;
688 smallint ctx_inverted; /* "! cmd | cmd" */
689#if ENABLE_HUSH_CASE
690 smallint ctx_dsemicolon; /* ";;" seen */
691#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000692 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
693 int old_flag;
694 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000695 * example: "if pipe1; pipe2; then pipe3; fi"
696 * when we see "if" or "then", we malloc and copy current context,
697 * and make ->stack point to it. then we parse pipeN.
698 * when closing "then" / fi" / whatever is found,
699 * we move list_head into ->stack->command->group,
700 * copy ->stack into current context, and delete ->stack.
701 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000702 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000703 struct parse_context *stack;
704#endif
705};
706
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000707/* On program start, environ points to initial environment.
708 * putenv adds new pointers into it, unsetenv removes them.
709 * Neither of these (de)allocates the strings.
710 * setenv allocates new strings in malloc space and does putenv,
711 * and thus setenv is unusable (leaky) for shell's purposes */
712#define setenv(...) setenv_is_leaky_dont_use()
713struct variable {
714 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000715 char *varstr; /* points to "name=" portion */
Denys Vlasenko295fef82009-06-03 12:47:26 +0200716#if ENABLE_HUSH_LOCAL
717 unsigned func_nest_level;
718#endif
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000719 int max_len; /* if > 0, name is part of initial env; else name is malloced */
720 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000721 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000722};
723
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000724enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000725 BC_BREAK = 1,
726 BC_CONTINUE = 2,
727};
728
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000729#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000730struct function {
731 struct function *next;
732 char *name;
Denis Vlasenkoed055212009-04-11 10:37:10 +0000733 struct command *parent_cmd;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000734 struct pipe *body;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200735# if !BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000736 char *body_as_string;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200737# endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000738};
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000739#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000740
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000741
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100742/* set -/+o OPT support. (TODO: make it optional)
743 * bash supports the following opts:
744 * allexport off
745 * braceexpand on
746 * emacs on
747 * errexit off
748 * errtrace off
749 * functrace off
750 * hashall on
751 * histexpand off
752 * history on
753 * ignoreeof off
754 * interactive-comments on
755 * keyword off
756 * monitor on
757 * noclobber off
758 * noexec off
759 * noglob off
760 * nolog off
761 * notify off
762 * nounset off
763 * onecmd off
764 * physical off
765 * pipefail off
766 * posix off
767 * privileged off
768 * verbose off
769 * vi off
770 * xtrace off
771 */
Dan Fandrich85c62472010-11-20 13:05:17 -0800772static const char o_opt_strings[] ALIGN1 =
773 "pipefail\0"
774 "noexec\0"
Denys Vlasenko9fda6092017-07-14 13:36:48 +0200775 "errexit\0"
Dan Fandrich85c62472010-11-20 13:05:17 -0800776#if ENABLE_HUSH_MODE_X
777 "xtrace\0"
778#endif
779 ;
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100780enum {
781 OPT_O_PIPEFAIL,
Dan Fandrich85c62472010-11-20 13:05:17 -0800782 OPT_O_NOEXEC,
Denys Vlasenko9fda6092017-07-14 13:36:48 +0200783 OPT_O_ERREXIT,
Dan Fandrich85c62472010-11-20 13:05:17 -0800784#if ENABLE_HUSH_MODE_X
785 OPT_O_XTRACE,
786#endif
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100787 NUM_OPT_O
788};
789
790
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +0200791struct FILE_list {
792 struct FILE_list *next;
793 FILE *fp;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +0200794 int fd;
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +0200795};
796
797
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000798/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000799/* Sorted roughly by size (smaller offsets == smaller code) */
800struct globals {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000801 /* interactive_fd != 0 means we are an interactive shell.
802 * If we are, then saved_tty_pgrp can also be != 0, meaning
803 * that controlling tty is available. With saved_tty_pgrp == 0,
804 * job control still works, but terminal signals
805 * (^C, ^Z, ^Y, ^\) won't work at all, and background
806 * process groups can only be created with "cmd &".
807 * With saved_tty_pgrp != 0, hush will use tcsetpgrp()
808 * to give tty to the foreground process group,
809 * and will take it back when the group is stopped (^Z)
810 * or killed (^C).
811 */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000812#if ENABLE_HUSH_INTERACTIVE
813 /* 'interactive_fd' is a fd# open to ctty, if we have one
814 * _AND_ if we decided to act interactively */
815 int interactive_fd;
816 const char *PS1;
817 const char *PS2;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000818# define G_interactive_fd (G.interactive_fd)
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000819#else
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000820# define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000821#endif
822#if ENABLE_FEATURE_EDITING
823 line_input_t *line_input_state;
824#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000825 pid_t root_pid;
Denys Vlasenkodea47882009-10-09 15:40:49 +0200826 pid_t root_ppid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000827 pid_t last_bg_pid;
Denys Vlasenko20b3d142009-10-09 20:59:39 +0200828#if ENABLE_HUSH_RANDOM_SUPPORT
829 random_t random_gen;
830#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000831#if ENABLE_HUSH_JOB
832 int run_list_level;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +0100833 unsigned last_jobid;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000834 pid_t saved_tty_pgrp;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000835 struct pipe *job_list;
Mike Frysinger38478a62009-05-20 04:48:06 -0400836# define G_saved_tty_pgrp (G.saved_tty_pgrp)
837#else
838# define G_saved_tty_pgrp 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000839#endif
Denys Vlasenko9fda6092017-07-14 13:36:48 +0200840 /* How deeply are we in context where "set -e" is ignored */
841 int errexit_depth;
842 /* "set -e" rules (do we follow them correctly?):
843 * Exit if pipe, list, or compound command exits with a non-zero status.
844 * Shell does not exit if failed command is part of condition in
845 * if/while, part of && or || list except the last command, any command
846 * in a pipe but the last, or if the command's return value is being
847 * inverted with !. If a compound command other than a subshell returns a
848 * non-zero status because a command failed while -e was being ignored, the
849 * shell does not exit. A trap on ERR, if set, is executed before the shell
850 * exits [ERR is a bashism].
851 *
852 * If a compound command or function executes in a context where -e is
853 * ignored, none of the commands executed within are affected by the -e
854 * setting. If a compound command or function sets -e while executing in a
855 * context where -e is ignored, that setting does not have any effect until
856 * the compound command or the command containing the function call completes.
857 */
858
Denys Vlasenko26777aa2010-11-22 23:49:10 +0100859 char o_opt[NUM_OPT_O];
Denys Vlasenko57542eb2010-11-28 03:59:30 +0100860#if ENABLE_HUSH_MODE_X
861# define G_x_mode (G.o_opt[OPT_O_XTRACE])
862#else
863# define G_x_mode 0
864#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000865 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000866#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000867 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000868#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000869#if ENABLE_HUSH_FUNCTIONS
870 /* 0: outside of a function (or sourced file)
871 * -1: inside of a function, ok to use return builtin
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000872 * 1: return is invoked, skip all till end of func
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000873 */
874 smallint flag_return_in_progress;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +0200875# define G_flag_return_in_progress (G.flag_return_in_progress)
876#else
877# define G_flag_return_in_progress 0
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000878#endif
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000879 smallint exiting; /* used to prevent EXIT trap recursion */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000880 /* These four support $?, $#, and $1 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000881 smalluint last_exitcode;
Denys Vlasenko840a4352017-07-07 22:56:02 +0200882 smalluint last_bg_pid_exitcode;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +0100883#if ENABLE_HUSH_SET
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000884 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000885 smalluint global_args_malloced;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +0100886# define G_global_args_malloced (G.global_args_malloced)
887#else
888# define G_global_args_malloced 0
889#endif
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000890 /* how many non-NULL argv's we have. NB: $# + 1 */
891 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000892 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000893#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000894 char *argv0_for_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000895#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000896#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000897 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000898 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000899#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000900 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000901 const char *cwd;
Denys Vlasenko52e460b2010-09-16 16:12:00 +0200902 struct variable *top_var;
Denys Vlasenko29082232010-07-16 13:52:32 +0200903 char **expanded_assignments;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000904#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000905 struct function *top_func;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200906# if ENABLE_HUSH_LOCAL
907 struct variable **shadowed_vars_pp;
908 unsigned func_nest_level;
909# endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000910#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000911 /* Signal and trap handling */
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200912#if ENABLE_HUSH_FAST
913 unsigned count_SIGCHLD;
914 unsigned handled_SIGCHLD;
Denys Vlasenkoe2df5f42009-05-26 14:34:10 +0200915 smallint we_have_children;
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200916#endif
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +0200917 struct FILE_list *FILE_list;
Denys Vlasenko10c01312011-05-11 11:49:21 +0200918 /* Which signals have non-DFL handler (even with no traps set)?
919 * Set at the start to:
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200920 * (SIGQUIT + maybe SPECIAL_INTERACTIVE_SIGS + maybe SPECIAL_JOBSTOP_SIGS)
Denys Vlasenko10c01312011-05-11 11:49:21 +0200921 * SPECIAL_INTERACTIVE_SIGS are cleared after fork.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200922 * The rest is cleared right before execv syscalls.
Denys Vlasenko10c01312011-05-11 11:49:21 +0200923 * Other than these two times, never modified.
924 */
925 unsigned special_sig_mask;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200926#if ENABLE_HUSH_JOB
927 unsigned fatal_sig_mask;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +0100928# define G_fatal_sig_mask (G.fatal_sig_mask)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200929#else
Denys Vlasenko75e77de2011-05-12 13:12:47 +0200930# define G_fatal_sig_mask 0
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200931#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100932#if ENABLE_HUSH_TRAP
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000933 char **traps; /* char *traps[NSIG] */
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100934# define G_traps G.traps
935#else
936# define G_traps ((char**)NULL)
937#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200938 sigset_t pending_set;
Denys Vlasenko44719692017-01-08 18:44:41 +0100939#if ENABLE_HUSH_MEMLEAK
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000940 unsigned long memleak_value;
Denys Vlasenko44719692017-01-08 18:44:41 +0100941#endif
942#if HUSH_DEBUG
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000943 int debug_indent;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000944#endif
Denys Vlasenko0806e402011-05-12 23:06:20 +0200945 struct sigaction sa;
Denys Vlasenko0448c552016-09-29 20:25:44 +0200946#if ENABLE_FEATURE_EDITING
947 char user_input_buf[CONFIG_FEATURE_EDITING_MAX_LEN];
948#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000949};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000950#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000951/* Not #defining name to G.name - this quickly gets unwieldy
952 * (too many defines). Also, I actually prefer to see when a variable
953 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000954#define INIT_G() do { \
955 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denys Vlasenko0806e402011-05-12 23:06:20 +0200956 /* memset(&G.sa, 0, sizeof(G.sa)); */ \
957 sigfillset(&G.sa.sa_mask); \
958 G.sa.sa_flags = SA_RESTART; \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000959} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000960
961
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000962/* Function prototypes for builtins */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200963static int builtin_cd(char **argv) FAST_FUNC;
Denys Vlasenko1cc68042017-01-09 17:10:04 +0100964#if ENABLE_HUSH_ECHO
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200965static int builtin_echo(char **argv) FAST_FUNC;
Denys Vlasenko1cc68042017-01-09 17:10:04 +0100966#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200967static int builtin_eval(char **argv) FAST_FUNC;
968static int builtin_exec(char **argv) FAST_FUNC;
969static int builtin_exit(char **argv) FAST_FUNC;
Denys Vlasenko6ec76d82017-01-08 18:40:41 +0100970#if ENABLE_HUSH_EXPORT
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200971static int builtin_export(char **argv) FAST_FUNC;
Denys Vlasenko6ec76d82017-01-08 18:40:41 +0100972#endif
Denys Vlasenko1e660422017-07-17 21:10:50 +0200973#if ENABLE_HUSH_READONLY
974static int builtin_readonly(char **argv) FAST_FUNC;
975#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000976#if ENABLE_HUSH_JOB
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200977static int builtin_fg_bg(char **argv) FAST_FUNC;
978static int builtin_jobs(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000979#endif
980#if ENABLE_HUSH_HELP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200981static int builtin_help(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000982#endif
Denys Vlasenkoff463a82013-05-12 02:45:23 +0200983#if MAX_HISTORY && ENABLE_FEATURE_EDITING
Flemming Madsend96ffda2013-04-07 18:47:24 +0200984static int builtin_history(char **argv) FAST_FUNC;
985#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +0200986#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200987static int builtin_local(char **argv) FAST_FUNC;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200988#endif
Denys Vlasenko44719692017-01-08 18:44:41 +0100989#if ENABLE_HUSH_MEMLEAK
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200990static int builtin_memleak(char **argv) FAST_FUNC;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000991#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +0100992#if ENABLE_HUSH_PRINTF
Mike Frysinger4ebc76c2009-10-15 03:32:39 -0400993static int builtin_printf(char **argv) FAST_FUNC;
994#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200995static int builtin_pwd(char **argv) FAST_FUNC;
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100996#if ENABLE_HUSH_READ
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200997static int builtin_read(char **argv) FAST_FUNC;
Denys Vlasenko7a85c602017-01-08 17:40:18 +0100998#endif
Denys Vlasenko10d5ece2017-01-08 18:28:43 +0100999#if ENABLE_HUSH_SET
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001000static int builtin_set(char **argv) FAST_FUNC;
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001001#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001002static int builtin_shift(char **argv) FAST_FUNC;
1003static int builtin_source(char **argv) FAST_FUNC;
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01001004#if ENABLE_HUSH_TEST || BASH_TEST2
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001005static int builtin_test(char **argv) FAST_FUNC;
Denys Vlasenko265062d2017-01-10 15:13:30 +01001006#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001007#if ENABLE_HUSH_TRAP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001008static int builtin_trap(char **argv) FAST_FUNC;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001009#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001010#if ENABLE_HUSH_TYPE
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001011static int builtin_type(char **argv) FAST_FUNC;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001012#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001013static int builtin_true(char **argv) FAST_FUNC;
Denys Vlasenkod5933b12017-01-08 18:31:39 +01001014#if ENABLE_HUSH_UMASK
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001015static int builtin_umask(char **argv) FAST_FUNC;
Denys Vlasenkod5933b12017-01-08 18:31:39 +01001016#endif
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001017#if ENABLE_HUSH_UNSET
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001018static int builtin_unset(char **argv) FAST_FUNC;
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001019#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001020#if ENABLE_HUSH_KILL
1021static int builtin_kill(char **argv) FAST_FUNC;
1022#endif
1023#if ENABLE_HUSH_WAIT
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001024static int builtin_wait(char **argv) FAST_FUNC;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001025#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001026#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001027static int builtin_break(char **argv) FAST_FUNC;
1028static int builtin_continue(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001029#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00001030#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001031static int builtin_return(char **argv) FAST_FUNC;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00001032#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001033
1034/* Table of built-in functions. They can be forked or not, depending on
1035 * context: within pipes, they fork. As simple commands, they do not.
1036 * When used in non-forking context, they can change global variables
1037 * in the parent shell process. If forked, of course they cannot.
1038 * For example, 'unset foo | whatever' will parse and run, but foo will
1039 * still be set at the end. */
1040struct built_in_command {
Denys Vlasenko17323a62010-01-28 01:57:05 +01001041 const char *b_cmd;
1042 int (*b_function)(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001043#if ENABLE_HUSH_HELP
Denys Vlasenko17323a62010-01-28 01:57:05 +01001044 const char *b_descr;
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001045# define BLTIN(cmd, func, help) { cmd, func, help }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001046#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001047# define BLTIN(cmd, func, help) { cmd, func }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001048#endif
1049};
1050
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001051static const struct built_in_command bltins1[] = {
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001052 BLTIN("." , builtin_source , "Run commands in file"),
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001053 BLTIN(":" , builtin_true , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001054#if ENABLE_HUSH_JOB
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001055 BLTIN("bg" , builtin_fg_bg , "Resume job in background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001056#endif
1057#if ENABLE_HUSH_LOOPS
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001058 BLTIN("break" , builtin_break , "Exit loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001059#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001060 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001061#if ENABLE_HUSH_LOOPS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001062 BLTIN("continue" , builtin_continue, "Start new loop iteration"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001063#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001064 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
1065 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001066 BLTIN("exit" , builtin_exit , NULL),
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01001067#if ENABLE_HUSH_EXPORT
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001068 BLTIN("export" , builtin_export , "Set environment variables"),
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01001069#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001070#if ENABLE_HUSH_JOB
Denys Vlasenkod2c15bc2017-07-18 18:14:42 +02001071 BLTIN("fg" , builtin_fg_bg , "Bring job to foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001072#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001073#if ENABLE_HUSH_HELP
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001074 BLTIN("help" , builtin_help , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001075#endif
Denys Vlasenkoff463a82013-05-12 02:45:23 +02001076#if MAX_HISTORY && ENABLE_FEATURE_EDITING
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001077 BLTIN("history" , builtin_history , "Show history"),
Flemming Madsend96ffda2013-04-07 18:47:24 +02001078#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +00001079#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001080 BLTIN("jobs" , builtin_jobs , "List jobs"),
Denis Vlasenko34d4d892009-04-04 20:24:37 +00001081#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001082#if ENABLE_HUSH_KILL
1083 BLTIN("kill" , builtin_kill , "Send signals to processes"),
1084#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02001085#if ENABLE_HUSH_LOCAL
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001086 BLTIN("local" , builtin_local , "Set local variables"),
Denys Vlasenko295fef82009-06-03 12:47:26 +02001087#endif
Denys Vlasenko44719692017-01-08 18:44:41 +01001088#if ENABLE_HUSH_MEMLEAK
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001089 BLTIN("memleak" , builtin_memleak , NULL),
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00001090#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001091#if ENABLE_HUSH_READ
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001092 BLTIN("read" , builtin_read , "Input into variable"),
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001093#endif
Denys Vlasenko1e660422017-07-17 21:10:50 +02001094#if ENABLE_HUSH_READONLY
1095 BLTIN("readonly" , builtin_readonly, "Make variables read-only"),
1096#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00001097#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001098 BLTIN("return" , builtin_return , "Return from function"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00001099#endif
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001100#if ENABLE_HUSH_SET
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001101 BLTIN("set" , builtin_set , "Set positional parameters"),
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001102#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001103 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01001104#if BASH_SOURCE
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001105 BLTIN("source" , builtin_source , NULL),
Denys Vlasenko82731b42010-05-17 17:49:52 +02001106#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001107#if ENABLE_HUSH_TRAP
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001108 BLTIN("trap" , builtin_trap , "Trap signals"),
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001109#endif
Denys Vlasenko2bba5912014-03-14 12:43:57 +01001110 BLTIN("true" , builtin_true , NULL),
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001111#if ENABLE_HUSH_TYPE
Denys Vlasenko651a2692010-03-23 16:25:17 +01001112 BLTIN("type" , builtin_type , "Show command type"),
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001113#endif
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001114#if ENABLE_HUSH_ULIMIT
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001115 BLTIN("ulimit" , shell_builtin_ulimit, "Control resource limits"),
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001116#endif
Denys Vlasenkod5933b12017-01-08 18:31:39 +01001117#if ENABLE_HUSH_UMASK
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001118 BLTIN("umask" , builtin_umask , "Set file creation mask"),
Denys Vlasenkod5933b12017-01-08 18:31:39 +01001119#endif
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001120#if ENABLE_HUSH_UNSET
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001121 BLTIN("unset" , builtin_unset , "Unset variables"),
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01001122#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001123#if ENABLE_HUSH_WAIT
Denys Vlasenkod2c15bc2017-07-18 18:14:42 +02001124 BLTIN("wait" , builtin_wait , "Wait for process to finish"),
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001125#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001126};
Denys Vlasenko80f806c2017-01-10 16:51:10 +01001127/* These builtins won't be used if we are on NOMMU and need to re-exec
1128 * (it's cheaper to run an external program in this case):
1129 */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001130static const struct built_in_command bltins2[] = {
Denys Vlasenko265062d2017-01-10 15:13:30 +01001131#if ENABLE_HUSH_TEST
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001132 BLTIN("[" , builtin_test , NULL),
Denys Vlasenko265062d2017-01-10 15:13:30 +01001133#endif
Denys Vlasenko8944c672017-01-11 14:22:00 +01001134#if BASH_TEST2
1135 BLTIN("[[" , builtin_test , NULL),
1136#endif
Denys Vlasenko1cc68042017-01-09 17:10:04 +01001137#if ENABLE_HUSH_ECHO
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001138 BLTIN("echo" , builtin_echo , NULL),
Denys Vlasenko1cc68042017-01-09 17:10:04 +01001139#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01001140#if ENABLE_HUSH_PRINTF
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04001141 BLTIN("printf" , builtin_printf , NULL),
1142#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001143 BLTIN("pwd" , builtin_pwd , NULL),
Denys Vlasenko265062d2017-01-10 15:13:30 +01001144#if ENABLE_HUSH_TEST
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001145 BLTIN("test" , builtin_test , NULL),
Denys Vlasenko265062d2017-01-10 15:13:30 +01001146#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001147};
1148
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001149
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001150/* Debug printouts.
1151 */
1152#if HUSH_DEBUG
1153/* prevent disasters with G.debug_indent < 0 */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001154# define indent() fdprintf(2, "%*s", (G.debug_indent * 2) & 0xff, "")
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001155# define debug_enter() (G.debug_indent++)
1156# define debug_leave() (G.debug_indent--)
1157#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001158# define indent() ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001159# define debug_enter() ((void)0)
1160# define debug_leave() ((void)0)
1161#endif
1162
1163#ifndef debug_printf
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001164# define debug_printf(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001165#endif
1166
1167#ifndef debug_printf_parse
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001168# define debug_printf_parse(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001169#endif
1170
1171#ifndef debug_printf_exec
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001172#define debug_printf_exec(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001173#endif
1174
1175#ifndef debug_printf_env
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001176# define debug_printf_env(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001177#endif
1178
1179#ifndef debug_printf_jobs
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001180# define debug_printf_jobs(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001181# define DEBUG_JOBS 1
1182#else
1183# define DEBUG_JOBS 0
1184#endif
1185
1186#ifndef debug_printf_expand
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001187# define debug_printf_expand(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001188# define DEBUG_EXPAND 1
1189#else
1190# define DEBUG_EXPAND 0
1191#endif
1192
Denys Vlasenko1e811b12010-05-22 03:12:29 +02001193#ifndef debug_printf_varexp
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001194# define debug_printf_varexp(...) (indent(), fdprintf(2, __VA_ARGS__))
Denys Vlasenko1e811b12010-05-22 03:12:29 +02001195#endif
1196
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001197#ifndef debug_printf_glob
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001198# define debug_printf_glob(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001199# define DEBUG_GLOB 1
1200#else
1201# define DEBUG_GLOB 0
1202#endif
1203
Denys Vlasenko2db74612017-07-07 22:07:28 +02001204#ifndef debug_printf_redir
1205# define debug_printf_redir(...) (indent(), fdprintf(2, __VA_ARGS__))
1206#endif
1207
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001208#ifndef debug_printf_list
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001209# define debug_printf_list(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001210#endif
1211
1212#ifndef debug_printf_subst
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001213# define debug_printf_subst(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001214#endif
1215
1216#ifndef debug_printf_clean
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001217# define debug_printf_clean(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001218# define DEBUG_CLEAN 1
1219#else
1220# define DEBUG_CLEAN 0
1221#endif
1222
1223#if DEBUG_EXPAND
1224static void debug_print_strings(const char *prefix, char **vv)
1225{
1226 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001227 fdprintf(2, "%s:\n", prefix);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001228 while (*vv)
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001229 fdprintf(2, " '%s'\n", *vv++);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001230}
1231#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001232# define debug_print_strings(prefix, vv) ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001233#endif
1234
1235
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001236/* Leak hunting. Use hush_leaktool.sh for post-processing.
1237 */
1238#if LEAK_HUNTING
1239static void *xxmalloc(int lineno, size_t size)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001240{
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001241 void *ptr = xmalloc((size + 0xff) & ~0xff);
1242 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
1243 return ptr;
1244}
1245static void *xxrealloc(int lineno, void *ptr, size_t size)
1246{
1247 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
1248 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
1249 return ptr;
1250}
1251static char *xxstrdup(int lineno, const char *str)
1252{
1253 char *ptr = xstrdup(str);
1254 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
1255 return ptr;
1256}
1257static void xxfree(void *ptr)
1258{
1259 fdprintf(2, "free %p\n", ptr);
1260 free(ptr);
1261}
Denys Vlasenko8391c482010-05-22 17:50:43 +02001262# define xmalloc(s) xxmalloc(__LINE__, s)
1263# define xrealloc(p, s) xxrealloc(__LINE__, p, s)
1264# define xstrdup(s) xxstrdup(__LINE__, s)
1265# define free(p) xxfree(p)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001266#endif
1267
1268
1269/* Syntax and runtime errors. They always abort scripts.
1270 * In interactive use they usually discard unparsed and/or unexecuted commands
1271 * and return to the prompt.
1272 * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
1273 */
1274#if HUSH_DEBUG < 2
Denys Vlasenko39701202017-08-02 19:44:05 +02001275# define msg_and_die_if_script(lineno, ...) msg_and_die_if_script(__VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001276# define syntax_error(lineno, msg) syntax_error(msg)
1277# define syntax_error_at(lineno, msg) syntax_error_at(msg)
1278# define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch)
1279# define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s)
1280# define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001281#endif
1282
Denys Vlasenko39701202017-08-02 19:44:05 +02001283static void die_if_script(void)
1284{
1285 if (!G_interactive_fd) {
1286 if (G.last_exitcode) /* sometines it's 2, not 1 (bash compat) */
1287 xfunc_error_retval = G.last_exitcode;
1288 xfunc_die();
1289 }
1290}
1291
1292static void msg_and_die_if_script(unsigned lineno, const char *fmt, ...)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001293{
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001294 va_list p;
1295
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001296#if HUSH_DEBUG >= 2
1297 bb_error_msg("hush.c:%u", lineno);
1298#endif
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001299 va_start(p, fmt);
1300 bb_verror_msg(fmt, p, NULL);
1301 va_end(p);
Denys Vlasenko39701202017-08-02 19:44:05 +02001302 die_if_script();
Mike Frysinger6379bb42009-03-28 18:55:03 +00001303}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001304
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001305static void syntax_error(unsigned lineno UNUSED_PARAM, const char *msg)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001306{
1307 if (msg)
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001308 bb_error_msg("syntax error: %s", msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001309 else
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001310 bb_error_msg("syntax error");
Denys Vlasenko39701202017-08-02 19:44:05 +02001311 die_if_script();
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001312}
1313
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001314static void syntax_error_at(unsigned lineno UNUSED_PARAM, const char *msg)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001315{
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001316 bb_error_msg("syntax error at '%s'", msg);
Denys Vlasenko39701202017-08-02 19:44:05 +02001317 die_if_script();
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001318}
1319
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001320static void syntax_error_unterm_str(unsigned lineno UNUSED_PARAM, const char *s)
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001321{
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001322 bb_error_msg("syntax error: unterminated %s", s);
Denys Vlasenko39701202017-08-02 19:44:05 +02001323//? source4.tests fails: in bash, echo ${^} in script does not terminate the script
1324// die_if_script();
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001325}
1326
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001327static void syntax_error_unterm_ch(unsigned lineno, char ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001328{
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001329 char msg[2] = { ch, '\0' };
1330 syntax_error_unterm_str(lineno, msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001331}
1332
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001333static void syntax_error_unexpected_ch(unsigned lineno UNUSED_PARAM, int ch)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001334{
1335 char msg[2];
1336 msg[0] = ch;
1337 msg[1] = '\0';
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01001338#if HUSH_DEBUG >= 2
1339 bb_error_msg("hush.c:%u", lineno);
1340#endif
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001341 bb_error_msg("syntax error: unexpected %s", ch == EOF ? "EOF" : msg);
Denys Vlasenko39701202017-08-02 19:44:05 +02001342 die_if_script();
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001343}
1344
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001345#if HUSH_DEBUG < 2
Denys Vlasenko39701202017-08-02 19:44:05 +02001346# undef msg_and_die_if_script
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001347# undef syntax_error
1348# undef syntax_error_at
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001349# undef syntax_error_unterm_ch
1350# undef syntax_error_unterm_str
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001351# undef syntax_error_unexpected_ch
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001352#else
Denys Vlasenko39701202017-08-02 19:44:05 +02001353# define msg_and_die_if_script(...) msg_and_die_if_script(__LINE__, __VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001354# define syntax_error(msg) syntax_error(__LINE__, msg)
1355# define syntax_error_at(msg) syntax_error_at(__LINE__, msg)
1356# define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch)
1357# define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s)
1358# define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001359#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001360
Denis Vlasenko552433b2009-04-04 19:29:21 +00001361
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001362#if ENABLE_HUSH_INTERACTIVE
1363static void cmdedit_update_prompt(void);
1364#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001365# define cmdedit_update_prompt() ((void)0)
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001366#endif
1367
1368
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001369/* Utility functions
1370 */
Denis Vlasenko55789c62008-06-18 16:30:42 +00001371/* Replace each \x with x in place, return ptr past NUL. */
1372static char *unbackslash(char *src)
1373{
Denys Vlasenko71885402009-09-24 01:44:13 +02001374 char *dst = src = strchrnul(src, '\\');
Denis Vlasenko55789c62008-06-18 16:30:42 +00001375 while (1) {
1376 if (*src == '\\')
1377 src++;
1378 if ((*dst++ = *src++) == '\0')
1379 break;
1380 }
1381 return dst;
1382}
1383
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001384static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001385{
1386 int i;
1387 unsigned count1;
1388 unsigned count2;
1389 char **v;
1390
1391 v = strings;
1392 count1 = 0;
1393 if (v) {
1394 while (*v) {
1395 count1++;
1396 v++;
1397 }
1398 }
1399 count2 = 0;
1400 v = add;
1401 while (*v) {
1402 count2++;
1403 v++;
1404 }
1405 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
1406 v[count1 + count2] = NULL;
1407 i = count2;
1408 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001409 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001410 return v;
1411}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001412#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001413static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
1414{
1415 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
1416 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
1417 return ptr;
1418}
1419#define add_strings_to_strings(strings, add, need_to_dup) \
1420 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
1421#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001422
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001423/* Note: takes ownership of "add" ptr (it is not strdup'ed) */
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001424static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001425{
1426 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001427 v[0] = add;
1428 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001429 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001430}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001431#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001432static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
1433{
1434 char **ptr = add_string_to_strings(strings, add);
1435 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
1436 return ptr;
1437}
1438#define add_string_to_strings(strings, add) \
1439 xx_add_string_to_strings(__LINE__, strings, add)
1440#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001441
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001442static void free_strings(char **strings)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001443{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001444 char **v;
1445
1446 if (!strings)
1447 return;
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001448 v = strings;
1449 while (*v) {
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001450 free(*v);
1451 v++;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001452 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001453 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001454}
1455
Denys Vlasenko2db74612017-07-07 22:07:28 +02001456static int fcntl_F_DUPFD(int fd, int avoid_fd)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001457{
Denys Vlasenko2db74612017-07-07 22:07:28 +02001458 int newfd;
1459 repeat:
1460 newfd = fcntl(fd, F_DUPFD, avoid_fd + 1);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001461 if (newfd < 0) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02001462 if (errno == EBUSY)
1463 goto repeat;
1464 if (errno == EINTR)
1465 goto repeat;
1466 }
1467 return newfd;
1468}
1469
Denys Vlasenko657e9002017-07-30 23:34:04 +02001470static int xdup_CLOEXEC_and_close(int fd, int avoid_fd)
Denys Vlasenko2db74612017-07-07 22:07:28 +02001471{
1472 int newfd;
1473 repeat:
Denys Vlasenko657e9002017-07-30 23:34:04 +02001474 newfd = fcntl(fd, F_DUPFD_CLOEXEC, avoid_fd + 1);
Denys Vlasenko2db74612017-07-07 22:07:28 +02001475 if (newfd < 0) {
1476 if (errno == EBUSY)
1477 goto repeat;
1478 if (errno == EINTR)
1479 goto repeat;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001480 /* fd was not open? */
1481 if (errno == EBADF)
1482 return fd;
1483 xfunc_die();
1484 }
Denys Vlasenko657e9002017-07-30 23:34:04 +02001485 if (F_DUPFD_CLOEXEC == F_DUPFD) /* if old libc (w/o F_DUPFD_CLOEXEC) */
1486 fcntl(newfd, F_SETFD, FD_CLOEXEC);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001487 close(fd);
1488 return newfd;
1489}
1490
1491
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001492/* Manipulating the list of open FILEs */
1493static FILE *remember_FILE(FILE *fp)
1494{
1495 if (fp) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001496 struct FILE_list *n = xmalloc(sizeof(*n));
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001497 n->next = G.FILE_list;
1498 G.FILE_list = n;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001499 n->fp = fp;
1500 n->fd = fileno(fp);
1501 close_on_exec_on(n->fd);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001502 }
1503 return fp;
1504}
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001505static void fclose_and_forget(FILE *fp)
1506{
1507 struct FILE_list **pp = &G.FILE_list;
1508 while (*pp) {
1509 struct FILE_list *cur = *pp;
1510 if (cur->fp == fp) {
1511 *pp = cur->next;
1512 free(cur);
1513 break;
1514 }
1515 pp = &cur->next;
1516 }
1517 fclose(fp);
1518}
Denys Vlasenko2db74612017-07-07 22:07:28 +02001519static int save_FILEs_on_redirect(int fd, int avoid_fd)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001520{
1521 struct FILE_list *fl = G.FILE_list;
1522 while (fl) {
1523 if (fd == fl->fd) {
1524 /* We use it only on script files, they are all CLOEXEC */
Denys Vlasenko657e9002017-07-30 23:34:04 +02001525 fl->fd = xdup_CLOEXEC_and_close(fd, avoid_fd);
Denys Vlasenko2db74612017-07-07 22:07:28 +02001526 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 +02001527 return 1;
1528 }
1529 fl = fl->next;
1530 }
1531 return 0;
1532}
1533static void restore_redirected_FILEs(void)
1534{
1535 struct FILE_list *fl = G.FILE_list;
1536 while (fl) {
1537 int should_be = fileno(fl->fp);
1538 if (fl->fd != should_be) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02001539 debug_printf_redir("restoring script fd from %d to %d\n", fl->fd, should_be);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001540 xmove_fd(fl->fd, should_be);
1541 fl->fd = should_be;
1542 }
1543 fl = fl->next;
1544 }
1545}
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02001546#if ENABLE_FEATURE_SH_STANDALONE && BB_MMU
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001547static void close_all_FILE_list(void)
1548{
1549 struct FILE_list *fl = G.FILE_list;
1550 while (fl) {
1551 /* fclose would also free FILE object.
1552 * It is disastrous if we share memory with a vforked parent.
1553 * I'm not sure we never come here after vfork.
1554 * Therefore just close fd, nothing more.
1555 */
1556 /*fclose(fl->fp); - unsafe */
1557 close(fl->fd);
1558 fl = fl->next;
1559 }
1560}
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001561#endif
Denys Vlasenko32fdf2f2017-07-31 04:32:06 +02001562static int fd_in_FILEs(int fd)
1563{
1564 struct FILE_list *fl = G.FILE_list;
1565 while (fl) {
1566 if (fl->fd == fd)
1567 return 1;
1568 fl = fl->next;
1569 }
1570 return 0;
1571}
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001572
1573
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001574/* Helpers for setting new $n and restoring them back
1575 */
1576typedef struct save_arg_t {
1577 char *sv_argv0;
1578 char **sv_g_argv;
1579 int sv_g_argc;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001580 IF_HUSH_SET(smallint sv_g_malloced;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001581} save_arg_t;
1582
1583static void save_and_replace_G_args(save_arg_t *sv, char **argv)
1584{
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001585 sv->sv_argv0 = argv[0];
1586 sv->sv_g_argv = G.global_argv;
1587 sv->sv_g_argc = G.global_argc;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001588 IF_HUSH_SET(sv->sv_g_malloced = G.global_args_malloced;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001589
1590 argv[0] = G.global_argv[0]; /* retain $0 */
1591 G.global_argv = argv;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001592 IF_HUSH_SET(G.global_args_malloced = 0;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001593
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02001594 G.global_argc = 1 + string_array_len(argv + 1);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001595}
1596
1597static void restore_G_args(save_arg_t *sv, char **argv)
1598{
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001599#if ENABLE_HUSH_SET
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001600 if (G.global_args_malloced) {
1601 /* someone ran "set -- arg1 arg2 ...", undo */
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001602 char **pp = G.global_argv;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001603 while (*++pp) /* note: does not free $0 */
1604 free(*pp);
1605 free(G.global_argv);
1606 }
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001607#endif
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001608 argv[0] = sv->sv_argv0;
1609 G.global_argv = sv->sv_g_argv;
1610 G.global_argc = sv->sv_g_argc;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001611 IF_HUSH_SET(G.global_args_malloced = sv->sv_g_malloced;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001612}
1613
1614
Denis Vlasenkod5762932009-03-31 11:22:57 +00001615/* Basic theory of signal handling in shell
1616 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001617 * This does not describe what hush does, rather, it is current understanding
1618 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001619 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
1620 *
1621 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
1622 * is finished or backgrounded. It is the same in interactive and
1623 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001624 * a user trap handler is installed or a shell special one is in effect.
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001625 * ^C or ^Z from keyboard seems to execute "at once" because it usually
Denis Vlasenkod5762932009-03-31 11:22:57 +00001626 * backgrounds (i.e. stops) or kills all members of currently running
1627 * pipe.
1628 *
Denys Vlasenko8bd810b2013-11-28 01:50:01 +01001629 * Wait builtin is interruptible by signals for which user trap is set
Denis Vlasenkod5762932009-03-31 11:22:57 +00001630 * or by SIGINT in interactive shell.
1631 *
1632 * Trap handlers will execute even within trap handlers. (right?)
1633 *
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001634 * User trap handlers are forgotten when subshell ("(cmd)") is entered,
1635 * except for handlers set to '' (empty string).
Denis Vlasenkod5762932009-03-31 11:22:57 +00001636 *
1637 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001638 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001639 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001640 * Commands which are run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001641 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001642 *
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001643 * Ordinary commands have signals set to SIG_IGN/DFL as inherited
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001644 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001645 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001646 * Signals which differ from SIG_DFL action
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001647 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +00001648 *
1649 * SIGQUIT: ignore
1650 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001651 * SIGHUP (interactive):
1652 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +00001653 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00001654 * Note that ^Z is handled not by trapping SIGTSTP, but by seeing
1655 * that all pipe members are stopped. Try this in bash:
1656 * while :; do :; done - ^Z does not background it
1657 * (while :; do :; done) - ^Z backgrounds it
Denis Vlasenkod5762932009-03-31 11:22:57 +00001658 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001659 * of the command line, show prompt. NB: ^C does not send SIGINT
1660 * to interactive shell while shell is waiting for a pipe,
1661 * since shell is bg'ed (is not in foreground process group).
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001662 * Example 1: this waits 5 sec, but does not execute ls:
1663 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
1664 * Example 2: this does not wait and does not execute ls:
1665 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
1666 * Example 3: this does not wait 5 sec, but executes ls:
1667 * "sleep 5; ls -l" + press ^C
Denys Vlasenkob8709032011-05-08 21:20:01 +02001668 * Example 4: this does not wait and does not execute ls:
1669 * "sleep 5 & wait; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +00001670 *
1671 * (What happens to signals which are IGN on shell start?)
1672 * (What happens with signal mask on shell start?)
1673 *
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001674 * Old implementation
1675 * ==================
Denis Vlasenkod5762932009-03-31 11:22:57 +00001676 * We use in-kernel pending signal mask to determine which signals were sent.
1677 * We block all signals which we don't want to take action immediately,
1678 * i.e. we block all signals which need to have special handling as described
1679 * above, and all signals which have traps set.
1680 * After each pipe execution, we extract any pending signals via sigtimedwait()
1681 * and act on them.
1682 *
Denys Vlasenko10c01312011-05-11 11:49:21 +02001683 * unsigned special_sig_mask: a mask of such "special" signals
Denis Vlasenkod5762932009-03-31 11:22:57 +00001684 * sigset_t blocked_set: current blocked signal set
1685 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001686 * "trap - SIGxxx":
Denys Vlasenko10c01312011-05-11 11:49:21 +02001687 * clear bit in blocked_set unless it is also in special_sig_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001688 * "trap 'cmd' SIGxxx":
1689 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +00001690 * after [v]fork, if we plan to be a shell:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001691 * unblock signals with special interactive handling
1692 * (child shell is not interactive),
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001693 * unset all traps except '' (note: regardless of child shell's type - {}, (), etc)
Denis Vlasenkod5762932009-03-31 11:22:57 +00001694 * after [v]fork, if we plan to exec:
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001695 * POSIX says fork clears pending signal mask in child - no need to clear it.
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001696 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001697 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001698 * Note: as a result, we do not use signal handlers much. The only uses
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001699 * are to count SIGCHLDs
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001700 * and to restore tty pgrp on signal-induced exit.
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001701 *
Denys Vlasenko67f71862009-09-25 14:21:06 +02001702 * Note 2 (compat):
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001703 * Standard says "When a subshell is entered, traps that are not being ignored
1704 * are set to the default actions". bash interprets it so that traps which
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001705 * are set to '' (ignore) are NOT reset to defaults. We do the same.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001706 *
1707 * Problem: the above approach makes it unwieldy to catch signals while
Denys Vlasenkoe95738f2013-07-08 03:13:08 +02001708 * we are in read builtin, or while we read commands from stdin:
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001709 * masked signals are not visible!
1710 *
1711 * New implementation
1712 * ==================
1713 * We record each signal we are interested in by installing signal handler
1714 * for them - a bit like emulating kernel pending signal mask in userspace.
1715 * We are interested in: signals which need to have special handling
1716 * as described above, and all signals which have traps set.
Denys Vlasenko8bd810b2013-11-28 01:50:01 +01001717 * Signals are recorded in pending_set.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001718 * After each pipe execution, we extract any pending signals
1719 * and act on them.
1720 *
1721 * unsigned special_sig_mask: a mask of shell-special signals.
1722 * unsigned fatal_sig_mask: a mask of signals on which we restore tty pgrp.
1723 * char *traps[sig] if trap for sig is set (even if it's '').
1724 * sigset_t pending_set: set of sigs we received.
1725 *
1726 * "trap - SIGxxx":
1727 * if sig is in special_sig_mask, set handler back to:
1728 * record_pending_signo, or to IGN if it's a tty stop signal
1729 * if sig is in fatal_sig_mask, set handler back to sigexit.
1730 * else: set handler back to SIG_DFL
1731 * "trap 'cmd' SIGxxx":
1732 * set handler to record_pending_signo.
1733 * "trap '' SIGxxx":
1734 * set handler to SIG_IGN.
1735 * after [v]fork, if we plan to be a shell:
1736 * set signals with special interactive handling to SIG_DFL
1737 * (because child shell is not interactive),
1738 * unset all traps except '' (note: regardless of child shell's type - {}, (), etc)
1739 * after [v]fork, if we plan to exec:
1740 * POSIX says fork clears pending signal mask in child - no need to clear it.
1741 *
1742 * To make wait builtin interruptible, we handle SIGCHLD as special signal,
1743 * otherwise (if we leave it SIG_DFL) sigsuspend in wait builtin will not wake up on it.
1744 *
1745 * Note (compat):
1746 * Standard says "When a subshell is entered, traps that are not being ignored
1747 * are set to the default actions". bash interprets it so that traps which
1748 * are set to '' (ignore) are NOT reset to defaults. We do the same.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001749 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001750enum {
1751 SPECIAL_INTERACTIVE_SIGS = 0
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001752 | (1 << SIGTERM)
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001753 | (1 << SIGINT)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001754 | (1 << SIGHUP)
1755 ,
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001756 SPECIAL_JOBSTOP_SIGS = 0
Mike Frysinger38478a62009-05-20 04:48:06 -04001757#if ENABLE_HUSH_JOB
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001758 | (1 << SIGTTIN)
1759 | (1 << SIGTTOU)
1760 | (1 << SIGTSTP)
1761#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001762 ,
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001763};
Denis Vlasenkod5762932009-03-31 11:22:57 +00001764
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001765static void record_pending_signo(int sig)
Denys Vlasenko54e9e122011-05-09 00:52:15 +02001766{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001767 sigaddset(&G.pending_set, sig);
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001768#if ENABLE_HUSH_FAST
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001769 if (sig == SIGCHLD) {
1770 G.count_SIGCHLD++;
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001771//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 +02001772 }
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001773#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001774}
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001775
Denys Vlasenko0806e402011-05-12 23:06:20 +02001776static sighandler_t install_sighandler(int sig, sighandler_t handler)
1777{
1778 struct sigaction old_sa;
1779
1780 /* We could use signal() to install handlers... almost:
1781 * except that we need to mask ALL signals while handlers run.
1782 * I saw signal nesting in strace, race window isn't small.
1783 * SA_RESTART is also needed, but in Linux, signal()
1784 * sets SA_RESTART too.
1785 */
1786 /* memset(&G.sa, 0, sizeof(G.sa)); - already done */
1787 /* sigfillset(&G.sa.sa_mask); - already done */
1788 /* G.sa.sa_flags = SA_RESTART; - already done */
1789 G.sa.sa_handler = handler;
1790 sigaction(sig, &G.sa, &old_sa);
1791 return old_sa.sa_handler;
1792}
1793
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001794static void hush_exit(int exitcode) NORETURN;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001795
Denys Vlasenkob6afcc72016-12-12 16:30:20 +01001796static void restore_ttypgrp_and__exit(void) NORETURN;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001797static void restore_ttypgrp_and__exit(void)
1798{
1799 /* xfunc has failed! die die die */
1800 /* no EXIT traps, this is an escape hatch! */
1801 G.exiting = 1;
1802 hush_exit(xfunc_error_retval);
1803}
1804
Denys Vlasenkob6afcc72016-12-12 16:30:20 +01001805#if ENABLE_HUSH_JOB
1806
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001807/* Needed only on some libc:
1808 * It was observed that on exit(), fgetc'ed buffered data
1809 * gets "unwound" via lseek(fd, -NUM, SEEK_CUR).
1810 * With the net effect that even after fork(), not vfork(),
1811 * exit() in NOEXECed applet in "sh SCRIPT":
1812 * noexec_applet_here
1813 * echo END_OF_SCRIPT
1814 * lseeks fd in input FILE object from EOF to "e" in "echo END_OF_SCRIPT".
1815 * This makes "echo END_OF_SCRIPT" executed twice.
Denys Vlasenko39701202017-08-02 19:44:05 +02001816 * Similar problems can be seen with msg_and_die_if_script() -> xfunc_die()
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001817 * and in `cmd` handling.
1818 * If set as die_func(), this makes xfunc_die() exit via _exit(), not exit():
1819 */
Denys Vlasenkob6afcc72016-12-12 16:30:20 +01001820static void fflush_and__exit(void) NORETURN;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001821static void fflush_and__exit(void)
1822{
1823 fflush_all();
1824 _exit(xfunc_error_retval);
1825}
1826
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001827/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001828# define disable_restore_tty_pgrp_on_exit() (die_func = fflush_and__exit)
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001829/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001830# define enable_restore_tty_pgrp_on_exit() (die_func = restore_ttypgrp_and__exit)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001831
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001832/* Restores tty foreground process group, and exits.
1833 * May be called as signal handler for fatal signal
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001834 * (will resend signal to itself, producing correct exit state)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001835 * or called directly with -EXITCODE.
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001836 * We also call it if xfunc is exiting.
1837 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001838static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001839static void sigexit(int sig)
1840{
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001841 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001842 * tty pgrp then, only top-level shell process does that */
Denys Vlasenkoebc1ee22011-05-12 10:59:18 +02001843 if (G_saved_tty_pgrp && getpid() == G.root_pid) {
1844 /* Disable all signals: job control, SIGPIPE, etc.
1845 * Mostly paranoid measure, to prevent infinite SIGTTOU.
1846 */
1847 sigprocmask_allsigs(SIG_BLOCK);
Mike Frysinger38478a62009-05-20 04:48:06 -04001848 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
Denys Vlasenkoebc1ee22011-05-12 10:59:18 +02001849 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001850
1851 /* Not a signal, just exit */
1852 if (sig <= 0)
1853 _exit(- sig);
1854
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001855 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001856}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001857#else
1858
Denys Vlasenko8391c482010-05-22 17:50:43 +02001859# define disable_restore_tty_pgrp_on_exit() ((void)0)
1860# define enable_restore_tty_pgrp_on_exit() ((void)0)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001861
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001862#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001863
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001864static sighandler_t pick_sighandler(unsigned sig)
1865{
1866 sighandler_t handler = SIG_DFL;
1867 if (sig < sizeof(unsigned)*8) {
1868 unsigned sigmask = (1 << sig);
1869
1870#if ENABLE_HUSH_JOB
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001871 /* is sig fatal? */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001872 if (G_fatal_sig_mask & sigmask)
1873 handler = sigexit;
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001874 else
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001875#endif
1876 /* sig has special handling? */
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001877 if (G.special_sig_mask & sigmask) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001878 handler = record_pending_signo;
Denys Vlasenko0c40a732011-05-12 09:50:12 +02001879 /* TTIN/TTOU/TSTP can't be set to record_pending_signo
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001880 * in order to ignore them: they will be raised
Denys Vlasenkof58f7052011-05-12 02:10:33 +02001881 * in an endless loop when we try to do some
1882 * terminal ioctls! We do have to _ignore_ these.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001883 */
1884 if (SPECIAL_JOBSTOP_SIGS & sigmask)
1885 handler = SIG_IGN;
Denys Vlasenko0c40a732011-05-12 09:50:12 +02001886 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001887 }
1888 return handler;
1889}
1890
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001891/* Restores tty foreground process group, and exits. */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001892static void hush_exit(int exitcode)
1893{
Denys Vlasenkobede2152011-09-04 16:12:33 +02001894#if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1895 save_history(G.line_input_state);
1896#endif
1897
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01001898 fflush_all();
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001899 if (G.exiting <= 0 && G_traps && G_traps[0] && G_traps[0][0]) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001900 char *argv[3];
1901 /* argv[0] is unused */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001902 argv[1] = G_traps[0];
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001903 argv[2] = NULL;
Denys Vlasenkoa110c902010-09-12 15:38:04 +02001904 G.exiting = 1; /* prevent EXIT trap recursion */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001905 /* Note: G_traps[0] is not cleared!
Denys Vlasenkode8c3f62010-09-12 16:13:44 +02001906 * "trap" will still show it, if executed
1907 * in the handler */
1908 builtin_eval(argv);
Denis Vlasenkod5762932009-03-31 11:22:57 +00001909 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001910
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001911#if ENABLE_FEATURE_CLEAN_UP
1912 {
1913 struct variable *cur_var;
1914 if (G.cwd != bb_msg_unknown)
1915 free((char*)G.cwd);
1916 cur_var = G.top_var;
1917 while (cur_var) {
1918 struct variable *tmp = cur_var;
1919 if (!cur_var->max_len)
1920 free(cur_var->varstr);
1921 cur_var = cur_var->next;
1922 free(tmp);
1923 }
1924 }
1925#endif
1926
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001927 fflush_all();
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02001928#if ENABLE_HUSH_JOB
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001929 sigexit(- (exitcode & 0xff));
1930#else
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02001931 _exit(exitcode);
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001932#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001933}
1934
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02001935
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001936//TODO: return a mask of ALL handled sigs?
1937static int check_and_run_traps(void)
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001938{
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001939 int last_sig = 0;
1940
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001941 while (1) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001942 int sig;
Denys Vlasenko80542ba2011-05-08 21:23:43 +02001943
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001944 if (sigisemptyset(&G.pending_set))
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001945 break;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001946 sig = 0;
1947 do {
1948 sig++;
1949 if (sigismember(&G.pending_set, sig)) {
1950 sigdelset(&G.pending_set, sig);
1951 goto got_sig;
1952 }
1953 } while (sig < NSIG);
1954 break;
Denys Vlasenkob8709032011-05-08 21:20:01 +02001955 got_sig:
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001956 if (G_traps && G_traps[sig]) {
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001957 debug_printf_exec("%s: sig:%d handler:'%s'\n", __func__, sig, G.traps[sig]);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001958 if (G_traps[sig][0]) {
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001959 /* We have user-defined handler */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001960 smalluint save_rcode;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001961 char *argv[3];
1962 /* argv[0] is unused */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001963 argv[1] = G_traps[sig];
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001964 argv[2] = NULL;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001965 save_rcode = G.last_exitcode;
1966 builtin_eval(argv);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01001967//FIXME: shouldn't it be set to 128 + sig instead?
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001968 G.last_exitcode = save_rcode;
Denys Vlasenkob8709032011-05-08 21:20:01 +02001969 last_sig = sig;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001970 } /* else: "" trap, ignoring signal */
1971 continue;
1972 }
1973 /* not a trap: special action */
1974 switch (sig) {
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001975 case SIGINT:
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001976 debug_printf_exec("%s: sig:%d default SIGINT handler\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001977 G.flag_SIGINT = 1;
Denys Vlasenkob8709032011-05-08 21:20:01 +02001978 last_sig = sig;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001979 break;
1980#if ENABLE_HUSH_JOB
1981 case SIGHUP: {
1982 struct pipe *job;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001983 debug_printf_exec("%s: sig:%d default SIGHUP handler\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001984 /* bash is observed to signal whole process groups,
1985 * not individual processes */
1986 for (job = G.job_list; job; job = job->next) {
1987 if (job->pgrp <= 0)
1988 continue;
1989 debug_printf_exec("HUPing pgrp %d\n", job->pgrp);
1990 if (kill(- job->pgrp, SIGHUP) == 0)
1991 kill(- job->pgrp, SIGCONT);
1992 }
1993 sigexit(SIGHUP);
1994 }
1995#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001996#if ENABLE_HUSH_FAST
1997 case SIGCHLD:
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001998 debug_printf_exec("%s: sig:%d default SIGCHLD handler\n", __func__, sig);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001999 G.count_SIGCHLD++;
2000//bb_error_msg("[%d] check_and_run_traps: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
2001 /* Note:
Denys Vlasenko10ad6222017-04-17 16:13:32 +02002002 * We don't do 'last_sig = sig' here -> NOT returning this sig.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002003 * This simplifies wait builtin a bit.
2004 */
2005 break;
2006#endif
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002007 default: /* ignored: */
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02002008 debug_printf_exec("%s: sig:%d default handling is to ignore\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002009 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002010 /* Note:
Denys Vlasenko10ad6222017-04-17 16:13:32 +02002011 * We don't do 'last_sig = sig' here -> NOT returning this sig.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002012 * Example: wait is not interrupted by TERM
Denys Vlasenkob8709032011-05-08 21:20:01 +02002013 * in interactive shell, because TERM is ignored.
2014 */
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002015 break;
2016 }
2017 }
2018 return last_sig;
2019}
2020
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002021
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002022static const char *get_cwd(int force)
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002023{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002024 if (force || G.cwd == NULL) {
2025 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
2026 * we must not try to free(bb_msg_unknown) */
2027 if (G.cwd == bb_msg_unknown)
2028 G.cwd = NULL;
2029 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
2030 if (!G.cwd)
2031 G.cwd = bb_msg_unknown;
2032 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00002033 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002034}
2035
Denis Vlasenko83506862007-11-23 13:11:42 +00002036
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002037/*
2038 * Shell and environment variable support
2039 */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002040static struct variable **get_ptr_to_local_var(const char *name, unsigned len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002041{
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002042 struct variable **pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002043 struct variable *cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002044
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002045 pp = &G.top_var;
2046 while ((cur = *pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002047 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002048 return pp;
2049 pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002050 }
2051 return NULL;
2052}
2053
Denys Vlasenko03dad222010-01-12 23:29:57 +01002054static const char* FAST_FUNC get_local_var_value(const char *name)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002055{
Denys Vlasenko29082232010-07-16 13:52:32 +02002056 struct variable **vpp;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002057 unsigned len = strlen(name);
Denys Vlasenko29082232010-07-16 13:52:32 +02002058
2059 if (G.expanded_assignments) {
2060 char **cpp = G.expanded_assignments;
Denys Vlasenko29082232010-07-16 13:52:32 +02002061 while (*cpp) {
2062 char *cp = *cpp;
2063 if (strncmp(cp, name, len) == 0 && cp[len] == '=')
2064 return cp + len + 1;
2065 cpp++;
2066 }
2067 }
2068
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002069 vpp = get_ptr_to_local_var(name, len);
Denys Vlasenko29082232010-07-16 13:52:32 +02002070 if (vpp)
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002071 return (*vpp)->varstr + len + 1;
Denys Vlasenko29082232010-07-16 13:52:32 +02002072
Denys Vlasenkodea47882009-10-09 15:40:49 +02002073 if (strcmp(name, "PPID") == 0)
2074 return utoa(G.root_ppid);
2075 // bash compat: UID? EUID?
Denys Vlasenko20b3d142009-10-09 20:59:39 +02002076#if ENABLE_HUSH_RANDOM_SUPPORT
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002077 if (strcmp(name, "RANDOM") == 0)
Denys Vlasenko20b3d142009-10-09 20:59:39 +02002078 return utoa(next_random(&G.random_gen));
2079#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002080 return NULL;
2081}
2082
2083/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00002084 * We take ownership of it.
Mike Frysinger6379bb42009-03-28 18:55:03 +00002085 */
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002086#define SETFLAG_EXPORT (1 << 0)
2087#define SETFLAG_UNEXPORT (1 << 1)
2088#define SETFLAG_MAKE_RO (1 << 2)
2089#define SETFLAG_LOCAL_SHIFT 3
2090static int set_local_var(char *str, unsigned flags)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002091{
Denys Vlasenko295fef82009-06-03 12:47:26 +02002092 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002093 struct variable *cur;
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002094 char *free_me = NULL;
Denis Vlasenko950bd722009-04-21 11:23:56 +00002095 char *eq_sign;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002096 int name_len;
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002097 IF_HUSH_LOCAL(unsigned local_lvl = (flags >> SETFLAG_LOCAL_SHIFT);)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002098
Denis Vlasenko950bd722009-04-21 11:23:56 +00002099 eq_sign = strchr(str, '=');
2100 if (!eq_sign) { /* not expected to ever happen? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002101 free(str);
2102 return -1;
2103 }
2104
Denis Vlasenko950bd722009-04-21 11:23:56 +00002105 name_len = eq_sign - str + 1; /* including '=' */
Denys Vlasenko295fef82009-06-03 12:47:26 +02002106 var_pp = &G.top_var;
2107 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002108 if (strncmp(cur->varstr, str, name_len) != 0) {
Denys Vlasenko295fef82009-06-03 12:47:26 +02002109 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002110 continue;
2111 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002112
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002113 /* We found an existing var with this name */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002114 if (cur->flg_read_only) {
Denys Vlasenko6b48e1f2017-07-17 21:31:17 +02002115 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002116 free(str);
Denys Vlasenko5b2cc0a2017-07-18 02:44:06 +02002117//NOTE: in bash, assignment in "export READONLY_VAR=Z" fails, and sets $?=1,
2118//but export per se succeeds (does put the var in env). We don't mimic that.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002119 return -1;
2120 }
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002121 if (flags & SETFLAG_UNEXPORT) { // && cur->flg_export ?
Denis Vlasenko950bd722009-04-21 11:23:56 +00002122 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
2123 *eq_sign = '\0';
2124 unsetenv(str);
2125 *eq_sign = '=';
2126 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02002127#if ENABLE_HUSH_LOCAL
2128 if (cur->func_nest_level < local_lvl) {
2129 /* New variable is declared as local,
2130 * and existing one is global, or local
2131 * from enclosing function.
2132 * Remove and save old one: */
2133 *var_pp = cur->next;
2134 cur->next = *G.shadowed_vars_pp;
2135 *G.shadowed_vars_pp = cur;
2136 /* bash 3.2.33(1) and exported vars:
2137 * # export z=z
2138 * # f() { local z=a; env | grep ^z; }
2139 * # f
2140 * z=a
2141 * # env | grep ^z
2142 * z=z
2143 */
2144 if (cur->flg_export)
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002145 flags |= SETFLAG_EXPORT;
Denys Vlasenko295fef82009-06-03 12:47:26 +02002146 break;
2147 }
2148#endif
Denis Vlasenko950bd722009-04-21 11:23:56 +00002149 if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002150 free_and_exp:
2151 free(str);
2152 goto exp;
2153 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02002154 if (cur->max_len != 0) {
2155 if (cur->max_len >= strlen(str)) {
2156 /* This one is from startup env, reuse space */
2157 strcpy(cur->varstr, str);
2158 goto free_and_exp;
2159 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002160 /* Can't reuse */
2161 cur->max_len = 0;
2162 goto set_str_and_exp;
Denys Vlasenko295fef82009-06-03 12:47:26 +02002163 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002164 /* max_len == 0 signifies "malloced" var, which we can
2165 * (and have to) free. But we can't free(cur->varstr) here:
2166 * if cur->flg_export is 1, it is in the environment.
2167 * We should either unsetenv+free, or wait until putenv,
2168 * then putenv(new)+free(old).
2169 */
2170 free_me = cur->varstr;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002171 goto set_str_and_exp;
2172 }
2173
Denys Vlasenko295fef82009-06-03 12:47:26 +02002174 /* Not found - create new variable struct */
2175 cur = xzalloc(sizeof(*cur));
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002176 IF_HUSH_LOCAL(cur->func_nest_level = local_lvl;)
Denys Vlasenko295fef82009-06-03 12:47:26 +02002177 cur->next = *var_pp;
2178 *var_pp = cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002179
2180 set_str_and_exp:
2181 cur->varstr = str;
2182 exp:
Denys Vlasenko1e660422017-07-17 21:10:50 +02002183#if !BB_MMU || ENABLE_HUSH_READONLY
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002184 if (flags & SETFLAG_MAKE_RO) {
2185 cur->flg_read_only = 1;
Denys Vlasenko1e660422017-07-17 21:10:50 +02002186 }
2187#endif
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002188 if (flags & SETFLAG_EXPORT)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002189 cur->flg_export = 1;
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002190 if (name_len == 4 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
2191 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002192 if (cur->flg_export) {
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002193 if (flags & SETFLAG_UNEXPORT) {
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002194 cur->flg_export = 0;
2195 /* unsetenv was already done */
2196 } else {
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002197 int i;
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002198 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002199 i = putenv(cur->varstr);
2200 /* only now we can free old exported malloced string */
2201 free(free_me);
2202 return i;
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002203 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002204 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002205 free(free_me);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002206 return 0;
2207}
2208
Denys Vlasenko6db47842009-09-05 20:15:17 +02002209/* Used at startup and after each cd */
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002210static void set_pwd_var(unsigned flag)
Denys Vlasenko6db47842009-09-05 20:15:17 +02002211{
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002212 set_local_var(xasprintf("PWD=%s", get_cwd(/*force:*/ 1)), flag);
Denys Vlasenko6db47842009-09-05 20:15:17 +02002213}
2214
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002215static int unset_local_var_len(const char *name, int name_len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002216{
2217 struct variable *cur;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002218 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002219
2220 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00002221 return EXIT_SUCCESS;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002222 var_pp = &G.top_var;
2223 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002224 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
2225 if (cur->flg_read_only) {
2226 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00002227 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002228 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002229 *var_pp = cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002230 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
2231 bb_unsetenv(cur->varstr);
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002232 if (name_len == 3 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
2233 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002234 if (!cur->max_len)
2235 free(cur->varstr);
2236 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00002237 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002238 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002239 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002240 }
Mike Frysingerd690f682009-03-30 06:50:54 +00002241 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002242}
2243
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01002244#if ENABLE_HUSH_UNSET
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002245static int unset_local_var(const char *name)
2246{
2247 return unset_local_var_len(name, strlen(name));
2248}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01002249#endif
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002250
2251static void unset_vars(char **strings)
2252{
2253 char **v;
2254
2255 if (!strings)
2256 return;
2257 v = strings;
2258 while (*v) {
2259 const char *eq = strchrnul(*v, '=');
2260 unset_local_var_len(*v, (int)(eq - *v));
2261 v++;
2262 }
2263 free(strings);
2264}
2265
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01002266#if BASH_HOSTNAME_VAR || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_READ
Denys Vlasenko03dad222010-01-12 23:29:57 +01002267static void FAST_FUNC set_local_var_from_halves(const char *name, const char *val)
Mike Frysinger98c52642009-04-02 10:02:37 +00002268{
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002269 char *var = xasprintf("%s=%s", name, val);
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002270 set_local_var(var, /*flag:*/ 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00002271}
Denys Vlasenkocc2fd5a2017-01-09 06:19:55 +01002272#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002273
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002274
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002275/*
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002276 * Helpers for "var1=val1 var2=val2 cmd" feature
2277 */
2278static void add_vars(struct variable *var)
2279{
2280 struct variable *next;
2281
2282 while (var) {
2283 next = var->next;
2284 var->next = G.top_var;
2285 G.top_var = var;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002286 if (var->flg_export) {
2287 debug_printf_env("%s: restoring exported '%s'\n", __func__, var->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002288 putenv(var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002289 } else {
Denys Vlasenko295fef82009-06-03 12:47:26 +02002290 debug_printf_env("%s: restoring variable '%s'\n", __func__, var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002291 }
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002292 var = next;
2293 }
2294}
2295
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002296static struct variable *set_vars_and_save_old(char **strings)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002297{
2298 char **s;
2299 struct variable *old = NULL;
2300
2301 if (!strings)
2302 return old;
2303 s = strings;
2304 while (*s) {
2305 struct variable *var_p;
2306 struct variable **var_pp;
2307 char *eq;
2308
2309 eq = strchr(*s, '=');
2310 if (eq) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002311 var_pp = get_ptr_to_local_var(*s, eq - *s);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002312 if (var_pp) {
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002313 var_p = *var_pp;
Denys Vlasenko5b2cc0a2017-07-18 02:44:06 +02002314 if (var_p->flg_read_only) {
Denys Vlasenkocf511092017-07-18 15:58:02 +02002315 char **p;
Denys Vlasenko5b2cc0a2017-07-18 02:44:06 +02002316 bb_error_msg("%s: readonly variable", *s);
Denys Vlasenkocf511092017-07-18 15:58:02 +02002317 /*
2318 * "VAR=V BLTIN" unsets VARs after BLTIN completes.
2319 * If VAR is readonly, leaving it in the list
2320 * after asssignment error (msg above)
2321 * causes doubled error message later, on unset.
2322 */
2323 debug_printf_env("removing/freeing '%s' element\n", *s);
2324 free(*s);
2325 p = s;
2326 do { *p = p[1]; p++; } while (*p);
Denys Vlasenko5b2cc0a2017-07-18 02:44:06 +02002327 goto next;
2328 }
2329 /* Remove variable from global linked list */
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002330 debug_printf_env("%s: removing '%s'\n", __func__, var_p->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002331 *var_pp = var_p->next;
2332 /* Add it to returned list */
2333 var_p->next = old;
2334 old = var_p;
2335 }
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002336 set_local_var(*s, SETFLAG_EXPORT);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002337 }
Denys Vlasenko5b2cc0a2017-07-18 02:44:06 +02002338 next:
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002339 s++;
2340 }
2341 return old;
2342}
2343
2344
2345/*
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002346 * Unicode helper
2347 */
2348static void reinit_unicode_for_hush(void)
2349{
2350 /* Unicode support should be activated even if LANG is set
2351 * _during_ shell execution, not only if it was set when
2352 * shell was started. Therefore, re-check LANG every time:
2353 */
Denys Vlasenko841f8332014-08-13 10:09:49 +02002354 if (ENABLE_FEATURE_CHECK_UNICODE_IN_ENV
2355 || ENABLE_UNICODE_USING_LOCALE
2356 ) {
2357 const char *s = get_local_var_value("LC_ALL");
2358 if (!s) s = get_local_var_value("LC_CTYPE");
2359 if (!s) s = get_local_var_value("LANG");
2360 reinit_unicode(s);
2361 }
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002362}
2363
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002364/*
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002365 * in_str support (strings, and "strings" read from files).
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002366 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002367
2368#if ENABLE_HUSH_INTERACTIVE
Denys Vlasenko4074d492016-09-30 01:49:53 +02002369/* To test correct lineedit/interactive behavior, type from command line:
2370 * echo $P\
2371 * \
2372 * AT\
2373 * H\
2374 * \
Denys Vlasenko10ad6222017-04-17 16:13:32 +02002375 * It exercises a lot of corner cases.
Denys Vlasenko4074d492016-09-30 01:49:53 +02002376 */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002377static void cmdedit_update_prompt(void)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002378{
Mike Frysingerec2c6552009-03-28 12:24:44 +00002379 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002380 G.PS1 = get_local_var_value("PS1");
Mike Frysingerec2c6552009-03-28 12:24:44 +00002381 if (G.PS1 == NULL)
2382 G.PS1 = "\\w \\$ ";
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002383 G.PS2 = get_local_var_value("PS2");
Denys Vlasenko690ad242009-04-30 21:24:24 +02002384 } else {
Mike Frysingerec2c6552009-03-28 12:24:44 +00002385 G.PS1 = NULL;
Denys Vlasenko690ad242009-04-30 21:24:24 +02002386 }
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002387 if (G.PS2 == NULL)
2388 G.PS2 = "> ";
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002389}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002390static const char *setup_prompt_string(int promptmode)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002391{
2392 const char *prompt_str;
2393 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00002394 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
2395 /* Set up the prompt */
2396 if (promptmode == 0) { /* PS1 */
2397 free((char*)G.PS1);
Denys Vlasenko6db47842009-09-05 20:15:17 +02002398 /* bash uses $PWD value, even if it is set by user.
2399 * It uses current dir only if PWD is unset.
2400 * We always use current dir. */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002401 G.PS1 = xasprintf("%s %c ", get_cwd(0), (geteuid() != 0) ? '$' : '#');
Mike Frysingerec2c6552009-03-28 12:24:44 +00002402 prompt_str = G.PS1;
2403 } else
2404 prompt_str = G.PS2;
2405 } else
2406 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denys Vlasenko4074d492016-09-30 01:49:53 +02002407 debug_printf("prompt_str '%s'\n", prompt_str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002408 return prompt_str;
2409}
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002410static int get_user_input(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002411{
2412 int r;
2413 const char *prompt_str;
2414
2415 prompt_str = setup_prompt_string(i->promptmode);
Denys Vlasenko8391c482010-05-22 17:50:43 +02002416# if ENABLE_FEATURE_EDITING
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002417 for (;;) {
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002418 reinit_unicode_for_hush();
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002419 if (G.flag_SIGINT) {
2420 /* There was ^C'ed, make it look prettier: */
2421 bb_putchar('\n');
2422 G.flag_SIGINT = 0;
2423 }
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00002424 /* buglet: SIGINT will not make new prompt to appear _at once_,
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002425 * only after <Enter>. (^C works immediately) */
Denys Vlasenko0448c552016-09-29 20:25:44 +02002426 r = read_line_input(G.line_input_state, prompt_str,
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002427 G.user_input_buf, CONFIG_FEATURE_EDITING_MAX_LEN-1
Denys Vlasenko0448c552016-09-29 20:25:44 +02002428 );
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002429 /* read_line_input intercepts ^C, "convert" it to SIGINT */
Denys Vlasenkodd4b4462017-08-02 16:52:12 +02002430 if (r == 0)
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002431 raise(SIGINT);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002432 check_and_run_traps();
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002433 if (r != 0 && !G.flag_SIGINT)
2434 break;
2435 /* ^C or SIGINT: repeat */
Denys Vlasenkodd4b4462017-08-02 16:52:12 +02002436 /* bash prints ^C even on real SIGINT (non-kbd generated) */
2437 write(STDOUT_FILENO, "^C", 2);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002438 G.last_exitcode = 128 + SIGINT;
2439 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002440 if (r < 0) {
2441 /* EOF/error detected */
Denys Vlasenko4074d492016-09-30 01:49:53 +02002442 i->p = NULL;
2443 i->peek_buf[0] = r = EOF;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002444 return r;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002445 }
Denys Vlasenko4074d492016-09-30 01:49:53 +02002446 i->p = G.user_input_buf;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002447 return (unsigned char)*i->p++;
Denys Vlasenko8391c482010-05-22 17:50:43 +02002448# else
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002449 for (;;) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00002450 G.flag_SIGINT = 0;
Denys Vlasenkob8709032011-05-08 21:20:01 +02002451 if (i->last_char == '\0' || i->last_char == '\n') {
2452 /* Why check_and_run_traps here? Try this interactively:
2453 * $ trap 'echo INT' INT; (sleep 2; kill -INT $$) &
2454 * $ <[enter], repeatedly...>
2455 * Without check_and_run_traps, handler never runs.
2456 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002457 check_and_run_traps();
Denys Vlasenkob8709032011-05-08 21:20:01 +02002458 fputs(prompt_str, stdout);
2459 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002460 fflush_all();
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002461//FIXME: here ^C or SIGINT will have effect only after <Enter>
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002462 r = fgetc(i->file);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002463 /* In !ENABLE_FEATURE_EDITING we don't use read_line_input,
2464 * no ^C masking happens during fgetc, no special code for ^C:
2465 * it generates SIGINT as usual.
2466 */
2467 check_and_run_traps();
2468 if (G.flag_SIGINT)
2469 G.last_exitcode = 128 + SIGINT;
2470 if (r != '\0')
2471 break;
2472 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002473 return r;
Denys Vlasenko8391c482010-05-22 17:50:43 +02002474# endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002475}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002476/* This is the magic location that prints prompts
2477 * and gets data back from the user */
Denys Vlasenko4074d492016-09-30 01:49:53 +02002478static int fgetc_interactive(struct in_str *i)
2479{
2480 int ch;
2481 /* If it's interactive stdin, get new line. */
2482 if (G_interactive_fd && i->file == stdin) {
2483 /* Returns first char (or EOF), the rest is in i->p[] */
2484 ch = get_user_input(i);
2485 i->promptmode = 1; /* PS2 */
2486 } else {
2487 /* Not stdin: script file, sourced file, etc */
2488 do ch = fgetc(i->file); while (ch == '\0');
2489 }
2490 return ch;
2491}
2492#else
2493static inline int fgetc_interactive(struct in_str *i)
2494{
2495 int ch;
2496 do ch = fgetc(i->file); while (ch == '\0');
2497 return ch;
2498}
2499#endif /* INTERACTIVE */
2500
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002501static int i_getch(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002502{
2503 int ch;
2504
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002505 if (!i->file) {
2506 /* string-based in_str */
2507 ch = (unsigned char)*i->p;
2508 if (ch != '\0') {
2509 i->p++;
2510 i->last_char = ch;
2511 return ch;
2512 }
2513 return EOF;
2514 }
2515
2516 /* FILE-based in_str */
2517
Denys Vlasenko4074d492016-09-30 01:49:53 +02002518#if ENABLE_FEATURE_EDITING
2519 /* This can be stdin, check line editing char[] buffer */
2520 if (i->p && *i->p != '\0') {
2521 ch = (unsigned char)*i->p++;
2522 goto out;
2523 }
2524#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002525 /* peek_buf[] is an int array, not char. Can contain EOF. */
2526 ch = i->peek_buf[0];
Denys Vlasenko4074d492016-09-30 01:49:53 +02002527 if (ch != 0) {
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002528 int ch2 = i->peek_buf[1];
2529 i->peek_buf[0] = ch2;
2530 if (ch2 == 0) /* very likely, avoid redundant write */
2531 goto out;
2532 i->peek_buf[1] = 0;
2533 goto out;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002534 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002535
Denys Vlasenko4074d492016-09-30 01:49:53 +02002536 ch = fgetc_interactive(i);
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002537 out:
Denis Vlasenko913a2012009-04-05 22:17:04 +00002538 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02002539 i->last_char = ch;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002540 return ch;
2541}
2542
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002543static int i_peek(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002544{
2545 int ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002546
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002547 if (!i->file) {
2548 /* string-based in_str */
2549 /* Doesn't report EOF on NUL. None of the callers care. */
2550 return (unsigned char)*i->p;
2551 }
2552
2553 /* FILE-based in_str */
2554
Denys Vlasenko4074d492016-09-30 01:49:53 +02002555#if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002556 /* This can be stdin, check line editing char[] buffer */
2557 if (i->p && *i->p != '\0')
2558 return (unsigned char)*i->p;
2559#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002560 /* peek_buf[] is an int array, not char. Can contain EOF. */
2561 ch = i->peek_buf[0];
Denys Vlasenko4074d492016-09-30 01:49:53 +02002562 if (ch != 0)
2563 return ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002564
Denys Vlasenko4074d492016-09-30 01:49:53 +02002565 /* Need to get a new char */
2566 ch = fgetc_interactive(i);
2567 debug_printf("file_peek: got '%c' %d\n", ch, ch);
2568
2569 /* Save it by either rolling back line editing buffer, or in i->peek_buf[0] */
2570#if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE
2571 if (i->p) {
2572 i->p -= 1;
2573 return ch;
2574 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002575#endif
Denys Vlasenko4074d492016-09-30 01:49:53 +02002576 i->peek_buf[0] = ch;
2577 /*i->peek_buf[1] = 0; - already is */
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002578 return ch;
2579}
2580
Denys Vlasenko4074d492016-09-30 01:49:53 +02002581/* Only ever called if i_peek() was called, and did not return EOF.
2582 * IOW: we know the previous peek saw an ordinary char, not EOF, not NUL,
2583 * not end-of-line. Therefore we never need to read a new editing line here.
2584 */
2585static int i_peek2(struct in_str *i)
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002586{
Denys Vlasenko4074d492016-09-30 01:49:53 +02002587 int ch;
2588
2589 /* There are two cases when i->p[] buffer exists.
2590 * (1) it's a string in_str.
Denys Vlasenko08755f92016-09-30 02:02:25 +02002591 * (2) It's a file, and we have a saved line editing buffer.
Denys Vlasenko4074d492016-09-30 01:49:53 +02002592 * In both cases, we know that i->p[0] exists and not NUL, and
2593 * the peek2 result is in i->p[1].
2594 */
2595 if (i->p)
2596 return (unsigned char)i->p[1];
2597
2598 /* Now we know it is a file-based in_str. */
2599
2600 /* peek_buf[] is an int array, not char. Can contain EOF. */
2601 /* Is there 2nd char? */
2602 ch = i->peek_buf[1];
2603 if (ch == 0) {
2604 /* We did not read it yet, get it now */
2605 do ch = fgetc(i->file); while (ch == '\0');
2606 i->peek_buf[1] = ch;
2607 }
2608
2609 debug_printf("file_peek2: got '%c' %d\n", ch, ch);
2610 return ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002611}
2612
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002613static void setup_file_in_str(struct in_str *i, FILE *f)
2614{
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002615 memset(i, 0, sizeof(*i));
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002616 /* i->promptmode = 0; - PS1 (memset did it) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002617 i->file = f;
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002618 /* i->p = NULL; */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002619}
2620
2621static void setup_string_in_str(struct in_str *i, const char *s)
2622{
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002623 memset(i, 0, sizeof(*i));
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002624 /* i->promptmode = 0; - PS1 (memset did it) */
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002625 /*i->file = NULL */;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002626 i->p = s;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002627}
2628
2629
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002630/*
2631 * o_string support
2632 */
2633#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00002634
Denis Vlasenko0b677d82009-04-10 13:49:10 +00002635static void o_reset_to_empty_unquoted(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00002636{
2637 o->length = 0;
Denys Vlasenko38292b62010-09-05 14:49:40 +02002638 o->has_quoted_part = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002639 if (o->data)
2640 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002641}
2642
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002643static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00002644{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00002645 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002646 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00002647}
2648
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002649static ALWAYS_INLINE void o_free_unsafe(o_string *o)
2650{
2651 free(o->data);
2652}
2653
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002654static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002655{
2656 if (o->length + len > o->maxlen) {
Denys Vlasenko46e64982016-09-29 19:50:55 +02002657 o->maxlen += (2 * len) | (B_CHUNK-1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002658 o->data = xrealloc(o->data, 1 + o->maxlen);
2659 }
2660}
2661
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002662static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002663{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002664 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
Denys Vlasenko46e64982016-09-29 19:50:55 +02002665 if (o->length < o->maxlen) {
2666 /* likely. avoid o_grow_by() call */
2667 add:
2668 o->data[o->length] = ch;
2669 o->length++;
2670 o->data[o->length] = '\0';
2671 return;
2672 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002673 o_grow_by(o, 1);
Denys Vlasenko46e64982016-09-29 19:50:55 +02002674 goto add;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002675}
2676
Denys Vlasenko657086a2016-09-29 18:07:42 +02002677#if 0
2678/* Valid only if we know o_string is not empty */
2679static void o_delchr(o_string *o)
2680{
2681 o->length--;
2682 o->data[o->length] = '\0';
2683}
2684#endif
2685
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002686static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002687{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002688 o_grow_by(o, len);
Denys Vlasenko0675b032017-07-24 02:17:05 +02002689 ((char*)mempcpy(&o->data[o->length], str, len))[0] = '\0';
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002690 o->length += len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002691}
2692
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002693static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00002694{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002695 o_addblock(o, str, strlen(str));
2696}
Denys Vlasenko2e48d532010-05-22 17:30:39 +02002697
Denys Vlasenko1e811b12010-05-22 03:12:29 +02002698#if !BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002699static void nommu_addchr(o_string *o, int ch)
2700{
2701 if (o)
2702 o_addchr(o, ch);
2703}
2704#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002705# define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002706#endif
2707
2708static void o_addstr_with_NUL(o_string *o, const char *str)
2709{
2710 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00002711}
2712
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002713/*
Denys Vlasenko238081f2010-10-03 14:26:26 +02002714 * HUSH_BRACE_EXPANSION code needs corresponding quoting on variable expansion side.
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002715 * Currently, "v='{q,w}'; echo $v" erroneously expands braces in $v.
2716 * Apparently, on unquoted $v bash still does globbing
2717 * ("v='*.txt'; echo $v" prints all .txt files),
2718 * but NOT brace expansion! Thus, there should be TWO independent
2719 * quoting mechanisms on $v expansion side: one protects
2720 * $v from brace expansion, and other additionally protects "$v" against globbing.
2721 * We have only second one.
2722 */
2723
Denys Vlasenko9e800222010-10-03 14:28:04 +02002724#if ENABLE_HUSH_BRACE_EXPANSION
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002725# define MAYBE_BRACES "{}"
2726#else
2727# define MAYBE_BRACES ""
2728#endif
2729
Eric Andersen25f27032001-04-26 23:22:31 +00002730/* My analysis of quoting semantics tells me that state information
2731 * is associated with a destination, not a source.
2732 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002733static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00002734{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002735 int sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002736 char *found = strchr("*?[\\" MAYBE_BRACES, ch);
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002737 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002738 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002739 o_grow_by(o, sz);
2740 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002741 o->data[o->length] = '\\';
2742 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00002743 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002744 o->data[o->length] = ch;
2745 o->length++;
2746 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002747}
2748
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002749static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002750{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002751 int sz = 1;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002752 if ((o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)
2753 && strchr("*?[\\" MAYBE_BRACES, ch)
2754 ) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002755 sz++;
2756 o->data[o->length] = '\\';
2757 o->length++;
2758 }
2759 o_grow_by(o, sz);
2760 o->data[o->length] = ch;
2761 o->length++;
2762 o->data[o->length] = '\0';
2763}
2764
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002765static void o_addqblock(o_string *o, const char *str, int len)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002766{
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002767 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002768 char ch;
2769 int sz;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002770 int ordinary_cnt = strcspn(str, "*?[\\" MAYBE_BRACES);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002771 if (ordinary_cnt > len) /* paranoia */
2772 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002773 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002774 if (ordinary_cnt == len)
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002775 return; /* NUL is already added by o_addblock */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002776 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002777 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002778
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002779 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002780 sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002781 if (ch) { /* it is necessarily one of "*?[\\" MAYBE_BRACES */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002782 sz++;
2783 o->data[o->length] = '\\';
2784 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002785 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002786 o_grow_by(o, sz);
2787 o->data[o->length] = ch;
2788 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002789 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002790 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002791}
2792
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002793static void o_addQblock(o_string *o, const char *str, int len)
2794{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002795 if (!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002796 o_addblock(o, str, len);
2797 return;
2798 }
2799 o_addqblock(o, str, len);
2800}
2801
Denys Vlasenko38292b62010-09-05 14:49:40 +02002802static void o_addQstr(o_string *o, const char *str)
2803{
2804 o_addQblock(o, str, strlen(str));
2805}
2806
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002807/* A special kind of o_string for $VAR and `cmd` expansion.
2808 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002809 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002810 * list[i] contains an INDEX (int!) into this string data.
2811 * It means that if list[] needs to grow, data needs to be moved higher up
2812 * but list[i]'s need not be modified.
2813 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002814 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002815 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
2816 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002817#if DEBUG_EXPAND || DEBUG_GLOB
2818static void debug_print_list(const char *prefix, o_string *o, int n)
2819{
2820 char **list = (char**)o->data;
2821 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2822 int i = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002823
2824 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002825 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 +02002826 prefix, list, n, string_start, o->length, o->maxlen,
2827 !!(o->o_expflags & EXP_FLAG_GLOB),
2828 o->has_quoted_part,
2829 !!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002830 while (i < n) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002831 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002832 fdprintf(2, " list[%d]=%d '%s' %p\n", i, (int)(uintptr_t)list[i],
2833 o->data + (int)(uintptr_t)list[i] + string_start,
2834 o->data + (int)(uintptr_t)list[i] + string_start);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002835 i++;
2836 }
2837 if (n) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002838 const char *p = o->data + (int)(uintptr_t)list[n - 1] + string_start;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002839 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002840 fdprintf(2, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002841 }
2842}
2843#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002844# define debug_print_list(prefix, o, n) ((void)0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002845#endif
2846
2847/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
2848 * in list[n] so that it points past last stored byte so far.
2849 * It returns n+1. */
2850static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002851{
2852 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00002853 int string_start;
2854 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002855
2856 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00002857 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2858 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002859 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002860 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002861 /* list[n] points to string_start, make space for 16 more pointers */
2862 o->maxlen += 0x10 * sizeof(list[0]);
2863 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00002864 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002865 memmove(list + n + 0x10, list + n, string_len);
2866 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002867 } else {
2868 debug_printf_list("list[%d]=%d string_start=%d\n",
2869 n, string_len, string_start);
2870 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002871 } else {
2872 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00002873 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
2874 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002875 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
2876 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002877 o->has_empty_slot = 0;
2878 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002879 o->has_quoted_part = 0;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002880 list[n] = (char*)(uintptr_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002881 return n + 1;
2882}
2883
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002884/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002885static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002886{
2887 char **list = (char**)o->data;
2888 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2889
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002890 return ((int)(uintptr_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002891}
2892
Denys Vlasenko9e800222010-10-03 14:28:04 +02002893#if ENABLE_HUSH_BRACE_EXPANSION
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002894/* There in a GNU extension, GLOB_BRACE, but it is not usable:
2895 * first, it processes even {a} (no commas), second,
2896 * I didn't manage to make it return strings when they don't match
Denys Vlasenko160746b2009-11-16 05:51:18 +01002897 * existing files. Need to re-implement it.
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002898 */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002899
2900/* Helper */
2901static int glob_needed(const char *s)
2902{
2903 while (*s) {
2904 if (*s == '\\') {
2905 if (!s[1])
2906 return 0;
2907 s += 2;
2908 continue;
2909 }
2910 if (*s == '*' || *s == '[' || *s == '?' || *s == '{')
2911 return 1;
2912 s++;
2913 }
2914 return 0;
2915}
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002916/* Return pointer to next closing brace or to comma */
2917static const char *next_brace_sub(const char *cp)
2918{
2919 unsigned depth = 0;
2920 cp++;
2921 while (*cp != '\0') {
2922 if (*cp == '\\') {
2923 if (*++cp == '\0')
2924 break;
2925 cp++;
2926 continue;
Denys Vlasenko3581c622010-01-25 13:39:24 +01002927 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002928 if ((*cp == '}' && depth-- == 0) || (*cp == ',' && depth == 0))
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002929 break;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002930 if (*cp++ == '{')
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002931 depth++;
2932 }
2933
2934 return *cp != '\0' ? cp : NULL;
2935}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002936/* Recursive brace globber. Note: may garble pattern[]. */
2937static int glob_brace(char *pattern, o_string *o, int n)
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002938{
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002939 char *new_pattern_buf;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002940 const char *begin;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002941 const char *next;
2942 const char *rest;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002943 const char *p;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002944 size_t rest_len;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002945
2946 debug_printf_glob("glob_brace('%s')\n", pattern);
2947
2948 begin = pattern;
2949 while (1) {
2950 if (*begin == '\0')
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002951 goto simple_glob;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002952 if (*begin == '{') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002953 /* Find the first sub-pattern and at the same time
2954 * find the rest after the closing brace */
2955 next = next_brace_sub(begin);
2956 if (next == NULL) {
2957 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002958 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002959 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002960 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002961 /* "{abc}" with no commas - illegal
2962 * brace expr, disregard and skip it */
2963 begin = next + 1;
2964 continue;
2965 }
2966 break;
2967 }
2968 if (*begin == '\\' && begin[1] != '\0')
2969 begin++;
2970 begin++;
2971 }
2972 debug_printf_glob("begin:%s\n", begin);
2973 debug_printf_glob("next:%s\n", next);
2974
2975 /* Now find the end of the whole brace expression */
2976 rest = next;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002977 while (*rest != '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002978 rest = next_brace_sub(rest);
2979 if (rest == NULL) {
2980 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002981 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002982 }
2983 debug_printf_glob("rest:%s\n", rest);
2984 }
2985 rest_len = strlen(++rest) + 1;
2986
2987 /* We are sure the brace expression is well-formed */
2988
2989 /* Allocate working buffer large enough for our work */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002990 new_pattern_buf = xmalloc(strlen(pattern));
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002991
2992 /* We have a brace expression. BEGIN points to the opening {,
2993 * NEXT points past the terminator of the first element, and REST
2994 * points past the final }. We will accumulate result names from
2995 * recursive runs for each brace alternative in the buffer using
2996 * GLOB_APPEND. */
2997
2998 p = begin + 1;
2999 while (1) {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003000 /* Construct the new glob expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003001 memcpy(
3002 mempcpy(
3003 mempcpy(new_pattern_buf,
3004 /* We know the prefix for all sub-patterns */
3005 pattern, begin - pattern),
3006 p, next - p),
3007 rest, rest_len);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003008
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003009 /* Note: glob_brace() may garble new_pattern_buf[].
3010 * That's why we re-copy prefix every time (1st memcpy above).
3011 */
3012 n = glob_brace(new_pattern_buf, o, n);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02003013 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003014 /* We saw the last entry */
3015 break;
3016 }
3017 p = next + 1;
3018 next = next_brace_sub(next);
3019 }
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003020 free(new_pattern_buf);
3021 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003022
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003023 simple_glob:
3024 {
3025 int gr;
3026 glob_t globdata;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003027
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003028 memset(&globdata, 0, sizeof(globdata));
3029 gr = glob(pattern, 0, NULL, &globdata);
3030 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
3031 if (gr != 0) {
3032 if (gr == GLOB_NOMATCH) {
3033 globfree(&globdata);
3034 /* NB: garbles parameter */
3035 unbackslash(pattern);
3036 o_addstr_with_NUL(o, pattern);
3037 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
3038 return o_save_ptr_helper(o, n);
3039 }
3040 if (gr == GLOB_NOSPACE)
3041 bb_error_msg_and_die(bb_msg_memory_exhausted);
3042 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
3043 * but we didn't specify it. Paranoia again. */
3044 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
3045 }
3046 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
3047 char **argv = globdata.gl_pathv;
3048 while (1) {
3049 o_addstr_with_NUL(o, *argv);
3050 n = o_save_ptr_helper(o, n);
3051 argv++;
3052 if (!*argv)
3053 break;
3054 }
3055 }
3056 globfree(&globdata);
3057 }
3058 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003059}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003060/* Performs globbing on last list[],
3061 * saving each result as a new list[].
3062 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003063static int perform_glob(o_string *o, int n)
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003064{
3065 char *pattern, *copy;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003066
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003067 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003068 if (!o->data)
3069 return o_save_ptr_helper(o, n);
3070 pattern = o->data + o_get_last_ptr(o, n);
3071 debug_printf_glob("glob pattern '%s'\n", pattern);
3072 if (!glob_needed(pattern)) {
3073 /* unbackslash last string in o in place, fix length */
3074 o->length = unbackslash(pattern) - o->data;
3075 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
3076 return o_save_ptr_helper(o, n);
3077 }
3078
3079 copy = xstrdup(pattern);
3080 /* "forget" pattern in o */
3081 o->length = pattern - o->data;
3082 n = glob_brace(copy, o, n);
3083 free(copy);
3084 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003085 debug_print_list("perform_glob returning", o, n);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003086 return n;
3087}
3088
Denys Vlasenko238081f2010-10-03 14:26:26 +02003089#else /* !HUSH_BRACE_EXPANSION */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003090
3091/* Helper */
3092static int glob_needed(const char *s)
3093{
3094 while (*s) {
3095 if (*s == '\\') {
3096 if (!s[1])
3097 return 0;
3098 s += 2;
3099 continue;
3100 }
3101 if (*s == '*' || *s == '[' || *s == '?')
3102 return 1;
3103 s++;
3104 }
3105 return 0;
3106}
3107/* Performs globbing on last list[],
3108 * saving each result as a new list[].
3109 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003110static int perform_glob(o_string *o, int n)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003111{
3112 glob_t globdata;
3113 int gr;
3114 char *pattern;
3115
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003116 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003117 if (!o->data)
3118 return o_save_ptr_helper(o, n);
3119 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003120 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003121 if (!glob_needed(pattern)) {
3122 literal:
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003123 /* unbackslash last string in o in place, fix length */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003124 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003125 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003126 return o_save_ptr_helper(o, n);
3127 }
3128
3129 memset(&globdata, 0, sizeof(globdata));
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003130 /* Can't use GLOB_NOCHECK: it does not unescape the string.
3131 * If we glob "*.\*" and don't find anything, we need
3132 * to fall back to using literal "*.*", but GLOB_NOCHECK
3133 * will return "*.\*"!
3134 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003135 gr = glob(pattern, 0, NULL, &globdata);
3136 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003137 if (gr != 0) {
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003138 if (gr == GLOB_NOMATCH) {
3139 globfree(&globdata);
3140 goto literal;
3141 }
3142 if (gr == GLOB_NOSPACE)
3143 bb_error_msg_and_die(bb_msg_memory_exhausted);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003144 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
3145 * but we didn't specify it. Paranoia again. */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003146 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003147 }
3148 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
3149 char **argv = globdata.gl_pathv;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003150 /* "forget" pattern in o */
3151 o->length = pattern - o->data;
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003152 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003153 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003154 n = o_save_ptr_helper(o, n);
3155 argv++;
3156 if (!*argv)
3157 break;
3158 }
3159 }
3160 globfree(&globdata);
3161 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003162 debug_print_list("perform_glob returning", o, n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003163 return n;
3164}
3165
Denys Vlasenko238081f2010-10-03 14:26:26 +02003166#endif /* !HUSH_BRACE_EXPANSION */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003167
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02003168/* If o->o_expflags & EXP_FLAG_GLOB, glob the string so far remembered.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003169 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003170static int o_save_ptr(o_string *o, int n)
3171{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02003172 if (o->o_expflags & EXP_FLAG_GLOB) {
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00003173 /* If o->has_empty_slot, list[n] was already globbed
3174 * (if it was requested back then when it was filled)
3175 * so don't do that again! */
3176 if (!o->has_empty_slot)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003177 return perform_glob(o, n); /* o_save_ptr_helper is inside */
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00003178 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003179 return o_save_ptr_helper(o, n);
3180}
3181
3182/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003183static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003184{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003185 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003186 int string_start;
3187
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003188 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
3189 if (DEBUG_EXPAND)
3190 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003191 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003192 list = (char**)o->data;
3193 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
3194 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003195 while (n) {
3196 n--;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003197 list[n] = o->data + (int)(uintptr_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003198 }
3199 return list;
3200}
3201
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003202static void free_pipe_list(struct pipe *pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003203
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003204/* Returns pi->next - next pipe in the list */
3205static struct pipe *free_pipe(struct pipe *pi)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003206{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003207 struct pipe *next;
3208 int i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003209
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003210 debug_printf_clean("free_pipe (pid %d)\n", getpid());
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003211 for (i = 0; i < pi->num_cmds; i++) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003212 struct command *command;
3213 struct redir_struct *r, *rnext;
3214
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003215 command = &pi->cmds[i];
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003216 debug_printf_clean(" command %d:\n", i);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003217 if (command->argv) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003218 if (DEBUG_CLEAN) {
3219 int a;
3220 char **p;
3221 for (a = 0, p = command->argv; *p; a++, p++) {
3222 debug_printf_clean(" argv[%d] = %s\n", a, *p);
3223 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003224 }
3225 free_strings(command->argv);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003226 //command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003227 }
3228 /* not "else if": on syntax error, we may have both! */
3229 if (command->group) {
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003230 debug_printf_clean(" begin group (cmd_type:%d)\n",
3231 command->cmd_type);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003232 free_pipe_list(command->group);
3233 debug_printf_clean(" end group\n");
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003234 //command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003235 }
Denis Vlasenkoed055212009-04-11 10:37:10 +00003236 /* else is crucial here.
3237 * If group != NULL, child_func is meaningless */
3238#if ENABLE_HUSH_FUNCTIONS
3239 else if (command->child_func) {
3240 debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
3241 command->child_func->parent_cmd = NULL;
3242 }
3243#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003244#if !BB_MMU
3245 free(command->group_as_string);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003246 //command->group_as_string = NULL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003247#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003248 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003249 debug_printf_clean(" redirect %d%s",
3250 r->rd_fd, redir_table[r->rd_type].descrip);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003251 /* guard against the case >$FOO, where foo is unset or blank */
3252 if (r->rd_filename) {
3253 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
3254 free(r->rd_filename);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003255 //r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003256 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003257 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003258 rnext = r->next;
3259 free(r);
3260 }
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003261 //command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003262 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003263 free(pi->cmds); /* children are an array, they get freed all at once */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003264 //pi->cmds = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003265#if ENABLE_HUSH_JOB
3266 free(pi->cmdtext);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003267 //pi->cmdtext = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003268#endif
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003269
3270 next = pi->next;
3271 free(pi);
3272 return next;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003273}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003274
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003275static void free_pipe_list(struct pipe *pi)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003276{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003277 while (pi) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003278#if HAS_KEYWORDS
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003279 debug_printf_clean("pipe reserved word %d\n", pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003280#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003281 debug_printf_clean("pipe followup code %d\n", pi->followup);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003282 pi = free_pipe(pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003283 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003284}
3285
3286
Denys Vlasenkob36abf22010-09-05 14:50:59 +02003287/*** Parsing routines ***/
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003288
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003289#ifndef debug_print_tree
3290static void debug_print_tree(struct pipe *pi, int lvl)
3291{
3292 static const char *const PIPE[] = {
3293 [PIPE_SEQ] = "SEQ",
3294 [PIPE_AND] = "AND",
3295 [PIPE_OR ] = "OR" ,
3296 [PIPE_BG ] = "BG" ,
3297 };
3298 static const char *RES[] = {
3299 [RES_NONE ] = "NONE" ,
3300# if ENABLE_HUSH_IF
3301 [RES_IF ] = "IF" ,
3302 [RES_THEN ] = "THEN" ,
3303 [RES_ELIF ] = "ELIF" ,
3304 [RES_ELSE ] = "ELSE" ,
3305 [RES_FI ] = "FI" ,
3306# endif
3307# if ENABLE_HUSH_LOOPS
3308 [RES_FOR ] = "FOR" ,
3309 [RES_WHILE] = "WHILE",
3310 [RES_UNTIL] = "UNTIL",
3311 [RES_DO ] = "DO" ,
3312 [RES_DONE ] = "DONE" ,
3313# endif
3314# if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
3315 [RES_IN ] = "IN" ,
3316# endif
3317# if ENABLE_HUSH_CASE
3318 [RES_CASE ] = "CASE" ,
3319 [RES_CASE_IN ] = "CASE_IN" ,
3320 [RES_MATCH] = "MATCH",
3321 [RES_CASE_BODY] = "CASE_BODY",
3322 [RES_ESAC ] = "ESAC" ,
3323# endif
3324 [RES_XXXX ] = "XXXX" ,
3325 [RES_SNTX ] = "SNTX" ,
3326 };
3327 static const char *const CMDTYPE[] = {
3328 "{}",
3329 "()",
3330 "[noglob]",
3331# if ENABLE_HUSH_FUNCTIONS
3332 "func()",
3333# endif
3334 };
3335
3336 int pin, prn;
3337
3338 pin = 0;
3339 while (pi) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003340 fdprintf(2, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003341 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
3342 prn = 0;
3343 while (prn < pi->num_cmds) {
3344 struct command *command = &pi->cmds[prn];
3345 char **argv = command->argv;
3346
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003347 fdprintf(2, "%*s cmd %d assignment_cnt:%d",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003348 lvl*2, "", prn,
3349 command->assignment_cnt);
3350 if (command->group) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003351 fdprintf(2, " group %s: (argv=%p)%s%s\n",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003352 CMDTYPE[command->cmd_type],
3353 argv
3354# if !BB_MMU
3355 , " group_as_string:", command->group_as_string
3356# else
3357 , "", ""
3358# endif
3359 );
3360 debug_print_tree(command->group, lvl+1);
3361 prn++;
3362 continue;
3363 }
3364 if (argv) while (*argv) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003365 fdprintf(2, " '%s'", *argv);
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003366 argv++;
3367 }
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003368 fdprintf(2, "\n");
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003369 prn++;
3370 }
3371 pi = pi->next;
3372 pin++;
3373 }
3374}
3375#endif /* debug_print_tree */
3376
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00003377static struct pipe *new_pipe(void)
3378{
Eric Andersen25f27032001-04-26 23:22:31 +00003379 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003380 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003381 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00003382 return pi;
3383}
3384
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003385/* Command (member of a pipe) is complete, or we start a new pipe
3386 * if ctx->command is NULL.
3387 * No errors possible here.
3388 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003389static int done_command(struct parse_context *ctx)
3390{
3391 /* The command is really already in the pipe structure, so
3392 * advance the pipe counter and make a new, null command. */
3393 struct pipe *pi = ctx->pipe;
3394 struct command *command = ctx->command;
3395
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02003396#if 0 /* Instead we emit error message at run time */
3397 if (ctx->pending_redirect) {
3398 /* For example, "cmd >" (no filename to redirect to) */
Denys Vlasenko39701202017-08-02 19:44:05 +02003399 syntax_error("invalid redirect");
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02003400 ctx->pending_redirect = NULL;
3401 }
3402#endif
3403
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003404 if (command) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003405 if (IS_NULL_CMD(command)) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003406 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003407 goto clear_and_ret;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003408 }
3409 pi->num_cmds++;
3410 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003411 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003412 } else {
3413 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
3414 }
3415
3416 /* Only real trickiness here is that the uncommitted
3417 * command structure is not counted in pi->num_cmds. */
3418 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003419 ctx->command = command = &pi->cmds[pi->num_cmds];
3420 clear_and_ret:
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003421 memset(command, 0, sizeof(*command));
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003422 return pi->num_cmds; /* used only for 0/nonzero check */
3423}
3424
3425static void done_pipe(struct parse_context *ctx, pipe_style type)
3426{
3427 int not_null;
3428
3429 debug_printf_parse("done_pipe entered, followup %d\n", type);
3430 /* Close previous command */
3431 not_null = done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003432#if HAS_KEYWORDS
3433 ctx->pipe->pi_inverted = ctx->ctx_inverted;
3434 ctx->ctx_inverted = 0;
3435 ctx->pipe->res_word = ctx->ctx_res_w;
3436#endif
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02003437 if (type == PIPE_BG && ctx->list_head != ctx->pipe) {
3438 /* Necessary since && and || have precedence over &:
Denys Vlasenkoee553b92017-07-15 22:51:55 +02003439 * "cmd1 && cmd2 &" must spawn both cmds, not only cmd2,
3440 * in a backgrounded subshell.
3441 */
3442 struct pipe *pi;
3443 struct command *command;
3444
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02003445 /* Is this actually this construct, all pipes end with && or ||? */
Denys Vlasenkoee553b92017-07-15 22:51:55 +02003446 pi = ctx->list_head;
3447 while (pi != ctx->pipe) {
3448 if (pi->followup != PIPE_AND && pi->followup != PIPE_OR)
3449 goto no_conv;
3450 pi = pi->next;
3451 }
3452
3453 debug_printf_parse("BG with more than one pipe, converting to { p1 &&...pN; } &\n");
3454 pi->followup = PIPE_SEQ; /* close pN _not_ with "&"! */
3455 pi = xzalloc(sizeof(*pi));
3456 pi->followup = PIPE_BG;
3457 pi->num_cmds = 1;
3458 pi->cmds = xzalloc(sizeof(pi->cmds[0]));
3459 command = &pi->cmds[0];
3460 if (CMD_NORMAL != 0) /* "if xzalloc didn't do that already" */
3461 command->cmd_type = CMD_NORMAL;
3462 command->group = ctx->list_head;
3463#if !BB_MMU
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02003464 command->group_as_string = xstrndup(
3465 ctx->as_string.data,
3466 ctx->as_string.length - 1 /* do not copy last char, "&" */
3467 );
Denys Vlasenkoee553b92017-07-15 22:51:55 +02003468#endif
3469 /* Replace all pipes in ctx with one newly created */
3470 ctx->list_head = ctx->pipe = pi;
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02003471 } else {
3472 no_conv:
3473 ctx->pipe->followup = type;
Denys Vlasenkoee553b92017-07-15 22:51:55 +02003474 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003475
3476 /* Without this check, even just <enter> on command line generates
3477 * tree of three NOPs (!). Which is harmless but annoying.
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003478 * IOW: it is safe to do it unconditionally. */
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003479 if (not_null
Denis Vlasenko7f959372009-04-14 08:06:59 +00003480#if ENABLE_HUSH_IF
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003481 || ctx->ctx_res_w == RES_FI
Denis Vlasenko7f959372009-04-14 08:06:59 +00003482#endif
3483#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003484 || ctx->ctx_res_w == RES_DONE
3485 || ctx->ctx_res_w == RES_FOR
3486 || ctx->ctx_res_w == RES_IN
Denis Vlasenko7f959372009-04-14 08:06:59 +00003487#endif
3488#if ENABLE_HUSH_CASE
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003489 || ctx->ctx_res_w == RES_ESAC
3490#endif
3491 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003492 struct pipe *new_p;
3493 debug_printf_parse("done_pipe: adding new pipe: "
3494 "not_null:%d ctx->ctx_res_w:%d\n",
3495 not_null, ctx->ctx_res_w);
3496 new_p = new_pipe();
3497 ctx->pipe->next = new_p;
3498 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003499 /* RES_THEN, RES_DO etc are "sticky" -
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003500 * they remain set for pipes inside if/while.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003501 * This is used to control execution.
3502 * RES_FOR and RES_IN are NOT sticky (needed to support
3503 * cases where variable or value happens to match a keyword):
3504 */
3505#if ENABLE_HUSH_LOOPS
3506 if (ctx->ctx_res_w == RES_FOR
3507 || ctx->ctx_res_w == RES_IN)
3508 ctx->ctx_res_w = RES_NONE;
3509#endif
3510#if ENABLE_HUSH_CASE
3511 if (ctx->ctx_res_w == RES_MATCH)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003512 ctx->ctx_res_w = RES_CASE_BODY;
3513 if (ctx->ctx_res_w == RES_CASE)
3514 ctx->ctx_res_w = RES_CASE_IN;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003515#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003516 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003517 /* Create the memory for command, roughly:
3518 * ctx->pipe->cmds = new struct command;
3519 * ctx->command = &ctx->pipe->cmds[0];
3520 */
3521 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003522 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003523 }
3524 debug_printf_parse("done_pipe return\n");
3525}
3526
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003527static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003528{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003529 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00003530 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003531 /* Create the memory for command, roughly:
3532 * ctx->pipe->cmds = new struct command;
3533 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003534 */
3535 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00003536}
3537
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003538/* If a reserved word is found and processed, parse context is modified
3539 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00003540 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003541#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003542struct reserved_combo {
3543 char literal[6];
3544 unsigned char res;
3545 unsigned char assignment_flag;
3546 int flag;
3547};
3548enum {
3549 FLAG_END = (1 << RES_NONE ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003550# if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003551 FLAG_IF = (1 << RES_IF ),
3552 FLAG_THEN = (1 << RES_THEN ),
3553 FLAG_ELIF = (1 << RES_ELIF ),
3554 FLAG_ELSE = (1 << RES_ELSE ),
3555 FLAG_FI = (1 << RES_FI ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003556# endif
3557# if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003558 FLAG_FOR = (1 << RES_FOR ),
3559 FLAG_WHILE = (1 << RES_WHILE),
3560 FLAG_UNTIL = (1 << RES_UNTIL),
3561 FLAG_DO = (1 << RES_DO ),
3562 FLAG_DONE = (1 << RES_DONE ),
3563 FLAG_IN = (1 << RES_IN ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003564# endif
3565# if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003566 FLAG_MATCH = (1 << RES_MATCH),
3567 FLAG_ESAC = (1 << RES_ESAC ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003568# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003569 FLAG_START = (1 << RES_XXXX ),
3570};
3571
3572static const struct reserved_combo* match_reserved_word(o_string *word)
3573{
Eric Andersen25f27032001-04-26 23:22:31 +00003574 /* Mostly a list of accepted follow-up reserved words.
3575 * FLAG_END means we are done with the sequence, and are ready
3576 * to turn the compound list into a command.
3577 * FLAG_START means the word must start a new compound list.
3578 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003579 static const struct reserved_combo reserved_list[] = {
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003580# if ENABLE_HUSH_IF
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003581 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
3582 { "if", RES_IF, MAYBE_ASSIGNMENT, FLAG_THEN | FLAG_START },
3583 { "then", RES_THEN, MAYBE_ASSIGNMENT, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
3584 { "elif", RES_ELIF, MAYBE_ASSIGNMENT, FLAG_THEN },
3585 { "else", RES_ELSE, MAYBE_ASSIGNMENT, FLAG_FI },
3586 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003587# endif
3588# if ENABLE_HUSH_LOOPS
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003589 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
3590 { "while", RES_WHILE, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START },
3591 { "until", RES_UNTIL, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START },
3592 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
3593 { "do", RES_DO, MAYBE_ASSIGNMENT, FLAG_DONE },
3594 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003595# endif
3596# if ENABLE_HUSH_CASE
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003597 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
3598 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003599# endif
Eric Andersen25f27032001-04-26 23:22:31 +00003600 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003601 const struct reserved_combo *r;
3602
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02003603 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003604 if (strcmp(word->data, r->literal) == 0)
3605 return r;
3606 }
3607 return NULL;
3608}
Denis Vlasenkobb929512009-04-16 10:59:40 +00003609/* Return 0: not a keyword, 1: keyword
3610 */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003611static int reserved_word(o_string *word, struct parse_context *ctx)
3612{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003613# if ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003614 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003615 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003616 };
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003617# endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003618 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003619
Denys Vlasenko38292b62010-09-05 14:49:40 +02003620 if (word->has_quoted_part)
Denis Vlasenkobb929512009-04-16 10:59:40 +00003621 return 0;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003622 r = match_reserved_word(word);
3623 if (!r)
3624 return 0;
3625
3626 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003627# if ENABLE_HUSH_CASE
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003628 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE_IN) {
3629 /* "case word IN ..." - IN part starts first MATCH part */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003630 r = &reserved_match;
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003631 } else
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003632# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003633 if (r->flag == 0) { /* '!' */
3634 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003635 syntax_error("! ! command");
Denis Vlasenkobb929512009-04-16 10:59:40 +00003636 ctx->ctx_res_w = RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00003637 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003638 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00003639 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003640 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003641 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003642 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003643
Denys Vlasenko9e55a152017-07-10 10:01:12 +02003644 old = xmemdup(ctx, sizeof(*ctx));
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003645 debug_printf_parse("push stack %p\n", old);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003646 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003647 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003648 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003649 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003650 ctx->ctx_res_w = RES_SNTX;
3651 return 1;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003652 } else {
3653 /* "{...} fi" is ok. "{...} if" is not
3654 * Example:
3655 * if { echo foo; } then { echo bar; } fi */
3656 if (ctx->command->group)
3657 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003658 }
Denis Vlasenkobb929512009-04-16 10:59:40 +00003659
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003660 ctx->ctx_res_w = r->res;
3661 ctx->old_flag = r->flag;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003662 word->o_assignment = r->assignment_flag;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003663 debug_printf_parse("word->o_assignment='%s'\n", assignment_flag[word->o_assignment]);
Denis Vlasenkobb929512009-04-16 10:59:40 +00003664
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003665 if (ctx->old_flag & FLAG_END) {
3666 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003667
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003668 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003669 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003670 old = ctx->stack;
3671 old->command->group = ctx->list_head;
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003672 old->command->cmd_type = CMD_NORMAL;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003673# if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02003674 /* At this point, the compound command's string is in
3675 * ctx->as_string... except for the leading keyword!
3676 * Consider this example: "echo a | if true; then echo a; fi"
3677 * ctx->as_string will contain "true; then echo a; fi",
3678 * with "if " remaining in old->as_string!
3679 */
3680 {
3681 char *str;
3682 int len = old->as_string.length;
3683 /* Concatenate halves */
3684 o_addstr(&old->as_string, ctx->as_string.data);
3685 o_free_unsafe(&ctx->as_string);
3686 /* Find where leading keyword starts in first half */
3687 str = old->as_string.data + len;
3688 if (str > old->as_string.data)
3689 str--; /* skip whitespace after keyword */
3690 while (str > old->as_string.data && isalpha(str[-1]))
3691 str--;
3692 /* Ugh, we're done with this horrid hack */
3693 old->command->group_as_string = xstrdup(str);
3694 debug_printf_parse("pop, remembering as:'%s'\n",
3695 old->command->group_as_string);
3696 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003697# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003698 *ctx = *old; /* physical copy */
3699 free(old);
3700 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003701 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003702}
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003703#endif /* HAS_KEYWORDS */
Eric Andersen25f27032001-04-26 23:22:31 +00003704
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003705/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003706 * Normal return is 0. Syntax errors return 1.
3707 * Note: on return, word is reset, but not o_free'd!
3708 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003709static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003710{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003711 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00003712
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003713 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denys Vlasenko38292b62010-09-05 14:49:40 +02003714 if (word->length == 0 && !word->has_quoted_part) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003715 debug_printf_parse("done_word return 0: true null, ignored\n");
3716 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003717 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003718
Eric Andersen25f27032001-04-26 23:22:31 +00003719 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003720 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
3721 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003722 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3723 * "2.7 Redirection
3724 * ...the word that follows the redirection operator
3725 * shall be subjected to tilde expansion, parameter expansion,
3726 * command substitution, arithmetic expansion, and quote
3727 * removal. Pathname expansion shall not be performed
3728 * on the word by a non-interactive shell; an interactive
3729 * shell may perform it, but shall do so only when
3730 * the expansion would result in one word."
3731 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003732 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003733 /* Cater for >\file case:
3734 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
3735 * Same with heredocs:
3736 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
3737 */
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003738 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC) {
3739 unbackslash(ctx->pending_redirect->rd_filename);
3740 /* Is it <<"HEREDOC"? */
Denys Vlasenko38292b62010-09-05 14:49:40 +02003741 if (word->has_quoted_part) {
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003742 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
3743 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003744 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003745 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003746 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003747 } else {
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003748#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003749# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00003750 if (ctx->ctx_dsemicolon
3751 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
3752 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003753 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003754 /* ctx->ctx_res_w = RES_MATCH; */
3755 ctx->ctx_dsemicolon = 0;
3756 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003757# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003758 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003759# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003760 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
3761 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003762# endif
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003763# if ENABLE_HUSH_CASE
3764 && ctx->ctx_res_w != RES_CASE
3765# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003766 ) {
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003767 int reserved = reserved_word(word, ctx);
3768 debug_printf_parse("checking for reserved-ness: %d\n", reserved);
3769 if (reserved) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003770 o_reset_to_empty_unquoted(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003771 debug_printf_parse("done_word return %d\n",
3772 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003773 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003774 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01003775# if BASH_TEST2
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003776 if (strcmp(word->data, "[[") == 0) {
3777 command->cmd_type = CMD_SINGLEWORD_NOGLOB;
3778 }
3779 /* fall through */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02003780# endif
Eric Andersen25f27032001-04-26 23:22:31 +00003781 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003782#endif
Denis Vlasenkobb929512009-04-16 10:59:40 +00003783 if (command->group) {
3784 /* "{ echo foo; } echo bar" - bad */
3785 syntax_error_at(word->data);
3786 debug_printf_parse("done_word return 1: syntax error, "
3787 "groups and arglists don't mix\n");
3788 return 1;
3789 }
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003790
3791 /* If this word wasn't an assignment, next ones definitely
3792 * can't be assignments. Even if they look like ones. */
3793 if (word->o_assignment != DEFINITELY_ASSIGNMENT
3794 && word->o_assignment != WORD_IS_KEYWORD
3795 ) {
3796 word->o_assignment = NOT_ASSIGNMENT;
3797 } else {
3798 if (word->o_assignment == DEFINITELY_ASSIGNMENT) {
3799 command->assignment_cnt++;
3800 debug_printf_parse("++assignment_cnt=%d\n", command->assignment_cnt);
3801 }
3802 debug_printf_parse("word->o_assignment was:'%s'\n", assignment_flag[word->o_assignment]);
3803 word->o_assignment = MAYBE_ASSIGNMENT;
3804 }
3805 debug_printf_parse("word->o_assignment='%s'\n", assignment_flag[word->o_assignment]);
3806
Denys Vlasenko38292b62010-09-05 14:49:40 +02003807 if (word->has_quoted_part
Denis Vlasenko55789c62008-06-18 16:30:42 +00003808 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
3809 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003810 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003811 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003812 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003813 char *p = word->data;
3814 while (p[0] == SPECIAL_VAR_SYMBOL
3815 && (p[1] & 0x7f) == '@'
3816 && p[2] == SPECIAL_VAR_SYMBOL
3817 ) {
3818 p += 3;
3819 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00003820 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003821 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003822 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003823 }
Eric Andersen25f27032001-04-26 23:22:31 +00003824
Denis Vlasenko06810332007-05-21 23:30:54 +00003825#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003826 if (ctx->ctx_res_w == RES_FOR) {
Denys Vlasenko38292b62010-09-05 14:49:40 +02003827 if (word->has_quoted_part
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003828 || !is_well_formed_var_name(command->argv[0], '\0')
3829 ) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003830 /* bash says just "not a valid identifier" */
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003831 syntax_error("not a valid identifier in for");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003832 return 1;
3833 }
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003834 /* Force FOR to have just one word (variable name) */
3835 /* NB: basically, this makes hush see "for v in ..."
3836 * syntax as if it is "for v; in ...". FOR and IN become
3837 * two pipe structs in parse tree. */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003838 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003839 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003840#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003841#if ENABLE_HUSH_CASE
3842 /* Force CASE to have just one word */
3843 if (ctx->ctx_res_w == RES_CASE) {
3844 done_pipe(ctx, PIPE_SEQ);
3845 }
3846#endif
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003847
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003848 o_reset_to_empty_unquoted(word);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003849
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003850 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003851 return 0;
3852}
3853
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003854
3855/* Peek ahead in the input to find out if we have a "&n" construct,
3856 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003857 * Return:
3858 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
3859 * REDIRFD_SYNTAX_ERR if syntax error,
3860 * REDIRFD_TO_FILE if no & was seen,
3861 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003862 */
3863#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003864#define parse_redir_right_fd(as_string, input) \
3865 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003866#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003867static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003868{
3869 int ch, d, ok;
3870
3871 ch = i_peek(input);
3872 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003873 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003874
3875 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003876 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003877 ch = i_peek(input);
3878 if (ch == '-') {
3879 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003880 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003881 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003882 }
3883 d = 0;
3884 ok = 0;
3885 while (ch != EOF && isdigit(ch)) {
3886 d = d*10 + (ch-'0');
3887 ok = 1;
3888 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003889 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003890 ch = i_peek(input);
3891 }
3892 if (ok) return d;
3893
3894//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
3895
3896 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003897 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003898}
3899
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003900/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003901 */
3902static int parse_redirect(struct parse_context *ctx,
3903 int fd,
3904 redir_type style,
3905 struct in_str *input)
3906{
3907 struct command *command = ctx->command;
3908 struct redir_struct *redir;
3909 struct redir_struct **redirp;
3910 int dup_num;
3911
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003912 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003913 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003914 /* Check for a '>&1' type redirect */
3915 dup_num = parse_redir_right_fd(&ctx->as_string, input);
3916 if (dup_num == REDIRFD_SYNTAX_ERR)
3917 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003918 } else {
3919 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003920 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003921 if (dup_num) { /* <<-... */
3922 ch = i_getch(input);
3923 nommu_addchr(&ctx->as_string, ch);
3924 ch = i_peek(input);
3925 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003926 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003927
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003928 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003929 int ch = i_peek(input);
3930 if (ch == '|') {
3931 /* >|FILE redirect ("clobbering" >).
3932 * Since we do not support "set -o noclobber" yet,
3933 * >| and > are the same for now. Just eat |.
3934 */
3935 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003936 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003937 }
3938 }
3939
3940 /* Create a new redir_struct and append it to the linked list */
3941 redirp = &command->redirects;
3942 while ((redir = *redirp) != NULL) {
3943 redirp = &(redir->next);
3944 }
3945 *redirp = redir = xzalloc(sizeof(*redir));
3946 /* redir->next = NULL; */
3947 /* redir->rd_filename = NULL; */
3948 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003949 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003950
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003951 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
3952 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003953
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003954 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003955 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003956 /* Erik had a check here that the file descriptor in question
3957 * is legit; I postpone that to "run time"
3958 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003959 debug_printf_parse("duplicating redirect '%d>&%d'\n",
3960 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003961 } else {
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02003962#if 0 /* Instead we emit error message at run time */
3963 if (ctx->pending_redirect) {
3964 /* For example, "cmd > <file" */
Denys Vlasenko39701202017-08-02 19:44:05 +02003965 syntax_error("invalid redirect");
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02003966 }
3967#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003968 /* Set ctx->pending_redirect, so we know what to do at the
3969 * end of the next parsed word. */
3970 ctx->pending_redirect = redir;
3971 }
3972 return 0;
3973}
3974
Eric Andersen25f27032001-04-26 23:22:31 +00003975/* If a redirect is immediately preceded by a number, that number is
3976 * supposed to tell which file descriptor to redirect. This routine
3977 * looks for such preceding numbers. In an ideal world this routine
3978 * needs to handle all the following classes of redirects...
3979 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
3980 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
3981 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
3982 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003983 *
3984 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3985 * "2.7 Redirection
3986 * ... If n is quoted, the number shall not be recognized as part of
3987 * the redirection expression. For example:
3988 * echo \2>a
3989 * writes the character 2 into file a"
Denys Vlasenko38292b62010-09-05 14:49:40 +02003990 * We are getting it right by setting ->has_quoted_part on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003991 *
3992 * A -1 return means no valid number was found,
3993 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00003994 */
3995static int redirect_opt_num(o_string *o)
3996{
3997 int num;
3998
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003999 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004000 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004001 num = bb_strtou(o->data, NULL, 10);
4002 if (errno || num < 0)
4003 return -1;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004004 o_reset_to_empty_unquoted(o);
Eric Andersen25f27032001-04-26 23:22:31 +00004005 return num;
4006}
4007
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004008#if BB_MMU
4009#define fetch_till_str(as_string, input, word, skip_tabs) \
4010 fetch_till_str(input, word, skip_tabs)
4011#endif
4012static char *fetch_till_str(o_string *as_string,
4013 struct in_str *input,
4014 const char *word,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02004015 int heredoc_flags)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004016{
4017 o_string heredoc = NULL_O_STRING;
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004018 unsigned past_EOL;
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02004019 int prev = 0; /* not \ */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004020 int ch;
4021
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004022 goto jump_in;
Denys Vlasenkob8709032011-05-08 21:20:01 +02004023
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004024 while (1) {
4025 ch = i_getch(input);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004026 if (ch != EOF)
4027 nommu_addchr(as_string, ch);
Denys Vlasenko0f018b32017-07-29 20:43:26 +02004028 if (ch == '\n' || ch == EOF) {
4029 check_heredoc_end:
4030 if ((heredoc_flags & HEREDOC_QUOTED) || prev != '\\') {
4031 if (strcmp(heredoc.data + past_EOL, word) == 0) {
4032 heredoc.data[past_EOL] = '\0';
4033 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
4034 return heredoc.data;
4035 }
4036 if (ch == '\n') {
4037 /* This is a new line.
4038 * Remember position and backslash-escaping status.
4039 */
4040 o_addchr(&heredoc, ch);
4041 prev = ch;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004042 jump_in:
Denys Vlasenko0f018b32017-07-29 20:43:26 +02004043 past_EOL = heredoc.length;
4044 /* Get 1st char of next line, possibly skipping leading tabs */
4045 do {
4046 ch = i_getch(input);
4047 if (ch != EOF)
4048 nommu_addchr(as_string, ch);
4049 } while ((heredoc_flags & HEREDOC_SKIPTABS) && ch == '\t');
4050 /* If this immediately ended the line,
4051 * go back to end-of-line checks.
4052 */
4053 if (ch == '\n')
4054 goto check_heredoc_end;
4055 }
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004056 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004057 }
4058 if (ch == EOF) {
4059 o_free_unsafe(&heredoc);
4060 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004061 }
4062 o_addchr(&heredoc, ch);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004063 nommu_addchr(as_string, ch);
Denys Vlasenkoc3adfac2010-09-06 11:46:03 +02004064 if (prev == '\\' && ch == '\\')
4065 /* Correctly handle foo\\<eol> (not a line cont.) */
4066 prev = 0; /* not \ */
4067 else
4068 prev = ch;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004069 }
4070}
4071
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004072/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
4073 * and load them all. There should be exactly heredoc_cnt of them.
4074 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004075static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
4076{
4077 struct pipe *pi = ctx->list_head;
4078
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004079 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004080 int i;
4081 struct command *cmd = pi->cmds;
4082
4083 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
4084 pi->num_cmds,
4085 cmd->argv ? cmd->argv[0] : "NONE");
4086 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004087 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004088
4089 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
4090 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004091 while (redir) {
4092 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004093 char *p;
4094
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004095 redir->rd_type = REDIRECT_HEREDOC2;
Denys Vlasenko764b2f02009-06-07 16:05:04 +02004096 /* redir->rd_dup is (ab)used to indicate <<- */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004097 p = fetch_till_str(&ctx->as_string, input,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02004098 redir->rd_filename, redir->rd_dup);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004099 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004100 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004101 return 1;
4102 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004103 free(redir->rd_filename);
4104 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004105 heredoc_cnt--;
4106 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004107 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004108 }
4109 cmd++;
4110 }
4111 pi = pi->next;
4112 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004113#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004114 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004115 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004116 bb_error_msg_and_die("heredoc BUG 2");
4117#endif
4118 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004119}
4120
4121
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004122static int run_list(struct pipe *pi);
4123#if BB_MMU
4124#define parse_stream(pstring, input, end_trigger) \
4125 parse_stream(input, end_trigger)
4126#endif
4127static struct pipe *parse_stream(char **pstring,
4128 struct in_str *input,
4129 int end_trigger);
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004130
Eric Andersen25f27032001-04-26 23:22:31 +00004131
Denys Vlasenkoc2704542009-11-20 19:14:19 +01004132#if !ENABLE_HUSH_FUNCTIONS
4133#define parse_group(dest, ctx, input, ch) \
4134 parse_group(ctx, input, ch)
4135#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004136static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00004137 struct in_str *input, int ch)
4138{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004139 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004140 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004141 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004142 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004143 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004144 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004145
4146 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004147#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko38292b62010-09-05 14:49:40 +02004148 if (ch == '(' && !dest->has_quoted_part) {
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004149 if (dest->length)
Denis Vlasenkobb929512009-04-16 10:59:40 +00004150 if (done_word(dest, ctx))
4151 return 1;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004152 if (!command->argv)
4153 goto skip; /* (... */
4154 if (command->argv[1]) { /* word word ... (... */
4155 syntax_error_unexpected_ch('(');
4156 return 1;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004157 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004158 /* it is "word(..." or "word (..." */
4159 do
4160 ch = i_getch(input);
4161 while (ch == ' ' || ch == '\t');
4162 if (ch != ')') {
4163 syntax_error_unexpected_ch(ch);
4164 return 1;
4165 }
4166 nommu_addchr(&ctx->as_string, ch);
4167 do
4168 ch = i_getch(input);
4169 while (ch == ' ' || ch == '\t' || ch == '\n');
4170 if (ch != '{') {
4171 syntax_error_unexpected_ch(ch);
4172 return 1;
4173 }
4174 nommu_addchr(&ctx->as_string, ch);
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004175 command->cmd_type = CMD_FUNCDEF;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004176 goto skip;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004177 }
4178#endif
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004179
4180#if 0 /* Prevented by caller */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004181 if (command->argv /* word [word]{... */
4182 || dest->length /* word{... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004183 || dest->has_quoted_part /* ""{... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004184 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004185 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004186 debug_printf_parse("parse_group return 1: "
4187 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004188 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004189 }
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004190#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004191
4192#if ENABLE_HUSH_FUNCTIONS
4193 skip:
4194#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00004195 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004196 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00004197 endch = ')';
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004198 command->cmd_type = CMD_SUBSHELL;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004199 } else {
4200 /* bash does not allow "{echo...", requires whitespace */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004201 ch = i_peek(input);
4202 if (ch != ' ' && ch != '\t' && ch != '\n'
4203 && ch != '(' /* but "{(..." is allowed (without whitespace) */
4204 ) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004205 syntax_error_unexpected_ch(ch);
4206 return 1;
4207 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004208 if (ch != '(') {
4209 ch = i_getch(input);
4210 nommu_addchr(&ctx->as_string, ch);
4211 }
Eric Andersen25f27032001-04-26 23:22:31 +00004212 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004213
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004214 {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004215#if BB_MMU
4216# define as_string NULL
4217#else
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004218 char *as_string = NULL;
4219#endif
4220 pipe_list = parse_stream(&as_string, input, endch);
4221#if !BB_MMU
4222 if (as_string)
4223 o_addstr(&ctx->as_string, as_string);
4224#endif
4225 /* empty ()/{} or parse error? */
4226 if (!pipe_list || pipe_list == ERR_PTR) {
Denis Vlasenkobb929512009-04-16 10:59:40 +00004227 /* parse_stream already emitted error msg */
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004228 if (!BB_MMU)
4229 free(as_string);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004230 debug_printf_parse("parse_group return 1: "
4231 "parse_stream returned %p\n", pipe_list);
4232 return 1;
4233 }
4234 command->group = pipe_list;
4235#if !BB_MMU
4236 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
4237 command->group_as_string = as_string;
4238 debug_printf_parse("end of group, remembering as:'%s'\n",
4239 command->group_as_string);
4240#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004241#undef as_string
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004242 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004243 debug_printf_parse("parse_group return 0\n");
4244 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004245 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00004246}
4247
Denys Vlasenko46e64982016-09-29 19:50:55 +02004248static int i_getch_and_eat_bkslash_nl(struct in_str *input)
4249{
4250 for (;;) {
4251 int ch, ch2;
4252
4253 ch = i_getch(input);
4254 if (ch != '\\')
4255 return ch;
4256 ch2 = i_peek(input);
4257 if (ch2 != '\n')
4258 return ch;
4259 /* backslash+newline, skip it */
4260 i_getch(input);
4261 }
4262}
4263
Denys Vlasenko657086a2016-09-29 18:07:42 +02004264static int i_peek_and_eat_bkslash_nl(struct in_str *input)
4265{
4266 for (;;) {
4267 int ch, ch2;
4268
4269 ch = i_peek(input);
4270 if (ch != '\\')
4271 return ch;
4272 ch2 = i_peek2(input);
4273 if (ch2 != '\n')
4274 return ch;
4275 /* backslash+newline, skip it */
4276 i_getch(input);
4277 i_getch(input);
4278 }
4279}
4280
Denys Vlasenko0b883582016-12-23 16:49:07 +01004281#if ENABLE_HUSH_TICK || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_DOLLAR_OPS
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004282/* Subroutines for copying $(...) and `...` things */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004283static int add_till_backquote(o_string *dest, struct in_str *input, int in_dquote);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004284/* '...' */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004285static int add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004286{
4287 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004288 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004289 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004290 syntax_error_unterm_ch('\'');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004291 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004292 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004293 if (ch == '\'')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004294 return 1;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004295 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004296 }
4297}
4298/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004299static int add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004300{
4301 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004302 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004303 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004304 syntax_error_unterm_ch('"');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004305 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004306 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004307 if (ch == '"')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004308 return 1;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004309 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004310 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004311 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004312 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004313 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004314 if (ch == '`') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004315 if (!add_till_backquote(dest, input, /*in_dquote:*/ 1))
4316 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004317 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004318 continue;
4319 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00004320 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004321 }
4322}
4323/* Process `cmd` - copy contents until "`" is seen. Complicated by
4324 * \` quoting.
4325 * "Within the backquoted style of command substitution, backslash
4326 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
4327 * The search for the matching backquote shall be satisfied by the first
4328 * backquote found without a preceding backslash; during this search,
4329 * if a non-escaped backquote is encountered within a shell comment,
4330 * a here-document, an embedded command substitution of the $(command)
4331 * form, or a quoted string, undefined results occur. A single-quoted
4332 * or double-quoted string that begins, but does not end, within the
4333 * "`...`" sequence produces undefined results."
4334 * Example Output
4335 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
4336 */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004337static int add_till_backquote(o_string *dest, struct in_str *input, int in_dquote)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004338{
4339 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004340 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004341 if (ch == '`')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004342 return 1;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004343 if (ch == '\\') {
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02004344 /* \x. Copy both unless it is \`, \$, \\ and maybe \" */
4345 ch = i_getch(input);
4346 if (ch != '`'
4347 && ch != '$'
4348 && ch != '\\'
4349 && (!in_dquote || ch != '"')
4350 ) {
4351 o_addchr(dest, '\\');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004352 }
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02004353 }
4354 if (ch == EOF) {
4355 syntax_error_unterm_ch('`');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004356 return 0;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004357 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004358 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004359 }
4360}
4361/* Process $(cmd) - copy contents until ")" is seen. Complicated by
4362 * quoting and nested ()s.
4363 * "With the $(command) style of command substitution, all characters
4364 * following the open parenthesis to the matching closing parenthesis
4365 * constitute the command. Any valid shell script can be used for command,
4366 * except a script consisting solely of redirections which produces
4367 * unspecified results."
4368 * Example Output
4369 * echo $(echo '(TEST)' BEST) (TEST) BEST
4370 * echo $(echo 'TEST)' BEST) TEST) BEST
4371 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
Denys Vlasenko74369502010-05-21 19:52:01 +02004372 *
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004373 * Also adapted to eat ${var%...} and $((...)) constructs, since ... part
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004374 * can contain arbitrary constructs, just like $(cmd).
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004375 * In bash compat mode, it needs to also be able to stop on ':' or '/'
4376 * for ${var:N[:M]} and ${var/P[/R]} parsing.
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004377 */
Denys Vlasenko74369502010-05-21 19:52:01 +02004378#define DOUBLE_CLOSE_CHAR_FLAG 0x80
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004379static int add_till_closing_bracket(o_string *dest, struct in_str *input, unsigned end_ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004380{
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004381 int ch;
Denys Vlasenko74369502010-05-21 19:52:01 +02004382 char dbl = end_ch & DOUBLE_CLOSE_CHAR_FLAG;
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004383# if BASH_SUBSTR || BASH_PATTERN_SUBST
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004384 char end_char2 = end_ch >> 8;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004385# endif
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004386 end_ch &= (DOUBLE_CLOSE_CHAR_FLAG - 1);
4387
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004388 while (1) {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004389 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004390 if (ch == EOF) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004391 syntax_error_unterm_ch(end_ch);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004392 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004393 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004394 if (ch == end_ch
4395# if BASH_SUBSTR || BASH_PATTERN_SUBST
4396 || ch == end_char2
4397# endif
4398 ) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004399 if (!dbl)
4400 break;
4401 /* we look for closing )) of $((EXPR)) */
Denys Vlasenko657086a2016-09-29 18:07:42 +02004402 if (i_peek_and_eat_bkslash_nl(input) == end_ch) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004403 i_getch(input); /* eat second ')' */
4404 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004405 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004406 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004407 o_addchr(dest, ch);
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004408 if (ch == '(' || ch == '{') {
4409 ch = (ch == '(' ? ')' : '}');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004410 if (!add_till_closing_bracket(dest, input, ch))
4411 return 0;
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004412 o_addchr(dest, ch);
4413 continue;
4414 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004415 if (ch == '\'') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004416 if (!add_till_single_quote(dest, input))
4417 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004418 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004419 continue;
4420 }
4421 if (ch == '"') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004422 if (!add_till_double_quote(dest, input))
4423 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004424 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004425 continue;
4426 }
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004427 if (ch == '`') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004428 if (!add_till_backquote(dest, input, /*in_dquote:*/ 0))
4429 return 0;
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004430 o_addchr(dest, ch);
4431 continue;
4432 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004433 if (ch == '\\') {
4434 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004435 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004436 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004437 syntax_error_unterm_ch(')');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004438 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004439 }
Denys Vlasenko657086a2016-09-29 18:07:42 +02004440#if 0
4441 if (ch == '\n') {
4442 /* "backslash+newline", ignore both */
4443 o_delchr(dest); /* undo insertion of '\' */
4444 continue;
4445 }
4446#endif
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004447 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004448 continue;
4449 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004450 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004451 return ch;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004452}
Denys Vlasenko0b883582016-12-23 16:49:07 +01004453#endif /* ENABLE_HUSH_TICK || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_DOLLAR_OPS */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004454
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004455/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004456#if BB_MMU
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004457#define parse_dollar(as_string, dest, input, quote_mask) \
4458 parse_dollar(dest, input, quote_mask)
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004459#define as_string NULL
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004460#endif
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004461static int parse_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004462 o_string *dest,
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004463 struct in_str *input, unsigned char quote_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00004464{
Denys Vlasenko657086a2016-09-29 18:07:42 +02004465 int ch = i_peek_and_eat_bkslash_nl(input); /* first character after the $ */
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004466
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004467 debug_printf_parse("parse_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004468 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004469 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004470 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00004471 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004472 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004473 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004474 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004475 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004476 quote_mask = 0;
Denys Vlasenko657086a2016-09-29 18:07:42 +02004477 ch = i_peek_and_eat_bkslash_nl(input);
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004478 if (!isalnum(ch) && ch != '_') {
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004479 /* End of variable name reached */
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004480 break;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004481 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004482 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004483 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004484 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004485 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004486 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004487 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004488 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004489 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004490 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004491 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004492 o_addchr(dest, ch | quote_mask);
4493 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004494 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004495 case '$': /* pid */
4496 case '!': /* last bg pid */
4497 case '?': /* last exit code */
4498 case '#': /* number of args */
4499 case '*': /* args */
4500 case '@': /* args */
4501 goto make_one_char_var;
4502 case '{': {
Denys Vlasenko2093ad22017-07-26 00:07:27 +02004503 char len_single_ch;
4504
Mike Frysingeref3e7fd2009-06-01 14:13:39 -04004505 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4506
Denys Vlasenko74369502010-05-21 19:52:01 +02004507 ch = i_getch(input); /* eat '{' */
4508 nommu_addchr(as_string, ch);
4509
Denys Vlasenko46e64982016-09-29 19:50:55 +02004510 ch = i_getch_and_eat_bkslash_nl(input); /* first char after '{' */
Denys Vlasenko74369502010-05-21 19:52:01 +02004511 /* It should be ${?}, or ${#var},
4512 * or even ${?+subst} - operator acting on a special variable,
4513 * or the beginning of variable name.
4514 */
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004515 if (ch == EOF
4516 || (!strchr(_SPECIAL_VARS_STR, ch) && !isalnum(ch)) /* not one of those */
4517 ) {
Denys Vlasenko74369502010-05-21 19:52:01 +02004518 bad_dollar_syntax:
4519 syntax_error_unterm_str("${name}");
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004520 debug_printf_parse("parse_dollar return 0: unterminated ${name}\n");
4521 return 0;
Denys Vlasenko74369502010-05-21 19:52:01 +02004522 }
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004523 nommu_addchr(as_string, ch);
Denys Vlasenko2093ad22017-07-26 00:07:27 +02004524 len_single_ch = ch;
Denys Vlasenko74369502010-05-21 19:52:01 +02004525 ch |= quote_mask;
4526
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004527 /* It's possible to just call add_till_closing_bracket() at this point.
Denys Vlasenko74369502010-05-21 19:52:01 +02004528 * However, this regresses some of our testsuite cases
4529 * which check invalid constructs like ${%}.
4530 * Oh well... let's check that the var name part is fine... */
4531
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004532 while (1) {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004533 unsigned pos;
4534
Denys Vlasenko74369502010-05-21 19:52:01 +02004535 o_addchr(dest, ch);
4536 debug_printf_parse(": '%c'\n", ch);
4537
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004538 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004539 nommu_addchr(as_string, ch);
Denys Vlasenko74369502010-05-21 19:52:01 +02004540 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00004541 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004542
Denys Vlasenko74369502010-05-21 19:52:01 +02004543 if (!isalnum(ch) && ch != '_') {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004544 unsigned end_ch;
4545 unsigned char last_ch;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004546 /* handle parameter expansions
4547 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
4548 */
Denys Vlasenko2093ad22017-07-26 00:07:27 +02004549 if (!strchr(VAR_SUBST_OPS, ch)) { /* ${var<bad_char>... */
4550 if (len_single_ch != '#'
4551 /*|| !strchr(SPECIAL_VARS_STR, ch) - disallow errors like ${#+} ? */
4552 || i_peek(input) != '}'
4553 ) {
4554 goto bad_dollar_syntax;
4555 }
4556 /* else: it's "length of C" ${#C} op,
4557 * where C is a single char
4558 * special var name, e.g. ${#!}.
4559 */
4560 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004561 /* Eat everything until closing '}' (or ':') */
4562 end_ch = '}';
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004563 if (BASH_SUBSTR
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004564 && ch == ':'
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004565 && !strchr(MINUS_PLUS_EQUAL_QUESTION, i_peek(input))
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004566 ) {
4567 /* It's ${var:N[:M]} thing */
4568 end_ch = '}' * 0x100 + ':';
4569 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004570 if (BASH_PATTERN_SUBST
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004571 && ch == '/'
4572 ) {
4573 /* It's ${var/[/]pattern[/repl]} thing */
4574 if (i_peek(input) == '/') { /* ${var//pattern[/repl]}? */
4575 i_getch(input);
4576 nommu_addchr(as_string, '/');
4577 ch = '\\';
4578 }
4579 end_ch = '}' * 0x100 + '/';
4580 }
4581 o_addchr(dest, ch);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004582 again:
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004583 if (!BB_MMU)
4584 pos = dest->length;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004585#if ENABLE_HUSH_DOLLAR_OPS
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004586 last_ch = add_till_closing_bracket(dest, input, end_ch);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004587 if (last_ch == 0) /* error? */
4588 return 0;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004589#else
4590#error Simple code to only allow ${var} is not implemented
4591#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004592 if (as_string) {
4593 o_addstr(as_string, dest->data + pos);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004594 o_addchr(as_string, last_ch);
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004595 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004596
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004597 if ((BASH_SUBSTR || BASH_PATTERN_SUBST)
4598 && (end_ch & 0xff00)
4599 ) {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004600 /* close the first block: */
4601 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004602 /* while parsing N from ${var:N[:M]}
4603 * or pattern from ${var/[/]pattern[/repl]} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004604 if ((end_ch & 0xff) == last_ch) {
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004605 /* got ':' or '/'- parse the rest */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004606 end_ch = '}';
4607 goto again;
4608 }
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004609 /* got '}' */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004610 if (BASH_SUBSTR && end_ch == '}' * 0x100 + ':') {
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004611 /* it's ${var:N} - emulate :999999999 */
4612 o_addstr(dest, "999999999");
4613 } /* else: it's ${var/[/]pattern} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004614 }
Denys Vlasenko74369502010-05-21 19:52:01 +02004615 break;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004616 }
Denys Vlasenko2093ad22017-07-26 00:07:27 +02004617 len_single_ch = 0; /* it can't be ${#C} op */
Denys Vlasenko74369502010-05-21 19:52:01 +02004618 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004619 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4620 break;
4621 }
Denys Vlasenko0b883582016-12-23 16:49:07 +01004622#if ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004623 case '(': {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004624 unsigned pos;
4625
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004626 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004627 nommu_addchr(as_string, ch);
Denys Vlasenko0b883582016-12-23 16:49:07 +01004628# if ENABLE_FEATURE_SH_MATH
Denys Vlasenko657086a2016-09-29 18:07:42 +02004629 if (i_peek_and_eat_bkslash_nl(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004630 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004631 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004632 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4633 o_addchr(dest, /*quote_mask |*/ '+');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004634 if (!BB_MMU)
4635 pos = dest->length;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004636 if (!add_till_closing_bracket(dest, input, ')' | DOUBLE_CLOSE_CHAR_FLAG))
4637 return 0; /* error */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004638 if (as_string) {
4639 o_addstr(as_string, dest->data + pos);
4640 o_addchr(as_string, ')');
4641 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004642 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004643 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004644 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004645 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004646# endif
4647# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004648 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4649 o_addchr(dest, quote_mask | '`');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004650 if (!BB_MMU)
4651 pos = dest->length;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004652 if (!add_till_closing_bracket(dest, input, ')'))
4653 return 0; /* error */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004654 if (as_string) {
4655 o_addstr(as_string, dest->data + pos);
Denys Vlasenkob70cef72010-01-12 13:45:45 +01004656 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004657 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004658 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004659# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004660 break;
4661 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004662#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004663 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004664 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004665 nommu_addchr(as_string, ch);
Denys Vlasenko657086a2016-09-29 18:07:42 +02004666 ch = i_peek_and_eat_bkslash_nl(input);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004667 if (isalnum(ch)) { /* it's $_name or $_123 */
4668 ch = '_';
4669 goto make_var;
4670 }
4671 /* else: it's $_ */
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02004672 /* TODO: $_ and $-: */
4673 /* $_ Shell or shell script name; or last argument of last command
4674 * (if last command wasn't a pipe; if it was, bash sets $_ to "");
4675 * but in command's env, set to full pathname used to invoke it */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004676 /* $- Option flags set by set builtin or shell options (-i etc) */
4677 default:
4678 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00004679 }
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004680 debug_printf_parse("parse_dollar return 1 (ok)\n");
4681 return 1;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004682#undef as_string
Eric Andersen25f27032001-04-26 23:22:31 +00004683}
4684
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004685#if BB_MMU
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004686# if BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004687#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4688 encode_string(dest, input, dquote_end, process_bkslash)
4689# else
4690/* only ${var/pattern/repl} (its pattern part) needs additional mode */
4691#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4692 encode_string(dest, input, dquote_end)
4693# endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004694#define as_string NULL
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004695
4696#else /* !MMU */
4697
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004698# if BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004699/* all parameters are needed, no macro tricks */
4700# else
4701#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4702 encode_string(as_string, dest, input, dquote_end)
4703# endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004704#endif
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004705static int encode_string(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004706 o_string *dest,
4707 struct in_str *input,
Denys Vlasenko14e289b2010-09-10 10:15:18 +02004708 int dquote_end,
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004709 int process_bkslash)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004710{
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004711#if !BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004712 const int process_bkslash = 1;
4713#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004714 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004715 int next;
4716
4717 again:
4718 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004719 if (ch != EOF)
4720 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004721 if (ch == dquote_end) { /* may be only '"' or EOF */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004722 debug_printf_parse("encode_string return 1 (ok)\n");
4723 return 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004724 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004725 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004726 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004727 syntax_error_unterm_ch('"');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004728 return 0; /* error */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004729 }
4730 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004731 if (ch != '\n') {
4732 next = i_peek(input);
4733 }
Denys Vlasenkof37eb392009-10-18 11:46:35 +02004734 debug_printf_parse("\" ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004735 ch, ch, !!(dest->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004736 if (process_bkslash && ch == '\\') {
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004737 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004738 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004739 xfunc_die();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004740 }
4741 /* bash:
4742 * "The backslash retains its special meaning [in "..."]
4743 * only when followed by one of the following characters:
4744 * $, `, ", \, or <newline>. A double quote may be quoted
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02004745 * within double quotes by preceding it with a backslash."
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004746 * NB: in (unquoted) heredoc, above does not apply to ",
4747 * therefore we check for it by "next == dquote_end" cond.
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004748 */
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004749 if (next == dquote_end || strchr("$`\\\n", next)) {
Denys Vlasenko850b15b2010-09-09 12:58:19 +02004750 ch = i_getch(input); /* eat next */
4751 if (ch == '\n')
4752 goto again; /* skip \<newline> */
Denys Vlasenko4f870492010-09-10 11:06:01 +02004753 } /* else: ch remains == '\\', and we double it below: */
4754 o_addqchr(dest, ch); /* \c if c is a glob char, else just c */
Denys Vlasenko850b15b2010-09-09 12:58:19 +02004755 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004756 goto again;
4757 }
4758 if (ch == '$') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004759 if (!parse_dollar(as_string, dest, input, /*quote_mask:*/ 0x80)) {
4760 debug_printf_parse("encode_string return 0: "
4761 "parse_dollar returned 0 (error)\n");
4762 return 0;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004763 }
4764 goto again;
4765 }
4766#if ENABLE_HUSH_TICK
4767 if (ch == '`') {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004768 //unsigned pos = dest->length;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004769 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4770 o_addchr(dest, 0x80 | '`');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004771 if (!add_till_backquote(dest, input, /*in_dquote:*/ dquote_end == '"'))
4772 return 0; /* error */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004773 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4774 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00004775 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004776 }
4777#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00004778 o_addQchr(dest, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004779 goto again;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004780#undef as_string
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004781}
4782
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004783/*
4784 * Scan input until EOF or end_trigger char.
4785 * Return a list of pipes to execute, or NULL on EOF
4786 * or if end_trigger character is met.
Denys Vlasenkocecbc982011-03-30 18:54:52 +02004787 * On syntax error, exit if shell is not interactive,
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004788 * reset parsing machinery and start parsing anew,
4789 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004790 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004791static struct pipe *parse_stream(char **pstring,
4792 struct in_str *input,
4793 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00004794{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004795 struct parse_context ctx;
4796 o_string dest = NULL_O_STRING;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004797 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00004798
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004799 /* Single-quote triggers a bypass of the main loop until its mate is
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004800 * found. When recursing, quote state is passed in via dest->o_expflags.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004801 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004802 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
Denys Vlasenko90a99042009-09-06 02:36:23 +02004803 end_trigger ? end_trigger : 'X');
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004804 debug_enter();
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004805
Denys Vlasenkof37eb392009-10-18 11:46:35 +02004806 /* If very first arg is "" or '', dest.data may end up NULL.
4807 * Preventing this: */
4808 o_addchr(&dest, '\0');
4809 dest.length = 0;
4810
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004811 /* We used to separate words on $IFS here. This was wrong.
4812 * $IFS is used only for word splitting when $var is expanded,
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004813 * here we should use blank chars as separators, not $IFS
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004814 */
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004815
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004816 if (MAYBE_ASSIGNMENT != 0)
4817 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004818 initialize_context(&ctx);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004819 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004820 while (1) {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004821 const char *is_blank;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004822 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004823 int ch;
4824 int next;
4825 int redir_fd;
4826 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004827
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004828 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004829 debug_printf_parse(": ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004830 ch, ch, !!(dest.o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004831 if (ch == EOF) {
4832 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004833
4834 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004835 syntax_error_unterm_str("here document");
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004836 goto parse_error;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004837 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004838 if (end_trigger == ')') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004839 syntax_error_unterm_ch('(');
4840 goto parse_error;
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004841 }
Denys Vlasenko42246472016-11-07 16:22:35 +01004842 if (end_trigger == '}') {
4843 syntax_error_unterm_ch('{');
4844 goto parse_error;
4845 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004846
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004847 if (done_word(&dest, &ctx)) {
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004848 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004849 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004850 o_free(&dest);
4851 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004852 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004853 /* If we got nothing... */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004854 /* (this makes bare "&" cmd a no-op.
4855 * bash says: "syntax error near unexpected token '&'") */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004856 if (pi->num_cmds == 0
Denys Vlasenko60cb48c2013-01-14 15:57:44 +01004857 IF_HAS_KEYWORDS(&& pi->res_word == RES_NONE)
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004858 ) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004859 free_pipe_list(pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004860 pi = NULL;
4861 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004862#if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02004863 debug_printf_parse("as_string1 '%s'\n", ctx.as_string.data);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004864 if (pstring)
4865 *pstring = ctx.as_string.data;
4866 else
4867 o_free_unsafe(&ctx.as_string);
4868#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004869 debug_leave();
4870 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004871 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004872 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004873 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004874
4875 next = '\0';
4876 if (ch != '\n')
4877 next = i_peek(input);
4878
4879 is_special = "{}<>;&|()#'" /* special outside of "str" */
4880 "\\$\"" IF_HUSH_TICK("`"); /* always special */
4881 /* Are { and } special here? */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02004882 if (ctx.command->argv /* word [word]{... - non-special */
4883 || dest.length /* word{... - non-special */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004884 || dest.has_quoted_part /* ""{... - non-special */
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004885 || (next != ';' /* }; - special */
4886 && next != ')' /* }) - special */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004887 && next != '(' /* {( - special */
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004888 && next != '&' /* }& and }&& ... - special */
4889 && next != '|' /* }|| ... - special */
4890 && !strchr(defifs, next) /* {word - non-special */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02004891 )
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004892 ) {
4893 /* They are not special, skip "{}" */
4894 is_special += 2;
4895 }
4896 is_special = strchr(is_special, ch);
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004897 is_blank = strchr(defifs, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004898
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004899 if (!is_special && !is_blank) { /* ordinary char */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00004900 ordinary_char:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004901 o_addQchr(&dest, ch);
4902 if ((dest.o_assignment == MAYBE_ASSIGNMENT
4903 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00004904 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004905 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00004906 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004907 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004908 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko55789c62008-06-18 16:30:42 +00004909 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004910 continue;
4911 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004912
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004913 if (is_blank) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004914 if (done_word(&dest, &ctx)) {
4915 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00004916 }
Denis Vlasenko37181682009-04-03 03:19:15 +00004917 if (ch == '\n') {
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004918 /* Is this a case when newline is simply ignored?
4919 * Some examples:
4920 * "cmd | <newline> cmd ..."
4921 * "case ... in <newline> word) ..."
4922 */
4923 if (IS_NULL_CMD(ctx.command)
4924 && dest.length == 0 && !dest.has_quoted_part
Denis Vlasenkof1736072008-07-31 10:09:26 +00004925 ) {
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004926 /* This newline can be ignored. But...
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004927 * Without check #1, interactive shell
4928 * ignores even bare <newline>,
4929 * and shows the continuation prompt:
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004930 * ps1_prompt$ <enter>
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004931 * ps2> _ <=== wrong, should be ps1
4932 * Without check #2, "cmd & <newline>"
4933 * is similarly mistreated.
4934 * (BTW, this makes "cmd & cmd"
4935 * and "cmd && cmd" non-orthogonal.
4936 * Really, ask yourself, why
4937 * "cmd && <newline>" doesn't start
4938 * cmd but waits for more input?
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02004939 * The only reason is that it might be
4940 * a "cmd1 && <nl> cmd2 &" construct,
4941 * cmd1 may need to run in BG).
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004942 */
4943 struct pipe *pi = ctx.list_head;
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004944 if (pi->num_cmds != 0 /* check #1 */
4945 && pi->followup != PIPE_BG /* check #2 */
4946 ) {
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004947 continue;
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004948 }
Denis Vlasenkof1736072008-07-31 10:09:26 +00004949 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004950 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004951 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004952 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
4953 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004954 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004955 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004956 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004957 heredoc_cnt = 0;
4958 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004959 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004960 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko240c2552009-04-03 03:45:05 +00004961 ch = ';';
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004962 /* note: if (is_blank) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004963 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004964 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004965 }
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00004966
4967 /* "cmd}" or "cmd }..." without semicolon or &:
4968 * } is an ordinary char in this case, even inside { cmd; }
4969 * Pathological example: { ""}; } should exec "}" cmd
4970 */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004971 if (ch == '}') {
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004972 if (dest.length != 0 /* word} */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004973 || dest.has_quoted_part /* ""} */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004974 ) {
4975 goto ordinary_char;
4976 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004977 if (!IS_NULL_CMD(ctx.command)) { /* cmd } */
4978 /* Generally, there should be semicolon: "cmd; }"
4979 * However, bash allows to omit it if "cmd" is
4980 * a group. Examples:
4981 * { { echo 1; } }
4982 * {(echo 1)}
4983 * { echo 0 >&2 | { echo 1; } }
4984 * { while false; do :; done }
4985 * { case a in b) ;; esac }
4986 */
4987 if (ctx.command->group)
4988 goto term_group;
4989 goto ordinary_char;
4990 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004991 if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004992 /* Can't be an end of {cmd}, skip the check */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004993 goto skip_end_trigger;
4994 /* else: } does terminate a group */
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00004995 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004996 term_group:
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004997 if (end_trigger && end_trigger == ch
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004998 && (ch != ';' || heredoc_cnt == 0)
4999#if ENABLE_HUSH_CASE
5000 && (ch != ')'
5001 || ctx.ctx_res_w != RES_MATCH
Denys Vlasenko38292b62010-09-05 14:49:40 +02005002 || (!dest.has_quoted_part && strcmp(dest.data, "esac") == 0)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02005003 )
5004#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005005 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005006 if (heredoc_cnt) {
5007 /* This is technically valid:
5008 * { cat <<HERE; }; echo Ok
5009 * heredoc
5010 * heredoc
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005011 * HERE
5012 * but we don't support this.
5013 * We require heredoc to be in enclosing {}/(),
5014 * if any.
5015 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005016 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005017 goto parse_error;
5018 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005019 if (done_word(&dest, &ctx)) {
5020 goto parse_error;
5021 }
5022 done_pipe(&ctx, PIPE_SEQ);
5023 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02005024 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko240c2552009-04-03 03:45:05 +00005025 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00005026 if (!HAS_KEYWORDS
Denys Vlasenko60cb48c2013-01-14 15:57:44 +01005027 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00005028 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005029 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005030#if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02005031 debug_printf_parse("as_string2 '%s'\n", ctx.as_string.data);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005032 if (pstring)
5033 *pstring = ctx.as_string.data;
5034 else
5035 o_free_unsafe(&ctx.as_string);
5036#endif
Denys Vlasenko39701202017-08-02 19:44:05 +02005037 if (ch != ';' && IS_NULL_PIPE(ctx.list_head)) {
5038 /* Example: bare "{ }", "()" */
5039 G.last_exitcode = 2; /* bash compat */
5040 syntax_error_unexpected_ch(ch);
5041 goto parse_error2;
5042 }
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005043 debug_printf_parse("parse_stream return %p: "
5044 "end_trigger char found\n",
5045 ctx.list_head);
Denys Vlasenko39701202017-08-02 19:44:05 +02005046 debug_leave();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005047 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005048 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005049 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00005050 skip_end_trigger:
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005051 if (is_blank)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005052 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005053
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005054 /* Catch <, > before deciding whether this word is
5055 * an assignment. a=1 2>z b=2: b=2 is still assignment */
5056 switch (ch) {
5057 case '>':
5058 redir_fd = redirect_opt_num(&dest);
5059 if (done_word(&dest, &ctx)) {
5060 goto parse_error;
5061 }
5062 redir_style = REDIRECT_OVERWRITE;
5063 if (next == '>') {
5064 redir_style = REDIRECT_APPEND;
5065 ch = i_getch(input);
5066 nommu_addchr(&ctx.as_string, ch);
5067 }
5068#if 0
5069 else if (next == '(') {
5070 syntax_error(">(process) not supported");
5071 goto parse_error;
5072 }
5073#endif
5074 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5075 goto parse_error;
5076 continue; /* back to top of while (1) */
5077 case '<':
5078 redir_fd = redirect_opt_num(&dest);
5079 if (done_word(&dest, &ctx)) {
5080 goto parse_error;
5081 }
5082 redir_style = REDIRECT_INPUT;
5083 if (next == '<') {
5084 redir_style = REDIRECT_HEREDOC;
5085 heredoc_cnt++;
5086 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
5087 ch = i_getch(input);
5088 nommu_addchr(&ctx.as_string, ch);
5089 } else if (next == '>') {
5090 redir_style = REDIRECT_IO;
5091 ch = i_getch(input);
5092 nommu_addchr(&ctx.as_string, ch);
5093 }
5094#if 0
5095 else if (next == '(') {
5096 syntax_error("<(process) not supported");
5097 goto parse_error;
5098 }
5099#endif
5100 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5101 goto parse_error;
5102 continue; /* back to top of while (1) */
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01005103 case '#':
5104 if (dest.length == 0 && !dest.has_quoted_part) {
5105 /* skip "#comment" */
5106 while (1) {
5107 ch = i_peek(input);
5108 if (ch == EOF || ch == '\n')
5109 break;
5110 i_getch(input);
5111 /* note: we do not add it to &ctx.as_string */
5112 }
5113 nommu_addchr(&ctx.as_string, '\n');
5114 continue; /* back to top of while (1) */
5115 }
5116 break;
5117 case '\\':
5118 if (next == '\n') {
5119 /* It's "\<newline>" */
5120#if !BB_MMU
5121 /* Remove trailing '\' from ctx.as_string */
5122 ctx.as_string.data[--ctx.as_string.length] = '\0';
5123#endif
5124 ch = i_getch(input); /* eat it */
5125 continue; /* back to top of while (1) */
5126 }
5127 break;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005128 }
5129
5130 if (dest.o_assignment == MAYBE_ASSIGNMENT
5131 /* check that we are not in word in "a=1 2>word b=1": */
5132 && !ctx.pending_redirect
5133 ) {
5134 /* ch is a special char and thus this word
5135 * cannot be an assignment */
5136 dest.o_assignment = NOT_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02005137 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005138 }
5139
Denys Vlasenkocbfe6ad2009-08-12 19:47:44 +02005140 /* Note: nommu_addchr(&ctx.as_string, ch) is already done */
5141
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005142 switch (ch) {
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01005143 case '#': /* non-comment #: "echo a#b" etc */
5144 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005145 break;
5146 case '\\':
5147 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005148 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005149 xfunc_die();
Eric Andersen25f27032001-04-26 23:22:31 +00005150 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005151 ch = i_getch(input);
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01005152 /* note: ch != '\n' (that case does not reach this place) */
5153 o_addchr(&dest, '\\');
5154 /*nommu_addchr(&ctx.as_string, '\\'); - already done */
5155 o_addchr(&dest, ch);
5156 nommu_addchr(&ctx.as_string, ch);
5157 /* Example: echo Hello \2>file
5158 * we need to know that word 2 is quoted */
5159 dest.has_quoted_part = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005160 break;
5161 case '$':
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005162 if (!parse_dollar(&ctx.as_string, &dest, input, /*quote_mask:*/ 0)) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005163 debug_printf_parse("parse_stream parse error: "
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005164 "parse_dollar returned 0 (error)\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005165 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005166 }
Eric Andersen25f27032001-04-26 23:22:31 +00005167 break;
5168 case '\'':
Denys Vlasenko38292b62010-09-05 14:49:40 +02005169 dest.has_quoted_part = 1;
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005170 if (next == '\'' && !ctx.pending_redirect) {
5171 insert_empty_quoted_str_marker:
5172 nommu_addchr(&ctx.as_string, next);
5173 i_getch(input); /* eat second ' */
5174 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5175 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5176 } else {
5177 while (1) {
5178 ch = i_getch(input);
5179 if (ch == EOF) {
5180 syntax_error_unterm_ch('\'');
5181 goto parse_error;
5182 }
5183 nommu_addchr(&ctx.as_string, ch);
5184 if (ch == '\'')
5185 break;
5186 o_addqchr(&dest, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005187 }
Eric Andersen25f27032001-04-26 23:22:31 +00005188 }
Eric Andersen25f27032001-04-26 23:22:31 +00005189 break;
5190 case '"':
Denys Vlasenko38292b62010-09-05 14:49:40 +02005191 dest.has_quoted_part = 1;
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005192 if (next == '"' && !ctx.pending_redirect)
5193 goto insert_empty_quoted_str_marker;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005194 if (dest.o_assignment == NOT_ASSIGNMENT)
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02005195 dest.o_expflags |= EXP_FLAG_ESC_GLOB_CHARS;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005196 if (!encode_string(&ctx.as_string, &dest, input, '"', /*process_bkslash:*/ 1))
Denys Vlasenko77a7b552010-09-09 12:40:03 +02005197 goto parse_error;
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02005198 dest.o_expflags &= ~EXP_FLAG_ESC_GLOB_CHARS;
Eric Andersen25f27032001-04-26 23:22:31 +00005199 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005200#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005201 case '`': {
Denys Vlasenko60a94142011-05-13 20:57:01 +02005202 USE_FOR_NOMMU(unsigned pos;)
Denys Vlasenko2e48d532010-05-22 17:30:39 +02005203
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005204 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5205 o_addchr(&dest, '`');
Denys Vlasenko60a94142011-05-13 20:57:01 +02005206 USE_FOR_NOMMU(pos = dest.length;)
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005207 if (!add_till_backquote(&dest, input, /*in_dquote:*/ 0))
5208 goto parse_error;
Denys Vlasenko2e48d532010-05-22 17:30:39 +02005209# if !BB_MMU
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005210 o_addstr(&ctx.as_string, dest.data + pos);
5211 o_addchr(&ctx.as_string, '`');
Denys Vlasenko2e48d532010-05-22 17:30:39 +02005212# endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005213 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5214 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00005215 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005216 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005217#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005218 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005219#if ENABLE_HUSH_CASE
5220 case_semi:
5221#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005222 if (done_word(&dest, &ctx)) {
5223 goto parse_error;
5224 }
5225 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005226#if ENABLE_HUSH_CASE
5227 /* Eat multiple semicolons, detect
5228 * whether it means something special */
5229 while (1) {
5230 ch = i_peek(input);
5231 if (ch != ';')
5232 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005233 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005234 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02005235 if (ctx.ctx_res_w == RES_CASE_BODY) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005236 ctx.ctx_dsemicolon = 1;
5237 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005238 break;
5239 }
5240 }
5241#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005242 new_cmd:
5243 /* We just finished a cmd. New one may start
5244 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005245 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02005246 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Eric Andersen25f27032001-04-26 23:22:31 +00005247 break;
5248 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005249 if (done_word(&dest, &ctx)) {
5250 goto parse_error;
5251 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005252 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005253 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005254 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005255 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00005256 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005257 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00005258 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005259 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005260 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005261 if (done_word(&dest, &ctx)) {
5262 goto parse_error;
5263 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005264#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005265 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00005266 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005267#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005268 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005269 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005270 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005271 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00005272 } else {
5273 /* we could pick up a file descriptor choice here
5274 * with redirect_opt_num(), but bash doesn't do it.
5275 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005276 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00005277 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005278 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005279 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005280#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00005281 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005282 if (ctx.ctx_res_w == RES_MATCH
5283 && ctx.command->argv == NULL /* not (word|(... */
5284 && dest.length == 0 /* not word(... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02005285 && dest.has_quoted_part == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005286 ) {
5287 continue;
5288 }
5289#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005290 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005291 if (parse_group(&dest, &ctx, input, ch) != 0) {
5292 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005293 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005294 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005295 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005296#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005297 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005298 goto case_semi;
5299#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005300 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005301 /* proper use of this character is caught by end_trigger:
5302 * if we see {, we call parse_group(..., end_trigger='}')
5303 * and it will match } earlier (not here). */
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01005304 G.last_exitcode = 2;
Denys Vlasenko39701202017-08-02 19:44:05 +02005305 syntax_error_unexpected_ch(ch);
Denys Vlasenko9fda6092017-07-14 13:36:48 +02005306 goto parse_error2;
Eric Andersen25f27032001-04-26 23:22:31 +00005307 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005308 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005309 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005310 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005311 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005312
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005313 parse_error:
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01005314 G.last_exitcode = 1;
Denys Vlasenko9fda6092017-07-14 13:36:48 +02005315 parse_error2:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005316 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005317 struct parse_context *pctx;
5318 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005319
5320 /* Clean up allocated tree.
Denys Vlasenko764b2f02009-06-07 16:05:04 +02005321 * Sample for finding leaks on syntax error recovery path.
5322 * Run it from interactive shell, watch pmap `pidof hush`.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005323 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00005324 * Samples to catch leaks at execution:
Denys Vlasenko5d5a6112016-11-07 19:36:50 +01005325 * while if (true | { true;}); then echo ok; fi; do break; done
5326 * 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 +00005327 */
5328 pctx = &ctx;
5329 do {
5330 /* Update pipe/command counts,
5331 * otherwise freeing may miss some */
5332 done_pipe(pctx, PIPE_SEQ);
5333 debug_printf_clean("freeing list %p from ctx %p\n",
5334 pctx->list_head, pctx);
5335 debug_print_tree(pctx->list_head, 0);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005336 free_pipe_list(pctx->list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005337 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005338#if !BB_MMU
5339 o_free_unsafe(&pctx->as_string);
5340#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005341 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005342 if (pctx != &ctx) {
5343 free(pctx);
5344 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005345 IF_HAS_KEYWORDS(pctx = p2;)
5346 } while (HAS_KEYWORDS && pctx);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005347
Denys Vlasenkoa439fa92011-03-30 19:11:46 +02005348 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005349#if !BB_MMU
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005350 if (pstring)
5351 *pstring = NULL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005352#endif
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005353 debug_leave();
5354 return ERR_PTR;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005355 }
Eric Andersen25f27032001-04-26 23:22:31 +00005356}
5357
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005358
5359/*** Execution routines ***/
5360
5361/* Expansion can recurse, need forward decls: */
Denys Vlasenko637982f2017-07-06 01:52:23 +02005362#if !BASH_PATTERN_SUBST && !ENABLE_HUSH_CASE
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005363/* only ${var/pattern/repl} (its pattern part) needs additional mode */
5364#define expand_string_to_string(str, do_unbackslash) \
5365 expand_string_to_string(str)
5366#endif
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005367static char *expand_string_to_string(const char *str, int do_unbackslash);
Denys Vlasenko26777aa2010-11-22 23:49:10 +01005368#if ENABLE_HUSH_TICK
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005369static int process_command_subs(o_string *dest, const char *s);
Denys Vlasenko26777aa2010-11-22 23:49:10 +01005370#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005371
5372/* expand_strvec_to_strvec() takes a list of strings, expands
5373 * all variable references within and returns a pointer to
5374 * a list of expanded strings, possibly with larger number
5375 * of strings. (Think VAR="a b"; echo $VAR).
5376 * This new list is allocated as a single malloc block.
5377 * NULL-terminated list of char* pointers is at the beginning of it,
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005378 * followed by strings themselves.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005379 * Caller can deallocate entire list by single free(list). */
5380
Denys Vlasenko238081f2010-10-03 14:26:26 +02005381/* A horde of its helpers come first: */
5382
5383static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
5384{
5385 while (--len >= 0) {
Denys Vlasenko9e800222010-10-03 14:28:04 +02005386 char c = *str++;
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005387
Denys Vlasenko9e800222010-10-03 14:28:04 +02005388#if ENABLE_HUSH_BRACE_EXPANSION
5389 if (c == '{' || c == '}') {
5390 /* { -> \{, } -> \} */
5391 o_addchr(o, '\\');
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005392 /* And now we want to add { or } and continue:
5393 * o_addchr(o, c);
5394 * continue;
Denys Vlasenko10ad6222017-04-17 16:13:32 +02005395 * luckily, just falling through achieves this.
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005396 */
Denys Vlasenko9e800222010-10-03 14:28:04 +02005397 }
5398#endif
5399 o_addchr(o, c);
5400 if (c == '\\') {
Denys Vlasenko238081f2010-10-03 14:26:26 +02005401 /* \z -> \\\z; \<eol> -> \\<eol> */
5402 o_addchr(o, '\\');
5403 if (len) {
5404 len--;
5405 o_addchr(o, '\\');
5406 o_addchr(o, *str++);
5407 }
5408 }
5409 }
5410}
5411
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005412/* Store given string, finalizing the word and starting new one whenever
5413 * we encounter IFS char(s). This is used for expanding variable values.
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005414 * End-of-string does NOT finalize word: think about 'echo -$VAR-'.
5415 * Return in *ended_with_ifs:
5416 * 1 - ended with IFS char, else 0 (this includes case of empty str).
5417 */
5418static int expand_on_ifs(int *ended_with_ifs, o_string *output, int n, const char *str)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005419{
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005420 int last_is_ifs = 0;
5421
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005422 while (1) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005423 int word_len;
5424
5425 if (!*str) /* EOL - do not finalize word */
5426 break;
5427 word_len = strcspn(str, G.ifs);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005428 if (word_len) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005429 /* We have WORD_LEN leading non-IFS chars */
Denys Vlasenko238081f2010-10-03 14:26:26 +02005430 if (!(output->o_expflags & EXP_FLAG_GLOB)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005431 o_addblock(output, str, word_len);
Denys Vlasenko238081f2010-10-03 14:26:26 +02005432 } else {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005433 /* Protect backslashes against globbing up :)
Denys Vlasenkoa769e022010-09-10 10:12:34 +02005434 * Example: "v='\*'; echo b$v" prints "b\*"
5435 * (and does not try to glob on "*")
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005436 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005437 o_addblock_duplicate_backslash(output, str, word_len);
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005438 /*/ Why can't we do it easier? */
5439 /*o_addblock(output, str, word_len); - WRONG: "v='\*'; echo Z$v" prints "Z*" instead of "Z\*" */
5440 /*o_addqblock(output, str, word_len); - WRONG: "v='*'; echo Z$v" prints "Z*" instead of Z* files */
5441 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005442 last_is_ifs = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005443 str += word_len;
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005444 if (!*str) /* EOL - do not finalize word */
5445 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005446 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005447
5448 /* We know str here points to at least one IFS char */
5449 last_is_ifs = 1;
5450 str += strspn(str, G.ifs); /* skip IFS chars */
5451 if (!*str) /* EOL - do not finalize word */
5452 break;
5453
5454 /* Start new word... but not always! */
5455 /* Case "v=' a'; echo ''$v": we do need to finalize empty word: */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005456 if (output->has_quoted_part
5457 /* Case "v=' a'; echo $v":
5458 * here nothing precedes the space in $v expansion,
5459 * therefore we should not finish the word
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005460 * (IOW: if there *is* word to finalize, only then do it):
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005461 */
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005462 || (n > 0 && output->data[output->length - 1])
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005463 ) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005464 o_addchr(output, '\0');
5465 debug_print_list("expand_on_ifs", output, n);
5466 n = o_save_ptr(output, n);
5467 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005468 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005469
5470 if (ended_with_ifs)
5471 *ended_with_ifs = last_is_ifs;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005472 debug_print_list("expand_on_ifs[1]", output, n);
5473 return n;
5474}
5475
5476/* Helper to expand $((...)) and heredoc body. These act as if
5477 * they are in double quotes, with the exception that they are not :).
5478 * Just the rules are similar: "expand only $var and `cmd`"
5479 *
5480 * Returns malloced string.
5481 * As an optimization, we return NULL if expansion is not needed.
5482 */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005483#if !BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005484/* only ${var/pattern/repl} (its pattern part) needs additional mode */
5485#define encode_then_expand_string(str, process_bkslash, do_unbackslash) \
5486 encode_then_expand_string(str)
5487#endif
5488static char *encode_then_expand_string(const char *str, int process_bkslash, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005489{
Denys Vlasenko637982f2017-07-06 01:52:23 +02005490#if !BASH_PATTERN_SUBST
5491 const int do_unbackslash = 1;
5492#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005493 char *exp_str;
5494 struct in_str input;
5495 o_string dest = NULL_O_STRING;
5496
5497 if (!strchr(str, '$')
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02005498 && !strchr(str, '\\')
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005499#if ENABLE_HUSH_TICK
5500 && !strchr(str, '`')
5501#endif
5502 ) {
5503 return NULL;
5504 }
5505
5506 /* We need to expand. Example:
5507 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
5508 */
5509 setup_string_in_str(&input, str);
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005510 encode_string(NULL, &dest, &input, EOF, process_bkslash);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005511//TODO: error check (encode_string returns 0 on error)?
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005512 //bb_error_msg("'%s' -> '%s'", str, dest.data);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005513 exp_str = expand_string_to_string(dest.data, /*unbackslash:*/ do_unbackslash);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005514 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
5515 o_free_unsafe(&dest);
5516 return exp_str;
5517}
5518
Denys Vlasenko0b883582016-12-23 16:49:07 +01005519#if ENABLE_FEATURE_SH_MATH
Denys Vlasenko063847d2010-09-15 13:33:02 +02005520static arith_t expand_and_evaluate_arith(const char *arg, const char **errmsg_p)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005521{
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005522 arith_state_t math_state;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005523 arith_t res;
5524 char *exp_str;
5525
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005526 math_state.lookupvar = get_local_var_value;
5527 math_state.setvar = set_local_var_from_halves;
5528 //math_state.endofname = endofname;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005529 exp_str = encode_then_expand_string(arg, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005530 res = arith(&math_state, exp_str ? exp_str : arg);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005531 free(exp_str);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005532 if (errmsg_p)
5533 *errmsg_p = math_state.errmsg;
5534 if (math_state.errmsg)
Denys Vlasenko39701202017-08-02 19:44:05 +02005535 msg_and_die_if_script(math_state.errmsg);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005536 return res;
5537}
5538#endif
5539
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005540#if BASH_PATTERN_SUBST
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005541/* ${var/[/]pattern[/repl]} helpers */
5542static char *strstr_pattern(char *val, const char *pattern, int *size)
5543{
5544 while (1) {
5545 char *end = scan_and_match(val, pattern, SCAN_MOVE_FROM_RIGHT + SCAN_MATCH_LEFT_HALF);
5546 debug_printf_varexp("val:'%s' pattern:'%s' end:'%s'\n", val, pattern, end);
5547 if (end) {
5548 *size = end - val;
5549 return val;
5550 }
5551 if (*val == '\0')
5552 return NULL;
5553 /* Optimization: if "*pat" did not match the start of "string",
5554 * we know that "tring", "ring" etc will not match too:
5555 */
5556 if (pattern[0] == '*')
5557 return NULL;
5558 val++;
5559 }
5560}
5561static char *replace_pattern(char *val, const char *pattern, const char *repl, char exp_op)
5562{
5563 char *result = NULL;
5564 unsigned res_len = 0;
5565 unsigned repl_len = strlen(repl);
5566
5567 while (1) {
5568 int size;
5569 char *s = strstr_pattern(val, pattern, &size);
5570 if (!s)
5571 break;
5572
5573 result = xrealloc(result, res_len + (s - val) + repl_len + 1);
Denys Vlasenko0675b032017-07-24 02:17:05 +02005574 strcpy(mempcpy(result + res_len, val, s - val), repl);
5575 res_len += (s - val) + repl_len;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005576 debug_printf_varexp("val:'%s' s:'%s' result:'%s'\n", val, s, result);
5577
5578 val = s + size;
5579 if (exp_op == '/')
5580 break;
5581 }
Denys Vlasenko0675b032017-07-24 02:17:05 +02005582 if (*val && result) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005583 result = xrealloc(result, res_len + strlen(val) + 1);
5584 strcpy(result + res_len, val);
5585 debug_printf_varexp("val:'%s' result:'%s'\n", val, result);
5586 }
5587 debug_printf_varexp("result:'%s'\n", result);
5588 return result;
5589}
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005590#endif /* BASH_PATTERN_SUBST */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005591
5592/* Helper:
5593 * Handles <SPECIAL_VAR_SYMBOL>varname...<SPECIAL_VAR_SYMBOL> construct.
5594 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005595static NOINLINE const char *expand_one_var(char **to_be_freed_pp, char *arg, char **pp)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005596{
5597 const char *val = NULL;
5598 char *to_be_freed = NULL;
5599 char *p = *pp;
5600 char *var;
5601 char first_char;
5602 char exp_op;
5603 char exp_save = exp_save; /* for compiler */
5604 char *exp_saveptr; /* points to expansion operator */
5605 char *exp_word = exp_word; /* for compiler */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005606 char arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005607
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005608 *p = '\0'; /* replace trailing SPECIAL_VAR_SYMBOL */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005609 var = arg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005610 exp_saveptr = arg[1] ? strchr(VAR_ENCODED_SUBST_OPS, arg[1]) : NULL;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005611 arg0 = arg[0];
5612 first_char = arg[0] = arg0 & 0x7f;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005613 exp_op = 0;
5614
Denys Vlasenko2093ad22017-07-26 00:07:27 +02005615 if (first_char == '#' && arg[1] /* ${#...} but not ${#} */
5616 && (!exp_saveptr /* and ( not(${#<op_char>...}) */
5617 || (arg[2] == '\0' && strchr(SPECIAL_VARS_STR, arg[1])) /* or ${#C} "len of $C" ) */
5618 ) /* NB: skipping ^^^specvar check mishandles ${#::2} */
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005619 ) {
5620 /* It must be length operator: ${#var} */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005621 var++;
5622 exp_op = 'L';
5623 } else {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005624 /* Maybe handle parameter expansion */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005625 if (exp_saveptr /* if 2nd char is one of expansion operators */
5626 && strchr(NUMERIC_SPECVARS_STR, first_char) /* 1st char is special variable */
5627 ) {
5628 /* ${?:0}, ${#[:]%0} etc */
5629 exp_saveptr = var + 1;
5630 } else {
5631 /* ${?}, ${var}, ${var:0}, ${var[:]%0} etc */
5632 exp_saveptr = var+1 + strcspn(var+1, VAR_ENCODED_SUBST_OPS);
5633 }
5634 exp_op = exp_save = *exp_saveptr;
5635 if (exp_op) {
5636 exp_word = exp_saveptr + 1;
5637 if (exp_op == ':') {
5638 exp_op = *exp_word++;
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005639//TODO: try ${var:} and ${var:bogus} in non-bash config
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005640 if (BASH_SUBSTR
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005641 && (!exp_op || !strchr(MINUS_PLUS_EQUAL_QUESTION, exp_op))
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005642 ) {
5643 /* oops... it's ${var:N[:M]}, not ${var:?xxx} or some such */
5644 exp_op = ':';
5645 exp_word--;
5646 }
5647 }
5648 *exp_saveptr = '\0';
5649 } /* else: it's not an expansion op, but bare ${var} */
5650 }
5651
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005652 /* Look up the variable in question */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005653 if (isdigit(var[0])) {
Denys Vlasenko77a7b552010-09-09 12:40:03 +02005654 /* parse_dollar should have vetted var for us */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005655 int n = xatoi_positive(var);
5656 if (n < G.global_argc)
5657 val = G.global_argv[n];
5658 /* else val remains NULL: $N with too big N */
5659 } else {
5660 switch (var[0]) {
5661 case '$': /* pid */
5662 val = utoa(G.root_pid);
5663 break;
5664 case '!': /* bg pid */
5665 val = G.last_bg_pid ? utoa(G.last_bg_pid) : "";
5666 break;
5667 case '?': /* exitcode */
5668 val = utoa(G.last_exitcode);
5669 break;
5670 case '#': /* argc */
5671 val = utoa(G.global_argc ? G.global_argc-1 : 0);
5672 break;
5673 default:
5674 val = get_local_var_value(var);
5675 }
5676 }
5677
5678 /* Handle any expansions */
5679 if (exp_op == 'L') {
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02005680 reinit_unicode_for_hush();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005681 debug_printf_expand("expand: length(%s)=", val);
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02005682 val = utoa(val ? unicode_strlen(val) : 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005683 debug_printf_expand("%s\n", val);
5684 } else if (exp_op) {
5685 if (exp_op == '%' || exp_op == '#') {
5686 /* Standard-mandated substring removal ops:
5687 * ${parameter%word} - remove smallest suffix pattern
5688 * ${parameter%%word} - remove largest suffix pattern
5689 * ${parameter#word} - remove smallest prefix pattern
5690 * ${parameter##word} - remove largest prefix pattern
5691 *
5692 * Word is expanded to produce a glob pattern.
5693 * Then var's value is matched to it and matching part removed.
5694 */
5695 if (val && val[0]) {
Denys Vlasenko4f870492010-09-10 11:06:01 +02005696 char *t;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005697 char *exp_exp_word;
5698 char *loc;
5699 unsigned scan_flags = pick_scan(exp_op, *exp_word);
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02005700 if (exp_op == *exp_word) /* ## or %% */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005701 exp_word++;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005702 exp_exp_word = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005703 if (exp_exp_word)
5704 exp_word = exp_exp_word;
Denys Vlasenko4f870492010-09-10 11:06:01 +02005705 /* HACK ALERT. We depend here on the fact that
5706 * G.global_argv and results of utoa and get_local_var_value
5707 * are actually in writable memory:
5708 * scan_and_match momentarily stores NULs there. */
5709 t = (char*)val;
5710 loc = scan_and_match(t, exp_word, scan_flags);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005711 //bb_error_msg("op:%c str:'%s' pat:'%s' res:'%s'",
Denys Vlasenko4f870492010-09-10 11:06:01 +02005712 // exp_op, t, exp_word, loc);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005713 free(exp_exp_word);
5714 if (loc) { /* match was found */
5715 if (scan_flags & SCAN_MATCH_LEFT_HALF) /* #[#] */
Denys Vlasenko4f870492010-09-10 11:06:01 +02005716 val = loc; /* take right part */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005717 else /* %[%] */
Denys Vlasenko4f870492010-09-10 11:06:01 +02005718 val = to_be_freed = xstrndup(val, loc - val); /* left */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005719 }
5720 }
5721 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005722#if BASH_PATTERN_SUBST
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005723 else if (exp_op == '/' || exp_op == '\\') {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005724 /* It's ${var/[/]pattern[/repl]} thing.
5725 * Note that in encoded form it has TWO parts:
5726 * var/pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
Denys Vlasenko4f870492010-09-10 11:06:01 +02005727 * and if // is used, it is encoded as \:
5728 * var\pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005729 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005730 /* Empty variable always gives nothing: */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005731 // "v=''; echo ${v/*/w}" prints "", not "w"
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005732 if (val && val[0]) {
Denys Vlasenko4f870492010-09-10 11:06:01 +02005733 /* pattern uses non-standard expansion.
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005734 * repl should be unbackslashed and globbed
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005735 * by the usual expansion rules:
5736 * >az; >bz;
5737 * v='a bz'; echo "${v/a*z/a*z}" prints "a*z"
5738 * v='a bz'; echo "${v/a*z/\z}" prints "\z"
5739 * v='a bz'; echo ${v/a*z/a*z} prints "az"
5740 * v='a bz'; echo ${v/a*z/\z} prints "z"
5741 * (note that a*z _pattern_ is never globbed!)
5742 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005743 char *pattern, *repl, *t;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005744 pattern = encode_then_expand_string(exp_word, /*process_bkslash:*/ 0, /*unbackslash:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005745 if (!pattern)
5746 pattern = xstrdup(exp_word);
5747 debug_printf_varexp("pattern:'%s'->'%s'\n", exp_word, pattern);
5748 *p++ = SPECIAL_VAR_SYMBOL;
5749 exp_word = p;
5750 p = strchr(p, SPECIAL_VAR_SYMBOL);
5751 *p = '\0';
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005752 repl = encode_then_expand_string(exp_word, /*process_bkslash:*/ arg0 & 0x80, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005753 debug_printf_varexp("repl:'%s'->'%s'\n", exp_word, repl);
5754 /* HACK ALERT. We depend here on the fact that
5755 * G.global_argv and results of utoa and get_local_var_value
5756 * are actually in writable memory:
5757 * replace_pattern momentarily stores NULs there. */
5758 t = (char*)val;
5759 to_be_freed = replace_pattern(t,
5760 pattern,
5761 (repl ? repl : exp_word),
5762 exp_op);
5763 if (to_be_freed) /* at least one replace happened */
5764 val = to_be_freed;
5765 free(pattern);
5766 free(repl);
5767 }
5768 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005769#endif /* BASH_PATTERN_SUBST */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005770 else if (exp_op == ':') {
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005771#if BASH_SUBSTR && ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005772 /* It's ${var:N[:M]} bashism.
5773 * Note that in encoded form it has TWO parts:
5774 * var:N<SPECIAL_VAR_SYMBOL>M<SPECIAL_VAR_SYMBOL>
5775 */
5776 arith_t beg, len;
Denys Vlasenko063847d2010-09-15 13:33:02 +02005777 const char *errmsg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005778
Denys Vlasenko063847d2010-09-15 13:33:02 +02005779 beg = expand_and_evaluate_arith(exp_word, &errmsg);
5780 if (errmsg)
5781 goto arith_err;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005782 debug_printf_varexp("beg:'%s'=%lld\n", exp_word, (long long)beg);
5783 *p++ = SPECIAL_VAR_SYMBOL;
5784 exp_word = p;
5785 p = strchr(p, SPECIAL_VAR_SYMBOL);
5786 *p = '\0';
Denys Vlasenko063847d2010-09-15 13:33:02 +02005787 len = expand_and_evaluate_arith(exp_word, &errmsg);
5788 if (errmsg)
5789 goto arith_err;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005790 debug_printf_varexp("len:'%s'=%lld\n", exp_word, (long long)len);
Denys Vlasenkoe32b6502017-07-17 16:46:57 +02005791 if (beg < 0) {
5792 /* negative beg counts from the end */
5793 beg = (arith_t)strlen(val) + beg;
5794 if (beg < 0) /* ${v: -999999} is "" */
5795 beg = len = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005796 }
Denys Vlasenkoe32b6502017-07-17 16:46:57 +02005797 debug_printf_varexp("from val:'%s'\n", val);
5798 if (len < 0) {
5799 /* in bash, len=-n means strlen()-n */
5800 len = (arith_t)strlen(val) - beg + len;
5801 if (len < 0) /* bash compat */
Denys Vlasenko39701202017-08-02 19:44:05 +02005802 msg_and_die_if_script("%s: substring expression < 0", var);
Denys Vlasenkoe32b6502017-07-17 16:46:57 +02005803 }
Denys Vlasenko0ba80e42017-07-17 16:50:20 +02005804 if (len <= 0 || !val || beg >= strlen(val)) {
Denys Vlasenkoe32b6502017-07-17 16:46:57 +02005805 arith_err:
5806 val = NULL;
5807 } else {
5808 /* Paranoia. What if user entered 9999999999999
5809 * which fits in arith_t but not int? */
5810 if (len >= INT_MAX)
5811 len = INT_MAX;
5812 val = to_be_freed = xstrndup(val + beg, len);
5813 }
5814 debug_printf_varexp("val:'%s'\n", val);
5815#else /* not (HUSH_SUBSTR_EXPANSION && FEATURE_SH_MATH) */
Denys Vlasenko39701202017-08-02 19:44:05 +02005816 msg_and_die_if_script("malformed ${%s:...}", var);
Denys Vlasenkoe32b6502017-07-17 16:46:57 +02005817 val = NULL;
5818#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005819 } else { /* one of "-=+?" */
5820 /* Standard-mandated substitution ops:
5821 * ${var?word} - indicate error if unset
5822 * If var is unset, word (or a message indicating it is unset
5823 * if word is null) is written to standard error
5824 * and the shell exits with a non-zero exit status.
5825 * Otherwise, the value of var is substituted.
5826 * ${var-word} - use default value
5827 * If var is unset, word is substituted.
5828 * ${var=word} - assign and use default value
5829 * If var is unset, word is assigned to var.
5830 * In all cases, final value of var is substituted.
5831 * ${var+word} - use alternative value
5832 * If var is unset, null is substituted.
5833 * Otherwise, word is substituted.
5834 *
5835 * Word is subjected to tilde expansion, parameter expansion,
5836 * command substitution, and arithmetic expansion.
5837 * If word is not needed, it is not expanded.
5838 *
5839 * Colon forms (${var:-word}, ${var:=word} etc) do the same,
5840 * but also treat null var as if it is unset.
5841 */
5842 int use_word = (!val || ((exp_save == ':') && !val[0]));
5843 if (exp_op == '+')
5844 use_word = !use_word;
5845 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
5846 (exp_save == ':') ? "true" : "false", use_word);
5847 if (use_word) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005848 to_be_freed = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005849 if (to_be_freed)
5850 exp_word = to_be_freed;
5851 if (exp_op == '?') {
5852 /* mimic bash message */
Denys Vlasenko39701202017-08-02 19:44:05 +02005853 msg_and_die_if_script("%s: %s",
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005854 var,
Denys Vlasenko645c6972017-07-25 15:18:57 +02005855 exp_word[0]
5856 ? exp_word
5857 : "parameter null or not set"
5858 /* ash has more specific messages, a-la: */
5859 /*: (exp_save == ':' ? "parameter null or not set" : "parameter not set")*/
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005860 );
5861//TODO: how interactive bash aborts expansion mid-command?
5862 } else {
5863 val = exp_word;
5864 }
5865
5866 if (exp_op == '=') {
5867 /* ${var=[word]} or ${var:=[word]} */
5868 if (isdigit(var[0]) || var[0] == '#') {
5869 /* mimic bash message */
Denys Vlasenko39701202017-08-02 19:44:05 +02005870 msg_and_die_if_script("$%s: cannot assign in this way", var);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005871 val = NULL;
5872 } else {
5873 char *new_var = xasprintf("%s=%s", var, val);
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02005874 set_local_var(new_var, /*flag:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005875 }
5876 }
5877 }
5878 } /* one of "-=+?" */
5879
5880 *exp_saveptr = exp_save;
5881 } /* if (exp_op) */
5882
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005883 arg[0] = arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005884
5885 *pp = p;
5886 *to_be_freed_pp = to_be_freed;
5887 return val;
5888}
5889
5890/* Expand all variable references in given string, adding words to list[]
5891 * at n, n+1,... positions. Return updated n (so that list[n] is next one
5892 * to be filled). This routine is extremely tricky: has to deal with
5893 * variables/parameters with whitespace, $* and $@, and constructs like
5894 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005895static NOINLINE int expand_vars_to_list(o_string *output, int n, char *arg)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005896{
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005897 /* output->o_expflags & EXP_FLAG_SINGLEWORD (0x80) if we are in
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005898 * expansion of right-hand side of assignment == 1-element expand.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005899 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005900 char cant_be_null = 0; /* only bit 0x80 matters */
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005901 int ended_in_ifs = 0; /* did last unquoted expansion end with IFS chars? */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005902 char *p;
5903
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005904 debug_printf_expand("expand_vars_to_list: arg:'%s' singleword:%x\n", arg,
5905 !!(output->o_expflags & EXP_FLAG_SINGLEWORD));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005906 debug_print_list("expand_vars_to_list", output, n);
5907 n = o_save_ptr(output, n);
5908 debug_print_list("expand_vars_to_list[0]", output, n);
5909
5910 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
5911 char first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005912 char *to_be_freed = NULL;
5913 const char *val = NULL;
5914#if ENABLE_HUSH_TICK
5915 o_string subst_result = NULL_O_STRING;
5916#endif
Denys Vlasenko0b883582016-12-23 16:49:07 +01005917#if ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005918 char arith_buf[sizeof(arith_t)*3 + 2];
5919#endif
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005920
5921 if (ended_in_ifs) {
5922 o_addchr(output, '\0');
5923 n = o_save_ptr(output, n);
5924 ended_in_ifs = 0;
5925 }
5926
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005927 o_addblock(output, arg, p - arg);
5928 debug_print_list("expand_vars_to_list[1]", output, n);
5929 arg = ++p;
5930 p = strchr(p, SPECIAL_VAR_SYMBOL);
5931
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005932 /* Fetch special var name (if it is indeed one of them)
5933 * and quote bit, force the bit on if singleword expansion -
5934 * important for not getting v=$@ expand to many words. */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005935 first_ch = arg[0] | (output->o_expflags & EXP_FLAG_SINGLEWORD);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005936
5937 /* Is this variable quoted and thus expansion can't be null?
5938 * "$@" is special. Even if quoted, it can still
5939 * expand to nothing (not even an empty string),
5940 * thus it is excluded. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005941 if ((first_ch & 0x7f) != '@')
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005942 cant_be_null |= first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005943
5944 switch (first_ch & 0x7f) {
5945 /* Highest bit in first_ch indicates that var is double-quoted */
5946 case '*':
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005947 case '@': {
5948 int i;
5949 if (!G.global_argv[1])
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005950 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005951 i = 1;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005952 cant_be_null |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005953 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005954 while (G.global_argv[i]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005955 n = expand_on_ifs(NULL, output, n, G.global_argv[i]);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005956 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
5957 if (G.global_argv[i++][0] && G.global_argv[i]) {
5958 /* this argv[] is not empty and not last:
5959 * put terminating NUL, start new word */
5960 o_addchr(output, '\0');
5961 debug_print_list("expand_vars_to_list[2]", output, n);
5962 n = o_save_ptr(output, n);
5963 debug_print_list("expand_vars_to_list[3]", output, n);
5964 }
5965 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005966 } else
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005967 /* If EXP_FLAG_SINGLEWORD, we handle assignment 'a=....$@.....'
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005968 * and in this case should treat it like '$*' - see 'else...' below */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005969 if (first_ch == ('@'|0x80) /* quoted $@ */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005970 && !(output->o_expflags & EXP_FLAG_SINGLEWORD) /* not v="$@" case */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005971 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005972 while (1) {
5973 o_addQstr(output, G.global_argv[i]);
5974 if (++i >= G.global_argc)
5975 break;
5976 o_addchr(output, '\0');
5977 debug_print_list("expand_vars_to_list[4]", output, n);
5978 n = o_save_ptr(output, n);
5979 }
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005980 } else { /* quoted $* (or v="$@" case): add as one word */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005981 while (1) {
5982 o_addQstr(output, G.global_argv[i]);
5983 if (!G.global_argv[++i])
5984 break;
5985 if (G.ifs[0])
5986 o_addchr(output, G.ifs[0]);
5987 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005988 output->has_quoted_part = 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005989 }
5990 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005991 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005992 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
5993 /* "Empty variable", used to make "" etc to not disappear */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005994 output->has_quoted_part = 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005995 arg++;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005996 cant_be_null = 0x80;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005997 break;
5998#if ENABLE_HUSH_TICK
5999 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02006000 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006001 arg++;
6002 /* Can't just stuff it into output o_string,
6003 * expanded result may need to be globbed
Denys Vlasenko10ad6222017-04-17 16:13:32 +02006004 * and $IFS-split */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006005 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
6006 G.last_exitcode = process_command_subs(&subst_result, arg);
6007 debug_printf_subst("SUBST RES:%d '%s'\n", G.last_exitcode, subst_result.data);
6008 val = subst_result.data;
6009 goto store_val;
6010#endif
Denys Vlasenko0b883582016-12-23 16:49:07 +01006011#if ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006012 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
6013 arith_t res;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006014
6015 arg++; /* skip '+' */
6016 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
6017 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denys Vlasenko063847d2010-09-15 13:33:02 +02006018 res = expand_and_evaluate_arith(arg, NULL);
Denys Vlasenkobed7c812010-09-16 11:50:46 +02006019 debug_printf_subst("ARITH RES '"ARITH_FMT"'\n", res);
6020 sprintf(arith_buf, ARITH_FMT, res);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006021 val = arith_buf;
6022 break;
6023 }
6024#endif
6025 default:
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02006026 val = expand_one_var(&to_be_freed, arg, &p);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006027 IF_HUSH_TICK(store_val:)
6028 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02006029 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val,
6030 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006031 if (val && val[0]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02006032 n = expand_on_ifs(&ended_in_ifs, output, n, val);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006033 val = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006034 }
6035 } else { /* quoted $VAR, val will be appended below */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02006036 output->has_quoted_part = 1;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02006037 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val,
6038 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006039 }
6040 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006041 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
6042
6043 if (val && val[0]) {
6044 o_addQstr(output, val);
6045 }
6046 free(to_be_freed);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02006047
6048 /* Restore NULL'ed SPECIAL_VAR_SYMBOL.
6049 * Do the check to avoid writing to a const string. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006050 if (*p != SPECIAL_VAR_SYMBOL)
6051 *p = SPECIAL_VAR_SYMBOL;
6052
6053#if ENABLE_HUSH_TICK
6054 o_free(&subst_result);
6055#endif
6056 arg = ++p;
6057 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
6058
6059 if (arg[0]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02006060 if (ended_in_ifs) {
6061 o_addchr(output, '\0');
6062 n = o_save_ptr(output, n);
6063 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006064 debug_print_list("expand_vars_to_list[a]", output, n);
6065 /* this part is literal, and it was already pre-quoted
6066 * if needed (much earlier), do not use o_addQstr here! */
6067 o_addstr_with_NUL(output, arg);
6068 debug_print_list("expand_vars_to_list[b]", output, n);
6069 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02006070 && !(cant_be_null & 0x80) /* and all vars were not quoted. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006071 ) {
6072 n--;
6073 /* allow to reuse list[n] later without re-growth */
6074 output->has_empty_slot = 1;
6075 } else {
6076 o_addchr(output, '\0');
6077 }
6078
6079 return n;
6080}
6081
Denys Vlasenko95d48f22010-09-08 13:58:55 +02006082static char **expand_variables(char **argv, unsigned expflags)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006083{
6084 int n;
6085 char **list;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006086 o_string output = NULL_O_STRING;
6087
Denys Vlasenko95d48f22010-09-08 13:58:55 +02006088 output.o_expflags = expflags;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006089
6090 n = 0;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006091 while (*argv) {
Denys Vlasenko95d48f22010-09-08 13:58:55 +02006092 n = expand_vars_to_list(&output, n, *argv);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006093 argv++;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006094 }
6095 debug_print_list("expand_variables", &output, n);
6096
6097 /* output.data (malloced in one block) gets returned in "list" */
6098 list = o_finalize_list(&output, n);
6099 debug_print_strings("expand_variables[1]", list);
6100 return list;
6101}
6102
6103static char **expand_strvec_to_strvec(char **argv)
6104{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02006105 return expand_variables(argv, EXP_FLAG_GLOB | EXP_FLAG_ESC_GLOB_CHARS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006106}
6107
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01006108#if BASH_TEST2
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006109static char **expand_strvec_to_strvec_singleword_noglob(char **argv)
6110{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02006111 return expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006112}
6113#endif
6114
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02006115/* Used for expansion of right hand of assignments,
6116 * $((...)), heredocs, variable espansion parts.
6117 *
6118 * NB: should NOT do globbing!
6119 * "export v=/bin/c*; env | grep ^v=" outputs "v=/bin/c*"
6120 */
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006121static char *expand_string_to_string(const char *str, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006122{
Denys Vlasenko637982f2017-07-06 01:52:23 +02006123#if !BASH_PATTERN_SUBST && !ENABLE_HUSH_CASE
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02006124 const int do_unbackslash = 1;
6125#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006126 char *argv[2], **list;
6127
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006128 debug_printf_expand("string_to_string<='%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006129 /* This is generally an optimization, but it also
6130 * handles "", which otherwise trips over !list[0] check below.
6131 * (is this ever happens that we actually get str="" here?)
6132 */
6133 if (!strchr(str, SPECIAL_VAR_SYMBOL) && !strchr(str, '\\')) {
6134 //TODO: Can use on strings with \ too, just unbackslash() them?
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006135 debug_printf_expand("string_to_string(fast)=>'%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006136 return xstrdup(str);
6137 }
6138
6139 argv[0] = (char*)str;
6140 argv[1] = NULL;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006141 list = expand_variables(argv, do_unbackslash
6142 ? EXP_FLAG_ESC_GLOB_CHARS | EXP_FLAG_SINGLEWORD
6143 : EXP_FLAG_SINGLEWORD
6144 );
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006145 if (HUSH_DEBUG)
6146 if (!list[0] || list[1])
6147 bb_error_msg_and_die("BUG in varexp2");
6148 /* actually, just move string 2*sizeof(char*) bytes back */
6149 overlapping_strcpy((char*)list, list[0]);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006150 if (do_unbackslash)
6151 unbackslash((char*)list);
6152 debug_printf_expand("string_to_string=>'%s'\n", (char*)list);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006153 return (char*)list;
6154}
6155
Denys Vlasenkobd43c672017-07-05 23:12:15 +02006156/* Used for "eval" builtin and case string */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006157static char* expand_strvec_to_string(char **argv)
6158{
6159 char **list;
6160
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02006161 list = expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006162 /* Convert all NULs to spaces */
6163 if (list[0]) {
6164 int n = 1;
6165 while (list[n]) {
6166 if (HUSH_DEBUG)
6167 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
6168 bb_error_msg_and_die("BUG in varexp3");
6169 /* bash uses ' ' regardless of $IFS contents */
6170 list[n][-1] = ' ';
6171 n++;
6172 }
6173 }
Denys Vlasenko78c9c732016-09-29 01:44:17 +02006174 overlapping_strcpy((char*)list, list[0] ? list[0] : "");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006175 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
6176 return (char*)list;
6177}
6178
6179static char **expand_assignments(char **argv, int count)
6180{
6181 int i;
6182 char **p;
6183
6184 G.expanded_assignments = p = NULL;
6185 /* Expand assignments into one string each */
6186 for (i = 0; i < count; i++) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006187 G.expanded_assignments = p = add_string_to_strings(p, expand_string_to_string(argv[i], /*unbackslash:*/ 1));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006188 }
6189 G.expanded_assignments = NULL;
6190 return p;
6191}
6192
6193
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006194static void switch_off_special_sigs(unsigned mask)
6195{
6196 unsigned sig = 0;
6197 while ((mask >>= 1) != 0) {
6198 sig++;
6199 if (!(mask & 1))
6200 continue;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006201#if ENABLE_HUSH_TRAP
6202 if (G_traps) {
6203 if (G_traps[sig] && !G_traps[sig][0])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006204 /* trap is '', has to remain SIG_IGN */
6205 continue;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006206 free(G_traps[sig]);
6207 G_traps[sig] = NULL;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006208 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006209#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006210 /* We are here only if no trap or trap was not '' */
Denys Vlasenko0806e402011-05-12 23:06:20 +02006211 install_sighandler(sig, SIG_DFL);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006212 }
6213}
6214
Denys Vlasenkob347df92011-08-09 22:49:15 +02006215#if BB_MMU
6216/* never called */
6217void re_execute_shell(char ***to_free, const char *s,
6218 char *g_argv0, char **g_argv,
6219 char **builtin_argv) NORETURN;
6220
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006221static void reset_traps_to_defaults(void)
6222{
6223 /* This function is always called in a child shell
6224 * after fork (not vfork, NOMMU doesn't use this function).
6225 */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006226 IF_HUSH_TRAP(unsigned sig;)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006227 unsigned mask;
6228
6229 /* Child shells are not interactive.
6230 * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
6231 * Testcase: (while :; do :; done) + ^Z should background.
6232 * Same goes for SIGTERM, SIGHUP, SIGINT.
6233 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006234 mask = (G.special_sig_mask & SPECIAL_INTERACTIVE_SIGS) | G_fatal_sig_mask;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006235 if (!G_traps && !mask)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006236 return; /* already no traps and no special sigs */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006237
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006238 /* Switch off special sigs */
6239 switch_off_special_sigs(mask);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006240# if ENABLE_HUSH_JOB
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006241 G_fatal_sig_mask = 0;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006242# endif
Denys Vlasenko10c01312011-05-11 11:49:21 +02006243 G.special_sig_mask &= ~SPECIAL_INTERACTIVE_SIGS;
Denys Vlasenkof58f7052011-05-12 02:10:33 +02006244 /* SIGQUIT,SIGCHLD and maybe SPECIAL_JOBSTOP_SIGS
6245 * remain set in G.special_sig_mask */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006246
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006247# if ENABLE_HUSH_TRAP
6248 if (!G_traps)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006249 return;
6250
6251 /* Reset all sigs to default except ones with empty traps */
6252 for (sig = 0; sig < NSIG; sig++) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006253 if (!G_traps[sig])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006254 continue; /* no trap: nothing to do */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006255 if (!G_traps[sig][0])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006256 continue; /* empty trap: has to remain SIG_IGN */
6257 /* sig has non-empty trap, reset it: */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006258 free(G_traps[sig]);
6259 G_traps[sig] = NULL;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006260 /* There is no signal for trap 0 (EXIT) */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006261 if (sig == 0)
6262 continue;
Denys Vlasenko0806e402011-05-12 23:06:20 +02006263 install_sighandler(sig, pick_sighandler(sig));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006264 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006265# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006266}
6267
6268#else /* !BB_MMU */
6269
6270static void re_execute_shell(char ***to_free, const char *s,
6271 char *g_argv0, char **g_argv,
6272 char **builtin_argv) NORETURN;
6273static void re_execute_shell(char ***to_free, const char *s,
6274 char *g_argv0, char **g_argv,
6275 char **builtin_argv)
6276{
6277# define NOMMU_HACK_FMT ("-$%x:%x:%x:%x:%x:%llx" IF_HUSH_LOOPS(":%x"))
6278 /* delims + 2 * (number of bytes in printed hex numbers) */
6279 char param_buf[sizeof(NOMMU_HACK_FMT) + 2 * (sizeof(int)*6 + sizeof(long long)*1)];
6280 char *heredoc_argv[4];
6281 struct variable *cur;
6282# if ENABLE_HUSH_FUNCTIONS
6283 struct function *funcp;
6284# endif
6285 char **argv, **pp;
6286 unsigned cnt;
6287 unsigned long long empty_trap_mask;
6288
6289 if (!g_argv0) { /* heredoc */
6290 argv = heredoc_argv;
6291 argv[0] = (char *) G.argv0_for_re_execing;
6292 argv[1] = (char *) "-<";
6293 argv[2] = (char *) s;
6294 argv[3] = NULL;
6295 pp = &argv[3]; /* used as pointer to empty environment */
6296 goto do_exec;
6297 }
6298
6299 cnt = 0;
6300 pp = builtin_argv;
6301 if (pp) while (*pp++)
6302 cnt++;
6303
6304 empty_trap_mask = 0;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006305 if (G_traps) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006306 int sig;
6307 for (sig = 1; sig < NSIG; sig++) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006308 if (G_traps[sig] && !G_traps[sig][0])
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006309 empty_trap_mask |= 1LL << sig;
6310 }
6311 }
6312
6313 sprintf(param_buf, NOMMU_HACK_FMT
6314 , (unsigned) G.root_pid
6315 , (unsigned) G.root_ppid
6316 , (unsigned) G.last_bg_pid
6317 , (unsigned) G.last_exitcode
6318 , cnt
6319 , empty_trap_mask
6320 IF_HUSH_LOOPS(, G.depth_of_loop)
6321 );
6322# undef NOMMU_HACK_FMT
6323 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<etc...> <vars...> <funcs...>
6324 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
6325 */
6326 cnt += 6;
6327 for (cur = G.top_var; cur; cur = cur->next) {
6328 if (!cur->flg_export || cur->flg_read_only)
6329 cnt += 2;
6330 }
6331# if ENABLE_HUSH_FUNCTIONS
6332 for (funcp = G.top_func; funcp; funcp = funcp->next)
6333 cnt += 3;
6334# endif
6335 pp = g_argv;
6336 while (*pp++)
6337 cnt++;
6338 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
6339 *pp++ = (char *) G.argv0_for_re_execing;
6340 *pp++ = param_buf;
6341 for (cur = G.top_var; cur; cur = cur->next) {
6342 if (strcmp(cur->varstr, hush_version_str) == 0)
6343 continue;
6344 if (cur->flg_read_only) {
6345 *pp++ = (char *) "-R";
6346 *pp++ = cur->varstr;
6347 } else if (!cur->flg_export) {
6348 *pp++ = (char *) "-V";
6349 *pp++ = cur->varstr;
6350 }
6351 }
6352# if ENABLE_HUSH_FUNCTIONS
6353 for (funcp = G.top_func; funcp; funcp = funcp->next) {
6354 *pp++ = (char *) "-F";
6355 *pp++ = funcp->name;
6356 *pp++ = funcp->body_as_string;
6357 }
6358# endif
6359 /* We can pass activated traps here. Say, -Tnn:trap_string
6360 *
6361 * However, POSIX says that subshells reset signals with traps
6362 * to SIG_DFL.
6363 * I tested bash-3.2 and it not only does that with true subshells
6364 * of the form ( list ), but with any forked children shells.
6365 * I set trap "echo W" WINCH; and then tried:
6366 *
6367 * { echo 1; sleep 20; echo 2; } &
6368 * while true; do echo 1; sleep 20; echo 2; break; done &
6369 * true | { echo 1; sleep 20; echo 2; } | cat
6370 *
6371 * In all these cases sending SIGWINCH to the child shell
6372 * did not run the trap. If I add trap "echo V" WINCH;
6373 * _inside_ group (just before echo 1), it works.
6374 *
6375 * I conclude it means we don't need to pass active traps here.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006376 */
6377 *pp++ = (char *) "-c";
6378 *pp++ = (char *) s;
6379 if (builtin_argv) {
6380 while (*++builtin_argv)
6381 *pp++ = *builtin_argv;
6382 *pp++ = (char *) "";
6383 }
6384 *pp++ = g_argv0;
6385 while (*g_argv)
6386 *pp++ = *g_argv++;
6387 /* *pp = NULL; - is already there */
6388 pp = environ;
6389
6390 do_exec:
6391 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02006392 /* Don't propagate SIG_IGN to the child */
6393 if (SPECIAL_JOBSTOP_SIGS != 0)
6394 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006395 execve(bb_busybox_exec_path, argv, pp);
6396 /* Fallback. Useful for init=/bin/hush usage etc */
6397 if (argv[0][0] == '/')
6398 execve(argv[0], argv, pp);
6399 xfunc_error_retval = 127;
6400 bb_error_msg_and_die("can't re-execute the shell");
6401}
6402#endif /* !BB_MMU */
6403
6404
6405static int run_and_free_list(struct pipe *pi);
6406
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006407/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006408 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
6409 * end_trigger controls how often we stop parsing
6410 * NUL: parse all, execute, return
6411 * ';': parse till ';' or newline, execute, repeat till EOF
6412 */
6413static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00006414{
Denys Vlasenko00243b02009-11-16 02:00:03 +01006415 /* Why we need empty flag?
6416 * An obscure corner case "false; ``; echo $?":
6417 * empty command in `` should still set $? to 0.
6418 * But we can't just set $? to 0 at the start,
6419 * this breaks "false; echo `echo $?`" case.
6420 */
6421 bool empty = 1;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006422 while (1) {
6423 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006424
Denys Vlasenkoa1463192011-01-18 17:55:04 +01006425#if ENABLE_HUSH_INTERACTIVE
6426 if (end_trigger == ';')
6427 inp->promptmode = 0; /* PS1 */
6428#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006429 pipe_list = parse_stream(NULL, inp, end_trigger);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02006430 if (!pipe_list || pipe_list == ERR_PTR) { /* EOF/error */
6431 /* If we are in "big" script
6432 * (not in `cmd` or something similar)...
6433 */
6434 if (pipe_list == ERR_PTR && end_trigger == ';') {
6435 /* Discard cached input (rest of line) */
6436 int ch = inp->last_char;
6437 while (ch != EOF && ch != '\n') {
6438 //bb_error_msg("Discarded:'%c'", ch);
6439 ch = i_getch(inp);
6440 }
6441 /* Force prompt */
6442 inp->p = NULL;
6443 /* This stream isn't empty */
6444 empty = 0;
6445 continue;
6446 }
6447 if (!pipe_list && empty)
Denys Vlasenko00243b02009-11-16 02:00:03 +01006448 G.last_exitcode = 0;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006449 break;
Denys Vlasenko00243b02009-11-16 02:00:03 +01006450 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006451 debug_print_tree(pipe_list, 0);
6452 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
6453 run_and_free_list(pipe_list);
Denys Vlasenko00243b02009-11-16 02:00:03 +01006454 empty = 0;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006455 if (G_flag_return_in_progress == 1)
Denys Vlasenko68d5cb52011-03-24 02:50:03 +01006456 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006457 }
Eric Andersen25f27032001-04-26 23:22:31 +00006458}
6459
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006460static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00006461{
6462 struct in_str input;
6463 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006464 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00006465}
6466
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006467static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00006468{
Eric Andersen25f27032001-04-26 23:22:31 +00006469 struct in_str input;
6470 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006471 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00006472}
6473
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006474#if ENABLE_HUSH_TICK
6475static FILE *generate_stream_from_string(const char *s, pid_t *pid_p)
6476{
6477 pid_t pid;
6478 int channel[2];
6479# if !BB_MMU
6480 char **to_free = NULL;
6481# endif
6482
6483 xpipe(channel);
6484 pid = BB_MMU ? xfork() : xvfork();
6485 if (pid == 0) { /* child */
6486 disable_restore_tty_pgrp_on_exit();
6487 /* Process substitution is not considered to be usual
6488 * 'command execution'.
6489 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
6490 */
6491 bb_signals(0
6492 + (1 << SIGTSTP)
6493 + (1 << SIGTTIN)
6494 + (1 << SIGTTOU)
6495 , SIG_IGN);
6496 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
6497 close(channel[0]); /* NB: close _first_, then move fd! */
6498 xmove_fd(channel[1], 1);
6499 /* Prevent it from trying to handle ctrl-z etc */
6500 IF_HUSH_JOB(G.run_list_level = 1;)
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006501# if ENABLE_HUSH_TRAP
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006502 /* Awful hack for `trap` or $(trap).
6503 *
6504 * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html
6505 * contains an example where "trap" is executed in a subshell:
6506 *
6507 * save_traps=$(trap)
6508 * ...
6509 * eval "$save_traps"
6510 *
6511 * Standard does not say that "trap" in subshell shall print
6512 * parent shell's traps. It only says that its output
6513 * must have suitable form, but then, in the above example
6514 * (which is not supposed to be normative), it implies that.
6515 *
6516 * bash (and probably other shell) does implement it
6517 * (traps are reset to defaults, but "trap" still shows them),
6518 * but as a result, "trap" logic is hopelessly messed up:
6519 *
6520 * # trap
6521 * trap -- 'echo Ho' SIGWINCH <--- we have a handler
6522 * # (trap) <--- trap is in subshell - no output (correct, traps are reset)
6523 * # true | trap <--- trap is in subshell - no output (ditto)
6524 * # echo `true | trap` <--- in subshell - output (but traps are reset!)
6525 * trap -- 'echo Ho' SIGWINCH
6526 * # echo `(trap)` <--- in subshell in subshell - output
6527 * trap -- 'echo Ho' SIGWINCH
6528 * # echo `true | (trap)` <--- in subshell in subshell in subshell - output!
6529 * trap -- 'echo Ho' SIGWINCH
6530 *
6531 * The rules when to forget and when to not forget traps
6532 * get really complex and nonsensical.
6533 *
6534 * Our solution: ONLY bare $(trap) or `trap` is special.
6535 */
6536 s = skip_whitespace(s);
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01006537 if (is_prefixed_with(s, "trap")
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006538 && skip_whitespace(s + 4)[0] == '\0'
6539 ) {
6540 static const char *const argv[] = { NULL, NULL };
6541 builtin_trap((char**)argv);
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02006542 fflush_all(); /* important */
6543 _exit(0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006544 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006545# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006546# if BB_MMU
6547 reset_traps_to_defaults();
6548 parse_and_run_string(s);
6549 _exit(G.last_exitcode);
6550# else
6551 /* We re-execute after vfork on NOMMU. This makes this script safe:
6552 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
6553 * huge=`cat BIG` # was blocking here forever
6554 * echo OK
6555 */
6556 re_execute_shell(&to_free,
6557 s,
6558 G.global_argv[0],
6559 G.global_argv + 1,
6560 NULL);
6561# endif
6562 }
6563
6564 /* parent */
6565 *pid_p = pid;
6566# if ENABLE_HUSH_FAST
6567 G.count_SIGCHLD++;
6568//bb_error_msg("[%d] fork in generate_stream_from_string:"
6569// " G.count_SIGCHLD:%d G.handled_SIGCHLD:%d",
6570// getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6571# endif
6572 enable_restore_tty_pgrp_on_exit();
6573# if !BB_MMU
6574 free(to_free);
6575# endif
6576 close(channel[1]);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02006577 return remember_FILE(xfdopen_for_read(channel[0]));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006578}
6579
6580/* Return code is exit status of the process that is run. */
6581static int process_command_subs(o_string *dest, const char *s)
6582{
6583 FILE *fp;
6584 struct in_str pipe_str;
6585 pid_t pid;
6586 int status, ch, eol_cnt;
6587
6588 fp = generate_stream_from_string(s, &pid);
6589
6590 /* Now send results of command back into original context */
6591 setup_file_in_str(&pipe_str, fp);
6592 eol_cnt = 0;
6593 while ((ch = i_getch(&pipe_str)) != EOF) {
6594 if (ch == '\n') {
6595 eol_cnt++;
6596 continue;
6597 }
6598 while (eol_cnt) {
6599 o_addchr(dest, '\n');
6600 eol_cnt--;
6601 }
6602 o_addQchr(dest, ch);
6603 }
6604
6605 debug_printf("done reading from `cmd` pipe, closing it\n");
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02006606 fclose_and_forget(fp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006607 /* We need to extract exitcode. Test case
6608 * "true; echo `sleep 1; false` $?"
6609 * should print 1 */
6610 safe_waitpid(pid, &status, 0);
6611 debug_printf("child exited. returning its exitcode:%d\n", WEXITSTATUS(status));
6612 return WEXITSTATUS(status);
6613}
6614#endif /* ENABLE_HUSH_TICK */
6615
6616
6617static void setup_heredoc(struct redir_struct *redir)
6618{
6619 struct fd_pair pair;
6620 pid_t pid;
6621 int len, written;
6622 /* the _body_ of heredoc (misleading field name) */
6623 const char *heredoc = redir->rd_filename;
6624 char *expanded;
6625#if !BB_MMU
6626 char **to_free;
6627#endif
6628
6629 expanded = NULL;
6630 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02006631 expanded = encode_then_expand_string(heredoc, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006632 if (expanded)
6633 heredoc = expanded;
6634 }
6635 len = strlen(heredoc);
6636
6637 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
6638 xpiped_pair(pair);
6639 xmove_fd(pair.rd, redir->rd_fd);
6640
6641 /* Try writing without forking. Newer kernels have
6642 * dynamically growing pipes. Must use non-blocking write! */
6643 ndelay_on(pair.wr);
6644 while (1) {
6645 written = write(pair.wr, heredoc, len);
6646 if (written <= 0)
6647 break;
6648 len -= written;
6649 if (len == 0) {
6650 close(pair.wr);
6651 free(expanded);
6652 return;
6653 }
6654 heredoc += written;
6655 }
6656 ndelay_off(pair.wr);
6657
6658 /* Okay, pipe buffer was not big enough */
6659 /* Note: we must not create a stray child (bastard? :)
6660 * for the unsuspecting parent process. Child creates a grandchild
6661 * and exits before parent execs the process which consumes heredoc
6662 * (that exec happens after we return from this function) */
6663#if !BB_MMU
6664 to_free = NULL;
6665#endif
6666 pid = xvfork();
6667 if (pid == 0) {
6668 /* child */
6669 disable_restore_tty_pgrp_on_exit();
6670 pid = BB_MMU ? xfork() : xvfork();
6671 if (pid != 0)
6672 _exit(0);
6673 /* grandchild */
6674 close(redir->rd_fd); /* read side of the pipe */
6675#if BB_MMU
6676 full_write(pair.wr, heredoc, len); /* may loop or block */
6677 _exit(0);
6678#else
6679 /* Delegate blocking writes to another process */
6680 xmove_fd(pair.wr, STDOUT_FILENO);
6681 re_execute_shell(&to_free, heredoc, NULL, NULL, NULL);
6682#endif
6683 }
6684 /* parent */
6685#if ENABLE_HUSH_FAST
6686 G.count_SIGCHLD++;
6687//bb_error_msg("[%d] fork in setup_heredoc: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6688#endif
6689 enable_restore_tty_pgrp_on_exit();
6690#if !BB_MMU
6691 free(to_free);
6692#endif
6693 close(pair.wr);
6694 free(expanded);
6695 wait(NULL); /* wait till child has died */
6696}
6697
Denys Vlasenko2db74612017-07-07 22:07:28 +02006698struct squirrel {
6699 int orig_fd;
6700 int moved_to;
6701 /* moved_to = n: fd was moved to n; restore back to orig_fd after redir */
6702 /* moved_to = -1: fd was opened by redirect; close orig_fd after redir */
6703};
6704
Denys Vlasenko621fc502017-07-24 12:42:17 +02006705static struct squirrel *append_squirrel(struct squirrel *sq, int i, int orig, int moved)
6706{
6707 sq = xrealloc(sq, (i + 2) * sizeof(sq[0]));
6708 sq[i].orig_fd = orig;
6709 sq[i].moved_to = moved;
6710 sq[i+1].orig_fd = -1; /* end marker */
6711 return sq;
6712}
6713
Denys Vlasenko2db74612017-07-07 22:07:28 +02006714static struct squirrel *add_squirrel(struct squirrel *sq, int fd, int avoid_fd)
6715{
Denys Vlasenko621fc502017-07-24 12:42:17 +02006716 int moved_to;
Denys Vlasenko32fdf2f2017-07-31 04:32:06 +02006717 int i;
Denys Vlasenko2db74612017-07-07 22:07:28 +02006718
Denys Vlasenko32fdf2f2017-07-31 04:32:06 +02006719 if (sq) for (i = 0; sq[i].orig_fd >= 0; i++) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02006720 /* If we collide with an already moved fd... */
6721 if (fd == sq[i].moved_to) {
6722 sq[i].moved_to = fcntl_F_DUPFD(sq[i].moved_to, avoid_fd);
6723 debug_printf_redir("redirect_fd %d: already busy, moving to %d\n", fd, sq[i].moved_to);
6724 if (sq[i].moved_to < 0) /* what? */
6725 xfunc_die();
6726 return sq;
6727 }
6728 if (fd == sq[i].orig_fd) {
6729 /* Example: echo Hello >/dev/null 1>&2 */
6730 debug_printf_redir("redirect_fd %d: already moved\n", fd);
6731 return sq;
6732 }
Denys Vlasenko2db74612017-07-07 22:07:28 +02006733 }
6734
Denys Vlasenko2db74612017-07-07 22:07:28 +02006735 /* If this fd is open, we move and remember it; if it's closed, moved_to = -1 */
Denys Vlasenko621fc502017-07-24 12:42:17 +02006736 moved_to = fcntl_F_DUPFD(fd, avoid_fd);
6737 debug_printf_redir("redirect_fd %d: previous fd is moved to %d (-1 if it was closed)\n", fd, moved_to);
6738 if (moved_to < 0 && errno != EBADF)
Denys Vlasenko2db74612017-07-07 22:07:28 +02006739 xfunc_die();
Denys Vlasenko621fc502017-07-24 12:42:17 +02006740 return append_squirrel(sq, i, fd, moved_to);
Denys Vlasenko2db74612017-07-07 22:07:28 +02006741}
6742
Denys Vlasenko657e9002017-07-30 23:34:04 +02006743static struct squirrel *add_squirrel_closed(struct squirrel *sq, int fd)
6744{
6745 int i;
6746
Denys Vlasenko32fdf2f2017-07-31 04:32:06 +02006747 if (sq) for (i = 0; sq[i].orig_fd >= 0; i++) {
Denys Vlasenko657e9002017-07-30 23:34:04 +02006748 /* If we collide with an already moved fd... */
6749 if (fd == sq[i].orig_fd) {
6750 /* Examples:
6751 * "echo 3>FILE 3>&- 3>FILE"
6752 * "echo 3>&- 3>FILE"
6753 * No need for last redirect to insert
6754 * another "need to close 3" indicator.
6755 */
6756 debug_printf_redir("redirect_fd %d: already moved or closed\n", fd);
6757 return sq;
6758 }
Denys Vlasenko657e9002017-07-30 23:34:04 +02006759 }
6760
6761 debug_printf_redir("redirect_fd %d: previous fd was closed\n", fd);
6762 return append_squirrel(sq, i, fd, -1);
6763}
6764
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006765/* fd: redirect wants this fd to be used (e.g. 3>file).
6766 * Move all conflicting internally used fds,
6767 * and remember them so that we can restore them later.
6768 */
Denys Vlasenko657e9002017-07-30 23:34:04 +02006769static int save_fd_on_redirect(int fd, int avoid_fd, struct squirrel **sqp)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006770{
Denys Vlasenko2db74612017-07-07 22:07:28 +02006771 if (avoid_fd < 9) /* the important case here is that it can be -1 */
6772 avoid_fd = 9;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006773
6774#if ENABLE_HUSH_INTERACTIVE
Denys Vlasenko32fdf2f2017-07-31 04:32:06 +02006775 if (fd == G.interactive_fd) {
6776 /* Testcase: "ls -l /proc/$$/fd 255>&-" should work */
Denys Vlasenko657e9002017-07-30 23:34:04 +02006777 G.interactive_fd = xdup_CLOEXEC_and_close(G.interactive_fd, avoid_fd);
Denys Vlasenko2db74612017-07-07 22:07:28 +02006778 debug_printf_redir("redirect_fd %d: matches interactive_fd, moving it to %d\n", fd, G.interactive_fd);
6779 return 1; /* "we closed fd" */
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006780 }
6781#endif
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006782 /* Are we called from setup_redirects(squirrel==NULL)? Two cases:
6783 * (1) Redirect in a forked child. No need to save FILEs' fds,
6784 * we aren't going to use them anymore, ok to trash.
Denys Vlasenko2db74612017-07-07 22:07:28 +02006785 * (2) "exec 3>FILE". Bummer. We can save script FILEs' fds,
6786 * but how are we doing to restore them?
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006787 * "fileno(fd) = new_fd" can't be done.
6788 */
Denys Vlasenko2db74612017-07-07 22:07:28 +02006789 if (!sqp)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006790 return 0;
6791
Denys Vlasenko2db74612017-07-07 22:07:28 +02006792 /* If this one of script's fds? */
6793 if (save_FILEs_on_redirect(fd, avoid_fd))
6794 return 1; /* yes. "we closed fd" */
6795
6796 /* Check whether it collides with any open fds (e.g. stdio), save fds as needed */
6797 *sqp = add_squirrel(*sqp, fd, avoid_fd);
6798 return 0; /* "we did not close fd" */
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006799}
6800
Denys Vlasenko2db74612017-07-07 22:07:28 +02006801static void restore_redirects(struct squirrel *sq)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006802{
Denys Vlasenko2db74612017-07-07 22:07:28 +02006803 if (sq) {
Denys Vlasenko32fdf2f2017-07-31 04:32:06 +02006804 int i;
6805 for (i = 0; sq[i].orig_fd >= 0; i++) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02006806 if (sq[i].moved_to >= 0) {
6807 /* We simply die on error */
6808 debug_printf_redir("restoring redirected fd from %d to %d\n", sq[i].moved_to, sq[i].orig_fd);
6809 xmove_fd(sq[i].moved_to, sq[i].orig_fd);
6810 } else {
6811 /* cmd1 9>FILE; cmd2_should_see_fd9_closed */
6812 debug_printf_redir("restoring redirected fd %d: closing it\n", sq[i].orig_fd);
6813 close(sq[i].orig_fd);
6814 }
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006815 }
Denys Vlasenko2db74612017-07-07 22:07:28 +02006816 free(sq);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006817 }
6818
Denys Vlasenko2db74612017-07-07 22:07:28 +02006819 /* If moved, G.interactive_fd stays on new fd, not restoring it */
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006820
6821 restore_redirected_FILEs();
6822}
6823
Denys Vlasenkobf1c3442017-07-31 04:54:53 +02006824#if ENABLE_FEATURE_SH_STANDALONE && BB_MMU
Denys Vlasenko5b3d2eb2017-07-31 18:02:28 +02006825static void close_saved_fds_and_FILE_fds(void)
Denys Vlasenkobf1c3442017-07-31 04:54:53 +02006826{
6827 if (G_interactive_fd)
6828 close(G_interactive_fd);
6829 close_all_FILE_list();
6830}
6831#endif
6832
Denys Vlasenko32fdf2f2017-07-31 04:32:06 +02006833static int internally_opened_fd(int fd, struct squirrel *sq)
6834{
6835 int i;
6836
6837#if ENABLE_HUSH_INTERACTIVE
6838 if (fd == G.interactive_fd)
6839 return 1;
6840#endif
6841 /* If this one of script's fds? */
6842 if (fd_in_FILEs(fd))
6843 return 1;
6844
6845 if (sq) for (i = 0; sq[i].orig_fd >= 0; i++) {
6846 if (fd == sq[i].moved_to)
6847 return 1;
6848 }
6849 return 0;
6850}
6851
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006852/* squirrel != NULL means we squirrel away copies of stdin, stdout,
6853 * and stderr if they are redirected. */
Denys Vlasenko2db74612017-07-07 22:07:28 +02006854static int setup_redirects(struct command *prog, struct squirrel **sqp)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006855{
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006856 struct redir_struct *redir;
6857
6858 for (redir = prog->redirects; redir; redir = redir->next) {
Denys Vlasenko657e9002017-07-30 23:34:04 +02006859 int newfd;
6860 int closed;
6861
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006862 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006863 /* "rd_fd<<HERE" case */
Denys Vlasenko657e9002017-07-30 23:34:04 +02006864 save_fd_on_redirect(redir->rd_fd, /*avoid:*/ 0, sqp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006865 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
6866 * of the heredoc */
6867 debug_printf_parse("set heredoc '%s'\n",
6868 redir->rd_filename);
6869 setup_heredoc(redir);
6870 continue;
6871 }
6872
6873 if (redir->rd_dup == REDIRFD_TO_FILE) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006874 /* "rd_fd<*>file" case (<*> is <,>,>>,<>) */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006875 char *p;
Denys Vlasenko657e9002017-07-30 23:34:04 +02006876 int mode;
6877
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006878 if (redir->rd_filename == NULL) {
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02006879 /*
6880 * Examples:
6881 * "cmd >" (no filename)
6882 * "cmd > <file" (2nd redirect starts too early)
6883 */
Denys Vlasenko39701202017-08-02 19:44:05 +02006884 syntax_error("invalid redirect");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006885 continue;
6886 }
6887 mode = redir_table[redir->rd_type].mode;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006888 p = expand_string_to_string(redir->rd_filename, /*unbackslash:*/ 1);
Denys Vlasenko657e9002017-07-30 23:34:04 +02006889 newfd = open_or_warn(p, mode);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006890 free(p);
Denys Vlasenko657e9002017-07-30 23:34:04 +02006891 if (newfd < 0) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006892 /* Error message from open_or_warn can be lost
6893 * if stderr has been redirected, but bash
6894 * and ash both lose it as well
6895 * (though zsh doesn't!)
6896 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006897 return 1;
6898 }
Denys Vlasenko657e9002017-07-30 23:34:04 +02006899 if (newfd == redir->rd_fd && sqp) {
Denys Vlasenko621fc502017-07-24 12:42:17 +02006900 /* open() gave us precisely the fd we wanted.
6901 * This means that this fd was not busy
6902 * (not opened to anywhere).
6903 * Remember to close it on restore:
6904 */
Denys Vlasenko657e9002017-07-30 23:34:04 +02006905 *sqp = add_squirrel_closed(*sqp, newfd);
6906 debug_printf_redir("redir to previously closed fd %d\n", newfd);
Denys Vlasenko621fc502017-07-24 12:42:17 +02006907 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006908 } else {
Denys Vlasenko657e9002017-07-30 23:34:04 +02006909 /* "rd_fd>&rd_dup" or "rd_fd>&-" case */
6910 newfd = redir->rd_dup;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006911 }
6912
Denys Vlasenko657e9002017-07-30 23:34:04 +02006913 if (newfd == redir->rd_fd)
6914 continue;
6915
6916 /* if "N>FILE": move newfd to redir->rd_fd */
6917 /* if "N>&M": dup newfd to redir->rd_fd */
6918 /* if "N>&-": close redir->rd_fd (newfd is REDIRFD_CLOSE) */
6919
6920 closed = save_fd_on_redirect(redir->rd_fd, /*avoid:*/ newfd, sqp);
6921 if (newfd == REDIRFD_CLOSE) {
6922 /* "N>&-" means "close me" */
6923 if (!closed) {
6924 /* ^^^ optimization: saving may already
6925 * have closed it. If not... */
6926 close(redir->rd_fd);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006927 }
Denys Vlasenko657e9002017-07-30 23:34:04 +02006928 /* Sometimes we do another close on restore, getting EBADF.
6929 * Consider "echo 3>FILE 3>&-"
6930 * first redirect remembers "need to close 3",
6931 * and second redirect closes 3! Restore code then closes 3 again.
6932 */
6933 } else {
Denys Vlasenko32fdf2f2017-07-31 04:32:06 +02006934 /* if newfd is a script fd or saved fd, simulate EBADF */
6935 if (internally_opened_fd(newfd, sqp ? *sqp : NULL)) {
6936 //errno = EBADF;
6937 //bb_perror_msg_and_die("can't duplicate file descriptor");
6938 newfd = -1; /* same effect as code above */
6939 }
Denys Vlasenko657e9002017-07-30 23:34:04 +02006940 xdup2(newfd, redir->rd_fd);
6941 if (redir->rd_dup == REDIRFD_TO_FILE)
6942 /* "rd_fd > FILE" */
6943 close(newfd);
6944 /* else: "rd_fd > rd_dup" */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006945 }
6946 }
6947 return 0;
6948}
6949
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006950static char *find_in_path(const char *arg)
6951{
6952 char *ret = NULL;
6953 const char *PATH = get_local_var_value("PATH");
6954
6955 if (!PATH)
6956 return NULL;
6957
6958 while (1) {
6959 const char *end = strchrnul(PATH, ':');
6960 int sz = end - PATH; /* must be int! */
6961
6962 free(ret);
6963 if (sz != 0) {
6964 ret = xasprintf("%.*s/%s", sz, PATH, arg);
6965 } else {
6966 /* We have xxx::yyyy in $PATH,
6967 * it means "use current dir" */
6968 ret = xstrdup(arg);
6969 }
6970 if (access(ret, F_OK) == 0)
6971 break;
6972
6973 if (*end == '\0') {
6974 free(ret);
6975 return NULL;
6976 }
6977 PATH = end + 1;
6978 }
6979
6980 return ret;
6981}
6982
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006983static const struct built_in_command *find_builtin_helper(const char *name,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006984 const struct built_in_command *x,
6985 const struct built_in_command *end)
6986{
6987 while (x != end) {
6988 if (strcmp(name, x->b_cmd) != 0) {
6989 x++;
6990 continue;
6991 }
6992 debug_printf_exec("found builtin '%s'\n", name);
6993 return x;
6994 }
6995 return NULL;
6996}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006997static const struct built_in_command *find_builtin1(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006998{
6999 return find_builtin_helper(name, bltins1, &bltins1[ARRAY_SIZE(bltins1)]);
7000}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02007001static const struct built_in_command *find_builtin(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007002{
7003 const struct built_in_command *x = find_builtin1(name);
7004 if (x)
7005 return x;
7006 return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]);
7007}
7008
7009#if ENABLE_HUSH_FUNCTIONS
7010static struct function **find_function_slot(const char *name)
7011{
7012 struct function **funcpp = &G.top_func;
7013 while (*funcpp) {
7014 if (strcmp(name, (*funcpp)->name) == 0) {
7015 break;
7016 }
7017 funcpp = &(*funcpp)->next;
7018 }
7019 return funcpp;
7020}
7021
7022static const struct function *find_function(const char *name)
7023{
7024 const struct function *funcp = *find_function_slot(name);
7025 if (funcp)
7026 debug_printf_exec("found function '%s'\n", name);
7027 return funcp;
7028}
7029
7030/* Note: takes ownership on name ptr */
7031static struct function *new_function(char *name)
7032{
7033 struct function **funcpp = find_function_slot(name);
7034 struct function *funcp = *funcpp;
7035
7036 if (funcp != NULL) {
7037 struct command *cmd = funcp->parent_cmd;
7038 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
7039 if (!cmd) {
7040 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
7041 free(funcp->name);
7042 /* Note: if !funcp->body, do not free body_as_string!
7043 * This is a special case of "-F name body" function:
7044 * body_as_string was not malloced! */
7045 if (funcp->body) {
7046 free_pipe_list(funcp->body);
7047# if !BB_MMU
7048 free(funcp->body_as_string);
7049# endif
7050 }
7051 } else {
7052 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
7053 cmd->argv[0] = funcp->name;
7054 cmd->group = funcp->body;
7055# if !BB_MMU
7056 cmd->group_as_string = funcp->body_as_string;
7057# endif
7058 }
7059 } else {
7060 debug_printf_exec("remembering new function '%s'\n", name);
7061 funcp = *funcpp = xzalloc(sizeof(*funcp));
7062 /*funcp->next = NULL;*/
7063 }
7064
7065 funcp->name = name;
7066 return funcp;
7067}
7068
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01007069# if ENABLE_HUSH_UNSET
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007070static void unset_func(const char *name)
7071{
7072 struct function **funcpp = find_function_slot(name);
7073 struct function *funcp = *funcpp;
7074
7075 if (funcp != NULL) {
7076 debug_printf_exec("freeing function '%s'\n", funcp->name);
7077 *funcpp = funcp->next;
7078 /* funcp is unlinked now, deleting it.
7079 * Note: if !funcp->body, the function was created by
7080 * "-F name body", do not free ->body_as_string
7081 * and ->name as they were not malloced. */
7082 if (funcp->body) {
7083 free_pipe_list(funcp->body);
7084 free(funcp->name);
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01007085# if !BB_MMU
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007086 free(funcp->body_as_string);
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01007087# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007088 }
7089 free(funcp);
7090 }
7091}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01007092# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007093
7094# if BB_MMU
7095#define exec_function(to_free, funcp, argv) \
7096 exec_function(funcp, argv)
7097# endif
7098static void exec_function(char ***to_free,
7099 const struct function *funcp,
7100 char **argv) NORETURN;
7101static void exec_function(char ***to_free,
7102 const struct function *funcp,
7103 char **argv)
7104{
7105# if BB_MMU
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02007106 int n;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007107
7108 argv[0] = G.global_argv[0];
7109 G.global_argv = argv;
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02007110 G.global_argc = n = 1 + string_array_len(argv + 1);
Denys Vlasenko5b3d2eb2017-07-31 18:02:28 +02007111
7112// Example when we are here: "cmd | func"
7113// func will run with saved-redirect fds open.
7114// $ f() { echo /proc/self/fd/*; }
7115// $ true | f
7116// /proc/self/fd/0 /proc/self/fd/1 /proc/self/fd/2 /proc/self/fd/255 /proc/self/fd/3
7117// stdio^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ G_interactive_fd^ DIR fd for glob
7118// Same in script:
7119// $ . ./SCRIPT
7120// /proc/self/fd/0 /proc/self/fd/1 /proc/self/fd/2 /proc/self/fd/255 /proc/self/fd/3 /proc/self/fd/4
7121// stdio^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ G_interactive_fd^ opened ./SCRIPT DIR fd for glob
7122// They are CLOEXEC so external programs won't see them, but
7123// for "more correctness" we might want to close those extra fds here:
7124//? close_saved_fds_and_FILE_fds();
7125
7126 /* "we are in function, ok to use return" */
7127 G_flag_return_in_progress = -1;
7128 IF_HUSH_LOCAL(G.func_nest_level++;)
7129
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007130 /* On MMU, funcp->body is always non-NULL */
7131 n = run_list(funcp->body);
7132 fflush_all();
7133 _exit(n);
7134# else
Denys Vlasenko5b3d2eb2017-07-31 18:02:28 +02007135//? close_saved_fds_and_FILE_fds();
7136
7137//TODO: check whether "true | func_with_return" works
7138
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007139 re_execute_shell(to_free,
7140 funcp->body_as_string,
7141 G.global_argv[0],
7142 argv + 1,
7143 NULL);
7144# endif
7145}
7146
7147static int run_function(const struct function *funcp, char **argv)
7148{
7149 int rc;
7150 save_arg_t sv;
7151 smallint sv_flg;
7152
7153 save_and_replace_G_args(&sv, argv);
7154
7155 /* "we are in function, ok to use return" */
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02007156 sv_flg = G_flag_return_in_progress;
7157 G_flag_return_in_progress = -1;
Denys Vlasenko5b3d2eb2017-07-31 18:02:28 +02007158 IF_HUSH_LOCAL(G.func_nest_level++;)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007159
7160 /* On MMU, funcp->body is always non-NULL */
7161# if !BB_MMU
7162 if (!funcp->body) {
7163 /* Function defined by -F */
7164 parse_and_run_string(funcp->body_as_string);
7165 rc = G.last_exitcode;
7166 } else
7167# endif
7168 {
7169 rc = run_list(funcp->body);
7170 }
7171
7172# if ENABLE_HUSH_LOCAL
7173 {
7174 struct variable *var;
7175 struct variable **var_pp;
7176
7177 var_pp = &G.top_var;
7178 while ((var = *var_pp) != NULL) {
7179 if (var->func_nest_level < G.func_nest_level) {
7180 var_pp = &var->next;
7181 continue;
7182 }
7183 /* Unexport */
7184 if (var->flg_export)
7185 bb_unsetenv(var->varstr);
7186 /* Remove from global list */
7187 *var_pp = var->next;
7188 /* Free */
7189 if (!var->max_len)
7190 free(var->varstr);
7191 free(var);
7192 }
7193 G.func_nest_level--;
7194 }
7195# endif
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02007196 G_flag_return_in_progress = sv_flg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007197
7198 restore_G_args(&sv, argv);
7199
7200 return rc;
7201}
7202#endif /* ENABLE_HUSH_FUNCTIONS */
7203
7204
7205#if BB_MMU
7206#define exec_builtin(to_free, x, argv) \
7207 exec_builtin(x, argv)
7208#else
7209#define exec_builtin(to_free, x, argv) \
7210 exec_builtin(to_free, argv)
7211#endif
7212static void exec_builtin(char ***to_free,
7213 const struct built_in_command *x,
7214 char **argv) NORETURN;
7215static void exec_builtin(char ***to_free,
7216 const struct built_in_command *x,
7217 char **argv)
7218{
7219#if BB_MMU
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01007220 int rcode;
7221 fflush_all();
Denys Vlasenko5b3d2eb2017-07-31 18:02:28 +02007222//? close_saved_fds_and_FILE_fds();
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01007223 rcode = x->b_function(argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007224 fflush_all();
7225 _exit(rcode);
7226#else
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01007227 fflush_all();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007228 /* On NOMMU, we must never block!
7229 * Example: { sleep 99 | read line; } & echo Ok
7230 */
7231 re_execute_shell(to_free,
7232 argv[0],
7233 G.global_argv[0],
7234 G.global_argv + 1,
7235 argv);
7236#endif
7237}
7238
7239
7240static void execvp_or_die(char **argv) NORETURN;
7241static void execvp_or_die(char **argv)
7242{
Denys Vlasenko04465da2016-10-03 01:01:15 +02007243 int e;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007244 debug_printf_exec("execing '%s'\n", argv[0]);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02007245 /* Don't propagate SIG_IGN to the child */
7246 if (SPECIAL_JOBSTOP_SIGS != 0)
7247 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007248 execvp(argv[0], argv);
Denys Vlasenko04465da2016-10-03 01:01:15 +02007249 e = 2;
7250 if (errno == EACCES) e = 126;
7251 if (errno == ENOENT) e = 127;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007252 bb_perror_msg("can't execute '%s'", argv[0]);
Denys Vlasenko04465da2016-10-03 01:01:15 +02007253 _exit(e);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007254}
7255
7256#if ENABLE_HUSH_MODE_X
7257static void dump_cmd_in_x_mode(char **argv)
7258{
7259 if (G_x_mode && argv) {
7260 /* We want to output the line in one write op */
7261 char *buf, *p;
7262 int len;
7263 int n;
7264
7265 len = 3;
7266 n = 0;
7267 while (argv[n])
7268 len += strlen(argv[n++]) + 1;
7269 buf = xmalloc(len);
7270 buf[0] = '+';
7271 p = buf + 1;
7272 n = 0;
7273 while (argv[n])
7274 p += sprintf(p, " %s", argv[n++]);
7275 *p++ = '\n';
7276 *p = '\0';
7277 fputs(buf, stderr);
7278 free(buf);
7279 }
7280}
7281#else
7282# define dump_cmd_in_x_mode(argv) ((void)0)
7283#endif
7284
7285#if BB_MMU
7286#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
7287 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
7288#define pseudo_exec(nommu_save, command, argv_expanded) \
7289 pseudo_exec(command, argv_expanded)
7290#endif
7291
7292/* Called after [v]fork() in run_pipe, or from builtin_exec.
7293 * Never returns.
7294 * Don't exit() here. If you don't exec, use _exit instead.
7295 * The at_exit handlers apparently confuse the calling process,
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02007296 * in particular stdin handling. Not sure why? -- because of vfork! (vda)
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02007297 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007298static void pseudo_exec_argv(nommu_save_t *nommu_save,
7299 char **argv, int assignment_cnt,
7300 char **argv_expanded) NORETURN;
7301static NOINLINE void pseudo_exec_argv(nommu_save_t *nommu_save,
7302 char **argv, int assignment_cnt,
7303 char **argv_expanded)
7304{
7305 char **new_env;
7306
7307 new_env = expand_assignments(argv, assignment_cnt);
7308 dump_cmd_in_x_mode(new_env);
7309
7310 if (!argv[assignment_cnt]) {
7311 /* Case when we are here: ... | var=val | ...
7312 * (note that we do not exit early, i.e., do not optimize out
7313 * expand_assignments(): think about ... | var=`sleep 1` | ...
7314 */
7315 free_strings(new_env);
7316 _exit(EXIT_SUCCESS);
7317 }
7318
7319#if BB_MMU
7320 set_vars_and_save_old(new_env);
7321 free(new_env); /* optional */
7322 /* we can also destroy set_vars_and_save_old's return value,
7323 * to save memory */
7324#else
7325 nommu_save->new_env = new_env;
7326 nommu_save->old_vars = set_vars_and_save_old(new_env);
7327#endif
7328
7329 if (argv_expanded) {
7330 argv = argv_expanded;
7331 } else {
7332 argv = expand_strvec_to_strvec(argv + assignment_cnt);
7333#if !BB_MMU
7334 nommu_save->argv = argv;
7335#endif
7336 }
7337 dump_cmd_in_x_mode(argv);
7338
7339#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
7340 if (strchr(argv[0], '/') != NULL)
7341 goto skip;
7342#endif
7343
Denys Vlasenko75481d32017-07-31 05:27:09 +02007344#if ENABLE_HUSH_FUNCTIONS
7345 /* Check if the command matches any functions (this goes before bltins) */
7346 {
7347 const struct function *funcp = find_function(argv[0]);
7348 if (funcp) {
7349 exec_function(&nommu_save->argv_from_re_execing, funcp, argv);
7350 }
7351 }
7352#endif
7353
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007354 /* Check if the command matches any of the builtins.
7355 * Depending on context, this might be redundant. But it's
7356 * easier to waste a few CPU cycles than it is to figure out
7357 * if this is one of those cases.
7358 */
7359 {
7360 /* On NOMMU, it is more expensive to re-execute shell
7361 * just in order to run echo or test builtin.
7362 * It's better to skip it here and run corresponding
7363 * non-builtin later. */
7364 const struct built_in_command *x;
7365 x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]);
7366 if (x) {
7367 exec_builtin(&nommu_save->argv_from_re_execing, x, argv);
7368 }
7369 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007370
7371#if ENABLE_FEATURE_SH_STANDALONE
7372 /* Check if the command matches any busybox applets */
7373 {
7374 int a = find_applet_by_name(argv[0]);
7375 if (a >= 0) {
7376# if BB_MMU /* see above why on NOMMU it is not allowed */
7377 if (APPLET_IS_NOEXEC(a)) {
Denys Vlasenkobf1c3442017-07-31 04:54:53 +02007378 /* Do not leak open fds from opened script files etc.
7379 * Testcase: interactive "ls -l /proc/self/fd"
7380 * should not show tty fd open.
7381 */
Denys Vlasenko5b3d2eb2017-07-31 18:02:28 +02007382 close_saved_fds_and_FILE_fds();
Denys Vlasenko75481d32017-07-31 05:27:09 +02007383//FIXME: should also close saved redir fds
Denys Vlasenko7c40ddd2017-08-02 16:37:39 +02007384 /* Without this, "rm -i FILE" can't be ^C'ed: */
7385 switch_off_special_sigs(G.special_sig_mask);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007386 debug_printf_exec("running applet '%s'\n", argv[0]);
Denys Vlasenko69a5ec92017-07-07 19:08:56 +02007387 run_applet_no_and_exit(a, argv[0], argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007388 }
7389# endif
7390 /* Re-exec ourselves */
7391 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02007392 /* Don't propagate SIG_IGN to the child */
7393 if (SPECIAL_JOBSTOP_SIGS != 0)
7394 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007395 execv(bb_busybox_exec_path, argv);
7396 /* If they called chroot or otherwise made the binary no longer
7397 * executable, fall through */
7398 }
7399 }
7400#endif
7401
7402#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
7403 skip:
7404#endif
7405 execvp_or_die(argv);
7406}
7407
7408/* Called after [v]fork() in run_pipe
7409 */
7410static void pseudo_exec(nommu_save_t *nommu_save,
7411 struct command *command,
7412 char **argv_expanded) NORETURN;
7413static void pseudo_exec(nommu_save_t *nommu_save,
7414 struct command *command,
7415 char **argv_expanded)
7416{
7417 if (command->argv) {
7418 pseudo_exec_argv(nommu_save, command->argv,
7419 command->assignment_cnt, argv_expanded);
7420 }
7421
7422 if (command->group) {
7423 /* Cases when we are here:
7424 * ( list )
7425 * { list } &
7426 * ... | ( list ) | ...
7427 * ... | { list } | ...
7428 */
7429#if BB_MMU
7430 int rcode;
7431 debug_printf_exec("pseudo_exec: run_list\n");
7432 reset_traps_to_defaults();
7433 rcode = run_list(command->group);
7434 /* OK to leak memory by not calling free_pipe_list,
7435 * since this process is about to exit */
7436 _exit(rcode);
7437#else
7438 re_execute_shell(&nommu_save->argv_from_re_execing,
7439 command->group_as_string,
7440 G.global_argv[0],
7441 G.global_argv + 1,
7442 NULL);
7443#endif
7444 }
7445
7446 /* Case when we are here: ... | >file */
7447 debug_printf_exec("pseudo_exec'ed null command\n");
7448 _exit(EXIT_SUCCESS);
7449}
7450
7451#if ENABLE_HUSH_JOB
7452static const char *get_cmdtext(struct pipe *pi)
7453{
7454 char **argv;
7455 char *p;
7456 int len;
7457
7458 /* This is subtle. ->cmdtext is created only on first backgrounding.
7459 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
7460 * On subsequent bg argv is trashed, but we won't use it */
7461 if (pi->cmdtext)
7462 return pi->cmdtext;
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007463
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007464 argv = pi->cmds[0].argv;
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007465 if (!argv) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007466 pi->cmdtext = xzalloc(1);
7467 return pi->cmdtext;
7468 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007469 len = 0;
7470 do {
7471 len += strlen(*argv) + 1;
7472 } while (*++argv);
7473 p = xmalloc(len);
7474 pi->cmdtext = p;
7475 argv = pi->cmds[0].argv;
7476 do {
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007477 p = stpcpy(p, *argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007478 *p++ = ' ';
7479 } while (*++argv);
7480 p[-1] = '\0';
7481 return pi->cmdtext;
7482}
7483
Denys Vlasenko2ed74e22017-07-14 19:58:46 +02007484static void remove_job_from_table(struct pipe *pi)
7485{
7486 struct pipe *prev_pipe;
7487
7488 if (pi == G.job_list) {
7489 G.job_list = pi->next;
7490 } else {
7491 prev_pipe = G.job_list;
7492 while (prev_pipe->next != pi)
7493 prev_pipe = prev_pipe->next;
7494 prev_pipe->next = pi->next;
7495 }
7496 G.last_jobid = 0;
7497 if (G.job_list)
7498 G.last_jobid = G.job_list->jobid;
7499}
7500
7501static void delete_finished_job(struct pipe *pi)
7502{
7503 remove_job_from_table(pi);
7504 free_pipe(pi);
7505}
7506
7507static void clean_up_last_dead_job(void)
7508{
7509 if (G.job_list && !G.job_list->alive_cmds)
7510 delete_finished_job(G.job_list);
7511}
7512
Denys Vlasenko16096292017-07-10 10:00:28 +02007513static void insert_job_into_table(struct pipe *pi)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007514{
7515 struct pipe *job, **jobp;
7516 int i;
7517
Denys Vlasenko2ed74e22017-07-14 19:58:46 +02007518 clean_up_last_dead_job();
7519
Denys Vlasenko9e55a152017-07-10 10:01:12 +02007520 /* Find the end of the list, and find next job ID to use */
7521 i = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007522 jobp = &G.job_list;
Denys Vlasenko9e55a152017-07-10 10:01:12 +02007523 while ((job = *jobp) != NULL) {
7524 if (job->jobid > i)
7525 i = job->jobid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007526 jobp = &job->next;
Denys Vlasenko9e55a152017-07-10 10:01:12 +02007527 }
7528 pi->jobid = i + 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007529
Denys Vlasenko9e55a152017-07-10 10:01:12 +02007530 /* Create a new job struct at the end */
7531 job = *jobp = xmemdup(pi, sizeof(*pi));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007532 job->next = NULL;
7533 job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
7534 /* Cannot copy entire pi->cmds[] vector! This causes double frees */
7535 for (i = 0; i < pi->num_cmds; i++) {
7536 job->cmds[i].pid = pi->cmds[i].pid;
7537 /* all other fields are not used and stay zero */
7538 }
7539 job->cmdtext = xstrdup(get_cmdtext(pi));
7540
7541 if (G_interactive_fd)
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01007542 printf("[%u] %u %s\n", job->jobid, (unsigned)job->cmds[0].pid, job->cmdtext);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007543 G.last_jobid = job->jobid;
7544}
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007545#endif /* JOB */
7546
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007547static int job_exited_or_stopped(struct pipe *pi)
7548{
7549 int rcode, i;
7550
7551 if (pi->alive_cmds != pi->stopped_cmds)
7552 return -1;
7553
7554 /* All processes in fg pipe have exited or stopped */
7555 rcode = 0;
7556 i = pi->num_cmds;
7557 while (--i >= 0) {
7558 rcode = pi->cmds[i].cmd_exitcode;
7559 /* usually last process gives overall exitstatus,
7560 * but with "set -o pipefail", last *failed* process does */
7561 if (G.o_opt[OPT_O_PIPEFAIL] == 0 || rcode != 0)
7562 break;
7563 }
7564 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7565 return rcode;
7566}
7567
Denys Vlasenko7e675362016-10-28 21:57:31 +02007568static int process_wait_result(struct pipe *fg_pipe, pid_t childpid, int status)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007569{
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007570#if ENABLE_HUSH_JOB
7571 struct pipe *pi;
7572#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02007573 int i, dead;
7574
7575 dead = WIFEXITED(status) || WIFSIGNALED(status);
7576
7577#if DEBUG_JOBS
7578 if (WIFSTOPPED(status))
7579 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
7580 childpid, WSTOPSIG(status), WEXITSTATUS(status));
7581 if (WIFSIGNALED(status))
7582 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
7583 childpid, WTERMSIG(status), WEXITSTATUS(status));
7584 if (WIFEXITED(status))
7585 debug_printf_jobs("pid %d exited, exitcode %d\n",
7586 childpid, WEXITSTATUS(status));
7587#endif
7588 /* Were we asked to wait for a fg pipe? */
7589 if (fg_pipe) {
7590 i = fg_pipe->num_cmds;
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007591
Denys Vlasenko7e675362016-10-28 21:57:31 +02007592 while (--i >= 0) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007593 int rcode;
7594
Denys Vlasenko7e675362016-10-28 21:57:31 +02007595 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
7596 if (fg_pipe->cmds[i].pid != childpid)
7597 continue;
7598 if (dead) {
7599 int ex;
7600 fg_pipe->cmds[i].pid = 0;
7601 fg_pipe->alive_cmds--;
7602 ex = WEXITSTATUS(status);
7603 /* bash prints killer signal's name for *last*
7604 * process in pipe (prints just newline for SIGINT/SIGPIPE).
7605 * Mimic this. Example: "sleep 5" + (^\ or kill -QUIT)
7606 */
7607 if (WIFSIGNALED(status)) {
7608 int sig = WTERMSIG(status);
7609 if (i == fg_pipe->num_cmds-1)
7610 /* TODO: use strsignal() instead for bash compat? but that's bloat... */
7611 puts(sig == SIGINT || sig == SIGPIPE ? "" : get_signame(sig));
7612 /* TODO: if (WCOREDUMP(status)) + " (core dumped)"; */
7613 /* TODO: MIPS has 128 sigs (1..128), what if sig==128 here?
7614 * Maybe we need to use sig | 128? */
7615 ex = sig + 128;
7616 }
7617 fg_pipe->cmds[i].cmd_exitcode = ex;
7618 } else {
7619 fg_pipe->stopped_cmds++;
7620 }
7621 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
7622 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007623 rcode = job_exited_or_stopped(fg_pipe);
7624 if (rcode >= 0) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007625/* Note: *non-interactive* bash does not continue if all processes in fg pipe
7626 * are stopped. Testcase: "cat | cat" in a script (not on command line!)
7627 * and "killall -STOP cat" */
7628 if (G_interactive_fd) {
7629#if ENABLE_HUSH_JOB
7630 if (fg_pipe->alive_cmds != 0)
Denys Vlasenko16096292017-07-10 10:00:28 +02007631 insert_job_into_table(fg_pipe);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007632#endif
7633 return rcode;
7634 }
7635 if (fg_pipe->alive_cmds == 0)
7636 return rcode;
7637 }
7638 /* There are still running processes in the fg_pipe */
7639 return -1;
7640 }
Denys Vlasenko10ad6222017-04-17 16:13:32 +02007641 /* It wasn't in fg_pipe, look for process in bg pipes */
Denys Vlasenko7e675362016-10-28 21:57:31 +02007642 }
7643
7644#if ENABLE_HUSH_JOB
7645 /* We were asked to wait for bg or orphaned children */
7646 /* No need to remember exitcode in this case */
7647 for (pi = G.job_list; pi; pi = pi->next) {
7648 for (i = 0; i < pi->num_cmds; i++) {
7649 if (pi->cmds[i].pid == childpid)
7650 goto found_pi_and_prognum;
7651 }
7652 }
7653 /* Happens when shell is used as init process (init=/bin/sh) */
7654 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
7655 return -1; /* this wasn't a process from fg_pipe */
7656
7657 found_pi_and_prognum:
7658 if (dead) {
7659 /* child exited */
Denys Vlasenko840a4352017-07-07 22:56:02 +02007660 int rcode = WEXITSTATUS(status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007661 if (WIFSIGNALED(status))
Denys Vlasenko840a4352017-07-07 22:56:02 +02007662 rcode = 128 + WTERMSIG(status);
7663 pi->cmds[i].cmd_exitcode = rcode;
7664 if (G.last_bg_pid == pi->cmds[i].pid)
7665 G.last_bg_pid_exitcode = rcode;
7666 pi->cmds[i].pid = 0;
Denys Vlasenko7e675362016-10-28 21:57:31 +02007667 pi->alive_cmds--;
7668 if (!pi->alive_cmds) {
Denys Vlasenko2ed74e22017-07-14 19:58:46 +02007669 if (G_interactive_fd) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007670 printf(JOB_STATUS_FORMAT, pi->jobid,
7671 "Done", pi->cmdtext);
Denys Vlasenko2ed74e22017-07-14 19:58:46 +02007672 delete_finished_job(pi);
7673 } else {
7674/*
7675 * bash deletes finished jobs from job table only in interactive mode,
7676 * after "jobs" cmd, or if pid of a new process matches one of the old ones
7677 * (see cleanup_dead_jobs(), delete_old_job(), J_NOTIFIED in bash source).
7678 * Testcase script: "(exit 3) & sleep 1; wait %1; echo $?" prints 3 in bash.
7679 * We only retain one "dead" job, if it's the single job on the list.
7680 * This covers most of real-world scenarios where this is useful.
7681 */
7682 if (pi != G.job_list)
7683 delete_finished_job(pi);
7684 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007685 }
7686 } else {
7687 /* child stopped */
7688 pi->stopped_cmds++;
7689 }
7690#endif
7691 return -1; /* this wasn't a process from fg_pipe */
7692}
7693
7694/* Check to see if any processes have exited -- if they have,
7695 * figure out why and see if a job has completed.
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007696 *
7697 * If non-NULL fg_pipe: wait for its completion or stop.
7698 * Return its exitcode or zero if stopped.
7699 *
7700 * Alternatively (fg_pipe == NULL, waitfor_pid != 0):
7701 * waitpid(WNOHANG), if waitfor_pid exits or stops, return exitcode+1,
7702 * else return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for)
7703 * or 0 if no children changed status.
7704 *
7705 * Alternatively (fg_pipe == NULL, waitfor_pid == 0),
7706 * return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for)
7707 * or 0 if no children changed status.
Denys Vlasenko7e675362016-10-28 21:57:31 +02007708 */
7709static int checkjobs(struct pipe *fg_pipe, pid_t waitfor_pid)
7710{
7711 int attributes;
7712 int status;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007713 int rcode = 0;
7714
7715 debug_printf_jobs("checkjobs %p\n", fg_pipe);
7716
7717 attributes = WUNTRACED;
7718 if (fg_pipe == NULL)
7719 attributes |= WNOHANG;
7720
7721 errno = 0;
7722#if ENABLE_HUSH_FAST
7723 if (G.handled_SIGCHLD == G.count_SIGCHLD) {
7724//bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p",
7725//getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe);
7726 /* There was neither fork nor SIGCHLD since last waitpid */
7727 /* Avoid doing waitpid syscall if possible */
7728 if (!G.we_have_children) {
7729 errno = ECHILD;
7730 return -1;
7731 }
7732 if (fg_pipe == NULL) { /* is WNOHANG set? */
7733 /* We have children, but they did not exit
7734 * or stop yet (we saw no SIGCHLD) */
7735 return 0;
7736 }
7737 /* else: !WNOHANG, waitpid will block, can't short-circuit */
7738 }
7739#endif
7740
7741/* Do we do this right?
7742 * bash-3.00# sleep 20 | false
7743 * <ctrl-Z pressed>
7744 * [3]+ Stopped sleep 20 | false
7745 * bash-3.00# echo $?
7746 * 1 <========== bg pipe is not fully done, but exitcode is already known!
7747 * [hush 1.14.0: yes we do it right]
7748 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007749 while (1) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007750 pid_t childpid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007751#if ENABLE_HUSH_FAST
Denys Vlasenko7e675362016-10-28 21:57:31 +02007752 int i;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007753 i = G.count_SIGCHLD;
7754#endif
7755 childpid = waitpid(-1, &status, attributes);
7756 if (childpid <= 0) {
7757 if (childpid && errno != ECHILD)
7758 bb_perror_msg("waitpid");
7759#if ENABLE_HUSH_FAST
7760 else { /* Until next SIGCHLD, waitpid's are useless */
7761 G.we_have_children = (childpid == 0);
7762 G.handled_SIGCHLD = i;
7763//bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
7764 }
7765#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02007766 /* ECHILD (no children), or 0 (no change in children status) */
7767 rcode = childpid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007768 break;
7769 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007770 rcode = process_wait_result(fg_pipe, childpid, status);
7771 if (rcode >= 0) {
7772 /* fg_pipe exited or stopped */
7773 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007774 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007775 if (childpid == waitfor_pid) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007776 debug_printf_exec("childpid==waitfor_pid:%d status:0x%08x\n", childpid, status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007777 rcode = WEXITSTATUS(status);
7778 if (WIFSIGNALED(status))
7779 rcode = 128 + WTERMSIG(status);
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007780 if (WIFSTOPPED(status))
7781 /* bash: "cmd & wait $!" and cmd stops: $? = 128 + stopsig */
7782 rcode = 128 + WSTOPSIG(status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007783 rcode++;
7784 break; /* "wait PID" called us, give it exitcode+1 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007785 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007786 /* This wasn't one of our processes, or */
7787 /* fg_pipe still has running processes, do waitpid again */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007788 } /* while (waitpid succeeds)... */
7789
7790 return rcode;
7791}
7792
7793#if ENABLE_HUSH_JOB
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02007794static int checkjobs_and_fg_shell(struct pipe *fg_pipe)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007795{
7796 pid_t p;
Denys Vlasenko7e675362016-10-28 21:57:31 +02007797 int rcode = checkjobs(fg_pipe, 0 /*(no pid to wait for)*/);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007798 if (G_saved_tty_pgrp) {
7799 /* Job finished, move the shell to the foreground */
7800 p = getpgrp(); /* our process group id */
7801 debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p);
7802 tcsetpgrp(G_interactive_fd, p);
7803 }
7804 return rcode;
7805}
7806#endif
7807
7808/* Start all the jobs, but don't wait for anything to finish.
7809 * See checkjobs().
7810 *
7811 * Return code is normally -1, when the caller has to wait for children
7812 * to finish to determine the exit status of the pipe. If the pipe
7813 * is a simple builtin command, however, the action is done by the
7814 * time run_pipe returns, and the exit code is provided as the
7815 * return value.
7816 *
7817 * Returns -1 only if started some children. IOW: we have to
7818 * mask out retvals of builtins etc with 0xff!
7819 *
7820 * The only case when we do not need to [v]fork is when the pipe
7821 * is single, non-backgrounded, non-subshell command. Examples:
7822 * cmd ; ... { list } ; ...
7823 * cmd && ... { list } && ...
7824 * cmd || ... { list } || ...
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007825 * If it is, then we can run cmd as a builtin, NOFORK,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007826 * or (if SH_STANDALONE) an applet, and we can run the { list }
7827 * with run_list. If it isn't one of these, we fork and exec cmd.
7828 *
7829 * Cases when we must fork:
7830 * non-single: cmd | cmd
7831 * backgrounded: cmd & { list } &
7832 * subshell: ( list ) [&]
7833 */
7834#if !ENABLE_HUSH_MODE_X
Denys Vlasenko26777aa2010-11-22 23:49:10 +01007835#define redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel, argv_expanded) \
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007836 redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel)
7837#endif
7838static int redirect_and_varexp_helper(char ***new_env_p,
7839 struct variable **old_vars_p,
7840 struct command *command,
Denys Vlasenko2db74612017-07-07 22:07:28 +02007841 struct squirrel **sqp,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007842 char **argv_expanded)
7843{
7844 /* setup_redirects acts on file descriptors, not FILEs.
7845 * This is perfect for work that comes after exec().
7846 * Is it really safe for inline use? Experimentally,
7847 * things seem to work. */
Denys Vlasenko2db74612017-07-07 22:07:28 +02007848 int rcode = setup_redirects(command, sqp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007849 if (rcode == 0) {
7850 char **new_env = expand_assignments(command->argv, command->assignment_cnt);
7851 *new_env_p = new_env;
7852 dump_cmd_in_x_mode(new_env);
7853 dump_cmd_in_x_mode(argv_expanded);
7854 if (old_vars_p)
7855 *old_vars_p = set_vars_and_save_old(new_env);
7856 }
7857 return rcode;
7858}
7859static NOINLINE int run_pipe(struct pipe *pi)
7860{
7861 static const char *const null_ptr = NULL;
7862
7863 int cmd_no;
7864 int next_infd;
7865 struct command *command;
7866 char **argv_expanded;
7867 char **argv;
Denys Vlasenko2db74612017-07-07 22:07:28 +02007868 struct squirrel *squirrel = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007869 int rcode;
7870
7871 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
7872 debug_enter();
7873
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02007874 /* Testcase: set -- q w e; (IFS='' echo "$*"; IFS=''; echo "$*"); echo "$*"
7875 * Result should be 3 lines: q w e, qwe, q w e
7876 */
7877 G.ifs = get_local_var_value("IFS");
7878 if (!G.ifs)
7879 G.ifs = defifs;
7880
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007881 IF_HUSH_JOB(pi->pgrp = -1;)
7882 pi->stopped_cmds = 0;
7883 command = &pi->cmds[0];
7884 argv_expanded = NULL;
7885
7886 if (pi->num_cmds != 1
7887 || pi->followup == PIPE_BG
7888 || command->cmd_type == CMD_SUBSHELL
7889 ) {
7890 goto must_fork;
7891 }
7892
7893 pi->alive_cmds = 1;
7894
7895 debug_printf_exec(": group:%p argv:'%s'\n",
7896 command->group, command->argv ? command->argv[0] : "NONE");
7897
7898 if (command->group) {
7899#if ENABLE_HUSH_FUNCTIONS
7900 if (command->cmd_type == CMD_FUNCDEF) {
7901 /* "executing" func () { list } */
7902 struct function *funcp;
7903
7904 funcp = new_function(command->argv[0]);
7905 /* funcp->name is already set to argv[0] */
7906 funcp->body = command->group;
7907# if !BB_MMU
7908 funcp->body_as_string = command->group_as_string;
7909 command->group_as_string = NULL;
7910# endif
7911 command->group = NULL;
7912 command->argv[0] = NULL;
7913 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
7914 funcp->parent_cmd = command;
7915 command->child_func = funcp;
7916
7917 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
7918 debug_leave();
7919 return EXIT_SUCCESS;
7920 }
7921#endif
7922 /* { list } */
7923 debug_printf("non-subshell group\n");
7924 rcode = 1; /* exitcode if redir failed */
Denys Vlasenko2db74612017-07-07 22:07:28 +02007925 if (setup_redirects(command, &squirrel) == 0) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007926 debug_printf_exec(": run_list\n");
7927 rcode = run_list(command->group) & 0xff;
7928 }
7929 restore_redirects(squirrel);
7930 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7931 debug_leave();
7932 debug_printf_exec("run_pipe: return %d\n", rcode);
7933 return rcode;
7934 }
7935
7936 argv = command->argv ? command->argv : (char **) &null_ptr;
7937 {
7938 const struct built_in_command *x;
7939#if ENABLE_HUSH_FUNCTIONS
7940 const struct function *funcp;
7941#else
7942 enum { funcp = 0 };
7943#endif
7944 char **new_env = NULL;
7945 struct variable *old_vars = NULL;
7946
7947 if (argv[command->assignment_cnt] == NULL) {
7948 /* Assignments, but no command */
7949 /* Ensure redirects take effect (that is, create files).
7950 * Try "a=t >file" */
7951#if 0 /* A few cases in testsuite fail with this code. FIXME */
Denys Vlasenko2db74612017-07-07 22:07:28 +02007952 rcode = redirect_and_varexp_helper(&new_env, /*old_vars:*/ NULL, command, &squirrel, /*argv_expanded:*/ NULL);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007953 /* Set shell variables */
7954 if (new_env) {
7955 argv = new_env;
7956 while (*argv) {
Denys Vlasenko38ef39a2017-07-18 01:40:01 +02007957 if (set_local_var(*argv, /*flag:*/ 0)) {
7958 /* assignment to readonly var / putenv error? */
7959 rcode = 1;
7960 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007961 argv++;
7962 }
7963 }
7964 /* Redirect error sets $? to 1. Otherwise,
7965 * if evaluating assignment value set $?, retain it.
7966 * Try "false; q=`exit 2`; echo $?" - should print 2: */
7967 if (rcode == 0)
7968 rcode = G.last_exitcode;
7969 /* Exit, _skipping_ variable restoring code: */
7970 goto clean_up_and_ret0;
7971
7972#else /* Older, bigger, but more correct code */
7973
Denys Vlasenko2db74612017-07-07 22:07:28 +02007974 rcode = setup_redirects(command, &squirrel);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007975 restore_redirects(squirrel);
7976 /* Set shell variables */
7977 if (G_x_mode)
7978 bb_putchar_stderr('+');
7979 while (*argv) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02007980 char *p = expand_string_to_string(*argv, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007981 if (G_x_mode)
7982 fprintf(stderr, " %s", p);
7983 debug_printf_exec("set shell var:'%s'->'%s'\n",
7984 *argv, p);
Denys Vlasenko38ef39a2017-07-18 01:40:01 +02007985 if (set_local_var(p, /*flag:*/ 0)) {
7986 /* assignment to readonly var / putenv error? */
7987 rcode = 1;
7988 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007989 argv++;
7990 }
7991 if (G_x_mode)
7992 bb_putchar_stderr('\n');
7993 /* Redirect error sets $? to 1. Otherwise,
7994 * if evaluating assignment value set $?, retain it.
7995 * Try "false; q=`exit 2`; echo $?" - should print 2: */
7996 if (rcode == 0)
7997 rcode = G.last_exitcode;
7998 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7999 debug_leave();
8000 debug_printf_exec("run_pipe: return %d\n", rcode);
8001 return rcode;
8002#endif
8003 }
8004
8005 /* Expand the rest into (possibly) many strings each */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01008006#if BASH_TEST2
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01008007 if (command->cmd_type == CMD_SINGLEWORD_NOGLOB) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008008 argv_expanded = expand_strvec_to_strvec_singleword_noglob(argv + command->assignment_cnt);
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01008009 } else
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008010#endif
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01008011 {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008012 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
8013 }
8014
8015 /* if someone gives us an empty string: `cmd with empty output` */
8016 if (!argv_expanded[0]) {
8017 free(argv_expanded);
8018 debug_leave();
8019 return G.last_exitcode;
8020 }
8021
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008022#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko75481d32017-07-31 05:27:09 +02008023 /* Check if argv[0] matches any functions (this goes before bltins) */
8024 funcp = find_function(argv_expanded[0]);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008025#endif
Denys Vlasenko75481d32017-07-31 05:27:09 +02008026 x = NULL;
8027 if (!funcp)
8028 x = find_builtin(argv_expanded[0]);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008029 if (x || funcp) {
8030 if (!funcp) {
8031 if (x->b_function == builtin_exec && argv_expanded[1] == NULL) {
8032 debug_printf("exec with redirects only\n");
8033 rcode = setup_redirects(command, NULL);
Denys Vlasenko869994c2016-08-20 15:16:00 +02008034 /* rcode=1 can be if redir file can't be opened */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008035 goto clean_up_and_ret1;
8036 }
8037 }
Denys Vlasenko2db74612017-07-07 22:07:28 +02008038 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, &squirrel, argv_expanded);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008039 if (rcode == 0) {
8040 if (!funcp) {
8041 debug_printf_exec(": builtin '%s' '%s'...\n",
8042 x->b_cmd, argv_expanded[1]);
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01008043 fflush_all();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008044 rcode = x->b_function(argv_expanded) & 0xff;
8045 fflush_all();
8046 }
8047#if ENABLE_HUSH_FUNCTIONS
8048 else {
8049# if ENABLE_HUSH_LOCAL
8050 struct variable **sv;
8051 sv = G.shadowed_vars_pp;
8052 G.shadowed_vars_pp = &old_vars;
8053# endif
8054 debug_printf_exec(": function '%s' '%s'...\n",
8055 funcp->name, argv_expanded[1]);
8056 rcode = run_function(funcp, argv_expanded) & 0xff;
8057# if ENABLE_HUSH_LOCAL
8058 G.shadowed_vars_pp = sv;
8059# endif
8060 }
8061#endif
8062 }
8063 clean_up_and_ret:
8064 unset_vars(new_env);
8065 add_vars(old_vars);
8066/* clean_up_and_ret0: */
8067 restore_redirects(squirrel);
Denys Vlasenko7c40ddd2017-08-02 16:37:39 +02008068 /*
8069 * Try "usleep 99999999" + ^C + "echo $?"
8070 * with FEATURE_SH_NOFORK=y.
8071 */
8072 if (!funcp) {
8073 /* It was builtin or nofork.
8074 * if this would be a real fork/execed program,
8075 * it should have died if a fatal sig was received.
8076 * But OTOH, there was no separate process,
8077 * the sig was sent to _shell_, not to non-existing
8078 * child.
8079 * Let's just handle ^C only, this one is obvious:
8080 * we aren't ok with exitcode 0 when ^C was pressed
8081 * during builtin/nofork.
8082 */
8083 if (sigismember(&G.pending_set, SIGINT))
8084 rcode = 128 + SIGINT;
8085 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008086 clean_up_and_ret1:
8087 free(argv_expanded);
8088 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
8089 debug_leave();
8090 debug_printf_exec("run_pipe return %d\n", rcode);
8091 return rcode;
8092 }
8093
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01008094 if (ENABLE_FEATURE_SH_NOFORK) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008095 int n = find_applet_by_name(argv_expanded[0]);
8096 if (n >= 0 && APPLET_IS_NOFORK(n)) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02008097 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, &squirrel, argv_expanded);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008098 if (rcode == 0) {
8099 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
8100 argv_expanded[0], argv_expanded[1]);
Denys Vlasenko7c40ddd2017-08-02 16:37:39 +02008101 /*
8102 * Note: signals (^C) can't interrupt here.
8103 * We remember them and they will be acted upon
8104 * after applet returns.
8105 * This makes applets which can run for a long time
8106 * and/or wait for user input ineligible for NOFORK:
8107 * for example, "yes" or "rm" (rm -i waits for input).
8108 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008109 rcode = run_nofork_applet(n, argv_expanded);
8110 }
8111 goto clean_up_and_ret;
8112 }
8113 }
8114 /* It is neither builtin nor applet. We must fork. */
8115 }
8116
8117 must_fork:
8118 /* NB: argv_expanded may already be created, and that
8119 * might include `cmd` runs! Do not rerun it! We *must*
8120 * use argv_expanded if it's non-NULL */
8121
8122 /* Going to fork a child per each pipe member */
8123 pi->alive_cmds = 0;
8124 next_infd = 0;
8125
8126 cmd_no = 0;
8127 while (cmd_no < pi->num_cmds) {
8128 struct fd_pair pipefds;
8129#if !BB_MMU
8130 volatile nommu_save_t nommu_save;
8131 nommu_save.new_env = NULL;
8132 nommu_save.old_vars = NULL;
8133 nommu_save.argv = NULL;
8134 nommu_save.argv_from_re_execing = NULL;
8135#endif
8136 command = &pi->cmds[cmd_no];
8137 cmd_no++;
8138 if (command->argv) {
8139 debug_printf_exec(": pipe member '%s' '%s'...\n",
8140 command->argv[0], command->argv[1]);
8141 } else {
8142 debug_printf_exec(": pipe member with no argv\n");
8143 }
8144
8145 /* pipes are inserted between pairs of commands */
8146 pipefds.rd = 0;
8147 pipefds.wr = 1;
8148 if (cmd_no < pi->num_cmds)
8149 xpiped_pair(pipefds);
8150
8151 command->pid = BB_MMU ? fork() : vfork();
8152 if (!command->pid) { /* child */
8153#if ENABLE_HUSH_JOB
8154 disable_restore_tty_pgrp_on_exit();
8155 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
8156
8157 /* Every child adds itself to new process group
8158 * with pgid == pid_of_first_child_in_pipe */
8159 if (G.run_list_level == 1 && G_interactive_fd) {
8160 pid_t pgrp;
8161 pgrp = pi->pgrp;
8162 if (pgrp < 0) /* true for 1st process only */
8163 pgrp = getpid();
8164 if (setpgid(0, pgrp) == 0
8165 && pi->followup != PIPE_BG
8166 && G_saved_tty_pgrp /* we have ctty */
8167 ) {
8168 /* We do it in *every* child, not just first,
8169 * to avoid races */
8170 tcsetpgrp(G_interactive_fd, pgrp);
8171 }
8172 }
8173#endif
8174 if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
8175 /* 1st cmd in backgrounded pipe
8176 * should have its stdin /dev/null'ed */
8177 close(0);
8178 if (open(bb_dev_null, O_RDONLY))
8179 xopen("/", O_RDONLY);
8180 } else {
8181 xmove_fd(next_infd, 0);
8182 }
8183 xmove_fd(pipefds.wr, 1);
8184 if (pipefds.rd > 1)
8185 close(pipefds.rd);
8186 /* Like bash, explicit redirects override pipes,
Denys Vlasenko869994c2016-08-20 15:16:00 +02008187 * and the pipe fd (fd#1) is available for dup'ing:
8188 * "cmd1 2>&1 | cmd2": fd#1 is duped to fd#2, thus stderr
8189 * of cmd1 goes into pipe.
8190 */
8191 if (setup_redirects(command, NULL)) {
8192 /* Happens when redir file can't be opened:
8193 * $ hush -c 'echo FOO >&2 | echo BAR 3>/qwe/rty; echo BAZ'
8194 * FOO
8195 * hush: can't open '/qwe/rty': No such file or directory
8196 * BAZ
8197 * (echo BAR is not executed, it hits _exit(1) below)
8198 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008199 _exit(1);
Denys Vlasenko869994c2016-08-20 15:16:00 +02008200 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008201
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008202 /* Stores to nommu_save list of env vars putenv'ed
8203 * (NOMMU, on MMU we don't need that) */
8204 /* cast away volatility... */
8205 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
8206 /* pseudo_exec() does not return */
8207 }
8208
8209 /* parent or error */
8210#if ENABLE_HUSH_FAST
8211 G.count_SIGCHLD++;
8212//bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
8213#endif
8214 enable_restore_tty_pgrp_on_exit();
8215#if !BB_MMU
8216 /* Clean up after vforked child */
8217 free(nommu_save.argv);
8218 free(nommu_save.argv_from_re_execing);
8219 unset_vars(nommu_save.new_env);
8220 add_vars(nommu_save.old_vars);
8221#endif
8222 free(argv_expanded);
8223 argv_expanded = NULL;
8224 if (command->pid < 0) { /* [v]fork failed */
8225 /* Clearly indicate, was it fork or vfork */
8226 bb_perror_msg(BB_MMU ? "vfork"+1 : "vfork");
8227 } else {
8228 pi->alive_cmds++;
8229#if ENABLE_HUSH_JOB
8230 /* Second and next children need to know pid of first one */
8231 if (pi->pgrp < 0)
8232 pi->pgrp = command->pid;
8233#endif
8234 }
8235
8236 if (cmd_no > 1)
8237 close(next_infd);
8238 if (cmd_no < pi->num_cmds)
8239 close(pipefds.wr);
8240 /* Pass read (output) pipe end to next iteration */
8241 next_infd = pipefds.rd;
8242 }
8243
8244 if (!pi->alive_cmds) {
8245 debug_leave();
8246 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
8247 return 1;
8248 }
8249
8250 debug_leave();
8251 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
8252 return -1;
8253}
8254
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008255/* NB: called by pseudo_exec, and therefore must not modify any
8256 * global data until exec/_exit (we can be a child after vfork!) */
8257static int run_list(struct pipe *pi)
8258{
8259#if ENABLE_HUSH_CASE
8260 char *case_word = NULL;
8261#endif
8262#if ENABLE_HUSH_LOOPS
8263 struct pipe *loop_top = NULL;
8264 char **for_lcur = NULL;
8265 char **for_list = NULL;
8266#endif
8267 smallint last_followup;
8268 smalluint rcode;
8269#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
8270 smalluint cond_code = 0;
8271#else
8272 enum { cond_code = 0 };
8273#endif
8274#if HAS_KEYWORDS
Denys Vlasenko9b782552010-09-08 13:33:26 +02008275 smallint rword; /* RES_foo */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008276 smallint last_rword; /* ditto */
8277#endif
8278
8279 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
8280 debug_enter();
8281
8282#if ENABLE_HUSH_LOOPS
8283 /* Check syntax for "for" */
Denys Vlasenko0d6a4ec2010-12-18 01:34:49 +01008284 {
8285 struct pipe *cpipe;
8286 for (cpipe = pi; cpipe; cpipe = cpipe->next) {
8287 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
8288 continue;
8289 /* current word is FOR or IN (BOLD in comments below) */
8290 if (cpipe->next == NULL) {
8291 syntax_error("malformed for");
8292 debug_leave();
8293 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
8294 return 1;
8295 }
8296 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
8297 if (cpipe->next->res_word == RES_DO)
8298 continue;
8299 /* next word is not "do". It must be "in" then ("FOR v in ...") */
8300 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
8301 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
8302 ) {
8303 syntax_error("malformed for");
8304 debug_leave();
8305 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
8306 return 1;
8307 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008308 }
8309 }
8310#endif
8311
8312 /* Past this point, all code paths should jump to ret: label
8313 * in order to return, no direct "return" statements please.
8314 * This helps to ensure that no memory is leaked. */
8315
8316#if ENABLE_HUSH_JOB
8317 G.run_list_level++;
8318#endif
8319
8320#if HAS_KEYWORDS
8321 rword = RES_NONE;
8322 last_rword = RES_XXXX;
8323#endif
8324 last_followup = PIPE_SEQ;
8325 rcode = G.last_exitcode;
8326
8327 /* Go through list of pipes, (maybe) executing them. */
8328 for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008329 int r;
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008330 int sv_errexit_depth;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008331
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008332 if (G.flag_SIGINT)
8333 break;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02008334 if (G_flag_return_in_progress == 1)
8335 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008336
8337 IF_HAS_KEYWORDS(rword = pi->res_word;)
8338 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
8339 rword, cond_code, last_rword);
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008340
8341 sv_errexit_depth = G.errexit_depth;
8342 if (IF_HAS_KEYWORDS(rword == RES_IF || rword == RES_ELIF ||)
8343 pi->followup != PIPE_SEQ
8344 ) {
8345 G.errexit_depth++;
8346 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008347#if ENABLE_HUSH_LOOPS
8348 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
8349 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
8350 ) {
8351 /* start of a loop: remember where loop starts */
8352 loop_top = pi;
8353 G.depth_of_loop++;
8354 }
8355#endif
8356 /* Still in the same "if...", "then..." or "do..." branch? */
8357 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
8358 if ((rcode == 0 && last_followup == PIPE_OR)
8359 || (rcode != 0 && last_followup == PIPE_AND)
8360 ) {
8361 /* It is "<true> || CMD" or "<false> && CMD"
8362 * and we should not execute CMD */
8363 debug_printf_exec("skipped cmd because of || or &&\n");
8364 last_followup = pi->followup;
Denys Vlasenko3beab832013-04-07 18:16:58 +02008365 goto dont_check_jobs_but_continue;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008366 }
8367 }
8368 last_followup = pi->followup;
8369 IF_HAS_KEYWORDS(last_rword = rword;)
8370#if ENABLE_HUSH_IF
8371 if (cond_code) {
8372 if (rword == RES_THEN) {
8373 /* if false; then ... fi has exitcode 0! */
8374 G.last_exitcode = rcode = EXIT_SUCCESS;
8375 /* "if <false> THEN cmd": skip cmd */
8376 continue;
8377 }
8378 } else {
8379 if (rword == RES_ELSE || rword == RES_ELIF) {
8380 /* "if <true> then ... ELSE/ELIF cmd":
8381 * skip cmd and all following ones */
8382 break;
8383 }
8384 }
8385#endif
8386#if ENABLE_HUSH_LOOPS
8387 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
8388 if (!for_lcur) {
8389 /* first loop through for */
8390
8391 static const char encoded_dollar_at[] ALIGN1 = {
8392 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
8393 }; /* encoded representation of "$@" */
8394 static const char *const encoded_dollar_at_argv[] = {
8395 encoded_dollar_at, NULL
8396 }; /* argv list with one element: "$@" */
8397 char **vals;
8398
8399 vals = (char**)encoded_dollar_at_argv;
8400 if (pi->next->res_word == RES_IN) {
8401 /* if no variable values after "in" we skip "for" */
8402 if (!pi->next->cmds[0].argv) {
8403 G.last_exitcode = rcode = EXIT_SUCCESS;
8404 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
8405 break;
8406 }
8407 vals = pi->next->cmds[0].argv;
8408 } /* else: "for var; do..." -> assume "$@" list */
8409 /* create list of variable values */
8410 debug_print_strings("for_list made from", vals);
8411 for_list = expand_strvec_to_strvec(vals);
8412 for_lcur = for_list;
8413 debug_print_strings("for_list", for_list);
8414 }
8415 if (!*for_lcur) {
8416 /* "for" loop is over, clean up */
8417 free(for_list);
8418 for_list = NULL;
8419 for_lcur = NULL;
8420 break;
8421 }
8422 /* Insert next value from for_lcur */
8423 /* note: *for_lcur already has quotes removed, $var expanded, etc */
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02008424 set_local_var(xasprintf("%s=%s", pi->cmds[0].argv[0], *for_lcur++), /*flag:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008425 continue;
8426 }
8427 if (rword == RES_IN) {
8428 continue; /* "for v IN list;..." - "in" has no cmds anyway */
8429 }
8430 if (rword == RES_DONE) {
8431 continue; /* "done" has no cmds too */
8432 }
8433#endif
8434#if ENABLE_HUSH_CASE
8435 if (rword == RES_CASE) {
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008436 debug_printf_exec("CASE cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008437 case_word = expand_strvec_to_string(pi->cmds->argv);
Denys Vlasenkobd43c672017-07-05 23:12:15 +02008438 unbackslash(case_word);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008439 continue;
8440 }
8441 if (rword == RES_MATCH) {
8442 char **argv;
8443
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008444 debug_printf_exec("MATCH cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008445 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
8446 break;
8447 /* all prev words didn't match, does this one match? */
8448 argv = pi->cmds->argv;
8449 while (*argv) {
Denys Vlasenkobd43c672017-07-05 23:12:15 +02008450 char *pattern = expand_string_to_string(*argv, /*unbackslash:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008451 /* TODO: which FNM_xxx flags to use? */
8452 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
Denys Vlasenkobd43c672017-07-05 23:12:15 +02008453 debug_printf_exec("fnmatch(pattern:'%s',str:'%s'):%d\n", pattern, case_word, cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008454 free(pattern);
8455 if (cond_code == 0) { /* match! we will execute this branch */
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008456 free(case_word);
8457 case_word = NULL; /* make future "word)" stop */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008458 break;
8459 }
8460 argv++;
8461 }
8462 continue;
8463 }
8464 if (rword == RES_CASE_BODY) { /* inside of a case branch */
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008465 debug_printf_exec("CASE_BODY cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008466 if (cond_code != 0)
8467 continue; /* not matched yet, skip this pipe */
8468 }
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008469 if (rword == RES_ESAC) {
8470 debug_printf_exec("ESAC cond_code:%d\n", cond_code);
8471 if (case_word) {
8472 /* "case" did not match anything: still set $? (to 0) */
8473 G.last_exitcode = rcode = EXIT_SUCCESS;
8474 }
8475 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008476#endif
8477 /* Just pressing <enter> in shell should check for jobs.
8478 * OTOH, in non-interactive shell this is useless
8479 * and only leads to extra job checks */
8480 if (pi->num_cmds == 0) {
8481 if (G_interactive_fd)
8482 goto check_jobs_and_continue;
8483 continue;
8484 }
8485
8486 /* After analyzing all keywords and conditions, we decided
8487 * to execute this pipe. NB: have to do checkjobs(NULL)
8488 * after run_pipe to collect any background children,
8489 * even if list execution is to be stopped. */
8490 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008491#if ENABLE_HUSH_LOOPS
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008492 G.flag_break_continue = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008493#endif
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008494 rcode = r = run_pipe(pi); /* NB: rcode is a smalluint, r is int */
8495 if (r != -1) {
8496 /* We ran a builtin, function, or group.
8497 * rcode is already known
8498 * and we don't need to wait for anything. */
8499 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
8500 G.last_exitcode = rcode;
8501 check_and_run_traps();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008502#if ENABLE_HUSH_LOOPS
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008503 /* Was it "break" or "continue"? */
8504 if (G.flag_break_continue) {
8505 smallint fbc = G.flag_break_continue;
8506 /* We might fall into outer *loop*,
8507 * don't want to break it too */
8508 if (loop_top) {
8509 G.depth_break_continue--;
8510 if (G.depth_break_continue == 0)
8511 G.flag_break_continue = 0;
8512 /* else: e.g. "continue 2" should *break* once, *then* continue */
8513 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
8514 if (G.depth_break_continue != 0 || fbc == BC_BREAK) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02008515 checkjobs(NULL, 0 /*(no pid to wait for)*/);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008516 break;
8517 }
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008518 /* "continue": simulate end of loop */
8519 rword = RES_DONE;
8520 continue;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008521 }
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008522#endif
8523 if (G_flag_return_in_progress == 1) {
8524 checkjobs(NULL, 0 /*(no pid to wait for)*/);
8525 break;
8526 }
8527 } else if (pi->followup == PIPE_BG) {
8528 /* What does bash do with attempts to background builtins? */
8529 /* even bash 3.2 doesn't do that well with nested bg:
8530 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
8531 * I'm NOT treating inner &'s as jobs */
8532#if ENABLE_HUSH_JOB
8533 if (G.run_list_level == 1)
Denys Vlasenko16096292017-07-10 10:00:28 +02008534 insert_job_into_table(pi);
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008535#endif
8536 /* Last command's pid goes to $! */
8537 G.last_bg_pid = pi->cmds[pi->num_cmds - 1].pid;
Denys Vlasenko840a4352017-07-07 22:56:02 +02008538 G.last_bg_pid_exitcode = 0;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008539 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
Denys Vlasenko7c40ddd2017-08-02 16:37:39 +02008540/* Check pi->pi_inverted? "! sleep 1 & echo $?": bash says 1. dash and ash say 0 */
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008541 rcode = EXIT_SUCCESS;
8542 goto check_traps;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008543 } else {
8544#if ENABLE_HUSH_JOB
8545 if (G.run_list_level == 1 && G_interactive_fd) {
8546 /* Waits for completion, then fg's main shell */
8547 rcode = checkjobs_and_fg_shell(pi);
8548 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008549 goto check_traps;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008550 }
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008551#endif
8552 /* This one just waits for completion */
8553 rcode = checkjobs(pi, 0 /*(no pid to wait for)*/);
8554 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
8555 check_traps:
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008556 G.last_exitcode = rcode;
8557 check_and_run_traps();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008558 }
8559
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008560 /* Handle "set -e" */
8561 if (rcode != 0 && G.o_opt[OPT_O_ERREXIT]) {
8562 debug_printf_exec("ERREXIT:1 errexit_depth:%d\n", G.errexit_depth);
8563 if (G.errexit_depth == 0)
8564 hush_exit(rcode);
8565 }
8566 G.errexit_depth = sv_errexit_depth;
8567
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008568 /* Analyze how result affects subsequent commands */
8569#if ENABLE_HUSH_IF
8570 if (rword == RES_IF || rword == RES_ELIF)
8571 cond_code = rcode;
8572#endif
Denys Vlasenko3beab832013-04-07 18:16:58 +02008573 check_jobs_and_continue:
Denys Vlasenko7e675362016-10-28 21:57:31 +02008574 checkjobs(NULL, 0 /*(no pid to wait for)*/);
Denys Vlasenko3beab832013-04-07 18:16:58 +02008575 dont_check_jobs_but_continue: ;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008576#if ENABLE_HUSH_LOOPS
8577 /* Beware of "while false; true; do ..."! */
Denys Vlasenko00ae9892011-05-31 17:35:45 +02008578 if (pi->next
8579 && (pi->next->res_word == RES_DO || pi->next->res_word == RES_DONE)
Denys Vlasenko56a3b822011-06-01 12:47:07 +02008580 /* check for RES_DONE is needed for "while ...; do \n done" case */
Denys Vlasenko00ae9892011-05-31 17:35:45 +02008581 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008582 if (rword == RES_WHILE) {
8583 if (rcode) {
8584 /* "while false; do...done" - exitcode 0 */
8585 G.last_exitcode = rcode = EXIT_SUCCESS;
8586 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
Denys Vlasenko3beab832013-04-07 18:16:58 +02008587 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008588 }
8589 }
8590 if (rword == RES_UNTIL) {
8591 if (!rcode) {
8592 debug_printf_exec(": until expr is true: breaking\n");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008593 break;
8594 }
8595 }
8596 }
8597#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008598 } /* for (pi) */
8599
8600#if ENABLE_HUSH_JOB
8601 G.run_list_level--;
8602#endif
8603#if ENABLE_HUSH_LOOPS
8604 if (loop_top)
8605 G.depth_of_loop--;
8606 free(for_list);
8607#endif
8608#if ENABLE_HUSH_CASE
8609 free(case_word);
8610#endif
8611 debug_leave();
8612 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
8613 return rcode;
8614}
8615
8616/* Select which version we will use */
8617static int run_and_free_list(struct pipe *pi)
8618{
8619 int rcode = 0;
8620 debug_printf_exec("run_and_free_list entered\n");
Dan Fandrich85c62472010-11-20 13:05:17 -08008621 if (!G.o_opt[OPT_O_NOEXEC]) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008622 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
8623 rcode = run_list(pi);
8624 }
8625 /* free_pipe_list has the side effect of clearing memory.
8626 * In the long run that function can be merged with run_list,
8627 * but doing that now would hobble the debugging effort. */
8628 free_pipe_list(pi);
8629 debug_printf_exec("run_and_free_list return %d\n", rcode);
8630 return rcode;
8631}
8632
8633
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008634static void install_sighandlers(unsigned mask)
Eric Andersen52a97ca2001-06-22 06:49:26 +00008635{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008636 sighandler_t old_handler;
8637 unsigned sig = 0;
8638 while ((mask >>= 1) != 0) {
8639 sig++;
8640 if (!(mask & 1))
8641 continue;
Denys Vlasenko0806e402011-05-12 23:06:20 +02008642 old_handler = install_sighandler(sig, pick_sighandler(sig));
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008643 /* POSIX allows shell to re-enable SIGCHLD
8644 * even if it was SIG_IGN on entry.
8645 * Therefore we skip IGN check for it:
8646 */
8647 if (sig == SIGCHLD)
8648 continue;
8649 if (old_handler == SIG_IGN) {
8650 /* oops... restore back to IGN, and record this fact */
Denys Vlasenko0806e402011-05-12 23:06:20 +02008651 install_sighandler(sig, old_handler);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008652#if ENABLE_HUSH_TRAP
8653 if (!G_traps)
8654 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
8655 free(G_traps[sig]);
8656 G_traps[sig] = xzalloc(1); /* == xstrdup(""); */
8657#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008658 }
8659 }
8660}
8661
8662/* Called a few times only (or even once if "sh -c") */
8663static void install_special_sighandlers(void)
8664{
Denis Vlasenkof9375282009-04-05 19:13:39 +00008665 unsigned mask;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008666
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008667 /* Which signals are shell-special? */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008668 mask = (1 << SIGQUIT) | (1 << SIGCHLD);
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008669 if (G_interactive_fd) {
8670 mask |= SPECIAL_INTERACTIVE_SIGS;
8671 if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008672 mask |= SPECIAL_JOBSTOP_SIGS;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008673 }
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008674 /* Careful, do not re-install handlers we already installed */
8675 if (G.special_sig_mask != mask) {
8676 unsigned diff = mask & ~G.special_sig_mask;
8677 G.special_sig_mask = mask;
8678 install_sighandlers(diff);
8679 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008680}
8681
8682#if ENABLE_HUSH_JOB
8683/* helper */
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008684/* Set handlers to restore tty pgrp and exit */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008685static void install_fatal_sighandlers(void)
Denis Vlasenkof9375282009-04-05 19:13:39 +00008686{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008687 unsigned mask;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008688
8689 /* We will restore tty pgrp on these signals */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008690 mask = 0
Denys Vlasenko830ea352016-11-08 04:59:11 +01008691 /*+ (1 << SIGILL ) * HUSH_DEBUG*/
8692 /*+ (1 << SIGFPE ) * HUSH_DEBUG*/
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008693 + (1 << SIGBUS ) * HUSH_DEBUG
8694 + (1 << SIGSEGV) * HUSH_DEBUG
Denys Vlasenko830ea352016-11-08 04:59:11 +01008695 /*+ (1 << SIGTRAP) * HUSH_DEBUG*/
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008696 + (1 << SIGABRT)
8697 /* bash 3.2 seems to handle these just like 'fatal' ones */
8698 + (1 << SIGPIPE)
8699 + (1 << SIGALRM)
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008700 /* if we are interactive, SIGHUP, SIGTERM and SIGINT are special sigs.
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008701 * if we aren't interactive... but in this case
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008702 * we never want to restore pgrp on exit, and this fn is not called
8703 */
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008704 /*+ (1 << SIGHUP )*/
8705 /*+ (1 << SIGTERM)*/
8706 /*+ (1 << SIGINT )*/
8707 ;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008708 G_fatal_sig_mask = mask;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008709
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008710 install_sighandlers(mask);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008711}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00008712#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00008713
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008714static int set_mode(int state, char mode, const char *o_opt)
Denis Vlasenkod5762932009-03-31 11:22:57 +00008715{
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008716 int idx;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008717 switch (mode) {
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008718 case 'n':
Dan Fandrich85c62472010-11-20 13:05:17 -08008719 G.o_opt[OPT_O_NOEXEC] = state;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008720 break;
8721 case 'x':
8722 IF_HUSH_MODE_X(G_x_mode = state;)
8723 break;
8724 case 'o':
8725 if (!o_opt) {
8726 /* "set -+o" without parameter.
8727 * in bash, set -o produces this output:
8728 * pipefail off
8729 * and set +o:
8730 * set +o pipefail
8731 * We always use the second form.
8732 */
8733 const char *p = o_opt_strings;
8734 idx = 0;
8735 while (*p) {
8736 printf("set %co %s\n", (G.o_opt[idx] ? '-' : '+'), p);
8737 idx++;
8738 p += strlen(p) + 1;
8739 }
8740 break;
8741 }
8742 idx = index_in_strings(o_opt_strings, o_opt);
8743 if (idx >= 0) {
8744 G.o_opt[idx] = state;
8745 break;
8746 }
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008747 case 'e':
8748 G.o_opt[OPT_O_ERREXIT] = state;
8749 break;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008750 default:
8751 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008752 }
8753 return EXIT_SUCCESS;
8754}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008755
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00008756int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00008757int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00008758{
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008759 enum {
8760 OPT_login = (1 << 0),
8761 };
8762 unsigned flags;
Eric Andersen25f27032001-04-26 23:22:31 +00008763 int opt;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008764 unsigned builtin_argc;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008765 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008766 struct variable *cur_var;
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008767 struct variable *shell_ver;
Eric Andersenbc604a22001-05-16 05:24:03 +00008768
Denis Vlasenko574f2f42008-02-27 18:41:59 +00008769 INIT_G();
Denys Vlasenko10c01312011-05-11 11:49:21 +02008770 if (EXIT_SUCCESS != 0) /* if EXIT_SUCCESS == 0, it is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008771 G.last_exitcode = EXIT_SUCCESS;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02008772
Denys Vlasenko10c01312011-05-11 11:49:21 +02008773#if ENABLE_HUSH_FAST
8774 G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
8775#endif
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008776#if !BB_MMU
8777 G.argv0_for_re_execing = argv[0];
8778#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008779 /* Deal with HUSH_VERSION */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008780 shell_ver = xzalloc(sizeof(*shell_ver));
8781 shell_ver->flg_export = 1;
8782 shell_ver->flg_read_only = 1;
Denys Vlasenko4f870492010-09-10 11:06:01 +02008783 /* Code which handles ${var<op>...} needs writable values for all variables,
Denys Vlasenko36f774a2010-09-05 14:45:38 +02008784 * therefore we xstrdup: */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008785 shell_ver->varstr = xstrdup(hush_version_str);
Denys Vlasenko605067b2010-09-06 12:10:51 +02008786 /* Create shell local variables from the values
8787 * currently living in the environment */
Denis Vlasenkof886fd22008-10-13 12:36:05 +00008788 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008789 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008790 G.top_var = shell_ver;
Denis Vlasenko87a86552008-07-29 19:43:10 +00008791 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008792 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008793 if (e) while (*e) {
8794 char *value = strchr(*e, '=');
8795 if (value) { /* paranoia */
8796 cur_var->next = xzalloc(sizeof(*cur_var));
8797 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00008798 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008799 cur_var->max_len = strlen(*e);
8800 cur_var->flg_export = 1;
8801 }
8802 e++;
8803 }
Denys Vlasenko605067b2010-09-06 12:10:51 +02008804 /* (Re)insert HUSH_VERSION into env (AFTER we scanned the env!) */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008805 debug_printf_env("putenv '%s'\n", shell_ver->varstr);
8806 putenv(shell_ver->varstr);
Denys Vlasenko6db47842009-09-05 20:15:17 +02008807
8808 /* Export PWD */
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02008809 set_pwd_var(SETFLAG_EXPORT);
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008810
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01008811#if BASH_HOSTNAME_VAR
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008812 /* Set (but not export) HOSTNAME unless already set */
8813 if (!get_local_var_value("HOSTNAME")) {
8814 struct utsname uts;
8815 uname(&uts);
8816 set_local_var_from_halves("HOSTNAME", uts.nodename);
8817 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02008818 /* bash also exports SHLVL and _,
8819 * and sets (but doesn't export) the following variables:
8820 * BASH=/bin/bash
8821 * BASH_VERSINFO=([0]="3" [1]="2" [2]="0" [3]="1" [4]="release" [5]="i386-pc-linux-gnu")
8822 * BASH_VERSION='3.2.0(1)-release'
8823 * HOSTTYPE=i386
8824 * MACHTYPE=i386-pc-linux-gnu
8825 * OSTYPE=linux-gnu
Denys Vlasenkodea47882009-10-09 15:40:49 +02008826 * PPID=<NNNNN> - we also do it elsewhere
Denys Vlasenko6db47842009-09-05 20:15:17 +02008827 * EUID=<NNNNN>
8828 * UID=<NNNNN>
8829 * GROUPS=()
8830 * LINES=<NNN>
8831 * COLUMNS=<NNN>
8832 * BASH_ARGC=()
8833 * BASH_ARGV=()
8834 * BASH_LINENO=()
8835 * BASH_SOURCE=()
8836 * DIRSTACK=()
8837 * PIPESTATUS=([0]="0")
8838 * HISTFILE=/<xxx>/.bash_history
8839 * HISTFILESIZE=500
8840 * HISTSIZE=500
8841 * MAILCHECK=60
8842 * PATH=/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:.
8843 * SHELL=/bin/bash
8844 * SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor
8845 * TERM=dumb
8846 * OPTERR=1
8847 * OPTIND=1
8848 * IFS=$' \t\n'
8849 * PS1='\s-\v\$ '
8850 * PS2='> '
8851 * PS4='+ '
8852 */
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008853#endif
Denys Vlasenko6db47842009-09-05 20:15:17 +02008854
Denis Vlasenko38f63192007-01-22 09:03:07 +00008855#if ENABLE_FEATURE_EDITING
Denys Vlasenkoe45af7a2011-09-04 16:15:24 +02008856 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00008857#endif
Denys Vlasenko99862cb2010-09-12 17:34:13 +02008858
Eric Andersen94ac2442001-05-22 19:05:18 +00008859 /* Initialize some more globals to non-zero values */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00008860 cmdedit_update_prompt();
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00008861
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02008862 die_func = restore_ttypgrp_and__exit;
Denis Vlasenkoed782372009-04-10 00:45:02 +00008863
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008864 /* Shell is non-interactive at first. We need to call
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008865 * install_special_sighandlers() if we are going to execute "sh <script>",
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008866 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008867 * If we later decide that we are interactive, we run install_special_sighandlers()
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008868 * in order to intercept (more) signals.
8869 */
8870
8871 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00008872 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008873 flags = (argv[0] && argv[0][0] == '-') ? OPT_login : 0;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008874 builtin_argc = 0;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008875 while (1) {
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008876 opt = getopt(argc, argv, "+c:exinsl"
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008877#if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00008878 "<:$:R:V:"
8879# if ENABLE_HUSH_FUNCTIONS
8880 "F:"
8881# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008882#endif
8883 );
8884 if (opt <= 0)
8885 break;
Eric Andersen25f27032001-04-26 23:22:31 +00008886 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008887 case 'c':
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008888 /* Possibilities:
8889 * sh ... -c 'script'
8890 * sh ... -c 'script' ARG0 [ARG1...]
8891 * On NOMMU, if builtin_argc != 0,
Denys Vlasenko17323a62010-01-28 01:57:05 +01008892 * sh ... -c 'builtin' BARGV... "" ARG0 [ARG1...]
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008893 * "" needs to be replaced with NULL
8894 * and BARGV vector fed to builtin function.
Denys Vlasenko17323a62010-01-28 01:57:05 +01008895 * Note: the form without ARG0 never happens:
8896 * sh ... -c 'builtin' BARGV... ""
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008897 */
Denys Vlasenkodea47882009-10-09 15:40:49 +02008898 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008899 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02008900 G.root_ppid = getppid();
8901 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008902 G.global_argv = argv + optind;
8903 G.global_argc = argc - optind;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008904 if (builtin_argc) {
8905 /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */
8906 const struct built_in_command *x;
8907
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008908 install_special_sighandlers();
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008909 x = find_builtin(optarg);
8910 if (x) { /* paranoia */
8911 G.global_argc -= builtin_argc; /* skip [BARGV...] "" */
8912 G.global_argv += builtin_argc;
8913 G.global_argv[-1] = NULL; /* replace "" */
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01008914 fflush_all();
Denys Vlasenko17323a62010-01-28 01:57:05 +01008915 G.last_exitcode = x->b_function(argv + optind - 1);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008916 }
8917 goto final_return;
8918 }
8919 if (!G.global_argv[0]) {
8920 /* -c 'script' (no params): prevent empty $0 */
8921 G.global_argv--; /* points to argv[i] of 'script' */
8922 G.global_argv[0] = argv[0];
Denys Vlasenko5ae8f1c2010-05-22 06:32:11 +02008923 G.global_argc++;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008924 } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008925 install_special_sighandlers();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008926 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008927 goto final_return;
8928 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00008929 /* Well, we cannot just declare interactiveness,
8930 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008931 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008932 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00008933 case 's':
8934 /* "-s" means "read from stdin", but this is how we always
8935 * operate, so simply do nothing here. */
8936 break;
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008937 case 'l':
8938 flags |= OPT_login;
8939 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008940#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00008941 case '<': /* "big heredoc" support */
Denys Vlasenko729ecb82010-06-07 14:14:26 +02008942 full_write1_str(optarg);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00008943 _exit(0);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008944 case '$': {
8945 unsigned long long empty_trap_mask;
8946
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008947 G.root_pid = bb_strtou(optarg, &optarg, 16);
8948 optarg++;
Denys Vlasenkodea47882009-10-09 15:40:49 +02008949 G.root_ppid = bb_strtou(optarg, &optarg, 16);
8950 optarg++;
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008951 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
8952 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008953 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008954 optarg++;
8955 builtin_argc = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008956 optarg++;
8957 empty_trap_mask = bb_strtoull(optarg, &optarg, 16);
8958 if (empty_trap_mask != 0) {
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02008959 IF_HUSH_TRAP(int sig;)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008960 install_special_sighandlers();
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02008961# if ENABLE_HUSH_TRAP
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008962 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008963 for (sig = 1; sig < NSIG; sig++) {
8964 if (empty_trap_mask & (1LL << sig)) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008965 G_traps[sig] = xzalloc(1); /* == xstrdup(""); */
Denys Vlasenko0806e402011-05-12 23:06:20 +02008966 install_sighandler(sig, SIG_IGN);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008967 }
8968 }
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02008969# endif
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008970 }
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008971# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008972 optarg++;
8973 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008974# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008975 break;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008976 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008977 case 'R':
8978 case 'V':
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02008979 set_local_var(xstrdup(optarg), opt == 'R' ? SETFLAG_MAKE_RO : 0);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008980 break;
Denis Vlasenkobc569742009-04-12 20:35:19 +00008981# if ENABLE_HUSH_FUNCTIONS
8982 case 'F': {
8983 struct function *funcp = new_function(optarg);
8984 /* funcp->name is already set to optarg */
8985 /* funcp->body is set to NULL. It's a special case. */
8986 funcp->body_as_string = argv[optind];
8987 optind++;
8988 break;
8989 }
8990# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008991#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008992 case 'n':
8993 case 'x':
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008994 case 'e':
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008995 if (set_mode(1, opt, NULL) == 0) /* no error */
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008996 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008997 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008998#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008999 fprintf(stderr, "Usage: sh [FILE]...\n"
9000 " or: sh -c command [args]...\n\n");
9001 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00009002#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00009003 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00009004#endif
Eric Andersen25f27032001-04-26 23:22:31 +00009005 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00009006 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00009007
Denys Vlasenkof58f7052011-05-12 02:10:33 +02009008 /* Skip options. Try "hush -l": $1 should not be "-l"! */
9009 G.global_argc = argc - (optind - 1);
9010 G.global_argv = argv + (optind - 1);
9011 G.global_argv[0] = argv[0];
9012
Denys Vlasenkodea47882009-10-09 15:40:49 +02009013 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00009014 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02009015 G.root_ppid = getppid();
9016 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00009017
9018 /* If we are login shell... */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02009019 if (flags & OPT_login) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00009020 FILE *input;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00009021 debug_printf("sourcing /etc/profile\n");
9022 input = fopen_for_read("/etc/profile");
9023 if (input != NULL) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02009024 remember_FILE(input);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009025 install_special_sighandlers();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00009026 parse_and_run_file(input);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02009027 fclose_and_forget(input);
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00009028 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00009029 /* bash: after sourcing /etc/profile,
9030 * tries to source (in the given order):
9031 * ~/.bash_profile, ~/.bash_login, ~/.profile,
Denys Vlasenko28a105d2009-06-01 11:26:30 +02009032 * stopping on first found. --noprofile turns this off.
Denis Vlasenkof9375282009-04-05 19:13:39 +00009033 * bash also sources ~/.bash_logout on exit.
9034 * If called as sh, skips .bash_XXX files.
9035 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00009036 }
9037
Denys Vlasenkof58f7052011-05-12 02:10:33 +02009038 if (G.global_argv[1]) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00009039 FILE *input;
9040 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00009041 * "bash <script>" (which is never interactive (unless -i?))
9042 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00009043 * If called as sh, does the same but with $ENV.
Denys Vlasenko2eb0a7e2016-10-27 11:28:59 +02009044 * Also NB, per POSIX, $ENV should undergo parameter expansion.
Denis Vlasenkof9375282009-04-05 19:13:39 +00009045 */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02009046 G.global_argc--;
9047 G.global_argv++;
9048 debug_printf("running script '%s'\n", G.global_argv[0]);
Denys Vlasenkob7adf7a2016-10-25 17:00:13 +02009049 xfunc_error_retval = 127; /* for "hush /does/not/exist" case */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02009050 input = xfopen_for_read(G.global_argv[0]);
Denys Vlasenkob7adf7a2016-10-25 17:00:13 +02009051 xfunc_error_retval = 1;
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02009052 remember_FILE(input);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009053 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00009054 parse_and_run_file(input);
9055#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02009056 fclose_and_forget(input);
Denis Vlasenkof9375282009-04-05 19:13:39 +00009057#endif
9058 goto final_return;
9059 }
9060
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00009061 /* Up to here, shell was non-interactive. Now it may become one.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009062 * NB: don't forget to (re)run install_special_sighandlers() as needed.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00009063 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00009064
Denys Vlasenko28a105d2009-06-01 11:26:30 +02009065 /* A shell is interactive if the '-i' flag was given,
9066 * or if all of the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00009067 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00009068 * no arguments remaining or the -s flag given
9069 * standard input is a terminal
9070 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00009071 * Refer to Posix.2, the description of the 'sh' utility.
9072 */
9073#if ENABLE_HUSH_JOB
9074 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Mike Frysinger38478a62009-05-20 04:48:06 -04009075 G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
9076 debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp);
9077 if (G_saved_tty_pgrp < 0)
9078 G_saved_tty_pgrp = 0;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009079
9080 /* try to dup stdin to high fd#, >= 255 */
Denys Vlasenko2db74612017-07-07 22:07:28 +02009081 G_interactive_fd = fcntl_F_DUPFD(STDIN_FILENO, 254);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009082 if (G_interactive_fd < 0) {
9083 /* try to dup to any fd */
9084 G_interactive_fd = dup(STDIN_FILENO);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009085 if (G_interactive_fd < 0) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009086 /* give up */
9087 G_interactive_fd = 0;
Mike Frysinger38478a62009-05-20 04:48:06 -04009088 G_saved_tty_pgrp = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00009089 }
9090 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009091// TODO: track & disallow any attempts of user
9092// to (inadvertently) close/redirect G_interactive_fd
Eric Andersen25f27032001-04-26 23:22:31 +00009093 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00009094 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009095 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00009096 close_on_exec_on(G_interactive_fd);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009097
Mike Frysinger38478a62009-05-20 04:48:06 -04009098 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009099 /* If we were run as 'hush &', sleep until we are
9100 * in the foreground (tty pgrp == our pgrp).
9101 * If we get started under a job aware app (like bash),
9102 * make sure we are now in charge so we don't fight over
9103 * who gets the foreground */
9104 while (1) {
9105 pid_t shell_pgrp = getpgrp();
Mike Frysinger38478a62009-05-20 04:48:06 -04009106 G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
9107 if (G_saved_tty_pgrp == shell_pgrp)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009108 break;
9109 /* send TTIN to ourself (should stop us) */
9110 kill(- shell_pgrp, SIGTTIN);
9111 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00009112 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009113
Denys Vlasenkof58f7052011-05-12 02:10:33 +02009114 /* Install more signal handlers */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009115 install_special_sighandlers();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009116
Mike Frysinger38478a62009-05-20 04:48:06 -04009117 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009118 /* Set other signals to restore saved_tty_pgrp */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009119 install_fatal_sighandlers();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009120 /* Put ourselves in our own process group
9121 * (bash, too, does this only if ctty is available) */
9122 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
9123 /* Grab control of the terminal */
9124 tcsetpgrp(G_interactive_fd, getpid());
9125 }
Denys Vlasenko550bf5b2015-10-09 16:42:57 +02009126 enable_restore_tty_pgrp_on_exit();
Denys Vlasenko4840ae82011-09-04 15:28:03 +02009127
9128# if ENABLE_HUSH_SAVEHISTORY && MAX_HISTORY > 0
9129 {
9130 const char *hp = get_local_var_value("HISTFILE");
9131 if (!hp) {
9132 hp = get_local_var_value("HOME");
9133 if (hp)
9134 hp = concat_path_file(hp, ".hush_history");
9135 } else {
9136 hp = xstrdup(hp);
9137 }
9138 if (hp) {
9139 G.line_input_state->hist_file = hp;
Denys Vlasenko4840ae82011-09-04 15:28:03 +02009140 //set_local_var(xasprintf("HISTFILE=%s", ...));
9141 }
9142# if ENABLE_FEATURE_SH_HISTFILESIZE
9143 hp = get_local_var_value("HISTFILESIZE");
9144 G.line_input_state->max_history = size_from_HISTFILESIZE(hp);
9145# endif
9146 }
9147# endif
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01009148 } else {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009149 install_special_sighandlers();
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01009150 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00009151#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00009152 /* No job control compiled in, only prompt/line editing */
9153 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02009154 G_interactive_fd = fcntl_F_DUPFD(STDIN_FILENO, 254);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009155 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00009156 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009157 G_interactive_fd = dup(STDIN_FILENO);
9158 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00009159 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009160 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00009161 }
9162 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009163 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00009164 close_on_exec_on(G_interactive_fd);
Denis Vlasenkof9375282009-04-05 19:13:39 +00009165 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009166 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00009167#else
9168 /* We have interactiveness code disabled */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009169 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00009170#endif
9171 /* bash:
9172 * if interactive but not a login shell, sources ~/.bashrc
9173 * (--norc turns this off, --rcfile <file> overrides)
9174 */
9175
9176 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Denys Vlasenkoc34c0332009-09-29 12:25:30 +02009177 /* note: ash and hush share this string */
9178 printf("\n\n%s %s\n"
9179 IF_HUSH_HELP("Enter 'help' for a list of built-in commands.\n")
9180 "\n",
9181 bb_banner,
9182 "hush - the humble shell"
9183 );
Mike Frysingerb2705e12009-03-23 08:44:02 +00009184 }
9185
Denis Vlasenkof9375282009-04-05 19:13:39 +00009186 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00009187
Denis Vlasenkod76c0492007-05-25 02:16:25 +00009188 final_return:
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00009189 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00009190}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00009191
9192
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009193/*
9194 * Built-ins
9195 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009196static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009197{
9198 return 0;
9199}
9200
Denys Vlasenko265062d2017-01-10 15:13:30 +01009201#if ENABLE_HUSH_TEST || ENABLE_HUSH_ECHO || ENABLE_HUSH_PRINTF || ENABLE_HUSH_KILL
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02009202static int run_applet_main(char **argv, int (*applet_main_func)(int argc, char **argv))
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009203{
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02009204 int argc = string_array_len(argv);
9205 return applet_main_func(argc, argv);
Mike Frysingerccb19592009-10-15 03:31:15 -04009206}
Denys Vlasenko265062d2017-01-10 15:13:30 +01009207#endif
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01009208#if ENABLE_HUSH_TEST || BASH_TEST2
Mike Frysingerccb19592009-10-15 03:31:15 -04009209static int FAST_FUNC builtin_test(char **argv)
9210{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02009211 return run_applet_main(argv, test_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009212}
Denys Vlasenko265062d2017-01-10 15:13:30 +01009213#endif
Denys Vlasenko1cc68042017-01-09 17:10:04 +01009214#if ENABLE_HUSH_ECHO
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009215static int FAST_FUNC builtin_echo(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009216{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02009217 return run_applet_main(argv, echo_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009218}
Denys Vlasenko1cc68042017-01-09 17:10:04 +01009219#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009220#if ENABLE_HUSH_PRINTF
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04009221static int FAST_FUNC builtin_printf(char **argv)
9222{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02009223 return run_applet_main(argv, printf_main);
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04009224}
9225#endif
9226
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009227#if ENABLE_HUSH_HELP
9228static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM)
9229{
9230 const struct built_in_command *x;
9231
9232 printf(
9233 "Built-in commands:\n"
9234 "------------------\n");
9235 for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) {
9236 if (x->b_descr)
9237 printf("%-10s%s\n", x->b_cmd, x->b_descr);
9238 }
9239 return EXIT_SUCCESS;
9240}
9241#endif
9242
9243#if MAX_HISTORY && ENABLE_FEATURE_EDITING
9244static int FAST_FUNC builtin_history(char **argv UNUSED_PARAM)
9245{
9246 show_history(G.line_input_state);
9247 return EXIT_SUCCESS;
9248}
9249#endif
9250
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009251static char **skip_dash_dash(char **argv)
9252{
9253 argv++;
9254 if (argv[0] && argv[0][0] == '-' && argv[0][1] == '-' && argv[0][2] == '\0')
9255 argv++;
9256 return argv;
9257}
9258
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009259static int FAST_FUNC builtin_cd(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009260{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009261 const char *newdir;
9262
9263 argv = skip_dash_dash(argv);
9264 newdir = argv[0];
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00009265 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00009266 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009267 * bash says "bash: cd: HOME not set" and does nothing
9268 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00009269 */
Denys Vlasenko90a99042009-09-06 02:36:23 +02009270 const char *home = get_local_var_value("HOME");
9271 newdir = home ? home : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00009272 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009273 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00009274 /* Mimic bash message exactly */
9275 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009276 return EXIT_FAILURE;
9277 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02009278 /* Read current dir (get_cwd(1) is inside) and set PWD.
9279 * Note: do not enforce exporting. If PWD was unset or unexported,
9280 * set it again, but do not export. bash does the same.
9281 */
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009282 set_pwd_var(/*flag:*/ 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009283 return EXIT_SUCCESS;
9284}
9285
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009286static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM)
9287{
9288 puts(get_cwd(0));
9289 return EXIT_SUCCESS;
9290}
9291
9292static int FAST_FUNC builtin_eval(char **argv)
9293{
9294 int rcode = EXIT_SUCCESS;
9295
9296 argv = skip_dash_dash(argv);
9297 if (*argv) {
9298 char *str = expand_strvec_to_string(argv);
9299 /* bash:
9300 * eval "echo Hi; done" ("done" is syntax error):
9301 * "echo Hi" will not execute too.
9302 */
9303 parse_and_run_string(str);
9304 free(str);
9305 rcode = G.last_exitcode;
9306 }
9307 return rcode;
9308}
9309
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009310static int FAST_FUNC builtin_exec(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009311{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009312 argv = skip_dash_dash(argv);
9313 if (argv[0] == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009314 return EXIT_SUCCESS; /* bash does this */
Denys Vlasenkof37eb392009-10-18 11:46:35 +02009315
Denys Vlasenkof37eb392009-10-18 11:46:35 +02009316 /* Careful: we can end up here after [v]fork. Do not restore
9317 * tty pgrp then, only top-level shell process does that */
9318 if (G_saved_tty_pgrp && getpid() == G.root_pid)
9319 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
9320
Denys Vlasenko5b3d2eb2017-07-31 18:02:28 +02009321 /* Saved-redirect fds, script fds and G_interactive_fd are still
9322 * open here. However, they are all CLOEXEC, and execv below
9323 * closes them. Try interactive "exec ls -l /proc/self/fd",
9324 * it should show no extra open fds in the "ls" process.
9325 * If we'd try to run builtins/NOEXECs, this would need improving.
9326 */
9327 //close_saved_fds_and_FILE_fds();
9328
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02009329 /* TODO: if exec fails, bash does NOT exit! We do.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009330 * We'll need to undo trap cleanup (it's inside execvp_or_die)
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02009331 * and tcsetpgrp, and this is inherently racy.
9332 */
9333 execvp_or_die(argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009334}
9335
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009336static int FAST_FUNC builtin_exit(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009337{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00009338 debug_printf_exec("%s()\n", __func__);
Denis Vlasenko40e84372009-04-18 11:23:38 +00009339
9340 /* interactive bash:
9341 * # trap "echo EEE" EXIT
9342 * # exit
9343 * exit
9344 * There are stopped jobs.
9345 * (if there are _stopped_ jobs, running ones don't count)
9346 * # exit
9347 * exit
Denys Vlasenko6830ade2013-01-15 13:58:01 +01009348 * EEE (then bash exits)
Denis Vlasenko40e84372009-04-18 11:23:38 +00009349 *
Denys Vlasenkoa110c902010-09-12 15:38:04 +02009350 * TODO: we can use G.exiting = -1 as indicator "last cmd was exit"
Denis Vlasenko40e84372009-04-18 11:23:38 +00009351 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00009352
9353 /* note: EXIT trap is run by hush_exit */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009354 argv = skip_dash_dash(argv);
9355 if (argv[0] == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00009356 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009357 /* mimic bash: exit 123abc == exit 255 + error msg */
9358 xfunc_error_retval = 255;
9359 /* bash: exit -2 == exit 254, no error msg */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009360 hush_exit(xatoi(argv[0]) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009361}
9362
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009363#if ENABLE_HUSH_TYPE
9364/* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */
9365static int FAST_FUNC builtin_type(char **argv)
9366{
9367 int ret = EXIT_SUCCESS;
9368
9369 while (*++argv) {
9370 const char *type;
9371 char *path = NULL;
9372
9373 if (0) {} /* make conditional compile easier below */
9374 /*else if (find_alias(*argv))
9375 type = "an alias";*/
9376#if ENABLE_HUSH_FUNCTIONS
9377 else if (find_function(*argv))
9378 type = "a function";
9379#endif
9380 else if (find_builtin(*argv))
9381 type = "a shell builtin";
9382 else if ((path = find_in_path(*argv)) != NULL)
9383 type = path;
9384 else {
9385 bb_error_msg("type: %s: not found", *argv);
9386 ret = EXIT_FAILURE;
9387 continue;
9388 }
9389
9390 printf("%s is %s\n", *argv, type);
9391 free(path);
9392 }
9393
9394 return ret;
9395}
9396#endif
9397
9398#if ENABLE_HUSH_READ
9399/* Interruptibility of read builtin in bash
9400 * (tested on bash-4.2.8 by sending signals (not by ^C)):
9401 *
9402 * Empty trap makes read ignore corresponding signal, for any signal.
9403 *
9404 * SIGINT:
9405 * - terminates non-interactive shell;
9406 * - interrupts read in interactive shell;
9407 * if it has non-empty trap:
9408 * - executes trap and returns to command prompt in interactive shell;
9409 * - executes trap and returns to read in non-interactive shell;
9410 * SIGTERM:
9411 * - is ignored (does not interrupt) read in interactive shell;
9412 * - terminates non-interactive shell;
9413 * if it has non-empty trap:
9414 * - executes trap and returns to read;
9415 * SIGHUP:
9416 * - terminates shell (regardless of interactivity);
9417 * if it has non-empty trap:
9418 * - executes trap and returns to read;
Denys Vlasenkof5470412017-05-22 19:34:45 +02009419 * SIGCHLD from children:
9420 * - does not interrupt read regardless of interactivity:
9421 * try: sleep 1 & read x; echo $x
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009422 */
9423static int FAST_FUNC builtin_read(char **argv)
9424{
9425 const char *r;
9426 char *opt_n = NULL;
9427 char *opt_p = NULL;
9428 char *opt_t = NULL;
9429 char *opt_u = NULL;
9430 const char *ifs;
9431 int read_flags;
9432
9433 /* "!": do not abort on errors.
9434 * Option string must start with "sr" to match BUILTIN_READ_xxx
9435 */
9436 read_flags = getopt32(argv, "!srn:p:t:u:", &opt_n, &opt_p, &opt_t, &opt_u);
9437 if (read_flags == (uint32_t)-1)
9438 return EXIT_FAILURE;
9439 argv += optind;
9440 ifs = get_local_var_value("IFS"); /* can be NULL */
9441
9442 again:
9443 r = shell_builtin_read(set_local_var_from_halves,
9444 argv,
9445 ifs,
9446 read_flags,
9447 opt_n,
9448 opt_p,
9449 opt_t,
9450 opt_u
9451 );
9452
9453 if ((uintptr_t)r == 1 && errno == EINTR) {
9454 unsigned sig = check_and_run_traps();
Denys Vlasenkof5470412017-05-22 19:34:45 +02009455 if (sig != SIGINT)
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009456 goto again;
9457 }
9458
9459 if ((uintptr_t)r > 1) {
9460 bb_error_msg("%s", r);
9461 r = (char*)(uintptr_t)1;
9462 }
9463
9464 return (uintptr_t)r;
9465}
9466#endif
9467
9468#if ENABLE_HUSH_UMASK
9469static int FAST_FUNC builtin_umask(char **argv)
9470{
9471 int rc;
9472 mode_t mask;
9473
9474 rc = 1;
9475 mask = umask(0);
9476 argv = skip_dash_dash(argv);
9477 if (argv[0]) {
9478 mode_t old_mask = mask;
9479
9480 /* numeric umasks are taken as-is */
9481 /* symbolic umasks are inverted: "umask a=rx" calls umask(222) */
9482 if (!isdigit(argv[0][0]))
9483 mask ^= 0777;
9484 mask = bb_parse_mode(argv[0], mask);
9485 if (!isdigit(argv[0][0]))
9486 mask ^= 0777;
9487 if ((unsigned)mask > 0777) {
9488 mask = old_mask;
9489 /* bash messages:
9490 * bash: umask: 'q': invalid symbolic mode operator
9491 * bash: umask: 999: octal number out of range
9492 */
9493 bb_error_msg("%s: invalid mode '%s'", "umask", argv[0]);
9494 rc = 0;
9495 }
9496 } else {
9497 /* Mimic bash */
9498 printf("%04o\n", (unsigned) mask);
9499 /* fall through and restore mask which we set to 0 */
9500 }
9501 umask(mask);
9502
9503 return !rc; /* rc != 0 - success */
9504}
9505#endif
9506
Denys Vlasenko41ade052017-01-08 18:56:24 +01009507#if ENABLE_HUSH_EXPORT || ENABLE_HUSH_TRAP
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009508static void print_escaped(const char *s)
9509{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009510 if (*s == '\'')
9511 goto squote;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009512 do {
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009513 const char *p = strchrnul(s, '\'');
9514 /* print 'xxxx', possibly just '' */
9515 printf("'%.*s'", (int)(p - s), s);
9516 if (*p == '\0')
9517 break;
9518 s = p;
9519 squote:
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009520 /* s points to '; print "'''...'''" */
9521 putchar('"');
9522 do putchar('\''); while (*++s == '\'');
9523 putchar('"');
9524 } while (*s);
9525}
Denys Vlasenko41ade052017-01-08 18:56:24 +01009526#endif
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009527
Denys Vlasenko1e660422017-07-17 21:10:50 +02009528#if ENABLE_HUSH_EXPORT || ENABLE_HUSH_LOCAL || ENABLE_HUSH_READONLY
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009529static int helper_export_local(char **argv, unsigned flags)
Denys Vlasenko295fef82009-06-03 12:47:26 +02009530{
9531 do {
9532 char *name = *argv;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009533 char *name_end = strchrnul(name, '=');
Denys Vlasenko295fef82009-06-03 12:47:26 +02009534
9535 /* So far we do not check that name is valid (TODO?) */
9536
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009537 if (*name_end == '\0') {
9538 struct variable *var, **vpp;
Denys Vlasenko295fef82009-06-03 12:47:26 +02009539
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009540 vpp = get_ptr_to_local_var(name, name_end - name);
9541 var = vpp ? *vpp : NULL;
9542
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009543 if (flags & SETFLAG_UNEXPORT) {
Denys Vlasenko295fef82009-06-03 12:47:26 +02009544 /* export -n NAME (without =VALUE) */
9545 if (var) {
9546 var->flg_export = 0;
9547 debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
9548 unsetenv(name);
9549 } /* else: export -n NOT_EXISTING_VAR: no-op */
9550 continue;
9551 }
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009552 if (flags & SETFLAG_EXPORT) {
Denys Vlasenko295fef82009-06-03 12:47:26 +02009553 /* export NAME (without =VALUE) */
9554 if (var) {
9555 var->flg_export = 1;
9556 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
9557 putenv(var->varstr);
9558 continue;
9559 }
9560 }
Denys Vlasenko38ef39a2017-07-18 01:40:01 +02009561 if (flags & SETFLAG_MAKE_RO) {
9562 /* readonly NAME (without =VALUE) */
9563 if (var) {
9564 var->flg_read_only = 1;
9565 continue;
9566 }
9567 }
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009568# if ENABLE_HUSH_LOCAL
Denys Vlasenkob95ee962017-07-17 21:19:53 +02009569 /* Is this "local" bltin? */
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009570 if (!(flags & (SETFLAG_EXPORT|SETFLAG_UNEXPORT|SETFLAG_MAKE_RO))) {
9571 unsigned lvl = flags >> SETFLAG_LOCAL_SHIFT;
Denys Vlasenkob95ee962017-07-17 21:19:53 +02009572 if (var && var->func_nest_level == lvl) {
9573 /* "local x=abc; ...; local x" - ignore second local decl */
9574 continue;
9575 }
Denys Vlasenko61508d92016-10-02 21:12:02 +02009576 }
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009577# endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02009578 /* Exporting non-existing variable.
9579 * bash does not put it in environment,
9580 * but remembers that it is exported,
9581 * and does put it in env when it is set later.
Denys Vlasenko1e660422017-07-17 21:10:50 +02009582 * We just set it to "" and export.
9583 */
Denys Vlasenko295fef82009-06-03 12:47:26 +02009584 /* Or, it's "local NAME" (without =VALUE).
Denys Vlasenko1e660422017-07-17 21:10:50 +02009585 * bash sets the value to "".
9586 */
9587 /* Or, it's "readonly NAME" (without =VALUE).
9588 * bash remembers NAME and disallows its creation
9589 * in the future.
9590 */
Denys Vlasenko295fef82009-06-03 12:47:26 +02009591 name = xasprintf("%s=", name);
9592 } else {
9593 /* (Un)exporting/making local NAME=VALUE */
9594 name = xstrdup(name);
9595 }
Denys Vlasenko38ef39a2017-07-18 01:40:01 +02009596 if (set_local_var(name, flags))
9597 return EXIT_FAILURE;
Denys Vlasenko295fef82009-06-03 12:47:26 +02009598 } while (*++argv);
Denys Vlasenko1e660422017-07-17 21:10:50 +02009599 return EXIT_SUCCESS;
Denys Vlasenko295fef82009-06-03 12:47:26 +02009600}
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009601#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02009602
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009603#if ENABLE_HUSH_EXPORT
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009604static int FAST_FUNC builtin_export(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009605{
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00009606 unsigned opt_unexport;
9607
Denys Vlasenkodf5131c2009-06-07 16:04:17 +02009608#if ENABLE_HUSH_EXPORT_N
9609 /* "!": do not abort on errors */
9610 opt_unexport = getopt32(argv, "!n");
9611 if (opt_unexport == (uint32_t)-1)
9612 return EXIT_FAILURE;
9613 argv += optind;
9614#else
9615 opt_unexport = 0;
9616 argv++;
9617#endif
9618
9619 if (argv[0] == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009620 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009621 if (e) {
9622 while (*e) {
9623#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009624 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009625#else
9626 /* ash emits: export VAR='VAL'
9627 * bash: declare -x VAR="VAL"
9628 * we follow ash example */
9629 const char *s = *e++;
9630 const char *p = strchr(s, '=');
9631
9632 if (!p) /* wtf? take next variable */
9633 continue;
9634 /* export var= */
9635 printf("export %.*s", (int)(p - s) + 1, s);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009636 print_escaped(p + 1);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009637 putchar('\n');
9638#endif
9639 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01009640 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009641 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009642 return EXIT_SUCCESS;
9643 }
9644
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009645 return helper_export_local(argv, opt_unexport ? SETFLAG_UNEXPORT : SETFLAG_EXPORT);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009646}
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009647#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009648
Denys Vlasenko295fef82009-06-03 12:47:26 +02009649#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009650static int FAST_FUNC builtin_local(char **argv)
Denys Vlasenko295fef82009-06-03 12:47:26 +02009651{
9652 if (G.func_nest_level == 0) {
9653 bb_error_msg("%s: not in a function", argv[0]);
9654 return EXIT_FAILURE; /* bash compat */
9655 }
Denys Vlasenko1e660422017-07-17 21:10:50 +02009656 argv++;
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009657 return helper_export_local(argv, G.func_nest_level << SETFLAG_LOCAL_SHIFT);
Denys Vlasenko295fef82009-06-03 12:47:26 +02009658}
9659#endif
9660
Denys Vlasenko1e660422017-07-17 21:10:50 +02009661#if ENABLE_HUSH_READONLY
9662static int FAST_FUNC builtin_readonly(char **argv)
9663{
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009664 argv++;
9665 if (*argv == NULL) {
Denys Vlasenko1e660422017-07-17 21:10:50 +02009666 /* bash: readonly [-p]: list all readonly VARs
9667 * (-p has no effect in bash)
9668 */
9669 struct variable *e;
9670 for (e = G.top_var; e; e = e->next) {
9671 if (e->flg_read_only) {
9672//TODO: quote value: readonly VAR='VAL'
9673 printf("readonly %s\n", e->varstr);
9674 }
9675 }
9676 return EXIT_SUCCESS;
9677 }
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009678 return helper_export_local(argv, SETFLAG_MAKE_RO);
Denys Vlasenko1e660422017-07-17 21:10:50 +02009679}
9680#endif
9681
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009682#if ENABLE_HUSH_UNSET
Denys Vlasenko61508d92016-10-02 21:12:02 +02009683/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
9684static int FAST_FUNC builtin_unset(char **argv)
9685{
9686 int ret;
9687 unsigned opts;
9688
9689 /* "!": do not abort on errors */
9690 /* "+": stop at 1st non-option */
9691 opts = getopt32(argv, "!+vf");
9692 if (opts == (unsigned)-1)
9693 return EXIT_FAILURE;
9694 if (opts == 3) {
9695 bb_error_msg("unset: -v and -f are exclusive");
9696 return EXIT_FAILURE;
9697 }
9698 argv += optind;
9699
9700 ret = EXIT_SUCCESS;
9701 while (*argv) {
9702 if (!(opts & 2)) { /* not -f */
9703 if (unset_local_var(*argv)) {
9704 /* unset <nonexistent_var> doesn't fail.
9705 * Error is when one tries to unset RO var.
9706 * Message was printed by unset_local_var. */
9707 ret = EXIT_FAILURE;
9708 }
9709 }
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009710# if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko61508d92016-10-02 21:12:02 +02009711 else {
9712 unset_func(*argv);
9713 }
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009714# endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009715 argv++;
9716 }
9717 return ret;
9718}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009719#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009720
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009721#if ENABLE_HUSH_SET
Denys Vlasenko61508d92016-10-02 21:12:02 +02009722/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
9723 * built-in 'set' handler
9724 * SUSv3 says:
9725 * set [-abCefhmnuvx] [-o option] [argument...]
9726 * set [+abCefhmnuvx] [+o option] [argument...]
9727 * set -- [argument...]
9728 * set -o
9729 * set +o
9730 * Implementations shall support the options in both their hyphen and
9731 * plus-sign forms. These options can also be specified as options to sh.
9732 * Examples:
9733 * Write out all variables and their values: set
9734 * Set $1, $2, and $3 and set "$#" to 3: set c a b
9735 * Turn on the -x and -v options: set -xv
9736 * Unset all positional parameters: set --
9737 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
9738 * Set the positional parameters to the expansion of x, even if x expands
9739 * with a leading '-' or '+': set -- $x
9740 *
9741 * So far, we only support "set -- [argument...]" and some of the short names.
9742 */
9743static int FAST_FUNC builtin_set(char **argv)
9744{
9745 int n;
9746 char **pp, **g_argv;
9747 char *arg = *++argv;
9748
9749 if (arg == NULL) {
9750 struct variable *e;
9751 for (e = G.top_var; e; e = e->next)
9752 puts(e->varstr);
9753 return EXIT_SUCCESS;
9754 }
9755
9756 do {
9757 if (strcmp(arg, "--") == 0) {
9758 ++argv;
9759 goto set_argv;
9760 }
9761 if (arg[0] != '+' && arg[0] != '-')
9762 break;
9763 for (n = 1; arg[n]; ++n) {
9764 if (set_mode((arg[0] == '-'), arg[n], argv[1]))
9765 goto error;
9766 if (arg[n] == 'o' && argv[1])
9767 argv++;
9768 }
9769 } while ((arg = *++argv) != NULL);
9770 /* Now argv[0] is 1st argument */
9771
9772 if (arg == NULL)
9773 return EXIT_SUCCESS;
9774 set_argv:
9775
9776 /* NB: G.global_argv[0] ($0) is never freed/changed */
9777 g_argv = G.global_argv;
9778 if (G.global_args_malloced) {
9779 pp = g_argv;
9780 while (*++pp)
9781 free(*pp);
9782 g_argv[1] = NULL;
9783 } else {
9784 G.global_args_malloced = 1;
9785 pp = xzalloc(sizeof(pp[0]) * 2);
9786 pp[0] = g_argv[0]; /* retain $0 */
9787 g_argv = pp;
9788 }
9789 /* This realloc's G.global_argv */
9790 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
9791
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02009792 G.global_argc = 1 + string_array_len(pp + 1);
Denys Vlasenko61508d92016-10-02 21:12:02 +02009793
9794 return EXIT_SUCCESS;
9795
9796 /* Nothing known, so abort */
9797 error:
9798 bb_error_msg("set: %s: invalid option", arg);
9799 return EXIT_FAILURE;
9800}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009801#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009802
9803static int FAST_FUNC builtin_shift(char **argv)
9804{
9805 int n = 1;
9806 argv = skip_dash_dash(argv);
9807 if (argv[0]) {
Denys Vlasenkoe59591a2017-07-06 20:12:44 +02009808 n = bb_strtou(argv[0], NULL, 10);
9809 if (errno || n < 0) {
9810 /* shared string with ash.c */
9811 bb_error_msg("Illegal number: %s", argv[0]);
9812 /*
9813 * ash aborts in this case.
9814 * bash prints error message and set $? to 1.
9815 * Interestingly, for "shift 99999" bash does not
9816 * print error message, but does set $? to 1
9817 * (and does no shifting at all).
9818 */
9819 }
Denys Vlasenko61508d92016-10-02 21:12:02 +02009820 }
9821 if (n >= 0 && n < G.global_argc) {
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01009822 if (G_global_args_malloced) {
Denys Vlasenko61508d92016-10-02 21:12:02 +02009823 int m = 1;
9824 while (m <= n)
9825 free(G.global_argv[m++]);
9826 }
9827 G.global_argc -= n;
9828 memmove(&G.global_argv[1], &G.global_argv[n+1],
9829 G.global_argc * sizeof(G.global_argv[0]));
9830 return EXIT_SUCCESS;
9831 }
9832 return EXIT_FAILURE;
9833}
9834
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009835static int FAST_FUNC builtin_source(char **argv)
Denys Vlasenko61508d92016-10-02 21:12:02 +02009836{
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009837 char *arg_path, *filename;
9838 FILE *input;
9839 save_arg_t sv;
9840 char *args_need_save;
9841#if ENABLE_HUSH_FUNCTIONS
9842 smallint sv_flg;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009843#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009844
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009845 argv = skip_dash_dash(argv);
9846 filename = argv[0];
9847 if (!filename) {
9848 /* bash says: "bash: .: filename argument required" */
9849 return 2; /* bash compat */
9850 }
9851 arg_path = NULL;
9852 if (!strchr(filename, '/')) {
9853 arg_path = find_in_path(filename);
9854 if (arg_path)
9855 filename = arg_path;
9856 }
9857 input = remember_FILE(fopen_or_warn(filename, "r"));
9858 free(arg_path);
9859 if (!input) {
9860 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
9861 /* POSIX: non-interactive shell should abort here,
9862 * not merely fail. So far no one complained :)
9863 */
9864 return EXIT_FAILURE;
9865 }
9866
9867#if ENABLE_HUSH_FUNCTIONS
9868 sv_flg = G_flag_return_in_progress;
9869 /* "we are inside sourced file, ok to use return" */
9870 G_flag_return_in_progress = -1;
9871#endif
9872 args_need_save = argv[1]; /* used as a boolean variable */
9873 if (args_need_save)
9874 save_and_replace_G_args(&sv, argv);
9875
9876 /* "false; . ./empty_line; echo Zero:$?" should print 0 */
9877 G.last_exitcode = 0;
9878 parse_and_run_file(input);
9879 fclose_and_forget(input);
9880
9881 if (args_need_save) /* can't use argv[1] instead: "shift" can mangle it */
9882 restore_G_args(&sv, argv);
9883#if ENABLE_HUSH_FUNCTIONS
9884 G_flag_return_in_progress = sv_flg;
9885#endif
9886
9887 return G.last_exitcode;
9888}
9889
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009890#if ENABLE_HUSH_TRAP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009891static int FAST_FUNC builtin_trap(char **argv)
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009892{
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009893 int sig;
9894 char *new_cmd;
9895
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009896 if (!G_traps)
9897 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009898
9899 argv++;
9900 if (!*argv) {
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00009901 int i;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009902 /* No args: print all trapped */
9903 for (i = 0; i < NSIG; ++i) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009904 if (G_traps[i]) {
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009905 printf("trap -- ");
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009906 print_escaped(G_traps[i]);
Denys Vlasenkoe74aaf92009-09-27 02:05:45 +02009907 /* note: bash adds "SIG", but only if invoked
9908 * as "bash". If called as "sh", or if set -o posix,
9909 * then it prints short signal names.
9910 * We are printing short names: */
9911 printf(" %s\n", get_signame(i));
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009912 }
9913 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01009914 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009915 return EXIT_SUCCESS;
9916 }
9917
9918 new_cmd = NULL;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009919 /* If first arg is a number: reset all specified signals */
9920 sig = bb_strtou(*argv, NULL, 10);
9921 if (errno == 0) {
9922 int ret;
9923 process_sig_list:
9924 ret = EXIT_SUCCESS;
9925 while (*argv) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009926 sighandler_t handler;
9927
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009928 sig = get_signum(*argv++);
Denys Vlasenko86981e32017-07-25 20:06:17 +02009929 if (sig < 0) {
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009930 ret = EXIT_FAILURE;
9931 /* Mimic bash message exactly */
Denys Vlasenko74562982017-07-06 18:40:45 +02009932 bb_error_msg("trap: %s: invalid signal specification", argv[-1]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009933 continue;
9934 }
9935
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009936 free(G_traps[sig]);
9937 G_traps[sig] = xstrdup(new_cmd);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009938
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01009939 debug_printf("trap: setting SIG%s (%i) to '%s'\n",
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009940 get_signame(sig), sig, G_traps[sig]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009941
9942 /* There is no signal for 0 (EXIT) */
9943 if (sig == 0)
9944 continue;
9945
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009946 if (new_cmd)
9947 handler = (new_cmd[0] ? record_pending_signo : SIG_IGN);
9948 else
9949 /* We are removing trap handler */
9950 handler = pick_sighandler(sig);
Denys Vlasenko0806e402011-05-12 23:06:20 +02009951 install_sighandler(sig, handler);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009952 }
9953 return ret;
9954 }
9955
9956 if (!argv[1]) { /* no second arg */
9957 bb_error_msg("trap: invalid arguments");
9958 return EXIT_FAILURE;
9959 }
9960
9961 /* First arg is "-": reset all specified to default */
9962 /* First arg is "--": skip it, the rest is "handler SIGs..." */
9963 /* Everything else: set arg as signal handler
9964 * (includes "" case, which ignores signal) */
9965 if (argv[0][0] == '-') {
9966 if (argv[0][1] == '\0') { /* "-" */
9967 /* new_cmd remains NULL: "reset these sigs" */
9968 goto reset_traps;
9969 }
9970 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
9971 argv++;
9972 }
9973 /* else: "-something", no special meaning */
9974 }
9975 new_cmd = *argv;
9976 reset_traps:
9977 argv++;
9978 goto process_sig_list;
9979}
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009980#endif
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009981
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009982#if ENABLE_HUSH_JOB
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009983static struct pipe *parse_jobspec(const char *str)
9984{
9985 struct pipe *pi;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009986 unsigned jobnum;
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009987
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009988 if (sscanf(str, "%%%u", &jobnum) != 1) {
9989 if (str[0] != '%'
9990 || (str[1] != '%' && str[1] != '+' && str[1] != '\0')
9991 ) {
9992 bb_error_msg("bad argument '%s'", str);
9993 return NULL;
9994 }
9995 /* It is "%%", "%+" or "%" - current job */
9996 jobnum = G.last_jobid;
9997 if (jobnum == 0) {
9998 bb_error_msg("no current job");
9999 return NULL;
10000 }
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +010010001 }
10002 for (pi = G.job_list; pi; pi = pi->next) {
10003 if (pi->jobid == jobnum) {
10004 return pi;
10005 }
10006 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +010010007 bb_error_msg("%u: no such job", jobnum);
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +010010008 return NULL;
10009}
10010
Denys Vlasenkoa1184af2017-01-10 15:58:02 +010010011static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM)
10012{
10013 struct pipe *job;
10014 const char *status_string;
10015
10016 checkjobs(NULL, 0 /*(no pid to wait for)*/);
10017 for (job = G.job_list; job; job = job->next) {
10018 if (job->alive_cmds == job->stopped_cmds)
10019 status_string = "Stopped";
10020 else
10021 status_string = "Running";
10022
10023 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
10024 }
Denys Vlasenko2ed74e22017-07-14 19:58:46 +020010025
10026 clean_up_last_dead_job();
10027
Denys Vlasenkoa1184af2017-01-10 15:58:02 +010010028 return EXIT_SUCCESS;
10029}
10030
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010031/* built-in 'fg' and 'bg' handler */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010032static int FAST_FUNC builtin_fg_bg(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010033{
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +010010034 int i;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010035 struct pipe *pi;
10036
Denis Vlasenko60b392f2009-04-03 19:14:32 +000010037 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010038 return EXIT_FAILURE;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +000010039
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010040 /* If they gave us no args, assume they want the last backgrounded task */
10041 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +000010042 for (pi = G.job_list; pi; pi = pi->next) {
10043 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010044 goto found;
10045 }
10046 }
10047 bb_error_msg("%s: no current job", argv[0]);
10048 return EXIT_FAILURE;
10049 }
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +010010050
10051 pi = parse_jobspec(argv[1]);
10052 if (!pi)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010053 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010054 found:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +000010055 /* TODO: bash prints a string representation
10056 * of job being foregrounded (like "sleep 1 | cat") */
Mike Frysinger38478a62009-05-20 04:48:06 -040010057 if (argv[0][0] == 'f' && G_saved_tty_pgrp) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010058 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +000010059 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010060 }
10061
10062 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +000010063 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
10064 for (i = 0; i < pi->num_cmds; i++) {
10065 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010066 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +000010067 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010068
10069 i = kill(- pi->pgrp, SIGCONT);
10070 if (i < 0) {
10071 if (errno == ESRCH) {
Denys Vlasenko16096292017-07-10 10:00:28 +020010072 delete_finished_job(pi);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010073 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010074 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +000010075 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010076 }
10077
Denis Vlasenko34d4d892009-04-04 20:24:37 +000010078 if (argv[0][0] == 'f') {
Denys Vlasenko16096292017-07-10 10:00:28 +020010079 remove_job_from_table(pi); /* FG job shouldn't be in job table */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +000010080 return checkjobs_and_fg_shell(pi);
10081 }
10082 return EXIT_SUCCESS;
10083}
10084#endif
10085
Denys Vlasenko1125d7d2017-01-08 17:19:38 +010010086#if ENABLE_HUSH_KILL
10087static int FAST_FUNC builtin_kill(char **argv)
10088{
10089 int ret = 0;
10090
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +010010091# if ENABLE_HUSH_JOB
10092 if (argv[1] && strcmp(argv[1], "-l") != 0) {
10093 int i = 1;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +010010094
10095 do {
10096 struct pipe *pi;
10097 char *dst;
10098 int j, n;
10099
10100 if (argv[i][0] != '%')
10101 continue;
10102 /*
10103 * "kill %N" - job kill
10104 * Converting to pgrp / pid kill
10105 */
10106 pi = parse_jobspec(argv[i]);
10107 if (!pi) {
10108 /* Eat bad jobspec */
10109 j = i;
10110 do {
10111 j++;
10112 argv[j - 1] = argv[j];
10113 } while (argv[j]);
10114 ret = 1;
10115 i--;
10116 continue;
10117 }
10118 /*
10119 * In jobs started under job control, we signal
10120 * entire process group by kill -PGRP_ID.
10121 * This happens, f.e., in interactive shell.
10122 *
10123 * Otherwise, we signal each child via
10124 * kill PID1 PID2 PID3.
10125 * Testcases:
10126 * sh -c 'sleep 1|sleep 1 & kill %1'
10127 * sh -c 'true|sleep 2 & sleep 1; kill %1'
10128 * sh -c 'true|sleep 1 & sleep 2; kill %1'
10129 */
Denys Vlasenko5362cc42017-01-09 05:57:13 +010010130 n = G_interactive_fd ? 1 : pi->num_cmds;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +010010131 dst = alloca(n * sizeof(int)*4);
10132 argv[i] = dst;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +010010133 if (G_interactive_fd)
10134 dst += sprintf(dst, " -%u", (int)pi->pgrp);
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +010010135 else for (j = 0; j < n; j++) {
Denys Vlasenko1125d7d2017-01-08 17:19:38 +010010136 struct command *cmd = &pi->cmds[j];
10137 /* Skip exited members of the job */
10138 if (cmd->pid == 0)
10139 continue;
10140 /*
10141 * kill_main has matching code to expect
10142 * leading space. Needed to not confuse
10143 * negative pids with "kill -SIGNAL_NO" syntax
10144 */
10145 dst += sprintf(dst, " %u", (int)cmd->pid);
10146 }
10147 *dst = '\0';
10148 } while (argv[++i]);
10149 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +010010150# endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +010010151
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +010010152 if (argv[1] || ret == 0) {
Denys Vlasenko1125d7d2017-01-08 17:19:38 +010010153 ret = run_applet_main(argv, kill_main);
10154 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +010010155 /* else: ret = 1, "kill %bad_jobspec" case */
Denys Vlasenko1125d7d2017-01-08 17:19:38 +010010156 return ret;
10157}
10158#endif
10159
10160#if ENABLE_HUSH_WAIT
Mike Frysinger56bdea12009-03-28 20:01:58 +000010161/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010162#if !ENABLE_HUSH_JOB
10163# define wait_for_child_or_signal(pipe,pid) wait_for_child_or_signal(pid)
10164#endif
10165static int wait_for_child_or_signal(struct pipe *waitfor_pipe, pid_t waitfor_pid)
Denys Vlasenko7e675362016-10-28 21:57:31 +020010166{
10167 int ret = 0;
10168 for (;;) {
10169 int sig;
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010170 sigset_t oldset;
Denys Vlasenko7e675362016-10-28 21:57:31 +020010171
Denys Vlasenko830ea352016-11-08 04:59:11 +010010172 if (!sigisemptyset(&G.pending_set))
10173 goto check_sig;
10174
Denys Vlasenko7e675362016-10-28 21:57:31 +020010175 /* waitpid is not interruptible by SA_RESTARTed
10176 * signals which we use. Thus, this ugly dance:
10177 */
10178
10179 /* Make sure possible SIGCHLD is stored in kernel's
10180 * pending signal mask before we call waitpid.
10181 * Or else we may race with SIGCHLD, lose it,
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010182 * and get stuck in sigsuspend...
Denys Vlasenko7e675362016-10-28 21:57:31 +020010183 */
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010184 sigfillset(&oldset); /* block all signals, remember old set */
10185 sigprocmask(SIG_SETMASK, &oldset, &oldset);
Denys Vlasenko7e675362016-10-28 21:57:31 +020010186
10187 if (!sigisemptyset(&G.pending_set)) {
10188 /* Crap! we raced with some signal! */
Denys Vlasenko7e675362016-10-28 21:57:31 +020010189 goto restore;
10190 }
10191
10192 /*errno = 0; - checkjobs does this */
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010193/* Can't pass waitfor_pipe into checkjobs(): it won't be interruptible */
Denys Vlasenko7e675362016-10-28 21:57:31 +020010194 ret = checkjobs(NULL, waitfor_pid); /* waitpid(WNOHANG) inside */
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010195 debug_printf_exec("checkjobs:%d\n", ret);
10196#if ENABLE_HUSH_JOB
10197 if (waitfor_pipe) {
10198 int rcode = job_exited_or_stopped(waitfor_pipe);
10199 debug_printf_exec("job_exited_or_stopped:%d\n", rcode);
10200 if (rcode >= 0) {
10201 ret = rcode;
10202 sigprocmask(SIG_SETMASK, &oldset, NULL);
10203 break;
10204 }
10205 }
10206#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +020010207 /* if ECHILD, there are no children (ret is -1 or 0) */
10208 /* if ret == 0, no children changed state */
10209 /* if ret != 0, it's exitcode+1 of exited waitfor_pid child */
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010210 if (errno == ECHILD || ret) {
10211 ret--;
10212 if (ret < 0) /* if ECHILD, may need to fix "ret" */
Denys Vlasenko7e675362016-10-28 21:57:31 +020010213 ret = 0;
10214 sigprocmask(SIG_SETMASK, &oldset, NULL);
10215 break;
10216 }
Denys Vlasenko7e675362016-10-28 21:57:31 +020010217 /* Wait for SIGCHLD or any other signal */
Denys Vlasenko7e675362016-10-28 21:57:31 +020010218 /* It is vitally important for sigsuspend that SIGCHLD has non-DFL handler! */
10219 /* Note: sigsuspend invokes signal handler */
10220 sigsuspend(&oldset);
10221 restore:
10222 sigprocmask(SIG_SETMASK, &oldset, NULL);
Denys Vlasenko830ea352016-11-08 04:59:11 +010010223 check_sig:
Denys Vlasenko7e675362016-10-28 21:57:31 +020010224 /* So, did we get a signal? */
Denys Vlasenko7e675362016-10-28 21:57:31 +020010225 sig = check_and_run_traps();
10226 if (sig /*&& sig != SIGCHLD - always true */) {
Denys Vlasenko7c40ddd2017-08-02 16:37:39 +020010227 /* Do this for any (non-ignored) signal, not only for ^C */
Denys Vlasenko7e675362016-10-28 21:57:31 +020010228 ret = 128 + sig;
10229 break;
10230 }
10231 /* SIGCHLD, or no signal, or ignored one, such as SIGQUIT. Repeat */
10232 }
10233 return ret;
10234}
10235
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010236static int FAST_FUNC builtin_wait(char **argv)
Mike Frysinger56bdea12009-03-28 20:01:58 +000010237{
Denys Vlasenko7e675362016-10-28 21:57:31 +020010238 int ret;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +020010239 int status;
Mike Frysinger56bdea12009-03-28 20:01:58 +000010240
Denys Vlasenkob131cce2010-05-20 03:39:43 +020010241 argv = skip_dash_dash(argv);
10242 if (argv[0] == NULL) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +000010243 /* Don't care about wait results */
10244 /* Note 1: must wait until there are no more children */
10245 /* Note 2: must be interruptible */
10246 /* Examples:
10247 * $ sleep 3 & sleep 6 & wait
10248 * [1] 30934 sleep 3
10249 * [2] 30935 sleep 6
10250 * [1] Done sleep 3
10251 * [2] Done sleep 6
10252 * $ sleep 3 & sleep 6 & wait
10253 * [1] 30936 sleep 3
10254 * [2] 30937 sleep 6
10255 * [1] Done sleep 3
10256 * ^C <-- after ~4 sec from keyboard
10257 * $
10258 */
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010259 return wait_for_child_or_signal(NULL, 0 /*(no job and no pid to wait for)*/);
Denis Vlasenko7566bae2009-03-31 17:24:49 +000010260 }
Mike Frysinger56bdea12009-03-28 20:01:58 +000010261
Denys Vlasenko7e675362016-10-28 21:57:31 +020010262 do {
Denis Vlasenkod5762932009-03-31 11:22:57 +000010263 pid_t pid = bb_strtou(*argv, NULL, 10);
Denys Vlasenko7e675362016-10-28 21:57:31 +020010264 if (errno || pid <= 0) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010265#if ENABLE_HUSH_JOB
10266 if (argv[0][0] == '%') {
Denys Vlasenko02affb42016-11-08 00:59:29 +010010267 struct pipe *wait_pipe;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +010010268 ret = 127; /* bash compat for bad jobspecs */
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010269 wait_pipe = parse_jobspec(*argv);
10270 if (wait_pipe) {
Denys Vlasenko02affb42016-11-08 00:59:29 +010010271 ret = job_exited_or_stopped(wait_pipe);
Denys Vlasenko2ed74e22017-07-14 19:58:46 +020010272 if (ret < 0) {
Denys Vlasenko02affb42016-11-08 00:59:29 +010010273 ret = wait_for_child_or_signal(wait_pipe, 0);
Denys Vlasenko2ed74e22017-07-14 19:58:46 +020010274 } else {
10275 /* waiting on "last dead job" removes it */
10276 clean_up_last_dead_job();
Denys Vlasenko13102632017-07-08 00:24:32 +020010277 }
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010278 }
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +010010279 /* else: parse_jobspec() already emitted error msg */
10280 continue;
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010281 }
10282#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +000010283 /* mimic bash message */
10284 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010285 ret = EXIT_FAILURE;
10286 continue; /* bash checks all argv[] */
Denis Vlasenkod5762932009-03-31 11:22:57 +000010287 }
Denys Vlasenko02affb42016-11-08 00:59:29 +010010288
Denys Vlasenko7e675362016-10-28 21:57:31 +020010289 /* Do we have such child? */
10290 ret = waitpid(pid, &status, WNOHANG);
10291 if (ret < 0) {
10292 /* No */
Denys Vlasenko840a4352017-07-07 22:56:02 +020010293 ret = 127;
Denys Vlasenko7e675362016-10-28 21:57:31 +020010294 if (errno == ECHILD) {
Denys Vlasenko0c5657e2017-07-14 19:27:03 +020010295 if (pid == G.last_bg_pid) {
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010296 /* "wait $!" but last bg task has already exited. Try:
10297 * (sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $?
10298 * In bash it prints exitcode 0, then 3.
Denys Vlasenko26ad94b2016-11-07 23:07:21 +010010299 * In dash, it is 127.
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010300 */
Denys Vlasenko840a4352017-07-07 22:56:02 +020010301 ret = G.last_bg_pid_exitcode;
Denys Vlasenko26ad94b2016-11-07 23:07:21 +010010302 } else {
10303 /* Example: "wait 1". mimic bash message */
10304 bb_error_msg("wait: pid %d is not a child of this shell", (int)pid);
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010305 }
Denys Vlasenko7e675362016-10-28 21:57:31 +020010306 } else {
10307 /* ??? */
10308 bb_perror_msg("wait %s", *argv);
10309 }
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010310 continue; /* bash checks all argv[] */
10311 }
10312 if (ret == 0) {
Denys Vlasenko7e675362016-10-28 21:57:31 +020010313 /* Yes, and it still runs */
Denys Vlasenko02affb42016-11-08 00:59:29 +010010314 ret = wait_for_child_or_signal(NULL, pid);
Denys Vlasenko7e675362016-10-28 21:57:31 +020010315 } else {
10316 /* Yes, and it just exited */
Denys Vlasenko02affb42016-11-08 00:59:29 +010010317 process_wait_result(NULL, pid, status);
Denys Vlasenko85378cd2015-10-11 21:47:11 +020010318 ret = WEXITSTATUS(status);
Mike Frysinger56bdea12009-03-28 20:01:58 +000010319 if (WIFSIGNALED(status))
10320 ret = 128 + WTERMSIG(status);
Mike Frysinger56bdea12009-03-28 20:01:58 +000010321 }
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010322 } while (*++argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +000010323
10324 return ret;
10325}
Denys Vlasenko1125d7d2017-01-08 17:19:38 +010010326#endif
Mike Frysinger56bdea12009-03-28 20:01:58 +000010327
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010328#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
10329static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
10330{
10331 if (argv[1]) {
10332 def = bb_strtou(argv[1], NULL, 10);
10333 if (errno || def < def_min || argv[2]) {
10334 bb_error_msg("%s: bad arguments", argv[0]);
10335 def = UINT_MAX;
10336 }
10337 }
10338 return def;
10339}
10340#endif
10341
Denis Vlasenkodadfb492008-07-29 10:16:05 +000010342#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010343static int FAST_FUNC builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +000010344{
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010345 unsigned depth;
Denis Vlasenko87a86552008-07-29 19:43:10 +000010346 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +000010347 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denys Vlasenko49117b42016-07-21 14:40:08 +020010348 /* if we came from builtin_continue(), need to undo "= 1" */
10349 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +000010350 return EXIT_SUCCESS; /* bash compat */
10351 }
Denys Vlasenko49117b42016-07-21 14:40:08 +020010352 G.flag_break_continue++; /* BC_BREAK = 1, or BC_CONTINUE = 2 */
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010353
10354 G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
10355 if (depth == UINT_MAX)
10356 G.flag_break_continue = BC_BREAK;
10357 if (G.depth_of_loop < depth)
Denis Vlasenko87a86552008-07-29 19:43:10 +000010358 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010359
Denis Vlasenkobcb25532008-07-28 23:04:34 +000010360 return EXIT_SUCCESS;
10361}
10362
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010363static int FAST_FUNC builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +000010364{
Denis Vlasenko4f504a92008-07-29 19:48:30 +000010365 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
10366 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +000010367}
Denis Vlasenkodadfb492008-07-29 10:16:05 +000010368#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010369
10370#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010371static int FAST_FUNC builtin_return(char **argv)
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010372{
10373 int rc;
10374
Denys Vlasenko04b46bc2016-10-01 22:28:03 +020010375 if (G_flag_return_in_progress != -1) {
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010376 bb_error_msg("%s: not in a function or sourced script", argv[0]);
10377 return EXIT_FAILURE; /* bash compat */
10378 }
10379
Denys Vlasenko04b46bc2016-10-01 22:28:03 +020010380 G_flag_return_in_progress = 1;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010381
10382 /* bash:
10383 * out of range: wraps around at 256, does not error out
10384 * non-numeric param:
10385 * f() { false; return qwe; }; f; echo $?
10386 * bash: return: qwe: numeric argument required <== we do this
10387 * 255 <== we also do this
10388 */
10389 rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
10390 return rc;
10391}
10392#endif
Denys Vlasenkoa1184af2017-01-10 15:58:02 +010010393
10394#if ENABLE_HUSH_MEMLEAK
10395static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM)
10396{
10397 void *p;
10398 unsigned long l;
10399
10400# ifdef M_TRIM_THRESHOLD
10401 /* Optional. Reduces probability of false positives */
10402 malloc_trim(0);
10403# endif
10404 /* Crude attempt to find where "free memory" starts,
10405 * sans fragmentation. */
10406 p = malloc(240);
10407 l = (unsigned long)p;
10408 free(p);
10409 p = malloc(3400);
10410 if (l < (unsigned long)p) l = (unsigned long)p;
10411 free(p);
10412
10413
10414# if 0 /* debug */
10415 {
10416 struct mallinfo mi = mallinfo();
10417 printf("top alloc:0x%lx malloced:%d+%d=%d\n", l,
10418 mi.arena, mi.hblkhd, mi.arena + mi.hblkhd);
10419 }
10420# endif
10421
10422 if (!G.memleak_value)
10423 G.memleak_value = l;
10424
10425 l -= G.memleak_value;
10426 if ((long)l < 0)
10427 l = 0;
10428 l /= 1024;
10429 if (l > 127)
10430 l = 127;
10431
10432 /* Exitcode is "how many kilobytes we leaked since 1st call" */
10433 return l;
10434}
10435#endif