blob: 55e581e16bf8c3bdc7fd046260a98cedf370d257 [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
104//config: bool "hush"
105//config: default y
106//config: help
Denys Vlasenko771f1992010-07-16 14:31:34 +0200107//config: hush is a small shell (25k). It handles the normal flow control
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200108//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.
111//config:
112//config: It will compile and work on no-mmu systems.
113//config:
Denys Vlasenkoe2069fb2010-10-04 00:01:47 +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
127//config: Enable {abc,def} extension.
128//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
134//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.
138//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
149//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.
154//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 Vlasenkof5604222017-01-10 14:58:54 +0100160//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 Vlasenkof5604222017-01-10 14:58:54 +0100177//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 Vlasenkof5604222017-01-10 14:58:54 +0100184//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
191//config: Enable support for local variables in functions.
192//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
198//config: Enable pseudorandom generator and dynamic variable "$RANDOM".
199//config: Each read of "$RANDOM" will generate a new pseudorandom value.
200//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 Vlasenko29082232010-07-16 13:52:32 +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
239//config: export -n unexports variables. It is a bash extension.
240//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
246//config: Enable support for read-only variables.
247//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 Vlasenko80f806c2017-01-10 16:51:10 +01001071 BLTIN("fg" , builtin_fg_bg , "Bring job into 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 Vlasenkod6b05eb2009-06-06 20:59:55 +02001124 BLTIN("wait" , builtin_wait , "Wait for process"),
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 Vlasenko606291b2009-09-23 23:15:43 +02001275# define die_if_script(lineno, ...) 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
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001283static void die_if_script(unsigned lineno, const char *fmt, ...)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001284{
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001285 va_list p;
1286
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001287#if HUSH_DEBUG >= 2
1288 bb_error_msg("hush.c:%u", lineno);
1289#endif
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001290 va_start(p, fmt);
1291 bb_verror_msg(fmt, p, NULL);
1292 va_end(p);
1293 if (!G_interactive_fd)
1294 xfunc_die();
Mike Frysinger6379bb42009-03-28 18:55:03 +00001295}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001296
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001297static void syntax_error(unsigned lineno UNUSED_PARAM, const char *msg)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001298{
1299 if (msg)
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001300 bb_error_msg("syntax error: %s", msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001301 else
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001302 bb_error_msg("syntax error");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001303}
1304
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001305static void syntax_error_at(unsigned lineno UNUSED_PARAM, const char *msg)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001306{
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001307 bb_error_msg("syntax error at '%s'", msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001308}
1309
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001310static void syntax_error_unterm_str(unsigned lineno UNUSED_PARAM, const char *s)
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001311{
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001312 bb_error_msg("syntax error: unterminated %s", s);
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001313}
1314
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001315static void syntax_error_unterm_ch(unsigned lineno, char ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001316{
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001317 char msg[2] = { ch, '\0' };
1318 syntax_error_unterm_str(lineno, msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001319}
1320
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001321static void syntax_error_unexpected_ch(unsigned lineno UNUSED_PARAM, int ch)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001322{
1323 char msg[2];
1324 msg[0] = ch;
1325 msg[1] = '\0';
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01001326#if HUSH_DEBUG >= 2
1327 bb_error_msg("hush.c:%u", lineno);
1328#endif
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001329 bb_error_msg("syntax error: unexpected %s", ch == EOF ? "EOF" : msg);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001330}
1331
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001332#if HUSH_DEBUG < 2
1333# undef die_if_script
1334# undef syntax_error
1335# undef syntax_error_at
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001336# undef syntax_error_unterm_ch
1337# undef syntax_error_unterm_str
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001338# undef syntax_error_unexpected_ch
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001339#else
Denys Vlasenko606291b2009-09-23 23:15:43 +02001340# define die_if_script(...) die_if_script(__LINE__, __VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001341# define syntax_error(msg) syntax_error(__LINE__, msg)
1342# define syntax_error_at(msg) syntax_error_at(__LINE__, msg)
1343# define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch)
1344# define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s)
1345# define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001346#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001347
Denis Vlasenko552433b2009-04-04 19:29:21 +00001348
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001349#if ENABLE_HUSH_INTERACTIVE
1350static void cmdedit_update_prompt(void);
1351#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001352# define cmdedit_update_prompt() ((void)0)
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001353#endif
1354
1355
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001356/* Utility functions
1357 */
Denis Vlasenko55789c62008-06-18 16:30:42 +00001358/* Replace each \x with x in place, return ptr past NUL. */
1359static char *unbackslash(char *src)
1360{
Denys Vlasenko71885402009-09-24 01:44:13 +02001361 char *dst = src = strchrnul(src, '\\');
Denis Vlasenko55789c62008-06-18 16:30:42 +00001362 while (1) {
1363 if (*src == '\\')
1364 src++;
1365 if ((*dst++ = *src++) == '\0')
1366 break;
1367 }
1368 return dst;
1369}
1370
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001371static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001372{
1373 int i;
1374 unsigned count1;
1375 unsigned count2;
1376 char **v;
1377
1378 v = strings;
1379 count1 = 0;
1380 if (v) {
1381 while (*v) {
1382 count1++;
1383 v++;
1384 }
1385 }
1386 count2 = 0;
1387 v = add;
1388 while (*v) {
1389 count2++;
1390 v++;
1391 }
1392 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
1393 v[count1 + count2] = NULL;
1394 i = count2;
1395 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001396 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001397 return v;
1398}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001399#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001400static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
1401{
1402 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
1403 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
1404 return ptr;
1405}
1406#define add_strings_to_strings(strings, add, need_to_dup) \
1407 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
1408#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001409
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001410/* Note: takes ownership of "add" ptr (it is not strdup'ed) */
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001411static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001412{
1413 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001414 v[0] = add;
1415 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001416 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001417}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001418#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001419static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
1420{
1421 char **ptr = add_string_to_strings(strings, add);
1422 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
1423 return ptr;
1424}
1425#define add_string_to_strings(strings, add) \
1426 xx_add_string_to_strings(__LINE__, strings, add)
1427#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001428
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001429static void free_strings(char **strings)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001430{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001431 char **v;
1432
1433 if (!strings)
1434 return;
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001435 v = strings;
1436 while (*v) {
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001437 free(*v);
1438 v++;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001439 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001440 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001441}
1442
Denys Vlasenko2db74612017-07-07 22:07:28 +02001443static int fcntl_F_DUPFD(int fd, int avoid_fd)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001444{
Denys Vlasenko2db74612017-07-07 22:07:28 +02001445 int newfd;
1446 repeat:
1447 newfd = fcntl(fd, F_DUPFD, avoid_fd + 1);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001448 if (newfd < 0) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02001449 if (errno == EBUSY)
1450 goto repeat;
1451 if (errno == EINTR)
1452 goto repeat;
1453 }
1454 return newfd;
1455}
1456
1457static int xdup_and_close(int fd, int F_DUPFD_maybe_CLOEXEC, int avoid_fd)
1458{
1459 int newfd;
1460 repeat:
1461 newfd = fcntl(fd, F_DUPFD_maybe_CLOEXEC, avoid_fd + 1);
1462 if (newfd < 0) {
1463 if (errno == EBUSY)
1464 goto repeat;
1465 if (errno == EINTR)
1466 goto repeat;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001467 /* fd was not open? */
1468 if (errno == EBADF)
1469 return fd;
1470 xfunc_die();
1471 }
1472 close(fd);
1473 return newfd;
1474}
1475
1476
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001477/* Manipulating the list of open FILEs */
1478static FILE *remember_FILE(FILE *fp)
1479{
1480 if (fp) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001481 struct FILE_list *n = xmalloc(sizeof(*n));
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001482 n->next = G.FILE_list;
1483 G.FILE_list = n;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001484 n->fp = fp;
1485 n->fd = fileno(fp);
1486 close_on_exec_on(n->fd);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001487 }
1488 return fp;
1489}
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001490static void fclose_and_forget(FILE *fp)
1491{
1492 struct FILE_list **pp = &G.FILE_list;
1493 while (*pp) {
1494 struct FILE_list *cur = *pp;
1495 if (cur->fp == fp) {
1496 *pp = cur->next;
1497 free(cur);
1498 break;
1499 }
1500 pp = &cur->next;
1501 }
1502 fclose(fp);
1503}
Denys Vlasenko2db74612017-07-07 22:07:28 +02001504static int save_FILEs_on_redirect(int fd, int avoid_fd)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001505{
1506 struct FILE_list *fl = G.FILE_list;
1507 while (fl) {
1508 if (fd == fl->fd) {
1509 /* We use it only on script files, they are all CLOEXEC */
Denys Vlasenko2db74612017-07-07 22:07:28 +02001510 fl->fd = xdup_and_close(fd, F_DUPFD_CLOEXEC, avoid_fd);
1511 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 +02001512 return 1;
1513 }
1514 fl = fl->next;
1515 }
1516 return 0;
1517}
1518static void restore_redirected_FILEs(void)
1519{
1520 struct FILE_list *fl = G.FILE_list;
1521 while (fl) {
1522 int should_be = fileno(fl->fp);
1523 if (fl->fd != should_be) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02001524 debug_printf_redir("restoring script fd from %d to %d\n", fl->fd, should_be);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001525 xmove_fd(fl->fd, should_be);
1526 fl->fd = should_be;
1527 }
1528 fl = fl->next;
1529 }
1530}
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02001531#if ENABLE_FEATURE_SH_STANDALONE && BB_MMU
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001532static void close_all_FILE_list(void)
1533{
1534 struct FILE_list *fl = G.FILE_list;
1535 while (fl) {
1536 /* fclose would also free FILE object.
1537 * It is disastrous if we share memory with a vforked parent.
1538 * I'm not sure we never come here after vfork.
1539 * Therefore just close fd, nothing more.
1540 */
1541 /*fclose(fl->fp); - unsafe */
1542 close(fl->fd);
1543 fl = fl->next;
1544 }
1545}
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001546#endif
1547
1548
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001549/* Helpers for setting new $n and restoring them back
1550 */
1551typedef struct save_arg_t {
1552 char *sv_argv0;
1553 char **sv_g_argv;
1554 int sv_g_argc;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001555 IF_HUSH_SET(smallint sv_g_malloced;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001556} save_arg_t;
1557
1558static void save_and_replace_G_args(save_arg_t *sv, char **argv)
1559{
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001560 sv->sv_argv0 = argv[0];
1561 sv->sv_g_argv = G.global_argv;
1562 sv->sv_g_argc = G.global_argc;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001563 IF_HUSH_SET(sv->sv_g_malloced = G.global_args_malloced;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001564
1565 argv[0] = G.global_argv[0]; /* retain $0 */
1566 G.global_argv = argv;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001567 IF_HUSH_SET(G.global_args_malloced = 0;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001568
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02001569 G.global_argc = 1 + string_array_len(argv + 1);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001570}
1571
1572static void restore_G_args(save_arg_t *sv, char **argv)
1573{
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001574#if ENABLE_HUSH_SET
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001575 if (G.global_args_malloced) {
1576 /* someone ran "set -- arg1 arg2 ...", undo */
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001577 char **pp = G.global_argv;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001578 while (*++pp) /* note: does not free $0 */
1579 free(*pp);
1580 free(G.global_argv);
1581 }
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001582#endif
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001583 argv[0] = sv->sv_argv0;
1584 G.global_argv = sv->sv_g_argv;
1585 G.global_argc = sv->sv_g_argc;
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01001586 IF_HUSH_SET(G.global_args_malloced = sv->sv_g_malloced;)
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001587}
1588
1589
Denis Vlasenkod5762932009-03-31 11:22:57 +00001590/* Basic theory of signal handling in shell
1591 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001592 * This does not describe what hush does, rather, it is current understanding
1593 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001594 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
1595 *
1596 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
1597 * is finished or backgrounded. It is the same in interactive and
1598 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001599 * a user trap handler is installed or a shell special one is in effect.
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001600 * ^C or ^Z from keyboard seems to execute "at once" because it usually
Denis Vlasenkod5762932009-03-31 11:22:57 +00001601 * backgrounds (i.e. stops) or kills all members of currently running
1602 * pipe.
1603 *
Denys Vlasenko8bd810b2013-11-28 01:50:01 +01001604 * Wait builtin is interruptible by signals for which user trap is set
Denis Vlasenkod5762932009-03-31 11:22:57 +00001605 * or by SIGINT in interactive shell.
1606 *
1607 * Trap handlers will execute even within trap handlers. (right?)
1608 *
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001609 * User trap handlers are forgotten when subshell ("(cmd)") is entered,
1610 * except for handlers set to '' (empty string).
Denis Vlasenkod5762932009-03-31 11:22:57 +00001611 *
1612 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001613 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001614 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001615 * Commands which are run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001616 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001617 *
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001618 * Ordinary commands have signals set to SIG_IGN/DFL as inherited
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001619 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001620 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001621 * Signals which differ from SIG_DFL action
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001622 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +00001623 *
1624 * SIGQUIT: ignore
1625 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001626 * SIGHUP (interactive):
1627 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +00001628 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00001629 * Note that ^Z is handled not by trapping SIGTSTP, but by seeing
1630 * that all pipe members are stopped. Try this in bash:
1631 * while :; do :; done - ^Z does not background it
1632 * (while :; do :; done) - ^Z backgrounds it
Denis Vlasenkod5762932009-03-31 11:22:57 +00001633 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001634 * of the command line, show prompt. NB: ^C does not send SIGINT
1635 * to interactive shell while shell is waiting for a pipe,
1636 * since shell is bg'ed (is not in foreground process group).
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001637 * Example 1: this waits 5 sec, but does not execute ls:
1638 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
1639 * Example 2: this does not wait and does not execute ls:
1640 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
1641 * Example 3: this does not wait 5 sec, but executes ls:
1642 * "sleep 5; ls -l" + press ^C
Denys Vlasenkob8709032011-05-08 21:20:01 +02001643 * Example 4: this does not wait and does not execute ls:
1644 * "sleep 5 & wait; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +00001645 *
1646 * (What happens to signals which are IGN on shell start?)
1647 * (What happens with signal mask on shell start?)
1648 *
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001649 * Old implementation
1650 * ==================
Denis Vlasenkod5762932009-03-31 11:22:57 +00001651 * We use in-kernel pending signal mask to determine which signals were sent.
1652 * We block all signals which we don't want to take action immediately,
1653 * i.e. we block all signals which need to have special handling as described
1654 * above, and all signals which have traps set.
1655 * After each pipe execution, we extract any pending signals via sigtimedwait()
1656 * and act on them.
1657 *
Denys Vlasenko10c01312011-05-11 11:49:21 +02001658 * unsigned special_sig_mask: a mask of such "special" signals
Denis Vlasenkod5762932009-03-31 11:22:57 +00001659 * sigset_t blocked_set: current blocked signal set
1660 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001661 * "trap - SIGxxx":
Denys Vlasenko10c01312011-05-11 11:49:21 +02001662 * clear bit in blocked_set unless it is also in special_sig_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001663 * "trap 'cmd' SIGxxx":
1664 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +00001665 * after [v]fork, if we plan to be a shell:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001666 * unblock signals with special interactive handling
1667 * (child shell is not interactive),
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001668 * unset all traps except '' (note: regardless of child shell's type - {}, (), etc)
Denis Vlasenkod5762932009-03-31 11:22:57 +00001669 * after [v]fork, if we plan to exec:
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001670 * POSIX says fork clears pending signal mask in child - no need to clear it.
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001671 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001672 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001673 * Note: as a result, we do not use signal handlers much. The only uses
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001674 * are to count SIGCHLDs
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001675 * and to restore tty pgrp on signal-induced exit.
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001676 *
Denys Vlasenko67f71862009-09-25 14:21:06 +02001677 * Note 2 (compat):
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001678 * Standard says "When a subshell is entered, traps that are not being ignored
1679 * are set to the default actions". bash interprets it so that traps which
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001680 * are set to '' (ignore) are NOT reset to defaults. We do the same.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001681 *
1682 * Problem: the above approach makes it unwieldy to catch signals while
Denys Vlasenkoe95738f2013-07-08 03:13:08 +02001683 * we are in read builtin, or while we read commands from stdin:
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001684 * masked signals are not visible!
1685 *
1686 * New implementation
1687 * ==================
1688 * We record each signal we are interested in by installing signal handler
1689 * for them - a bit like emulating kernel pending signal mask in userspace.
1690 * We are interested in: signals which need to have special handling
1691 * as described above, and all signals which have traps set.
Denys Vlasenko8bd810b2013-11-28 01:50:01 +01001692 * Signals are recorded in pending_set.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001693 * After each pipe execution, we extract any pending signals
1694 * and act on them.
1695 *
1696 * unsigned special_sig_mask: a mask of shell-special signals.
1697 * unsigned fatal_sig_mask: a mask of signals on which we restore tty pgrp.
1698 * char *traps[sig] if trap for sig is set (even if it's '').
1699 * sigset_t pending_set: set of sigs we received.
1700 *
1701 * "trap - SIGxxx":
1702 * if sig is in special_sig_mask, set handler back to:
1703 * record_pending_signo, or to IGN if it's a tty stop signal
1704 * if sig is in fatal_sig_mask, set handler back to sigexit.
1705 * else: set handler back to SIG_DFL
1706 * "trap 'cmd' SIGxxx":
1707 * set handler to record_pending_signo.
1708 * "trap '' SIGxxx":
1709 * set handler to SIG_IGN.
1710 * after [v]fork, if we plan to be a shell:
1711 * set signals with special interactive handling to SIG_DFL
1712 * (because child shell is not interactive),
1713 * unset all traps except '' (note: regardless of child shell's type - {}, (), etc)
1714 * after [v]fork, if we plan to exec:
1715 * POSIX says fork clears pending signal mask in child - no need to clear it.
1716 *
1717 * To make wait builtin interruptible, we handle SIGCHLD as special signal,
1718 * otherwise (if we leave it SIG_DFL) sigsuspend in wait builtin will not wake up on it.
1719 *
1720 * Note (compat):
1721 * Standard says "When a subshell is entered, traps that are not being ignored
1722 * are set to the default actions". bash interprets it so that traps which
1723 * are set to '' (ignore) are NOT reset to defaults. We do the same.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001724 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001725enum {
1726 SPECIAL_INTERACTIVE_SIGS = 0
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001727 | (1 << SIGTERM)
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001728 | (1 << SIGINT)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001729 | (1 << SIGHUP)
1730 ,
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001731 SPECIAL_JOBSTOP_SIGS = 0
Mike Frysinger38478a62009-05-20 04:48:06 -04001732#if ENABLE_HUSH_JOB
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001733 | (1 << SIGTTIN)
1734 | (1 << SIGTTOU)
1735 | (1 << SIGTSTP)
1736#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001737 ,
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001738};
Denis Vlasenkod5762932009-03-31 11:22:57 +00001739
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001740static void record_pending_signo(int sig)
Denys Vlasenko54e9e122011-05-09 00:52:15 +02001741{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001742 sigaddset(&G.pending_set, sig);
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001743#if ENABLE_HUSH_FAST
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001744 if (sig == SIGCHLD) {
1745 G.count_SIGCHLD++;
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001746//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 +02001747 }
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001748#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001749}
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001750
Denys Vlasenko0806e402011-05-12 23:06:20 +02001751static sighandler_t install_sighandler(int sig, sighandler_t handler)
1752{
1753 struct sigaction old_sa;
1754
1755 /* We could use signal() to install handlers... almost:
1756 * except that we need to mask ALL signals while handlers run.
1757 * I saw signal nesting in strace, race window isn't small.
1758 * SA_RESTART is also needed, but in Linux, signal()
1759 * sets SA_RESTART too.
1760 */
1761 /* memset(&G.sa, 0, sizeof(G.sa)); - already done */
1762 /* sigfillset(&G.sa.sa_mask); - already done */
1763 /* G.sa.sa_flags = SA_RESTART; - already done */
1764 G.sa.sa_handler = handler;
1765 sigaction(sig, &G.sa, &old_sa);
1766 return old_sa.sa_handler;
1767}
1768
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001769static void hush_exit(int exitcode) NORETURN;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001770
Denys Vlasenkob6afcc72016-12-12 16:30:20 +01001771static void restore_ttypgrp_and__exit(void) NORETURN;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001772static void restore_ttypgrp_and__exit(void)
1773{
1774 /* xfunc has failed! die die die */
1775 /* no EXIT traps, this is an escape hatch! */
1776 G.exiting = 1;
1777 hush_exit(xfunc_error_retval);
1778}
1779
Denys Vlasenkob6afcc72016-12-12 16:30:20 +01001780#if ENABLE_HUSH_JOB
1781
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001782/* Needed only on some libc:
1783 * It was observed that on exit(), fgetc'ed buffered data
1784 * gets "unwound" via lseek(fd, -NUM, SEEK_CUR).
1785 * With the net effect that even after fork(), not vfork(),
1786 * exit() in NOEXECed applet in "sh SCRIPT":
1787 * noexec_applet_here
1788 * echo END_OF_SCRIPT
1789 * lseeks fd in input FILE object from EOF to "e" in "echo END_OF_SCRIPT".
1790 * This makes "echo END_OF_SCRIPT" executed twice.
1791 * Similar problems can be seen with die_if_script() -> xfunc_die()
1792 * and in `cmd` handling.
1793 * If set as die_func(), this makes xfunc_die() exit via _exit(), not exit():
1794 */
Denys Vlasenkob6afcc72016-12-12 16:30:20 +01001795static void fflush_and__exit(void) NORETURN;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001796static void fflush_and__exit(void)
1797{
1798 fflush_all();
1799 _exit(xfunc_error_retval);
1800}
1801
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001802/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001803# define disable_restore_tty_pgrp_on_exit() (die_func = fflush_and__exit)
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001804/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001805# define enable_restore_tty_pgrp_on_exit() (die_func = restore_ttypgrp_and__exit)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001806
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001807/* Restores tty foreground process group, and exits.
1808 * May be called as signal handler for fatal signal
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001809 * (will resend signal to itself, producing correct exit state)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001810 * or called directly with -EXITCODE.
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001811 * We also call it if xfunc is exiting.
1812 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001813static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001814static void sigexit(int sig)
1815{
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001816 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001817 * tty pgrp then, only top-level shell process does that */
Denys Vlasenkoebc1ee22011-05-12 10:59:18 +02001818 if (G_saved_tty_pgrp && getpid() == G.root_pid) {
1819 /* Disable all signals: job control, SIGPIPE, etc.
1820 * Mostly paranoid measure, to prevent infinite SIGTTOU.
1821 */
1822 sigprocmask_allsigs(SIG_BLOCK);
Mike Frysinger38478a62009-05-20 04:48:06 -04001823 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
Denys Vlasenkoebc1ee22011-05-12 10:59:18 +02001824 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001825
1826 /* Not a signal, just exit */
1827 if (sig <= 0)
1828 _exit(- sig);
1829
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001830 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001831}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001832#else
1833
Denys Vlasenko8391c482010-05-22 17:50:43 +02001834# define disable_restore_tty_pgrp_on_exit() ((void)0)
1835# define enable_restore_tty_pgrp_on_exit() ((void)0)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001836
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001837#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001838
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001839static sighandler_t pick_sighandler(unsigned sig)
1840{
1841 sighandler_t handler = SIG_DFL;
1842 if (sig < sizeof(unsigned)*8) {
1843 unsigned sigmask = (1 << sig);
1844
1845#if ENABLE_HUSH_JOB
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001846 /* is sig fatal? */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001847 if (G_fatal_sig_mask & sigmask)
1848 handler = sigexit;
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001849 else
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001850#endif
1851 /* sig has special handling? */
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001852 if (G.special_sig_mask & sigmask) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001853 handler = record_pending_signo;
Denys Vlasenko0c40a732011-05-12 09:50:12 +02001854 /* TTIN/TTOU/TSTP can't be set to record_pending_signo
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001855 * in order to ignore them: they will be raised
Denys Vlasenkof58f7052011-05-12 02:10:33 +02001856 * in an endless loop when we try to do some
1857 * terminal ioctls! We do have to _ignore_ these.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001858 */
1859 if (SPECIAL_JOBSTOP_SIGS & sigmask)
1860 handler = SIG_IGN;
Denys Vlasenko0c40a732011-05-12 09:50:12 +02001861 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001862 }
1863 return handler;
1864}
1865
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001866/* Restores tty foreground process group, and exits. */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001867static void hush_exit(int exitcode)
1868{
Denys Vlasenkobede2152011-09-04 16:12:33 +02001869#if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1870 save_history(G.line_input_state);
1871#endif
1872
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01001873 fflush_all();
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001874 if (G.exiting <= 0 && G_traps && G_traps[0] && G_traps[0][0]) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001875 char *argv[3];
1876 /* argv[0] is unused */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001877 argv[1] = G_traps[0];
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001878 argv[2] = NULL;
Denys Vlasenkoa110c902010-09-12 15:38:04 +02001879 G.exiting = 1; /* prevent EXIT trap recursion */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001880 /* Note: G_traps[0] is not cleared!
Denys Vlasenkode8c3f62010-09-12 16:13:44 +02001881 * "trap" will still show it, if executed
1882 * in the handler */
1883 builtin_eval(argv);
Denis Vlasenkod5762932009-03-31 11:22:57 +00001884 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001885
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001886#if ENABLE_FEATURE_CLEAN_UP
1887 {
1888 struct variable *cur_var;
1889 if (G.cwd != bb_msg_unknown)
1890 free((char*)G.cwd);
1891 cur_var = G.top_var;
1892 while (cur_var) {
1893 struct variable *tmp = cur_var;
1894 if (!cur_var->max_len)
1895 free(cur_var->varstr);
1896 cur_var = cur_var->next;
1897 free(tmp);
1898 }
1899 }
1900#endif
1901
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001902 fflush_all();
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02001903#if ENABLE_HUSH_JOB
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001904 sigexit(- (exitcode & 0xff));
1905#else
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02001906 _exit(exitcode);
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001907#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001908}
1909
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02001910
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001911//TODO: return a mask of ALL handled sigs?
1912static int check_and_run_traps(void)
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001913{
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001914 int last_sig = 0;
1915
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001916 while (1) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001917 int sig;
Denys Vlasenko80542ba2011-05-08 21:23:43 +02001918
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001919 if (sigisemptyset(&G.pending_set))
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001920 break;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001921 sig = 0;
1922 do {
1923 sig++;
1924 if (sigismember(&G.pending_set, sig)) {
1925 sigdelset(&G.pending_set, sig);
1926 goto got_sig;
1927 }
1928 } while (sig < NSIG);
1929 break;
Denys Vlasenkob8709032011-05-08 21:20:01 +02001930 got_sig:
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001931 if (G_traps && G_traps[sig]) {
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001932 debug_printf_exec("%s: sig:%d handler:'%s'\n", __func__, sig, G.traps[sig]);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001933 if (G_traps[sig][0]) {
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001934 /* We have user-defined handler */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001935 smalluint save_rcode;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001936 char *argv[3];
1937 /* argv[0] is unused */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01001938 argv[1] = G_traps[sig];
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001939 argv[2] = NULL;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001940 save_rcode = G.last_exitcode;
1941 builtin_eval(argv);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01001942//FIXME: shouldn't it be set to 128 + sig instead?
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001943 G.last_exitcode = save_rcode;
Denys Vlasenkob8709032011-05-08 21:20:01 +02001944 last_sig = sig;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001945 } /* else: "" trap, ignoring signal */
1946 continue;
1947 }
1948 /* not a trap: special action */
1949 switch (sig) {
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001950 case SIGINT:
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001951 debug_printf_exec("%s: sig:%d default SIGINT handler\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001952 G.flag_SIGINT = 1;
Denys Vlasenkob8709032011-05-08 21:20:01 +02001953 last_sig = sig;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001954 break;
1955#if ENABLE_HUSH_JOB
1956 case SIGHUP: {
1957 struct pipe *job;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001958 debug_printf_exec("%s: sig:%d default SIGHUP handler\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001959 /* bash is observed to signal whole process groups,
1960 * not individual processes */
1961 for (job = G.job_list; job; job = job->next) {
1962 if (job->pgrp <= 0)
1963 continue;
1964 debug_printf_exec("HUPing pgrp %d\n", job->pgrp);
1965 if (kill(- job->pgrp, SIGHUP) == 0)
1966 kill(- job->pgrp, SIGCONT);
1967 }
1968 sigexit(SIGHUP);
1969 }
1970#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001971#if ENABLE_HUSH_FAST
1972 case SIGCHLD:
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001973 debug_printf_exec("%s: sig:%d default SIGCHLD handler\n", __func__, sig);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001974 G.count_SIGCHLD++;
1975//bb_error_msg("[%d] check_and_run_traps: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
1976 /* Note:
Denys Vlasenko10ad6222017-04-17 16:13:32 +02001977 * We don't do 'last_sig = sig' here -> NOT returning this sig.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001978 * This simplifies wait builtin a bit.
1979 */
1980 break;
1981#endif
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001982 default: /* ignored: */
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001983 debug_printf_exec("%s: sig:%d default handling is to ignore\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001984 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001985 /* Note:
Denys Vlasenko10ad6222017-04-17 16:13:32 +02001986 * We don't do 'last_sig = sig' here -> NOT returning this sig.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001987 * Example: wait is not interrupted by TERM
Denys Vlasenkob8709032011-05-08 21:20:01 +02001988 * in interactive shell, because TERM is ignored.
1989 */
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001990 break;
1991 }
1992 }
1993 return last_sig;
1994}
1995
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001996
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001997static const char *get_cwd(int force)
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001998{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001999 if (force || G.cwd == NULL) {
2000 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
2001 * we must not try to free(bb_msg_unknown) */
2002 if (G.cwd == bb_msg_unknown)
2003 G.cwd = NULL;
2004 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
2005 if (!G.cwd)
2006 G.cwd = bb_msg_unknown;
2007 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00002008 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002009}
2010
Denis Vlasenko83506862007-11-23 13:11:42 +00002011
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002012/*
2013 * Shell and environment variable support
2014 */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002015static struct variable **get_ptr_to_local_var(const char *name, unsigned len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002016{
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002017 struct variable **pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002018 struct variable *cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002019
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002020 pp = &G.top_var;
2021 while ((cur = *pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002022 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002023 return pp;
2024 pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002025 }
2026 return NULL;
2027}
2028
Denys Vlasenko03dad222010-01-12 23:29:57 +01002029static const char* FAST_FUNC get_local_var_value(const char *name)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002030{
Denys Vlasenko29082232010-07-16 13:52:32 +02002031 struct variable **vpp;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002032 unsigned len = strlen(name);
Denys Vlasenko29082232010-07-16 13:52:32 +02002033
2034 if (G.expanded_assignments) {
2035 char **cpp = G.expanded_assignments;
Denys Vlasenko29082232010-07-16 13:52:32 +02002036 while (*cpp) {
2037 char *cp = *cpp;
2038 if (strncmp(cp, name, len) == 0 && cp[len] == '=')
2039 return cp + len + 1;
2040 cpp++;
2041 }
2042 }
2043
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002044 vpp = get_ptr_to_local_var(name, len);
Denys Vlasenko29082232010-07-16 13:52:32 +02002045 if (vpp)
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002046 return (*vpp)->varstr + len + 1;
Denys Vlasenko29082232010-07-16 13:52:32 +02002047
Denys Vlasenkodea47882009-10-09 15:40:49 +02002048 if (strcmp(name, "PPID") == 0)
2049 return utoa(G.root_ppid);
2050 // bash compat: UID? EUID?
Denys Vlasenko20b3d142009-10-09 20:59:39 +02002051#if ENABLE_HUSH_RANDOM_SUPPORT
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002052 if (strcmp(name, "RANDOM") == 0)
Denys Vlasenko20b3d142009-10-09 20:59:39 +02002053 return utoa(next_random(&G.random_gen));
2054#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002055 return NULL;
2056}
2057
2058/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00002059 * We take ownership of it.
Mike Frysinger6379bb42009-03-28 18:55:03 +00002060 */
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002061#define SETFLAG_EXPORT (1 << 0)
2062#define SETFLAG_UNEXPORT (1 << 1)
2063#define SETFLAG_MAKE_RO (1 << 2)
2064#define SETFLAG_LOCAL_SHIFT 3
2065static int set_local_var(char *str, unsigned flags)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002066{
Denys Vlasenko295fef82009-06-03 12:47:26 +02002067 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002068 struct variable *cur;
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002069 char *free_me = NULL;
Denis Vlasenko950bd722009-04-21 11:23:56 +00002070 char *eq_sign;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002071 int name_len;
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002072 IF_HUSH_LOCAL(unsigned local_lvl = (flags >> SETFLAG_LOCAL_SHIFT);)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002073
Denis Vlasenko950bd722009-04-21 11:23:56 +00002074 eq_sign = strchr(str, '=');
2075 if (!eq_sign) { /* not expected to ever happen? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002076 free(str);
2077 return -1;
2078 }
2079
Denis Vlasenko950bd722009-04-21 11:23:56 +00002080 name_len = eq_sign - str + 1; /* including '=' */
Denys Vlasenko295fef82009-06-03 12:47:26 +02002081 var_pp = &G.top_var;
2082 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002083 if (strncmp(cur->varstr, str, name_len) != 0) {
Denys Vlasenko295fef82009-06-03 12:47:26 +02002084 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002085 continue;
2086 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002087
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002088 /* We found an existing var with this name */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002089 if (cur->flg_read_only) {
Denys Vlasenko6b48e1f2017-07-17 21:31:17 +02002090 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002091 free(str);
Denys Vlasenko5b2cc0a2017-07-18 02:44:06 +02002092//NOTE: in bash, assignment in "export READONLY_VAR=Z" fails, and sets $?=1,
2093//but export per se succeeds (does put the var in env). We don't mimic that.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002094 return -1;
2095 }
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002096 if (flags & SETFLAG_UNEXPORT) { // && cur->flg_export ?
Denis Vlasenko950bd722009-04-21 11:23:56 +00002097 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
2098 *eq_sign = '\0';
2099 unsetenv(str);
2100 *eq_sign = '=';
2101 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02002102#if ENABLE_HUSH_LOCAL
2103 if (cur->func_nest_level < local_lvl) {
2104 /* New variable is declared as local,
2105 * and existing one is global, or local
2106 * from enclosing function.
2107 * Remove and save old one: */
2108 *var_pp = cur->next;
2109 cur->next = *G.shadowed_vars_pp;
2110 *G.shadowed_vars_pp = cur;
2111 /* bash 3.2.33(1) and exported vars:
2112 * # export z=z
2113 * # f() { local z=a; env | grep ^z; }
2114 * # f
2115 * z=a
2116 * # env | grep ^z
2117 * z=z
2118 */
2119 if (cur->flg_export)
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002120 flags |= SETFLAG_EXPORT;
Denys Vlasenko295fef82009-06-03 12:47:26 +02002121 break;
2122 }
2123#endif
Denis Vlasenko950bd722009-04-21 11:23:56 +00002124 if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002125 free_and_exp:
2126 free(str);
2127 goto exp;
2128 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02002129 if (cur->max_len != 0) {
2130 if (cur->max_len >= strlen(str)) {
2131 /* This one is from startup env, reuse space */
2132 strcpy(cur->varstr, str);
2133 goto free_and_exp;
2134 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002135 /* Can't reuse */
2136 cur->max_len = 0;
2137 goto set_str_and_exp;
Denys Vlasenko295fef82009-06-03 12:47:26 +02002138 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002139 /* max_len == 0 signifies "malloced" var, which we can
2140 * (and have to) free. But we can't free(cur->varstr) here:
2141 * if cur->flg_export is 1, it is in the environment.
2142 * We should either unsetenv+free, or wait until putenv,
2143 * then putenv(new)+free(old).
2144 */
2145 free_me = cur->varstr;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002146 goto set_str_and_exp;
2147 }
2148
Denys Vlasenko295fef82009-06-03 12:47:26 +02002149 /* Not found - create new variable struct */
2150 cur = xzalloc(sizeof(*cur));
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002151 IF_HUSH_LOCAL(cur->func_nest_level = local_lvl;)
Denys Vlasenko295fef82009-06-03 12:47:26 +02002152 cur->next = *var_pp;
2153 *var_pp = cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002154
2155 set_str_and_exp:
2156 cur->varstr = str;
2157 exp:
Denys Vlasenko1e660422017-07-17 21:10:50 +02002158#if !BB_MMU || ENABLE_HUSH_READONLY
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002159 if (flags & SETFLAG_MAKE_RO) {
2160 cur->flg_read_only = 1;
Denys Vlasenko1e660422017-07-17 21:10:50 +02002161 }
2162#endif
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002163 if (flags & SETFLAG_EXPORT)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002164 cur->flg_export = 1;
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002165 if (name_len == 4 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
2166 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002167 if (cur->flg_export) {
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002168 if (flags & SETFLAG_UNEXPORT) {
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002169 cur->flg_export = 0;
2170 /* unsetenv was already done */
2171 } else {
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002172 int i;
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002173 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002174 i = putenv(cur->varstr);
2175 /* only now we can free old exported malloced string */
2176 free(free_me);
2177 return i;
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002178 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002179 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02002180 free(free_me);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002181 return 0;
2182}
2183
Denys Vlasenko6db47842009-09-05 20:15:17 +02002184/* Used at startup and after each cd */
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002185static void set_pwd_var(unsigned flag)
Denys Vlasenko6db47842009-09-05 20:15:17 +02002186{
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002187 set_local_var(xasprintf("PWD=%s", get_cwd(/*force:*/ 1)), flag);
Denys Vlasenko6db47842009-09-05 20:15:17 +02002188}
2189
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002190static int unset_local_var_len(const char *name, int name_len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002191{
2192 struct variable *cur;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002193 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002194
2195 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00002196 return EXIT_SUCCESS;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002197 var_pp = &G.top_var;
2198 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002199 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
2200 if (cur->flg_read_only) {
2201 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00002202 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002203 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002204 *var_pp = cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002205 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
2206 bb_unsetenv(cur->varstr);
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002207 if (name_len == 3 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
2208 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002209 if (!cur->max_len)
2210 free(cur->varstr);
2211 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00002212 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002213 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002214 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002215 }
Mike Frysingerd690f682009-03-30 06:50:54 +00002216 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002217}
2218
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01002219#if ENABLE_HUSH_UNSET
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002220static int unset_local_var(const char *name)
2221{
2222 return unset_local_var_len(name, strlen(name));
2223}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01002224#endif
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002225
2226static void unset_vars(char **strings)
2227{
2228 char **v;
2229
2230 if (!strings)
2231 return;
2232 v = strings;
2233 while (*v) {
2234 const char *eq = strchrnul(*v, '=');
2235 unset_local_var_len(*v, (int)(eq - *v));
2236 v++;
2237 }
2238 free(strings);
2239}
2240
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01002241#if BASH_HOSTNAME_VAR || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_READ
Denys Vlasenko03dad222010-01-12 23:29:57 +01002242static void FAST_FUNC set_local_var_from_halves(const char *name, const char *val)
Mike Frysinger98c52642009-04-02 10:02:37 +00002243{
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002244 char *var = xasprintf("%s=%s", name, val);
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002245 set_local_var(var, /*flag:*/ 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00002246}
Denys Vlasenkocc2fd5a2017-01-09 06:19:55 +01002247#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002248
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002249
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002250/*
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002251 * Helpers for "var1=val1 var2=val2 cmd" feature
2252 */
2253static void add_vars(struct variable *var)
2254{
2255 struct variable *next;
2256
2257 while (var) {
2258 next = var->next;
2259 var->next = G.top_var;
2260 G.top_var = var;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002261 if (var->flg_export) {
2262 debug_printf_env("%s: restoring exported '%s'\n", __func__, var->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002263 putenv(var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002264 } else {
Denys Vlasenko295fef82009-06-03 12:47:26 +02002265 debug_printf_env("%s: restoring variable '%s'\n", __func__, var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002266 }
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002267 var = next;
2268 }
2269}
2270
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002271static struct variable *set_vars_and_save_old(char **strings)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002272{
2273 char **s;
2274 struct variable *old = NULL;
2275
2276 if (!strings)
2277 return old;
2278 s = strings;
2279 while (*s) {
2280 struct variable *var_p;
2281 struct variable **var_pp;
2282 char *eq;
2283
2284 eq = strchr(*s, '=');
2285 if (eq) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002286 var_pp = get_ptr_to_local_var(*s, eq - *s);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002287 if (var_pp) {
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002288 var_p = *var_pp;
Denys Vlasenko5b2cc0a2017-07-18 02:44:06 +02002289 if (var_p->flg_read_only) {
2290 bb_error_msg("%s: readonly variable", *s);
2291 goto next;
2292 }
2293 /* Remove variable from global linked list */
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002294 debug_printf_env("%s: removing '%s'\n", __func__, var_p->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002295 *var_pp = var_p->next;
2296 /* Add it to returned list */
2297 var_p->next = old;
2298 old = var_p;
2299 }
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002300 set_local_var(*s, SETFLAG_EXPORT);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002301 }
Denys Vlasenko5b2cc0a2017-07-18 02:44:06 +02002302 next:
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002303 s++;
2304 }
2305 return old;
2306}
2307
2308
2309/*
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002310 * Unicode helper
2311 */
2312static void reinit_unicode_for_hush(void)
2313{
2314 /* Unicode support should be activated even if LANG is set
2315 * _during_ shell execution, not only if it was set when
2316 * shell was started. Therefore, re-check LANG every time:
2317 */
Denys Vlasenko841f8332014-08-13 10:09:49 +02002318 if (ENABLE_FEATURE_CHECK_UNICODE_IN_ENV
2319 || ENABLE_UNICODE_USING_LOCALE
2320 ) {
2321 const char *s = get_local_var_value("LC_ALL");
2322 if (!s) s = get_local_var_value("LC_CTYPE");
2323 if (!s) s = get_local_var_value("LANG");
2324 reinit_unicode(s);
2325 }
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002326}
2327
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002328/*
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002329 * in_str support (strings, and "strings" read from files).
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002330 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002331
2332#if ENABLE_HUSH_INTERACTIVE
Denys Vlasenko4074d492016-09-30 01:49:53 +02002333/* To test correct lineedit/interactive behavior, type from command line:
2334 * echo $P\
2335 * \
2336 * AT\
2337 * H\
2338 * \
Denys Vlasenko10ad6222017-04-17 16:13:32 +02002339 * It exercises a lot of corner cases.
Denys Vlasenko4074d492016-09-30 01:49:53 +02002340 */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002341static void cmdedit_update_prompt(void)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002342{
Mike Frysingerec2c6552009-03-28 12:24:44 +00002343 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002344 G.PS1 = get_local_var_value("PS1");
Mike Frysingerec2c6552009-03-28 12:24:44 +00002345 if (G.PS1 == NULL)
2346 G.PS1 = "\\w \\$ ";
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002347 G.PS2 = get_local_var_value("PS2");
Denys Vlasenko690ad242009-04-30 21:24:24 +02002348 } else {
Mike Frysingerec2c6552009-03-28 12:24:44 +00002349 G.PS1 = NULL;
Denys Vlasenko690ad242009-04-30 21:24:24 +02002350 }
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002351 if (G.PS2 == NULL)
2352 G.PS2 = "> ";
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002353}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002354static const char *setup_prompt_string(int promptmode)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002355{
2356 const char *prompt_str;
2357 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00002358 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
2359 /* Set up the prompt */
2360 if (promptmode == 0) { /* PS1 */
2361 free((char*)G.PS1);
Denys Vlasenko6db47842009-09-05 20:15:17 +02002362 /* bash uses $PWD value, even if it is set by user.
2363 * It uses current dir only if PWD is unset.
2364 * We always use current dir. */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002365 G.PS1 = xasprintf("%s %c ", get_cwd(0), (geteuid() != 0) ? '$' : '#');
Mike Frysingerec2c6552009-03-28 12:24:44 +00002366 prompt_str = G.PS1;
2367 } else
2368 prompt_str = G.PS2;
2369 } else
2370 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denys Vlasenko4074d492016-09-30 01:49:53 +02002371 debug_printf("prompt_str '%s'\n", prompt_str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002372 return prompt_str;
2373}
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002374static int get_user_input(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002375{
2376 int r;
2377 const char *prompt_str;
2378
2379 prompt_str = setup_prompt_string(i->promptmode);
Denys Vlasenko8391c482010-05-22 17:50:43 +02002380# if ENABLE_FEATURE_EDITING
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002381 for (;;) {
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002382 reinit_unicode_for_hush();
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002383 if (G.flag_SIGINT) {
2384 /* There was ^C'ed, make it look prettier: */
2385 bb_putchar('\n');
2386 G.flag_SIGINT = 0;
2387 }
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00002388 /* buglet: SIGINT will not make new prompt to appear _at once_,
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002389 * only after <Enter>. (^C works immediately) */
Denys Vlasenko0448c552016-09-29 20:25:44 +02002390 r = read_line_input(G.line_input_state, prompt_str,
2391 G.user_input_buf, CONFIG_FEATURE_EDITING_MAX_LEN-1,
2392 /*timeout*/ -1
2393 );
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002394 /* read_line_input intercepts ^C, "convert" it to SIGINT */
2395 if (r == 0) {
2396 write(STDOUT_FILENO, "^C", 2);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002397 raise(SIGINT);
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002398 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002399 check_and_run_traps();
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002400 if (r != 0 && !G.flag_SIGINT)
2401 break;
2402 /* ^C or SIGINT: repeat */
2403 G.last_exitcode = 128 + SIGINT;
2404 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002405 if (r < 0) {
2406 /* EOF/error detected */
Denys Vlasenko4074d492016-09-30 01:49:53 +02002407 i->p = NULL;
2408 i->peek_buf[0] = r = EOF;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002409 return r;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002410 }
Denys Vlasenko4074d492016-09-30 01:49:53 +02002411 i->p = G.user_input_buf;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002412 return (unsigned char)*i->p++;
Denys Vlasenko8391c482010-05-22 17:50:43 +02002413# else
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002414 for (;;) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00002415 G.flag_SIGINT = 0;
Denys Vlasenkob8709032011-05-08 21:20:01 +02002416 if (i->last_char == '\0' || i->last_char == '\n') {
2417 /* Why check_and_run_traps here? Try this interactively:
2418 * $ trap 'echo INT' INT; (sleep 2; kill -INT $$) &
2419 * $ <[enter], repeatedly...>
2420 * Without check_and_run_traps, handler never runs.
2421 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002422 check_and_run_traps();
Denys Vlasenkob8709032011-05-08 21:20:01 +02002423 fputs(prompt_str, stdout);
2424 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002425 fflush_all();
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002426//FIXME: here ^C or SIGINT will have effect only after <Enter>
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002427 r = fgetc(i->file);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002428 /* In !ENABLE_FEATURE_EDITING we don't use read_line_input,
2429 * no ^C masking happens during fgetc, no special code for ^C:
2430 * it generates SIGINT as usual.
2431 */
2432 check_and_run_traps();
2433 if (G.flag_SIGINT)
2434 G.last_exitcode = 128 + SIGINT;
2435 if (r != '\0')
2436 break;
2437 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002438 return r;
Denys Vlasenko8391c482010-05-22 17:50:43 +02002439# endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002440}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002441/* This is the magic location that prints prompts
2442 * and gets data back from the user */
Denys Vlasenko4074d492016-09-30 01:49:53 +02002443static int fgetc_interactive(struct in_str *i)
2444{
2445 int ch;
2446 /* If it's interactive stdin, get new line. */
2447 if (G_interactive_fd && i->file == stdin) {
2448 /* Returns first char (or EOF), the rest is in i->p[] */
2449 ch = get_user_input(i);
2450 i->promptmode = 1; /* PS2 */
2451 } else {
2452 /* Not stdin: script file, sourced file, etc */
2453 do ch = fgetc(i->file); while (ch == '\0');
2454 }
2455 return ch;
2456}
2457#else
2458static inline int fgetc_interactive(struct in_str *i)
2459{
2460 int ch;
2461 do ch = fgetc(i->file); while (ch == '\0');
2462 return ch;
2463}
2464#endif /* INTERACTIVE */
2465
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002466static int i_getch(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002467{
2468 int ch;
2469
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002470 if (!i->file) {
2471 /* string-based in_str */
2472 ch = (unsigned char)*i->p;
2473 if (ch != '\0') {
2474 i->p++;
2475 i->last_char = ch;
2476 return ch;
2477 }
2478 return EOF;
2479 }
2480
2481 /* FILE-based in_str */
2482
Denys Vlasenko4074d492016-09-30 01:49:53 +02002483#if ENABLE_FEATURE_EDITING
2484 /* This can be stdin, check line editing char[] buffer */
2485 if (i->p && *i->p != '\0') {
2486 ch = (unsigned char)*i->p++;
2487 goto out;
2488 }
2489#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002490 /* peek_buf[] is an int array, not char. Can contain EOF. */
2491 ch = i->peek_buf[0];
Denys Vlasenko4074d492016-09-30 01:49:53 +02002492 if (ch != 0) {
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002493 int ch2 = i->peek_buf[1];
2494 i->peek_buf[0] = ch2;
2495 if (ch2 == 0) /* very likely, avoid redundant write */
2496 goto out;
2497 i->peek_buf[1] = 0;
2498 goto out;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002499 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002500
Denys Vlasenko4074d492016-09-30 01:49:53 +02002501 ch = fgetc_interactive(i);
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002502 out:
Denis Vlasenko913a2012009-04-05 22:17:04 +00002503 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02002504 i->last_char = ch;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002505 return ch;
2506}
2507
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002508static int i_peek(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002509{
2510 int ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002511
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002512 if (!i->file) {
2513 /* string-based in_str */
2514 /* Doesn't report EOF on NUL. None of the callers care. */
2515 return (unsigned char)*i->p;
2516 }
2517
2518 /* FILE-based in_str */
2519
Denys Vlasenko4074d492016-09-30 01:49:53 +02002520#if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002521 /* This can be stdin, check line editing char[] buffer */
2522 if (i->p && *i->p != '\0')
2523 return (unsigned char)*i->p;
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)
2528 return ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002529
Denys Vlasenko4074d492016-09-30 01:49:53 +02002530 /* Need to get a new char */
2531 ch = fgetc_interactive(i);
2532 debug_printf("file_peek: got '%c' %d\n", ch, ch);
2533
2534 /* Save it by either rolling back line editing buffer, or in i->peek_buf[0] */
2535#if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE
2536 if (i->p) {
2537 i->p -= 1;
2538 return ch;
2539 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002540#endif
Denys Vlasenko4074d492016-09-30 01:49:53 +02002541 i->peek_buf[0] = ch;
2542 /*i->peek_buf[1] = 0; - already is */
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002543 return ch;
2544}
2545
Denys Vlasenko4074d492016-09-30 01:49:53 +02002546/* Only ever called if i_peek() was called, and did not return EOF.
2547 * IOW: we know the previous peek saw an ordinary char, not EOF, not NUL,
2548 * not end-of-line. Therefore we never need to read a new editing line here.
2549 */
2550static int i_peek2(struct in_str *i)
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002551{
Denys Vlasenko4074d492016-09-30 01:49:53 +02002552 int ch;
2553
2554 /* There are two cases when i->p[] buffer exists.
2555 * (1) it's a string in_str.
Denys Vlasenko08755f92016-09-30 02:02:25 +02002556 * (2) It's a file, and we have a saved line editing buffer.
Denys Vlasenko4074d492016-09-30 01:49:53 +02002557 * In both cases, we know that i->p[0] exists and not NUL, and
2558 * the peek2 result is in i->p[1].
2559 */
2560 if (i->p)
2561 return (unsigned char)i->p[1];
2562
2563 /* Now we know it is a file-based in_str. */
2564
2565 /* peek_buf[] is an int array, not char. Can contain EOF. */
2566 /* Is there 2nd char? */
2567 ch = i->peek_buf[1];
2568 if (ch == 0) {
2569 /* We did not read it yet, get it now */
2570 do ch = fgetc(i->file); while (ch == '\0');
2571 i->peek_buf[1] = ch;
2572 }
2573
2574 debug_printf("file_peek2: got '%c' %d\n", ch, ch);
2575 return ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002576}
2577
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002578static void setup_file_in_str(struct in_str *i, FILE *f)
2579{
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002580 memset(i, 0, sizeof(*i));
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002581 /* i->promptmode = 0; - PS1 (memset did it) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002582 i->file = f;
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002583 /* i->p = NULL; */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002584}
2585
2586static void setup_string_in_str(struct in_str *i, const char *s)
2587{
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002588 memset(i, 0, sizeof(*i));
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002589 /* i->promptmode = 0; - PS1 (memset did it) */
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002590 /*i->file = NULL */;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002591 i->p = s;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002592}
2593
2594
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002595/*
2596 * o_string support
2597 */
2598#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00002599
Denis Vlasenko0b677d82009-04-10 13:49:10 +00002600static void o_reset_to_empty_unquoted(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00002601{
2602 o->length = 0;
Denys Vlasenko38292b62010-09-05 14:49:40 +02002603 o->has_quoted_part = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002604 if (o->data)
2605 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002606}
2607
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002608static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00002609{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00002610 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002611 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00002612}
2613
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002614static ALWAYS_INLINE void o_free_unsafe(o_string *o)
2615{
2616 free(o->data);
2617}
2618
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002619static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002620{
2621 if (o->length + len > o->maxlen) {
Denys Vlasenko46e64982016-09-29 19:50:55 +02002622 o->maxlen += (2 * len) | (B_CHUNK-1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002623 o->data = xrealloc(o->data, 1 + o->maxlen);
2624 }
2625}
2626
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002627static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002628{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002629 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
Denys Vlasenko46e64982016-09-29 19:50:55 +02002630 if (o->length < o->maxlen) {
2631 /* likely. avoid o_grow_by() call */
2632 add:
2633 o->data[o->length] = ch;
2634 o->length++;
2635 o->data[o->length] = '\0';
2636 return;
2637 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002638 o_grow_by(o, 1);
Denys Vlasenko46e64982016-09-29 19:50:55 +02002639 goto add;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002640}
2641
Denys Vlasenko657086a2016-09-29 18:07:42 +02002642#if 0
2643/* Valid only if we know o_string is not empty */
2644static void o_delchr(o_string *o)
2645{
2646 o->length--;
2647 o->data[o->length] = '\0';
2648}
2649#endif
2650
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002651static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002652{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002653 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002654 memcpy(&o->data[o->length], str, len);
2655 o->length += len;
2656 o->data[o->length] = '\0';
2657}
2658
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002659static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00002660{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002661 o_addblock(o, str, strlen(str));
2662}
Denys Vlasenko2e48d532010-05-22 17:30:39 +02002663
Denys Vlasenko1e811b12010-05-22 03:12:29 +02002664#if !BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002665static void nommu_addchr(o_string *o, int ch)
2666{
2667 if (o)
2668 o_addchr(o, ch);
2669}
2670#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002671# define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002672#endif
2673
2674static void o_addstr_with_NUL(o_string *o, const char *str)
2675{
2676 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00002677}
2678
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002679/*
Denys Vlasenko238081f2010-10-03 14:26:26 +02002680 * HUSH_BRACE_EXPANSION code needs corresponding quoting on variable expansion side.
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002681 * Currently, "v='{q,w}'; echo $v" erroneously expands braces in $v.
2682 * Apparently, on unquoted $v bash still does globbing
2683 * ("v='*.txt'; echo $v" prints all .txt files),
2684 * but NOT brace expansion! Thus, there should be TWO independent
2685 * quoting mechanisms on $v expansion side: one protects
2686 * $v from brace expansion, and other additionally protects "$v" against globbing.
2687 * We have only second one.
2688 */
2689
Denys Vlasenko9e800222010-10-03 14:28:04 +02002690#if ENABLE_HUSH_BRACE_EXPANSION
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002691# define MAYBE_BRACES "{}"
2692#else
2693# define MAYBE_BRACES ""
2694#endif
2695
Eric Andersen25f27032001-04-26 23:22:31 +00002696/* My analysis of quoting semantics tells me that state information
2697 * is associated with a destination, not a source.
2698 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002699static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00002700{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002701 int sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002702 char *found = strchr("*?[\\" MAYBE_BRACES, ch);
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002703 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002704 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002705 o_grow_by(o, sz);
2706 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002707 o->data[o->length] = '\\';
2708 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00002709 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002710 o->data[o->length] = ch;
2711 o->length++;
2712 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002713}
2714
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002715static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002716{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002717 int sz = 1;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002718 if ((o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)
2719 && strchr("*?[\\" MAYBE_BRACES, ch)
2720 ) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002721 sz++;
2722 o->data[o->length] = '\\';
2723 o->length++;
2724 }
2725 o_grow_by(o, sz);
2726 o->data[o->length] = ch;
2727 o->length++;
2728 o->data[o->length] = '\0';
2729}
2730
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002731static void o_addqblock(o_string *o, const char *str, int len)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002732{
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002733 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002734 char ch;
2735 int sz;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002736 int ordinary_cnt = strcspn(str, "*?[\\" MAYBE_BRACES);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002737 if (ordinary_cnt > len) /* paranoia */
2738 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002739 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002740 if (ordinary_cnt == len)
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002741 return; /* NUL is already added by o_addblock */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002742 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002743 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002744
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002745 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002746 sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002747 if (ch) { /* it is necessarily one of "*?[\\" MAYBE_BRACES */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002748 sz++;
2749 o->data[o->length] = '\\';
2750 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002751 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002752 o_grow_by(o, sz);
2753 o->data[o->length] = ch;
2754 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002755 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002756 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002757}
2758
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002759static void o_addQblock(o_string *o, const char *str, int len)
2760{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002761 if (!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002762 o_addblock(o, str, len);
2763 return;
2764 }
2765 o_addqblock(o, str, len);
2766}
2767
Denys Vlasenko38292b62010-09-05 14:49:40 +02002768static void o_addQstr(o_string *o, const char *str)
2769{
2770 o_addQblock(o, str, strlen(str));
2771}
2772
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002773/* A special kind of o_string for $VAR and `cmd` expansion.
2774 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002775 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002776 * list[i] contains an INDEX (int!) into this string data.
2777 * It means that if list[] needs to grow, data needs to be moved higher up
2778 * but list[i]'s need not be modified.
2779 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002780 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002781 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
2782 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002783#if DEBUG_EXPAND || DEBUG_GLOB
2784static void debug_print_list(const char *prefix, o_string *o, int n)
2785{
2786 char **list = (char**)o->data;
2787 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2788 int i = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002789
2790 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002791 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 +02002792 prefix, list, n, string_start, o->length, o->maxlen,
2793 !!(o->o_expflags & EXP_FLAG_GLOB),
2794 o->has_quoted_part,
2795 !!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002796 while (i < n) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002797 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002798 fdprintf(2, " list[%d]=%d '%s' %p\n", i, (int)(uintptr_t)list[i],
2799 o->data + (int)(uintptr_t)list[i] + string_start,
2800 o->data + (int)(uintptr_t)list[i] + string_start);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002801 i++;
2802 }
2803 if (n) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002804 const char *p = o->data + (int)(uintptr_t)list[n - 1] + string_start;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002805 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002806 fdprintf(2, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002807 }
2808}
2809#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002810# define debug_print_list(prefix, o, n) ((void)0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002811#endif
2812
2813/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
2814 * in list[n] so that it points past last stored byte so far.
2815 * It returns n+1. */
2816static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002817{
2818 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00002819 int string_start;
2820 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002821
2822 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00002823 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2824 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002825 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002826 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002827 /* list[n] points to string_start, make space for 16 more pointers */
2828 o->maxlen += 0x10 * sizeof(list[0]);
2829 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00002830 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002831 memmove(list + n + 0x10, list + n, string_len);
2832 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002833 } else {
2834 debug_printf_list("list[%d]=%d string_start=%d\n",
2835 n, string_len, string_start);
2836 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002837 } else {
2838 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00002839 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
2840 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002841 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
2842 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002843 o->has_empty_slot = 0;
2844 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002845 o->has_quoted_part = 0;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002846 list[n] = (char*)(uintptr_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002847 return n + 1;
2848}
2849
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002850/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002851static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002852{
2853 char **list = (char**)o->data;
2854 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2855
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002856 return ((int)(uintptr_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002857}
2858
Denys Vlasenko9e800222010-10-03 14:28:04 +02002859#if ENABLE_HUSH_BRACE_EXPANSION
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002860/* There in a GNU extension, GLOB_BRACE, but it is not usable:
2861 * first, it processes even {a} (no commas), second,
2862 * I didn't manage to make it return strings when they don't match
Denys Vlasenko160746b2009-11-16 05:51:18 +01002863 * existing files. Need to re-implement it.
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002864 */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002865
2866/* Helper */
2867static int glob_needed(const char *s)
2868{
2869 while (*s) {
2870 if (*s == '\\') {
2871 if (!s[1])
2872 return 0;
2873 s += 2;
2874 continue;
2875 }
2876 if (*s == '*' || *s == '[' || *s == '?' || *s == '{')
2877 return 1;
2878 s++;
2879 }
2880 return 0;
2881}
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002882/* Return pointer to next closing brace or to comma */
2883static const char *next_brace_sub(const char *cp)
2884{
2885 unsigned depth = 0;
2886 cp++;
2887 while (*cp != '\0') {
2888 if (*cp == '\\') {
2889 if (*++cp == '\0')
2890 break;
2891 cp++;
2892 continue;
Denys Vlasenko3581c622010-01-25 13:39:24 +01002893 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002894 if ((*cp == '}' && depth-- == 0) || (*cp == ',' && depth == 0))
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002895 break;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002896 if (*cp++ == '{')
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002897 depth++;
2898 }
2899
2900 return *cp != '\0' ? cp : NULL;
2901}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002902/* Recursive brace globber. Note: may garble pattern[]. */
2903static int glob_brace(char *pattern, o_string *o, int n)
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002904{
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002905 char *new_pattern_buf;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002906 const char *begin;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002907 const char *next;
2908 const char *rest;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002909 const char *p;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002910 size_t rest_len;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002911
2912 debug_printf_glob("glob_brace('%s')\n", pattern);
2913
2914 begin = pattern;
2915 while (1) {
2916 if (*begin == '\0')
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002917 goto simple_glob;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002918 if (*begin == '{') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002919 /* Find the first sub-pattern and at the same time
2920 * find the rest after the closing brace */
2921 next = next_brace_sub(begin);
2922 if (next == NULL) {
2923 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002924 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002925 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002926 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002927 /* "{abc}" with no commas - illegal
2928 * brace expr, disregard and skip it */
2929 begin = next + 1;
2930 continue;
2931 }
2932 break;
2933 }
2934 if (*begin == '\\' && begin[1] != '\0')
2935 begin++;
2936 begin++;
2937 }
2938 debug_printf_glob("begin:%s\n", begin);
2939 debug_printf_glob("next:%s\n", next);
2940
2941 /* Now find the end of the whole brace expression */
2942 rest = next;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002943 while (*rest != '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002944 rest = next_brace_sub(rest);
2945 if (rest == NULL) {
2946 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002947 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002948 }
2949 debug_printf_glob("rest:%s\n", rest);
2950 }
2951 rest_len = strlen(++rest) + 1;
2952
2953 /* We are sure the brace expression is well-formed */
2954
2955 /* Allocate working buffer large enough for our work */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002956 new_pattern_buf = xmalloc(strlen(pattern));
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002957
2958 /* We have a brace expression. BEGIN points to the opening {,
2959 * NEXT points past the terminator of the first element, and REST
2960 * points past the final }. We will accumulate result names from
2961 * recursive runs for each brace alternative in the buffer using
2962 * GLOB_APPEND. */
2963
2964 p = begin + 1;
2965 while (1) {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002966 /* Construct the new glob expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002967 memcpy(
2968 mempcpy(
2969 mempcpy(new_pattern_buf,
2970 /* We know the prefix for all sub-patterns */
2971 pattern, begin - pattern),
2972 p, next - p),
2973 rest, rest_len);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002974
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002975 /* Note: glob_brace() may garble new_pattern_buf[].
2976 * That's why we re-copy prefix every time (1st memcpy above).
2977 */
2978 n = glob_brace(new_pattern_buf, o, n);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002979 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002980 /* We saw the last entry */
2981 break;
2982 }
2983 p = next + 1;
2984 next = next_brace_sub(next);
2985 }
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002986 free(new_pattern_buf);
2987 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002988
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002989 simple_glob:
2990 {
2991 int gr;
2992 glob_t globdata;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002993
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002994 memset(&globdata, 0, sizeof(globdata));
2995 gr = glob(pattern, 0, NULL, &globdata);
2996 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
2997 if (gr != 0) {
2998 if (gr == GLOB_NOMATCH) {
2999 globfree(&globdata);
3000 /* NB: garbles parameter */
3001 unbackslash(pattern);
3002 o_addstr_with_NUL(o, pattern);
3003 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
3004 return o_save_ptr_helper(o, n);
3005 }
3006 if (gr == GLOB_NOSPACE)
3007 bb_error_msg_and_die(bb_msg_memory_exhausted);
3008 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
3009 * but we didn't specify it. Paranoia again. */
3010 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
3011 }
3012 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
3013 char **argv = globdata.gl_pathv;
3014 while (1) {
3015 o_addstr_with_NUL(o, *argv);
3016 n = o_save_ptr_helper(o, n);
3017 argv++;
3018 if (!*argv)
3019 break;
3020 }
3021 }
3022 globfree(&globdata);
3023 }
3024 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003025}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003026/* Performs globbing on last list[],
3027 * saving each result as a new list[].
3028 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003029static int perform_glob(o_string *o, int n)
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003030{
3031 char *pattern, *copy;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003032
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003033 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003034 if (!o->data)
3035 return o_save_ptr_helper(o, n);
3036 pattern = o->data + o_get_last_ptr(o, n);
3037 debug_printf_glob("glob pattern '%s'\n", pattern);
3038 if (!glob_needed(pattern)) {
3039 /* unbackslash last string in o in place, fix length */
3040 o->length = unbackslash(pattern) - o->data;
3041 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
3042 return o_save_ptr_helper(o, n);
3043 }
3044
3045 copy = xstrdup(pattern);
3046 /* "forget" pattern in o */
3047 o->length = pattern - o->data;
3048 n = glob_brace(copy, o, n);
3049 free(copy);
3050 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003051 debug_print_list("perform_glob returning", o, n);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003052 return n;
3053}
3054
Denys Vlasenko238081f2010-10-03 14:26:26 +02003055#else /* !HUSH_BRACE_EXPANSION */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003056
3057/* Helper */
3058static int glob_needed(const char *s)
3059{
3060 while (*s) {
3061 if (*s == '\\') {
3062 if (!s[1])
3063 return 0;
3064 s += 2;
3065 continue;
3066 }
3067 if (*s == '*' || *s == '[' || *s == '?')
3068 return 1;
3069 s++;
3070 }
3071 return 0;
3072}
3073/* Performs globbing on last list[],
3074 * saving each result as a new list[].
3075 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003076static int perform_glob(o_string *o, int n)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003077{
3078 glob_t globdata;
3079 int gr;
3080 char *pattern;
3081
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003082 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003083 if (!o->data)
3084 return o_save_ptr_helper(o, n);
3085 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003086 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003087 if (!glob_needed(pattern)) {
3088 literal:
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003089 /* unbackslash last string in o in place, fix length */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003090 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003091 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003092 return o_save_ptr_helper(o, n);
3093 }
3094
3095 memset(&globdata, 0, sizeof(globdata));
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003096 /* Can't use GLOB_NOCHECK: it does not unescape the string.
3097 * If we glob "*.\*" and don't find anything, we need
3098 * to fall back to using literal "*.*", but GLOB_NOCHECK
3099 * will return "*.\*"!
3100 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003101 gr = glob(pattern, 0, NULL, &globdata);
3102 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003103 if (gr != 0) {
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003104 if (gr == GLOB_NOMATCH) {
3105 globfree(&globdata);
3106 goto literal;
3107 }
3108 if (gr == GLOB_NOSPACE)
3109 bb_error_msg_and_die(bb_msg_memory_exhausted);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003110 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
3111 * but we didn't specify it. Paranoia again. */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003112 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003113 }
3114 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
3115 char **argv = globdata.gl_pathv;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003116 /* "forget" pattern in o */
3117 o->length = pattern - o->data;
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003118 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003119 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003120 n = o_save_ptr_helper(o, n);
3121 argv++;
3122 if (!*argv)
3123 break;
3124 }
3125 }
3126 globfree(&globdata);
3127 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003128 debug_print_list("perform_glob returning", o, n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003129 return n;
3130}
3131
Denys Vlasenko238081f2010-10-03 14:26:26 +02003132#endif /* !HUSH_BRACE_EXPANSION */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003133
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02003134/* If o->o_expflags & EXP_FLAG_GLOB, glob the string so far remembered.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003135 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003136static int o_save_ptr(o_string *o, int n)
3137{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02003138 if (o->o_expflags & EXP_FLAG_GLOB) {
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00003139 /* If o->has_empty_slot, list[n] was already globbed
3140 * (if it was requested back then when it was filled)
3141 * so don't do that again! */
3142 if (!o->has_empty_slot)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003143 return perform_glob(o, n); /* o_save_ptr_helper is inside */
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00003144 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003145 return o_save_ptr_helper(o, n);
3146}
3147
3148/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003149static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003150{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003151 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003152 int string_start;
3153
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003154 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
3155 if (DEBUG_EXPAND)
3156 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003157 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003158 list = (char**)o->data;
3159 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
3160 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003161 while (n) {
3162 n--;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003163 list[n] = o->data + (int)(uintptr_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003164 }
3165 return list;
3166}
3167
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003168static void free_pipe_list(struct pipe *pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003169
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003170/* Returns pi->next - next pipe in the list */
3171static struct pipe *free_pipe(struct pipe *pi)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003172{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003173 struct pipe *next;
3174 int i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003175
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003176 debug_printf_clean("free_pipe (pid %d)\n", getpid());
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003177 for (i = 0; i < pi->num_cmds; i++) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003178 struct command *command;
3179 struct redir_struct *r, *rnext;
3180
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003181 command = &pi->cmds[i];
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003182 debug_printf_clean(" command %d:\n", i);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003183 if (command->argv) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003184 if (DEBUG_CLEAN) {
3185 int a;
3186 char **p;
3187 for (a = 0, p = command->argv; *p; a++, p++) {
3188 debug_printf_clean(" argv[%d] = %s\n", a, *p);
3189 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003190 }
3191 free_strings(command->argv);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003192 //command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003193 }
3194 /* not "else if": on syntax error, we may have both! */
3195 if (command->group) {
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003196 debug_printf_clean(" begin group (cmd_type:%d)\n",
3197 command->cmd_type);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003198 free_pipe_list(command->group);
3199 debug_printf_clean(" end group\n");
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003200 //command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003201 }
Denis Vlasenkoed055212009-04-11 10:37:10 +00003202 /* else is crucial here.
3203 * If group != NULL, child_func is meaningless */
3204#if ENABLE_HUSH_FUNCTIONS
3205 else if (command->child_func) {
3206 debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
3207 command->child_func->parent_cmd = NULL;
3208 }
3209#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003210#if !BB_MMU
3211 free(command->group_as_string);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003212 //command->group_as_string = NULL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003213#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003214 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003215 debug_printf_clean(" redirect %d%s",
3216 r->rd_fd, redir_table[r->rd_type].descrip);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003217 /* guard against the case >$FOO, where foo is unset or blank */
3218 if (r->rd_filename) {
3219 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
3220 free(r->rd_filename);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003221 //r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003222 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003223 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003224 rnext = r->next;
3225 free(r);
3226 }
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003227 //command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003228 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003229 free(pi->cmds); /* children are an array, they get freed all at once */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003230 //pi->cmds = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003231#if ENABLE_HUSH_JOB
3232 free(pi->cmdtext);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003233 //pi->cmdtext = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003234#endif
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003235
3236 next = pi->next;
3237 free(pi);
3238 return next;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003239}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003240
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003241static void free_pipe_list(struct pipe *pi)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003242{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003243 while (pi) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003244#if HAS_KEYWORDS
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003245 debug_printf_clean("pipe reserved word %d\n", pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003246#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003247 debug_printf_clean("pipe followup code %d\n", pi->followup);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003248 pi = free_pipe(pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003249 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003250}
3251
3252
Denys Vlasenkob36abf22010-09-05 14:50:59 +02003253/*** Parsing routines ***/
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003254
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003255#ifndef debug_print_tree
3256static void debug_print_tree(struct pipe *pi, int lvl)
3257{
3258 static const char *const PIPE[] = {
3259 [PIPE_SEQ] = "SEQ",
3260 [PIPE_AND] = "AND",
3261 [PIPE_OR ] = "OR" ,
3262 [PIPE_BG ] = "BG" ,
3263 };
3264 static const char *RES[] = {
3265 [RES_NONE ] = "NONE" ,
3266# if ENABLE_HUSH_IF
3267 [RES_IF ] = "IF" ,
3268 [RES_THEN ] = "THEN" ,
3269 [RES_ELIF ] = "ELIF" ,
3270 [RES_ELSE ] = "ELSE" ,
3271 [RES_FI ] = "FI" ,
3272# endif
3273# if ENABLE_HUSH_LOOPS
3274 [RES_FOR ] = "FOR" ,
3275 [RES_WHILE] = "WHILE",
3276 [RES_UNTIL] = "UNTIL",
3277 [RES_DO ] = "DO" ,
3278 [RES_DONE ] = "DONE" ,
3279# endif
3280# if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
3281 [RES_IN ] = "IN" ,
3282# endif
3283# if ENABLE_HUSH_CASE
3284 [RES_CASE ] = "CASE" ,
3285 [RES_CASE_IN ] = "CASE_IN" ,
3286 [RES_MATCH] = "MATCH",
3287 [RES_CASE_BODY] = "CASE_BODY",
3288 [RES_ESAC ] = "ESAC" ,
3289# endif
3290 [RES_XXXX ] = "XXXX" ,
3291 [RES_SNTX ] = "SNTX" ,
3292 };
3293 static const char *const CMDTYPE[] = {
3294 "{}",
3295 "()",
3296 "[noglob]",
3297# if ENABLE_HUSH_FUNCTIONS
3298 "func()",
3299# endif
3300 };
3301
3302 int pin, prn;
3303
3304 pin = 0;
3305 while (pi) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003306 fdprintf(2, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003307 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
3308 prn = 0;
3309 while (prn < pi->num_cmds) {
3310 struct command *command = &pi->cmds[prn];
3311 char **argv = command->argv;
3312
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003313 fdprintf(2, "%*s cmd %d assignment_cnt:%d",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003314 lvl*2, "", prn,
3315 command->assignment_cnt);
3316 if (command->group) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003317 fdprintf(2, " group %s: (argv=%p)%s%s\n",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003318 CMDTYPE[command->cmd_type],
3319 argv
3320# if !BB_MMU
3321 , " group_as_string:", command->group_as_string
3322# else
3323 , "", ""
3324# endif
3325 );
3326 debug_print_tree(command->group, lvl+1);
3327 prn++;
3328 continue;
3329 }
3330 if (argv) while (*argv) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003331 fdprintf(2, " '%s'", *argv);
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003332 argv++;
3333 }
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003334 fdprintf(2, "\n");
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003335 prn++;
3336 }
3337 pi = pi->next;
3338 pin++;
3339 }
3340}
3341#endif /* debug_print_tree */
3342
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00003343static struct pipe *new_pipe(void)
3344{
Eric Andersen25f27032001-04-26 23:22:31 +00003345 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003346 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003347 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00003348 return pi;
3349}
3350
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003351/* Command (member of a pipe) is complete, or we start a new pipe
3352 * if ctx->command is NULL.
3353 * No errors possible here.
3354 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003355static int done_command(struct parse_context *ctx)
3356{
3357 /* The command is really already in the pipe structure, so
3358 * advance the pipe counter and make a new, null command. */
3359 struct pipe *pi = ctx->pipe;
3360 struct command *command = ctx->command;
3361
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02003362#if 0 /* Instead we emit error message at run time */
3363 if (ctx->pending_redirect) {
3364 /* For example, "cmd >" (no filename to redirect to) */
3365 die_if_script("syntax error: %s", "invalid redirect");
3366 ctx->pending_redirect = NULL;
3367 }
3368#endif
3369
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003370 if (command) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003371 if (IS_NULL_CMD(command)) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003372 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003373 goto clear_and_ret;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003374 }
3375 pi->num_cmds++;
3376 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003377 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003378 } else {
3379 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
3380 }
3381
3382 /* Only real trickiness here is that the uncommitted
3383 * command structure is not counted in pi->num_cmds. */
3384 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003385 ctx->command = command = &pi->cmds[pi->num_cmds];
3386 clear_and_ret:
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003387 memset(command, 0, sizeof(*command));
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003388 return pi->num_cmds; /* used only for 0/nonzero check */
3389}
3390
3391static void done_pipe(struct parse_context *ctx, pipe_style type)
3392{
3393 int not_null;
3394
3395 debug_printf_parse("done_pipe entered, followup %d\n", type);
3396 /* Close previous command */
3397 not_null = done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003398#if HAS_KEYWORDS
3399 ctx->pipe->pi_inverted = ctx->ctx_inverted;
3400 ctx->ctx_inverted = 0;
3401 ctx->pipe->res_word = ctx->ctx_res_w;
3402#endif
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02003403 if (type == PIPE_BG && ctx->list_head != ctx->pipe) {
3404 /* Necessary since && and || have precedence over &:
Denys Vlasenkoee553b92017-07-15 22:51:55 +02003405 * "cmd1 && cmd2 &" must spawn both cmds, not only cmd2,
3406 * in a backgrounded subshell.
3407 */
3408 struct pipe *pi;
3409 struct command *command;
3410
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02003411 /* Is this actually this construct, all pipes end with && or ||? */
Denys Vlasenkoee553b92017-07-15 22:51:55 +02003412 pi = ctx->list_head;
3413 while (pi != ctx->pipe) {
3414 if (pi->followup != PIPE_AND && pi->followup != PIPE_OR)
3415 goto no_conv;
3416 pi = pi->next;
3417 }
3418
3419 debug_printf_parse("BG with more than one pipe, converting to { p1 &&...pN; } &\n");
3420 pi->followup = PIPE_SEQ; /* close pN _not_ with "&"! */
3421 pi = xzalloc(sizeof(*pi));
3422 pi->followup = PIPE_BG;
3423 pi->num_cmds = 1;
3424 pi->cmds = xzalloc(sizeof(pi->cmds[0]));
3425 command = &pi->cmds[0];
3426 if (CMD_NORMAL != 0) /* "if xzalloc didn't do that already" */
3427 command->cmd_type = CMD_NORMAL;
3428 command->group = ctx->list_head;
3429#if !BB_MMU
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02003430 command->group_as_string = xstrndup(
3431 ctx->as_string.data,
3432 ctx->as_string.length - 1 /* do not copy last char, "&" */
3433 );
Denys Vlasenkoee553b92017-07-15 22:51:55 +02003434#endif
3435 /* Replace all pipes in ctx with one newly created */
3436 ctx->list_head = ctx->pipe = pi;
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02003437 } else {
3438 no_conv:
3439 ctx->pipe->followup = type;
Denys Vlasenkoee553b92017-07-15 22:51:55 +02003440 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003441
3442 /* Without this check, even just <enter> on command line generates
3443 * tree of three NOPs (!). Which is harmless but annoying.
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003444 * IOW: it is safe to do it unconditionally. */
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003445 if (not_null
Denis Vlasenko7f959372009-04-14 08:06:59 +00003446#if ENABLE_HUSH_IF
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003447 || ctx->ctx_res_w == RES_FI
Denis Vlasenko7f959372009-04-14 08:06:59 +00003448#endif
3449#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003450 || ctx->ctx_res_w == RES_DONE
3451 || ctx->ctx_res_w == RES_FOR
3452 || ctx->ctx_res_w == RES_IN
Denis Vlasenko7f959372009-04-14 08:06:59 +00003453#endif
3454#if ENABLE_HUSH_CASE
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003455 || ctx->ctx_res_w == RES_ESAC
3456#endif
3457 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003458 struct pipe *new_p;
3459 debug_printf_parse("done_pipe: adding new pipe: "
3460 "not_null:%d ctx->ctx_res_w:%d\n",
3461 not_null, ctx->ctx_res_w);
3462 new_p = new_pipe();
3463 ctx->pipe->next = new_p;
3464 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003465 /* RES_THEN, RES_DO etc are "sticky" -
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003466 * they remain set for pipes inside if/while.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003467 * This is used to control execution.
3468 * RES_FOR and RES_IN are NOT sticky (needed to support
3469 * cases where variable or value happens to match a keyword):
3470 */
3471#if ENABLE_HUSH_LOOPS
3472 if (ctx->ctx_res_w == RES_FOR
3473 || ctx->ctx_res_w == RES_IN)
3474 ctx->ctx_res_w = RES_NONE;
3475#endif
3476#if ENABLE_HUSH_CASE
3477 if (ctx->ctx_res_w == RES_MATCH)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003478 ctx->ctx_res_w = RES_CASE_BODY;
3479 if (ctx->ctx_res_w == RES_CASE)
3480 ctx->ctx_res_w = RES_CASE_IN;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003481#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003482 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003483 /* Create the memory for command, roughly:
3484 * ctx->pipe->cmds = new struct command;
3485 * ctx->command = &ctx->pipe->cmds[0];
3486 */
3487 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003488 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003489 }
3490 debug_printf_parse("done_pipe return\n");
3491}
3492
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003493static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003494{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003495 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00003496 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003497 /* Create the memory for command, roughly:
3498 * ctx->pipe->cmds = new struct command;
3499 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003500 */
3501 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00003502}
3503
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003504/* If a reserved word is found and processed, parse context is modified
3505 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00003506 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003507#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003508struct reserved_combo {
3509 char literal[6];
3510 unsigned char res;
3511 unsigned char assignment_flag;
3512 int flag;
3513};
3514enum {
3515 FLAG_END = (1 << RES_NONE ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003516# if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003517 FLAG_IF = (1 << RES_IF ),
3518 FLAG_THEN = (1 << RES_THEN ),
3519 FLAG_ELIF = (1 << RES_ELIF ),
3520 FLAG_ELSE = (1 << RES_ELSE ),
3521 FLAG_FI = (1 << RES_FI ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003522# endif
3523# if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003524 FLAG_FOR = (1 << RES_FOR ),
3525 FLAG_WHILE = (1 << RES_WHILE),
3526 FLAG_UNTIL = (1 << RES_UNTIL),
3527 FLAG_DO = (1 << RES_DO ),
3528 FLAG_DONE = (1 << RES_DONE ),
3529 FLAG_IN = (1 << RES_IN ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003530# endif
3531# if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003532 FLAG_MATCH = (1 << RES_MATCH),
3533 FLAG_ESAC = (1 << RES_ESAC ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003534# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003535 FLAG_START = (1 << RES_XXXX ),
3536};
3537
3538static const struct reserved_combo* match_reserved_word(o_string *word)
3539{
Eric Andersen25f27032001-04-26 23:22:31 +00003540 /* Mostly a list of accepted follow-up reserved words.
3541 * FLAG_END means we are done with the sequence, and are ready
3542 * to turn the compound list into a command.
3543 * FLAG_START means the word must start a new compound list.
3544 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003545 static const struct reserved_combo reserved_list[] = {
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003546# if ENABLE_HUSH_IF
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003547 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
3548 { "if", RES_IF, MAYBE_ASSIGNMENT, FLAG_THEN | FLAG_START },
3549 { "then", RES_THEN, MAYBE_ASSIGNMENT, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
3550 { "elif", RES_ELIF, MAYBE_ASSIGNMENT, FLAG_THEN },
3551 { "else", RES_ELSE, MAYBE_ASSIGNMENT, FLAG_FI },
3552 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003553# endif
3554# if ENABLE_HUSH_LOOPS
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003555 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
3556 { "while", RES_WHILE, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START },
3557 { "until", RES_UNTIL, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START },
3558 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
3559 { "do", RES_DO, MAYBE_ASSIGNMENT, FLAG_DONE },
3560 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003561# endif
3562# if ENABLE_HUSH_CASE
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003563 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
3564 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003565# endif
Eric Andersen25f27032001-04-26 23:22:31 +00003566 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003567 const struct reserved_combo *r;
3568
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02003569 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003570 if (strcmp(word->data, r->literal) == 0)
3571 return r;
3572 }
3573 return NULL;
3574}
Denis Vlasenkobb929512009-04-16 10:59:40 +00003575/* Return 0: not a keyword, 1: keyword
3576 */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003577static int reserved_word(o_string *word, struct parse_context *ctx)
3578{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003579# if ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003580 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003581 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003582 };
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003583# endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003584 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003585
Denys Vlasenko38292b62010-09-05 14:49:40 +02003586 if (word->has_quoted_part)
Denis Vlasenkobb929512009-04-16 10:59:40 +00003587 return 0;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003588 r = match_reserved_word(word);
3589 if (!r)
3590 return 0;
3591
3592 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003593# if ENABLE_HUSH_CASE
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003594 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE_IN) {
3595 /* "case word IN ..." - IN part starts first MATCH part */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003596 r = &reserved_match;
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003597 } else
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003598# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003599 if (r->flag == 0) { /* '!' */
3600 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003601 syntax_error("! ! command");
Denis Vlasenkobb929512009-04-16 10:59:40 +00003602 ctx->ctx_res_w = RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00003603 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003604 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00003605 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003606 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003607 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003608 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003609
Denys Vlasenko9e55a152017-07-10 10:01:12 +02003610 old = xmemdup(ctx, sizeof(*ctx));
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003611 debug_printf_parse("push stack %p\n", old);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003612 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003613 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003614 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003615 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003616 ctx->ctx_res_w = RES_SNTX;
3617 return 1;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003618 } else {
3619 /* "{...} fi" is ok. "{...} if" is not
3620 * Example:
3621 * if { echo foo; } then { echo bar; } fi */
3622 if (ctx->command->group)
3623 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003624 }
Denis Vlasenkobb929512009-04-16 10:59:40 +00003625
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003626 ctx->ctx_res_w = r->res;
3627 ctx->old_flag = r->flag;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003628 word->o_assignment = r->assignment_flag;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003629 debug_printf_parse("word->o_assignment='%s'\n", assignment_flag[word->o_assignment]);
Denis Vlasenkobb929512009-04-16 10:59:40 +00003630
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003631 if (ctx->old_flag & FLAG_END) {
3632 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003633
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003634 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003635 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003636 old = ctx->stack;
3637 old->command->group = ctx->list_head;
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003638 old->command->cmd_type = CMD_NORMAL;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003639# if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02003640 /* At this point, the compound command's string is in
3641 * ctx->as_string... except for the leading keyword!
3642 * Consider this example: "echo a | if true; then echo a; fi"
3643 * ctx->as_string will contain "true; then echo a; fi",
3644 * with "if " remaining in old->as_string!
3645 */
3646 {
3647 char *str;
3648 int len = old->as_string.length;
3649 /* Concatenate halves */
3650 o_addstr(&old->as_string, ctx->as_string.data);
3651 o_free_unsafe(&ctx->as_string);
3652 /* Find where leading keyword starts in first half */
3653 str = old->as_string.data + len;
3654 if (str > old->as_string.data)
3655 str--; /* skip whitespace after keyword */
3656 while (str > old->as_string.data && isalpha(str[-1]))
3657 str--;
3658 /* Ugh, we're done with this horrid hack */
3659 old->command->group_as_string = xstrdup(str);
3660 debug_printf_parse("pop, remembering as:'%s'\n",
3661 old->command->group_as_string);
3662 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003663# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003664 *ctx = *old; /* physical copy */
3665 free(old);
3666 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003667 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003668}
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003669#endif /* HAS_KEYWORDS */
Eric Andersen25f27032001-04-26 23:22:31 +00003670
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003671/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003672 * Normal return is 0. Syntax errors return 1.
3673 * Note: on return, word is reset, but not o_free'd!
3674 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003675static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003676{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003677 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00003678
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003679 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denys Vlasenko38292b62010-09-05 14:49:40 +02003680 if (word->length == 0 && !word->has_quoted_part) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003681 debug_printf_parse("done_word return 0: true null, ignored\n");
3682 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003683 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003684
Eric Andersen25f27032001-04-26 23:22:31 +00003685 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003686 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
3687 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003688 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3689 * "2.7 Redirection
3690 * ...the word that follows the redirection operator
3691 * shall be subjected to tilde expansion, parameter expansion,
3692 * command substitution, arithmetic expansion, and quote
3693 * removal. Pathname expansion shall not be performed
3694 * on the word by a non-interactive shell; an interactive
3695 * shell may perform it, but shall do so only when
3696 * the expansion would result in one word."
3697 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003698 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003699 /* Cater for >\file case:
3700 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
3701 * Same with heredocs:
3702 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
3703 */
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003704 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC) {
3705 unbackslash(ctx->pending_redirect->rd_filename);
3706 /* Is it <<"HEREDOC"? */
Denys Vlasenko38292b62010-09-05 14:49:40 +02003707 if (word->has_quoted_part) {
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003708 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
3709 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003710 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003711 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003712 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003713 } else {
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003714#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003715# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00003716 if (ctx->ctx_dsemicolon
3717 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
3718 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003719 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003720 /* ctx->ctx_res_w = RES_MATCH; */
3721 ctx->ctx_dsemicolon = 0;
3722 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003723# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003724 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003725# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003726 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
3727 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003728# endif
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003729# if ENABLE_HUSH_CASE
3730 && ctx->ctx_res_w != RES_CASE
3731# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003732 ) {
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003733 int reserved = reserved_word(word, ctx);
3734 debug_printf_parse("checking for reserved-ness: %d\n", reserved);
3735 if (reserved) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003736 o_reset_to_empty_unquoted(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003737 debug_printf_parse("done_word return %d\n",
3738 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003739 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003740 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01003741# if BASH_TEST2
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003742 if (strcmp(word->data, "[[") == 0) {
3743 command->cmd_type = CMD_SINGLEWORD_NOGLOB;
3744 }
3745 /* fall through */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02003746# endif
Eric Andersen25f27032001-04-26 23:22:31 +00003747 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003748#endif
Denis Vlasenkobb929512009-04-16 10:59:40 +00003749 if (command->group) {
3750 /* "{ echo foo; } echo bar" - bad */
3751 syntax_error_at(word->data);
3752 debug_printf_parse("done_word return 1: syntax error, "
3753 "groups and arglists don't mix\n");
3754 return 1;
3755 }
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003756
3757 /* If this word wasn't an assignment, next ones definitely
3758 * can't be assignments. Even if they look like ones. */
3759 if (word->o_assignment != DEFINITELY_ASSIGNMENT
3760 && word->o_assignment != WORD_IS_KEYWORD
3761 ) {
3762 word->o_assignment = NOT_ASSIGNMENT;
3763 } else {
3764 if (word->o_assignment == DEFINITELY_ASSIGNMENT) {
3765 command->assignment_cnt++;
3766 debug_printf_parse("++assignment_cnt=%d\n", command->assignment_cnt);
3767 }
3768 debug_printf_parse("word->o_assignment was:'%s'\n", assignment_flag[word->o_assignment]);
3769 word->o_assignment = MAYBE_ASSIGNMENT;
3770 }
3771 debug_printf_parse("word->o_assignment='%s'\n", assignment_flag[word->o_assignment]);
3772
Denys Vlasenko38292b62010-09-05 14:49:40 +02003773 if (word->has_quoted_part
Denis Vlasenko55789c62008-06-18 16:30:42 +00003774 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
3775 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003776 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003777 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003778 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003779 char *p = word->data;
3780 while (p[0] == SPECIAL_VAR_SYMBOL
3781 && (p[1] & 0x7f) == '@'
3782 && p[2] == SPECIAL_VAR_SYMBOL
3783 ) {
3784 p += 3;
3785 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00003786 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003787 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003788 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003789 }
Eric Andersen25f27032001-04-26 23:22:31 +00003790
Denis Vlasenko06810332007-05-21 23:30:54 +00003791#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003792 if (ctx->ctx_res_w == RES_FOR) {
Denys Vlasenko38292b62010-09-05 14:49:40 +02003793 if (word->has_quoted_part
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003794 || !is_well_formed_var_name(command->argv[0], '\0')
3795 ) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003796 /* bash says just "not a valid identifier" */
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003797 syntax_error("not a valid identifier in for");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003798 return 1;
3799 }
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003800 /* Force FOR to have just one word (variable name) */
3801 /* NB: basically, this makes hush see "for v in ..."
3802 * syntax as if it is "for v; in ...". FOR and IN become
3803 * two pipe structs in parse tree. */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003804 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003805 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003806#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003807#if ENABLE_HUSH_CASE
3808 /* Force CASE to have just one word */
3809 if (ctx->ctx_res_w == RES_CASE) {
3810 done_pipe(ctx, PIPE_SEQ);
3811 }
3812#endif
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003813
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003814 o_reset_to_empty_unquoted(word);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003815
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003816 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003817 return 0;
3818}
3819
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003820
3821/* Peek ahead in the input to find out if we have a "&n" construct,
3822 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003823 * Return:
3824 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
3825 * REDIRFD_SYNTAX_ERR if syntax error,
3826 * REDIRFD_TO_FILE if no & was seen,
3827 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003828 */
3829#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003830#define parse_redir_right_fd(as_string, input) \
3831 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003832#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003833static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003834{
3835 int ch, d, ok;
3836
3837 ch = i_peek(input);
3838 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003839 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003840
3841 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003842 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003843 ch = i_peek(input);
3844 if (ch == '-') {
3845 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003846 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003847 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003848 }
3849 d = 0;
3850 ok = 0;
3851 while (ch != EOF && isdigit(ch)) {
3852 d = d*10 + (ch-'0');
3853 ok = 1;
3854 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003855 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003856 ch = i_peek(input);
3857 }
3858 if (ok) return d;
3859
3860//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
3861
3862 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003863 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003864}
3865
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003866/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003867 */
3868static int parse_redirect(struct parse_context *ctx,
3869 int fd,
3870 redir_type style,
3871 struct in_str *input)
3872{
3873 struct command *command = ctx->command;
3874 struct redir_struct *redir;
3875 struct redir_struct **redirp;
3876 int dup_num;
3877
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003878 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003879 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003880 /* Check for a '>&1' type redirect */
3881 dup_num = parse_redir_right_fd(&ctx->as_string, input);
3882 if (dup_num == REDIRFD_SYNTAX_ERR)
3883 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003884 } else {
3885 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003886 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003887 if (dup_num) { /* <<-... */
3888 ch = i_getch(input);
3889 nommu_addchr(&ctx->as_string, ch);
3890 ch = i_peek(input);
3891 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003892 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003893
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003894 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003895 int ch = i_peek(input);
3896 if (ch == '|') {
3897 /* >|FILE redirect ("clobbering" >).
3898 * Since we do not support "set -o noclobber" yet,
3899 * >| and > are the same for now. Just eat |.
3900 */
3901 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003902 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003903 }
3904 }
3905
3906 /* Create a new redir_struct and append it to the linked list */
3907 redirp = &command->redirects;
3908 while ((redir = *redirp) != NULL) {
3909 redirp = &(redir->next);
3910 }
3911 *redirp = redir = xzalloc(sizeof(*redir));
3912 /* redir->next = NULL; */
3913 /* redir->rd_filename = NULL; */
3914 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003915 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003916
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003917 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
3918 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003919
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003920 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003921 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003922 /* Erik had a check here that the file descriptor in question
3923 * is legit; I postpone that to "run time"
3924 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003925 debug_printf_parse("duplicating redirect '%d>&%d'\n",
3926 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003927 } else {
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02003928#if 0 /* Instead we emit error message at run time */
3929 if (ctx->pending_redirect) {
3930 /* For example, "cmd > <file" */
3931 die_if_script("syntax error: %s", "invalid redirect");
3932 }
3933#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003934 /* Set ctx->pending_redirect, so we know what to do at the
3935 * end of the next parsed word. */
3936 ctx->pending_redirect = redir;
3937 }
3938 return 0;
3939}
3940
Eric Andersen25f27032001-04-26 23:22:31 +00003941/* If a redirect is immediately preceded by a number, that number is
3942 * supposed to tell which file descriptor to redirect. This routine
3943 * looks for such preceding numbers. In an ideal world this routine
3944 * needs to handle all the following classes of redirects...
3945 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
3946 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
3947 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
3948 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003949 *
3950 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3951 * "2.7 Redirection
3952 * ... If n is quoted, the number shall not be recognized as part of
3953 * the redirection expression. For example:
3954 * echo \2>a
3955 * writes the character 2 into file a"
Denys Vlasenko38292b62010-09-05 14:49:40 +02003956 * We are getting it right by setting ->has_quoted_part on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003957 *
3958 * A -1 return means no valid number was found,
3959 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00003960 */
3961static int redirect_opt_num(o_string *o)
3962{
3963 int num;
3964
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003965 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003966 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003967 num = bb_strtou(o->data, NULL, 10);
3968 if (errno || num < 0)
3969 return -1;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003970 o_reset_to_empty_unquoted(o);
Eric Andersen25f27032001-04-26 23:22:31 +00003971 return num;
3972}
3973
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003974#if BB_MMU
3975#define fetch_till_str(as_string, input, word, skip_tabs) \
3976 fetch_till_str(input, word, skip_tabs)
3977#endif
3978static char *fetch_till_str(o_string *as_string,
3979 struct in_str *input,
3980 const char *word,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003981 int heredoc_flags)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003982{
3983 o_string heredoc = NULL_O_STRING;
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003984 unsigned past_EOL;
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003985 int prev = 0; /* not \ */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003986 int ch;
3987
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003988 goto jump_in;
Denys Vlasenkob8709032011-05-08 21:20:01 +02003989
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003990 while (1) {
3991 ch = i_getch(input);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003992 if (ch != EOF)
3993 nommu_addchr(as_string, ch);
3994 if ((ch == '\n' || ch == EOF)
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003995 && ((heredoc_flags & HEREDOC_QUOTED) || prev != '\\')
3996 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003997 if (strcmp(heredoc.data + past_EOL, word) == 0) {
3998 heredoc.data[past_EOL] = '\0';
3999 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
4000 return heredoc.data;
4001 }
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004002 while (ch == '\n') {
4003 o_addchr(&heredoc, ch);
4004 prev = ch;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004005 jump_in:
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004006 past_EOL = heredoc.length;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004007 do {
4008 ch = i_getch(input);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004009 if (ch != EOF)
4010 nommu_addchr(as_string, ch);
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02004011 } while ((heredoc_flags & HEREDOC_SKIPTABS) && ch == '\t');
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004012 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004013 }
4014 if (ch == EOF) {
4015 o_free_unsafe(&heredoc);
4016 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004017 }
4018 o_addchr(&heredoc, ch);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004019 nommu_addchr(as_string, ch);
Denys Vlasenkoc3adfac2010-09-06 11:46:03 +02004020 if (prev == '\\' && ch == '\\')
4021 /* Correctly handle foo\\<eol> (not a line cont.) */
4022 prev = 0; /* not \ */
4023 else
4024 prev = ch;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004025 }
4026}
4027
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004028/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
4029 * and load them all. There should be exactly heredoc_cnt of them.
4030 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004031static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
4032{
4033 struct pipe *pi = ctx->list_head;
4034
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004035 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004036 int i;
4037 struct command *cmd = pi->cmds;
4038
4039 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
4040 pi->num_cmds,
4041 cmd->argv ? cmd->argv[0] : "NONE");
4042 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004043 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004044
4045 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
4046 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004047 while (redir) {
4048 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004049 char *p;
4050
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004051 redir->rd_type = REDIRECT_HEREDOC2;
Denys Vlasenko764b2f02009-06-07 16:05:04 +02004052 /* redir->rd_dup is (ab)used to indicate <<- */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004053 p = fetch_till_str(&ctx->as_string, input,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02004054 redir->rd_filename, redir->rd_dup);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004055 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004056 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004057 return 1;
4058 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004059 free(redir->rd_filename);
4060 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004061 heredoc_cnt--;
4062 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004063 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004064 }
4065 cmd++;
4066 }
4067 pi = pi->next;
4068 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004069#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004070 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004071 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004072 bb_error_msg_and_die("heredoc BUG 2");
4073#endif
4074 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004075}
4076
4077
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004078static int run_list(struct pipe *pi);
4079#if BB_MMU
4080#define parse_stream(pstring, input, end_trigger) \
4081 parse_stream(input, end_trigger)
4082#endif
4083static struct pipe *parse_stream(char **pstring,
4084 struct in_str *input,
4085 int end_trigger);
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004086
Eric Andersen25f27032001-04-26 23:22:31 +00004087
Denys Vlasenkoc2704542009-11-20 19:14:19 +01004088#if !ENABLE_HUSH_FUNCTIONS
4089#define parse_group(dest, ctx, input, ch) \
4090 parse_group(ctx, input, ch)
4091#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004092static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00004093 struct in_str *input, int ch)
4094{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004095 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004096 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004097 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004098 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004099 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004100 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004101
4102 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004103#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko38292b62010-09-05 14:49:40 +02004104 if (ch == '(' && !dest->has_quoted_part) {
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004105 if (dest->length)
Denis Vlasenkobb929512009-04-16 10:59:40 +00004106 if (done_word(dest, ctx))
4107 return 1;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004108 if (!command->argv)
4109 goto skip; /* (... */
4110 if (command->argv[1]) { /* word word ... (... */
4111 syntax_error_unexpected_ch('(');
4112 return 1;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004113 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004114 /* it is "word(..." or "word (..." */
4115 do
4116 ch = i_getch(input);
4117 while (ch == ' ' || ch == '\t');
4118 if (ch != ')') {
4119 syntax_error_unexpected_ch(ch);
4120 return 1;
4121 }
4122 nommu_addchr(&ctx->as_string, ch);
4123 do
4124 ch = i_getch(input);
4125 while (ch == ' ' || ch == '\t' || ch == '\n');
4126 if (ch != '{') {
4127 syntax_error_unexpected_ch(ch);
4128 return 1;
4129 }
4130 nommu_addchr(&ctx->as_string, ch);
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004131 command->cmd_type = CMD_FUNCDEF;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004132 goto skip;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004133 }
4134#endif
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004135
4136#if 0 /* Prevented by caller */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004137 if (command->argv /* word [word]{... */
4138 || dest->length /* word{... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004139 || dest->has_quoted_part /* ""{... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004140 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004141 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004142 debug_printf_parse("parse_group return 1: "
4143 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004144 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004145 }
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004146#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004147
4148#if ENABLE_HUSH_FUNCTIONS
4149 skip:
4150#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00004151 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004152 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00004153 endch = ')';
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004154 command->cmd_type = CMD_SUBSHELL;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004155 } else {
4156 /* bash does not allow "{echo...", requires whitespace */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004157 ch = i_peek(input);
4158 if (ch != ' ' && ch != '\t' && ch != '\n'
4159 && ch != '(' /* but "{(..." is allowed (without whitespace) */
4160 ) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004161 syntax_error_unexpected_ch(ch);
4162 return 1;
4163 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004164 if (ch != '(') {
4165 ch = i_getch(input);
4166 nommu_addchr(&ctx->as_string, ch);
4167 }
Eric Andersen25f27032001-04-26 23:22:31 +00004168 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004169
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004170 {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004171#if BB_MMU
4172# define as_string NULL
4173#else
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004174 char *as_string = NULL;
4175#endif
4176 pipe_list = parse_stream(&as_string, input, endch);
4177#if !BB_MMU
4178 if (as_string)
4179 o_addstr(&ctx->as_string, as_string);
4180#endif
4181 /* empty ()/{} or parse error? */
4182 if (!pipe_list || pipe_list == ERR_PTR) {
Denis Vlasenkobb929512009-04-16 10:59:40 +00004183 /* parse_stream already emitted error msg */
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004184 if (!BB_MMU)
4185 free(as_string);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004186 debug_printf_parse("parse_group return 1: "
4187 "parse_stream returned %p\n", pipe_list);
4188 return 1;
4189 }
4190 command->group = pipe_list;
4191#if !BB_MMU
4192 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
4193 command->group_as_string = as_string;
4194 debug_printf_parse("end of group, remembering as:'%s'\n",
4195 command->group_as_string);
4196#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004197#undef as_string
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004198 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004199 debug_printf_parse("parse_group return 0\n");
4200 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004201 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00004202}
4203
Denys Vlasenko46e64982016-09-29 19:50:55 +02004204static int i_getch_and_eat_bkslash_nl(struct in_str *input)
4205{
4206 for (;;) {
4207 int ch, ch2;
4208
4209 ch = i_getch(input);
4210 if (ch != '\\')
4211 return ch;
4212 ch2 = i_peek(input);
4213 if (ch2 != '\n')
4214 return ch;
4215 /* backslash+newline, skip it */
4216 i_getch(input);
4217 }
4218}
4219
Denys Vlasenko657086a2016-09-29 18:07:42 +02004220static int i_peek_and_eat_bkslash_nl(struct in_str *input)
4221{
4222 for (;;) {
4223 int ch, ch2;
4224
4225 ch = i_peek(input);
4226 if (ch != '\\')
4227 return ch;
4228 ch2 = i_peek2(input);
4229 if (ch2 != '\n')
4230 return ch;
4231 /* backslash+newline, skip it */
4232 i_getch(input);
4233 i_getch(input);
4234 }
4235}
4236
Denys Vlasenko0b883582016-12-23 16:49:07 +01004237#if ENABLE_HUSH_TICK || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_DOLLAR_OPS
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004238/* Subroutines for copying $(...) and `...` things */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004239static int add_till_backquote(o_string *dest, struct in_str *input, int in_dquote);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004240/* '...' */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004241static int add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004242{
4243 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004244 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004245 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004246 syntax_error_unterm_ch('\'');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004247 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004248 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004249 if (ch == '\'')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004250 return 1;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004251 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004252 }
4253}
4254/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004255static int add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004256{
4257 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004258 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004259 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004260 syntax_error_unterm_ch('"');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004261 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004262 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004263 if (ch == '"')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004264 return 1;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004265 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004266 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004267 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004268 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004269 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004270 if (ch == '`') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004271 if (!add_till_backquote(dest, input, /*in_dquote:*/ 1))
4272 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004273 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004274 continue;
4275 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00004276 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004277 }
4278}
4279/* Process `cmd` - copy contents until "`" is seen. Complicated by
4280 * \` quoting.
4281 * "Within the backquoted style of command substitution, backslash
4282 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
4283 * The search for the matching backquote shall be satisfied by the first
4284 * backquote found without a preceding backslash; during this search,
4285 * if a non-escaped backquote is encountered within a shell comment,
4286 * a here-document, an embedded command substitution of the $(command)
4287 * form, or a quoted string, undefined results occur. A single-quoted
4288 * or double-quoted string that begins, but does not end, within the
4289 * "`...`" sequence produces undefined results."
4290 * Example Output
4291 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
4292 */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004293static int add_till_backquote(o_string *dest, struct in_str *input, int in_dquote)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004294{
4295 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004296 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004297 if (ch == '`')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004298 return 1;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004299 if (ch == '\\') {
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02004300 /* \x. Copy both unless it is \`, \$, \\ and maybe \" */
4301 ch = i_getch(input);
4302 if (ch != '`'
4303 && ch != '$'
4304 && ch != '\\'
4305 && (!in_dquote || ch != '"')
4306 ) {
4307 o_addchr(dest, '\\');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004308 }
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02004309 }
4310 if (ch == EOF) {
4311 syntax_error_unterm_ch('`');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004312 return 0;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004313 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004314 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004315 }
4316}
4317/* Process $(cmd) - copy contents until ")" is seen. Complicated by
4318 * quoting and nested ()s.
4319 * "With the $(command) style of command substitution, all characters
4320 * following the open parenthesis to the matching closing parenthesis
4321 * constitute the command. Any valid shell script can be used for command,
4322 * except a script consisting solely of redirections which produces
4323 * unspecified results."
4324 * Example Output
4325 * echo $(echo '(TEST)' BEST) (TEST) BEST
4326 * echo $(echo 'TEST)' BEST) TEST) BEST
4327 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
Denys Vlasenko74369502010-05-21 19:52:01 +02004328 *
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004329 * Also adapted to eat ${var%...} and $((...)) constructs, since ... part
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004330 * can contain arbitrary constructs, just like $(cmd).
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004331 * In bash compat mode, it needs to also be able to stop on ':' or '/'
4332 * for ${var:N[:M]} and ${var/P[/R]} parsing.
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004333 */
Denys Vlasenko74369502010-05-21 19:52:01 +02004334#define DOUBLE_CLOSE_CHAR_FLAG 0x80
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004335static int add_till_closing_bracket(o_string *dest, struct in_str *input, unsigned end_ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004336{
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004337 int ch;
Denys Vlasenko74369502010-05-21 19:52:01 +02004338 char dbl = end_ch & DOUBLE_CLOSE_CHAR_FLAG;
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004339# if BASH_SUBSTR || BASH_PATTERN_SUBST
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004340 char end_char2 = end_ch >> 8;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004341# endif
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004342 end_ch &= (DOUBLE_CLOSE_CHAR_FLAG - 1);
4343
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004344 while (1) {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004345 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004346 if (ch == EOF) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004347 syntax_error_unterm_ch(end_ch);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004348 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004349 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004350 if (ch == end_ch
4351# if BASH_SUBSTR || BASH_PATTERN_SUBST
4352 || ch == end_char2
4353# endif
4354 ) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004355 if (!dbl)
4356 break;
4357 /* we look for closing )) of $((EXPR)) */
Denys Vlasenko657086a2016-09-29 18:07:42 +02004358 if (i_peek_and_eat_bkslash_nl(input) == end_ch) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004359 i_getch(input); /* eat second ')' */
4360 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004361 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004362 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004363 o_addchr(dest, ch);
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004364 if (ch == '(' || ch == '{') {
4365 ch = (ch == '(' ? ')' : '}');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004366 if (!add_till_closing_bracket(dest, input, ch))
4367 return 0;
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004368 o_addchr(dest, ch);
4369 continue;
4370 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004371 if (ch == '\'') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004372 if (!add_till_single_quote(dest, input))
4373 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004374 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004375 continue;
4376 }
4377 if (ch == '"') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004378 if (!add_till_double_quote(dest, input))
4379 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004380 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004381 continue;
4382 }
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004383 if (ch == '`') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004384 if (!add_till_backquote(dest, input, /*in_dquote:*/ 0))
4385 return 0;
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004386 o_addchr(dest, ch);
4387 continue;
4388 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004389 if (ch == '\\') {
4390 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004391 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004392 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004393 syntax_error_unterm_ch(')');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004394 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004395 }
Denys Vlasenko657086a2016-09-29 18:07:42 +02004396#if 0
4397 if (ch == '\n') {
4398 /* "backslash+newline", ignore both */
4399 o_delchr(dest); /* undo insertion of '\' */
4400 continue;
4401 }
4402#endif
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004403 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004404 continue;
4405 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004406 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004407 return ch;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004408}
Denys Vlasenko0b883582016-12-23 16:49:07 +01004409#endif /* ENABLE_HUSH_TICK || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_DOLLAR_OPS */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004410
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004411/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004412#if BB_MMU
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004413#define parse_dollar(as_string, dest, input, quote_mask) \
4414 parse_dollar(dest, input, quote_mask)
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004415#define as_string NULL
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004416#endif
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004417static int parse_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004418 o_string *dest,
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004419 struct in_str *input, unsigned char quote_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00004420{
Denys Vlasenko657086a2016-09-29 18:07:42 +02004421 int ch = i_peek_and_eat_bkslash_nl(input); /* first character after the $ */
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004422
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004423 debug_printf_parse("parse_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004424 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004425 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004426 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00004427 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004428 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004429 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004430 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004431 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004432 quote_mask = 0;
Denys Vlasenko657086a2016-09-29 18:07:42 +02004433 ch = i_peek_and_eat_bkslash_nl(input);
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004434 if (!isalnum(ch) && ch != '_') {
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004435 /* End of variable name reached */
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004436 break;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004437 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004438 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004439 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004440 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004441 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004442 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004443 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004444 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004445 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004446 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004447 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004448 o_addchr(dest, ch | quote_mask);
4449 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004450 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004451 case '$': /* pid */
4452 case '!': /* last bg pid */
4453 case '?': /* last exit code */
4454 case '#': /* number of args */
4455 case '*': /* args */
4456 case '@': /* args */
4457 goto make_one_char_var;
4458 case '{': {
Mike Frysingeref3e7fd2009-06-01 14:13:39 -04004459 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4460
Denys Vlasenko74369502010-05-21 19:52:01 +02004461 ch = i_getch(input); /* eat '{' */
4462 nommu_addchr(as_string, ch);
4463
Denys Vlasenko46e64982016-09-29 19:50:55 +02004464 ch = i_getch_and_eat_bkslash_nl(input); /* first char after '{' */
Denys Vlasenko74369502010-05-21 19:52:01 +02004465 /* It should be ${?}, or ${#var},
4466 * or even ${?+subst} - operator acting on a special variable,
4467 * or the beginning of variable name.
4468 */
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004469 if (ch == EOF
4470 || (!strchr(_SPECIAL_VARS_STR, ch) && !isalnum(ch)) /* not one of those */
4471 ) {
Denys Vlasenko74369502010-05-21 19:52:01 +02004472 bad_dollar_syntax:
4473 syntax_error_unterm_str("${name}");
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004474 debug_printf_parse("parse_dollar return 0: unterminated ${name}\n");
4475 return 0;
Denys Vlasenko74369502010-05-21 19:52:01 +02004476 }
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004477 nommu_addchr(as_string, ch);
Denys Vlasenko74369502010-05-21 19:52:01 +02004478 ch |= quote_mask;
4479
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004480 /* It's possible to just call add_till_closing_bracket() at this point.
Denys Vlasenko74369502010-05-21 19:52:01 +02004481 * However, this regresses some of our testsuite cases
4482 * which check invalid constructs like ${%}.
4483 * Oh well... let's check that the var name part is fine... */
4484
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004485 while (1) {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004486 unsigned pos;
4487
Denys Vlasenko74369502010-05-21 19:52:01 +02004488 o_addchr(dest, ch);
4489 debug_printf_parse(": '%c'\n", ch);
4490
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004491 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004492 nommu_addchr(as_string, ch);
Denys Vlasenko74369502010-05-21 19:52:01 +02004493 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00004494 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004495
Denys Vlasenko74369502010-05-21 19:52:01 +02004496 if (!isalnum(ch) && ch != '_') {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004497 unsigned end_ch;
4498 unsigned char last_ch;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004499 /* handle parameter expansions
4500 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
4501 */
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004502 if (!strchr(VAR_SUBST_OPS, ch)) /* ${var<bad_char>... */
Denys Vlasenko74369502010-05-21 19:52:01 +02004503 goto bad_dollar_syntax;
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004504
4505 /* Eat everything until closing '}' (or ':') */
4506 end_ch = '}';
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004507 if (BASH_SUBSTR
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004508 && ch == ':'
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004509 && !strchr(MINUS_PLUS_EQUAL_QUESTION, i_peek(input))
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004510 ) {
4511 /* It's ${var:N[:M]} thing */
4512 end_ch = '}' * 0x100 + ':';
4513 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004514 if (BASH_PATTERN_SUBST
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004515 && ch == '/'
4516 ) {
4517 /* It's ${var/[/]pattern[/repl]} thing */
4518 if (i_peek(input) == '/') { /* ${var//pattern[/repl]}? */
4519 i_getch(input);
4520 nommu_addchr(as_string, '/');
4521 ch = '\\';
4522 }
4523 end_ch = '}' * 0x100 + '/';
4524 }
4525 o_addchr(dest, ch);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004526 again:
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004527 if (!BB_MMU)
4528 pos = dest->length;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004529#if ENABLE_HUSH_DOLLAR_OPS
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004530 last_ch = add_till_closing_bracket(dest, input, end_ch);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004531 if (last_ch == 0) /* error? */
4532 return 0;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004533#else
4534#error Simple code to only allow ${var} is not implemented
4535#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004536 if (as_string) {
4537 o_addstr(as_string, dest->data + pos);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004538 o_addchr(as_string, last_ch);
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004539 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004540
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004541 if ((BASH_SUBSTR || BASH_PATTERN_SUBST)
4542 && (end_ch & 0xff00)
4543 ) {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004544 /* close the first block: */
4545 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004546 /* while parsing N from ${var:N[:M]}
4547 * or pattern from ${var/[/]pattern[/repl]} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004548 if ((end_ch & 0xff) == last_ch) {
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004549 /* got ':' or '/'- parse the rest */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004550 end_ch = '}';
4551 goto again;
4552 }
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004553 /* got '}' */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004554 if (BASH_SUBSTR && end_ch == '}' * 0x100 + ':') {
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004555 /* it's ${var:N} - emulate :999999999 */
4556 o_addstr(dest, "999999999");
4557 } /* else: it's ${var/[/]pattern} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004558 }
Denys Vlasenko74369502010-05-21 19:52:01 +02004559 break;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004560 }
Denys Vlasenko74369502010-05-21 19:52:01 +02004561 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004562 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4563 break;
4564 }
Denys Vlasenko0b883582016-12-23 16:49:07 +01004565#if ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004566 case '(': {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004567 unsigned pos;
4568
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004569 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004570 nommu_addchr(as_string, ch);
Denys Vlasenko0b883582016-12-23 16:49:07 +01004571# if ENABLE_FEATURE_SH_MATH
Denys Vlasenko657086a2016-09-29 18:07:42 +02004572 if (i_peek_and_eat_bkslash_nl(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004573 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004574 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004575 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4576 o_addchr(dest, /*quote_mask |*/ '+');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004577 if (!BB_MMU)
4578 pos = dest->length;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004579 if (!add_till_closing_bracket(dest, input, ')' | DOUBLE_CLOSE_CHAR_FLAG))
4580 return 0; /* error */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004581 if (as_string) {
4582 o_addstr(as_string, dest->data + pos);
4583 o_addchr(as_string, ')');
4584 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004585 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004586 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004587 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004588 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004589# endif
4590# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004591 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4592 o_addchr(dest, quote_mask | '`');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004593 if (!BB_MMU)
4594 pos = dest->length;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004595 if (!add_till_closing_bracket(dest, input, ')'))
4596 return 0; /* error */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004597 if (as_string) {
4598 o_addstr(as_string, dest->data + pos);
Denys Vlasenkob70cef72010-01-12 13:45:45 +01004599 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004600 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004601 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004602# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004603 break;
4604 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004605#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004606 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004607 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004608 nommu_addchr(as_string, ch);
Denys Vlasenko657086a2016-09-29 18:07:42 +02004609 ch = i_peek_and_eat_bkslash_nl(input);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004610 if (isalnum(ch)) { /* it's $_name or $_123 */
4611 ch = '_';
4612 goto make_var;
4613 }
4614 /* else: it's $_ */
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02004615 /* TODO: $_ and $-: */
4616 /* $_ Shell or shell script name; or last argument of last command
4617 * (if last command wasn't a pipe; if it was, bash sets $_ to "");
4618 * but in command's env, set to full pathname used to invoke it */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004619 /* $- Option flags set by set builtin or shell options (-i etc) */
4620 default:
4621 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00004622 }
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004623 debug_printf_parse("parse_dollar return 1 (ok)\n");
4624 return 1;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004625#undef as_string
Eric Andersen25f27032001-04-26 23:22:31 +00004626}
4627
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004628#if BB_MMU
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004629# if BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004630#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4631 encode_string(dest, input, dquote_end, process_bkslash)
4632# else
4633/* only ${var/pattern/repl} (its pattern part) needs additional mode */
4634#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4635 encode_string(dest, input, dquote_end)
4636# endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004637#define as_string NULL
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004638
4639#else /* !MMU */
4640
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004641# if BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004642/* all parameters are needed, no macro tricks */
4643# else
4644#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4645 encode_string(as_string, dest, input, dquote_end)
4646# endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004647#endif
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004648static int encode_string(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004649 o_string *dest,
4650 struct in_str *input,
Denys Vlasenko14e289b2010-09-10 10:15:18 +02004651 int dquote_end,
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004652 int process_bkslash)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004653{
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004654#if !BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004655 const int process_bkslash = 1;
4656#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004657 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004658 int next;
4659
4660 again:
4661 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004662 if (ch != EOF)
4663 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004664 if (ch == dquote_end) { /* may be only '"' or EOF */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004665 debug_printf_parse("encode_string return 1 (ok)\n");
4666 return 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004667 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004668 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004669 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004670 syntax_error_unterm_ch('"');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004671 return 0; /* error */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004672 }
4673 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004674 if (ch != '\n') {
4675 next = i_peek(input);
4676 }
Denys Vlasenkof37eb392009-10-18 11:46:35 +02004677 debug_printf_parse("\" ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004678 ch, ch, !!(dest->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004679 if (process_bkslash && ch == '\\') {
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004680 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004681 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004682 xfunc_die();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004683 }
4684 /* bash:
4685 * "The backslash retains its special meaning [in "..."]
4686 * only when followed by one of the following characters:
4687 * $, `, ", \, or <newline>. A double quote may be quoted
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02004688 * within double quotes by preceding it with a backslash."
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004689 * NB: in (unquoted) heredoc, above does not apply to ",
4690 * therefore we check for it by "next == dquote_end" cond.
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004691 */
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004692 if (next == dquote_end || strchr("$`\\\n", next)) {
Denys Vlasenko850b15b2010-09-09 12:58:19 +02004693 ch = i_getch(input); /* eat next */
4694 if (ch == '\n')
4695 goto again; /* skip \<newline> */
Denys Vlasenko4f870492010-09-10 11:06:01 +02004696 } /* else: ch remains == '\\', and we double it below: */
4697 o_addqchr(dest, ch); /* \c if c is a glob char, else just c */
Denys Vlasenko850b15b2010-09-09 12:58:19 +02004698 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004699 goto again;
4700 }
4701 if (ch == '$') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004702 if (!parse_dollar(as_string, dest, input, /*quote_mask:*/ 0x80)) {
4703 debug_printf_parse("encode_string return 0: "
4704 "parse_dollar returned 0 (error)\n");
4705 return 0;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004706 }
4707 goto again;
4708 }
4709#if ENABLE_HUSH_TICK
4710 if (ch == '`') {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004711 //unsigned pos = dest->length;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004712 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4713 o_addchr(dest, 0x80 | '`');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004714 if (!add_till_backquote(dest, input, /*in_dquote:*/ dquote_end == '"'))
4715 return 0; /* error */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004716 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4717 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00004718 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004719 }
4720#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00004721 o_addQchr(dest, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004722 goto again;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004723#undef as_string
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004724}
4725
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004726/*
4727 * Scan input until EOF or end_trigger char.
4728 * Return a list of pipes to execute, or NULL on EOF
4729 * or if end_trigger character is met.
Denys Vlasenkocecbc982011-03-30 18:54:52 +02004730 * On syntax error, exit if shell is not interactive,
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004731 * reset parsing machinery and start parsing anew,
4732 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004733 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004734static struct pipe *parse_stream(char **pstring,
4735 struct in_str *input,
4736 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00004737{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004738 struct parse_context ctx;
4739 o_string dest = NULL_O_STRING;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004740 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00004741
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004742 /* Single-quote triggers a bypass of the main loop until its mate is
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004743 * found. When recursing, quote state is passed in via dest->o_expflags.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004744 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004745 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
Denys Vlasenko90a99042009-09-06 02:36:23 +02004746 end_trigger ? end_trigger : 'X');
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004747 debug_enter();
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004748
Denys Vlasenkof37eb392009-10-18 11:46:35 +02004749 /* If very first arg is "" or '', dest.data may end up NULL.
4750 * Preventing this: */
4751 o_addchr(&dest, '\0');
4752 dest.length = 0;
4753
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004754 /* We used to separate words on $IFS here. This was wrong.
4755 * $IFS is used only for word splitting when $var is expanded,
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004756 * here we should use blank chars as separators, not $IFS
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004757 */
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004758
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004759 if (MAYBE_ASSIGNMENT != 0)
4760 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004761 initialize_context(&ctx);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004762 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004763 while (1) {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004764 const char *is_blank;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004765 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004766 int ch;
4767 int next;
4768 int redir_fd;
4769 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004770
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004771 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004772 debug_printf_parse(": ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004773 ch, ch, !!(dest.o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004774 if (ch == EOF) {
4775 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004776
4777 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004778 syntax_error_unterm_str("here document");
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004779 goto parse_error;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004780 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004781 if (end_trigger == ')') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004782 syntax_error_unterm_ch('(');
4783 goto parse_error;
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004784 }
Denys Vlasenko42246472016-11-07 16:22:35 +01004785 if (end_trigger == '}') {
4786 syntax_error_unterm_ch('{');
4787 goto parse_error;
4788 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004789
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004790 if (done_word(&dest, &ctx)) {
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004791 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004792 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004793 o_free(&dest);
4794 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004795 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004796 /* If we got nothing... */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004797 /* (this makes bare "&" cmd a no-op.
4798 * bash says: "syntax error near unexpected token '&'") */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004799 if (pi->num_cmds == 0
Denys Vlasenko60cb48c2013-01-14 15:57:44 +01004800 IF_HAS_KEYWORDS(&& pi->res_word == RES_NONE)
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004801 ) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004802 free_pipe_list(pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004803 pi = NULL;
4804 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004805#if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02004806 debug_printf_parse("as_string1 '%s'\n", ctx.as_string.data);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004807 if (pstring)
4808 *pstring = ctx.as_string.data;
4809 else
4810 o_free_unsafe(&ctx.as_string);
4811#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004812 debug_leave();
4813 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004814 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004815 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004816 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004817
4818 next = '\0';
4819 if (ch != '\n')
4820 next = i_peek(input);
4821
4822 is_special = "{}<>;&|()#'" /* special outside of "str" */
4823 "\\$\"" IF_HUSH_TICK("`"); /* always special */
4824 /* Are { and } special here? */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02004825 if (ctx.command->argv /* word [word]{... - non-special */
4826 || dest.length /* word{... - non-special */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004827 || dest.has_quoted_part /* ""{... - non-special */
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004828 || (next != ';' /* }; - special */
4829 && next != ')' /* }) - special */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004830 && next != '(' /* {( - special */
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004831 && next != '&' /* }& and }&& ... - special */
4832 && next != '|' /* }|| ... - special */
4833 && !strchr(defifs, next) /* {word - non-special */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02004834 )
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004835 ) {
4836 /* They are not special, skip "{}" */
4837 is_special += 2;
4838 }
4839 is_special = strchr(is_special, ch);
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004840 is_blank = strchr(defifs, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004841
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004842 if (!is_special && !is_blank) { /* ordinary char */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00004843 ordinary_char:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004844 o_addQchr(&dest, ch);
4845 if ((dest.o_assignment == MAYBE_ASSIGNMENT
4846 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00004847 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004848 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00004849 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004850 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004851 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko55789c62008-06-18 16:30:42 +00004852 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004853 continue;
4854 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004855
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004856 if (is_blank) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004857 if (done_word(&dest, &ctx)) {
4858 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00004859 }
Denis Vlasenko37181682009-04-03 03:19:15 +00004860 if (ch == '\n') {
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004861 /* Is this a case when newline is simply ignored?
4862 * Some examples:
4863 * "cmd | <newline> cmd ..."
4864 * "case ... in <newline> word) ..."
4865 */
4866 if (IS_NULL_CMD(ctx.command)
4867 && dest.length == 0 && !dest.has_quoted_part
Denis Vlasenkof1736072008-07-31 10:09:26 +00004868 ) {
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004869 /* This newline can be ignored. But...
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004870 * Without check #1, interactive shell
4871 * ignores even bare <newline>,
4872 * and shows the continuation prompt:
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004873 * ps1_prompt$ <enter>
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004874 * ps2> _ <=== wrong, should be ps1
4875 * Without check #2, "cmd & <newline>"
4876 * is similarly mistreated.
4877 * (BTW, this makes "cmd & cmd"
4878 * and "cmd && cmd" non-orthogonal.
4879 * Really, ask yourself, why
4880 * "cmd && <newline>" doesn't start
4881 * cmd but waits for more input?
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02004882 * The only reason is that it might be
4883 * a "cmd1 && <nl> cmd2 &" construct,
4884 * cmd1 may need to run in BG).
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004885 */
4886 struct pipe *pi = ctx.list_head;
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004887 if (pi->num_cmds != 0 /* check #1 */
4888 && pi->followup != PIPE_BG /* check #2 */
4889 ) {
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004890 continue;
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004891 }
Denis Vlasenkof1736072008-07-31 10:09:26 +00004892 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004893 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004894 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004895 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
4896 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004897 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004898 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004899 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004900 heredoc_cnt = 0;
4901 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004902 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004903 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko240c2552009-04-03 03:45:05 +00004904 ch = ';';
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004905 /* note: if (is_blank) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004906 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004907 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004908 }
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00004909
4910 /* "cmd}" or "cmd }..." without semicolon or &:
4911 * } is an ordinary char in this case, even inside { cmd; }
4912 * Pathological example: { ""}; } should exec "}" cmd
4913 */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004914 if (ch == '}') {
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004915 if (dest.length != 0 /* word} */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004916 || dest.has_quoted_part /* ""} */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004917 ) {
4918 goto ordinary_char;
4919 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004920 if (!IS_NULL_CMD(ctx.command)) { /* cmd } */
4921 /* Generally, there should be semicolon: "cmd; }"
4922 * However, bash allows to omit it if "cmd" is
4923 * a group. Examples:
4924 * { { echo 1; } }
4925 * {(echo 1)}
4926 * { echo 0 >&2 | { echo 1; } }
4927 * { while false; do :; done }
4928 * { case a in b) ;; esac }
4929 */
4930 if (ctx.command->group)
4931 goto term_group;
4932 goto ordinary_char;
4933 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004934 if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004935 /* Can't be an end of {cmd}, skip the check */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004936 goto skip_end_trigger;
4937 /* else: } does terminate a group */
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00004938 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004939 term_group:
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004940 if (end_trigger && end_trigger == ch
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004941 && (ch != ';' || heredoc_cnt == 0)
4942#if ENABLE_HUSH_CASE
4943 && (ch != ')'
4944 || ctx.ctx_res_w != RES_MATCH
Denys Vlasenko38292b62010-09-05 14:49:40 +02004945 || (!dest.has_quoted_part && strcmp(dest.data, "esac") == 0)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004946 )
4947#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004948 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004949 if (heredoc_cnt) {
4950 /* This is technically valid:
4951 * { cat <<HERE; }; echo Ok
4952 * heredoc
4953 * heredoc
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004954 * HERE
4955 * but we don't support this.
4956 * We require heredoc to be in enclosing {}/(),
4957 * if any.
4958 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004959 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004960 goto parse_error;
4961 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004962 if (done_word(&dest, &ctx)) {
4963 goto parse_error;
4964 }
4965 done_pipe(&ctx, PIPE_SEQ);
4966 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004967 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko240c2552009-04-03 03:45:05 +00004968 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00004969 if (!HAS_KEYWORDS
Denys Vlasenko60cb48c2013-01-14 15:57:44 +01004970 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00004971 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004972 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004973#if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02004974 debug_printf_parse("as_string2 '%s'\n", ctx.as_string.data);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004975 if (pstring)
4976 *pstring = ctx.as_string.data;
4977 else
4978 o_free_unsafe(&ctx.as_string);
4979#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004980 debug_leave();
4981 debug_printf_parse("parse_stream return %p: "
4982 "end_trigger char found\n",
4983 ctx.list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004984 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004985 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004986 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004987 skip_end_trigger:
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004988 if (is_blank)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004989 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004990
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004991 /* Catch <, > before deciding whether this word is
4992 * an assignment. a=1 2>z b=2: b=2 is still assignment */
4993 switch (ch) {
4994 case '>':
4995 redir_fd = redirect_opt_num(&dest);
4996 if (done_word(&dest, &ctx)) {
4997 goto parse_error;
4998 }
4999 redir_style = REDIRECT_OVERWRITE;
5000 if (next == '>') {
5001 redir_style = REDIRECT_APPEND;
5002 ch = i_getch(input);
5003 nommu_addchr(&ctx.as_string, ch);
5004 }
5005#if 0
5006 else if (next == '(') {
5007 syntax_error(">(process) not supported");
5008 goto parse_error;
5009 }
5010#endif
5011 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5012 goto parse_error;
5013 continue; /* back to top of while (1) */
5014 case '<':
5015 redir_fd = redirect_opt_num(&dest);
5016 if (done_word(&dest, &ctx)) {
5017 goto parse_error;
5018 }
5019 redir_style = REDIRECT_INPUT;
5020 if (next == '<') {
5021 redir_style = REDIRECT_HEREDOC;
5022 heredoc_cnt++;
5023 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
5024 ch = i_getch(input);
5025 nommu_addchr(&ctx.as_string, ch);
5026 } else if (next == '>') {
5027 redir_style = REDIRECT_IO;
5028 ch = i_getch(input);
5029 nommu_addchr(&ctx.as_string, ch);
5030 }
5031#if 0
5032 else if (next == '(') {
5033 syntax_error("<(process) not supported");
5034 goto parse_error;
5035 }
5036#endif
5037 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5038 goto parse_error;
5039 continue; /* back to top of while (1) */
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01005040 case '#':
5041 if (dest.length == 0 && !dest.has_quoted_part) {
5042 /* skip "#comment" */
5043 while (1) {
5044 ch = i_peek(input);
5045 if (ch == EOF || ch == '\n')
5046 break;
5047 i_getch(input);
5048 /* note: we do not add it to &ctx.as_string */
5049 }
5050 nommu_addchr(&ctx.as_string, '\n');
5051 continue; /* back to top of while (1) */
5052 }
5053 break;
5054 case '\\':
5055 if (next == '\n') {
5056 /* It's "\<newline>" */
5057#if !BB_MMU
5058 /* Remove trailing '\' from ctx.as_string */
5059 ctx.as_string.data[--ctx.as_string.length] = '\0';
5060#endif
5061 ch = i_getch(input); /* eat it */
5062 continue; /* back to top of while (1) */
5063 }
5064 break;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005065 }
5066
5067 if (dest.o_assignment == MAYBE_ASSIGNMENT
5068 /* check that we are not in word in "a=1 2>word b=1": */
5069 && !ctx.pending_redirect
5070 ) {
5071 /* ch is a special char and thus this word
5072 * cannot be an assignment */
5073 dest.o_assignment = NOT_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02005074 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005075 }
5076
Denys Vlasenkocbfe6ad2009-08-12 19:47:44 +02005077 /* Note: nommu_addchr(&ctx.as_string, ch) is already done */
5078
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005079 switch (ch) {
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01005080 case '#': /* non-comment #: "echo a#b" etc */
5081 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005082 break;
5083 case '\\':
5084 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005085 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005086 xfunc_die();
Eric Andersen25f27032001-04-26 23:22:31 +00005087 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005088 ch = i_getch(input);
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01005089 /* note: ch != '\n' (that case does not reach this place) */
5090 o_addchr(&dest, '\\');
5091 /*nommu_addchr(&ctx.as_string, '\\'); - already done */
5092 o_addchr(&dest, ch);
5093 nommu_addchr(&ctx.as_string, ch);
5094 /* Example: echo Hello \2>file
5095 * we need to know that word 2 is quoted */
5096 dest.has_quoted_part = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005097 break;
5098 case '$':
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005099 if (!parse_dollar(&ctx.as_string, &dest, input, /*quote_mask:*/ 0)) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005100 debug_printf_parse("parse_stream parse error: "
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005101 "parse_dollar returned 0 (error)\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005102 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005103 }
Eric Andersen25f27032001-04-26 23:22:31 +00005104 break;
5105 case '\'':
Denys Vlasenko38292b62010-09-05 14:49:40 +02005106 dest.has_quoted_part = 1;
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005107 if (next == '\'' && !ctx.pending_redirect) {
5108 insert_empty_quoted_str_marker:
5109 nommu_addchr(&ctx.as_string, next);
5110 i_getch(input); /* eat second ' */
5111 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5112 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5113 } else {
5114 while (1) {
5115 ch = i_getch(input);
5116 if (ch == EOF) {
5117 syntax_error_unterm_ch('\'');
5118 goto parse_error;
5119 }
5120 nommu_addchr(&ctx.as_string, ch);
5121 if (ch == '\'')
5122 break;
5123 o_addqchr(&dest, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005124 }
Eric Andersen25f27032001-04-26 23:22:31 +00005125 }
Eric Andersen25f27032001-04-26 23:22:31 +00005126 break;
5127 case '"':
Denys Vlasenko38292b62010-09-05 14:49:40 +02005128 dest.has_quoted_part = 1;
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005129 if (next == '"' && !ctx.pending_redirect)
5130 goto insert_empty_quoted_str_marker;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005131 if (dest.o_assignment == NOT_ASSIGNMENT)
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02005132 dest.o_expflags |= EXP_FLAG_ESC_GLOB_CHARS;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005133 if (!encode_string(&ctx.as_string, &dest, input, '"', /*process_bkslash:*/ 1))
Denys Vlasenko77a7b552010-09-09 12:40:03 +02005134 goto parse_error;
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02005135 dest.o_expflags &= ~EXP_FLAG_ESC_GLOB_CHARS;
Eric Andersen25f27032001-04-26 23:22:31 +00005136 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005137#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005138 case '`': {
Denys Vlasenko60a94142011-05-13 20:57:01 +02005139 USE_FOR_NOMMU(unsigned pos;)
Denys Vlasenko2e48d532010-05-22 17:30:39 +02005140
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005141 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5142 o_addchr(&dest, '`');
Denys Vlasenko60a94142011-05-13 20:57:01 +02005143 USE_FOR_NOMMU(pos = dest.length;)
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005144 if (!add_till_backquote(&dest, input, /*in_dquote:*/ 0))
5145 goto parse_error;
Denys Vlasenko2e48d532010-05-22 17:30:39 +02005146# if !BB_MMU
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005147 o_addstr(&ctx.as_string, dest.data + pos);
5148 o_addchr(&ctx.as_string, '`');
Denys Vlasenko2e48d532010-05-22 17:30:39 +02005149# endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005150 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5151 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00005152 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005153 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005154#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005155 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005156#if ENABLE_HUSH_CASE
5157 case_semi:
5158#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005159 if (done_word(&dest, &ctx)) {
5160 goto parse_error;
5161 }
5162 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005163#if ENABLE_HUSH_CASE
5164 /* Eat multiple semicolons, detect
5165 * whether it means something special */
5166 while (1) {
5167 ch = i_peek(input);
5168 if (ch != ';')
5169 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005170 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005171 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02005172 if (ctx.ctx_res_w == RES_CASE_BODY) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005173 ctx.ctx_dsemicolon = 1;
5174 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005175 break;
5176 }
5177 }
5178#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005179 new_cmd:
5180 /* We just finished a cmd. New one may start
5181 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005182 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02005183 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Eric Andersen25f27032001-04-26 23:22:31 +00005184 break;
5185 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005186 if (done_word(&dest, &ctx)) {
5187 goto parse_error;
5188 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005189 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005190 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005191 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005192 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00005193 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005194 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00005195 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005196 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005197 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005198 if (done_word(&dest, &ctx)) {
5199 goto parse_error;
5200 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005201#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005202 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00005203 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005204#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005205 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005206 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005207 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005208 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00005209 } else {
5210 /* we could pick up a file descriptor choice here
5211 * with redirect_opt_num(), but bash doesn't do it.
5212 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005213 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00005214 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005215 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005216 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005217#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00005218 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005219 if (ctx.ctx_res_w == RES_MATCH
5220 && ctx.command->argv == NULL /* not (word|(... */
5221 && dest.length == 0 /* not word(... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02005222 && dest.has_quoted_part == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005223 ) {
5224 continue;
5225 }
5226#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005227 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005228 if (parse_group(&dest, &ctx, input, ch) != 0) {
5229 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005230 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005231 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005232 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005233#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005234 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005235 goto case_semi;
5236#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005237 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005238 /* proper use of this character is caught by end_trigger:
5239 * if we see {, we call parse_group(..., end_trigger='}')
5240 * and it will match } earlier (not here). */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005241 syntax_error_unexpected_ch(ch);
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01005242 G.last_exitcode = 2;
Denys Vlasenko9fda6092017-07-14 13:36:48 +02005243 goto parse_error2;
Eric Andersen25f27032001-04-26 23:22:31 +00005244 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005245 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005246 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005247 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005248 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005249
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005250 parse_error:
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01005251 G.last_exitcode = 1;
Denys Vlasenko9fda6092017-07-14 13:36:48 +02005252 parse_error2:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005253 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005254 struct parse_context *pctx;
5255 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005256
5257 /* Clean up allocated tree.
Denys Vlasenko764b2f02009-06-07 16:05:04 +02005258 * Sample for finding leaks on syntax error recovery path.
5259 * Run it from interactive shell, watch pmap `pidof hush`.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005260 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00005261 * Samples to catch leaks at execution:
Denys Vlasenko5d5a6112016-11-07 19:36:50 +01005262 * while if (true | { true;}); then echo ok; fi; do break; done
5263 * 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 +00005264 */
5265 pctx = &ctx;
5266 do {
5267 /* Update pipe/command counts,
5268 * otherwise freeing may miss some */
5269 done_pipe(pctx, PIPE_SEQ);
5270 debug_printf_clean("freeing list %p from ctx %p\n",
5271 pctx->list_head, pctx);
5272 debug_print_tree(pctx->list_head, 0);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005273 free_pipe_list(pctx->list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005274 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005275#if !BB_MMU
5276 o_free_unsafe(&pctx->as_string);
5277#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005278 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005279 if (pctx != &ctx) {
5280 free(pctx);
5281 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005282 IF_HAS_KEYWORDS(pctx = p2;)
5283 } while (HAS_KEYWORDS && pctx);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005284
Denys Vlasenkoa439fa92011-03-30 19:11:46 +02005285 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005286#if !BB_MMU
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005287 if (pstring)
5288 *pstring = NULL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005289#endif
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005290 debug_leave();
5291 return ERR_PTR;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005292 }
Eric Andersen25f27032001-04-26 23:22:31 +00005293}
5294
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005295
5296/*** Execution routines ***/
5297
5298/* Expansion can recurse, need forward decls: */
Denys Vlasenko637982f2017-07-06 01:52:23 +02005299#if !BASH_PATTERN_SUBST && !ENABLE_HUSH_CASE
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005300/* only ${var/pattern/repl} (its pattern part) needs additional mode */
5301#define expand_string_to_string(str, do_unbackslash) \
5302 expand_string_to_string(str)
5303#endif
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005304static char *expand_string_to_string(const char *str, int do_unbackslash);
Denys Vlasenko26777aa2010-11-22 23:49:10 +01005305#if ENABLE_HUSH_TICK
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005306static int process_command_subs(o_string *dest, const char *s);
Denys Vlasenko26777aa2010-11-22 23:49:10 +01005307#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005308
5309/* expand_strvec_to_strvec() takes a list of strings, expands
5310 * all variable references within and returns a pointer to
5311 * a list of expanded strings, possibly with larger number
5312 * of strings. (Think VAR="a b"; echo $VAR).
5313 * This new list is allocated as a single malloc block.
5314 * NULL-terminated list of char* pointers is at the beginning of it,
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005315 * followed by strings themselves.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005316 * Caller can deallocate entire list by single free(list). */
5317
Denys Vlasenko238081f2010-10-03 14:26:26 +02005318/* A horde of its helpers come first: */
5319
5320static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
5321{
5322 while (--len >= 0) {
Denys Vlasenko9e800222010-10-03 14:28:04 +02005323 char c = *str++;
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005324
Denys Vlasenko9e800222010-10-03 14:28:04 +02005325#if ENABLE_HUSH_BRACE_EXPANSION
5326 if (c == '{' || c == '}') {
5327 /* { -> \{, } -> \} */
5328 o_addchr(o, '\\');
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005329 /* And now we want to add { or } and continue:
5330 * o_addchr(o, c);
5331 * continue;
Denys Vlasenko10ad6222017-04-17 16:13:32 +02005332 * luckily, just falling through achieves this.
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005333 */
Denys Vlasenko9e800222010-10-03 14:28:04 +02005334 }
5335#endif
5336 o_addchr(o, c);
5337 if (c == '\\') {
Denys Vlasenko238081f2010-10-03 14:26:26 +02005338 /* \z -> \\\z; \<eol> -> \\<eol> */
5339 o_addchr(o, '\\');
5340 if (len) {
5341 len--;
5342 o_addchr(o, '\\');
5343 o_addchr(o, *str++);
5344 }
5345 }
5346 }
5347}
5348
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005349/* Store given string, finalizing the word and starting new one whenever
5350 * we encounter IFS char(s). This is used for expanding variable values.
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005351 * End-of-string does NOT finalize word: think about 'echo -$VAR-'.
5352 * Return in *ended_with_ifs:
5353 * 1 - ended with IFS char, else 0 (this includes case of empty str).
5354 */
5355static int expand_on_ifs(int *ended_with_ifs, o_string *output, int n, const char *str)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005356{
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005357 int last_is_ifs = 0;
5358
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005359 while (1) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005360 int word_len;
5361
5362 if (!*str) /* EOL - do not finalize word */
5363 break;
5364 word_len = strcspn(str, G.ifs);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005365 if (word_len) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005366 /* We have WORD_LEN leading non-IFS chars */
Denys Vlasenko238081f2010-10-03 14:26:26 +02005367 if (!(output->o_expflags & EXP_FLAG_GLOB)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005368 o_addblock(output, str, word_len);
Denys Vlasenko238081f2010-10-03 14:26:26 +02005369 } else {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005370 /* Protect backslashes against globbing up :)
Denys Vlasenkoa769e022010-09-10 10:12:34 +02005371 * Example: "v='\*'; echo b$v" prints "b\*"
5372 * (and does not try to glob on "*")
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005373 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005374 o_addblock_duplicate_backslash(output, str, word_len);
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005375 /*/ Why can't we do it easier? */
5376 /*o_addblock(output, str, word_len); - WRONG: "v='\*'; echo Z$v" prints "Z*" instead of "Z\*" */
5377 /*o_addqblock(output, str, word_len); - WRONG: "v='*'; echo Z$v" prints "Z*" instead of Z* files */
5378 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005379 last_is_ifs = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005380 str += word_len;
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005381 if (!*str) /* EOL - do not finalize word */
5382 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005383 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005384
5385 /* We know str here points to at least one IFS char */
5386 last_is_ifs = 1;
5387 str += strspn(str, G.ifs); /* skip IFS chars */
5388 if (!*str) /* EOL - do not finalize word */
5389 break;
5390
5391 /* Start new word... but not always! */
5392 /* Case "v=' a'; echo ''$v": we do need to finalize empty word: */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005393 if (output->has_quoted_part
5394 /* Case "v=' a'; echo $v":
5395 * here nothing precedes the space in $v expansion,
5396 * therefore we should not finish the word
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005397 * (IOW: if there *is* word to finalize, only then do it):
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005398 */
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005399 || (n > 0 && output->data[output->length - 1])
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005400 ) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005401 o_addchr(output, '\0');
5402 debug_print_list("expand_on_ifs", output, n);
5403 n = o_save_ptr(output, n);
5404 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005405 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005406
5407 if (ended_with_ifs)
5408 *ended_with_ifs = last_is_ifs;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005409 debug_print_list("expand_on_ifs[1]", output, n);
5410 return n;
5411}
5412
5413/* Helper to expand $((...)) and heredoc body. These act as if
5414 * they are in double quotes, with the exception that they are not :).
5415 * Just the rules are similar: "expand only $var and `cmd`"
5416 *
5417 * Returns malloced string.
5418 * As an optimization, we return NULL if expansion is not needed.
5419 */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005420#if !BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005421/* only ${var/pattern/repl} (its pattern part) needs additional mode */
5422#define encode_then_expand_string(str, process_bkslash, do_unbackslash) \
5423 encode_then_expand_string(str)
5424#endif
5425static char *encode_then_expand_string(const char *str, int process_bkslash, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005426{
Denys Vlasenko637982f2017-07-06 01:52:23 +02005427#if !BASH_PATTERN_SUBST
5428 const int do_unbackslash = 1;
5429#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005430 char *exp_str;
5431 struct in_str input;
5432 o_string dest = NULL_O_STRING;
5433
5434 if (!strchr(str, '$')
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02005435 && !strchr(str, '\\')
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005436#if ENABLE_HUSH_TICK
5437 && !strchr(str, '`')
5438#endif
5439 ) {
5440 return NULL;
5441 }
5442
5443 /* We need to expand. Example:
5444 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
5445 */
5446 setup_string_in_str(&input, str);
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005447 encode_string(NULL, &dest, &input, EOF, process_bkslash);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005448//TODO: error check (encode_string returns 0 on error)?
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005449 //bb_error_msg("'%s' -> '%s'", str, dest.data);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005450 exp_str = expand_string_to_string(dest.data, /*unbackslash:*/ do_unbackslash);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005451 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
5452 o_free_unsafe(&dest);
5453 return exp_str;
5454}
5455
Denys Vlasenko0b883582016-12-23 16:49:07 +01005456#if ENABLE_FEATURE_SH_MATH
Denys Vlasenko063847d2010-09-15 13:33:02 +02005457static arith_t expand_and_evaluate_arith(const char *arg, const char **errmsg_p)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005458{
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005459 arith_state_t math_state;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005460 arith_t res;
5461 char *exp_str;
5462
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005463 math_state.lookupvar = get_local_var_value;
5464 math_state.setvar = set_local_var_from_halves;
5465 //math_state.endofname = endofname;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005466 exp_str = encode_then_expand_string(arg, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005467 res = arith(&math_state, exp_str ? exp_str : arg);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005468 free(exp_str);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005469 if (errmsg_p)
5470 *errmsg_p = math_state.errmsg;
5471 if (math_state.errmsg)
5472 die_if_script(math_state.errmsg);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005473 return res;
5474}
5475#endif
5476
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005477#if BASH_PATTERN_SUBST
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005478/* ${var/[/]pattern[/repl]} helpers */
5479static char *strstr_pattern(char *val, const char *pattern, int *size)
5480{
5481 while (1) {
5482 char *end = scan_and_match(val, pattern, SCAN_MOVE_FROM_RIGHT + SCAN_MATCH_LEFT_HALF);
5483 debug_printf_varexp("val:'%s' pattern:'%s' end:'%s'\n", val, pattern, end);
5484 if (end) {
5485 *size = end - val;
5486 return val;
5487 }
5488 if (*val == '\0')
5489 return NULL;
5490 /* Optimization: if "*pat" did not match the start of "string",
5491 * we know that "tring", "ring" etc will not match too:
5492 */
5493 if (pattern[0] == '*')
5494 return NULL;
5495 val++;
5496 }
5497}
5498static char *replace_pattern(char *val, const char *pattern, const char *repl, char exp_op)
5499{
5500 char *result = NULL;
5501 unsigned res_len = 0;
5502 unsigned repl_len = strlen(repl);
5503
5504 while (1) {
5505 int size;
5506 char *s = strstr_pattern(val, pattern, &size);
5507 if (!s)
5508 break;
5509
5510 result = xrealloc(result, res_len + (s - val) + repl_len + 1);
5511 memcpy(result + res_len, val, s - val);
5512 res_len += s - val;
5513 strcpy(result + res_len, repl);
5514 res_len += repl_len;
5515 debug_printf_varexp("val:'%s' s:'%s' result:'%s'\n", val, s, result);
5516
5517 val = s + size;
5518 if (exp_op == '/')
5519 break;
5520 }
5521 if (val[0] && result) {
5522 result = xrealloc(result, res_len + strlen(val) + 1);
5523 strcpy(result + res_len, val);
5524 debug_printf_varexp("val:'%s' result:'%s'\n", val, result);
5525 }
5526 debug_printf_varexp("result:'%s'\n", result);
5527 return result;
5528}
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005529#endif /* BASH_PATTERN_SUBST */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005530
5531/* Helper:
5532 * Handles <SPECIAL_VAR_SYMBOL>varname...<SPECIAL_VAR_SYMBOL> construct.
5533 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005534static NOINLINE const char *expand_one_var(char **to_be_freed_pp, char *arg, char **pp)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005535{
5536 const char *val = NULL;
5537 char *to_be_freed = NULL;
5538 char *p = *pp;
5539 char *var;
5540 char first_char;
5541 char exp_op;
5542 char exp_save = exp_save; /* for compiler */
5543 char *exp_saveptr; /* points to expansion operator */
5544 char *exp_word = exp_word; /* for compiler */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005545 char arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005546
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005547 *p = '\0'; /* replace trailing SPECIAL_VAR_SYMBOL */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005548 var = arg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005549 exp_saveptr = arg[1] ? strchr(VAR_ENCODED_SUBST_OPS, arg[1]) : NULL;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005550 arg0 = arg[0];
5551 first_char = arg[0] = arg0 & 0x7f;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005552 exp_op = 0;
5553
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005554 if (first_char == '#' /* ${#... */
5555 && arg[1] && !exp_saveptr /* not ${#} and not ${#<op_char>...} */
5556 ) {
5557 /* It must be length operator: ${#var} */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005558 var++;
5559 exp_op = 'L';
5560 } else {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005561 /* Maybe handle parameter expansion */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005562 if (exp_saveptr /* if 2nd char is one of expansion operators */
5563 && strchr(NUMERIC_SPECVARS_STR, first_char) /* 1st char is special variable */
5564 ) {
5565 /* ${?:0}, ${#[:]%0} etc */
5566 exp_saveptr = var + 1;
5567 } else {
5568 /* ${?}, ${var}, ${var:0}, ${var[:]%0} etc */
5569 exp_saveptr = var+1 + strcspn(var+1, VAR_ENCODED_SUBST_OPS);
5570 }
5571 exp_op = exp_save = *exp_saveptr;
5572 if (exp_op) {
5573 exp_word = exp_saveptr + 1;
5574 if (exp_op == ':') {
5575 exp_op = *exp_word++;
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005576//TODO: try ${var:} and ${var:bogus} in non-bash config
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005577 if (BASH_SUBSTR
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005578 && (!exp_op || !strchr(MINUS_PLUS_EQUAL_QUESTION, exp_op))
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005579 ) {
5580 /* oops... it's ${var:N[:M]}, not ${var:?xxx} or some such */
5581 exp_op = ':';
5582 exp_word--;
5583 }
5584 }
5585 *exp_saveptr = '\0';
5586 } /* else: it's not an expansion op, but bare ${var} */
5587 }
5588
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005589 /* Look up the variable in question */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005590 if (isdigit(var[0])) {
Denys Vlasenko77a7b552010-09-09 12:40:03 +02005591 /* parse_dollar should have vetted var for us */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005592 int n = xatoi_positive(var);
5593 if (n < G.global_argc)
5594 val = G.global_argv[n];
5595 /* else val remains NULL: $N with too big N */
5596 } else {
5597 switch (var[0]) {
5598 case '$': /* pid */
5599 val = utoa(G.root_pid);
5600 break;
5601 case '!': /* bg pid */
5602 val = G.last_bg_pid ? utoa(G.last_bg_pid) : "";
5603 break;
5604 case '?': /* exitcode */
5605 val = utoa(G.last_exitcode);
5606 break;
5607 case '#': /* argc */
5608 val = utoa(G.global_argc ? G.global_argc-1 : 0);
5609 break;
5610 default:
5611 val = get_local_var_value(var);
5612 }
5613 }
5614
5615 /* Handle any expansions */
5616 if (exp_op == 'L') {
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02005617 reinit_unicode_for_hush();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005618 debug_printf_expand("expand: length(%s)=", val);
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02005619 val = utoa(val ? unicode_strlen(val) : 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005620 debug_printf_expand("%s\n", val);
5621 } else if (exp_op) {
5622 if (exp_op == '%' || exp_op == '#') {
5623 /* Standard-mandated substring removal ops:
5624 * ${parameter%word} - remove smallest suffix pattern
5625 * ${parameter%%word} - remove largest suffix pattern
5626 * ${parameter#word} - remove smallest prefix pattern
5627 * ${parameter##word} - remove largest prefix pattern
5628 *
5629 * Word is expanded to produce a glob pattern.
5630 * Then var's value is matched to it and matching part removed.
5631 */
5632 if (val && val[0]) {
Denys Vlasenko4f870492010-09-10 11:06:01 +02005633 char *t;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005634 char *exp_exp_word;
5635 char *loc;
5636 unsigned scan_flags = pick_scan(exp_op, *exp_word);
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02005637 if (exp_op == *exp_word) /* ## or %% */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005638 exp_word++;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005639 exp_exp_word = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005640 if (exp_exp_word)
5641 exp_word = exp_exp_word;
Denys Vlasenko4f870492010-09-10 11:06:01 +02005642 /* HACK ALERT. We depend here on the fact that
5643 * G.global_argv and results of utoa and get_local_var_value
5644 * are actually in writable memory:
5645 * scan_and_match momentarily stores NULs there. */
5646 t = (char*)val;
5647 loc = scan_and_match(t, exp_word, scan_flags);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005648 //bb_error_msg("op:%c str:'%s' pat:'%s' res:'%s'",
Denys Vlasenko4f870492010-09-10 11:06:01 +02005649 // exp_op, t, exp_word, loc);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005650 free(exp_exp_word);
5651 if (loc) { /* match was found */
5652 if (scan_flags & SCAN_MATCH_LEFT_HALF) /* #[#] */
Denys Vlasenko4f870492010-09-10 11:06:01 +02005653 val = loc; /* take right part */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005654 else /* %[%] */
Denys Vlasenko4f870492010-09-10 11:06:01 +02005655 val = to_be_freed = xstrndup(val, loc - val); /* left */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005656 }
5657 }
5658 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005659#if BASH_PATTERN_SUBST
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005660 else if (exp_op == '/' || exp_op == '\\') {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005661 /* It's ${var/[/]pattern[/repl]} thing.
5662 * Note that in encoded form it has TWO parts:
5663 * var/pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
Denys Vlasenko4f870492010-09-10 11:06:01 +02005664 * and if // is used, it is encoded as \:
5665 * var\pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005666 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005667 /* Empty variable always gives nothing: */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005668 // "v=''; echo ${v/*/w}" prints "", not "w"
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005669 if (val && val[0]) {
Denys Vlasenko4f870492010-09-10 11:06:01 +02005670 /* pattern uses non-standard expansion.
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005671 * repl should be unbackslashed and globbed
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005672 * by the usual expansion rules:
5673 * >az; >bz;
5674 * v='a bz'; echo "${v/a*z/a*z}" prints "a*z"
5675 * v='a bz'; echo "${v/a*z/\z}" prints "\z"
5676 * v='a bz'; echo ${v/a*z/a*z} prints "az"
5677 * v='a bz'; echo ${v/a*z/\z} prints "z"
5678 * (note that a*z _pattern_ is never globbed!)
5679 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005680 char *pattern, *repl, *t;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005681 pattern = encode_then_expand_string(exp_word, /*process_bkslash:*/ 0, /*unbackslash:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005682 if (!pattern)
5683 pattern = xstrdup(exp_word);
5684 debug_printf_varexp("pattern:'%s'->'%s'\n", exp_word, pattern);
5685 *p++ = SPECIAL_VAR_SYMBOL;
5686 exp_word = p;
5687 p = strchr(p, SPECIAL_VAR_SYMBOL);
5688 *p = '\0';
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005689 repl = encode_then_expand_string(exp_word, /*process_bkslash:*/ arg0 & 0x80, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005690 debug_printf_varexp("repl:'%s'->'%s'\n", exp_word, repl);
5691 /* HACK ALERT. We depend here on the fact that
5692 * G.global_argv and results of utoa and get_local_var_value
5693 * are actually in writable memory:
5694 * replace_pattern momentarily stores NULs there. */
5695 t = (char*)val;
5696 to_be_freed = replace_pattern(t,
5697 pattern,
5698 (repl ? repl : exp_word),
5699 exp_op);
5700 if (to_be_freed) /* at least one replace happened */
5701 val = to_be_freed;
5702 free(pattern);
5703 free(repl);
5704 }
5705 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005706#endif /* BASH_PATTERN_SUBST */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005707 else if (exp_op == ':') {
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005708#if BASH_SUBSTR && ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005709 /* It's ${var:N[:M]} bashism.
5710 * Note that in encoded form it has TWO parts:
5711 * var:N<SPECIAL_VAR_SYMBOL>M<SPECIAL_VAR_SYMBOL>
5712 */
5713 arith_t beg, len;
Denys Vlasenko063847d2010-09-15 13:33:02 +02005714 const char *errmsg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005715
Denys Vlasenko063847d2010-09-15 13:33:02 +02005716 beg = expand_and_evaluate_arith(exp_word, &errmsg);
5717 if (errmsg)
5718 goto arith_err;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005719 debug_printf_varexp("beg:'%s'=%lld\n", exp_word, (long long)beg);
5720 *p++ = SPECIAL_VAR_SYMBOL;
5721 exp_word = p;
5722 p = strchr(p, SPECIAL_VAR_SYMBOL);
5723 *p = '\0';
Denys Vlasenko063847d2010-09-15 13:33:02 +02005724 len = expand_and_evaluate_arith(exp_word, &errmsg);
5725 if (errmsg)
5726 goto arith_err;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005727 debug_printf_varexp("len:'%s'=%lld\n", exp_word, (long long)len);
Denys Vlasenkoe32b6502017-07-17 16:46:57 +02005728 if (beg < 0) {
5729 /* negative beg counts from the end */
5730 beg = (arith_t)strlen(val) + beg;
5731 if (beg < 0) /* ${v: -999999} is "" */
5732 beg = len = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005733 }
Denys Vlasenkoe32b6502017-07-17 16:46:57 +02005734 debug_printf_varexp("from val:'%s'\n", val);
5735 if (len < 0) {
5736 /* in bash, len=-n means strlen()-n */
5737 len = (arith_t)strlen(val) - beg + len;
5738 if (len < 0) /* bash compat */
5739 die_if_script("%s: substring expression < 0", var);
5740 }
Denys Vlasenko0ba80e42017-07-17 16:50:20 +02005741 if (len <= 0 || !val || beg >= strlen(val)) {
Denys Vlasenkoe32b6502017-07-17 16:46:57 +02005742 arith_err:
5743 val = NULL;
5744 } else {
5745 /* Paranoia. What if user entered 9999999999999
5746 * which fits in arith_t but not int? */
5747 if (len >= INT_MAX)
5748 len = INT_MAX;
5749 val = to_be_freed = xstrndup(val + beg, len);
5750 }
5751 debug_printf_varexp("val:'%s'\n", val);
5752#else /* not (HUSH_SUBSTR_EXPANSION && FEATURE_SH_MATH) */
5753 die_if_script("malformed ${%s:...}", var);
5754 val = NULL;
5755#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005756 } else { /* one of "-=+?" */
5757 /* Standard-mandated substitution ops:
5758 * ${var?word} - indicate error if unset
5759 * If var is unset, word (or a message indicating it is unset
5760 * if word is null) is written to standard error
5761 * and the shell exits with a non-zero exit status.
5762 * Otherwise, the value of var is substituted.
5763 * ${var-word} - use default value
5764 * If var is unset, word is substituted.
5765 * ${var=word} - assign and use default value
5766 * If var is unset, word is assigned to var.
5767 * In all cases, final value of var is substituted.
5768 * ${var+word} - use alternative value
5769 * If var is unset, null is substituted.
5770 * Otherwise, word is substituted.
5771 *
5772 * Word is subjected to tilde expansion, parameter expansion,
5773 * command substitution, and arithmetic expansion.
5774 * If word is not needed, it is not expanded.
5775 *
5776 * Colon forms (${var:-word}, ${var:=word} etc) do the same,
5777 * but also treat null var as if it is unset.
5778 */
5779 int use_word = (!val || ((exp_save == ':') && !val[0]));
5780 if (exp_op == '+')
5781 use_word = !use_word;
5782 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
5783 (exp_save == ':') ? "true" : "false", use_word);
5784 if (use_word) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005785 to_be_freed = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005786 if (to_be_freed)
5787 exp_word = to_be_freed;
5788 if (exp_op == '?') {
5789 /* mimic bash message */
5790 die_if_script("%s: %s",
5791 var,
5792 exp_word[0] ? exp_word : "parameter null or not set"
5793 );
5794//TODO: how interactive bash aborts expansion mid-command?
5795 } else {
5796 val = exp_word;
5797 }
5798
5799 if (exp_op == '=') {
5800 /* ${var=[word]} or ${var:=[word]} */
5801 if (isdigit(var[0]) || var[0] == '#') {
5802 /* mimic bash message */
5803 die_if_script("$%s: cannot assign in this way", var);
5804 val = NULL;
5805 } else {
5806 char *new_var = xasprintf("%s=%s", var, val);
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02005807 set_local_var(new_var, /*flag:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005808 }
5809 }
5810 }
5811 } /* one of "-=+?" */
5812
5813 *exp_saveptr = exp_save;
5814 } /* if (exp_op) */
5815
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005816 arg[0] = arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005817
5818 *pp = p;
5819 *to_be_freed_pp = to_be_freed;
5820 return val;
5821}
5822
5823/* Expand all variable references in given string, adding words to list[]
5824 * at n, n+1,... positions. Return updated n (so that list[n] is next one
5825 * to be filled). This routine is extremely tricky: has to deal with
5826 * variables/parameters with whitespace, $* and $@, and constructs like
5827 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005828static NOINLINE int expand_vars_to_list(o_string *output, int n, char *arg)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005829{
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005830 /* output->o_expflags & EXP_FLAG_SINGLEWORD (0x80) if we are in
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005831 * expansion of right-hand side of assignment == 1-element expand.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005832 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005833 char cant_be_null = 0; /* only bit 0x80 matters */
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005834 int ended_in_ifs = 0; /* did last unquoted expansion end with IFS chars? */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005835 char *p;
5836
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005837 debug_printf_expand("expand_vars_to_list: arg:'%s' singleword:%x\n", arg,
5838 !!(output->o_expflags & EXP_FLAG_SINGLEWORD));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005839 debug_print_list("expand_vars_to_list", output, n);
5840 n = o_save_ptr(output, n);
5841 debug_print_list("expand_vars_to_list[0]", output, n);
5842
5843 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
5844 char first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005845 char *to_be_freed = NULL;
5846 const char *val = NULL;
5847#if ENABLE_HUSH_TICK
5848 o_string subst_result = NULL_O_STRING;
5849#endif
Denys Vlasenko0b883582016-12-23 16:49:07 +01005850#if ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005851 char arith_buf[sizeof(arith_t)*3 + 2];
5852#endif
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005853
5854 if (ended_in_ifs) {
5855 o_addchr(output, '\0');
5856 n = o_save_ptr(output, n);
5857 ended_in_ifs = 0;
5858 }
5859
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005860 o_addblock(output, arg, p - arg);
5861 debug_print_list("expand_vars_to_list[1]", output, n);
5862 arg = ++p;
5863 p = strchr(p, SPECIAL_VAR_SYMBOL);
5864
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005865 /* Fetch special var name (if it is indeed one of them)
5866 * and quote bit, force the bit on if singleword expansion -
5867 * important for not getting v=$@ expand to many words. */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005868 first_ch = arg[0] | (output->o_expflags & EXP_FLAG_SINGLEWORD);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005869
5870 /* Is this variable quoted and thus expansion can't be null?
5871 * "$@" is special. Even if quoted, it can still
5872 * expand to nothing (not even an empty string),
5873 * thus it is excluded. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005874 if ((first_ch & 0x7f) != '@')
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005875 cant_be_null |= first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005876
5877 switch (first_ch & 0x7f) {
5878 /* Highest bit in first_ch indicates that var is double-quoted */
5879 case '*':
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005880 case '@': {
5881 int i;
5882 if (!G.global_argv[1])
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005883 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005884 i = 1;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005885 cant_be_null |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005886 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005887 while (G.global_argv[i]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005888 n = expand_on_ifs(NULL, output, n, G.global_argv[i]);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005889 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
5890 if (G.global_argv[i++][0] && G.global_argv[i]) {
5891 /* this argv[] is not empty and not last:
5892 * put terminating NUL, start new word */
5893 o_addchr(output, '\0');
5894 debug_print_list("expand_vars_to_list[2]", output, n);
5895 n = o_save_ptr(output, n);
5896 debug_print_list("expand_vars_to_list[3]", output, n);
5897 }
5898 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005899 } else
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005900 /* If EXP_FLAG_SINGLEWORD, we handle assignment 'a=....$@.....'
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005901 * and in this case should treat it like '$*' - see 'else...' below */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005902 if (first_ch == ('@'|0x80) /* quoted $@ */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005903 && !(output->o_expflags & EXP_FLAG_SINGLEWORD) /* not v="$@" case */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005904 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005905 while (1) {
5906 o_addQstr(output, G.global_argv[i]);
5907 if (++i >= G.global_argc)
5908 break;
5909 o_addchr(output, '\0');
5910 debug_print_list("expand_vars_to_list[4]", output, n);
5911 n = o_save_ptr(output, n);
5912 }
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005913 } else { /* quoted $* (or v="$@" case): add as one word */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005914 while (1) {
5915 o_addQstr(output, G.global_argv[i]);
5916 if (!G.global_argv[++i])
5917 break;
5918 if (G.ifs[0])
5919 o_addchr(output, G.ifs[0]);
5920 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005921 output->has_quoted_part = 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005922 }
5923 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005924 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005925 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
5926 /* "Empty variable", used to make "" etc to not disappear */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005927 output->has_quoted_part = 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005928 arg++;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005929 cant_be_null = 0x80;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005930 break;
5931#if ENABLE_HUSH_TICK
5932 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005933 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005934 arg++;
5935 /* Can't just stuff it into output o_string,
5936 * expanded result may need to be globbed
Denys Vlasenko10ad6222017-04-17 16:13:32 +02005937 * and $IFS-split */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005938 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
5939 G.last_exitcode = process_command_subs(&subst_result, arg);
5940 debug_printf_subst("SUBST RES:%d '%s'\n", G.last_exitcode, subst_result.data);
5941 val = subst_result.data;
5942 goto store_val;
5943#endif
Denys Vlasenko0b883582016-12-23 16:49:07 +01005944#if ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005945 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
5946 arith_t res;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005947
5948 arg++; /* skip '+' */
5949 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
5950 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005951 res = expand_and_evaluate_arith(arg, NULL);
Denys Vlasenkobed7c812010-09-16 11:50:46 +02005952 debug_printf_subst("ARITH RES '"ARITH_FMT"'\n", res);
5953 sprintf(arith_buf, ARITH_FMT, res);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005954 val = arith_buf;
5955 break;
5956 }
5957#endif
5958 default:
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005959 val = expand_one_var(&to_be_freed, arg, &p);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005960 IF_HUSH_TICK(store_val:)
5961 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005962 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val,
5963 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005964 if (val && val[0]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005965 n = expand_on_ifs(&ended_in_ifs, output, n, val);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005966 val = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005967 }
5968 } else { /* quoted $VAR, val will be appended below */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005969 output->has_quoted_part = 1;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005970 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val,
5971 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005972 }
5973 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005974 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
5975
5976 if (val && val[0]) {
5977 o_addQstr(output, val);
5978 }
5979 free(to_be_freed);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005980
5981 /* Restore NULL'ed SPECIAL_VAR_SYMBOL.
5982 * Do the check to avoid writing to a const string. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005983 if (*p != SPECIAL_VAR_SYMBOL)
5984 *p = SPECIAL_VAR_SYMBOL;
5985
5986#if ENABLE_HUSH_TICK
5987 o_free(&subst_result);
5988#endif
5989 arg = ++p;
5990 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
5991
5992 if (arg[0]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005993 if (ended_in_ifs) {
5994 o_addchr(output, '\0');
5995 n = o_save_ptr(output, n);
5996 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005997 debug_print_list("expand_vars_to_list[a]", output, n);
5998 /* this part is literal, and it was already pre-quoted
5999 * if needed (much earlier), do not use o_addQstr here! */
6000 o_addstr_with_NUL(output, arg);
6001 debug_print_list("expand_vars_to_list[b]", output, n);
6002 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02006003 && !(cant_be_null & 0x80) /* and all vars were not quoted. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006004 ) {
6005 n--;
6006 /* allow to reuse list[n] later without re-growth */
6007 output->has_empty_slot = 1;
6008 } else {
6009 o_addchr(output, '\0');
6010 }
6011
6012 return n;
6013}
6014
Denys Vlasenko95d48f22010-09-08 13:58:55 +02006015static char **expand_variables(char **argv, unsigned expflags)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006016{
6017 int n;
6018 char **list;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006019 o_string output = NULL_O_STRING;
6020
Denys Vlasenko95d48f22010-09-08 13:58:55 +02006021 output.o_expflags = expflags;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006022
6023 n = 0;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006024 while (*argv) {
Denys Vlasenko95d48f22010-09-08 13:58:55 +02006025 n = expand_vars_to_list(&output, n, *argv);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006026 argv++;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006027 }
6028 debug_print_list("expand_variables", &output, n);
6029
6030 /* output.data (malloced in one block) gets returned in "list" */
6031 list = o_finalize_list(&output, n);
6032 debug_print_strings("expand_variables[1]", list);
6033 return list;
6034}
6035
6036static char **expand_strvec_to_strvec(char **argv)
6037{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02006038 return expand_variables(argv, EXP_FLAG_GLOB | EXP_FLAG_ESC_GLOB_CHARS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006039}
6040
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01006041#if BASH_TEST2
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006042static char **expand_strvec_to_strvec_singleword_noglob(char **argv)
6043{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02006044 return expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006045}
6046#endif
6047
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02006048/* Used for expansion of right hand of assignments,
6049 * $((...)), heredocs, variable espansion parts.
6050 *
6051 * NB: should NOT do globbing!
6052 * "export v=/bin/c*; env | grep ^v=" outputs "v=/bin/c*"
6053 */
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006054static char *expand_string_to_string(const char *str, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006055{
Denys Vlasenko637982f2017-07-06 01:52:23 +02006056#if !BASH_PATTERN_SUBST && !ENABLE_HUSH_CASE
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02006057 const int do_unbackslash = 1;
6058#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006059 char *argv[2], **list;
6060
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006061 debug_printf_expand("string_to_string<='%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006062 /* This is generally an optimization, but it also
6063 * handles "", which otherwise trips over !list[0] check below.
6064 * (is this ever happens that we actually get str="" here?)
6065 */
6066 if (!strchr(str, SPECIAL_VAR_SYMBOL) && !strchr(str, '\\')) {
6067 //TODO: Can use on strings with \ too, just unbackslash() them?
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006068 debug_printf_expand("string_to_string(fast)=>'%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006069 return xstrdup(str);
6070 }
6071
6072 argv[0] = (char*)str;
6073 argv[1] = NULL;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006074 list = expand_variables(argv, do_unbackslash
6075 ? EXP_FLAG_ESC_GLOB_CHARS | EXP_FLAG_SINGLEWORD
6076 : EXP_FLAG_SINGLEWORD
6077 );
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006078 if (HUSH_DEBUG)
6079 if (!list[0] || list[1])
6080 bb_error_msg_and_die("BUG in varexp2");
6081 /* actually, just move string 2*sizeof(char*) bytes back */
6082 overlapping_strcpy((char*)list, list[0]);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006083 if (do_unbackslash)
6084 unbackslash((char*)list);
6085 debug_printf_expand("string_to_string=>'%s'\n", (char*)list);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006086 return (char*)list;
6087}
6088
Denys Vlasenkobd43c672017-07-05 23:12:15 +02006089/* Used for "eval" builtin and case string */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006090static char* expand_strvec_to_string(char **argv)
6091{
6092 char **list;
6093
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02006094 list = expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006095 /* Convert all NULs to spaces */
6096 if (list[0]) {
6097 int n = 1;
6098 while (list[n]) {
6099 if (HUSH_DEBUG)
6100 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
6101 bb_error_msg_and_die("BUG in varexp3");
6102 /* bash uses ' ' regardless of $IFS contents */
6103 list[n][-1] = ' ';
6104 n++;
6105 }
6106 }
Denys Vlasenko78c9c732016-09-29 01:44:17 +02006107 overlapping_strcpy((char*)list, list[0] ? list[0] : "");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006108 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
6109 return (char*)list;
6110}
6111
6112static char **expand_assignments(char **argv, int count)
6113{
6114 int i;
6115 char **p;
6116
6117 G.expanded_assignments = p = NULL;
6118 /* Expand assignments into one string each */
6119 for (i = 0; i < count; i++) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006120 G.expanded_assignments = p = add_string_to_strings(p, expand_string_to_string(argv[i], /*unbackslash:*/ 1));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006121 }
6122 G.expanded_assignments = NULL;
6123 return p;
6124}
6125
6126
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006127static void switch_off_special_sigs(unsigned mask)
6128{
6129 unsigned sig = 0;
6130 while ((mask >>= 1) != 0) {
6131 sig++;
6132 if (!(mask & 1))
6133 continue;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006134#if ENABLE_HUSH_TRAP
6135 if (G_traps) {
6136 if (G_traps[sig] && !G_traps[sig][0])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006137 /* trap is '', has to remain SIG_IGN */
6138 continue;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006139 free(G_traps[sig]);
6140 G_traps[sig] = NULL;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006141 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006142#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006143 /* We are here only if no trap or trap was not '' */
Denys Vlasenko0806e402011-05-12 23:06:20 +02006144 install_sighandler(sig, SIG_DFL);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006145 }
6146}
6147
Denys Vlasenkob347df92011-08-09 22:49:15 +02006148#if BB_MMU
6149/* never called */
6150void re_execute_shell(char ***to_free, const char *s,
6151 char *g_argv0, char **g_argv,
6152 char **builtin_argv) NORETURN;
6153
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006154static void reset_traps_to_defaults(void)
6155{
6156 /* This function is always called in a child shell
6157 * after fork (not vfork, NOMMU doesn't use this function).
6158 */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006159 IF_HUSH_TRAP(unsigned sig;)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006160 unsigned mask;
6161
6162 /* Child shells are not interactive.
6163 * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
6164 * Testcase: (while :; do :; done) + ^Z should background.
6165 * Same goes for SIGTERM, SIGHUP, SIGINT.
6166 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006167 mask = (G.special_sig_mask & SPECIAL_INTERACTIVE_SIGS) | G_fatal_sig_mask;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006168 if (!G_traps && !mask)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006169 return; /* already no traps and no special sigs */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006170
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006171 /* Switch off special sigs */
6172 switch_off_special_sigs(mask);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006173# if ENABLE_HUSH_JOB
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006174 G_fatal_sig_mask = 0;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006175# endif
Denys Vlasenko10c01312011-05-11 11:49:21 +02006176 G.special_sig_mask &= ~SPECIAL_INTERACTIVE_SIGS;
Denys Vlasenkof58f7052011-05-12 02:10:33 +02006177 /* SIGQUIT,SIGCHLD and maybe SPECIAL_JOBSTOP_SIGS
6178 * remain set in G.special_sig_mask */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006179
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006180# if ENABLE_HUSH_TRAP
6181 if (!G_traps)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006182 return;
6183
6184 /* Reset all sigs to default except ones with empty traps */
6185 for (sig = 0; sig < NSIG; sig++) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006186 if (!G_traps[sig])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006187 continue; /* no trap: nothing to do */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006188 if (!G_traps[sig][0])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006189 continue; /* empty trap: has to remain SIG_IGN */
6190 /* sig has non-empty trap, reset it: */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006191 free(G_traps[sig]);
6192 G_traps[sig] = NULL;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006193 /* There is no signal for trap 0 (EXIT) */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006194 if (sig == 0)
6195 continue;
Denys Vlasenko0806e402011-05-12 23:06:20 +02006196 install_sighandler(sig, pick_sighandler(sig));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006197 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006198# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006199}
6200
6201#else /* !BB_MMU */
6202
6203static void re_execute_shell(char ***to_free, const char *s,
6204 char *g_argv0, char **g_argv,
6205 char **builtin_argv) NORETURN;
6206static void re_execute_shell(char ***to_free, const char *s,
6207 char *g_argv0, char **g_argv,
6208 char **builtin_argv)
6209{
6210# define NOMMU_HACK_FMT ("-$%x:%x:%x:%x:%x:%llx" IF_HUSH_LOOPS(":%x"))
6211 /* delims + 2 * (number of bytes in printed hex numbers) */
6212 char param_buf[sizeof(NOMMU_HACK_FMT) + 2 * (sizeof(int)*6 + sizeof(long long)*1)];
6213 char *heredoc_argv[4];
6214 struct variable *cur;
6215# if ENABLE_HUSH_FUNCTIONS
6216 struct function *funcp;
6217# endif
6218 char **argv, **pp;
6219 unsigned cnt;
6220 unsigned long long empty_trap_mask;
6221
6222 if (!g_argv0) { /* heredoc */
6223 argv = heredoc_argv;
6224 argv[0] = (char *) G.argv0_for_re_execing;
6225 argv[1] = (char *) "-<";
6226 argv[2] = (char *) s;
6227 argv[3] = NULL;
6228 pp = &argv[3]; /* used as pointer to empty environment */
6229 goto do_exec;
6230 }
6231
6232 cnt = 0;
6233 pp = builtin_argv;
6234 if (pp) while (*pp++)
6235 cnt++;
6236
6237 empty_trap_mask = 0;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006238 if (G_traps) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006239 int sig;
6240 for (sig = 1; sig < NSIG; sig++) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006241 if (G_traps[sig] && !G_traps[sig][0])
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006242 empty_trap_mask |= 1LL << sig;
6243 }
6244 }
6245
6246 sprintf(param_buf, NOMMU_HACK_FMT
6247 , (unsigned) G.root_pid
6248 , (unsigned) G.root_ppid
6249 , (unsigned) G.last_bg_pid
6250 , (unsigned) G.last_exitcode
6251 , cnt
6252 , empty_trap_mask
6253 IF_HUSH_LOOPS(, G.depth_of_loop)
6254 );
6255# undef NOMMU_HACK_FMT
6256 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<etc...> <vars...> <funcs...>
6257 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
6258 */
6259 cnt += 6;
6260 for (cur = G.top_var; cur; cur = cur->next) {
6261 if (!cur->flg_export || cur->flg_read_only)
6262 cnt += 2;
6263 }
6264# if ENABLE_HUSH_FUNCTIONS
6265 for (funcp = G.top_func; funcp; funcp = funcp->next)
6266 cnt += 3;
6267# endif
6268 pp = g_argv;
6269 while (*pp++)
6270 cnt++;
6271 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
6272 *pp++ = (char *) G.argv0_for_re_execing;
6273 *pp++ = param_buf;
6274 for (cur = G.top_var; cur; cur = cur->next) {
6275 if (strcmp(cur->varstr, hush_version_str) == 0)
6276 continue;
6277 if (cur->flg_read_only) {
6278 *pp++ = (char *) "-R";
6279 *pp++ = cur->varstr;
6280 } else if (!cur->flg_export) {
6281 *pp++ = (char *) "-V";
6282 *pp++ = cur->varstr;
6283 }
6284 }
6285# if ENABLE_HUSH_FUNCTIONS
6286 for (funcp = G.top_func; funcp; funcp = funcp->next) {
6287 *pp++ = (char *) "-F";
6288 *pp++ = funcp->name;
6289 *pp++ = funcp->body_as_string;
6290 }
6291# endif
6292 /* We can pass activated traps here. Say, -Tnn:trap_string
6293 *
6294 * However, POSIX says that subshells reset signals with traps
6295 * to SIG_DFL.
6296 * I tested bash-3.2 and it not only does that with true subshells
6297 * of the form ( list ), but with any forked children shells.
6298 * I set trap "echo W" WINCH; and then tried:
6299 *
6300 * { echo 1; sleep 20; echo 2; } &
6301 * while true; do echo 1; sleep 20; echo 2; break; done &
6302 * true | { echo 1; sleep 20; echo 2; } | cat
6303 *
6304 * In all these cases sending SIGWINCH to the child shell
6305 * did not run the trap. If I add trap "echo V" WINCH;
6306 * _inside_ group (just before echo 1), it works.
6307 *
6308 * I conclude it means we don't need to pass active traps here.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006309 */
6310 *pp++ = (char *) "-c";
6311 *pp++ = (char *) s;
6312 if (builtin_argv) {
6313 while (*++builtin_argv)
6314 *pp++ = *builtin_argv;
6315 *pp++ = (char *) "";
6316 }
6317 *pp++ = g_argv0;
6318 while (*g_argv)
6319 *pp++ = *g_argv++;
6320 /* *pp = NULL; - is already there */
6321 pp = environ;
6322
6323 do_exec:
6324 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02006325 /* Don't propagate SIG_IGN to the child */
6326 if (SPECIAL_JOBSTOP_SIGS != 0)
6327 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006328 execve(bb_busybox_exec_path, argv, pp);
6329 /* Fallback. Useful for init=/bin/hush usage etc */
6330 if (argv[0][0] == '/')
6331 execve(argv[0], argv, pp);
6332 xfunc_error_retval = 127;
6333 bb_error_msg_and_die("can't re-execute the shell");
6334}
6335#endif /* !BB_MMU */
6336
6337
6338static int run_and_free_list(struct pipe *pi);
6339
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006340/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006341 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
6342 * end_trigger controls how often we stop parsing
6343 * NUL: parse all, execute, return
6344 * ';': parse till ';' or newline, execute, repeat till EOF
6345 */
6346static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00006347{
Denys Vlasenko00243b02009-11-16 02:00:03 +01006348 /* Why we need empty flag?
6349 * An obscure corner case "false; ``; echo $?":
6350 * empty command in `` should still set $? to 0.
6351 * But we can't just set $? to 0 at the start,
6352 * this breaks "false; echo `echo $?`" case.
6353 */
6354 bool empty = 1;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006355 while (1) {
6356 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006357
Denys Vlasenkoa1463192011-01-18 17:55:04 +01006358#if ENABLE_HUSH_INTERACTIVE
6359 if (end_trigger == ';')
6360 inp->promptmode = 0; /* PS1 */
6361#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006362 pipe_list = parse_stream(NULL, inp, end_trigger);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02006363 if (!pipe_list || pipe_list == ERR_PTR) { /* EOF/error */
6364 /* If we are in "big" script
6365 * (not in `cmd` or something similar)...
6366 */
6367 if (pipe_list == ERR_PTR && end_trigger == ';') {
6368 /* Discard cached input (rest of line) */
6369 int ch = inp->last_char;
6370 while (ch != EOF && ch != '\n') {
6371 //bb_error_msg("Discarded:'%c'", ch);
6372 ch = i_getch(inp);
6373 }
6374 /* Force prompt */
6375 inp->p = NULL;
6376 /* This stream isn't empty */
6377 empty = 0;
6378 continue;
6379 }
6380 if (!pipe_list && empty)
Denys Vlasenko00243b02009-11-16 02:00:03 +01006381 G.last_exitcode = 0;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006382 break;
Denys Vlasenko00243b02009-11-16 02:00:03 +01006383 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006384 debug_print_tree(pipe_list, 0);
6385 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
6386 run_and_free_list(pipe_list);
Denys Vlasenko00243b02009-11-16 02:00:03 +01006387 empty = 0;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006388 if (G_flag_return_in_progress == 1)
Denys Vlasenko68d5cb52011-03-24 02:50:03 +01006389 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006390 }
Eric Andersen25f27032001-04-26 23:22:31 +00006391}
6392
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006393static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00006394{
6395 struct in_str input;
6396 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006397 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00006398}
6399
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006400static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00006401{
Eric Andersen25f27032001-04-26 23:22:31 +00006402 struct in_str input;
6403 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006404 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00006405}
6406
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006407#if ENABLE_HUSH_TICK
6408static FILE *generate_stream_from_string(const char *s, pid_t *pid_p)
6409{
6410 pid_t pid;
6411 int channel[2];
6412# if !BB_MMU
6413 char **to_free = NULL;
6414# endif
6415
6416 xpipe(channel);
6417 pid = BB_MMU ? xfork() : xvfork();
6418 if (pid == 0) { /* child */
6419 disable_restore_tty_pgrp_on_exit();
6420 /* Process substitution is not considered to be usual
6421 * 'command execution'.
6422 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
6423 */
6424 bb_signals(0
6425 + (1 << SIGTSTP)
6426 + (1 << SIGTTIN)
6427 + (1 << SIGTTOU)
6428 , SIG_IGN);
6429 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
6430 close(channel[0]); /* NB: close _first_, then move fd! */
6431 xmove_fd(channel[1], 1);
6432 /* Prevent it from trying to handle ctrl-z etc */
6433 IF_HUSH_JOB(G.run_list_level = 1;)
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006434# if ENABLE_HUSH_TRAP
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006435 /* Awful hack for `trap` or $(trap).
6436 *
6437 * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html
6438 * contains an example where "trap" is executed in a subshell:
6439 *
6440 * save_traps=$(trap)
6441 * ...
6442 * eval "$save_traps"
6443 *
6444 * Standard does not say that "trap" in subshell shall print
6445 * parent shell's traps. It only says that its output
6446 * must have suitable form, but then, in the above example
6447 * (which is not supposed to be normative), it implies that.
6448 *
6449 * bash (and probably other shell) does implement it
6450 * (traps are reset to defaults, but "trap" still shows them),
6451 * but as a result, "trap" logic is hopelessly messed up:
6452 *
6453 * # trap
6454 * trap -- 'echo Ho' SIGWINCH <--- we have a handler
6455 * # (trap) <--- trap is in subshell - no output (correct, traps are reset)
6456 * # true | trap <--- trap is in subshell - no output (ditto)
6457 * # echo `true | trap` <--- in subshell - output (but traps are reset!)
6458 * trap -- 'echo Ho' SIGWINCH
6459 * # echo `(trap)` <--- in subshell in subshell - output
6460 * trap -- 'echo Ho' SIGWINCH
6461 * # echo `true | (trap)` <--- in subshell in subshell in subshell - output!
6462 * trap -- 'echo Ho' SIGWINCH
6463 *
6464 * The rules when to forget and when to not forget traps
6465 * get really complex and nonsensical.
6466 *
6467 * Our solution: ONLY bare $(trap) or `trap` is special.
6468 */
6469 s = skip_whitespace(s);
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01006470 if (is_prefixed_with(s, "trap")
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006471 && skip_whitespace(s + 4)[0] == '\0'
6472 ) {
6473 static const char *const argv[] = { NULL, NULL };
6474 builtin_trap((char**)argv);
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02006475 fflush_all(); /* important */
6476 _exit(0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006477 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006478# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006479# if BB_MMU
6480 reset_traps_to_defaults();
6481 parse_and_run_string(s);
6482 _exit(G.last_exitcode);
6483# else
6484 /* We re-execute after vfork on NOMMU. This makes this script safe:
6485 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
6486 * huge=`cat BIG` # was blocking here forever
6487 * echo OK
6488 */
6489 re_execute_shell(&to_free,
6490 s,
6491 G.global_argv[0],
6492 G.global_argv + 1,
6493 NULL);
6494# endif
6495 }
6496
6497 /* parent */
6498 *pid_p = pid;
6499# if ENABLE_HUSH_FAST
6500 G.count_SIGCHLD++;
6501//bb_error_msg("[%d] fork in generate_stream_from_string:"
6502// " G.count_SIGCHLD:%d G.handled_SIGCHLD:%d",
6503// getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6504# endif
6505 enable_restore_tty_pgrp_on_exit();
6506# if !BB_MMU
6507 free(to_free);
6508# endif
6509 close(channel[1]);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02006510 return remember_FILE(xfdopen_for_read(channel[0]));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006511}
6512
6513/* Return code is exit status of the process that is run. */
6514static int process_command_subs(o_string *dest, const char *s)
6515{
6516 FILE *fp;
6517 struct in_str pipe_str;
6518 pid_t pid;
6519 int status, ch, eol_cnt;
6520
6521 fp = generate_stream_from_string(s, &pid);
6522
6523 /* Now send results of command back into original context */
6524 setup_file_in_str(&pipe_str, fp);
6525 eol_cnt = 0;
6526 while ((ch = i_getch(&pipe_str)) != EOF) {
6527 if (ch == '\n') {
6528 eol_cnt++;
6529 continue;
6530 }
6531 while (eol_cnt) {
6532 o_addchr(dest, '\n');
6533 eol_cnt--;
6534 }
6535 o_addQchr(dest, ch);
6536 }
6537
6538 debug_printf("done reading from `cmd` pipe, closing it\n");
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02006539 fclose_and_forget(fp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006540 /* We need to extract exitcode. Test case
6541 * "true; echo `sleep 1; false` $?"
6542 * should print 1 */
6543 safe_waitpid(pid, &status, 0);
6544 debug_printf("child exited. returning its exitcode:%d\n", WEXITSTATUS(status));
6545 return WEXITSTATUS(status);
6546}
6547#endif /* ENABLE_HUSH_TICK */
6548
6549
6550static void setup_heredoc(struct redir_struct *redir)
6551{
6552 struct fd_pair pair;
6553 pid_t pid;
6554 int len, written;
6555 /* the _body_ of heredoc (misleading field name) */
6556 const char *heredoc = redir->rd_filename;
6557 char *expanded;
6558#if !BB_MMU
6559 char **to_free;
6560#endif
6561
6562 expanded = NULL;
6563 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02006564 expanded = encode_then_expand_string(heredoc, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006565 if (expanded)
6566 heredoc = expanded;
6567 }
6568 len = strlen(heredoc);
6569
6570 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
6571 xpiped_pair(pair);
6572 xmove_fd(pair.rd, redir->rd_fd);
6573
6574 /* Try writing without forking. Newer kernels have
6575 * dynamically growing pipes. Must use non-blocking write! */
6576 ndelay_on(pair.wr);
6577 while (1) {
6578 written = write(pair.wr, heredoc, len);
6579 if (written <= 0)
6580 break;
6581 len -= written;
6582 if (len == 0) {
6583 close(pair.wr);
6584 free(expanded);
6585 return;
6586 }
6587 heredoc += written;
6588 }
6589 ndelay_off(pair.wr);
6590
6591 /* Okay, pipe buffer was not big enough */
6592 /* Note: we must not create a stray child (bastard? :)
6593 * for the unsuspecting parent process. Child creates a grandchild
6594 * and exits before parent execs the process which consumes heredoc
6595 * (that exec happens after we return from this function) */
6596#if !BB_MMU
6597 to_free = NULL;
6598#endif
6599 pid = xvfork();
6600 if (pid == 0) {
6601 /* child */
6602 disable_restore_tty_pgrp_on_exit();
6603 pid = BB_MMU ? xfork() : xvfork();
6604 if (pid != 0)
6605 _exit(0);
6606 /* grandchild */
6607 close(redir->rd_fd); /* read side of the pipe */
6608#if BB_MMU
6609 full_write(pair.wr, heredoc, len); /* may loop or block */
6610 _exit(0);
6611#else
6612 /* Delegate blocking writes to another process */
6613 xmove_fd(pair.wr, STDOUT_FILENO);
6614 re_execute_shell(&to_free, heredoc, NULL, NULL, NULL);
6615#endif
6616 }
6617 /* parent */
6618#if ENABLE_HUSH_FAST
6619 G.count_SIGCHLD++;
6620//bb_error_msg("[%d] fork in setup_heredoc: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6621#endif
6622 enable_restore_tty_pgrp_on_exit();
6623#if !BB_MMU
6624 free(to_free);
6625#endif
6626 close(pair.wr);
6627 free(expanded);
6628 wait(NULL); /* wait till child has died */
6629}
6630
Denys Vlasenko2db74612017-07-07 22:07:28 +02006631struct squirrel {
6632 int orig_fd;
6633 int moved_to;
6634 /* moved_to = n: fd was moved to n; restore back to orig_fd after redir */
6635 /* moved_to = -1: fd was opened by redirect; close orig_fd after redir */
6636};
6637
6638static struct squirrel *add_squirrel(struct squirrel *sq, int fd, int avoid_fd)
6639{
6640 int i = 0;
6641
6642 if (sq) while (sq[i].orig_fd >= 0) {
6643 /* If we collide with an already moved fd... */
6644 if (fd == sq[i].moved_to) {
6645 sq[i].moved_to = fcntl_F_DUPFD(sq[i].moved_to, avoid_fd);
6646 debug_printf_redir("redirect_fd %d: already busy, moving to %d\n", fd, sq[i].moved_to);
6647 if (sq[i].moved_to < 0) /* what? */
6648 xfunc_die();
6649 return sq;
6650 }
6651 if (fd == sq[i].orig_fd) {
6652 /* Example: echo Hello >/dev/null 1>&2 */
6653 debug_printf_redir("redirect_fd %d: already moved\n", fd);
6654 return sq;
6655 }
6656 i++;
6657 }
6658
6659 sq = xrealloc(sq, (i + 2) * sizeof(sq[0]));
6660 sq[i].orig_fd = fd;
6661 /* If this fd is open, we move and remember it; if it's closed, moved_to = -1 */
6662 sq[i].moved_to = fcntl_F_DUPFD(fd, avoid_fd);
6663 debug_printf_redir("redirect_fd %d: previous fd is moved to %d (-1 if it was closed)\n", fd, sq[i].moved_to);
6664 if (sq[i].moved_to < 0 && errno != EBADF)
6665 xfunc_die();
6666 sq[i+1].orig_fd = -1; /* end marker */
6667 return sq;
6668}
6669
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006670/* fd: redirect wants this fd to be used (e.g. 3>file).
6671 * Move all conflicting internally used fds,
6672 * and remember them so that we can restore them later.
6673 */
Denys Vlasenko2db74612017-07-07 22:07:28 +02006674static int save_fds_on_redirect(int fd, int avoid_fd, struct squirrel **sqp)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006675{
Denys Vlasenko2db74612017-07-07 22:07:28 +02006676 if (avoid_fd < 9) /* the important case here is that it can be -1 */
6677 avoid_fd = 9;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006678
6679#if ENABLE_HUSH_INTERACTIVE
6680 if (fd != 0 && fd == G.interactive_fd) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02006681 G.interactive_fd = xdup_and_close(G.interactive_fd, F_DUPFD_CLOEXEC, avoid_fd);
6682 debug_printf_redir("redirect_fd %d: matches interactive_fd, moving it to %d\n", fd, G.interactive_fd);
6683 return 1; /* "we closed fd" */
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006684 }
6685#endif
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006686 /* Are we called from setup_redirects(squirrel==NULL)? Two cases:
6687 * (1) Redirect in a forked child. No need to save FILEs' fds,
6688 * we aren't going to use them anymore, ok to trash.
Denys Vlasenko2db74612017-07-07 22:07:28 +02006689 * (2) "exec 3>FILE". Bummer. We can save script FILEs' fds,
6690 * but how are we doing to restore them?
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006691 * "fileno(fd) = new_fd" can't be done.
6692 */
Denys Vlasenko2db74612017-07-07 22:07:28 +02006693 if (!sqp)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006694 return 0;
6695
Denys Vlasenko2db74612017-07-07 22:07:28 +02006696 /* If this one of script's fds? */
6697 if (save_FILEs_on_redirect(fd, avoid_fd))
6698 return 1; /* yes. "we closed fd" */
6699
6700 /* Check whether it collides with any open fds (e.g. stdio), save fds as needed */
6701 *sqp = add_squirrel(*sqp, fd, avoid_fd);
6702 return 0; /* "we did not close fd" */
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006703}
6704
Denys Vlasenko2db74612017-07-07 22:07:28 +02006705static void restore_redirects(struct squirrel *sq)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006706{
Denys Vlasenko2db74612017-07-07 22:07:28 +02006707
6708 if (sq) {
6709 int i = 0;
6710 while (sq[i].orig_fd >= 0) {
6711 if (sq[i].moved_to >= 0) {
6712 /* We simply die on error */
6713 debug_printf_redir("restoring redirected fd from %d to %d\n", sq[i].moved_to, sq[i].orig_fd);
6714 xmove_fd(sq[i].moved_to, sq[i].orig_fd);
6715 } else {
6716 /* cmd1 9>FILE; cmd2_should_see_fd9_closed */
6717 debug_printf_redir("restoring redirected fd %d: closing it\n", sq[i].orig_fd);
6718 close(sq[i].orig_fd);
6719 }
6720 i++;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006721 }
Denys Vlasenko2db74612017-07-07 22:07:28 +02006722 free(sq);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006723 }
6724
Denys Vlasenko2db74612017-07-07 22:07:28 +02006725 /* If moved, G.interactive_fd stays on new fd, not restoring it */
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006726
6727 restore_redirected_FILEs();
6728}
6729
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006730/* squirrel != NULL means we squirrel away copies of stdin, stdout,
6731 * and stderr if they are redirected. */
Denys Vlasenko2db74612017-07-07 22:07:28 +02006732static int setup_redirects(struct command *prog, struct squirrel **sqp)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006733{
6734 int openfd, mode;
6735 struct redir_struct *redir;
6736
6737 for (redir = prog->redirects; redir; redir = redir->next) {
6738 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006739 /* "rd_fd<<HERE" case */
Denys Vlasenko2db74612017-07-07 22:07:28 +02006740 save_fds_on_redirect(redir->rd_fd, /*avoid:*/ 0, sqp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006741 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
6742 * of the heredoc */
6743 debug_printf_parse("set heredoc '%s'\n",
6744 redir->rd_filename);
6745 setup_heredoc(redir);
6746 continue;
6747 }
6748
6749 if (redir->rd_dup == REDIRFD_TO_FILE) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006750 /* "rd_fd<*>file" case (<*> is <,>,>>,<>) */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006751 char *p;
6752 if (redir->rd_filename == NULL) {
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02006753 /*
6754 * Examples:
6755 * "cmd >" (no filename)
6756 * "cmd > <file" (2nd redirect starts too early)
6757 */
6758 die_if_script("syntax error: %s", "invalid redirect");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006759 continue;
6760 }
6761 mode = redir_table[redir->rd_type].mode;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006762 p = expand_string_to_string(redir->rd_filename, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006763 openfd = open_or_warn(p, mode);
6764 free(p);
6765 if (openfd < 0) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006766 /* Error message from open_or_warn can be lost
6767 * if stderr has been redirected, but bash
6768 * and ash both lose it as well
6769 * (though zsh doesn't!)
6770 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006771 return 1;
6772 }
6773 } else {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006774 /* "rd_fd<*>rd_dup" or "rd_fd<*>-" cases */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006775 openfd = redir->rd_dup;
6776 }
6777
6778 if (openfd != redir->rd_fd) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02006779 int closed = save_fds_on_redirect(redir->rd_fd, /*avoid:*/ openfd, sqp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006780 if (openfd == REDIRFD_CLOSE) {
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006781 /* "rd_fd >&-" means "close me" */
6782 if (!closed) {
6783 /* ^^^ optimization: saving may already
6784 * have closed it. If not... */
6785 close(redir->rd_fd);
6786 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006787 } else {
6788 xdup2(openfd, redir->rd_fd);
6789 if (redir->rd_dup == REDIRFD_TO_FILE)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006790 /* "rd_fd > FILE" */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006791 close(openfd);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006792 /* else: "rd_fd > rd_dup" */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006793 }
6794 }
6795 }
6796 return 0;
6797}
6798
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006799static char *find_in_path(const char *arg)
6800{
6801 char *ret = NULL;
6802 const char *PATH = get_local_var_value("PATH");
6803
6804 if (!PATH)
6805 return NULL;
6806
6807 while (1) {
6808 const char *end = strchrnul(PATH, ':');
6809 int sz = end - PATH; /* must be int! */
6810
6811 free(ret);
6812 if (sz != 0) {
6813 ret = xasprintf("%.*s/%s", sz, PATH, arg);
6814 } else {
6815 /* We have xxx::yyyy in $PATH,
6816 * it means "use current dir" */
6817 ret = xstrdup(arg);
6818 }
6819 if (access(ret, F_OK) == 0)
6820 break;
6821
6822 if (*end == '\0') {
6823 free(ret);
6824 return NULL;
6825 }
6826 PATH = end + 1;
6827 }
6828
6829 return ret;
6830}
6831
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006832static const struct built_in_command *find_builtin_helper(const char *name,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006833 const struct built_in_command *x,
6834 const struct built_in_command *end)
6835{
6836 while (x != end) {
6837 if (strcmp(name, x->b_cmd) != 0) {
6838 x++;
6839 continue;
6840 }
6841 debug_printf_exec("found builtin '%s'\n", name);
6842 return x;
6843 }
6844 return NULL;
6845}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006846static const struct built_in_command *find_builtin1(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006847{
6848 return find_builtin_helper(name, bltins1, &bltins1[ARRAY_SIZE(bltins1)]);
6849}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006850static const struct built_in_command *find_builtin(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006851{
6852 const struct built_in_command *x = find_builtin1(name);
6853 if (x)
6854 return x;
6855 return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]);
6856}
6857
6858#if ENABLE_HUSH_FUNCTIONS
6859static struct function **find_function_slot(const char *name)
6860{
6861 struct function **funcpp = &G.top_func;
6862 while (*funcpp) {
6863 if (strcmp(name, (*funcpp)->name) == 0) {
6864 break;
6865 }
6866 funcpp = &(*funcpp)->next;
6867 }
6868 return funcpp;
6869}
6870
6871static const struct function *find_function(const char *name)
6872{
6873 const struct function *funcp = *find_function_slot(name);
6874 if (funcp)
6875 debug_printf_exec("found function '%s'\n", name);
6876 return funcp;
6877}
6878
6879/* Note: takes ownership on name ptr */
6880static struct function *new_function(char *name)
6881{
6882 struct function **funcpp = find_function_slot(name);
6883 struct function *funcp = *funcpp;
6884
6885 if (funcp != NULL) {
6886 struct command *cmd = funcp->parent_cmd;
6887 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
6888 if (!cmd) {
6889 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
6890 free(funcp->name);
6891 /* Note: if !funcp->body, do not free body_as_string!
6892 * This is a special case of "-F name body" function:
6893 * body_as_string was not malloced! */
6894 if (funcp->body) {
6895 free_pipe_list(funcp->body);
6896# if !BB_MMU
6897 free(funcp->body_as_string);
6898# endif
6899 }
6900 } else {
6901 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
6902 cmd->argv[0] = funcp->name;
6903 cmd->group = funcp->body;
6904# if !BB_MMU
6905 cmd->group_as_string = funcp->body_as_string;
6906# endif
6907 }
6908 } else {
6909 debug_printf_exec("remembering new function '%s'\n", name);
6910 funcp = *funcpp = xzalloc(sizeof(*funcp));
6911 /*funcp->next = NULL;*/
6912 }
6913
6914 funcp->name = name;
6915 return funcp;
6916}
6917
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006918# if ENABLE_HUSH_UNSET
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006919static void unset_func(const char *name)
6920{
6921 struct function **funcpp = find_function_slot(name);
6922 struct function *funcp = *funcpp;
6923
6924 if (funcp != NULL) {
6925 debug_printf_exec("freeing function '%s'\n", funcp->name);
6926 *funcpp = funcp->next;
6927 /* funcp is unlinked now, deleting it.
6928 * Note: if !funcp->body, the function was created by
6929 * "-F name body", do not free ->body_as_string
6930 * and ->name as they were not malloced. */
6931 if (funcp->body) {
6932 free_pipe_list(funcp->body);
6933 free(funcp->name);
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006934# if !BB_MMU
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006935 free(funcp->body_as_string);
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006936# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006937 }
6938 free(funcp);
6939 }
6940}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006941# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006942
6943# if BB_MMU
6944#define exec_function(to_free, funcp, argv) \
6945 exec_function(funcp, argv)
6946# endif
6947static void exec_function(char ***to_free,
6948 const struct function *funcp,
6949 char **argv) NORETURN;
6950static void exec_function(char ***to_free,
6951 const struct function *funcp,
6952 char **argv)
6953{
6954# if BB_MMU
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02006955 int n;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006956
6957 argv[0] = G.global_argv[0];
6958 G.global_argv = argv;
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02006959 G.global_argc = n = 1 + string_array_len(argv + 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006960 /* On MMU, funcp->body is always non-NULL */
6961 n = run_list(funcp->body);
6962 fflush_all();
6963 _exit(n);
6964# else
6965 re_execute_shell(to_free,
6966 funcp->body_as_string,
6967 G.global_argv[0],
6968 argv + 1,
6969 NULL);
6970# endif
6971}
6972
6973static int run_function(const struct function *funcp, char **argv)
6974{
6975 int rc;
6976 save_arg_t sv;
6977 smallint sv_flg;
6978
6979 save_and_replace_G_args(&sv, argv);
6980
6981 /* "we are in function, ok to use return" */
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006982 sv_flg = G_flag_return_in_progress;
6983 G_flag_return_in_progress = -1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006984# if ENABLE_HUSH_LOCAL
6985 G.func_nest_level++;
6986# endif
6987
6988 /* On MMU, funcp->body is always non-NULL */
6989# if !BB_MMU
6990 if (!funcp->body) {
6991 /* Function defined by -F */
6992 parse_and_run_string(funcp->body_as_string);
6993 rc = G.last_exitcode;
6994 } else
6995# endif
6996 {
6997 rc = run_list(funcp->body);
6998 }
6999
7000# if ENABLE_HUSH_LOCAL
7001 {
7002 struct variable *var;
7003 struct variable **var_pp;
7004
7005 var_pp = &G.top_var;
7006 while ((var = *var_pp) != NULL) {
7007 if (var->func_nest_level < G.func_nest_level) {
7008 var_pp = &var->next;
7009 continue;
7010 }
7011 /* Unexport */
7012 if (var->flg_export)
7013 bb_unsetenv(var->varstr);
7014 /* Remove from global list */
7015 *var_pp = var->next;
7016 /* Free */
7017 if (!var->max_len)
7018 free(var->varstr);
7019 free(var);
7020 }
7021 G.func_nest_level--;
7022 }
7023# endif
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02007024 G_flag_return_in_progress = sv_flg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007025
7026 restore_G_args(&sv, argv);
7027
7028 return rc;
7029}
7030#endif /* ENABLE_HUSH_FUNCTIONS */
7031
7032
7033#if BB_MMU
7034#define exec_builtin(to_free, x, argv) \
7035 exec_builtin(x, argv)
7036#else
7037#define exec_builtin(to_free, x, argv) \
7038 exec_builtin(to_free, argv)
7039#endif
7040static void exec_builtin(char ***to_free,
7041 const struct built_in_command *x,
7042 char **argv) NORETURN;
7043static void exec_builtin(char ***to_free,
7044 const struct built_in_command *x,
7045 char **argv)
7046{
7047#if BB_MMU
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01007048 int rcode;
7049 fflush_all();
7050 rcode = x->b_function(argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007051 fflush_all();
7052 _exit(rcode);
7053#else
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01007054 fflush_all();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007055 /* On NOMMU, we must never block!
7056 * Example: { sleep 99 | read line; } & echo Ok
7057 */
7058 re_execute_shell(to_free,
7059 argv[0],
7060 G.global_argv[0],
7061 G.global_argv + 1,
7062 argv);
7063#endif
7064}
7065
7066
7067static void execvp_or_die(char **argv) NORETURN;
7068static void execvp_or_die(char **argv)
7069{
Denys Vlasenko04465da2016-10-03 01:01:15 +02007070 int e;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007071 debug_printf_exec("execing '%s'\n", argv[0]);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02007072 /* Don't propagate SIG_IGN to the child */
7073 if (SPECIAL_JOBSTOP_SIGS != 0)
7074 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007075 execvp(argv[0], argv);
Denys Vlasenko04465da2016-10-03 01:01:15 +02007076 e = 2;
7077 if (errno == EACCES) e = 126;
7078 if (errno == ENOENT) e = 127;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007079 bb_perror_msg("can't execute '%s'", argv[0]);
Denys Vlasenko04465da2016-10-03 01:01:15 +02007080 _exit(e);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007081}
7082
7083#if ENABLE_HUSH_MODE_X
7084static void dump_cmd_in_x_mode(char **argv)
7085{
7086 if (G_x_mode && argv) {
7087 /* We want to output the line in one write op */
7088 char *buf, *p;
7089 int len;
7090 int n;
7091
7092 len = 3;
7093 n = 0;
7094 while (argv[n])
7095 len += strlen(argv[n++]) + 1;
7096 buf = xmalloc(len);
7097 buf[0] = '+';
7098 p = buf + 1;
7099 n = 0;
7100 while (argv[n])
7101 p += sprintf(p, " %s", argv[n++]);
7102 *p++ = '\n';
7103 *p = '\0';
7104 fputs(buf, stderr);
7105 free(buf);
7106 }
7107}
7108#else
7109# define dump_cmd_in_x_mode(argv) ((void)0)
7110#endif
7111
7112#if BB_MMU
7113#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
7114 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
7115#define pseudo_exec(nommu_save, command, argv_expanded) \
7116 pseudo_exec(command, argv_expanded)
7117#endif
7118
7119/* Called after [v]fork() in run_pipe, or from builtin_exec.
7120 * Never returns.
7121 * Don't exit() here. If you don't exec, use _exit instead.
7122 * The at_exit handlers apparently confuse the calling process,
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02007123 * in particular stdin handling. Not sure why? -- because of vfork! (vda)
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02007124 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007125static void pseudo_exec_argv(nommu_save_t *nommu_save,
7126 char **argv, int assignment_cnt,
7127 char **argv_expanded) NORETURN;
7128static NOINLINE void pseudo_exec_argv(nommu_save_t *nommu_save,
7129 char **argv, int assignment_cnt,
7130 char **argv_expanded)
7131{
7132 char **new_env;
7133
7134 new_env = expand_assignments(argv, assignment_cnt);
7135 dump_cmd_in_x_mode(new_env);
7136
7137 if (!argv[assignment_cnt]) {
7138 /* Case when we are here: ... | var=val | ...
7139 * (note that we do not exit early, i.e., do not optimize out
7140 * expand_assignments(): think about ... | var=`sleep 1` | ...
7141 */
7142 free_strings(new_env);
7143 _exit(EXIT_SUCCESS);
7144 }
7145
7146#if BB_MMU
7147 set_vars_and_save_old(new_env);
7148 free(new_env); /* optional */
7149 /* we can also destroy set_vars_and_save_old's return value,
7150 * to save memory */
7151#else
7152 nommu_save->new_env = new_env;
7153 nommu_save->old_vars = set_vars_and_save_old(new_env);
7154#endif
7155
7156 if (argv_expanded) {
7157 argv = argv_expanded;
7158 } else {
7159 argv = expand_strvec_to_strvec(argv + assignment_cnt);
7160#if !BB_MMU
7161 nommu_save->argv = argv;
7162#endif
7163 }
7164 dump_cmd_in_x_mode(argv);
7165
7166#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
7167 if (strchr(argv[0], '/') != NULL)
7168 goto skip;
7169#endif
7170
7171 /* Check if the command matches any of the builtins.
7172 * Depending on context, this might be redundant. But it's
7173 * easier to waste a few CPU cycles than it is to figure out
7174 * if this is one of those cases.
7175 */
7176 {
7177 /* On NOMMU, it is more expensive to re-execute shell
7178 * just in order to run echo or test builtin.
7179 * It's better to skip it here and run corresponding
7180 * non-builtin later. */
7181 const struct built_in_command *x;
7182 x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]);
7183 if (x) {
7184 exec_builtin(&nommu_save->argv_from_re_execing, x, argv);
7185 }
7186 }
7187#if ENABLE_HUSH_FUNCTIONS
7188 /* Check if the command matches any functions */
7189 {
7190 const struct function *funcp = find_function(argv[0]);
7191 if (funcp) {
7192 exec_function(&nommu_save->argv_from_re_execing, funcp, argv);
7193 }
7194 }
7195#endif
7196
7197#if ENABLE_FEATURE_SH_STANDALONE
7198 /* Check if the command matches any busybox applets */
7199 {
7200 int a = find_applet_by_name(argv[0]);
7201 if (a >= 0) {
7202# if BB_MMU /* see above why on NOMMU it is not allowed */
7203 if (APPLET_IS_NOEXEC(a)) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02007204 /* Do not leak open fds from opened script files etc */
7205 close_all_FILE_list();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007206 debug_printf_exec("running applet '%s'\n", argv[0]);
Denys Vlasenko69a5ec92017-07-07 19:08:56 +02007207 run_applet_no_and_exit(a, argv[0], argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007208 }
7209# endif
7210 /* Re-exec ourselves */
7211 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02007212 /* Don't propagate SIG_IGN to the child */
7213 if (SPECIAL_JOBSTOP_SIGS != 0)
7214 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007215 execv(bb_busybox_exec_path, argv);
7216 /* If they called chroot or otherwise made the binary no longer
7217 * executable, fall through */
7218 }
7219 }
7220#endif
7221
7222#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
7223 skip:
7224#endif
7225 execvp_or_die(argv);
7226}
7227
7228/* Called after [v]fork() in run_pipe
7229 */
7230static void pseudo_exec(nommu_save_t *nommu_save,
7231 struct command *command,
7232 char **argv_expanded) NORETURN;
7233static void pseudo_exec(nommu_save_t *nommu_save,
7234 struct command *command,
7235 char **argv_expanded)
7236{
7237 if (command->argv) {
7238 pseudo_exec_argv(nommu_save, command->argv,
7239 command->assignment_cnt, argv_expanded);
7240 }
7241
7242 if (command->group) {
7243 /* Cases when we are here:
7244 * ( list )
7245 * { list } &
7246 * ... | ( list ) | ...
7247 * ... | { list } | ...
7248 */
7249#if BB_MMU
7250 int rcode;
7251 debug_printf_exec("pseudo_exec: run_list\n");
7252 reset_traps_to_defaults();
7253 rcode = run_list(command->group);
7254 /* OK to leak memory by not calling free_pipe_list,
7255 * since this process is about to exit */
7256 _exit(rcode);
7257#else
7258 re_execute_shell(&nommu_save->argv_from_re_execing,
7259 command->group_as_string,
7260 G.global_argv[0],
7261 G.global_argv + 1,
7262 NULL);
7263#endif
7264 }
7265
7266 /* Case when we are here: ... | >file */
7267 debug_printf_exec("pseudo_exec'ed null command\n");
7268 _exit(EXIT_SUCCESS);
7269}
7270
7271#if ENABLE_HUSH_JOB
7272static const char *get_cmdtext(struct pipe *pi)
7273{
7274 char **argv;
7275 char *p;
7276 int len;
7277
7278 /* This is subtle. ->cmdtext is created only on first backgrounding.
7279 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
7280 * On subsequent bg argv is trashed, but we won't use it */
7281 if (pi->cmdtext)
7282 return pi->cmdtext;
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007283
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007284 argv = pi->cmds[0].argv;
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007285 if (!argv) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007286 pi->cmdtext = xzalloc(1);
7287 return pi->cmdtext;
7288 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007289 len = 0;
7290 do {
7291 len += strlen(*argv) + 1;
7292 } while (*++argv);
7293 p = xmalloc(len);
7294 pi->cmdtext = p;
7295 argv = pi->cmds[0].argv;
7296 do {
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007297 p = stpcpy(p, *argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007298 *p++ = ' ';
7299 } while (*++argv);
7300 p[-1] = '\0';
7301 return pi->cmdtext;
7302}
7303
Denys Vlasenko2ed74e22017-07-14 19:58:46 +02007304static void remove_job_from_table(struct pipe *pi)
7305{
7306 struct pipe *prev_pipe;
7307
7308 if (pi == G.job_list) {
7309 G.job_list = pi->next;
7310 } else {
7311 prev_pipe = G.job_list;
7312 while (prev_pipe->next != pi)
7313 prev_pipe = prev_pipe->next;
7314 prev_pipe->next = pi->next;
7315 }
7316 G.last_jobid = 0;
7317 if (G.job_list)
7318 G.last_jobid = G.job_list->jobid;
7319}
7320
7321static void delete_finished_job(struct pipe *pi)
7322{
7323 remove_job_from_table(pi);
7324 free_pipe(pi);
7325}
7326
7327static void clean_up_last_dead_job(void)
7328{
7329 if (G.job_list && !G.job_list->alive_cmds)
7330 delete_finished_job(G.job_list);
7331}
7332
Denys Vlasenko16096292017-07-10 10:00:28 +02007333static void insert_job_into_table(struct pipe *pi)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007334{
7335 struct pipe *job, **jobp;
7336 int i;
7337
Denys Vlasenko2ed74e22017-07-14 19:58:46 +02007338 clean_up_last_dead_job();
7339
Denys Vlasenko9e55a152017-07-10 10:01:12 +02007340 /* Find the end of the list, and find next job ID to use */
7341 i = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007342 jobp = &G.job_list;
Denys Vlasenko9e55a152017-07-10 10:01:12 +02007343 while ((job = *jobp) != NULL) {
7344 if (job->jobid > i)
7345 i = job->jobid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007346 jobp = &job->next;
Denys Vlasenko9e55a152017-07-10 10:01:12 +02007347 }
7348 pi->jobid = i + 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007349
Denys Vlasenko9e55a152017-07-10 10:01:12 +02007350 /* Create a new job struct at the end */
7351 job = *jobp = xmemdup(pi, sizeof(*pi));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007352 job->next = NULL;
7353 job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
7354 /* Cannot copy entire pi->cmds[] vector! This causes double frees */
7355 for (i = 0; i < pi->num_cmds; i++) {
7356 job->cmds[i].pid = pi->cmds[i].pid;
7357 /* all other fields are not used and stay zero */
7358 }
7359 job->cmdtext = xstrdup(get_cmdtext(pi));
7360
7361 if (G_interactive_fd)
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01007362 printf("[%u] %u %s\n", job->jobid, (unsigned)job->cmds[0].pid, job->cmdtext);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007363 G.last_jobid = job->jobid;
7364}
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007365#endif /* JOB */
7366
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007367static int job_exited_or_stopped(struct pipe *pi)
7368{
7369 int rcode, i;
7370
7371 if (pi->alive_cmds != pi->stopped_cmds)
7372 return -1;
7373
7374 /* All processes in fg pipe have exited or stopped */
7375 rcode = 0;
7376 i = pi->num_cmds;
7377 while (--i >= 0) {
7378 rcode = pi->cmds[i].cmd_exitcode;
7379 /* usually last process gives overall exitstatus,
7380 * but with "set -o pipefail", last *failed* process does */
7381 if (G.o_opt[OPT_O_PIPEFAIL] == 0 || rcode != 0)
7382 break;
7383 }
7384 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7385 return rcode;
7386}
7387
Denys Vlasenko7e675362016-10-28 21:57:31 +02007388static int process_wait_result(struct pipe *fg_pipe, pid_t childpid, int status)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007389{
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007390#if ENABLE_HUSH_JOB
7391 struct pipe *pi;
7392#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02007393 int i, dead;
7394
7395 dead = WIFEXITED(status) || WIFSIGNALED(status);
7396
7397#if DEBUG_JOBS
7398 if (WIFSTOPPED(status))
7399 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
7400 childpid, WSTOPSIG(status), WEXITSTATUS(status));
7401 if (WIFSIGNALED(status))
7402 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
7403 childpid, WTERMSIG(status), WEXITSTATUS(status));
7404 if (WIFEXITED(status))
7405 debug_printf_jobs("pid %d exited, exitcode %d\n",
7406 childpid, WEXITSTATUS(status));
7407#endif
7408 /* Were we asked to wait for a fg pipe? */
7409 if (fg_pipe) {
7410 i = fg_pipe->num_cmds;
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007411
Denys Vlasenko7e675362016-10-28 21:57:31 +02007412 while (--i >= 0) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007413 int rcode;
7414
Denys Vlasenko7e675362016-10-28 21:57:31 +02007415 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
7416 if (fg_pipe->cmds[i].pid != childpid)
7417 continue;
7418 if (dead) {
7419 int ex;
7420 fg_pipe->cmds[i].pid = 0;
7421 fg_pipe->alive_cmds--;
7422 ex = WEXITSTATUS(status);
7423 /* bash prints killer signal's name for *last*
7424 * process in pipe (prints just newline for SIGINT/SIGPIPE).
7425 * Mimic this. Example: "sleep 5" + (^\ or kill -QUIT)
7426 */
7427 if (WIFSIGNALED(status)) {
7428 int sig = WTERMSIG(status);
7429 if (i == fg_pipe->num_cmds-1)
7430 /* TODO: use strsignal() instead for bash compat? but that's bloat... */
7431 puts(sig == SIGINT || sig == SIGPIPE ? "" : get_signame(sig));
7432 /* TODO: if (WCOREDUMP(status)) + " (core dumped)"; */
7433 /* TODO: MIPS has 128 sigs (1..128), what if sig==128 here?
7434 * Maybe we need to use sig | 128? */
7435 ex = sig + 128;
7436 }
7437 fg_pipe->cmds[i].cmd_exitcode = ex;
7438 } else {
7439 fg_pipe->stopped_cmds++;
7440 }
7441 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
7442 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007443 rcode = job_exited_or_stopped(fg_pipe);
7444 if (rcode >= 0) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007445/* Note: *non-interactive* bash does not continue if all processes in fg pipe
7446 * are stopped. Testcase: "cat | cat" in a script (not on command line!)
7447 * and "killall -STOP cat" */
7448 if (G_interactive_fd) {
7449#if ENABLE_HUSH_JOB
7450 if (fg_pipe->alive_cmds != 0)
Denys Vlasenko16096292017-07-10 10:00:28 +02007451 insert_job_into_table(fg_pipe);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007452#endif
7453 return rcode;
7454 }
7455 if (fg_pipe->alive_cmds == 0)
7456 return rcode;
7457 }
7458 /* There are still running processes in the fg_pipe */
7459 return -1;
7460 }
Denys Vlasenko10ad6222017-04-17 16:13:32 +02007461 /* It wasn't in fg_pipe, look for process in bg pipes */
Denys Vlasenko7e675362016-10-28 21:57:31 +02007462 }
7463
7464#if ENABLE_HUSH_JOB
7465 /* We were asked to wait for bg or orphaned children */
7466 /* No need to remember exitcode in this case */
7467 for (pi = G.job_list; pi; pi = pi->next) {
7468 for (i = 0; i < pi->num_cmds; i++) {
7469 if (pi->cmds[i].pid == childpid)
7470 goto found_pi_and_prognum;
7471 }
7472 }
7473 /* Happens when shell is used as init process (init=/bin/sh) */
7474 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
7475 return -1; /* this wasn't a process from fg_pipe */
7476
7477 found_pi_and_prognum:
7478 if (dead) {
7479 /* child exited */
Denys Vlasenko840a4352017-07-07 22:56:02 +02007480 int rcode = WEXITSTATUS(status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007481 if (WIFSIGNALED(status))
Denys Vlasenko840a4352017-07-07 22:56:02 +02007482 rcode = 128 + WTERMSIG(status);
7483 pi->cmds[i].cmd_exitcode = rcode;
7484 if (G.last_bg_pid == pi->cmds[i].pid)
7485 G.last_bg_pid_exitcode = rcode;
7486 pi->cmds[i].pid = 0;
Denys Vlasenko7e675362016-10-28 21:57:31 +02007487 pi->alive_cmds--;
7488 if (!pi->alive_cmds) {
Denys Vlasenko2ed74e22017-07-14 19:58:46 +02007489 if (G_interactive_fd) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007490 printf(JOB_STATUS_FORMAT, pi->jobid,
7491 "Done", pi->cmdtext);
Denys Vlasenko2ed74e22017-07-14 19:58:46 +02007492 delete_finished_job(pi);
7493 } else {
7494/*
7495 * bash deletes finished jobs from job table only in interactive mode,
7496 * after "jobs" cmd, or if pid of a new process matches one of the old ones
7497 * (see cleanup_dead_jobs(), delete_old_job(), J_NOTIFIED in bash source).
7498 * Testcase script: "(exit 3) & sleep 1; wait %1; echo $?" prints 3 in bash.
7499 * We only retain one "dead" job, if it's the single job on the list.
7500 * This covers most of real-world scenarios where this is useful.
7501 */
7502 if (pi != G.job_list)
7503 delete_finished_job(pi);
7504 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007505 }
7506 } else {
7507 /* child stopped */
7508 pi->stopped_cmds++;
7509 }
7510#endif
7511 return -1; /* this wasn't a process from fg_pipe */
7512}
7513
7514/* Check to see if any processes have exited -- if they have,
7515 * figure out why and see if a job has completed.
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007516 *
7517 * If non-NULL fg_pipe: wait for its completion or stop.
7518 * Return its exitcode or zero if stopped.
7519 *
7520 * Alternatively (fg_pipe == NULL, waitfor_pid != 0):
7521 * waitpid(WNOHANG), if waitfor_pid exits or stops, return exitcode+1,
7522 * else return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for)
7523 * or 0 if no children changed status.
7524 *
7525 * Alternatively (fg_pipe == NULL, waitfor_pid == 0),
7526 * return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for)
7527 * or 0 if no children changed status.
Denys Vlasenko7e675362016-10-28 21:57:31 +02007528 */
7529static int checkjobs(struct pipe *fg_pipe, pid_t waitfor_pid)
7530{
7531 int attributes;
7532 int status;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007533 int rcode = 0;
7534
7535 debug_printf_jobs("checkjobs %p\n", fg_pipe);
7536
7537 attributes = WUNTRACED;
7538 if (fg_pipe == NULL)
7539 attributes |= WNOHANG;
7540
7541 errno = 0;
7542#if ENABLE_HUSH_FAST
7543 if (G.handled_SIGCHLD == G.count_SIGCHLD) {
7544//bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p",
7545//getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe);
7546 /* There was neither fork nor SIGCHLD since last waitpid */
7547 /* Avoid doing waitpid syscall if possible */
7548 if (!G.we_have_children) {
7549 errno = ECHILD;
7550 return -1;
7551 }
7552 if (fg_pipe == NULL) { /* is WNOHANG set? */
7553 /* We have children, but they did not exit
7554 * or stop yet (we saw no SIGCHLD) */
7555 return 0;
7556 }
7557 /* else: !WNOHANG, waitpid will block, can't short-circuit */
7558 }
7559#endif
7560
7561/* Do we do this right?
7562 * bash-3.00# sleep 20 | false
7563 * <ctrl-Z pressed>
7564 * [3]+ Stopped sleep 20 | false
7565 * bash-3.00# echo $?
7566 * 1 <========== bg pipe is not fully done, but exitcode is already known!
7567 * [hush 1.14.0: yes we do it right]
7568 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007569 while (1) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007570 pid_t childpid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007571#if ENABLE_HUSH_FAST
Denys Vlasenko7e675362016-10-28 21:57:31 +02007572 int i;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007573 i = G.count_SIGCHLD;
7574#endif
7575 childpid = waitpid(-1, &status, attributes);
7576 if (childpid <= 0) {
7577 if (childpid && errno != ECHILD)
7578 bb_perror_msg("waitpid");
7579#if ENABLE_HUSH_FAST
7580 else { /* Until next SIGCHLD, waitpid's are useless */
7581 G.we_have_children = (childpid == 0);
7582 G.handled_SIGCHLD = i;
7583//bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
7584 }
7585#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02007586 /* ECHILD (no children), or 0 (no change in children status) */
7587 rcode = childpid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007588 break;
7589 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007590 rcode = process_wait_result(fg_pipe, childpid, status);
7591 if (rcode >= 0) {
7592 /* fg_pipe exited or stopped */
7593 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007594 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007595 if (childpid == waitfor_pid) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007596 debug_printf_exec("childpid==waitfor_pid:%d status:0x%08x\n", childpid, status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007597 rcode = WEXITSTATUS(status);
7598 if (WIFSIGNALED(status))
7599 rcode = 128 + WTERMSIG(status);
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007600 if (WIFSTOPPED(status))
7601 /* bash: "cmd & wait $!" and cmd stops: $? = 128 + stopsig */
7602 rcode = 128 + WSTOPSIG(status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007603 rcode++;
7604 break; /* "wait PID" called us, give it exitcode+1 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007605 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007606 /* This wasn't one of our processes, or */
7607 /* fg_pipe still has running processes, do waitpid again */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007608 } /* while (waitpid succeeds)... */
7609
7610 return rcode;
7611}
7612
7613#if ENABLE_HUSH_JOB
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02007614static int checkjobs_and_fg_shell(struct pipe *fg_pipe)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007615{
7616 pid_t p;
Denys Vlasenko7e675362016-10-28 21:57:31 +02007617 int rcode = checkjobs(fg_pipe, 0 /*(no pid to wait for)*/);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007618 if (G_saved_tty_pgrp) {
7619 /* Job finished, move the shell to the foreground */
7620 p = getpgrp(); /* our process group id */
7621 debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p);
7622 tcsetpgrp(G_interactive_fd, p);
7623 }
7624 return rcode;
7625}
7626#endif
7627
7628/* Start all the jobs, but don't wait for anything to finish.
7629 * See checkjobs().
7630 *
7631 * Return code is normally -1, when the caller has to wait for children
7632 * to finish to determine the exit status of the pipe. If the pipe
7633 * is a simple builtin command, however, the action is done by the
7634 * time run_pipe returns, and the exit code is provided as the
7635 * return value.
7636 *
7637 * Returns -1 only if started some children. IOW: we have to
7638 * mask out retvals of builtins etc with 0xff!
7639 *
7640 * The only case when we do not need to [v]fork is when the pipe
7641 * is single, non-backgrounded, non-subshell command. Examples:
7642 * cmd ; ... { list } ; ...
7643 * cmd && ... { list } && ...
7644 * cmd || ... { list } || ...
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007645 * If it is, then we can run cmd as a builtin, NOFORK,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007646 * or (if SH_STANDALONE) an applet, and we can run the { list }
7647 * with run_list. If it isn't one of these, we fork and exec cmd.
7648 *
7649 * Cases when we must fork:
7650 * non-single: cmd | cmd
7651 * backgrounded: cmd & { list } &
7652 * subshell: ( list ) [&]
7653 */
7654#if !ENABLE_HUSH_MODE_X
Denys Vlasenko26777aa2010-11-22 23:49:10 +01007655#define redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel, argv_expanded) \
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007656 redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel)
7657#endif
7658static int redirect_and_varexp_helper(char ***new_env_p,
7659 struct variable **old_vars_p,
7660 struct command *command,
Denys Vlasenko2db74612017-07-07 22:07:28 +02007661 struct squirrel **sqp,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007662 char **argv_expanded)
7663{
7664 /* setup_redirects acts on file descriptors, not FILEs.
7665 * This is perfect for work that comes after exec().
7666 * Is it really safe for inline use? Experimentally,
7667 * things seem to work. */
Denys Vlasenko2db74612017-07-07 22:07:28 +02007668 int rcode = setup_redirects(command, sqp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007669 if (rcode == 0) {
7670 char **new_env = expand_assignments(command->argv, command->assignment_cnt);
7671 *new_env_p = new_env;
7672 dump_cmd_in_x_mode(new_env);
7673 dump_cmd_in_x_mode(argv_expanded);
7674 if (old_vars_p)
7675 *old_vars_p = set_vars_and_save_old(new_env);
7676 }
7677 return rcode;
7678}
7679static NOINLINE int run_pipe(struct pipe *pi)
7680{
7681 static const char *const null_ptr = NULL;
7682
7683 int cmd_no;
7684 int next_infd;
7685 struct command *command;
7686 char **argv_expanded;
7687 char **argv;
Denys Vlasenko2db74612017-07-07 22:07:28 +02007688 struct squirrel *squirrel = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007689 int rcode;
7690
7691 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
7692 debug_enter();
7693
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02007694 /* Testcase: set -- q w e; (IFS='' echo "$*"; IFS=''; echo "$*"); echo "$*"
7695 * Result should be 3 lines: q w e, qwe, q w e
7696 */
7697 G.ifs = get_local_var_value("IFS");
7698 if (!G.ifs)
7699 G.ifs = defifs;
7700
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007701 IF_HUSH_JOB(pi->pgrp = -1;)
7702 pi->stopped_cmds = 0;
7703 command = &pi->cmds[0];
7704 argv_expanded = NULL;
7705
7706 if (pi->num_cmds != 1
7707 || pi->followup == PIPE_BG
7708 || command->cmd_type == CMD_SUBSHELL
7709 ) {
7710 goto must_fork;
7711 }
7712
7713 pi->alive_cmds = 1;
7714
7715 debug_printf_exec(": group:%p argv:'%s'\n",
7716 command->group, command->argv ? command->argv[0] : "NONE");
7717
7718 if (command->group) {
7719#if ENABLE_HUSH_FUNCTIONS
7720 if (command->cmd_type == CMD_FUNCDEF) {
7721 /* "executing" func () { list } */
7722 struct function *funcp;
7723
7724 funcp = new_function(command->argv[0]);
7725 /* funcp->name is already set to argv[0] */
7726 funcp->body = command->group;
7727# if !BB_MMU
7728 funcp->body_as_string = command->group_as_string;
7729 command->group_as_string = NULL;
7730# endif
7731 command->group = NULL;
7732 command->argv[0] = NULL;
7733 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
7734 funcp->parent_cmd = command;
7735 command->child_func = funcp;
7736
7737 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
7738 debug_leave();
7739 return EXIT_SUCCESS;
7740 }
7741#endif
7742 /* { list } */
7743 debug_printf("non-subshell group\n");
7744 rcode = 1; /* exitcode if redir failed */
Denys Vlasenko2db74612017-07-07 22:07:28 +02007745 if (setup_redirects(command, &squirrel) == 0) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007746 debug_printf_exec(": run_list\n");
7747 rcode = run_list(command->group) & 0xff;
7748 }
7749 restore_redirects(squirrel);
7750 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7751 debug_leave();
7752 debug_printf_exec("run_pipe: return %d\n", rcode);
7753 return rcode;
7754 }
7755
7756 argv = command->argv ? command->argv : (char **) &null_ptr;
7757 {
7758 const struct built_in_command *x;
7759#if ENABLE_HUSH_FUNCTIONS
7760 const struct function *funcp;
7761#else
7762 enum { funcp = 0 };
7763#endif
7764 char **new_env = NULL;
7765 struct variable *old_vars = NULL;
7766
7767 if (argv[command->assignment_cnt] == NULL) {
7768 /* Assignments, but no command */
7769 /* Ensure redirects take effect (that is, create files).
7770 * Try "a=t >file" */
7771#if 0 /* A few cases in testsuite fail with this code. FIXME */
Denys Vlasenko2db74612017-07-07 22:07:28 +02007772 rcode = redirect_and_varexp_helper(&new_env, /*old_vars:*/ NULL, command, &squirrel, /*argv_expanded:*/ NULL);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007773 /* Set shell variables */
7774 if (new_env) {
7775 argv = new_env;
7776 while (*argv) {
Denys Vlasenko38ef39a2017-07-18 01:40:01 +02007777 if (set_local_var(*argv, /*flag:*/ 0)) {
7778 /* assignment to readonly var / putenv error? */
7779 rcode = 1;
7780 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007781 argv++;
7782 }
7783 }
7784 /* Redirect error sets $? to 1. Otherwise,
7785 * if evaluating assignment value set $?, retain it.
7786 * Try "false; q=`exit 2`; echo $?" - should print 2: */
7787 if (rcode == 0)
7788 rcode = G.last_exitcode;
7789 /* Exit, _skipping_ variable restoring code: */
7790 goto clean_up_and_ret0;
7791
7792#else /* Older, bigger, but more correct code */
7793
Denys Vlasenko2db74612017-07-07 22:07:28 +02007794 rcode = setup_redirects(command, &squirrel);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007795 restore_redirects(squirrel);
7796 /* Set shell variables */
7797 if (G_x_mode)
7798 bb_putchar_stderr('+');
7799 while (*argv) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02007800 char *p = expand_string_to_string(*argv, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007801 if (G_x_mode)
7802 fprintf(stderr, " %s", p);
7803 debug_printf_exec("set shell var:'%s'->'%s'\n",
7804 *argv, p);
Denys Vlasenko38ef39a2017-07-18 01:40:01 +02007805 if (set_local_var(p, /*flag:*/ 0)) {
7806 /* assignment to readonly var / putenv error? */
7807 rcode = 1;
7808 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007809 argv++;
7810 }
7811 if (G_x_mode)
7812 bb_putchar_stderr('\n');
7813 /* Redirect error sets $? to 1. Otherwise,
7814 * if evaluating assignment value set $?, retain it.
7815 * Try "false; q=`exit 2`; echo $?" - should print 2: */
7816 if (rcode == 0)
7817 rcode = G.last_exitcode;
7818 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7819 debug_leave();
7820 debug_printf_exec("run_pipe: return %d\n", rcode);
7821 return rcode;
7822#endif
7823 }
7824
7825 /* Expand the rest into (possibly) many strings each */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01007826#if BASH_TEST2
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007827 if (command->cmd_type == CMD_SINGLEWORD_NOGLOB) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007828 argv_expanded = expand_strvec_to_strvec_singleword_noglob(argv + command->assignment_cnt);
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007829 } else
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007830#endif
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007831 {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007832 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
7833 }
7834
7835 /* if someone gives us an empty string: `cmd with empty output` */
7836 if (!argv_expanded[0]) {
7837 free(argv_expanded);
7838 debug_leave();
7839 return G.last_exitcode;
7840 }
7841
7842 x = find_builtin(argv_expanded[0]);
7843#if ENABLE_HUSH_FUNCTIONS
7844 funcp = NULL;
7845 if (!x)
7846 funcp = find_function(argv_expanded[0]);
7847#endif
7848 if (x || funcp) {
7849 if (!funcp) {
7850 if (x->b_function == builtin_exec && argv_expanded[1] == NULL) {
7851 debug_printf("exec with redirects only\n");
7852 rcode = setup_redirects(command, NULL);
Denys Vlasenko869994c2016-08-20 15:16:00 +02007853 /* rcode=1 can be if redir file can't be opened */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007854 goto clean_up_and_ret1;
7855 }
7856 }
Denys Vlasenko2db74612017-07-07 22:07:28 +02007857 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, &squirrel, argv_expanded);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007858 if (rcode == 0) {
7859 if (!funcp) {
7860 debug_printf_exec(": builtin '%s' '%s'...\n",
7861 x->b_cmd, argv_expanded[1]);
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01007862 fflush_all();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007863 rcode = x->b_function(argv_expanded) & 0xff;
7864 fflush_all();
7865 }
7866#if ENABLE_HUSH_FUNCTIONS
7867 else {
7868# if ENABLE_HUSH_LOCAL
7869 struct variable **sv;
7870 sv = G.shadowed_vars_pp;
7871 G.shadowed_vars_pp = &old_vars;
7872# endif
7873 debug_printf_exec(": function '%s' '%s'...\n",
7874 funcp->name, argv_expanded[1]);
7875 rcode = run_function(funcp, argv_expanded) & 0xff;
7876# if ENABLE_HUSH_LOCAL
7877 G.shadowed_vars_pp = sv;
7878# endif
7879 }
7880#endif
7881 }
7882 clean_up_and_ret:
7883 unset_vars(new_env);
7884 add_vars(old_vars);
7885/* clean_up_and_ret0: */
7886 restore_redirects(squirrel);
7887 clean_up_and_ret1:
7888 free(argv_expanded);
7889 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7890 debug_leave();
7891 debug_printf_exec("run_pipe return %d\n", rcode);
7892 return rcode;
7893 }
7894
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007895 if (ENABLE_FEATURE_SH_NOFORK) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007896 int n = find_applet_by_name(argv_expanded[0]);
7897 if (n >= 0 && APPLET_IS_NOFORK(n)) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02007898 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, &squirrel, argv_expanded);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007899 if (rcode == 0) {
7900 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
7901 argv_expanded[0], argv_expanded[1]);
7902 rcode = run_nofork_applet(n, argv_expanded);
7903 }
7904 goto clean_up_and_ret;
7905 }
7906 }
7907 /* It is neither builtin nor applet. We must fork. */
7908 }
7909
7910 must_fork:
7911 /* NB: argv_expanded may already be created, and that
7912 * might include `cmd` runs! Do not rerun it! We *must*
7913 * use argv_expanded if it's non-NULL */
7914
7915 /* Going to fork a child per each pipe member */
7916 pi->alive_cmds = 0;
7917 next_infd = 0;
7918
7919 cmd_no = 0;
7920 while (cmd_no < pi->num_cmds) {
7921 struct fd_pair pipefds;
7922#if !BB_MMU
7923 volatile nommu_save_t nommu_save;
7924 nommu_save.new_env = NULL;
7925 nommu_save.old_vars = NULL;
7926 nommu_save.argv = NULL;
7927 nommu_save.argv_from_re_execing = NULL;
7928#endif
7929 command = &pi->cmds[cmd_no];
7930 cmd_no++;
7931 if (command->argv) {
7932 debug_printf_exec(": pipe member '%s' '%s'...\n",
7933 command->argv[0], command->argv[1]);
7934 } else {
7935 debug_printf_exec(": pipe member with no argv\n");
7936 }
7937
7938 /* pipes are inserted between pairs of commands */
7939 pipefds.rd = 0;
7940 pipefds.wr = 1;
7941 if (cmd_no < pi->num_cmds)
7942 xpiped_pair(pipefds);
7943
7944 command->pid = BB_MMU ? fork() : vfork();
7945 if (!command->pid) { /* child */
7946#if ENABLE_HUSH_JOB
7947 disable_restore_tty_pgrp_on_exit();
7948 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
7949
7950 /* Every child adds itself to new process group
7951 * with pgid == pid_of_first_child_in_pipe */
7952 if (G.run_list_level == 1 && G_interactive_fd) {
7953 pid_t pgrp;
7954 pgrp = pi->pgrp;
7955 if (pgrp < 0) /* true for 1st process only */
7956 pgrp = getpid();
7957 if (setpgid(0, pgrp) == 0
7958 && pi->followup != PIPE_BG
7959 && G_saved_tty_pgrp /* we have ctty */
7960 ) {
7961 /* We do it in *every* child, not just first,
7962 * to avoid races */
7963 tcsetpgrp(G_interactive_fd, pgrp);
7964 }
7965 }
7966#endif
7967 if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
7968 /* 1st cmd in backgrounded pipe
7969 * should have its stdin /dev/null'ed */
7970 close(0);
7971 if (open(bb_dev_null, O_RDONLY))
7972 xopen("/", O_RDONLY);
7973 } else {
7974 xmove_fd(next_infd, 0);
7975 }
7976 xmove_fd(pipefds.wr, 1);
7977 if (pipefds.rd > 1)
7978 close(pipefds.rd);
7979 /* Like bash, explicit redirects override pipes,
Denys Vlasenko869994c2016-08-20 15:16:00 +02007980 * and the pipe fd (fd#1) is available for dup'ing:
7981 * "cmd1 2>&1 | cmd2": fd#1 is duped to fd#2, thus stderr
7982 * of cmd1 goes into pipe.
7983 */
7984 if (setup_redirects(command, NULL)) {
7985 /* Happens when redir file can't be opened:
7986 * $ hush -c 'echo FOO >&2 | echo BAR 3>/qwe/rty; echo BAZ'
7987 * FOO
7988 * hush: can't open '/qwe/rty': No such file or directory
7989 * BAZ
7990 * (echo BAR is not executed, it hits _exit(1) below)
7991 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007992 _exit(1);
Denys Vlasenko869994c2016-08-20 15:16:00 +02007993 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007994
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007995 /* Stores to nommu_save list of env vars putenv'ed
7996 * (NOMMU, on MMU we don't need that) */
7997 /* cast away volatility... */
7998 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
7999 /* pseudo_exec() does not return */
8000 }
8001
8002 /* parent or error */
8003#if ENABLE_HUSH_FAST
8004 G.count_SIGCHLD++;
8005//bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
8006#endif
8007 enable_restore_tty_pgrp_on_exit();
8008#if !BB_MMU
8009 /* Clean up after vforked child */
8010 free(nommu_save.argv);
8011 free(nommu_save.argv_from_re_execing);
8012 unset_vars(nommu_save.new_env);
8013 add_vars(nommu_save.old_vars);
8014#endif
8015 free(argv_expanded);
8016 argv_expanded = NULL;
8017 if (command->pid < 0) { /* [v]fork failed */
8018 /* Clearly indicate, was it fork or vfork */
8019 bb_perror_msg(BB_MMU ? "vfork"+1 : "vfork");
8020 } else {
8021 pi->alive_cmds++;
8022#if ENABLE_HUSH_JOB
8023 /* Second and next children need to know pid of first one */
8024 if (pi->pgrp < 0)
8025 pi->pgrp = command->pid;
8026#endif
8027 }
8028
8029 if (cmd_no > 1)
8030 close(next_infd);
8031 if (cmd_no < pi->num_cmds)
8032 close(pipefds.wr);
8033 /* Pass read (output) pipe end to next iteration */
8034 next_infd = pipefds.rd;
8035 }
8036
8037 if (!pi->alive_cmds) {
8038 debug_leave();
8039 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
8040 return 1;
8041 }
8042
8043 debug_leave();
8044 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
8045 return -1;
8046}
8047
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008048/* NB: called by pseudo_exec, and therefore must not modify any
8049 * global data until exec/_exit (we can be a child after vfork!) */
8050static int run_list(struct pipe *pi)
8051{
8052#if ENABLE_HUSH_CASE
8053 char *case_word = NULL;
8054#endif
8055#if ENABLE_HUSH_LOOPS
8056 struct pipe *loop_top = NULL;
8057 char **for_lcur = NULL;
8058 char **for_list = NULL;
8059#endif
8060 smallint last_followup;
8061 smalluint rcode;
8062#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
8063 smalluint cond_code = 0;
8064#else
8065 enum { cond_code = 0 };
8066#endif
8067#if HAS_KEYWORDS
Denys Vlasenko9b782552010-09-08 13:33:26 +02008068 smallint rword; /* RES_foo */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008069 smallint last_rword; /* ditto */
8070#endif
8071
8072 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
8073 debug_enter();
8074
8075#if ENABLE_HUSH_LOOPS
8076 /* Check syntax for "for" */
Denys Vlasenko0d6a4ec2010-12-18 01:34:49 +01008077 {
8078 struct pipe *cpipe;
8079 for (cpipe = pi; cpipe; cpipe = cpipe->next) {
8080 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
8081 continue;
8082 /* current word is FOR or IN (BOLD in comments below) */
8083 if (cpipe->next == NULL) {
8084 syntax_error("malformed for");
8085 debug_leave();
8086 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
8087 return 1;
8088 }
8089 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
8090 if (cpipe->next->res_word == RES_DO)
8091 continue;
8092 /* next word is not "do". It must be "in" then ("FOR v in ...") */
8093 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
8094 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
8095 ) {
8096 syntax_error("malformed for");
8097 debug_leave();
8098 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
8099 return 1;
8100 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008101 }
8102 }
8103#endif
8104
8105 /* Past this point, all code paths should jump to ret: label
8106 * in order to return, no direct "return" statements please.
8107 * This helps to ensure that no memory is leaked. */
8108
8109#if ENABLE_HUSH_JOB
8110 G.run_list_level++;
8111#endif
8112
8113#if HAS_KEYWORDS
8114 rword = RES_NONE;
8115 last_rword = RES_XXXX;
8116#endif
8117 last_followup = PIPE_SEQ;
8118 rcode = G.last_exitcode;
8119
8120 /* Go through list of pipes, (maybe) executing them. */
8121 for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008122 int r;
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008123 int sv_errexit_depth;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008124
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008125 if (G.flag_SIGINT)
8126 break;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02008127 if (G_flag_return_in_progress == 1)
8128 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008129
8130 IF_HAS_KEYWORDS(rword = pi->res_word;)
8131 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
8132 rword, cond_code, last_rword);
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008133
8134 sv_errexit_depth = G.errexit_depth;
8135 if (IF_HAS_KEYWORDS(rword == RES_IF || rword == RES_ELIF ||)
8136 pi->followup != PIPE_SEQ
8137 ) {
8138 G.errexit_depth++;
8139 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008140#if ENABLE_HUSH_LOOPS
8141 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
8142 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
8143 ) {
8144 /* start of a loop: remember where loop starts */
8145 loop_top = pi;
8146 G.depth_of_loop++;
8147 }
8148#endif
8149 /* Still in the same "if...", "then..." or "do..." branch? */
8150 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
8151 if ((rcode == 0 && last_followup == PIPE_OR)
8152 || (rcode != 0 && last_followup == PIPE_AND)
8153 ) {
8154 /* It is "<true> || CMD" or "<false> && CMD"
8155 * and we should not execute CMD */
8156 debug_printf_exec("skipped cmd because of || or &&\n");
8157 last_followup = pi->followup;
Denys Vlasenko3beab832013-04-07 18:16:58 +02008158 goto dont_check_jobs_but_continue;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008159 }
8160 }
8161 last_followup = pi->followup;
8162 IF_HAS_KEYWORDS(last_rword = rword;)
8163#if ENABLE_HUSH_IF
8164 if (cond_code) {
8165 if (rword == RES_THEN) {
8166 /* if false; then ... fi has exitcode 0! */
8167 G.last_exitcode = rcode = EXIT_SUCCESS;
8168 /* "if <false> THEN cmd": skip cmd */
8169 continue;
8170 }
8171 } else {
8172 if (rword == RES_ELSE || rword == RES_ELIF) {
8173 /* "if <true> then ... ELSE/ELIF cmd":
8174 * skip cmd and all following ones */
8175 break;
8176 }
8177 }
8178#endif
8179#if ENABLE_HUSH_LOOPS
8180 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
8181 if (!for_lcur) {
8182 /* first loop through for */
8183
8184 static const char encoded_dollar_at[] ALIGN1 = {
8185 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
8186 }; /* encoded representation of "$@" */
8187 static const char *const encoded_dollar_at_argv[] = {
8188 encoded_dollar_at, NULL
8189 }; /* argv list with one element: "$@" */
8190 char **vals;
8191
8192 vals = (char**)encoded_dollar_at_argv;
8193 if (pi->next->res_word == RES_IN) {
8194 /* if no variable values after "in" we skip "for" */
8195 if (!pi->next->cmds[0].argv) {
8196 G.last_exitcode = rcode = EXIT_SUCCESS;
8197 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
8198 break;
8199 }
8200 vals = pi->next->cmds[0].argv;
8201 } /* else: "for var; do..." -> assume "$@" list */
8202 /* create list of variable values */
8203 debug_print_strings("for_list made from", vals);
8204 for_list = expand_strvec_to_strvec(vals);
8205 for_lcur = for_list;
8206 debug_print_strings("for_list", for_list);
8207 }
8208 if (!*for_lcur) {
8209 /* "for" loop is over, clean up */
8210 free(for_list);
8211 for_list = NULL;
8212 for_lcur = NULL;
8213 break;
8214 }
8215 /* Insert next value from for_lcur */
8216 /* note: *for_lcur already has quotes removed, $var expanded, etc */
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02008217 set_local_var(xasprintf("%s=%s", pi->cmds[0].argv[0], *for_lcur++), /*flag:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008218 continue;
8219 }
8220 if (rword == RES_IN) {
8221 continue; /* "for v IN list;..." - "in" has no cmds anyway */
8222 }
8223 if (rword == RES_DONE) {
8224 continue; /* "done" has no cmds too */
8225 }
8226#endif
8227#if ENABLE_HUSH_CASE
8228 if (rword == RES_CASE) {
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008229 debug_printf_exec("CASE cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008230 case_word = expand_strvec_to_string(pi->cmds->argv);
Denys Vlasenkobd43c672017-07-05 23:12:15 +02008231 unbackslash(case_word);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008232 continue;
8233 }
8234 if (rword == RES_MATCH) {
8235 char **argv;
8236
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008237 debug_printf_exec("MATCH cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008238 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
8239 break;
8240 /* all prev words didn't match, does this one match? */
8241 argv = pi->cmds->argv;
8242 while (*argv) {
Denys Vlasenkobd43c672017-07-05 23:12:15 +02008243 char *pattern = expand_string_to_string(*argv, /*unbackslash:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008244 /* TODO: which FNM_xxx flags to use? */
8245 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
Denys Vlasenkobd43c672017-07-05 23:12:15 +02008246 debug_printf_exec("fnmatch(pattern:'%s',str:'%s'):%d\n", pattern, case_word, cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008247 free(pattern);
8248 if (cond_code == 0) { /* match! we will execute this branch */
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008249 free(case_word);
8250 case_word = NULL; /* make future "word)" stop */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008251 break;
8252 }
8253 argv++;
8254 }
8255 continue;
8256 }
8257 if (rword == RES_CASE_BODY) { /* inside of a case branch */
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008258 debug_printf_exec("CASE_BODY cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008259 if (cond_code != 0)
8260 continue; /* not matched yet, skip this pipe */
8261 }
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008262 if (rword == RES_ESAC) {
8263 debug_printf_exec("ESAC cond_code:%d\n", cond_code);
8264 if (case_word) {
8265 /* "case" did not match anything: still set $? (to 0) */
8266 G.last_exitcode = rcode = EXIT_SUCCESS;
8267 }
8268 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008269#endif
8270 /* Just pressing <enter> in shell should check for jobs.
8271 * OTOH, in non-interactive shell this is useless
8272 * and only leads to extra job checks */
8273 if (pi->num_cmds == 0) {
8274 if (G_interactive_fd)
8275 goto check_jobs_and_continue;
8276 continue;
8277 }
8278
8279 /* After analyzing all keywords and conditions, we decided
8280 * to execute this pipe. NB: have to do checkjobs(NULL)
8281 * after run_pipe to collect any background children,
8282 * even if list execution is to be stopped. */
8283 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008284#if ENABLE_HUSH_LOOPS
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008285 G.flag_break_continue = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008286#endif
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008287 rcode = r = run_pipe(pi); /* NB: rcode is a smalluint, r is int */
8288 if (r != -1) {
8289 /* We ran a builtin, function, or group.
8290 * rcode is already known
8291 * and we don't need to wait for anything. */
8292 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
8293 G.last_exitcode = rcode;
8294 check_and_run_traps();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008295#if ENABLE_HUSH_LOOPS
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008296 /* Was it "break" or "continue"? */
8297 if (G.flag_break_continue) {
8298 smallint fbc = G.flag_break_continue;
8299 /* We might fall into outer *loop*,
8300 * don't want to break it too */
8301 if (loop_top) {
8302 G.depth_break_continue--;
8303 if (G.depth_break_continue == 0)
8304 G.flag_break_continue = 0;
8305 /* else: e.g. "continue 2" should *break* once, *then* continue */
8306 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
8307 if (G.depth_break_continue != 0 || fbc == BC_BREAK) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02008308 checkjobs(NULL, 0 /*(no pid to wait for)*/);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008309 break;
8310 }
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008311 /* "continue": simulate end of loop */
8312 rword = RES_DONE;
8313 continue;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008314 }
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008315#endif
8316 if (G_flag_return_in_progress == 1) {
8317 checkjobs(NULL, 0 /*(no pid to wait for)*/);
8318 break;
8319 }
8320 } else if (pi->followup == PIPE_BG) {
8321 /* What does bash do with attempts to background builtins? */
8322 /* even bash 3.2 doesn't do that well with nested bg:
8323 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
8324 * I'm NOT treating inner &'s as jobs */
8325#if ENABLE_HUSH_JOB
8326 if (G.run_list_level == 1)
Denys Vlasenko16096292017-07-10 10:00:28 +02008327 insert_job_into_table(pi);
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008328#endif
8329 /* Last command's pid goes to $! */
8330 G.last_bg_pid = pi->cmds[pi->num_cmds - 1].pid;
Denys Vlasenko840a4352017-07-07 22:56:02 +02008331 G.last_bg_pid_exitcode = 0;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008332 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
8333/* Check pi->pi_inverted? "! sleep 1 & echo $?": bash says 1. dash and ash says 0 */
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008334 rcode = EXIT_SUCCESS;
8335 goto check_traps;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008336 } else {
8337#if ENABLE_HUSH_JOB
8338 if (G.run_list_level == 1 && G_interactive_fd) {
8339 /* Waits for completion, then fg's main shell */
8340 rcode = checkjobs_and_fg_shell(pi);
8341 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008342 goto check_traps;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008343 }
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008344#endif
8345 /* This one just waits for completion */
8346 rcode = checkjobs(pi, 0 /*(no pid to wait for)*/);
8347 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
8348 check_traps:
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008349 G.last_exitcode = rcode;
8350 check_and_run_traps();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008351 }
8352
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008353 /* Handle "set -e" */
8354 if (rcode != 0 && G.o_opt[OPT_O_ERREXIT]) {
8355 debug_printf_exec("ERREXIT:1 errexit_depth:%d\n", G.errexit_depth);
8356 if (G.errexit_depth == 0)
8357 hush_exit(rcode);
8358 }
8359 G.errexit_depth = sv_errexit_depth;
8360
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008361 /* Analyze how result affects subsequent commands */
8362#if ENABLE_HUSH_IF
8363 if (rword == RES_IF || rword == RES_ELIF)
8364 cond_code = rcode;
8365#endif
Denys Vlasenko3beab832013-04-07 18:16:58 +02008366 check_jobs_and_continue:
Denys Vlasenko7e675362016-10-28 21:57:31 +02008367 checkjobs(NULL, 0 /*(no pid to wait for)*/);
Denys Vlasenko3beab832013-04-07 18:16:58 +02008368 dont_check_jobs_but_continue: ;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008369#if ENABLE_HUSH_LOOPS
8370 /* Beware of "while false; true; do ..."! */
Denys Vlasenko00ae9892011-05-31 17:35:45 +02008371 if (pi->next
8372 && (pi->next->res_word == RES_DO || pi->next->res_word == RES_DONE)
Denys Vlasenko56a3b822011-06-01 12:47:07 +02008373 /* check for RES_DONE is needed for "while ...; do \n done" case */
Denys Vlasenko00ae9892011-05-31 17:35:45 +02008374 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008375 if (rword == RES_WHILE) {
8376 if (rcode) {
8377 /* "while false; do...done" - exitcode 0 */
8378 G.last_exitcode = rcode = EXIT_SUCCESS;
8379 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
Denys Vlasenko3beab832013-04-07 18:16:58 +02008380 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008381 }
8382 }
8383 if (rword == RES_UNTIL) {
8384 if (!rcode) {
8385 debug_printf_exec(": until expr is true: breaking\n");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008386 break;
8387 }
8388 }
8389 }
8390#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008391 } /* for (pi) */
8392
8393#if ENABLE_HUSH_JOB
8394 G.run_list_level--;
8395#endif
8396#if ENABLE_HUSH_LOOPS
8397 if (loop_top)
8398 G.depth_of_loop--;
8399 free(for_list);
8400#endif
8401#if ENABLE_HUSH_CASE
8402 free(case_word);
8403#endif
8404 debug_leave();
8405 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
8406 return rcode;
8407}
8408
8409/* Select which version we will use */
8410static int run_and_free_list(struct pipe *pi)
8411{
8412 int rcode = 0;
8413 debug_printf_exec("run_and_free_list entered\n");
Dan Fandrich85c62472010-11-20 13:05:17 -08008414 if (!G.o_opt[OPT_O_NOEXEC]) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008415 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
8416 rcode = run_list(pi);
8417 }
8418 /* free_pipe_list has the side effect of clearing memory.
8419 * In the long run that function can be merged with run_list,
8420 * but doing that now would hobble the debugging effort. */
8421 free_pipe_list(pi);
8422 debug_printf_exec("run_and_free_list return %d\n", rcode);
8423 return rcode;
8424}
8425
8426
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008427static void install_sighandlers(unsigned mask)
Eric Andersen52a97ca2001-06-22 06:49:26 +00008428{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008429 sighandler_t old_handler;
8430 unsigned sig = 0;
8431 while ((mask >>= 1) != 0) {
8432 sig++;
8433 if (!(mask & 1))
8434 continue;
Denys Vlasenko0806e402011-05-12 23:06:20 +02008435 old_handler = install_sighandler(sig, pick_sighandler(sig));
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008436 /* POSIX allows shell to re-enable SIGCHLD
8437 * even if it was SIG_IGN on entry.
8438 * Therefore we skip IGN check for it:
8439 */
8440 if (sig == SIGCHLD)
8441 continue;
8442 if (old_handler == SIG_IGN) {
8443 /* oops... restore back to IGN, and record this fact */
Denys Vlasenko0806e402011-05-12 23:06:20 +02008444 install_sighandler(sig, old_handler);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008445#if ENABLE_HUSH_TRAP
8446 if (!G_traps)
8447 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
8448 free(G_traps[sig]);
8449 G_traps[sig] = xzalloc(1); /* == xstrdup(""); */
8450#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008451 }
8452 }
8453}
8454
8455/* Called a few times only (or even once if "sh -c") */
8456static void install_special_sighandlers(void)
8457{
Denis Vlasenkof9375282009-04-05 19:13:39 +00008458 unsigned mask;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008459
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008460 /* Which signals are shell-special? */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008461 mask = (1 << SIGQUIT) | (1 << SIGCHLD);
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008462 if (G_interactive_fd) {
8463 mask |= SPECIAL_INTERACTIVE_SIGS;
8464 if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008465 mask |= SPECIAL_JOBSTOP_SIGS;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008466 }
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008467 /* Careful, do not re-install handlers we already installed */
8468 if (G.special_sig_mask != mask) {
8469 unsigned diff = mask & ~G.special_sig_mask;
8470 G.special_sig_mask = mask;
8471 install_sighandlers(diff);
8472 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008473}
8474
8475#if ENABLE_HUSH_JOB
8476/* helper */
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008477/* Set handlers to restore tty pgrp and exit */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008478static void install_fatal_sighandlers(void)
Denis Vlasenkof9375282009-04-05 19:13:39 +00008479{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008480 unsigned mask;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008481
8482 /* We will restore tty pgrp on these signals */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008483 mask = 0
Denys Vlasenko830ea352016-11-08 04:59:11 +01008484 /*+ (1 << SIGILL ) * HUSH_DEBUG*/
8485 /*+ (1 << SIGFPE ) * HUSH_DEBUG*/
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008486 + (1 << SIGBUS ) * HUSH_DEBUG
8487 + (1 << SIGSEGV) * HUSH_DEBUG
Denys Vlasenko830ea352016-11-08 04:59:11 +01008488 /*+ (1 << SIGTRAP) * HUSH_DEBUG*/
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008489 + (1 << SIGABRT)
8490 /* bash 3.2 seems to handle these just like 'fatal' ones */
8491 + (1 << SIGPIPE)
8492 + (1 << SIGALRM)
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008493 /* if we are interactive, SIGHUP, SIGTERM and SIGINT are special sigs.
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008494 * if we aren't interactive... but in this case
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008495 * we never want to restore pgrp on exit, and this fn is not called
8496 */
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008497 /*+ (1 << SIGHUP )*/
8498 /*+ (1 << SIGTERM)*/
8499 /*+ (1 << SIGINT )*/
8500 ;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008501 G_fatal_sig_mask = mask;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008502
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008503 install_sighandlers(mask);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008504}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00008505#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00008506
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008507static int set_mode(int state, char mode, const char *o_opt)
Denis Vlasenkod5762932009-03-31 11:22:57 +00008508{
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008509 int idx;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008510 switch (mode) {
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008511 case 'n':
Dan Fandrich85c62472010-11-20 13:05:17 -08008512 G.o_opt[OPT_O_NOEXEC] = state;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008513 break;
8514 case 'x':
8515 IF_HUSH_MODE_X(G_x_mode = state;)
8516 break;
8517 case 'o':
8518 if (!o_opt) {
8519 /* "set -+o" without parameter.
8520 * in bash, set -o produces this output:
8521 * pipefail off
8522 * and set +o:
8523 * set +o pipefail
8524 * We always use the second form.
8525 */
8526 const char *p = o_opt_strings;
8527 idx = 0;
8528 while (*p) {
8529 printf("set %co %s\n", (G.o_opt[idx] ? '-' : '+'), p);
8530 idx++;
8531 p += strlen(p) + 1;
8532 }
8533 break;
8534 }
8535 idx = index_in_strings(o_opt_strings, o_opt);
8536 if (idx >= 0) {
8537 G.o_opt[idx] = state;
8538 break;
8539 }
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008540 case 'e':
8541 G.o_opt[OPT_O_ERREXIT] = state;
8542 break;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008543 default:
8544 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008545 }
8546 return EXIT_SUCCESS;
8547}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008548
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00008549int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00008550int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00008551{
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008552 enum {
8553 OPT_login = (1 << 0),
8554 };
8555 unsigned flags;
Eric Andersen25f27032001-04-26 23:22:31 +00008556 int opt;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008557 unsigned builtin_argc;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008558 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008559 struct variable *cur_var;
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008560 struct variable *shell_ver;
Eric Andersenbc604a22001-05-16 05:24:03 +00008561
Denis Vlasenko574f2f42008-02-27 18:41:59 +00008562 INIT_G();
Denys Vlasenko10c01312011-05-11 11:49:21 +02008563 if (EXIT_SUCCESS != 0) /* if EXIT_SUCCESS == 0, it is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008564 G.last_exitcode = EXIT_SUCCESS;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02008565
Denys Vlasenko10c01312011-05-11 11:49:21 +02008566#if ENABLE_HUSH_FAST
8567 G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
8568#endif
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008569#if !BB_MMU
8570 G.argv0_for_re_execing = argv[0];
8571#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008572 /* Deal with HUSH_VERSION */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008573 shell_ver = xzalloc(sizeof(*shell_ver));
8574 shell_ver->flg_export = 1;
8575 shell_ver->flg_read_only = 1;
Denys Vlasenko4f870492010-09-10 11:06:01 +02008576 /* Code which handles ${var<op>...} needs writable values for all variables,
Denys Vlasenko36f774a2010-09-05 14:45:38 +02008577 * therefore we xstrdup: */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008578 shell_ver->varstr = xstrdup(hush_version_str);
Denys Vlasenko605067b2010-09-06 12:10:51 +02008579 /* Create shell local variables from the values
8580 * currently living in the environment */
Denis Vlasenkof886fd22008-10-13 12:36:05 +00008581 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008582 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008583 G.top_var = shell_ver;
Denis Vlasenko87a86552008-07-29 19:43:10 +00008584 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008585 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008586 if (e) while (*e) {
8587 char *value = strchr(*e, '=');
8588 if (value) { /* paranoia */
8589 cur_var->next = xzalloc(sizeof(*cur_var));
8590 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00008591 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008592 cur_var->max_len = strlen(*e);
8593 cur_var->flg_export = 1;
8594 }
8595 e++;
8596 }
Denys Vlasenko605067b2010-09-06 12:10:51 +02008597 /* (Re)insert HUSH_VERSION into env (AFTER we scanned the env!) */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008598 debug_printf_env("putenv '%s'\n", shell_ver->varstr);
8599 putenv(shell_ver->varstr);
Denys Vlasenko6db47842009-09-05 20:15:17 +02008600
8601 /* Export PWD */
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02008602 set_pwd_var(SETFLAG_EXPORT);
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008603
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01008604#if BASH_HOSTNAME_VAR
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008605 /* Set (but not export) HOSTNAME unless already set */
8606 if (!get_local_var_value("HOSTNAME")) {
8607 struct utsname uts;
8608 uname(&uts);
8609 set_local_var_from_halves("HOSTNAME", uts.nodename);
8610 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02008611 /* bash also exports SHLVL and _,
8612 * and sets (but doesn't export) the following variables:
8613 * BASH=/bin/bash
8614 * BASH_VERSINFO=([0]="3" [1]="2" [2]="0" [3]="1" [4]="release" [5]="i386-pc-linux-gnu")
8615 * BASH_VERSION='3.2.0(1)-release'
8616 * HOSTTYPE=i386
8617 * MACHTYPE=i386-pc-linux-gnu
8618 * OSTYPE=linux-gnu
Denys Vlasenkodea47882009-10-09 15:40:49 +02008619 * PPID=<NNNNN> - we also do it elsewhere
Denys Vlasenko6db47842009-09-05 20:15:17 +02008620 * EUID=<NNNNN>
8621 * UID=<NNNNN>
8622 * GROUPS=()
8623 * LINES=<NNN>
8624 * COLUMNS=<NNN>
8625 * BASH_ARGC=()
8626 * BASH_ARGV=()
8627 * BASH_LINENO=()
8628 * BASH_SOURCE=()
8629 * DIRSTACK=()
8630 * PIPESTATUS=([0]="0")
8631 * HISTFILE=/<xxx>/.bash_history
8632 * HISTFILESIZE=500
8633 * HISTSIZE=500
8634 * MAILCHECK=60
8635 * PATH=/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:.
8636 * SHELL=/bin/bash
8637 * SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor
8638 * TERM=dumb
8639 * OPTERR=1
8640 * OPTIND=1
8641 * IFS=$' \t\n'
8642 * PS1='\s-\v\$ '
8643 * PS2='> '
8644 * PS4='+ '
8645 */
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008646#endif
Denys Vlasenko6db47842009-09-05 20:15:17 +02008647
Denis Vlasenko38f63192007-01-22 09:03:07 +00008648#if ENABLE_FEATURE_EDITING
Denys Vlasenkoe45af7a2011-09-04 16:15:24 +02008649 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00008650#endif
Denys Vlasenko99862cb2010-09-12 17:34:13 +02008651
Eric Andersen94ac2442001-05-22 19:05:18 +00008652 /* Initialize some more globals to non-zero values */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00008653 cmdedit_update_prompt();
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00008654
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02008655 die_func = restore_ttypgrp_and__exit;
Denis Vlasenkoed782372009-04-10 00:45:02 +00008656
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008657 /* Shell is non-interactive at first. We need to call
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008658 * install_special_sighandlers() if we are going to execute "sh <script>",
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008659 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008660 * If we later decide that we are interactive, we run install_special_sighandlers()
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008661 * in order to intercept (more) signals.
8662 */
8663
8664 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00008665 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008666 flags = (argv[0] && argv[0][0] == '-') ? OPT_login : 0;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008667 builtin_argc = 0;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008668 while (1) {
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008669 opt = getopt(argc, argv, "+c:exinsl"
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008670#if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00008671 "<:$:R:V:"
8672# if ENABLE_HUSH_FUNCTIONS
8673 "F:"
8674# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008675#endif
8676 );
8677 if (opt <= 0)
8678 break;
Eric Andersen25f27032001-04-26 23:22:31 +00008679 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008680 case 'c':
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008681 /* Possibilities:
8682 * sh ... -c 'script'
8683 * sh ... -c 'script' ARG0 [ARG1...]
8684 * On NOMMU, if builtin_argc != 0,
Denys Vlasenko17323a62010-01-28 01:57:05 +01008685 * sh ... -c 'builtin' BARGV... "" ARG0 [ARG1...]
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008686 * "" needs to be replaced with NULL
8687 * and BARGV vector fed to builtin function.
Denys Vlasenko17323a62010-01-28 01:57:05 +01008688 * Note: the form without ARG0 never happens:
8689 * sh ... -c 'builtin' BARGV... ""
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008690 */
Denys Vlasenkodea47882009-10-09 15:40:49 +02008691 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008692 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02008693 G.root_ppid = getppid();
8694 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008695 G.global_argv = argv + optind;
8696 G.global_argc = argc - optind;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008697 if (builtin_argc) {
8698 /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */
8699 const struct built_in_command *x;
8700
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008701 install_special_sighandlers();
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008702 x = find_builtin(optarg);
8703 if (x) { /* paranoia */
8704 G.global_argc -= builtin_argc; /* skip [BARGV...] "" */
8705 G.global_argv += builtin_argc;
8706 G.global_argv[-1] = NULL; /* replace "" */
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01008707 fflush_all();
Denys Vlasenko17323a62010-01-28 01:57:05 +01008708 G.last_exitcode = x->b_function(argv + optind - 1);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008709 }
8710 goto final_return;
8711 }
8712 if (!G.global_argv[0]) {
8713 /* -c 'script' (no params): prevent empty $0 */
8714 G.global_argv--; /* points to argv[i] of 'script' */
8715 G.global_argv[0] = argv[0];
Denys Vlasenko5ae8f1c2010-05-22 06:32:11 +02008716 G.global_argc++;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008717 } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008718 install_special_sighandlers();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008719 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008720 goto final_return;
8721 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00008722 /* Well, we cannot just declare interactiveness,
8723 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008724 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008725 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00008726 case 's':
8727 /* "-s" means "read from stdin", but this is how we always
8728 * operate, so simply do nothing here. */
8729 break;
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008730 case 'l':
8731 flags |= OPT_login;
8732 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008733#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00008734 case '<': /* "big heredoc" support */
Denys Vlasenko729ecb82010-06-07 14:14:26 +02008735 full_write1_str(optarg);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00008736 _exit(0);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008737 case '$': {
8738 unsigned long long empty_trap_mask;
8739
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008740 G.root_pid = bb_strtou(optarg, &optarg, 16);
8741 optarg++;
Denys Vlasenkodea47882009-10-09 15:40:49 +02008742 G.root_ppid = bb_strtou(optarg, &optarg, 16);
8743 optarg++;
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008744 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
8745 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008746 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008747 optarg++;
8748 builtin_argc = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008749 optarg++;
8750 empty_trap_mask = bb_strtoull(optarg, &optarg, 16);
8751 if (empty_trap_mask != 0) {
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02008752 IF_HUSH_TRAP(int sig;)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008753 install_special_sighandlers();
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02008754# if ENABLE_HUSH_TRAP
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008755 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008756 for (sig = 1; sig < NSIG; sig++) {
8757 if (empty_trap_mask & (1LL << sig)) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008758 G_traps[sig] = xzalloc(1); /* == xstrdup(""); */
Denys Vlasenko0806e402011-05-12 23:06:20 +02008759 install_sighandler(sig, SIG_IGN);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008760 }
8761 }
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02008762# endif
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008763 }
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008764# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008765 optarg++;
8766 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008767# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008768 break;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008769 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008770 case 'R':
8771 case 'V':
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02008772 set_local_var(xstrdup(optarg), opt == 'R' ? SETFLAG_MAKE_RO : 0);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008773 break;
Denis Vlasenkobc569742009-04-12 20:35:19 +00008774# if ENABLE_HUSH_FUNCTIONS
8775 case 'F': {
8776 struct function *funcp = new_function(optarg);
8777 /* funcp->name is already set to optarg */
8778 /* funcp->body is set to NULL. It's a special case. */
8779 funcp->body_as_string = argv[optind];
8780 optind++;
8781 break;
8782 }
8783# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008784#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008785 case 'n':
8786 case 'x':
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008787 case 'e':
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008788 if (set_mode(1, opt, NULL) == 0) /* no error */
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008789 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008790 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008791#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008792 fprintf(stderr, "Usage: sh [FILE]...\n"
8793 " or: sh -c command [args]...\n\n");
8794 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008795#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008796 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008797#endif
Eric Andersen25f27032001-04-26 23:22:31 +00008798 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008799 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008800
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008801 /* Skip options. Try "hush -l": $1 should not be "-l"! */
8802 G.global_argc = argc - (optind - 1);
8803 G.global_argv = argv + (optind - 1);
8804 G.global_argv[0] = argv[0];
8805
Denys Vlasenkodea47882009-10-09 15:40:49 +02008806 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008807 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02008808 G.root_ppid = getppid();
8809 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008810
8811 /* If we are login shell... */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008812 if (flags & OPT_login) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008813 FILE *input;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008814 debug_printf("sourcing /etc/profile\n");
8815 input = fopen_for_read("/etc/profile");
8816 if (input != NULL) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008817 remember_FILE(input);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008818 install_special_sighandlers();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008819 parse_and_run_file(input);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008820 fclose_and_forget(input);
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008821 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008822 /* bash: after sourcing /etc/profile,
8823 * tries to source (in the given order):
8824 * ~/.bash_profile, ~/.bash_login, ~/.profile,
Denys Vlasenko28a105d2009-06-01 11:26:30 +02008825 * stopping on first found. --noprofile turns this off.
Denis Vlasenkof9375282009-04-05 19:13:39 +00008826 * bash also sources ~/.bash_logout on exit.
8827 * If called as sh, skips .bash_XXX files.
8828 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008829 }
8830
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008831 if (G.global_argv[1]) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00008832 FILE *input;
8833 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008834 * "bash <script>" (which is never interactive (unless -i?))
8835 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00008836 * If called as sh, does the same but with $ENV.
Denys Vlasenko2eb0a7e2016-10-27 11:28:59 +02008837 * Also NB, per POSIX, $ENV should undergo parameter expansion.
Denis Vlasenkof9375282009-04-05 19:13:39 +00008838 */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008839 G.global_argc--;
8840 G.global_argv++;
8841 debug_printf("running script '%s'\n", G.global_argv[0]);
Denys Vlasenkob7adf7a2016-10-25 17:00:13 +02008842 xfunc_error_retval = 127; /* for "hush /does/not/exist" case */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008843 input = xfopen_for_read(G.global_argv[0]);
Denys Vlasenkob7adf7a2016-10-25 17:00:13 +02008844 xfunc_error_retval = 1;
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008845 remember_FILE(input);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008846 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00008847 parse_and_run_file(input);
8848#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008849 fclose_and_forget(input);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008850#endif
8851 goto final_return;
8852 }
8853
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008854 /* Up to here, shell was non-interactive. Now it may become one.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008855 * NB: don't forget to (re)run install_special_sighandlers() as needed.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008856 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00008857
Denys Vlasenko28a105d2009-06-01 11:26:30 +02008858 /* A shell is interactive if the '-i' flag was given,
8859 * or if all of the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00008860 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00008861 * no arguments remaining or the -s flag given
8862 * standard input is a terminal
8863 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00008864 * Refer to Posix.2, the description of the 'sh' utility.
8865 */
8866#if ENABLE_HUSH_JOB
8867 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Mike Frysinger38478a62009-05-20 04:48:06 -04008868 G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
8869 debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp);
8870 if (G_saved_tty_pgrp < 0)
8871 G_saved_tty_pgrp = 0;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008872
8873 /* try to dup stdin to high fd#, >= 255 */
Denys Vlasenko2db74612017-07-07 22:07:28 +02008874 G_interactive_fd = fcntl_F_DUPFD(STDIN_FILENO, 254);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008875 if (G_interactive_fd < 0) {
8876 /* try to dup to any fd */
8877 G_interactive_fd = dup(STDIN_FILENO);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008878 if (G_interactive_fd < 0) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008879 /* give up */
8880 G_interactive_fd = 0;
Mike Frysinger38478a62009-05-20 04:48:06 -04008881 G_saved_tty_pgrp = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00008882 }
8883 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008884// TODO: track & disallow any attempts of user
8885// to (inadvertently) close/redirect G_interactive_fd
Eric Andersen25f27032001-04-26 23:22:31 +00008886 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008887 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008888 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00008889 close_on_exec_on(G_interactive_fd);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008890
Mike Frysinger38478a62009-05-20 04:48:06 -04008891 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008892 /* If we were run as 'hush &', sleep until we are
8893 * in the foreground (tty pgrp == our pgrp).
8894 * If we get started under a job aware app (like bash),
8895 * make sure we are now in charge so we don't fight over
8896 * who gets the foreground */
8897 while (1) {
8898 pid_t shell_pgrp = getpgrp();
Mike Frysinger38478a62009-05-20 04:48:06 -04008899 G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
8900 if (G_saved_tty_pgrp == shell_pgrp)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008901 break;
8902 /* send TTIN to ourself (should stop us) */
8903 kill(- shell_pgrp, SIGTTIN);
8904 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008905 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008906
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008907 /* Install more signal handlers */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008908 install_special_sighandlers();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008909
Mike Frysinger38478a62009-05-20 04:48:06 -04008910 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008911 /* Set other signals to restore saved_tty_pgrp */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008912 install_fatal_sighandlers();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008913 /* Put ourselves in our own process group
8914 * (bash, too, does this only if ctty is available) */
8915 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
8916 /* Grab control of the terminal */
8917 tcsetpgrp(G_interactive_fd, getpid());
8918 }
Denys Vlasenko550bf5b2015-10-09 16:42:57 +02008919 enable_restore_tty_pgrp_on_exit();
Denys Vlasenko4840ae82011-09-04 15:28:03 +02008920
8921# if ENABLE_HUSH_SAVEHISTORY && MAX_HISTORY > 0
8922 {
8923 const char *hp = get_local_var_value("HISTFILE");
8924 if (!hp) {
8925 hp = get_local_var_value("HOME");
8926 if (hp)
8927 hp = concat_path_file(hp, ".hush_history");
8928 } else {
8929 hp = xstrdup(hp);
8930 }
8931 if (hp) {
8932 G.line_input_state->hist_file = hp;
Denys Vlasenko4840ae82011-09-04 15:28:03 +02008933 //set_local_var(xasprintf("HISTFILE=%s", ...));
8934 }
8935# if ENABLE_FEATURE_SH_HISTFILESIZE
8936 hp = get_local_var_value("HISTFILESIZE");
8937 G.line_input_state->max_history = size_from_HISTFILESIZE(hp);
8938# endif
8939 }
8940# endif
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008941 } else {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008942 install_special_sighandlers();
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008943 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008944#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00008945 /* No job control compiled in, only prompt/line editing */
8946 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02008947 G_interactive_fd = fcntl_F_DUPFD(STDIN_FILENO, 254);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008948 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008949 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008950 G_interactive_fd = dup(STDIN_FILENO);
8951 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008952 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008953 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008954 }
8955 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008956 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00008957 close_on_exec_on(G_interactive_fd);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008958 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008959 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00008960#else
8961 /* We have interactiveness code disabled */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008962 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00008963#endif
8964 /* bash:
8965 * if interactive but not a login shell, sources ~/.bashrc
8966 * (--norc turns this off, --rcfile <file> overrides)
8967 */
8968
8969 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Denys Vlasenkoc34c0332009-09-29 12:25:30 +02008970 /* note: ash and hush share this string */
8971 printf("\n\n%s %s\n"
8972 IF_HUSH_HELP("Enter 'help' for a list of built-in commands.\n")
8973 "\n",
8974 bb_banner,
8975 "hush - the humble shell"
8976 );
Mike Frysingerb2705e12009-03-23 08:44:02 +00008977 }
8978
Denis Vlasenkof9375282009-04-05 19:13:39 +00008979 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00008980
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008981 final_return:
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008982 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00008983}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00008984
8985
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008986/*
8987 * Built-ins
8988 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008989static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008990{
8991 return 0;
8992}
8993
Denys Vlasenko265062d2017-01-10 15:13:30 +01008994#if ENABLE_HUSH_TEST || ENABLE_HUSH_ECHO || ENABLE_HUSH_PRINTF || ENABLE_HUSH_KILL
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02008995static int run_applet_main(char **argv, int (*applet_main_func)(int argc, char **argv))
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008996{
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02008997 int argc = string_array_len(argv);
8998 return applet_main_func(argc, argv);
Mike Frysingerccb19592009-10-15 03:31:15 -04008999}
Denys Vlasenko265062d2017-01-10 15:13:30 +01009000#endif
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01009001#if ENABLE_HUSH_TEST || BASH_TEST2
Mike Frysingerccb19592009-10-15 03:31:15 -04009002static int FAST_FUNC builtin_test(char **argv)
9003{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02009004 return run_applet_main(argv, test_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009005}
Denys Vlasenko265062d2017-01-10 15:13:30 +01009006#endif
Denys Vlasenko1cc68042017-01-09 17:10:04 +01009007#if ENABLE_HUSH_ECHO
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009008static int FAST_FUNC builtin_echo(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009009{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02009010 return run_applet_main(argv, echo_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009011}
Denys Vlasenko1cc68042017-01-09 17:10:04 +01009012#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009013#if ENABLE_HUSH_PRINTF
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04009014static int FAST_FUNC builtin_printf(char **argv)
9015{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02009016 return run_applet_main(argv, printf_main);
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04009017}
9018#endif
9019
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009020#if ENABLE_HUSH_HELP
9021static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM)
9022{
9023 const struct built_in_command *x;
9024
9025 printf(
9026 "Built-in commands:\n"
9027 "------------------\n");
9028 for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) {
9029 if (x->b_descr)
9030 printf("%-10s%s\n", x->b_cmd, x->b_descr);
9031 }
9032 return EXIT_SUCCESS;
9033}
9034#endif
9035
9036#if MAX_HISTORY && ENABLE_FEATURE_EDITING
9037static int FAST_FUNC builtin_history(char **argv UNUSED_PARAM)
9038{
9039 show_history(G.line_input_state);
9040 return EXIT_SUCCESS;
9041}
9042#endif
9043
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009044static char **skip_dash_dash(char **argv)
9045{
9046 argv++;
9047 if (argv[0] && argv[0][0] == '-' && argv[0][1] == '-' && argv[0][2] == '\0')
9048 argv++;
9049 return argv;
9050}
9051
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009052static int FAST_FUNC builtin_cd(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009053{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009054 const char *newdir;
9055
9056 argv = skip_dash_dash(argv);
9057 newdir = argv[0];
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00009058 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00009059 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009060 * bash says "bash: cd: HOME not set" and does nothing
9061 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00009062 */
Denys Vlasenko90a99042009-09-06 02:36:23 +02009063 const char *home = get_local_var_value("HOME");
9064 newdir = home ? home : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00009065 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009066 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00009067 /* Mimic bash message exactly */
9068 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009069 return EXIT_FAILURE;
9070 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02009071 /* Read current dir (get_cwd(1) is inside) and set PWD.
9072 * Note: do not enforce exporting. If PWD was unset or unexported,
9073 * set it again, but do not export. bash does the same.
9074 */
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009075 set_pwd_var(/*flag:*/ 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009076 return EXIT_SUCCESS;
9077}
9078
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009079static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM)
9080{
9081 puts(get_cwd(0));
9082 return EXIT_SUCCESS;
9083}
9084
9085static int FAST_FUNC builtin_eval(char **argv)
9086{
9087 int rcode = EXIT_SUCCESS;
9088
9089 argv = skip_dash_dash(argv);
9090 if (*argv) {
9091 char *str = expand_strvec_to_string(argv);
9092 /* bash:
9093 * eval "echo Hi; done" ("done" is syntax error):
9094 * "echo Hi" will not execute too.
9095 */
9096 parse_and_run_string(str);
9097 free(str);
9098 rcode = G.last_exitcode;
9099 }
9100 return rcode;
9101}
9102
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009103static int FAST_FUNC builtin_exec(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009104{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009105 argv = skip_dash_dash(argv);
9106 if (argv[0] == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009107 return EXIT_SUCCESS; /* bash does this */
Denys Vlasenkof37eb392009-10-18 11:46:35 +02009108
Denys Vlasenkof37eb392009-10-18 11:46:35 +02009109 /* Careful: we can end up here after [v]fork. Do not restore
9110 * tty pgrp then, only top-level shell process does that */
9111 if (G_saved_tty_pgrp && getpid() == G.root_pid)
9112 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
9113
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02009114 /* TODO: if exec fails, bash does NOT exit! We do.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009115 * We'll need to undo trap cleanup (it's inside execvp_or_die)
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02009116 * and tcsetpgrp, and this is inherently racy.
9117 */
9118 execvp_or_die(argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009119}
9120
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009121static int FAST_FUNC builtin_exit(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009122{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00009123 debug_printf_exec("%s()\n", __func__);
Denis Vlasenko40e84372009-04-18 11:23:38 +00009124
9125 /* interactive bash:
9126 * # trap "echo EEE" EXIT
9127 * # exit
9128 * exit
9129 * There are stopped jobs.
9130 * (if there are _stopped_ jobs, running ones don't count)
9131 * # exit
9132 * exit
Denys Vlasenko6830ade2013-01-15 13:58:01 +01009133 * EEE (then bash exits)
Denis Vlasenko40e84372009-04-18 11:23:38 +00009134 *
Denys Vlasenkoa110c902010-09-12 15:38:04 +02009135 * TODO: we can use G.exiting = -1 as indicator "last cmd was exit"
Denis Vlasenko40e84372009-04-18 11:23:38 +00009136 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00009137
9138 /* note: EXIT trap is run by hush_exit */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009139 argv = skip_dash_dash(argv);
9140 if (argv[0] == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00009141 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009142 /* mimic bash: exit 123abc == exit 255 + error msg */
9143 xfunc_error_retval = 255;
9144 /* bash: exit -2 == exit 254, no error msg */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009145 hush_exit(xatoi(argv[0]) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009146}
9147
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009148#if ENABLE_HUSH_TYPE
9149/* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */
9150static int FAST_FUNC builtin_type(char **argv)
9151{
9152 int ret = EXIT_SUCCESS;
9153
9154 while (*++argv) {
9155 const char *type;
9156 char *path = NULL;
9157
9158 if (0) {} /* make conditional compile easier below */
9159 /*else if (find_alias(*argv))
9160 type = "an alias";*/
9161#if ENABLE_HUSH_FUNCTIONS
9162 else if (find_function(*argv))
9163 type = "a function";
9164#endif
9165 else if (find_builtin(*argv))
9166 type = "a shell builtin";
9167 else if ((path = find_in_path(*argv)) != NULL)
9168 type = path;
9169 else {
9170 bb_error_msg("type: %s: not found", *argv);
9171 ret = EXIT_FAILURE;
9172 continue;
9173 }
9174
9175 printf("%s is %s\n", *argv, type);
9176 free(path);
9177 }
9178
9179 return ret;
9180}
9181#endif
9182
9183#if ENABLE_HUSH_READ
9184/* Interruptibility of read builtin in bash
9185 * (tested on bash-4.2.8 by sending signals (not by ^C)):
9186 *
9187 * Empty trap makes read ignore corresponding signal, for any signal.
9188 *
9189 * SIGINT:
9190 * - terminates non-interactive shell;
9191 * - interrupts read in interactive shell;
9192 * if it has non-empty trap:
9193 * - executes trap and returns to command prompt in interactive shell;
9194 * - executes trap and returns to read in non-interactive shell;
9195 * SIGTERM:
9196 * - is ignored (does not interrupt) read in interactive shell;
9197 * - terminates non-interactive shell;
9198 * if it has non-empty trap:
9199 * - executes trap and returns to read;
9200 * SIGHUP:
9201 * - terminates shell (regardless of interactivity);
9202 * if it has non-empty trap:
9203 * - executes trap and returns to read;
Denys Vlasenkof5470412017-05-22 19:34:45 +02009204 * SIGCHLD from children:
9205 * - does not interrupt read regardless of interactivity:
9206 * try: sleep 1 & read x; echo $x
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009207 */
9208static int FAST_FUNC builtin_read(char **argv)
9209{
9210 const char *r;
9211 char *opt_n = NULL;
9212 char *opt_p = NULL;
9213 char *opt_t = NULL;
9214 char *opt_u = NULL;
9215 const char *ifs;
9216 int read_flags;
9217
9218 /* "!": do not abort on errors.
9219 * Option string must start with "sr" to match BUILTIN_READ_xxx
9220 */
9221 read_flags = getopt32(argv, "!srn:p:t:u:", &opt_n, &opt_p, &opt_t, &opt_u);
9222 if (read_flags == (uint32_t)-1)
9223 return EXIT_FAILURE;
9224 argv += optind;
9225 ifs = get_local_var_value("IFS"); /* can be NULL */
9226
9227 again:
9228 r = shell_builtin_read(set_local_var_from_halves,
9229 argv,
9230 ifs,
9231 read_flags,
9232 opt_n,
9233 opt_p,
9234 opt_t,
9235 opt_u
9236 );
9237
9238 if ((uintptr_t)r == 1 && errno == EINTR) {
9239 unsigned sig = check_and_run_traps();
Denys Vlasenkof5470412017-05-22 19:34:45 +02009240 if (sig != SIGINT)
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009241 goto again;
9242 }
9243
9244 if ((uintptr_t)r > 1) {
9245 bb_error_msg("%s", r);
9246 r = (char*)(uintptr_t)1;
9247 }
9248
9249 return (uintptr_t)r;
9250}
9251#endif
9252
9253#if ENABLE_HUSH_UMASK
9254static int FAST_FUNC builtin_umask(char **argv)
9255{
9256 int rc;
9257 mode_t mask;
9258
9259 rc = 1;
9260 mask = umask(0);
9261 argv = skip_dash_dash(argv);
9262 if (argv[0]) {
9263 mode_t old_mask = mask;
9264
9265 /* numeric umasks are taken as-is */
9266 /* symbolic umasks are inverted: "umask a=rx" calls umask(222) */
9267 if (!isdigit(argv[0][0]))
9268 mask ^= 0777;
9269 mask = bb_parse_mode(argv[0], mask);
9270 if (!isdigit(argv[0][0]))
9271 mask ^= 0777;
9272 if ((unsigned)mask > 0777) {
9273 mask = old_mask;
9274 /* bash messages:
9275 * bash: umask: 'q': invalid symbolic mode operator
9276 * bash: umask: 999: octal number out of range
9277 */
9278 bb_error_msg("%s: invalid mode '%s'", "umask", argv[0]);
9279 rc = 0;
9280 }
9281 } else {
9282 /* Mimic bash */
9283 printf("%04o\n", (unsigned) mask);
9284 /* fall through and restore mask which we set to 0 */
9285 }
9286 umask(mask);
9287
9288 return !rc; /* rc != 0 - success */
9289}
9290#endif
9291
Denys Vlasenko41ade052017-01-08 18:56:24 +01009292#if ENABLE_HUSH_EXPORT || ENABLE_HUSH_TRAP
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009293static void print_escaped(const char *s)
9294{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009295 if (*s == '\'')
9296 goto squote;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009297 do {
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009298 const char *p = strchrnul(s, '\'');
9299 /* print 'xxxx', possibly just '' */
9300 printf("'%.*s'", (int)(p - s), s);
9301 if (*p == '\0')
9302 break;
9303 s = p;
9304 squote:
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009305 /* s points to '; print "'''...'''" */
9306 putchar('"');
9307 do putchar('\''); while (*++s == '\'');
9308 putchar('"');
9309 } while (*s);
9310}
Denys Vlasenko41ade052017-01-08 18:56:24 +01009311#endif
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009312
Denys Vlasenko1e660422017-07-17 21:10:50 +02009313#if ENABLE_HUSH_EXPORT || ENABLE_HUSH_LOCAL || ENABLE_HUSH_READONLY
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009314static int helper_export_local(char **argv, unsigned flags)
Denys Vlasenko295fef82009-06-03 12:47:26 +02009315{
9316 do {
9317 char *name = *argv;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009318 char *name_end = strchrnul(name, '=');
Denys Vlasenko295fef82009-06-03 12:47:26 +02009319
9320 /* So far we do not check that name is valid (TODO?) */
9321
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009322 if (*name_end == '\0') {
9323 struct variable *var, **vpp;
Denys Vlasenko295fef82009-06-03 12:47:26 +02009324
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009325 vpp = get_ptr_to_local_var(name, name_end - name);
9326 var = vpp ? *vpp : NULL;
9327
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009328 if (flags & SETFLAG_UNEXPORT) {
Denys Vlasenko295fef82009-06-03 12:47:26 +02009329 /* export -n NAME (without =VALUE) */
9330 if (var) {
9331 var->flg_export = 0;
9332 debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
9333 unsetenv(name);
9334 } /* else: export -n NOT_EXISTING_VAR: no-op */
9335 continue;
9336 }
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009337 if (flags & SETFLAG_EXPORT) {
Denys Vlasenko295fef82009-06-03 12:47:26 +02009338 /* export NAME (without =VALUE) */
9339 if (var) {
9340 var->flg_export = 1;
9341 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
9342 putenv(var->varstr);
9343 continue;
9344 }
9345 }
Denys Vlasenko38ef39a2017-07-18 01:40:01 +02009346 if (flags & SETFLAG_MAKE_RO) {
9347 /* readonly NAME (without =VALUE) */
9348 if (var) {
9349 var->flg_read_only = 1;
9350 continue;
9351 }
9352 }
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009353# if ENABLE_HUSH_LOCAL
Denys Vlasenkob95ee962017-07-17 21:19:53 +02009354 /* Is this "local" bltin? */
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009355 if (!(flags & (SETFLAG_EXPORT|SETFLAG_UNEXPORT|SETFLAG_MAKE_RO))) {
9356 unsigned lvl = flags >> SETFLAG_LOCAL_SHIFT;
Denys Vlasenkob95ee962017-07-17 21:19:53 +02009357 if (var && var->func_nest_level == lvl) {
9358 /* "local x=abc; ...; local x" - ignore second local decl */
9359 continue;
9360 }
Denys Vlasenko61508d92016-10-02 21:12:02 +02009361 }
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009362# endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02009363 /* Exporting non-existing variable.
9364 * bash does not put it in environment,
9365 * but remembers that it is exported,
9366 * and does put it in env when it is set later.
Denys Vlasenko1e660422017-07-17 21:10:50 +02009367 * We just set it to "" and export.
9368 */
Denys Vlasenko295fef82009-06-03 12:47:26 +02009369 /* Or, it's "local NAME" (without =VALUE).
Denys Vlasenko1e660422017-07-17 21:10:50 +02009370 * bash sets the value to "".
9371 */
9372 /* Or, it's "readonly NAME" (without =VALUE).
9373 * bash remembers NAME and disallows its creation
9374 * in the future.
9375 */
Denys Vlasenko295fef82009-06-03 12:47:26 +02009376 name = xasprintf("%s=", name);
9377 } else {
9378 /* (Un)exporting/making local NAME=VALUE */
9379 name = xstrdup(name);
9380 }
Denys Vlasenko38ef39a2017-07-18 01:40:01 +02009381 if (set_local_var(name, flags))
9382 return EXIT_FAILURE;
Denys Vlasenko295fef82009-06-03 12:47:26 +02009383 } while (*++argv);
Denys Vlasenko1e660422017-07-17 21:10:50 +02009384 return EXIT_SUCCESS;
Denys Vlasenko295fef82009-06-03 12:47:26 +02009385}
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009386#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02009387
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009388#if ENABLE_HUSH_EXPORT
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009389static int FAST_FUNC builtin_export(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009390{
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00009391 unsigned opt_unexport;
9392
Denys Vlasenkodf5131c2009-06-07 16:04:17 +02009393#if ENABLE_HUSH_EXPORT_N
9394 /* "!": do not abort on errors */
9395 opt_unexport = getopt32(argv, "!n");
9396 if (opt_unexport == (uint32_t)-1)
9397 return EXIT_FAILURE;
9398 argv += optind;
9399#else
9400 opt_unexport = 0;
9401 argv++;
9402#endif
9403
9404 if (argv[0] == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009405 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009406 if (e) {
9407 while (*e) {
9408#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009409 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009410#else
9411 /* ash emits: export VAR='VAL'
9412 * bash: declare -x VAR="VAL"
9413 * we follow ash example */
9414 const char *s = *e++;
9415 const char *p = strchr(s, '=');
9416
9417 if (!p) /* wtf? take next variable */
9418 continue;
9419 /* export var= */
9420 printf("export %.*s", (int)(p - s) + 1, s);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009421 print_escaped(p + 1);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009422 putchar('\n');
9423#endif
9424 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01009425 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009426 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009427 return EXIT_SUCCESS;
9428 }
9429
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009430 return helper_export_local(argv, opt_unexport ? SETFLAG_UNEXPORT : SETFLAG_EXPORT);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009431}
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009432#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009433
Denys Vlasenko295fef82009-06-03 12:47:26 +02009434#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009435static int FAST_FUNC builtin_local(char **argv)
Denys Vlasenko295fef82009-06-03 12:47:26 +02009436{
9437 if (G.func_nest_level == 0) {
9438 bb_error_msg("%s: not in a function", argv[0]);
9439 return EXIT_FAILURE; /* bash compat */
9440 }
Denys Vlasenko1e660422017-07-17 21:10:50 +02009441 argv++;
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009442 return helper_export_local(argv, G.func_nest_level << SETFLAG_LOCAL_SHIFT);
Denys Vlasenko295fef82009-06-03 12:47:26 +02009443}
9444#endif
9445
Denys Vlasenko1e660422017-07-17 21:10:50 +02009446#if ENABLE_HUSH_READONLY
9447static int FAST_FUNC builtin_readonly(char **argv)
9448{
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009449 argv++;
9450 if (*argv == NULL) {
Denys Vlasenko1e660422017-07-17 21:10:50 +02009451 /* bash: readonly [-p]: list all readonly VARs
9452 * (-p has no effect in bash)
9453 */
9454 struct variable *e;
9455 for (e = G.top_var; e; e = e->next) {
9456 if (e->flg_read_only) {
9457//TODO: quote value: readonly VAR='VAL'
9458 printf("readonly %s\n", e->varstr);
9459 }
9460 }
9461 return EXIT_SUCCESS;
9462 }
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009463 return helper_export_local(argv, SETFLAG_MAKE_RO);
Denys Vlasenko1e660422017-07-17 21:10:50 +02009464}
9465#endif
9466
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009467#if ENABLE_HUSH_UNSET
Denys Vlasenko61508d92016-10-02 21:12:02 +02009468/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
9469static int FAST_FUNC builtin_unset(char **argv)
9470{
9471 int ret;
9472 unsigned opts;
9473
9474 /* "!": do not abort on errors */
9475 /* "+": stop at 1st non-option */
9476 opts = getopt32(argv, "!+vf");
9477 if (opts == (unsigned)-1)
9478 return EXIT_FAILURE;
9479 if (opts == 3) {
9480 bb_error_msg("unset: -v and -f are exclusive");
9481 return EXIT_FAILURE;
9482 }
9483 argv += optind;
9484
9485 ret = EXIT_SUCCESS;
9486 while (*argv) {
9487 if (!(opts & 2)) { /* not -f */
9488 if (unset_local_var(*argv)) {
9489 /* unset <nonexistent_var> doesn't fail.
9490 * Error is when one tries to unset RO var.
9491 * Message was printed by unset_local_var. */
9492 ret = EXIT_FAILURE;
9493 }
9494 }
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009495# if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko61508d92016-10-02 21:12:02 +02009496 else {
9497 unset_func(*argv);
9498 }
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009499# endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009500 argv++;
9501 }
9502 return ret;
9503}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009504#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009505
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009506#if ENABLE_HUSH_SET
Denys Vlasenko61508d92016-10-02 21:12:02 +02009507/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
9508 * built-in 'set' handler
9509 * SUSv3 says:
9510 * set [-abCefhmnuvx] [-o option] [argument...]
9511 * set [+abCefhmnuvx] [+o option] [argument...]
9512 * set -- [argument...]
9513 * set -o
9514 * set +o
9515 * Implementations shall support the options in both their hyphen and
9516 * plus-sign forms. These options can also be specified as options to sh.
9517 * Examples:
9518 * Write out all variables and their values: set
9519 * Set $1, $2, and $3 and set "$#" to 3: set c a b
9520 * Turn on the -x and -v options: set -xv
9521 * Unset all positional parameters: set --
9522 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
9523 * Set the positional parameters to the expansion of x, even if x expands
9524 * with a leading '-' or '+': set -- $x
9525 *
9526 * So far, we only support "set -- [argument...]" and some of the short names.
9527 */
9528static int FAST_FUNC builtin_set(char **argv)
9529{
9530 int n;
9531 char **pp, **g_argv;
9532 char *arg = *++argv;
9533
9534 if (arg == NULL) {
9535 struct variable *e;
9536 for (e = G.top_var; e; e = e->next)
9537 puts(e->varstr);
9538 return EXIT_SUCCESS;
9539 }
9540
9541 do {
9542 if (strcmp(arg, "--") == 0) {
9543 ++argv;
9544 goto set_argv;
9545 }
9546 if (arg[0] != '+' && arg[0] != '-')
9547 break;
9548 for (n = 1; arg[n]; ++n) {
9549 if (set_mode((arg[0] == '-'), arg[n], argv[1]))
9550 goto error;
9551 if (arg[n] == 'o' && argv[1])
9552 argv++;
9553 }
9554 } while ((arg = *++argv) != NULL);
9555 /* Now argv[0] is 1st argument */
9556
9557 if (arg == NULL)
9558 return EXIT_SUCCESS;
9559 set_argv:
9560
9561 /* NB: G.global_argv[0] ($0) is never freed/changed */
9562 g_argv = G.global_argv;
9563 if (G.global_args_malloced) {
9564 pp = g_argv;
9565 while (*++pp)
9566 free(*pp);
9567 g_argv[1] = NULL;
9568 } else {
9569 G.global_args_malloced = 1;
9570 pp = xzalloc(sizeof(pp[0]) * 2);
9571 pp[0] = g_argv[0]; /* retain $0 */
9572 g_argv = pp;
9573 }
9574 /* This realloc's G.global_argv */
9575 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
9576
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02009577 G.global_argc = 1 + string_array_len(pp + 1);
Denys Vlasenko61508d92016-10-02 21:12:02 +02009578
9579 return EXIT_SUCCESS;
9580
9581 /* Nothing known, so abort */
9582 error:
9583 bb_error_msg("set: %s: invalid option", arg);
9584 return EXIT_FAILURE;
9585}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009586#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009587
9588static int FAST_FUNC builtin_shift(char **argv)
9589{
9590 int n = 1;
9591 argv = skip_dash_dash(argv);
9592 if (argv[0]) {
Denys Vlasenkoe59591a2017-07-06 20:12:44 +02009593 n = bb_strtou(argv[0], NULL, 10);
9594 if (errno || n < 0) {
9595 /* shared string with ash.c */
9596 bb_error_msg("Illegal number: %s", argv[0]);
9597 /*
9598 * ash aborts in this case.
9599 * bash prints error message and set $? to 1.
9600 * Interestingly, for "shift 99999" bash does not
9601 * print error message, but does set $? to 1
9602 * (and does no shifting at all).
9603 */
9604 }
Denys Vlasenko61508d92016-10-02 21:12:02 +02009605 }
9606 if (n >= 0 && n < G.global_argc) {
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01009607 if (G_global_args_malloced) {
Denys Vlasenko61508d92016-10-02 21:12:02 +02009608 int m = 1;
9609 while (m <= n)
9610 free(G.global_argv[m++]);
9611 }
9612 G.global_argc -= n;
9613 memmove(&G.global_argv[1], &G.global_argv[n+1],
9614 G.global_argc * sizeof(G.global_argv[0]));
9615 return EXIT_SUCCESS;
9616 }
9617 return EXIT_FAILURE;
9618}
9619
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009620static int FAST_FUNC builtin_source(char **argv)
Denys Vlasenko61508d92016-10-02 21:12:02 +02009621{
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009622 char *arg_path, *filename;
9623 FILE *input;
9624 save_arg_t sv;
9625 char *args_need_save;
9626#if ENABLE_HUSH_FUNCTIONS
9627 smallint sv_flg;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009628#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009629
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009630 argv = skip_dash_dash(argv);
9631 filename = argv[0];
9632 if (!filename) {
9633 /* bash says: "bash: .: filename argument required" */
9634 return 2; /* bash compat */
9635 }
9636 arg_path = NULL;
9637 if (!strchr(filename, '/')) {
9638 arg_path = find_in_path(filename);
9639 if (arg_path)
9640 filename = arg_path;
9641 }
9642 input = remember_FILE(fopen_or_warn(filename, "r"));
9643 free(arg_path);
9644 if (!input) {
9645 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
9646 /* POSIX: non-interactive shell should abort here,
9647 * not merely fail. So far no one complained :)
9648 */
9649 return EXIT_FAILURE;
9650 }
9651
9652#if ENABLE_HUSH_FUNCTIONS
9653 sv_flg = G_flag_return_in_progress;
9654 /* "we are inside sourced file, ok to use return" */
9655 G_flag_return_in_progress = -1;
9656#endif
9657 args_need_save = argv[1]; /* used as a boolean variable */
9658 if (args_need_save)
9659 save_and_replace_G_args(&sv, argv);
9660
9661 /* "false; . ./empty_line; echo Zero:$?" should print 0 */
9662 G.last_exitcode = 0;
9663 parse_and_run_file(input);
9664 fclose_and_forget(input);
9665
9666 if (args_need_save) /* can't use argv[1] instead: "shift" can mangle it */
9667 restore_G_args(&sv, argv);
9668#if ENABLE_HUSH_FUNCTIONS
9669 G_flag_return_in_progress = sv_flg;
9670#endif
9671
9672 return G.last_exitcode;
9673}
9674
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009675#if ENABLE_HUSH_TRAP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009676static int FAST_FUNC builtin_trap(char **argv)
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009677{
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009678 int sig;
9679 char *new_cmd;
9680
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009681 if (!G_traps)
9682 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009683
9684 argv++;
9685 if (!*argv) {
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00009686 int i;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009687 /* No args: print all trapped */
9688 for (i = 0; i < NSIG; ++i) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009689 if (G_traps[i]) {
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009690 printf("trap -- ");
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009691 print_escaped(G_traps[i]);
Denys Vlasenkoe74aaf92009-09-27 02:05:45 +02009692 /* note: bash adds "SIG", but only if invoked
9693 * as "bash". If called as "sh", or if set -o posix,
9694 * then it prints short signal names.
9695 * We are printing short names: */
9696 printf(" %s\n", get_signame(i));
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009697 }
9698 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01009699 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009700 return EXIT_SUCCESS;
9701 }
9702
9703 new_cmd = NULL;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009704 /* If first arg is a number: reset all specified signals */
9705 sig = bb_strtou(*argv, NULL, 10);
9706 if (errno == 0) {
9707 int ret;
9708 process_sig_list:
9709 ret = EXIT_SUCCESS;
9710 while (*argv) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009711 sighandler_t handler;
9712
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009713 sig = get_signum(*argv++);
9714 if (sig < 0 || sig >= NSIG) {
9715 ret = EXIT_FAILURE;
9716 /* Mimic bash message exactly */
Denys Vlasenko74562982017-07-06 18:40:45 +02009717 bb_error_msg("trap: %s: invalid signal specification", argv[-1]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009718 continue;
9719 }
9720
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009721 free(G_traps[sig]);
9722 G_traps[sig] = xstrdup(new_cmd);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009723
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01009724 debug_printf("trap: setting SIG%s (%i) to '%s'\n",
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009725 get_signame(sig), sig, G_traps[sig]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009726
9727 /* There is no signal for 0 (EXIT) */
9728 if (sig == 0)
9729 continue;
9730
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009731 if (new_cmd)
9732 handler = (new_cmd[0] ? record_pending_signo : SIG_IGN);
9733 else
9734 /* We are removing trap handler */
9735 handler = pick_sighandler(sig);
Denys Vlasenko0806e402011-05-12 23:06:20 +02009736 install_sighandler(sig, handler);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009737 }
9738 return ret;
9739 }
9740
9741 if (!argv[1]) { /* no second arg */
9742 bb_error_msg("trap: invalid arguments");
9743 return EXIT_FAILURE;
9744 }
9745
9746 /* First arg is "-": reset all specified to default */
9747 /* First arg is "--": skip it, the rest is "handler SIGs..." */
9748 /* Everything else: set arg as signal handler
9749 * (includes "" case, which ignores signal) */
9750 if (argv[0][0] == '-') {
9751 if (argv[0][1] == '\0') { /* "-" */
9752 /* new_cmd remains NULL: "reset these sigs" */
9753 goto reset_traps;
9754 }
9755 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
9756 argv++;
9757 }
9758 /* else: "-something", no special meaning */
9759 }
9760 new_cmd = *argv;
9761 reset_traps:
9762 argv++;
9763 goto process_sig_list;
9764}
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009765#endif
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009766
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009767#if ENABLE_HUSH_JOB
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009768static struct pipe *parse_jobspec(const char *str)
9769{
9770 struct pipe *pi;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009771 unsigned jobnum;
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009772
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009773 if (sscanf(str, "%%%u", &jobnum) != 1) {
9774 if (str[0] != '%'
9775 || (str[1] != '%' && str[1] != '+' && str[1] != '\0')
9776 ) {
9777 bb_error_msg("bad argument '%s'", str);
9778 return NULL;
9779 }
9780 /* It is "%%", "%+" or "%" - current job */
9781 jobnum = G.last_jobid;
9782 if (jobnum == 0) {
9783 bb_error_msg("no current job");
9784 return NULL;
9785 }
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009786 }
9787 for (pi = G.job_list; pi; pi = pi->next) {
9788 if (pi->jobid == jobnum) {
9789 return pi;
9790 }
9791 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009792 bb_error_msg("%u: no such job", jobnum);
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009793 return NULL;
9794}
9795
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009796static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM)
9797{
9798 struct pipe *job;
9799 const char *status_string;
9800
9801 checkjobs(NULL, 0 /*(no pid to wait for)*/);
9802 for (job = G.job_list; job; job = job->next) {
9803 if (job->alive_cmds == job->stopped_cmds)
9804 status_string = "Stopped";
9805 else
9806 status_string = "Running";
9807
9808 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
9809 }
Denys Vlasenko2ed74e22017-07-14 19:58:46 +02009810
9811 clean_up_last_dead_job();
9812
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009813 return EXIT_SUCCESS;
9814}
9815
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009816/* built-in 'fg' and 'bg' handler */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009817static int FAST_FUNC builtin_fg_bg(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009818{
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009819 int i;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009820 struct pipe *pi;
9821
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009822 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009823 return EXIT_FAILURE;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009824
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009825 /* If they gave us no args, assume they want the last backgrounded task */
9826 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00009827 for (pi = G.job_list; pi; pi = pi->next) {
9828 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009829 goto found;
9830 }
9831 }
9832 bb_error_msg("%s: no current job", argv[0]);
9833 return EXIT_FAILURE;
9834 }
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009835
9836 pi = parse_jobspec(argv[1]);
9837 if (!pi)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009838 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009839 found:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00009840 /* TODO: bash prints a string representation
9841 * of job being foregrounded (like "sleep 1 | cat") */
Mike Frysinger38478a62009-05-20 04:48:06 -04009842 if (argv[0][0] == 'f' && G_saved_tty_pgrp) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009843 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009844 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009845 }
9846
9847 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00009848 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
9849 for (i = 0; i < pi->num_cmds; i++) {
9850 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009851 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00009852 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009853
9854 i = kill(- pi->pgrp, SIGCONT);
9855 if (i < 0) {
9856 if (errno == ESRCH) {
Denys Vlasenko16096292017-07-10 10:00:28 +02009857 delete_finished_job(pi);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009858 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009859 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00009860 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009861 }
9862
Denis Vlasenko34d4d892009-04-04 20:24:37 +00009863 if (argv[0][0] == 'f') {
Denys Vlasenko16096292017-07-10 10:00:28 +02009864 remove_job_from_table(pi); /* FG job shouldn't be in job table */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009865 return checkjobs_and_fg_shell(pi);
9866 }
9867 return EXIT_SUCCESS;
9868}
9869#endif
9870
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009871#if ENABLE_HUSH_KILL
9872static int FAST_FUNC builtin_kill(char **argv)
9873{
9874 int ret = 0;
9875
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009876# if ENABLE_HUSH_JOB
9877 if (argv[1] && strcmp(argv[1], "-l") != 0) {
9878 int i = 1;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009879
9880 do {
9881 struct pipe *pi;
9882 char *dst;
9883 int j, n;
9884
9885 if (argv[i][0] != '%')
9886 continue;
9887 /*
9888 * "kill %N" - job kill
9889 * Converting to pgrp / pid kill
9890 */
9891 pi = parse_jobspec(argv[i]);
9892 if (!pi) {
9893 /* Eat bad jobspec */
9894 j = i;
9895 do {
9896 j++;
9897 argv[j - 1] = argv[j];
9898 } while (argv[j]);
9899 ret = 1;
9900 i--;
9901 continue;
9902 }
9903 /*
9904 * In jobs started under job control, we signal
9905 * entire process group by kill -PGRP_ID.
9906 * This happens, f.e., in interactive shell.
9907 *
9908 * Otherwise, we signal each child via
9909 * kill PID1 PID2 PID3.
9910 * Testcases:
9911 * sh -c 'sleep 1|sleep 1 & kill %1'
9912 * sh -c 'true|sleep 2 & sleep 1; kill %1'
9913 * sh -c 'true|sleep 1 & sleep 2; kill %1'
9914 */
Denys Vlasenko5362cc42017-01-09 05:57:13 +01009915 n = G_interactive_fd ? 1 : pi->num_cmds;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009916 dst = alloca(n * sizeof(int)*4);
9917 argv[i] = dst;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009918 if (G_interactive_fd)
9919 dst += sprintf(dst, " -%u", (int)pi->pgrp);
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009920 else for (j = 0; j < n; j++) {
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009921 struct command *cmd = &pi->cmds[j];
9922 /* Skip exited members of the job */
9923 if (cmd->pid == 0)
9924 continue;
9925 /*
9926 * kill_main has matching code to expect
9927 * leading space. Needed to not confuse
9928 * negative pids with "kill -SIGNAL_NO" syntax
9929 */
9930 dst += sprintf(dst, " %u", (int)cmd->pid);
9931 }
9932 *dst = '\0';
9933 } while (argv[++i]);
9934 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009935# endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009936
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009937 if (argv[1] || ret == 0) {
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009938 ret = run_applet_main(argv, kill_main);
9939 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009940 /* else: ret = 1, "kill %bad_jobspec" case */
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009941 return ret;
9942}
9943#endif
9944
9945#if ENABLE_HUSH_WAIT
Mike Frysinger56bdea12009-03-28 20:01:58 +00009946/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009947#if !ENABLE_HUSH_JOB
9948# define wait_for_child_or_signal(pipe,pid) wait_for_child_or_signal(pid)
9949#endif
9950static int wait_for_child_or_signal(struct pipe *waitfor_pipe, pid_t waitfor_pid)
Denys Vlasenko7e675362016-10-28 21:57:31 +02009951{
9952 int ret = 0;
9953 for (;;) {
9954 int sig;
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009955 sigset_t oldset;
Denys Vlasenko7e675362016-10-28 21:57:31 +02009956
Denys Vlasenko830ea352016-11-08 04:59:11 +01009957 if (!sigisemptyset(&G.pending_set))
9958 goto check_sig;
9959
Denys Vlasenko7e675362016-10-28 21:57:31 +02009960 /* waitpid is not interruptible by SA_RESTARTed
9961 * signals which we use. Thus, this ugly dance:
9962 */
9963
9964 /* Make sure possible SIGCHLD is stored in kernel's
9965 * pending signal mask before we call waitpid.
9966 * Or else we may race with SIGCHLD, lose it,
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009967 * and get stuck in sigsuspend...
Denys Vlasenko7e675362016-10-28 21:57:31 +02009968 */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009969 sigfillset(&oldset); /* block all signals, remember old set */
9970 sigprocmask(SIG_SETMASK, &oldset, &oldset);
Denys Vlasenko7e675362016-10-28 21:57:31 +02009971
9972 if (!sigisemptyset(&G.pending_set)) {
9973 /* Crap! we raced with some signal! */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009974 goto restore;
9975 }
9976
9977 /*errno = 0; - checkjobs does this */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009978/* Can't pass waitfor_pipe into checkjobs(): it won't be interruptible */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009979 ret = checkjobs(NULL, waitfor_pid); /* waitpid(WNOHANG) inside */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009980 debug_printf_exec("checkjobs:%d\n", ret);
9981#if ENABLE_HUSH_JOB
9982 if (waitfor_pipe) {
9983 int rcode = job_exited_or_stopped(waitfor_pipe);
9984 debug_printf_exec("job_exited_or_stopped:%d\n", rcode);
9985 if (rcode >= 0) {
9986 ret = rcode;
9987 sigprocmask(SIG_SETMASK, &oldset, NULL);
9988 break;
9989 }
9990 }
9991#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02009992 /* if ECHILD, there are no children (ret is -1 or 0) */
9993 /* if ret == 0, no children changed state */
9994 /* if ret != 0, it's exitcode+1 of exited waitfor_pid child */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009995 if (errno == ECHILD || ret) {
9996 ret--;
9997 if (ret < 0) /* if ECHILD, may need to fix "ret" */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009998 ret = 0;
9999 sigprocmask(SIG_SETMASK, &oldset, NULL);
10000 break;
10001 }
Denys Vlasenko7e675362016-10-28 21:57:31 +020010002 /* Wait for SIGCHLD or any other signal */
Denys Vlasenko7e675362016-10-28 21:57:31 +020010003 /* It is vitally important for sigsuspend that SIGCHLD has non-DFL handler! */
10004 /* Note: sigsuspend invokes signal handler */
10005 sigsuspend(&oldset);
10006 restore:
10007 sigprocmask(SIG_SETMASK, &oldset, NULL);
Denys Vlasenko830ea352016-11-08 04:59:11 +010010008 check_sig:
Denys Vlasenko7e675362016-10-28 21:57:31 +020010009 /* So, did we get a signal? */
Denys Vlasenko7e675362016-10-28 21:57:31 +020010010 sig = check_and_run_traps();
10011 if (sig /*&& sig != SIGCHLD - always true */) {
Denys Vlasenko7e675362016-10-28 21:57:31 +020010012 ret = 128 + sig;
10013 break;
10014 }
10015 /* SIGCHLD, or no signal, or ignored one, such as SIGQUIT. Repeat */
10016 }
10017 return ret;
10018}
10019
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010020static int FAST_FUNC builtin_wait(char **argv)
Mike Frysinger56bdea12009-03-28 20:01:58 +000010021{
Denys Vlasenko7e675362016-10-28 21:57:31 +020010022 int ret;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +020010023 int status;
Mike Frysinger56bdea12009-03-28 20:01:58 +000010024
Denys Vlasenkob131cce2010-05-20 03:39:43 +020010025 argv = skip_dash_dash(argv);
10026 if (argv[0] == NULL) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +000010027 /* Don't care about wait results */
10028 /* Note 1: must wait until there are no more children */
10029 /* Note 2: must be interruptible */
10030 /* Examples:
10031 * $ sleep 3 & sleep 6 & wait
10032 * [1] 30934 sleep 3
10033 * [2] 30935 sleep 6
10034 * [1] Done sleep 3
10035 * [2] Done sleep 6
10036 * $ sleep 3 & sleep 6 & wait
10037 * [1] 30936 sleep 3
10038 * [2] 30937 sleep 6
10039 * [1] Done sleep 3
10040 * ^C <-- after ~4 sec from keyboard
10041 * $
10042 */
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010043 return wait_for_child_or_signal(NULL, 0 /*(no job and no pid to wait for)*/);
Denis Vlasenko7566bae2009-03-31 17:24:49 +000010044 }
Mike Frysinger56bdea12009-03-28 20:01:58 +000010045
Denys Vlasenko7e675362016-10-28 21:57:31 +020010046 do {
Denis Vlasenkod5762932009-03-31 11:22:57 +000010047 pid_t pid = bb_strtou(*argv, NULL, 10);
Denys Vlasenko7e675362016-10-28 21:57:31 +020010048 if (errno || pid <= 0) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010049#if ENABLE_HUSH_JOB
10050 if (argv[0][0] == '%') {
Denys Vlasenko02affb42016-11-08 00:59:29 +010010051 struct pipe *wait_pipe;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +010010052 ret = 127; /* bash compat for bad jobspecs */
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010053 wait_pipe = parse_jobspec(*argv);
10054 if (wait_pipe) {
Denys Vlasenko02affb42016-11-08 00:59:29 +010010055 ret = job_exited_or_stopped(wait_pipe);
Denys Vlasenko2ed74e22017-07-14 19:58:46 +020010056 if (ret < 0) {
Denys Vlasenko02affb42016-11-08 00:59:29 +010010057 ret = wait_for_child_or_signal(wait_pipe, 0);
Denys Vlasenko2ed74e22017-07-14 19:58:46 +020010058 } else {
10059 /* waiting on "last dead job" removes it */
10060 clean_up_last_dead_job();
Denys Vlasenko13102632017-07-08 00:24:32 +020010061 }
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010062 }
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +010010063 /* else: parse_jobspec() already emitted error msg */
10064 continue;
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010065 }
10066#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +000010067 /* mimic bash message */
10068 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010069 ret = EXIT_FAILURE;
10070 continue; /* bash checks all argv[] */
Denis Vlasenkod5762932009-03-31 11:22:57 +000010071 }
Denys Vlasenko02affb42016-11-08 00:59:29 +010010072
Denys Vlasenko7e675362016-10-28 21:57:31 +020010073 /* Do we have such child? */
10074 ret = waitpid(pid, &status, WNOHANG);
10075 if (ret < 0) {
10076 /* No */
Denys Vlasenko840a4352017-07-07 22:56:02 +020010077 ret = 127;
Denys Vlasenko7e675362016-10-28 21:57:31 +020010078 if (errno == ECHILD) {
Denys Vlasenko0c5657e2017-07-14 19:27:03 +020010079 if (pid == G.last_bg_pid) {
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010080 /* "wait $!" but last bg task has already exited. Try:
10081 * (sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $?
10082 * In bash it prints exitcode 0, then 3.
Denys Vlasenko26ad94b2016-11-07 23:07:21 +010010083 * In dash, it is 127.
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010084 */
Denys Vlasenko840a4352017-07-07 22:56:02 +020010085 ret = G.last_bg_pid_exitcode;
Denys Vlasenko26ad94b2016-11-07 23:07:21 +010010086 } else {
10087 /* Example: "wait 1". mimic bash message */
10088 bb_error_msg("wait: pid %d is not a child of this shell", (int)pid);
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010089 }
Denys Vlasenko7e675362016-10-28 21:57:31 +020010090 } else {
10091 /* ??? */
10092 bb_perror_msg("wait %s", *argv);
10093 }
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010094 continue; /* bash checks all argv[] */
10095 }
10096 if (ret == 0) {
Denys Vlasenko7e675362016-10-28 21:57:31 +020010097 /* Yes, and it still runs */
Denys Vlasenko02affb42016-11-08 00:59:29 +010010098 ret = wait_for_child_or_signal(NULL, pid);
Denys Vlasenko7e675362016-10-28 21:57:31 +020010099 } else {
10100 /* Yes, and it just exited */
Denys Vlasenko02affb42016-11-08 00:59:29 +010010101 process_wait_result(NULL, pid, status);
Denys Vlasenko85378cd2015-10-11 21:47:11 +020010102 ret = WEXITSTATUS(status);
Mike Frysinger56bdea12009-03-28 20:01:58 +000010103 if (WIFSIGNALED(status))
10104 ret = 128 + WTERMSIG(status);
Mike Frysinger56bdea12009-03-28 20:01:58 +000010105 }
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010106 } while (*++argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +000010107
10108 return ret;
10109}
Denys Vlasenko1125d7d2017-01-08 17:19:38 +010010110#endif
Mike Frysinger56bdea12009-03-28 20:01:58 +000010111
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010112#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
10113static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
10114{
10115 if (argv[1]) {
10116 def = bb_strtou(argv[1], NULL, 10);
10117 if (errno || def < def_min || argv[2]) {
10118 bb_error_msg("%s: bad arguments", argv[0]);
10119 def = UINT_MAX;
10120 }
10121 }
10122 return def;
10123}
10124#endif
10125
Denis Vlasenkodadfb492008-07-29 10:16:05 +000010126#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010127static int FAST_FUNC builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +000010128{
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010129 unsigned depth;
Denis Vlasenko87a86552008-07-29 19:43:10 +000010130 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +000010131 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denys Vlasenko49117b42016-07-21 14:40:08 +020010132 /* if we came from builtin_continue(), need to undo "= 1" */
10133 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +000010134 return EXIT_SUCCESS; /* bash compat */
10135 }
Denys Vlasenko49117b42016-07-21 14:40:08 +020010136 G.flag_break_continue++; /* BC_BREAK = 1, or BC_CONTINUE = 2 */
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010137
10138 G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
10139 if (depth == UINT_MAX)
10140 G.flag_break_continue = BC_BREAK;
10141 if (G.depth_of_loop < depth)
Denis Vlasenko87a86552008-07-29 19:43:10 +000010142 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010143
Denis Vlasenkobcb25532008-07-28 23:04:34 +000010144 return EXIT_SUCCESS;
10145}
10146
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010147static int FAST_FUNC builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +000010148{
Denis Vlasenko4f504a92008-07-29 19:48:30 +000010149 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
10150 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +000010151}
Denis Vlasenkodadfb492008-07-29 10:16:05 +000010152#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010153
10154#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010155static int FAST_FUNC builtin_return(char **argv)
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010156{
10157 int rc;
10158
Denys Vlasenko04b46bc2016-10-01 22:28:03 +020010159 if (G_flag_return_in_progress != -1) {
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010160 bb_error_msg("%s: not in a function or sourced script", argv[0]);
10161 return EXIT_FAILURE; /* bash compat */
10162 }
10163
Denys Vlasenko04b46bc2016-10-01 22:28:03 +020010164 G_flag_return_in_progress = 1;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010165
10166 /* bash:
10167 * out of range: wraps around at 256, does not error out
10168 * non-numeric param:
10169 * f() { false; return qwe; }; f; echo $?
10170 * bash: return: qwe: numeric argument required <== we do this
10171 * 255 <== we also do this
10172 */
10173 rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
10174 return rc;
10175}
10176#endif
Denys Vlasenkoa1184af2017-01-10 15:58:02 +010010177
10178#if ENABLE_HUSH_MEMLEAK
10179static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM)
10180{
10181 void *p;
10182 unsigned long l;
10183
10184# ifdef M_TRIM_THRESHOLD
10185 /* Optional. Reduces probability of false positives */
10186 malloc_trim(0);
10187# endif
10188 /* Crude attempt to find where "free memory" starts,
10189 * sans fragmentation. */
10190 p = malloc(240);
10191 l = (unsigned long)p;
10192 free(p);
10193 p = malloc(3400);
10194 if (l < (unsigned long)p) l = (unsigned long)p;
10195 free(p);
10196
10197
10198# if 0 /* debug */
10199 {
10200 struct mallinfo mi = mallinfo();
10201 printf("top alloc:0x%lx malloced:%d+%d=%d\n", l,
10202 mi.arena, mi.hblkhd, mi.arena + mi.hblkhd);
10203 }
10204# endif
10205
10206 if (!G.memleak_value)
10207 G.memleak_value = l;
10208
10209 l -= G.memleak_value;
10210 if ((long)l < 0)
10211 l = 0;
10212 l /= 1024;
10213 if (l > 127)
10214 l = 127;
10215
10216 /* Exitcode is "how many kilobytes we leaked since 1st call" */
10217 return l;
10218}
10219#endif